
    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_05b29ee198bfbd4716188e3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.126000;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_23f5de29c53b130e3d1ff220.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.825000;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_2a24c623f716fd0e190b8ba3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065581;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_b5b14b5ed17346bd43b3011a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136000;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.223000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.239000;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_b2cc8760cae090b4a66f44b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.924000;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_cbb630044e487e3d19042b2f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.722656;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_da45c7c55f741c179a4079c5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.065581;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_8457d8b21a53692eb93e5ca5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.065581;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_e1f81585f9f6e6cd8db6fce8.woff2')format("woff");}.fff{font-family:fff;line-height:1.065581;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_6e48b9fe873b2ddd7092b529.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.859000;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_7566d02e70f26ab83af31c78.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.665000;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_a9f01842bc4ceebf3565ac32.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.646000;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_c92224d410731e8598251c30.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.888000;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_e125f61e9971daf113798963.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.243000;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_cfe9d928023d7e229b626835.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.694000;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_e702412b38ce83a7210aae69.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.861000;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_99d7d412d7924d89edcc7e7d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.817000;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_0904b902b12198ae2d45ae38.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.665000;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_197e80f37c4b955389eb1b6a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.694000;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_a9f8e03217944ef69eeaadc2.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.859000;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_7208b9add9d8a0b44e21a9d7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.665000;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_bd1f837302724f217b534306.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.667000;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_7cdac19a1b760659cc8626c3.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.851000;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_9de0b297267afe4a06bccf59.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.676000;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_cedcbd291b889106b95cdb5a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.694000;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_67b7ec2f3051b5f22b6d3fb7.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.851000;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_be68107173ea6699f404ebd7.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.702000;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_9bf7924fab6073b2fdf60e50.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.694000;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_b4d1158396e2850c4c3c5507.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.859000;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_d39f139bc5d0919558c905b4.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.853000;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_06eb3bb44d857683944322cf.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.859000;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_6e31440fde758db4e293fc66.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.702000;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_ac64ad7ad1f4af84459214e5.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.667000;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_b7a19d26bb066192ae01e66d.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.777000;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_4ee022eeb9879891d501327d.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.213000;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_01c55e933736093ff75f4e78.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.694000;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_d37aad39d3f713bb0cd22c80.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.694000;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_e6dd7bc1d2778137a3aad61b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.950000;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_c5a88f8f5d026ba0c9ef8991.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.676000;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_98cd37eaf7ad722d0f42c4be.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.694000;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_ef04dd28b14f9bbbeb4b10ad.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.950000;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_99e24532d32d8d3bb67ccd03.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.829000;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_6e07328ef6c9d6038b7eff33.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.694000;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:ff32;src:url('chunks/assets/font_ec7ba3dc12421544a8545322.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.778000;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:ff33;src:url('chunks/assets/font_179f06308e08132e3742aa5f.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.778000;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:ff34;src:url('chunks/assets/font_a320bb105c5bf1adc10e78e5.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.665000;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:ff35;src:url('chunks/assets/font_8e1b506bda9a491d4507b521.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.694000;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:ff36;src:url('chunks/assets/font_587b7bd6c2cd705a2d40ab11.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.861000;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:ff37;src:url('chunks/assets/font_7da596ff78ea66696f1c0c13.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.817000;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:ff38;src:url('chunks/assets/font_580050a91a48e501b1a19718.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.859000;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:ff39;src:url('chunks/assets/font_e732e8c301f57575606864d4.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.859000;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:ff3a;src:url('chunks/assets/font_75ded303f5e99d2364f220e7.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.665000;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:ff3b;src:url('chunks/assets/font_7581362dbf9a9dcc1ac38e08.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.888000;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:ff3c;src:url('chunks/assets/font_43282736a0f89c6a1a63f3e3.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.588000;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:ff3d;src:url('chunks/assets/font_1cd8b48272e34bb061695a96.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.851000;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:ff3e;src:url('chunks/assets/font_ac8de0b9a4f2ac3538de1ba1.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.829000;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:ff3f;src:url('chunks/assets/font_e4913d2ff4df5589c612ffad.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.450000;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:ff40;src:url('chunks/assets/font_717fa268e4900d798e18e6d5.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.065581;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:ff41;src:url('chunks/assets/font_4f4872f5b346bae18c953658.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.751000;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:ff42;src:url('chunks/assets/font_2fc282910aeb6e0d36d7be24.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.751000;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:ff43;src:url('chunks/assets/font_7d621fa509ab93e23e7618ff.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.066000;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:ff44;src:url('chunks/assets/font_b32747696c3ba3465270a374.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.888000;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:ff45;src:url('chunks/assets/font_8befdd73e0ad02bdf67c3f10.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.860000;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:ff46;src:url('chunks/assets/font_35dc6e1de7bff6006bf50941.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.950000;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:ff47;src:url('chunks/assets/font_cd6bf9559acc1d7bd81ebd8e.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.829000;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:ff48;src:url('chunks/assets/font_7117ed891a65c950e7bd4385.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.450000;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:ff49;src:url('chunks/assets/font_d98911bf47da2aef00069542.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.653000;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:ff4a;src:url('chunks/assets/font_af81f2123990da78dbe4e6a7.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.653000;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:ff4b;src:url('chunks/assets/font_36843dfda6122d4565f4cc63.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.452000;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:ff4c;src:url('chunks/assets/font_82e27f7be59b81514cff96ee.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.664000;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:ff4d;src:url('chunks/assets/font_04a5ee1ffd358bcdb2a9e5fd.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.853000;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:ff4e;src:url('chunks/assets/font_507493dfdd593ef8421a4c15.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.676000;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:ff4f;src:url('chunks/assets/font_a668e17640d4bb82c8e87ad3.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:1.144000;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:ff50;src:url('chunks/assets/font_f355f99cde6beacf398098bd.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.702000;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;}
.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);}
.vf{vertical-align:-45.564056px;}
.v3{vertical-align:-19.199983px;}
.v12{vertical-align:-16.500000px;}
.v2{vertical-align:-14.223083px;}
.v4{vertical-align:-12.011993px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:5.707581px;}
.v10{vertical-align:7.031433px;}
.v11{vertical-align:12.431763px;}
.v6{vertical-align:14.250000px;}
.v7{vertical-align:19.980469px;}
.v8{vertical-align:21.168640px;}
.v1{vertical-align:22.799931px;}
.v5{vertical-align:28.726868px;}
.va{vertical-align:42.985291px;}
.vb{vertical-align:45.564148px;}
.ve{vertical-align:48.692688px;}
.vd{vertical-align:55.672668px;}
.vc{vertical-align:66.905273px;}
.ls68{letter-spacing:-36.839054px;}
.ls4a{letter-spacing:-36.782028px;}
.ls49{letter-spacing:-32.162890px;}
.ls70{letter-spacing:-1.344000px;}
.ls46{letter-spacing:-1.197540px;}
.ls6f{letter-spacing:-0.960000px;}
.lsa{letter-spacing:-0.570000px;}
.ls6{letter-spacing:-0.456000px;}
.ls71{letter-spacing:-0.384000px;}
.ls45{letter-spacing:-0.285000px;}
.ls4{letter-spacing:-0.040540px;}
.ls5{letter-spacing:-0.007086px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000005px;}
.ls72{letter-spacing:0.000009px;}
.ls6c{letter-spacing:0.000013px;}
.ls9{letter-spacing:0.000018px;}
.ls1e{letter-spacing:0.000023px;}
.ls8{letter-spacing:0.000027px;}
.ls7{letter-spacing:0.000068px;}
.ls2{letter-spacing:0.000073px;}
.ls76{letter-spacing:0.000076px;}
.ls6e{letter-spacing:0.000110px;}
.ls59{letter-spacing:0.000114px;}
.ls32{letter-spacing:0.000182px;}
.ls33{letter-spacing:0.000286px;}
.ls3{letter-spacing:0.000623px;}
.ls2a{letter-spacing:0.001384px;}
.ls44{letter-spacing:0.003470px;}
.lsb{letter-spacing:0.006282px;}
.ls13{letter-spacing:0.006328px;}
.lsc{letter-spacing:0.006878px;}
.ls10{letter-spacing:0.006900px;}
.ls42{letter-spacing:0.009479px;}
.ls11{letter-spacing:0.010212px;}
.ls14{letter-spacing:0.010216px;}
.ls24{letter-spacing:0.014019px;}
.ls52{letter-spacing:0.014476px;}
.ls63{letter-spacing:0.018204px;}
.ls5c{letter-spacing:0.028575px;}
.ls5a{letter-spacing:0.028667px;}
.ls61{letter-spacing:0.035167px;}
.ls4b{letter-spacing:0.039918px;}
.ls39{letter-spacing:0.041017px;}
.ls2c{letter-spacing:0.041563px;}
.ls56{letter-spacing:0.043945px;}
.ls75{letter-spacing:0.191906px;}
.ls6d{letter-spacing:0.319200px;}
.ls6a{letter-spacing:0.398969px;}
.ls79{letter-spacing:0.470325px;}
.ls7b{letter-spacing:0.470421px;}
.ls7c{letter-spacing:0.470508px;}
.ls78{letter-spacing:0.470966px;}
.ls69{letter-spacing:0.570000px;}
.ls6b{letter-spacing:0.570007px;}
.ls7d{letter-spacing:0.671997px;}
.ls77{letter-spacing:0.672000px;}
.ls7f{letter-spacing:0.676849px;}
.ls2e{letter-spacing:0.678508px;}
.ls1c{letter-spacing:0.678599px;}
.lsd{letter-spacing:0.678601px;}
.ls4f{letter-spacing:0.678603px;}
.ls35{letter-spacing:0.678645px;}
.ls30{letter-spacing:0.678691px;}
.ls7a{letter-spacing:0.681610px;}
.ls7e{letter-spacing:1.632000px;}
.ls41{letter-spacing:2.281164px;}
.ls1d{letter-spacing:3.659785px;}
.ls26{letter-spacing:3.743040px;}
.ls20{letter-spacing:3.745970px;}
.ls3b{letter-spacing:3.745975px;}
.ls12{letter-spacing:3.746703px;}
.ls50{letter-spacing:3.757231px;}
.ls54{letter-spacing:3.757780px;}
.ls58{letter-spacing:3.757872px;}
.ls15{letter-spacing:3.759063px;}
.ls5f{letter-spacing:3.760893px;}
.ls2f{letter-spacing:8.884013px;}
.ls36{letter-spacing:8.884151px;}
.ls3c{letter-spacing:8.884196px;}
.ls21{letter-spacing:8.884837px;}
.ls27{letter-spacing:8.887126px;}
.ls16{letter-spacing:8.899027px;}
.ls60{letter-spacing:8.938213px;}
.ls48{letter-spacing:9.523409px;}
.lsf{letter-spacing:9.580412px;}
.ls18{letter-spacing:9.580595px;}
.ls73{letter-spacing:10.656006px;}
.ls74{letter-spacing:10.656072px;}
.ls40{letter-spacing:12.659816px;}
.ls4c{letter-spacing:12.668972px;}
.ls1b{letter-spacing:14.940920px;}
.ls57{letter-spacing:15.625168px;}
.ls2d{letter-spacing:15.627000px;}
.ls3f{letter-spacing:15.627548px;}
.ls3a{letter-spacing:15.627640px;}
.ls65{letter-spacing:15.632166px;}
.ls1f{letter-spacing:15.656336px;}
.ls5e{letter-spacing:15.681015px;}
.ls43{letter-spacing:15.686182px;}
.ls47{letter-spacing:15.796313px;}
.ls51{letter-spacing:15.796378px;}
.ls31{letter-spacing:15.853232px;}
.ls23{letter-spacing:15.853324px;}
.ls67{letter-spacing:15.853339px;}
.ls1a{letter-spacing:15.853359px;}
.ls29{letter-spacing:15.853415px;}
.ls4e{letter-spacing:16.081417px;}
.ls64{letter-spacing:16.195583px;}
.lse{letter-spacing:16.822734px;}
.ls17{letter-spacing:16.822826px;}
.ls66{letter-spacing:17.564113px;}
.ls22{letter-spacing:18.839259px;}
.ls28{letter-spacing:18.841181px;}
.ls3d{letter-spacing:18.841639px;}
.ls37{letter-spacing:18.841731px;}
.ls2b{letter-spacing:43.981104px;}
.ls38{letter-spacing:43.984032px;}
.ls3e{letter-spacing:44.037959px;}
.ls34{letter-spacing:44.038050px;}
.ls25{letter-spacing:56.672144px;}
.ls55{letter-spacing:59.047572px;}
.ls5d{letter-spacing:59.048121px;}
.ls62{letter-spacing:59.048212px;}
.ls5b{letter-spacing:59.050501px;}
.ls19{letter-spacing:59.857630px;}
.ls53{letter-spacing:71.792811px;}
.ls4d{letter-spacing:74.870173px;}
.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;}
}
.ws7e{word-spacing:-15.910366px;}
.ws5c{word-spacing:-15.853339px;}
.wsbb{word-spacing:-14.820000px;}
.ws9{word-spacing:-14.250000px;}
.ws7c{word-spacing:-13.965000px;}
.ws6{word-spacing:-13.794000px;}
.ws2e{word-spacing:-13.680000px;}
.ws15{word-spacing:-13.332000px;}
.wsee{word-spacing:-12.672000px;}
.ws20{word-spacing:-12.000000px;}
.ws3{word-spacing:-11.799000px;}
.wsb1{word-spacing:-11.616000px;}
.ws5{word-spacing:-11.514000px;}
.ws8{word-spacing:-10.944000px;}
.wsaa{word-spacing:-10.656000px;}
.ws9b{word-spacing:-10.294200px;}
.ws7{word-spacing:-9.975000px;}
.ws5e{word-spacing:-9.580435px;}
.ws2{word-spacing:-9.408000px;}
.ws9c{word-spacing:-9.332400px;}
.wsd1{word-spacing:-9.216000px;}
.wsa{word-spacing:-8.400000px;}
.ws4{word-spacing:-8.259300px;}
.wsb4{word-spacing:-4.160986px;}
.wsd{word-spacing:-1.890000px;}
.ws65{word-spacing:-0.798000px;}
.wse0{word-spacing:-0.720000px;}
.ws82{word-spacing:-0.684000px;}
.wsea{word-spacing:-0.672000px;}
.ws33{word-spacing:-0.627000px;}
.wscd{word-spacing:-0.570000px;}
.wsf3{word-spacing:-0.528000px;}
.ws97{word-spacing:-0.513000px;}
.ws47{word-spacing:-0.456000px;}
.ws109{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.399000px;}
.wsd6{word-spacing:-0.342000px;}
.ws4f{word-spacing:-0.285000px;}
.wsde{word-spacing:-0.240000px;}
.wsc6{word-spacing:-0.228000px;}
.ws9f{word-spacing:-0.171000px;}
.ws67{word-spacing:-0.114000px;}
.ws61{word-spacing:-0.079836px;}
.ws5a{word-spacing:-0.057026px;}
.ws1{word-spacing:-0.048000px;}
.ws5b{word-spacing:-0.039918px;}
.wsb{word-spacing:-0.026119px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.007086px;}
.ws71{word-spacing:0.057000px;}
.ws10d{word-spacing:0.096000px;}
.ws78{word-spacing:0.114000px;}
.wse8{word-spacing:0.144000px;}
.ws2d{word-spacing:0.171000px;}
.ws58{word-spacing:0.240000px;}
.ws7a{word-spacing:0.285000px;}
.wsf7{word-spacing:0.288000px;}
.wsf0{word-spacing:0.336000px;}
.ws84{word-spacing:0.342000px;}
.wsbc{word-spacing:0.399000px;}
.wsac{word-spacing:0.480000px;}
.ws98{word-spacing:0.513000px;}
.ws96{word-spacing:0.570000px;}
.wseb{word-spacing:0.576000px;}
.ws10b{word-spacing:0.624000px;}
.ws27{word-spacing:0.627000px;}
.ws9a{word-spacing:0.684000px;}
.ws42{word-spacing:0.768000px;}
.wsd8{word-spacing:0.798000px;}
.ws11{word-spacing:0.855000px;}
.ws12{word-spacing:0.912000px;}
.ws99{word-spacing:0.969000px;}
.wsae{word-spacing:1.008000px;}
.ws3e{word-spacing:1.026000px;}
.wsa5{word-spacing:1.083000px;}
.ws44{word-spacing:1.104000px;}
.ws39{word-spacing:1.140000px;}
.ws59{word-spacing:1.157622px;}
.ws87{word-spacing:1.197000px;}
.wsf5{word-spacing:1.296000px;}
.ws9e{word-spacing:1.311000px;}
.ws101{word-spacing:1.344000px;}
.ws23{word-spacing:1.482000px;}
.wsdf{word-spacing:1.488000px;}
.wsa7{word-spacing:1.539000px;}
.wsc4{word-spacing:1.584000px;}
.wsd3{word-spacing:1.596000px;}
.wsaf{word-spacing:1.632000px;}
.ws104{word-spacing:1.680000px;}
.ws21{word-spacing:1.710000px;}
.ws92{word-spacing:1.767000px;}
.wse6{word-spacing:1.776000px;}
.wsc8{word-spacing:1.824000px;}
.ws13{word-spacing:1.881000px;}
.ws1e{word-spacing:1.938000px;}
.ws86{word-spacing:1.995000px;}
.wsab{word-spacing:2.016000px;}
.ws25{word-spacing:2.052000px;}
.ws16{word-spacing:2.109000px;}
.wsa8{word-spacing:2.112000px;}
.wsd9{word-spacing:2.166000px;}
.ws28{word-spacing:2.223000px;}
.ws14{word-spacing:2.280000px;}
.ws85{word-spacing:2.337000px;}
.ws1d{word-spacing:2.394000px;}
.wse4{word-spacing:2.447995px;}
.ws4e{word-spacing:2.451000px;}
.wsb9{word-spacing:2.496000px;}
.ws8f{word-spacing:2.508000px;}
.wse7{word-spacing:2.544000px;}
.ws74{word-spacing:2.622000px;}
.wsb3{word-spacing:2.640000px;}
.ws91{word-spacing:2.679000px;}
.wsd2{word-spacing:2.793000px;}
.ws3f{word-spacing:2.850000px;}
.wsb0{word-spacing:2.880000px;}
.ws50{word-spacing:2.906994px;}
.wsfa{word-spacing:2.928000px;}
.ws72{word-spacing:2.964000px;}
.wsba{word-spacing:2.976000px;}
.ws66{word-spacing:3.021000px;}
.wsfb{word-spacing:3.024000px;}
.wse9{word-spacing:3.072000px;}
.ws6b{word-spacing:3.078000px;}
.ws69{word-spacing:3.135000px;}
.ws1b{word-spacing:3.192000px;}
.ws30{word-spacing:3.249000px;}
.ws10a{word-spacing:3.264000px;}
.ws48{word-spacing:3.306000px;}
.wsdd{word-spacing:3.360000px;}
.ws2f{word-spacing:3.363000px;}
.ws3a{word-spacing:3.420000px;}
.wsd7{word-spacing:3.477000px;}
.ws4b{word-spacing:3.534000px;}
.ws10c{word-spacing:3.552000px;}
.ws7b{word-spacing:3.591000px;}
.ws1a{word-spacing:3.648000px;}
.wsf8{word-spacing:3.696000px;}
.wscc{word-spacing:3.705000px;}
.ws53{word-spacing:3.762000px;}
.ws32{word-spacing:3.819000px;}
.ws18{word-spacing:3.876000px;}
.wsa0{word-spacing:3.933000px;}
.ws1c{word-spacing:3.990000px;}
.ws52{word-spacing:4.046994px;}
.ws19{word-spacing:4.104000px;}
.ws45{word-spacing:4.161000px;}
.wse{word-spacing:4.218000px;}
.wsd4{word-spacing:4.275000px;}
.ws51{word-spacing:4.332000px;}
.ws8b{word-spacing:4.368000px;}
.wsc0{word-spacing:4.389000px;}
.ws8a{word-spacing:4.416000px;}
.ws75{word-spacing:4.446000px;}
.ws8d{word-spacing:4.464000px;}
.ws24{word-spacing:4.503000px;}
.ws2b{word-spacing:4.560000px;}
.wsf9{word-spacing:4.608000px;}
.ws34{word-spacing:4.617000px;}
.wsd0{word-spacing:4.674000px;}
.wsf6{word-spacing:4.704000px;}
.ws22{word-spacing:4.731000px;}
.ws17{word-spacing:4.788000px;}
.wse5{word-spacing:4.800000px;}
.ws38{word-spacing:4.845000px;}
.wsec{word-spacing:4.896000px;}
.ws6a{word-spacing:4.959000px;}
.wsf{word-spacing:5.016000px;}
.ws102{word-spacing:5.040000px;}
.ws35{word-spacing:5.073000px;}
.ws73{word-spacing:5.130000px;}
.ws55{word-spacing:5.187000px;}
.wsb8{word-spacing:5.232000px;}
.ws4c{word-spacing:5.244000px;}
.ws8e{word-spacing:5.280000px;}
.wsc9{word-spacing:5.301000px;}
.wsbd{word-spacing:5.358000px;}
.ws107{word-spacing:5.376000px;}
.wsc5{word-spacing:5.424000px;}
.ws6d{word-spacing:5.472000px;}
.ws2c{word-spacing:5.529000px;}
.ws62{word-spacing:5.643000px;}
.ws108{word-spacing:5.664000px;}
.ws76{word-spacing:5.700000px;}
.ws3d{word-spacing:5.814000px;}
.wsef{word-spacing:5.856000px;}
.wsb2{word-spacing:5.871000px;}
.wsda{word-spacing:5.904000px;}
.ws3b{word-spacing:5.985000px;}
.wsf2{word-spacing:6.000000px;}
.ws2a{word-spacing:6.042000px;}
.wse1{word-spacing:6.048000px;}
.wsf1{word-spacing:6.096000px;}
.ws93{word-spacing:6.099000px;}
.ws40{word-spacing:6.156000px;}
.wsed{word-spacing:6.192000px;}
.wscf{word-spacing:6.213000px;}
.wsc2{word-spacing:6.270000px;}
.ws103{word-spacing:6.288000px;}
.ws6f{word-spacing:6.327000px;}
.wsf4{word-spacing:6.384000px;}
.ws26{word-spacing:6.441000px;}
.ws46{word-spacing:6.555000px;}
.ws41{word-spacing:6.612000px;}
.ws49{word-spacing:6.726000px;}
.ws95{word-spacing:6.783000px;}
.wsb7{word-spacing:6.816000px;}
.ws9d{word-spacing:6.897000px;}
.ws43{word-spacing:6.912000px;}
.ws3c{word-spacing:6.954000px;}
.wsad{word-spacing:6.960000px;}
.ws94{word-spacing:7.068000px;}
.wse3{word-spacing:7.104000px;}
.ws68{word-spacing:7.125000px;}
.wsdc{word-spacing:7.152000px;}
.ws8c{word-spacing:7.200000px;}
.wsc1{word-spacing:7.296000px;}
.wsa4{word-spacing:7.353000px;}
.ws56{word-spacing:7.410000px;}
.ws37{word-spacing:7.467000px;}
.ws88{word-spacing:7.581000px;}
.wsfd{word-spacing:7.584000px;}
.wsce{word-spacing:7.638000px;}
.wsdb{word-spacing:7.680000px;}
.wscb{word-spacing:7.695000px;}
.ws54{word-spacing:7.752000px;}
.wsa6{word-spacing:7.809000px;}
.wsfc{word-spacing:7.824000px;}
.ws81{word-spacing:7.866000px;}
.ws106{word-spacing:7.872000px;}
.wse2{word-spacing:7.920000px;}
.ws6e{word-spacing:7.923000px;}
.ws83{word-spacing:7.980000px;}
.ws36{word-spacing:8.037000px;}
.ws63{word-spacing:8.094000px;}
.ws29{word-spacing:8.151000px;}
.wsd5{word-spacing:8.208000px;}
.ws105{word-spacing:8.256000px;}
.ws31{word-spacing:8.265000px;}
.ws4d{word-spacing:8.322000px;}
.ws89{word-spacing:8.379000px;}
.wsa2{word-spacing:8.550000px;}
.wsc3{word-spacing:8.664000px;}
.wsa9{word-spacing:8.688000px;}
.ws90{word-spacing:9.006000px;}
.ws4a{word-spacing:9.120000px;}
.wsa1{word-spacing:9.291000px;}
.ws64{word-spacing:9.405000px;}
.ws60{word-spacing:9.426400px;}
.ws5d{word-spacing:9.426492px;}
.wsbf{word-spacing:9.576000px;}
.wsbe{word-spacing:9.633000px;}
.ws77{word-spacing:10.032000px;}
.wsb5{word-spacing:10.089000px;}
.ws6c{word-spacing:10.146000px;}
.ws57{word-spacing:10.260000px;}
.wsa3{word-spacing:10.602000px;}
.wsff{word-spacing:11.040000px;}
.wsb6{word-spacing:11.229000px;}
.wsc7{word-spacing:11.913000px;}
.ws80{word-spacing:12.027000px;}
.wsca{word-spacing:14.991000px;}
.ws70{word-spacing:15.333000px;}
.ws79{word-spacing:32.162890px;}
.wsfe{word-spacing:35.760000px;}
.ws100{word-spacing:37.056000px;}
.ws1f{word-spacing:73.056000px;}
.ws5f{word-spacing:73.485124px;}
.ws7f{word-spacing:73.625259px;}
.ws7d{word-spacing:79.209675px;}
._1a{margin-left:-23.882988px;}
._f{margin-left:-21.773984px;}
._10{margin-left:-20.048414px;}
._1d{margin-left:-19.002013px;}
._6{margin-left:-17.833806px;}
._17{margin-left:-16.819681px;}
._5{margin-left:-15.738040px;}
._3{margin-left:-14.498958px;}
._e{margin-left:-13.305887px;}
._18{margin-left:-11.912993px;}
._15{margin-left:-9.134370px;}
._1b{margin-left:-6.498000px;}
._7{margin-left:-4.942198px;}
._16{margin-left:-3.726000px;}
._1{margin-left:-2.711102px;}
._0{margin-left:-1.632000px;}
._2{width:1.310400px;}
._d{width:2.508325px;}
._c{width:4.026000px;}
._11{width:5.380198px;}
._14{width:6.475200px;}
._1c{width:7.583995px;}
._20{width:8.586011px;}
._21{width:9.887995px;}
._13{width:11.232000px;}
._19{width:13.166991px;}
._b{width:15.287896px;}
._12{width:20.121004px;}
._8{width:22.458030px;}
._1f{width:29.525989px;}
._4{width:32.999997px;}
._1e{width:36.308989px;}
._a{width:56.255989px;}
._9{width:73.055989px;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(5,4,7);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.600000px;}
.fs9{font-size:39.900000px;}
.fsd{font-size:39.917999px;}
.fs4{font-size:42.000000px;}
.fse{font-size:46.199999px;}
.fs5{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fsc{font-size:57.026400px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1e9{bottom:0.044678px;}
.ydb{bottom:0.121937px;}
.ycc{bottom:0.121948px;}
.yf6{bottom:0.123436px;}
.yb2{bottom:0.123596px;}
.yde{bottom:0.125393px;}
.yd4{bottom:0.125885px;}
.yd5{bottom:0.128494px;}
.yef{bottom:0.134251px;}
.yeb{bottom:0.147011px;}
.y160{bottom:0.170746px;}
.y167{bottom:0.171204px;}
.y11e{bottom:0.172943px;}
.yf1{bottom:0.191757px;}
.yc4{bottom:0.194550px;}
.yb9{bottom:0.194733px;}
.y124{bottom:0.196014px;}
.yb5{bottom:0.196198px;}
.y1f3{bottom:2.144531px;}
.yc1{bottom:2.594398px;}
.yf0{bottom:3.299698px;}
.yd1{bottom:3.644394px;}
.ye7{bottom:3.660187px;}
.ybe{bottom:4.994568px;}
.yda{bottom:5.444548px;}
.ycb{bottom:5.444550px;}
.yf5{bottom:5.446047px;}
.yb1{bottom:5.446198px;}
.yea{bottom:5.459278px;}
.yed{bottom:5.466705px;}
.ye6{bottom:7.124542px;}
.ye9{bottom:10.919552px;}
.yec{bottom:11.069548px;}
.ydf{bottom:13.234051px;}
.y23{bottom:32.687250px;}
.y99{bottom:33.984900px;}
.y25{bottom:33.985050px;}
.y146{bottom:65.429535px;}
.y101{bottom:65.431045px;}
.y77{bottom:73.278002px;}
.y47{bottom:73.278025px;}
.y172{bottom:73.283998px;}
.y1bb{bottom:73.716001px;}
.y1e5{bottom:73.734300px;}
.y11a{bottom:74.017960px;}
.y1cd{bottom:74.103000px;}
.y15c{bottom:74.204864px;}
.yfe{bottom:75.880800px;}
.y215{bottom:78.074999px;}
.y149{bottom:83.641205px;}
.y152{bottom:83.641388px;}
.y155{bottom:83.641571px;}
.y104{bottom:83.642715px;}
.y108{bottom:83.642853px;}
.y10e{bottom:83.642990px;}
.y114{bottom:83.643448px;}
.y76{bottom:87.153002px;}
.y171{bottom:87.156000px;}
.y1ba{bottom:87.587997px;}
.y1cc{bottom:87.975002px;}
.y1e4{bottom:90.991053px;}
.y97{bottom:91.949999px;}
.y46{bottom:91.950022px;}
.yfc{bottom:92.948999px;}
.yfb{bottom:93.130800px;}
.yfd{bottom:93.137552px;}
.y270{bottom:94.313564px;}
.y4{bottom:97.125005px;}
.y75{bottom:101.027996px;}
.y1b9{bottom:101.462997px;}
.y1b3{bottom:104.104797px;}
.yf9{bottom:104.934002px;}
.y26f{bottom:108.185566px;}
.y1e3{bottom:108.247799px;}
.y45{bottom:108.575272px;}
.yf8{bottom:110.380795px;}
.yfa{bottom:110.387547px;}
.y1b8{bottom:115.334999px;}
.y74{bottom:119.700005px;}
.y26e{bottom:122.057568px;}
.yf4{bottom:122.182503px;}
.y1b2{bottom:122.776794px;}
.y1e2{bottom:125.504550px;}
.y44{bottom:127.247269px;}
.yf3{bottom:127.630795px;}
.yf7{bottom:127.637547px;}
.y170{bottom:130.416000px;}
.y26d{bottom:135.929569px;}
.y20{bottom:139.264499px;}
.ye8{bottom:139.434002px;}
.ye5{bottom:141.243004px;}
.yf2{bottom:142.295998px;}
.y191{bottom:142.743300px;}
.y1e1{bottom:142.761303px;}
.y16f{bottom:144.288002px;}
.ye3{bottom:144.699005px;}
.ye2{bottom:144.874054px;}
.ye4{bottom:144.887547px;}
.y26c{bottom:149.801559px;}
.yee{bottom:150.179695px;}
.y43{bottom:150.730522px;}
.y190{bottom:159.979797px;}
.y1e0{bottom:160.018055px;}
.y1c2{bottom:160.876053px;}
.ye1{bottom:162.130795px;}
.y16e{bottom:162.959999px;}
.y26b{bottom:163.673561px;}
.y42{bottom:164.602523px;}
.yd9{bottom:173.934002px;}
.y1b1{bottom:174.169052px;}
.y214{bottom:174.236549px;}
.ye0{bottom:175.743004px;}
.y73{bottom:177.216305px;}
.y18f{bottom:177.236549px;}
.y1df{bottom:177.274796px;}
.y26a{bottom:177.545563px;}
.y1c1{bottom:178.132805px;}
.y16d{bottom:178.470005px;}
.yd8{bottom:179.367313px;}
.ydd{bottom:179.378550px;}
.ydc{bottom:179.387547px;}
.y41{bottom:186.022522px;}
.y269{bottom:191.417564px;}
.y1b0{bottom:191.425804px;}
.y213{bottom:191.493300px;}
.y72{bottom:194.473045px;}
.y18e{bottom:194.493300px;}
.y1de{bottom:194.531548px;}
.y1c0{bottom:195.369300px;}
.yd7{bottom:196.624054px;}
.y17{bottom:196.933500px;}
.y40{bottom:199.894523px;}
.y268{bottom:205.289566px;}
.y1af{bottom:208.682556px;}
.y212{bottom:208.729797px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y71{bottom:211.729797px;}
.y18d{bottom:211.743300px;}
.y1dd{bottom:211.788300px;}
.y1bf{bottom:212.626053px;}
.y239{bottom:213.628212px;}
.yd6{bottom:213.880806px;}
.y267{bottom:219.161568px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yd3{bottom:225.683990px;}
.y1ae{bottom:225.939308px;}
.y211{bottom:225.986549px;}
.yd0{bottom:227.493004px;}
.y18c{bottom:228.979797px;}
.y70{bottom:228.986549px;}
.y1dc{bottom:229.045052px;}
.y1be{bottom:229.882805px;}
.y143{bottom:230.548073px;}
.ycf{bottom:231.130806px;}
.yd2{bottom:231.137558px;}
.y266{bottom:233.033569px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y238{bottom:241.300209px;}
.yca{bottom:242.933990px;}
.y1ad{bottom:243.196060px;}
.y210{bottom:243.243300px;}
.y18b{bottom:246.236549px;}
.y6f{bottom:246.243300px;}
.y1db{bottom:246.301804px;}
.y265{bottom:246.905571px;}
.y1bd{bottom:247.132805px;}
.y142{bottom:247.804825px;}
.yce{bottom:248.199005px;}
.yc9{bottom:248.360573px;}
.ycd{bottom:248.387558px;}
.y3f{bottom:252.835190px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y1ac{bottom:260.452789px;}
.y20f{bottom:260.479797px;}
.y264{bottom:260.777573px;}
.y96{bottom:263.419029px;}
.y6e{bottom:263.486549px;}
.y18a{bottom:263.493300px;}
.y1da{bottom:263.558556px;}
.y1bc{bottom:264.389557px;}
.y141{bottom:265.061554px;}
.yc8{bottom:265.617325px;}
.y237{bottom:269.050209px;}
.y3e{bottom:270.091942px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y263{bottom:274.649574px;}
.y1ab{bottom:277.709541px;}
.y20e{bottom:277.736549px;}
.y297{bottom:279.074524px;}
.y95{bottom:280.675781px;}
.y189{bottom:280.716293px;}
.y6d{bottom:280.743300px;}
.y1d9{bottom:280.815308px;}
.y140{bottom:282.318306px;}
.yc7{bottom:282.874054px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y3d{bottom:287.335190px;}
.y262{bottom:288.521576px;}
.y296{bottom:292.946526px;}
.y1aa{bottom:294.966293px;}
.y20d{bottom:294.993300px;}
.y94{bottom:297.932533px;}
.y188{bottom:297.973045px;}
.y6c{bottom:297.979797px;}
.y1d8{bottom:298.072060px;}
.y13f{bottom:299.548073px;}
.yc6{bottom:300.130806px;}
.y236{bottom:300.256027px;}
.y261{bottom:302.393555px;}
.y3c{bottom:304.591942px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y1a9{bottom:312.223045px;}
.y20c{bottom:312.236549px;}
.y1c3{bottom:312.589050px;}
.y235{bottom:314.128029px;}
.y93{bottom:315.189285px;}
.y187{bottom:315.229797px;}
.y6b{bottom:315.236549px;}
.y1d7{bottom:315.328789px;}
.y260{bottom:316.265556px;}
.y13e{bottom:316.804825px;}
.yc3{bottom:317.199005px;}
.yc2{bottom:317.380806px;}
.yc5{bottom:317.387558px;}
.y295{bottom:320.702545px;}
.y3b{bottom:321.835190px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y234{bottom:328.000031px;}
.y1a8{bottom:329.479797px;}
.y20b{bottom:329.493300px;}
.ybd{bottom:329.642990px;}
.y25f{bottom:330.146576px;}
.yc0{bottom:332.045998px;}
.y92{bottom:332.446037px;}
.y186{bottom:332.486549px;}
.y6a{bottom:332.493300px;}
.y1d6{bottom:332.585541px;}
.y13d{bottom:334.061554px;}
.y294{bottom:334.574524px;}
.ybf{bottom:334.637558px;}
.ybc{bottom:334.639778px;}
.y3a{bottom:339.091942px;}
.y233{bottom:341.872032px;}
.y25e{bottom:344.018555px;}
.y20a{bottom:346.723045px;}
.y1a7{bottom:346.736549px;}
.ye{bottom:348.133500px;}
.y293{bottom:348.446526px;}
.y91{bottom:349.702789px;}
.y69{bottom:349.743300px;}
.y1d5{bottom:349.842293px;}
.y13c{bottom:351.318306px;}
.y232{bottom:355.744034px;}
.y39{bottom:356.341942px;}
.y25d{bottom:357.890556px;}
.y100{bottom:360.511505px;}
.y292{bottom:362.318527px;}
.y209{bottom:363.979774px;}
.y1a6{bottom:363.993300px;}
.y90{bottom:366.959541px;}
.y68{bottom:366.986526px;}
.y185{bottom:366.993279px;}
.y1d4{bottom:367.099045px;}
.y13b{bottom:368.554825px;}
.y231{bottom:369.616035px;}
.y121{bottom:371.049591px;}
.y120{bottom:371.380692px;}
.y25c{bottom:371.768555px;}
.y38{bottom:373.585190px;}
.y291{bottom:376.190529px;}
.y11b{bottom:376.371597px;}
.y11f{bottom:376.371895px;}
.y1a5{bottom:381.216293px;}
.y208{bottom:381.236526px;}
.y230{bottom:383.488037px;}
.y8f{bottom:384.216293px;}
.y67{bottom:384.243300px;}
.y1d3{bottom:384.355820px;}
.y25b{bottom:385.640579px;}
.y13a{bottom:385.811554px;}
.yd{bottom:386.785499px;}
.y11d{bottom:389.371948px;}
.y290{bottom:390.173538px;}
.y37{bottom:390.841965px;}
.y11c{bottom:394.583267px;}
.y1a4{bottom:398.473022px;}
.y207{bottom:398.493300px;}
.y25a{bottom:399.572571px;}
.yff{bottom:400.317307px;}
.y8e{bottom:401.473022px;}
.y66{bottom:401.486526px;}
.y1d2{bottom:401.612549px;}
.y139{bottom:403.068329px;}
.y28f{bottom:404.045517px;}
.yc{bottom:408.044999px;}
.y36{bottom:408.098694px;}
.y106{bottom:410.255264px;}
.y10a{bottom:410.255539px;}
.y110{bottom:410.255722px;}
.y116{bottom:410.255997px;}
.y22f{bottom:411.244034px;}
.y259{bottom:413.444550px;}
.y1a3{bottom:415.729797px;}
.y28e{bottom:417.917542px;}
.y8d{bottom:418.729797px;}
.y65{bottom:418.743300px;}
.y1d1{bottom:418.869278px;}
.y138{bottom:420.284546px;}
.y103{bottom:420.610382px;}
.y10d{bottom:420.610702px;}
.y113{bottom:420.610840px;}
.y119{bottom:420.611298px;}
.y10c{bottom:420.951782px;}
.y112{bottom:420.951965px;}
.y118{bottom:420.952423px;}
.y107{bottom:425.942688px;}
.y10b{bottom:425.942871px;}
.y111{bottom:425.943008px;}
.y117{bottom:425.943466px;}
.y258{bottom:427.316574px;}
.y28d{bottom:431.789520px;}
.y1a2{bottom:432.986526px;}
.y102{bottom:433.124680px;}
.y64{bottom:435.973022px;}
.y8c{bottom:435.986526px;}
.y1d0{bottom:436.126053px;}
.y137{bottom:437.541321px;}
.y105{bottom:438.929260px;}
.y109{bottom:438.929398px;}
.y10f{bottom:438.929718px;}
.y115{bottom:438.929993px;}
.y22e{bottom:439.000031px;}
.y257{bottom:441.188553px;}
.y35{bottom:443.348694px;}
.y28c{bottom:445.661545px;}
.y1a1{bottom:450.243300px;}
.y22d{bottom:452.872055px;}
.y63{bottom:453.229797px;}
.y8b{bottom:453.243300px;}
.y1cf{bottom:453.382782px;}
.y136{bottom:454.798050px;}
.y1c7{bottom:454.882782px;}
.y256{bottom:455.060577px;}
.y28b{bottom:459.533524px;}
.y206{bottom:467.446014px;}
.y1a0{bottom:467.466293px;}
.ybb{bottom:468.055800px;}
.y255{bottom:468.932556px;}
.y62{bottom:470.486526px;}
.y184{bottom:470.493300px;}
.y1ce{bottom:470.639557px;}
.y135{bottom:472.054825px;}
.y1c6{bottom:472.132782px;}
.y28a{bottom:473.405548px;}
.y1b7{bottom:474.373077px;}
.y22c{bottom:480.628052px;}
.y254{bottom:482.804581px;}
.y205{bottom:484.702789px;}
.y19f{bottom:484.723022px;}
.yb8{bottom:485.123978px;}
.yb7{bottom:485.299026px;}
.yba{bottom:485.312531px;}
.y289{bottom:487.277527px;}
.y183{bottom:487.729797px;}
.y61{bottom:487.743300px;}
.y1b6{bottom:488.245056px;}
.y134{bottom:489.311554px;}
.y1c5{bottom:489.389557px;}
.y22b{bottom:494.500031px;}
.y253{bottom:496.676559px;}
.y34{bottom:497.349472px;}
.y288{bottom:501.149550px;}
.y204{bottom:501.959518px;}
.y19e{bottom:501.979797px;}
.y1b5{bottom:502.117081px;}
.yb6{bottom:502.555800px;}
.yb{bottom:502.864502px;}
.y60{bottom:504.932556px;}
.y182{bottom:504.986526px;}
.y8a{bottom:504.993300px;}
.y133{bottom:506.568329px;}
.y252{bottom:510.548584px;}
.yb0{bottom:514.357498px;}
.y287{bottom:515.021530px;}
.y1b4{bottom:515.989059px;}
.y203{bottom:519.216293px;}
.y19d{bottom:519.236526px;}
.yb4{bottom:519.622513px;}
.y1f2{bottom:519.736496px;}
.yaf{bottom:519.785522px;}
.yb3{bottom:519.812531px;}
.ya{bottom:520.864502px;}
.y1f1{bottom:521.872055px;}
.y5f{bottom:522.189285px;}
.y89{bottom:522.216293px;}
.y181{bottom:522.243300px;}
.y132{bottom:523.818329px;}
.y251{bottom:524.420563px;}
.y286{bottom:528.893555px;}
.y33{bottom:531.822464px;}
.y1ef{bottom:535.554016px;}
.y1f0{bottom:535.744034px;}
.y1ee{bottom:535.747055px;}
.y1cb{bottom:536.113083px;}
.y202{bottom:536.473022px;}
.y19c{bottom:536.493300px;}
.yae{bottom:537.042297px;}
.y250{bottom:538.292587px;}
.y9{bottom:538.864499px;}
.y180{bottom:539.386780px;}
.y5e{bottom:539.446014px;}
.y88{bottom:539.473022px;}
.y22a{bottom:539.493300px;}
.y131{bottom:541.068329px;}
.y285{bottom:542.765533px;}
.y1ec{bottom:549.576004px;}
.y1ed{bottom:549.619034px;}
.y1eb{bottom:549.622055px;}
.y1ca{bottom:549.985062px;}
.y24f{bottom:552.164566px;}
.y201{bottom:553.729797px;}
.y19b{bottom:553.750031px;}
.yad{bottom:554.299026px;}
.y284{bottom:556.637512px;}
.y17f{bottom:556.643555px;}
.y5d{bottom:556.702789px;}
.y87{bottom:556.729797px;}
.y229{bottom:556.736526px;}
.y8{bottom:556.864499px;}
.y130{bottom:558.311554px;}
.y1e8{bottom:563.451004px;}
.y1ea{bottom:563.494034px;}
.y1e7{bottom:563.497055px;}
.y1c9{bottom:563.857086px;}
.y24e{bottom:566.036545px;}
.y32{bottom:566.321686px;}
.y283{bottom:570.509537px;}
.y200{bottom:570.986526px;}
.yac{bottom:571.555800px;}
.y5c{bottom:573.959518px;}
.y86{bottom:573.986526px;}
.y228{bottom:573.993300px;}
.y12f{bottom:575.568329px;}
.y1e6{bottom:577.369034px;}
.y1c8{bottom:577.729065px;}
.y24d{bottom:579.908569px;}
.y31{bottom:583.578461px;}
.y282{bottom:584.381515px;}
.y1ff{bottom:588.243300px;}
.yab{bottom:588.792297px;}
.y19a{bottom:589.000031px;}
.y17e{bottom:591.142776px;}
.y5b{bottom:591.216293px;}
.y227{bottom:591.229797px;}
.y85{bottom:591.243300px;}
.y12e{bottom:592.798050px;}
.y24c{bottom:593.780548px;}
.y281{bottom:598.253540px;}
.y30{bottom:600.835190px;}
.y1fe{bottom:605.479797px;}
.yaa{bottom:606.049026px;}
.y24b{bottom:607.652573px;}
.y17d{bottom:608.399550px;}
.y84{bottom:608.439285px;}
.y5a{bottom:608.473022px;}
.y226{bottom:608.486526px;}
.y12d{bottom:610.054825px;}
.y280{bottom:612.125519px;}
.y2f{bottom:618.091965px;}
.y24a{bottom:621.524550px;}
.y1fd{bottom:622.736526px;}
.ya9{bottom:623.305800px;}
.y17c{bottom:625.656281px;}
.y83{bottom:625.696014px;}
.y59{bottom:625.729797px;}
.y225{bottom:625.743300px;}
.y27f{bottom:625.997543px;}
.y12c{bottom:627.311554px;}
.y2e{bottom:635.341965px;}
.y249{bottom:635.396576px;}
.y27e{bottom:639.869522px;}
.y1fc{bottom:639.993300px;}
.ya8{bottom:640.542297px;}
.y17b{bottom:642.913055px;}
.y82{bottom:642.952789px;}
.y224{bottom:642.979797px;}
.y58{bottom:642.986526px;}
.y12b{bottom:644.568329px;}
.y7{bottom:645.510000px;}
.y248{bottom:649.268555px;}
.y2d{bottom:652.585190px;}
.y27d{bottom:653.741547px;}
.y1fb{bottom:657.243300px;}
.ya7{bottom:657.799026px;}
.y17a{bottom:660.169785px;}
.y81{bottom:660.209518px;}
.y223{bottom:660.236526px;}
.y57{bottom:660.243300px;}
.y12a{bottom:661.825058px;}
.y247{bottom:663.140579px;}
.y6{bottom:666.771000px;}
.y27c{bottom:667.613525px;}
.y2c{bottom:669.841965px;}
.y1fa{bottom:674.466293px;}
.ya6{bottom:675.055800px;}
.y246{bottom:677.021576px;}
.y56{bottom:677.459518px;}
.y80{bottom:677.466293px;}
.y222{bottom:677.493300px;}
.y199{bottom:677.500031px;}
.y27b{bottom:681.485550px;}
.y2b{bottom:687.091965px;}
.y245{bottom:690.893555px;}
.y1f9{bottom:691.723022px;}
.ya5{bottom:692.272018px;}
.y179{bottom:694.669052px;}
.y55{bottom:694.716293px;}
.y7f{bottom:694.723022px;}
.y221{bottom:694.729797px;}
.y198{bottom:694.743300px;}
.y27a{bottom:695.357529px;}
.y129{bottom:697.075058px;}
.y2a{bottom:704.348694px;}
.y244{bottom:704.765579px;}
.y1f8{bottom:708.979797px;}
.y279{bottom:709.229553px;}
.ya4{bottom:709.528793px;}
.y178{bottom:711.925781px;}
.y54{bottom:711.973022px;}
.y7e{bottom:711.979797px;}
.y220{bottom:711.986526px;}
.y197{bottom:711.993300px;}
.y243{bottom:718.637558px;}
.y278{bottom:723.101532px;}
.y1f7{bottom:726.236526px;}
.y5{bottom:726.298500px;}
.ya3{bottom:726.785522px;}
.y177{bottom:729.182556px;}
.y53{bottom:729.229797px;}
.y7d{bottom:729.236526px;}
.y196{bottom:729.243300px;}
.y277{bottom:736.973557px;}
.y1f6{bottom:743.493300px;}
.ya2{bottom:744.042297px;}
.y176{bottom:746.439285px;}
.y195{bottom:746.466293px;}
.y21f{bottom:746.479797px;}
.y52{bottom:746.486526px;}
.y7c{bottom:746.493300px;}
.y242{bottom:750.812531px;}
.y276{bottom:750.845535px;}
.y128{bottom:751.068237px;}
.y29{bottom:752.087723px;}
.y3{bottom:752.599495px;}
.y1f5{bottom:760.750031px;}
.ya1{bottom:761.299026px;}
.y175{bottom:763.696014px;}
.y194{bottom:763.723022px;}
.y7b{bottom:763.729797px;}
.y21e{bottom:763.736526px;}
.y51{bottom:763.743300px;}
.y275{bottom:764.717514px;}
.y28{bottom:765.959702px;}
.y21{bottom:765.960002px;}
.y126{bottom:768.136505px;}
.y125{bottom:768.318237px;}
.y127{bottom:768.325012px;}
.ya0{bottom:778.555756px;}
.y274{bottom:778.589539px;}
.y174{bottom:780.952789px;}
.y193{bottom:780.979797px;}
.y50{bottom:780.986572px;}
.y21d{bottom:780.993256px;}
.y123{bottom:785.385040px;}
.y122{bottom:785.575012px;}
.y273{bottom:792.461517px;}
.y9f{bottom:795.805756px;}
.y1f4{bottom:796.000031px;}
.y173{bottom:798.209564px;}
.y21c{bottom:798.223022px;}
.y192{bottom:798.236572px;}
.y4f{bottom:798.243256px;}
.y27{bottom:803.731200px;}
.y241{bottom:806.333496px;}
.y144{bottom:806.389069px;}
.y9e{bottom:813.042297px;}
.y7a{bottom:815.466248px;}
.y21b{bottom:815.479797px;}
.y4e{bottom:815.493256px;}
.y145{bottom:820.075470px;}
.y240{bottom:820.205566px;}
.y9d{bottom:830.299072px;}
.y164{bottom:830.611633px;}
.y16b{bottom:830.611725px;}
.y163{bottom:830.615112px;}
.y16a{bottom:830.617859px;}
.y4d{bottom:832.723022px;}
.y21a{bottom:832.736572px;}
.y23f{bottom:834.077545px;}
.y162{bottom:835.926727px;}
.y169{bottom:835.933136px;}
.y15d{bottom:835.933319px;}
.y16c{bottom:835.933960px;}
.y161{bottom:841.387024px;}
.y168{bottom:841.535980px;}
.y26{bottom:846.166168px;}
.y9c{bottom:847.555756px;}
.y23e{bottom:847.949524px;}
.y15f{bottom:848.933716px;}
.y166{bottom:848.934174px;}
.y4c{bottom:849.979797px;}
.y219{bottom:849.993256px;}
.y15e{bottom:854.145172px;}
.y165{bottom:854.145447px;}
.y23d{bottom:861.821503px;}
.y9b{bottom:864.812531px;}
.y4b{bottom:867.236572px;}
.y218{bottom:867.243256px;}
.y14b{bottom:869.817719px;}
.y154{bottom:869.818085px;}
.y157{bottom:869.818176px;}
.y23c{bottom:875.693573px;}
.y2{bottom:879.369000px;}
.y148{bottom:880.172974px;}
.y151{bottom:880.173065px;}
.y15b{bottom:880.173431px;}
.y15a{bottom:880.175354px;}
.y150{bottom:880.176636px;}
.y4a{bottom:884.493256px;}
.y14f{bottom:885.499237px;}
.y159{bottom:885.504822px;}
.y14d{bottom:885.510864px;}
.y14c{bottom:888.960937px;}
.y23b{bottom:889.565552px;}
.y14e{bottom:890.945250px;}
.y158{bottom:891.107666px;}
.y147{bottom:892.687225px;}
.y14a{bottom:898.491760px;}
.y153{bottom:898.491943px;}
.y156{bottom:898.492218px;}
.y9a{bottom:900.062531px;}
.y49{bottom:901.750031px;}
.y23a{bottom:903.437531px;}
.y24{bottom:926.117157px;}
.y78{bottom:938.989344px;}
.y271{bottom:939.001344px;}
.y216{bottom:939.109344px;}
.y79{bottom:939.865321px;}
.y272{bottom:939.877321px;}
.y217{bottom:939.985321px;}
.y22{bottom:939.989106px;}
.y48{bottom:939.989136px;}
.y98{bottom:940.241104px;}
.y1c4{bottom:940.361104px;}
.y1{bottom:966.726000px;}
.h48{height:3.763742px;}
.h71{height:5.551500px;}
.h6f{height:7.950000px;}
.h2c{height:9.600000px;}
.h2a{height:9.601500px;}
.h31{height:9.900000px;}
.h73{height:10.198500px;}
.h3c{height:11.100000px;}
.h2e{height:11.250000px;}
.h30{height:12.300000px;}
.h55{height:12.898500px;}
.h53{height:12.900000px;}
.h43{height:14.250000px;}
.h44{height:14.550000px;}
.h32{height:17.098500px;}
.h27{height:17.099999px;}
.h33{height:17.400000px;}
.h36{height:17.550000px;}
.h45{height:18.150000px;}
.h3e{height:18.151500px;}
.h39{height:20.099999px;}
.h72{height:21.168000px;}
.h3f{height:21.900000px;}
.h41{height:22.051500px;}
.h18{height:23.721600px;}
.h29{height:26.106372px;}
.h35{height:27.263993px;}
.h3b{height:27.463583px;}
.h50{height:31.193441px;}
.h70{height:31.344000px;}
.h7{height:32.130000px;}
.h74{height:32.448000px;}
.hb{height:33.840000px;}
.h17{height:33.888000px;}
.h16{height:34.687500px;}
.h2b{height:37.295266px;}
.h2d{height:37.584306px;}
.h3a{height:38.549846px;}
.h2f{height:38.949031px;}
.h11{height:40.242000px;}
.h10{height:40.268917px;}
.h25{height:40.268922px;}
.h15{height:40.269008px;}
.h1f{height:40.269014px;}
.h1a{height:40.269100px;}
.h1b{height:40.295833px;}
.h12{height:40.296016px;}
.h22{height:40.322933px;}
.h20{height:40.323024px;}
.h6e{height:40.323028px;}
.h59{height:40.349941px;}
.h19{height:40.350032px;}
.h24{height:40.376949px;}
.h69{height:40.377040px;}
.h21{height:40.377132px;}
.h1c{height:40.404048px;}
.h75{height:40.458064px;}
.h1d{height:40.511897px;}
.h26{height:40.566097px;}
.ha{height:42.048000px;}
.h6c{height:42.528000px;}
.h3d{height:43.739249px;}
.h6{height:45.900000px;}
.h34{height:47.504007px;}
.h40{height:47.529642px;}
.h5b{height:48.007285px;}
.h62{height:48.011313px;}
.h3{height:48.195000px;}
.h5f{height:48.578574px;}
.h37{height:48.632223px;}
.h65{height:48.635336px;}
.h51{height:50.250968px;}
.h49{height:50.251425px;}
.h4c{height:50.251608px;}
.h54{height:50.468445px;}
.h13{height:50.502000px;}
.h56{height:50.969327px;}
.h58{height:50.996243px;}
.h6d{height:50.996335px;}
.h6a{height:50.996432px;}
.h1e{height:51.024075px;}
.h76{height:51.050442px;}
.h57{height:51.077359px;}
.h23{height:51.212491px;}
.h6b{height:51.293973px;}
.h68{height:51.422513px;}
.h4b{height:52.522115px;}
.h38{height:54.833154px;}
.h28{height:54.833239px;}
.hc{height:54.862258px;}
.h2{height:55.080000px;}
.hf{height:56.373000px;}
.h47{height:59.422307px;}
.h61{height:60.277156px;}
.h5d{height:60.277522px;}
.h42{height:60.564760px;}
.he{height:61.622631px;}
.h5a{height:65.067374px;}
.h14{height:65.274000px;}
.hd{height:69.108000px;}
.h4f{height:70.668283px;}
.h4d{height:75.956681px;}
.h4a{height:75.956865px;}
.h66{height:77.256913px;}
.h63{height:77.267167px;}
.h5c{height:77.306718px;}
.h60{height:77.313310px;}
.h5{height:78.030000px;}
.h4e{height:83.136252px;}
.h52{height:83.149069px;}
.h64{height:83.850913px;}
.h67{height:83.852011px;}
.h5e{height:83.892294px;}
.h46{height:90.300000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wb{width:4.558500px;}
.w6{width:4.560000px;}
.w1e{width:5.685000px;}
.w9{width:6.375000px;}
.wc{width:7.950000px;}
.w11{width:7.980000px;}
.w15{width:8.281500px;}
.w16{width:9.180000px;}
.w12{width:11.505000px;}
.wd{width:11.548500px;}
.w13{width:11.550000px;}
.we{width:11.985000px;}
.w1d{width:13.005000px;}
.w1c{width:13.006499px;}
.w14{width:16.126500px;}
.w7{width:17.985000px;}
.wa{width:18.613500px;}
.wf{width:18.615000px;}
.w5{width:18.630000px;}
.w17{width:22.710000px;}
.w19{width:23.131499px;}
.w10{width:33.298499px;}
.w1f{width:45.615000px;}
.w1a{width:59.355000px;}
.w8{width:92.159998px;}
.w18{width:461.533493px;}
.w1b{width:472.095016px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:1.073845px;}
.x33{left:2.496895px;}
.x10{left:5.905060px;}
.x2a{left:10.401307px;}
.x61{left:23.268288px;}
.x2c{left:28.923432px;}
.x57{left:62.513111px;}
.x78{left:66.268500px;}
.x47{left:68.236805px;}
.x6{left:70.157553px;}
.xc{left:72.368402px;}
.xd{left:74.328449px;}
.x9{left:87.169516px;}
.x7e{left:89.922300px;}
.xa{left:91.421541px;}
.x63{left:93.480000px;}
.x1e{left:95.605499px;}
.x14{left:96.787502px;}
.x45{left:98.759995px;}
.x1{left:102.045000px;}
.x46{left:104.667595px;}
.x2{left:106.297500px;}
.xf{left:110.968494px;}
.x16{left:112.333500px;}
.x1f{left:114.220047px;}
.x15{left:115.416904px;}
.x11{left:129.598045px;}
.x49{left:135.993462px;}
.x66{left:139.127689px;}
.x76{left:145.816200px;}
.x55{left:147.340645px;}
.x64{left:158.749054px;}
.x48{left:160.273499px;}
.x77{left:165.472504px;}
.x56{left:166.996948px;}
.x65{left:179.556461px;}
.x1a{left:181.780495px;}
.x1b{left:186.339900px;}
.x58{left:188.114353px;}
.x7b{left:189.145649px;}
.x2f{left:190.471653px;}
.x30{left:193.961998px;}
.x80{left:199.221611px;}
.x4{left:203.484001px;}
.x31{left:205.396660px;}
.x32{left:208.888504px;}
.x34{left:220.366493px;}
.x67{left:225.884995px;}
.x4a{left:228.043510px;}
.x35{left:237.851990px;}
.x4d{left:239.875511px;}
.x59{left:240.949791px;}
.x36{left:245.467209px;}
.x68{left:246.685387px;}
.x4b{left:248.833946px;}
.x37{left:253.906494px;}
.x4c{left:255.870850px;}
.x38{left:257.426994px;}
.x39{left:265.636505px;}
.x7a{left:281.626190px;}
.x5b{left:283.232094px;}
.x79{left:288.336159px;}
.x5a{left:289.954811px;}
.x3a{left:293.041489px;}
.x69{left:299.878189px;}
.x3b{left:302.150711px;}
.x5c{left:304.035300px;}
.x7c{left:305.278496px;}
.x22{left:309.061500px;}
.x5d{left:311.072205px;}
.x5{left:316.533680px;}
.x3c{left:330.836998px;}
.x4e{left:331.912650px;}
.x6a{left:333.534302px;}
.x42{left:338.209511px;}
.x43{left:342.697495px;}
.x4f{left:352.716591px;}
.x6c{left:354.321190px;}
.x6b{left:357.172508px;}
.x50{left:359.752762px;}
.x6d{left:361.361046px;}
.x52{left:362.833786px;}
.x5e{left:363.907654px;}
.x6f{left:373.488155px;}
.x62{left:375.361794px;}
.x1c{left:377.209511px;}
.x1d{left:383.584648px;}
.x3e{left:403.232986px;}
.x7d{left:404.501221px;}
.x84{left:406.477478px;}
.x51{left:412.588943px;}
.x6e{left:414.196518px;}
.x26{left:416.299484px;}
.x3f{left:421.777222px;}
.x3d{left:422.925888px;}
.x18{left:432.345016px;}
.x27{left:434.914810px;}
.x12{left:443.556015px;}
.x13{left:448.115707px;}
.x28{left:452.728500px;}
.x3{left:454.959000px;}
.x29{left:456.798294px;}
.x70{left:460.245438px;}
.xb{left:462.149414px;}
.x75{left:467.798687px;}
.x40{left:470.014481px;}
.x83{left:471.501022px;}
.x53{left:475.674133px;}
.x2b{left:476.899933px;}
.x72{left:481.045670px;}
.x54{left:482.711243px;}
.x71{left:483.896988px;}
.x7{left:485.858414px;}
.x81{left:486.949493px;}
.x73{left:488.085571px;}
.x41{left:492.652817px;}
.x82{left:499.954193px;}
.x5f{left:508.600479px;}
.x2d{left:510.166489px;}
.x2e{left:518.116516px;}
.x19{left:524.505753px;}
.x8{left:528.009430px;}
.x60{left:531.730820px;}
.x23{left:535.947281px;}
.x74{left:539.003860px;}
.x20{left:544.213486px;}
.x21{left:548.772766px;}
.x24{left:554.869492px;}
.x25{left:566.854935px;}
.x44{left:572.277008px;}
.xe{left:575.371793px;}
.x7f{left:576.667793px;}
@media print{
.vf{vertical-align:-40.501383pt;}
.v3{vertical-align:-17.066652pt;}
.v12{vertical-align:-14.666667pt;}
.v2{vertical-align:-12.642741pt;}
.v4{vertical-align:-10.677327pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.073405pt;}
.v10{vertical-align:6.250163pt;}
.v11{vertical-align:11.050456pt;}
.v6{vertical-align:12.666667pt;}
.v7{vertical-align:17.760417pt;}
.v8{vertical-align:18.816569pt;}
.v1{vertical-align:20.266606pt;}
.v5{vertical-align:25.534993pt;}
.va{vertical-align:38.209147pt;}
.vb{vertical-align:40.501465pt;}
.ve{vertical-align:43.282389pt;}
.vd{vertical-align:49.486816pt;}
.vc{vertical-align:59.471354pt;}
.ls68{letter-spacing:-32.745826pt;}
.ls4a{letter-spacing:-32.695136pt;}
.ls49{letter-spacing:-28.589235pt;}
.ls70{letter-spacing:-1.194667pt;}
.ls46{letter-spacing:-1.064480pt;}
.ls6f{letter-spacing:-0.853333pt;}
.lsa{letter-spacing:-0.506667pt;}
.ls6{letter-spacing:-0.405333pt;}
.ls71{letter-spacing:-0.341333pt;}
.ls45{letter-spacing:-0.253333pt;}
.ls4{letter-spacing:-0.036036pt;}
.ls5{letter-spacing:-0.006298pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000004pt;}
.ls72{letter-spacing:0.000008pt;}
.ls6c{letter-spacing:0.000012pt;}
.ls9{letter-spacing:0.000016pt;}
.ls1e{letter-spacing:0.000020pt;}
.ls8{letter-spacing:0.000024pt;}
.ls7{letter-spacing:0.000060pt;}
.ls2{letter-spacing:0.000065pt;}
.ls76{letter-spacing:0.000068pt;}
.ls6e{letter-spacing:0.000098pt;}
.ls59{letter-spacing:0.000102pt;}
.ls32{letter-spacing:0.000162pt;}
.ls33{letter-spacing:0.000254pt;}
.ls3{letter-spacing:0.000553pt;}
.ls2a{letter-spacing:0.001231pt;}
.ls44{letter-spacing:0.003085pt;}
.lsb{letter-spacing:0.005584pt;}
.ls13{letter-spacing:0.005625pt;}
.lsc{letter-spacing:0.006114pt;}
.ls10{letter-spacing:0.006134pt;}
.ls42{letter-spacing:0.008426pt;}
.ls11{letter-spacing:0.009077pt;}
.ls14{letter-spacing:0.009081pt;}
.ls24{letter-spacing:0.012461pt;}
.ls52{letter-spacing:0.012868pt;}
.ls63{letter-spacing:0.016182pt;}
.ls5c{letter-spacing:0.025400pt;}
.ls5a{letter-spacing:0.025482pt;}
.ls61{letter-spacing:0.031260pt;}
.ls4b{letter-spacing:0.035483pt;}
.ls39{letter-spacing:0.036459pt;}
.ls2c{letter-spacing:0.036945pt;}
.ls56{letter-spacing:0.039062pt;}
.ls75{letter-spacing:0.170583pt;}
.ls6d{letter-spacing:0.283733pt;}
.ls6a{letter-spacing:0.354639pt;}
.ls79{letter-spacing:0.418066pt;}
.ls7b{letter-spacing:0.418152pt;}
.ls7c{letter-spacing:0.418229pt;}
.ls78{letter-spacing:0.418636pt;}
.ls69{letter-spacing:0.506667pt;}
.ls6b{letter-spacing:0.506673pt;}
.ls7d{letter-spacing:0.597331pt;}
.ls77{letter-spacing:0.597333pt;}
.ls7f{letter-spacing:0.601644pt;}
.ls2e{letter-spacing:0.603118pt;}
.ls1c{letter-spacing:0.603200pt;}
.lsd{letter-spacing:0.603201pt;}
.ls4f{letter-spacing:0.603202pt;}
.ls35{letter-spacing:0.603240pt;}
.ls30{letter-spacing:0.603281pt;}
.ls7a{letter-spacing:0.605876pt;}
.ls7e{letter-spacing:1.450667pt;}
.ls41{letter-spacing:2.027701pt;}
.ls1d{letter-spacing:3.253143pt;}
.ls26{letter-spacing:3.327147pt;}
.ls20{letter-spacing:3.329751pt;}
.ls3b{letter-spacing:3.329756pt;}
.ls12{letter-spacing:3.330402pt;}
.ls50{letter-spacing:3.339761pt;}
.ls54{letter-spacing:3.340249pt;}
.ls58{letter-spacing:3.340331pt;}
.ls15{letter-spacing:3.341389pt;}
.ls5f{letter-spacing:3.343016pt;}
.ls2f{letter-spacing:7.896901pt;}
.ls36{letter-spacing:7.897023pt;}
.ls3c{letter-spacing:7.897063pt;}
.ls21{letter-spacing:7.897633pt;}
.ls27{letter-spacing:7.899668pt;}
.ls16{letter-spacing:7.910246pt;}
.ls60{letter-spacing:7.945078pt;}
.ls48{letter-spacing:8.465252pt;}
.lsf{letter-spacing:8.515921pt;}
.ls18{letter-spacing:8.516084pt;}
.ls73{letter-spacing:9.472005pt;}
.ls74{letter-spacing:9.472064pt;}
.ls40{letter-spacing:11.253170pt;}
.ls4c{letter-spacing:11.261308pt;}
.ls1b{letter-spacing:13.280818pt;}
.ls57{letter-spacing:13.889038pt;}
.ls2d{letter-spacing:13.890667pt;}
.ls3f{letter-spacing:13.891154pt;}
.ls3a{letter-spacing:13.891235pt;}
.ls65{letter-spacing:13.895259pt;}
.ls1f{letter-spacing:13.916743pt;}
.ls5e{letter-spacing:13.938680pt;}
.ls43{letter-spacing:13.943273pt;}
.ls47{letter-spacing:14.041167pt;}
.ls51{letter-spacing:14.041225pt;}
.ls31{letter-spacing:14.091762pt;}
.ls23{letter-spacing:14.091843pt;}
.ls67{letter-spacing:14.091857pt;}
.ls1a{letter-spacing:14.091875pt;}
.ls29{letter-spacing:14.091925pt;}
.ls4e{letter-spacing:14.294593pt;}
.ls64{letter-spacing:14.396074pt;}
.lse{letter-spacing:14.953542pt;}
.ls17{letter-spacing:14.953623pt;}
.ls66{letter-spacing:15.612545pt;}
.ls22{letter-spacing:16.746008pt;}
.ls28{letter-spacing:16.747717pt;}
.ls3d{letter-spacing:16.748124pt;}
.ls37{letter-spacing:16.748205pt;}
.ls2b{letter-spacing:39.094315pt;}
.ls38{letter-spacing:39.096918pt;}
.ls3e{letter-spacing:39.144852pt;}
.ls34{letter-spacing:39.144933pt;}
.ls25{letter-spacing:50.375239pt;}
.ls55{letter-spacing:52.486730pt;}
.ls5d{letter-spacing:52.487219pt;}
.ls62{letter-spacing:52.487300pt;}
.ls5b{letter-spacing:52.489334pt;}
.ls19{letter-spacing:53.206782pt;}
.ls53{letter-spacing:63.815832pt;}
.ls4d{letter-spacing:66.551265pt;}
.ws7e{word-spacing:-14.142547pt;}
.ws5c{word-spacing:-14.091857pt;}
.wsbb{word-spacing:-13.173333pt;}
.ws9{word-spacing:-12.666667pt;}
.ws7c{word-spacing:-12.413333pt;}
.ws6{word-spacing:-12.261333pt;}
.ws2e{word-spacing:-12.160000pt;}
.ws15{word-spacing:-11.850667pt;}
.wsee{word-spacing:-11.264000pt;}
.ws20{word-spacing:-10.666667pt;}
.ws3{word-spacing:-10.488000pt;}
.wsb1{word-spacing:-10.325333pt;}
.ws5{word-spacing:-10.234667pt;}
.ws8{word-spacing:-9.728000pt;}
.wsaa{word-spacing:-9.472000pt;}
.ws9b{word-spacing:-9.150400pt;}
.ws7{word-spacing:-8.866667pt;}
.ws5e{word-spacing:-8.515942pt;}
.ws2{word-spacing:-8.362667pt;}
.ws9c{word-spacing:-8.295466pt;}
.wsd1{word-spacing:-8.192000pt;}
.wsa{word-spacing:-7.466667pt;}
.ws4{word-spacing:-7.341600pt;}
.wsb4{word-spacing:-3.698655pt;}
.wsd{word-spacing:-1.680000pt;}
.ws65{word-spacing:-0.709333pt;}
.wse0{word-spacing:-0.640000pt;}
.ws82{word-spacing:-0.608000pt;}
.wsea{word-spacing:-0.597333pt;}
.ws33{word-spacing:-0.557333pt;}
.wscd{word-spacing:-0.506667pt;}
.wsf3{word-spacing:-0.469333pt;}
.ws97{word-spacing:-0.456000pt;}
.ws47{word-spacing:-0.405333pt;}
.ws109{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.354667pt;}
.wsd6{word-spacing:-0.304000pt;}
.ws4f{word-spacing:-0.253333pt;}
.wsde{word-spacing:-0.213333pt;}
.wsc6{word-spacing:-0.202667pt;}
.ws9f{word-spacing:-0.152000pt;}
.ws67{word-spacing:-0.101333pt;}
.ws61{word-spacing:-0.070965pt;}
.ws5a{word-spacing:-0.050690pt;}
.ws1{word-spacing:-0.042667pt;}
.ws5b{word-spacing:-0.035483pt;}
.wsb{word-spacing:-0.023217pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.006298pt;}
.ws71{word-spacing:0.050667pt;}
.ws10d{word-spacing:0.085333pt;}
.ws78{word-spacing:0.101333pt;}
.wse8{word-spacing:0.128000pt;}
.ws2d{word-spacing:0.152000pt;}
.ws58{word-spacing:0.213333pt;}
.ws7a{word-spacing:0.253333pt;}
.wsf7{word-spacing:0.256000pt;}
.wsf0{word-spacing:0.298667pt;}
.ws84{word-spacing:0.304000pt;}
.wsbc{word-spacing:0.354667pt;}
.wsac{word-spacing:0.426667pt;}
.ws98{word-spacing:0.456000pt;}
.ws96{word-spacing:0.506667pt;}
.wseb{word-spacing:0.512000pt;}
.ws10b{word-spacing:0.554667pt;}
.ws27{word-spacing:0.557333pt;}
.ws9a{word-spacing:0.608000pt;}
.ws42{word-spacing:0.682667pt;}
.wsd8{word-spacing:0.709333pt;}
.ws11{word-spacing:0.760000pt;}
.ws12{word-spacing:0.810667pt;}
.ws99{word-spacing:0.861333pt;}
.wsae{word-spacing:0.896000pt;}
.ws3e{word-spacing:0.912000pt;}
.wsa5{word-spacing:0.962667pt;}
.ws44{word-spacing:0.981333pt;}
.ws39{word-spacing:1.013333pt;}
.ws59{word-spacing:1.028997pt;}
.ws87{word-spacing:1.064000pt;}
.wsf5{word-spacing:1.152000pt;}
.ws9e{word-spacing:1.165333pt;}
.ws101{word-spacing:1.194667pt;}
.ws23{word-spacing:1.317333pt;}
.wsdf{word-spacing:1.322667pt;}
.wsa7{word-spacing:1.368000pt;}
.wsc4{word-spacing:1.408000pt;}
.wsd3{word-spacing:1.418667pt;}
.wsaf{word-spacing:1.450667pt;}
.ws104{word-spacing:1.493333pt;}
.ws21{word-spacing:1.520000pt;}
.ws92{word-spacing:1.570667pt;}
.wse6{word-spacing:1.578667pt;}
.wsc8{word-spacing:1.621333pt;}
.ws13{word-spacing:1.672000pt;}
.ws1e{word-spacing:1.722667pt;}
.ws86{word-spacing:1.773333pt;}
.wsab{word-spacing:1.792000pt;}
.ws25{word-spacing:1.824000pt;}
.ws16{word-spacing:1.874667pt;}
.wsa8{word-spacing:1.877333pt;}
.wsd9{word-spacing:1.925333pt;}
.ws28{word-spacing:1.976000pt;}
.ws14{word-spacing:2.026667pt;}
.ws85{word-spacing:2.077333pt;}
.ws1d{word-spacing:2.128000pt;}
.wse4{word-spacing:2.175996pt;}
.ws4e{word-spacing:2.178667pt;}
.wsb9{word-spacing:2.218667pt;}
.ws8f{word-spacing:2.229333pt;}
.wse7{word-spacing:2.261333pt;}
.ws74{word-spacing:2.330667pt;}
.wsb3{word-spacing:2.346667pt;}
.ws91{word-spacing:2.381333pt;}
.wsd2{word-spacing:2.482667pt;}
.ws3f{word-spacing:2.533333pt;}
.wsb0{word-spacing:2.560000pt;}
.ws50{word-spacing:2.583995pt;}
.wsfa{word-spacing:2.602667pt;}
.ws72{word-spacing:2.634667pt;}
.wsba{word-spacing:2.645333pt;}
.ws66{word-spacing:2.685333pt;}
.wsfb{word-spacing:2.688000pt;}
.wse9{word-spacing:2.730667pt;}
.ws6b{word-spacing:2.736000pt;}
.ws69{word-spacing:2.786667pt;}
.ws1b{word-spacing:2.837333pt;}
.ws30{word-spacing:2.888000pt;}
.ws10a{word-spacing:2.901333pt;}
.ws48{word-spacing:2.938667pt;}
.wsdd{word-spacing:2.986667pt;}
.ws2f{word-spacing:2.989333pt;}
.ws3a{word-spacing:3.040000pt;}
.wsd7{word-spacing:3.090667pt;}
.ws4b{word-spacing:3.141333pt;}
.ws10c{word-spacing:3.157333pt;}
.ws7b{word-spacing:3.192000pt;}
.ws1a{word-spacing:3.242667pt;}
.wsf8{word-spacing:3.285333pt;}
.wscc{word-spacing:3.293333pt;}
.ws53{word-spacing:3.344000pt;}
.ws32{word-spacing:3.394667pt;}
.ws18{word-spacing:3.445333pt;}
.wsa0{word-spacing:3.496000pt;}
.ws1c{word-spacing:3.546667pt;}
.ws52{word-spacing:3.597328pt;}
.ws19{word-spacing:3.648000pt;}
.ws45{word-spacing:3.698667pt;}
.wse{word-spacing:3.749333pt;}
.wsd4{word-spacing:3.800000pt;}
.ws51{word-spacing:3.850667pt;}
.ws8b{word-spacing:3.882667pt;}
.wsc0{word-spacing:3.901333pt;}
.ws8a{word-spacing:3.925333pt;}
.ws75{word-spacing:3.952000pt;}
.ws8d{word-spacing:3.968000pt;}
.ws24{word-spacing:4.002667pt;}
.ws2b{word-spacing:4.053333pt;}
.wsf9{word-spacing:4.096000pt;}
.ws34{word-spacing:4.104000pt;}
.wsd0{word-spacing:4.154667pt;}
.wsf6{word-spacing:4.181333pt;}
.ws22{word-spacing:4.205333pt;}
.ws17{word-spacing:4.256000pt;}
.wse5{word-spacing:4.266667pt;}
.ws38{word-spacing:4.306667pt;}
.wsec{word-spacing:4.352000pt;}
.ws6a{word-spacing:4.408000pt;}
.wsf{word-spacing:4.458667pt;}
.ws102{word-spacing:4.480000pt;}
.ws35{word-spacing:4.509333pt;}
.ws73{word-spacing:4.560000pt;}
.ws55{word-spacing:4.610667pt;}
.wsb8{word-spacing:4.650667pt;}
.ws4c{word-spacing:4.661333pt;}
.ws8e{word-spacing:4.693333pt;}
.wsc9{word-spacing:4.712000pt;}
.wsbd{word-spacing:4.762667pt;}
.ws107{word-spacing:4.778667pt;}
.wsc5{word-spacing:4.821333pt;}
.ws6d{word-spacing:4.864000pt;}
.ws2c{word-spacing:4.914667pt;}
.ws62{word-spacing:5.016000pt;}
.ws108{word-spacing:5.034667pt;}
.ws76{word-spacing:5.066667pt;}
.ws3d{word-spacing:5.168000pt;}
.wsef{word-spacing:5.205333pt;}
.wsb2{word-spacing:5.218667pt;}
.wsda{word-spacing:5.248000pt;}
.ws3b{word-spacing:5.320000pt;}
.wsf2{word-spacing:5.333333pt;}
.ws2a{word-spacing:5.370667pt;}
.wse1{word-spacing:5.376000pt;}
.wsf1{word-spacing:5.418667pt;}
.ws93{word-spacing:5.421333pt;}
.ws40{word-spacing:5.472000pt;}
.wsed{word-spacing:5.504000pt;}
.wscf{word-spacing:5.522667pt;}
.wsc2{word-spacing:5.573333pt;}
.ws103{word-spacing:5.589333pt;}
.ws6f{word-spacing:5.624000pt;}
.wsf4{word-spacing:5.674667pt;}
.ws26{word-spacing:5.725333pt;}
.ws46{word-spacing:5.826667pt;}
.ws41{word-spacing:5.877333pt;}
.ws49{word-spacing:5.978667pt;}
.ws95{word-spacing:6.029333pt;}
.wsb7{word-spacing:6.058667pt;}
.ws9d{word-spacing:6.130667pt;}
.ws43{word-spacing:6.144000pt;}
.ws3c{word-spacing:6.181333pt;}
.wsad{word-spacing:6.186667pt;}
.ws94{word-spacing:6.282667pt;}
.wse3{word-spacing:6.314667pt;}
.ws68{word-spacing:6.333333pt;}
.wsdc{word-spacing:6.357333pt;}
.ws8c{word-spacing:6.400000pt;}
.wsc1{word-spacing:6.485333pt;}
.wsa4{word-spacing:6.536000pt;}
.ws56{word-spacing:6.586667pt;}
.ws37{word-spacing:6.637333pt;}
.ws88{word-spacing:6.738667pt;}
.wsfd{word-spacing:6.741333pt;}
.wsce{word-spacing:6.789333pt;}
.wsdb{word-spacing:6.826667pt;}
.wscb{word-spacing:6.840000pt;}
.ws54{word-spacing:6.890667pt;}
.wsa6{word-spacing:6.941333pt;}
.wsfc{word-spacing:6.954667pt;}
.ws81{word-spacing:6.992000pt;}
.ws106{word-spacing:6.997333pt;}
.wse2{word-spacing:7.040000pt;}
.ws6e{word-spacing:7.042667pt;}
.ws83{word-spacing:7.093333pt;}
.ws36{word-spacing:7.144000pt;}
.ws63{word-spacing:7.194667pt;}
.ws29{word-spacing:7.245333pt;}
.wsd5{word-spacing:7.296000pt;}
.ws105{word-spacing:7.338667pt;}
.ws31{word-spacing:7.346667pt;}
.ws4d{word-spacing:7.397333pt;}
.ws89{word-spacing:7.448000pt;}
.wsa2{word-spacing:7.600000pt;}
.wsc3{word-spacing:7.701333pt;}
.wsa9{word-spacing:7.722667pt;}
.ws90{word-spacing:8.005333pt;}
.ws4a{word-spacing:8.106667pt;}
.wsa1{word-spacing:8.258667pt;}
.ws64{word-spacing:8.360000pt;}
.ws60{word-spacing:8.379023pt;}
.ws5d{word-spacing:8.379104pt;}
.wsbf{word-spacing:8.512000pt;}
.wsbe{word-spacing:8.562667pt;}
.ws77{word-spacing:8.917333pt;}
.wsb5{word-spacing:8.968000pt;}
.ws6c{word-spacing:9.018667pt;}
.ws57{word-spacing:9.120000pt;}
.wsa3{word-spacing:9.424000pt;}
.wsff{word-spacing:9.813333pt;}
.wsb6{word-spacing:9.981333pt;}
.wsc7{word-spacing:10.589333pt;}
.ws80{word-spacing:10.690667pt;}
.wsca{word-spacing:13.325333pt;}
.ws70{word-spacing:13.629333pt;}
.ws79{word-spacing:28.589235pt;}
.wsfe{word-spacing:31.786667pt;}
.ws100{word-spacing:32.938667pt;}
.ws1f{word-spacing:64.938667pt;}
.ws5f{word-spacing:65.320111pt;}
.ws7f{word-spacing:65.444674pt;}
.ws7d{word-spacing:70.408600pt;}
._1a{margin-left:-21.229322pt;}
._f{margin-left:-19.354652pt;}
._10{margin-left:-17.820812pt;}
._1d{margin-left:-16.890678pt;}
._6{margin-left:-15.852272pt;}
._17{margin-left:-14.950827pt;}
._5{margin-left:-13.989369pt;}
._3{margin-left:-12.887963pt;}
._e{margin-left:-11.827455pt;}
._18{margin-left:-10.589327pt;}
._15{margin-left:-8.119440pt;}
._1b{margin-left:-5.776000pt;}
._7{margin-left:-4.393065pt;}
._16{margin-left:-3.312000pt;}
._1{margin-left:-2.409869pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.164800pt;}
._d{width:2.229622pt;}
._c{width:3.578667pt;}
._11{width:4.782398pt;}
._14{width:5.755733pt;}
._1c{width:6.741329pt;}
._20{width:7.632010pt;}
._21{width:8.789329pt;}
._13{width:9.984000pt;}
._19{width:11.703992pt;}
._b{width:13.589241pt;}
._12{width:17.885337pt;}
._8{width:19.962693pt;}
._1f{width:26.245324pt;}
._4{width:29.333331pt;}
._1e{width:32.274657pt;}
._a{width:50.005324pt;}
._9{width:64.938657pt;}
.fsb{font-size:29.866667pt;}
.fs9{font-size:35.466667pt;}
.fsd{font-size:35.482666pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:41.066666pt;}
.fs5{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fsc{font-size:50.690133pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1e9{bottom:0.039714pt;}
.ydb{bottom:0.108388pt;}
.ycc{bottom:0.108398pt;}
.yf6{bottom:0.109721pt;}
.yb2{bottom:0.109863pt;}
.yde{bottom:0.111460pt;}
.yd4{bottom:0.111898pt;}
.yd5{bottom:0.114217pt;}
.yef{bottom:0.119334pt;}
.yeb{bottom:0.130676pt;}
.y160{bottom:0.151774pt;}
.y167{bottom:0.152181pt;}
.y11e{bottom:0.153727pt;}
.yf1{bottom:0.170451pt;}
.yc4{bottom:0.172933pt;}
.yb9{bottom:0.173096pt;}
.y124{bottom:0.174235pt;}
.yb5{bottom:0.174398pt;}
.y1f3{bottom:1.906250pt;}
.yc1{bottom:2.306132pt;}
.yf0{bottom:2.933065pt;}
.yd1{bottom:3.239461pt;}
.ye7{bottom:3.253499pt;}
.ybe{bottom:4.439616pt;}
.yda{bottom:4.839598pt;}
.ycb{bottom:4.839600pt;}
.yf5{bottom:4.840931pt;}
.yb1{bottom:4.841064pt;}
.yea{bottom:4.852692pt;}
.yed{bottom:4.859294pt;}
.ye6{bottom:6.332926pt;}
.ye9{bottom:9.706268pt;}
.yec{bottom:9.839598pt;}
.ydf{bottom:11.763601pt;}
.y23{bottom:29.055333pt;}
.y99{bottom:30.208800pt;}
.y25{bottom:30.208933pt;}
.y146{bottom:58.159587pt;}
.y101{bottom:58.160929pt;}
.y77{bottom:65.136002pt;}
.y47{bottom:65.136022pt;}
.y172{bottom:65.141332pt;}
.y1bb{bottom:65.525335pt;}
.y1e5{bottom:65.541600pt;}
.y11a{bottom:65.793742pt;}
.y1cd{bottom:65.869333pt;}
.y15c{bottom:65.959880pt;}
.yfe{bottom:67.449600pt;}
.y215{bottom:69.399999pt;}
.y149{bottom:74.347738pt;}
.y152{bottom:74.347900pt;}
.y155{bottom:74.348063pt;}
.y104{bottom:74.349080pt;}
.y108{bottom:74.349202pt;}
.y10e{bottom:74.349325pt;}
.y114{bottom:74.349731pt;}
.y76{bottom:77.469335pt;}
.y171{bottom:77.472000pt;}
.y1ba{bottom:77.855998pt;}
.y1cc{bottom:78.200002pt;}
.y1e4{bottom:80.880936pt;}
.y97{bottom:81.733332pt;}
.y46{bottom:81.733353pt;}
.yfc{bottom:82.621333pt;}
.yfb{bottom:82.782933pt;}
.yfd{bottom:82.788935pt;}
.y270{bottom:83.834279pt;}
.y4{bottom:86.333337pt;}
.y75{bottom:89.802663pt;}
.y1b9{bottom:90.189331pt;}
.y1b3{bottom:92.537598pt;}
.yf9{bottom:93.274668pt;}
.y26f{bottom:96.164948pt;}
.y1e3{bottom:96.220266pt;}
.y45{bottom:96.511353pt;}
.yf8{bottom:98.116262pt;}
.yfa{bottom:98.122264pt;}
.y1b8{bottom:102.519999pt;}
.y74{bottom:106.400004pt;}
.y26e{bottom:108.495616pt;}
.yf4{bottom:108.606669pt;}
.y1b2{bottom:109.134928pt;}
.y1e2{bottom:111.559600pt;}
.y44{bottom:113.108683pt;}
.yf3{bottom:113.449595pt;}
.yf7{bottom:113.455597pt;}
.y170{bottom:115.925333pt;}
.y26d{bottom:120.826284pt;}
.y20{bottom:123.790666pt;}
.ye8{bottom:123.941335pt;}
.ye5{bottom:125.549337pt;}
.yf2{bottom:126.485331pt;}
.y191{bottom:126.882933pt;}
.y1e1{bottom:126.898936pt;}
.y16f{bottom:128.256002pt;}
.ye3{bottom:128.621338pt;}
.ye2{bottom:128.776937pt;}
.ye4{bottom:128.788930pt;}
.y26c{bottom:133.156942pt;}
.yee{bottom:133.493062pt;}
.y43{bottom:133.982686pt;}
.y190{bottom:142.204264pt;}
.y1e0{bottom:142.238271pt;}
.y1c2{bottom:143.000936pt;}
.ye1{bottom:144.116262pt;}
.y16e{bottom:144.853333pt;}
.y26b{bottom:145.487610pt;}
.y42{bottom:146.313354pt;}
.yd9{bottom:154.608002pt;}
.y1b1{bottom:154.816935pt;}
.y214{bottom:154.876933pt;}
.ye0{bottom:156.216003pt;}
.y73{bottom:157.525604pt;}
.y18f{bottom:157.543599pt;}
.y1df{bottom:157.577596pt;}
.y26a{bottom:157.818278pt;}
.y1c1{bottom:158.340271pt;}
.y16d{bottom:158.640004pt;}
.yd8{bottom:159.437612pt;}
.ydd{bottom:159.447600pt;}
.ydc{bottom:159.455597pt;}
.y41{bottom:165.353353pt;}
.y269{bottom:170.148946pt;}
.y1b0{bottom:170.156270pt;}
.y213{bottom:170.216267pt;}
.y72{bottom:172.864929pt;}
.y18e{bottom:172.882933pt;}
.y1de{bottom:172.916931pt;}
.y1c0{bottom:173.661600pt;}
.yd7{bottom:174.776937pt;}
.y17{bottom:175.052000pt;}
.y40{bottom:177.684020pt;}
.y268{bottom:182.479614pt;}
.y1af{bottom:185.495605pt;}
.y212{bottom:185.537598pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y71{bottom:188.204264pt;}
.y18d{bottom:188.216267pt;}
.y1dd{bottom:188.256266pt;}
.y1bf{bottom:189.000936pt;}
.y239{bottom:189.891744pt;}
.yd6{bottom:190.116272pt;}
.y267{bottom:194.810282pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yd3{bottom:200.607992pt;}
.y1ae{bottom:200.834941pt;}
.y211{bottom:200.876933pt;}
.yd0{bottom:202.216003pt;}
.y18c{bottom:203.537598pt;}
.y70{bottom:203.543599pt;}
.y1dc{bottom:203.595601pt;}
.y1be{bottom:204.340271pt;}
.y143{bottom:204.931620pt;}
.ycf{bottom:205.449605pt;}
.yd2{bottom:205.455607pt;}
.y266{bottom:207.140951pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y238{bottom:214.489075pt;}
.yca{bottom:215.941325pt;}
.y1ad{bottom:216.174276pt;}
.y210{bottom:216.216267pt;}
.y18b{bottom:218.876933pt;}
.y6f{bottom:218.882933pt;}
.y1db{bottom:218.934937pt;}
.y265{bottom:219.471619pt;}
.y1bd{bottom:219.673604pt;}
.y142{bottom:220.270955pt;}
.yce{bottom:220.621338pt;}
.yc9{bottom:220.764954pt;}
.ycd{bottom:220.788940pt;}
.y3f{bottom:224.742391pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y1ac{bottom:231.513590pt;}
.y20f{bottom:231.537598pt;}
.y264{bottom:231.802287pt;}
.y96{bottom:234.150248pt;}
.y6e{bottom:234.210266pt;}
.y18a{bottom:234.216267pt;}
.y1da{bottom:234.274272pt;}
.y1bc{bottom:235.012939pt;}
.y141{bottom:235.610270pt;}
.yc8{bottom:236.104289pt;}
.y237{bottom:239.155741pt;}
.y3e{bottom:240.081726pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y263{bottom:244.132955pt;}
.y1ab{bottom:246.852926pt;}
.y20e{bottom:246.876933pt;}
.y297{bottom:248.066243pt;}
.y95{bottom:249.489583pt;}
.y189{bottom:249.525594pt;}
.y6d{bottom:249.549600pt;}
.y1d9{bottom:249.613607pt;}
.y140{bottom:250.949605pt;}
.yc7{bottom:251.443604pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y3d{bottom:255.409058pt;}
.y262{bottom:256.463623pt;}
.y296{bottom:260.396912pt;}
.y1aa{bottom:262.192261pt;}
.y20d{bottom:262.216267pt;}
.y94{bottom:264.828918pt;}
.y188{bottom:264.864929pt;}
.y6c{bottom:264.870931pt;}
.y1d8{bottom:264.952942pt;}
.y13f{bottom:266.264954pt;}
.yc6{bottom:266.782939pt;}
.y236{bottom:266.894246pt;}
.y261{bottom:268.794271pt;}
.y3c{bottom:270.748393pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y1a9{bottom:277.531596pt;}
.y20c{bottom:277.543599pt;}
.y1c3{bottom:277.856933pt;}
.y235{bottom:279.224915pt;}
.y93{bottom:280.168254pt;}
.y187{bottom:280.204264pt;}
.y6b{bottom:280.210266pt;}
.y1d7{bottom:280.292257pt;}
.y260{bottom:281.124939pt;}
.y13e{bottom:281.604289pt;}
.yc3{bottom:281.954671pt;}
.yc2{bottom:282.116272pt;}
.yc5{bottom:282.122274pt;}
.y295{bottom:285.068929pt;}
.y3b{bottom:286.075724pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y234{bottom:291.555583pt;}
.y1a8{bottom:292.870931pt;}
.y20b{bottom:292.882933pt;}
.ybd{bottom:293.015991pt;}
.y25f{bottom:293.463623pt;}
.yc0{bottom:295.151998pt;}
.y92{bottom:295.507589pt;}
.y186{bottom:295.543599pt;}
.y6a{bottom:295.549600pt;}
.y1d6{bottom:295.631592pt;}
.y13d{bottom:296.943604pt;}
.y294{bottom:297.399577pt;}
.ybf{bottom:297.455607pt;}
.ybc{bottom:297.457581pt;}
.y3a{bottom:301.415059pt;}
.y233{bottom:303.886251pt;}
.y25e{bottom:305.794271pt;}
.y20a{bottom:308.198263pt;}
.y1a7{bottom:308.210266pt;}
.ye{bottom:309.452000pt;}
.y293{bottom:309.730245pt;}
.y91{bottom:310.846924pt;}
.y69{bottom:310.882933pt;}
.y1d5{bottom:310.970927pt;}
.y13c{bottom:312.282939pt;}
.y232{bottom:316.216919pt;}
.y39{bottom:316.748393pt;}
.y25d{bottom:318.124939pt;}
.y100{bottom:320.454671pt;}
.y292{bottom:322.060913pt;}
.y209{bottom:323.537577pt;}
.y1a6{bottom:323.549600pt;}
.y90{bottom:326.186259pt;}
.y68{bottom:326.210246pt;}
.y185{bottom:326.216248pt;}
.y1d4{bottom:326.310262pt;}
.y13b{bottom:327.604289pt;}
.y231{bottom:328.547587pt;}
.y121{bottom:329.821859pt;}
.y120{bottom:330.116170pt;}
.y25c{bottom:330.460937pt;}
.y38{bottom:332.075724pt;}
.y291{bottom:334.391581pt;}
.y11b{bottom:334.552531pt;}
.y11f{bottom:334.552795pt;}
.y1a5{bottom:338.858927pt;}
.y208{bottom:338.876912pt;}
.y230{bottom:340.878255pt;}
.y8f{bottom:341.525594pt;}
.y67{bottom:341.549600pt;}
.y1d3{bottom:341.649618pt;}
.y25b{bottom:342.791626pt;}
.y13a{bottom:342.943604pt;}
.yd{bottom:343.809333pt;}
.y11d{bottom:346.108398pt;}
.y290{bottom:346.820923pt;}
.y37{bottom:347.415080pt;}
.y11c{bottom:350.740682pt;}
.y1a4{bottom:354.198242pt;}
.y207{bottom:354.216267pt;}
.y25a{bottom:355.175618pt;}
.yff{bottom:355.837606pt;}
.y8e{bottom:356.864909pt;}
.y66{bottom:356.876912pt;}
.y1d2{bottom:356.988932pt;}
.y139{bottom:358.282959pt;}
.y28f{bottom:359.151571pt;}
.yc{bottom:362.706666pt;}
.y36{bottom:362.754395pt;}
.y106{bottom:364.671346pt;}
.y10a{bottom:364.671590pt;}
.y110{bottom:364.671753pt;}
.y116{bottom:364.671997pt;}
.y22f{bottom:365.550252pt;}
.y259{bottom:367.506266pt;}
.y1a3{bottom:369.537598pt;}
.y28e{bottom:371.482259pt;}
.y8d{bottom:372.204264pt;}
.y65{bottom:372.216267pt;}
.y1d1{bottom:372.328247pt;}
.y138{bottom:373.586263pt;}
.y103{bottom:373.875895pt;}
.y10d{bottom:373.876180pt;}
.y113{bottom:373.876302pt;}
.y119{bottom:373.876709pt;}
.y10c{bottom:374.179362pt;}
.y112{bottom:374.179525pt;}
.y118{bottom:374.179932pt;}
.y107{bottom:378.615723pt;}
.y10b{bottom:378.615885pt;}
.y111{bottom:378.616007pt;}
.y117{bottom:378.616414pt;}
.y258{bottom:379.836955pt;}
.y28d{bottom:383.812907pt;}
.y1a2{bottom:384.876912pt;}
.y102{bottom:384.999715pt;}
.y64{bottom:387.531576pt;}
.y8c{bottom:387.543579pt;}
.y1d0{bottom:387.667603pt;}
.y137{bottom:388.925618pt;}
.y105{bottom:390.159342pt;}
.y109{bottom:390.159465pt;}
.y10f{bottom:390.159749pt;}
.y115{bottom:390.159993pt;}
.y22e{bottom:390.222249pt;}
.y257{bottom:392.167603pt;}
.y35{bottom:394.087728pt;}
.y28c{bottom:396.143595pt;}
.y1a1{bottom:400.216267pt;}
.y22d{bottom:402.552938pt;}
.y63{bottom:402.870931pt;}
.y8b{bottom:402.882933pt;}
.y1cf{bottom:403.006917pt;}
.y136{bottom:404.264933pt;}
.y1c7{bottom:404.340251pt;}
.y256{bottom:404.498291pt;}
.y28b{bottom:408.474243pt;}
.y206{bottom:415.507568pt;}
.y1a0{bottom:415.525594pt;}
.ybb{bottom:416.049600pt;}
.y255{bottom:416.828939pt;}
.y62{bottom:418.210246pt;}
.y184{bottom:418.216267pt;}
.y1ce{bottom:418.346273pt;}
.y135{bottom:419.604289pt;}
.y1c6{bottom:419.673584pt;}
.y28a{bottom:420.804932pt;}
.y1b7{bottom:421.664958pt;}
.y22c{bottom:427.224935pt;}
.y254{bottom:429.159627pt;}
.y205{bottom:430.846924pt;}
.y19f{bottom:430.864909pt;}
.yb8{bottom:431.221313pt;}
.yb7{bottom:431.376912pt;}
.yba{bottom:431.388916pt;}
.y289{bottom:433.135579pt;}
.y183{bottom:433.537598pt;}
.y61{bottom:433.549600pt;}
.y1b6{bottom:433.995605pt;}
.y134{bottom:434.943604pt;}
.y1c5{bottom:435.012939pt;}
.y22b{bottom:439.555583pt;}
.y253{bottom:441.490275pt;}
.y34{bottom:442.088420pt;}
.y288{bottom:445.466267pt;}
.y204{bottom:446.186239pt;}
.y19e{bottom:446.204264pt;}
.y1b5{bottom:446.326294pt;}
.yb6{bottom:446.716267pt;}
.yb{bottom:446.990669pt;}
.y60{bottom:448.828939pt;}
.y182{bottom:448.876912pt;}
.y8a{bottom:448.882933pt;}
.y133{bottom:450.282959pt;}
.y252{bottom:453.820964pt;}
.yb0{bottom:457.206665pt;}
.y287{bottom:457.796916pt;}
.y1b4{bottom:458.656942pt;}
.y203{bottom:461.525594pt;}
.y19d{bottom:461.543579pt;}
.yb4{bottom:461.886678pt;}
.y1f2{bottom:461.987996pt;}
.yaf{bottom:462.031576pt;}
.yb3{bottom:462.055583pt;}
.ya{bottom:462.990669pt;}
.y1f1{bottom:463.886271pt;}
.y5f{bottom:464.168254pt;}
.y89{bottom:464.192261pt;}
.y181{bottom:464.216267pt;}
.y132{bottom:465.616292pt;}
.y251{bottom:466.151611pt;}
.y286{bottom:470.127604pt;}
.y33{bottom:472.731079pt;}
.y1ef{bottom:476.048014pt;}
.y1f0{bottom:476.216919pt;}
.y1ee{bottom:476.219604pt;}
.y1cb{bottom:476.544963pt;}
.y202{bottom:476.864909pt;}
.y19c{bottom:476.882933pt;}
.yae{bottom:477.370931pt;}
.y250{bottom:478.482300pt;}
.y9{bottom:478.990666pt;}
.y180{bottom:479.454915pt;}
.y5e{bottom:479.507568pt;}
.y88{bottom:479.531576pt;}
.y22a{bottom:479.549600pt;}
.y131{bottom:480.949626pt;}
.y285{bottom:482.458252pt;}
.y1ec{bottom:488.512004pt;}
.y1ed{bottom:488.550252pt;}
.y1eb{bottom:488.552938pt;}
.y1ca{bottom:488.875610pt;}
.y24f{bottom:490.812948pt;}
.y201{bottom:492.204264pt;}
.y19b{bottom:492.222249pt;}
.yad{bottom:492.710246pt;}
.y284{bottom:494.788900pt;}
.y17f{bottom:494.794271pt;}
.y5d{bottom:494.846924pt;}
.y87{bottom:494.870931pt;}
.y229{bottom:494.876912pt;}
.y8{bottom:494.990666pt;}
.y130{bottom:496.276937pt;}
.y1e8{bottom:500.845337pt;}
.y1ea{bottom:500.883586pt;}
.y1e7{bottom:500.886271pt;}
.y1c9{bottom:501.206299pt;}
.y24e{bottom:503.143595pt;}
.y32{bottom:503.397054pt;}
.y283{bottom:507.119588pt;}
.y200{bottom:507.543579pt;}
.yac{bottom:508.049600pt;}
.y5c{bottom:510.186239pt;}
.y86{bottom:510.210246pt;}
.y228{bottom:510.216267pt;}
.y12f{bottom:511.616292pt;}
.y1e6{bottom:513.216919pt;}
.y1c8{bottom:513.536947pt;}
.y24d{bottom:515.474284pt;}
.y31{bottom:518.736410pt;}
.y282{bottom:519.450236pt;}
.y1ff{bottom:522.882933pt;}
.yab{bottom:523.370931pt;}
.y19a{bottom:523.555583pt;}
.y17e{bottom:525.460246pt;}
.y5b{bottom:525.525594pt;}
.y227{bottom:525.537598pt;}
.y85{bottom:525.549600pt;}
.y12e{bottom:526.931600pt;}
.y24c{bottom:527.804932pt;}
.y281{bottom:531.780924pt;}
.y30{bottom:534.075724pt;}
.y1fe{bottom:538.204264pt;}
.yaa{bottom:538.710246pt;}
.y24b{bottom:540.135620pt;}
.y17d{bottom:540.799600pt;}
.y84{bottom:540.834920pt;}
.y5a{bottom:540.864909pt;}
.y226{bottom:540.876912pt;}
.y12d{bottom:542.270955pt;}
.y280{bottom:544.111572pt;}
.y2f{bottom:549.415080pt;}
.y24a{bottom:552.466267pt;}
.y1fd{bottom:553.543579pt;}
.ya9{bottom:554.049600pt;}
.y17c{bottom:556.138916pt;}
.y83{bottom:556.174235pt;}
.y59{bottom:556.204264pt;}
.y225{bottom:556.216267pt;}
.y27f{bottom:556.442261pt;}
.y12c{bottom:557.610270pt;}
.y2e{bottom:564.748413pt;}
.y249{bottom:564.796956pt;}
.y27e{bottom:568.772909pt;}
.y1fc{bottom:568.882933pt;}
.ya8{bottom:569.370931pt;}
.y17b{bottom:571.478271pt;}
.y82{bottom:571.513590pt;}
.y224{bottom:571.537598pt;}
.y58{bottom:571.543579pt;}
.y12b{bottom:572.949626pt;}
.y7{bottom:573.786667pt;}
.y248{bottom:577.127604pt;}
.y2d{bottom:580.075724pt;}
.y27d{bottom:581.103597pt;}
.y1fb{bottom:584.216267pt;}
.ya7{bottom:584.710246pt;}
.y17a{bottom:586.817586pt;}
.y81{bottom:586.852905pt;}
.y223{bottom:586.876912pt;}
.y57{bottom:586.882933pt;}
.y12a{bottom:588.288940pt;}
.y247{bottom:589.458293pt;}
.y6{bottom:592.685334pt;}
.y27c{bottom:593.434245pt;}
.y2c{bottom:595.415080pt;}
.y1fa{bottom:599.525594pt;}
.ya6{bottom:600.049600pt;}
.y246{bottom:601.796956pt;}
.y56{bottom:602.186239pt;}
.y80{bottom:602.192261pt;}
.y222{bottom:602.216267pt;}
.y199{bottom:602.222249pt;}
.y27b{bottom:605.764933pt;}
.y2b{bottom:610.748413pt;}
.y245{bottom:614.127604pt;}
.y1f9{bottom:614.864909pt;}
.ya5{bottom:615.352905pt;}
.y179{bottom:617.483602pt;}
.y55{bottom:617.525594pt;}
.y7f{bottom:617.531576pt;}
.y221{bottom:617.537598pt;}
.y198{bottom:617.549600pt;}
.y27a{bottom:618.095581pt;}
.y129{bottom:619.622274pt;}
.y2a{bottom:626.087728pt;}
.y244{bottom:626.458293pt;}
.y1f8{bottom:630.204264pt;}
.y279{bottom:630.426270pt;}
.ya4{bottom:630.692261pt;}
.y178{bottom:632.822917pt;}
.y54{bottom:632.864909pt;}
.y7e{bottom:632.870931pt;}
.y220{bottom:632.876912pt;}
.y197{bottom:632.882933pt;}
.y243{bottom:638.788940pt;}
.y278{bottom:642.756917pt;}
.y1f7{bottom:645.543579pt;}
.y5{bottom:645.598667pt;}
.ya3{bottom:646.031576pt;}
.y177{bottom:648.162272pt;}
.y53{bottom:648.204264pt;}
.y7d{bottom:648.210246pt;}
.y196{bottom:648.216267pt;}
.y277{bottom:655.087606pt;}
.y1f6{bottom:660.882933pt;}
.ya2{bottom:661.370931pt;}
.y176{bottom:663.501587pt;}
.y195{bottom:663.525594pt;}
.y21f{bottom:663.537598pt;}
.y52{bottom:663.543579pt;}
.y7c{bottom:663.549600pt;}
.y242{bottom:667.388916pt;}
.y276{bottom:667.418254pt;}
.y128{bottom:667.616211pt;}
.y29{bottom:668.522420pt;}
.y3{bottom:668.977329pt;}
.y1f5{bottom:676.222249pt;}
.ya1{bottom:676.710246pt;}
.y175{bottom:678.840902pt;}
.y194{bottom:678.864909pt;}
.y7b{bottom:678.870931pt;}
.y21e{bottom:678.876912pt;}
.y51{bottom:678.882933pt;}
.y275{bottom:679.748901pt;}
.y28{bottom:680.853068pt;}
.y21{bottom:680.853335pt;}
.y126{bottom:682.788005pt;}
.y125{bottom:682.949544pt;}
.y127{bottom:682.955566pt;}
.ya0{bottom:692.049561pt;}
.y274{bottom:692.079590pt;}
.y174{bottom:694.180257pt;}
.y193{bottom:694.204264pt;}
.y50{bottom:694.210286pt;}
.y21d{bottom:694.216227pt;}
.y123{bottom:698.120036pt;}
.y122{bottom:698.288900pt;}
.y273{bottom:704.410238pt;}
.y9f{bottom:707.382894pt;}
.y1f4{bottom:707.555583pt;}
.y173{bottom:709.519613pt;}
.y21c{bottom:709.531576pt;}
.y192{bottom:709.543620pt;}
.y4f{bottom:709.549561pt;}
.y27{bottom:714.427733pt;}
.y241{bottom:716.740885pt;}
.y144{bottom:716.790283pt;}
.y9e{bottom:722.704264pt;}
.y7a{bottom:724.858887pt;}
.y21b{bottom:724.870931pt;}
.y4e{bottom:724.882894pt;}
.y145{bottom:728.955973pt;}
.y240{bottom:729.071615pt;}
.y9d{bottom:738.043620pt;}
.y164{bottom:738.321452pt;}
.y16b{bottom:738.321533pt;}
.y163{bottom:738.324544pt;}
.y16a{bottom:738.326986pt;}
.y4d{bottom:740.198242pt;}
.y21a{bottom:740.210286pt;}
.y23f{bottom:741.402262pt;}
.y162{bottom:743.045980pt;}
.y169{bottom:743.051676pt;}
.y15d{bottom:743.051839pt;}
.y16c{bottom:743.052409pt;}
.y161{bottom:747.899577pt;}
.y168{bottom:748.031982pt;}
.y26{bottom:752.147705pt;}
.y9c{bottom:753.382894pt;}
.y23e{bottom:753.732910pt;}
.y15f{bottom:754.607747pt;}
.y166{bottom:754.608154pt;}
.y4c{bottom:755.537598pt;}
.y219{bottom:755.549561pt;}
.y15e{bottom:759.240153pt;}
.y165{bottom:759.240397pt;}
.y23d{bottom:766.063558pt;}
.y9b{bottom:768.722249pt;}
.y4b{bottom:770.876953pt;}
.y218{bottom:770.882894pt;}
.y14b{bottom:773.171305pt;}
.y154{bottom:773.171631pt;}
.y157{bottom:773.171712pt;}
.y23c{bottom:778.394287pt;}
.y2{bottom:781.661334pt;}
.y148{bottom:782.375977pt;}
.y151{bottom:782.376058pt;}
.y15b{bottom:782.376383pt;}
.y15a{bottom:782.378092pt;}
.y150{bottom:782.379232pt;}
.y4a{bottom:786.216227pt;}
.y14f{bottom:787.110433pt;}
.y159{bottom:787.115397pt;}
.y14d{bottom:787.120768pt;}
.y14c{bottom:790.187500pt;}
.y23b{bottom:790.724935pt;}
.y14e{bottom:791.951333pt;}
.y158{bottom:792.095703pt;}
.y147{bottom:793.499756pt;}
.y14a{bottom:798.659342pt;}
.y153{bottom:798.659505pt;}
.y156{bottom:798.659749pt;}
.y9a{bottom:800.055583pt;}
.y49{bottom:801.555583pt;}
.y23a{bottom:803.055583pt;}
.y24{bottom:823.215251pt;}
.y78{bottom:834.657195pt;}
.y271{bottom:834.667861pt;}
.y216{bottom:834.763861pt;}
.y79{bottom:835.435840pt;}
.y272{bottom:835.446507pt;}
.y217{bottom:835.542507pt;}
.y22{bottom:835.545872pt;}
.y48{bottom:835.545898pt;}
.y98{bottom:835.769870pt;}
.y1c4{bottom:835.876537pt;}
.y1{bottom:859.312000pt;}
.h48{height:3.345549pt;}
.h71{height:4.934667pt;}
.h6f{height:7.066667pt;}
.h2c{height:8.533333pt;}
.h2a{height:8.534667pt;}
.h31{height:8.800000pt;}
.h73{height:9.065333pt;}
.h3c{height:9.866667pt;}
.h2e{height:10.000000pt;}
.h30{height:10.933333pt;}
.h55{height:11.465333pt;}
.h53{height:11.466667pt;}
.h43{height:12.666667pt;}
.h44{height:12.933333pt;}
.h32{height:15.198667pt;}
.h27{height:15.199999pt;}
.h33{height:15.466667pt;}
.h36{height:15.600000pt;}
.h45{height:16.133333pt;}
.h3e{height:16.134666pt;}
.h39{height:17.866666pt;}
.h72{height:18.816000pt;}
.h3f{height:19.466667pt;}
.h41{height:19.601333pt;}
.h18{height:21.085867pt;}
.h29{height:23.205664pt;}
.h35{height:24.234661pt;}
.h3b{height:24.412074pt;}
.h50{height:27.727503pt;}
.h70{height:27.861333pt;}
.h7{height:28.560000pt;}
.h74{height:28.842667pt;}
.hb{height:30.080000pt;}
.h17{height:30.122667pt;}
.h16{height:30.833333pt;}
.h2b{height:33.151347pt;}
.h2d{height:33.408272pt;}
.h3a{height:34.266530pt;}
.h2f{height:34.621361pt;}
.h11{height:35.770667pt;}
.h10{height:35.794592pt;}
.h25{height:35.794597pt;}
.h15{height:35.794674pt;}
.h1f{height:35.794679pt;}
.h1a{height:35.794755pt;}
.h1b{height:35.818518pt;}
.h12{height:35.818681pt;}
.h22{height:35.842607pt;}
.h20{height:35.842688pt;}
.h6e{height:35.842691pt;}
.h59{height:35.866614pt;}
.h19{height:35.866695pt;}
.h24{height:35.890621pt;}
.h69{height:35.890702pt;}
.h21{height:35.890784pt;}
.h1c{height:35.914710pt;}
.h75{height:35.962724pt;}
.h1d{height:36.010576pt;}
.h26{height:36.058753pt;}
.ha{height:37.376000pt;}
.h6c{height:37.802667pt;}
.h3d{height:38.879332pt;}
.h6{height:40.800000pt;}
.h34{height:42.225784pt;}
.h40{height:42.248571pt;}
.h5b{height:42.673142pt;}
.h62{height:42.676723pt;}
.h3{height:42.840000pt;}
.h5f{height:43.180954pt;}
.h37{height:43.228643pt;}
.h65{height:43.231410pt;}
.h51{height:44.667527pt;}
.h49{height:44.667934pt;}
.h4c{height:44.668096pt;}
.h54{height:44.860840pt;}
.h13{height:44.890667pt;}
.h56{height:45.306068pt;}
.h58{height:45.329994pt;}
.h6d{height:45.330075pt;}
.h6a{height:45.330162pt;}
.h1e{height:45.354734pt;}
.h76{height:45.378171pt;}
.h57{height:45.402097pt;}
.h23{height:45.522214pt;}
.h6b{height:45.594642pt;}
.h68{height:45.708900pt;}
.h4b{height:46.686325pt;}
.h38{height:48.740581pt;}
.h28{height:48.740657pt;}
.hc{height:48.766452pt;}
.h2{height:48.960000pt;}
.hf{height:50.109333pt;}
.h47{height:52.819828pt;}
.h61{height:53.579694pt;}
.h5d{height:53.580020pt;}
.h42{height:53.835342pt;}
.he{height:54.775672pt;}
.h5a{height:57.837666pt;}
.h14{height:58.021333pt;}
.hd{height:61.429333pt;}
.h4f{height:62.816252pt;}
.h4d{height:67.517050pt;}
.h4a{height:67.517213pt;}
.h66{height:68.672812pt;}
.h63{height:68.681927pt;}
.h5c{height:68.717083pt;}
.h60{height:68.722942pt;}
.h5{height:69.360000pt;}
.h4e{height:73.898891pt;}
.h52{height:73.910284pt;}
.h64{height:74.534145pt;}
.h67{height:74.535121pt;}
.h5e{height:74.570928pt;}
.h46{height:80.266667pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wb{width:4.052000pt;}
.w6{width:4.053333pt;}
.w1e{width:5.053333pt;}
.w9{width:5.666667pt;}
.wc{width:7.066667pt;}
.w11{width:7.093333pt;}
.w15{width:7.361333pt;}
.w16{width:8.160000pt;}
.w12{width:10.226667pt;}
.wd{width:10.265333pt;}
.w13{width:10.266666pt;}
.we{width:10.653333pt;}
.w1d{width:11.560000pt;}
.w1c{width:11.561333pt;}
.w14{width:14.334667pt;}
.w7{width:15.986666pt;}
.wa{width:16.545333pt;}
.wf{width:16.546666pt;}
.w5{width:16.560000pt;}
.w17{width:20.186667pt;}
.w19{width:20.561333pt;}
.w10{width:29.598666pt;}
.w1f{width:40.546666pt;}
.w1a{width:52.760000pt;}
.w8{width:81.919998pt;}
.w18{width:410.251994pt;}
.w1b{width:419.640015pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:0.954529pt;}
.x33{left:2.219462pt;}
.x10{left:5.248942pt;}
.x2a{left:9.245606pt;}
.x61{left:20.682922pt;}
.x2c{left:25.709717pt;}
.x57{left:55.567210pt;}
.x78{left:58.905334pt;}
.x47{left:60.654938pt;}
.x6{left:62.362269pt;}
.xc{left:64.327469pt;}
.xd{left:66.069732pt;}
.x9{left:77.484014pt;}
.x7e{left:79.930933pt;}
.xa{left:81.263592pt;}
.x63{left:83.093333pt;}
.x1e{left:84.982666pt;}
.x14{left:86.033335pt;}
.x45{left:87.786662pt;}
.x1{left:90.706667pt;}
.x46{left:93.037862pt;}
.x2{left:94.486667pt;}
.xf{left:98.638662pt;}
.x16{left:99.852000pt;}
.x1f{left:101.528931pt;}
.x15{left:102.592804pt;}
.x11{left:115.198263pt;}
.x49{left:120.883077pt;}
.x66{left:123.669057pt;}
.x76{left:129.614400pt;}
.x55{left:130.969462pt;}
.x64{left:141.110270pt;}
.x48{left:142.465332pt;}
.x77{left:147.086670pt;}
.x56{left:148.441732pt;}
.x65{left:159.605743pt;}
.x1a{left:161.582662pt;}
.x1b{left:165.635467pt;}
.x58{left:167.212758pt;}
.x7b{left:168.129466pt;}
.x2f{left:169.308136pt;}
.x30{left:172.410665pt;}
.x80{left:177.085876pt;}
.x4{left:180.874667pt;}
.x31{left:182.574809pt;}
.x32{left:185.678670pt;}
.x34{left:195.881327pt;}
.x67{left:200.786662pt;}
.x4a{left:202.705343pt;}
.x35{left:211.423991pt;}
.x4d{left:213.222677pt;}
.x59{left:214.177592pt;}
.x36{left:218.193075pt;}
.x68{left:219.275899pt;}
.x4b{left:221.185730pt;}
.x37{left:225.694661pt;}
.x4c{left:227.440755pt;}
.x38{left:228.823995pt;}
.x39{left:236.121338pt;}
.x7a{left:250.334391pt;}
.x5b{left:251.761861pt;}
.x79{left:256.298808pt;}
.x5a{left:257.737610pt;}
.x3a{left:260.481323pt;}
.x69{left:266.558390pt;}
.x3b{left:268.578410pt;}
.x5c{left:270.253600pt;}
.x7c{left:271.358663pt;}
.x22{left:274.721333pt;}
.x5d{left:276.508626pt;}
.x5{left:281.363271pt;}
.x3c{left:294.077332pt;}
.x4e{left:295.033467pt;}
.x6a{left:296.474935pt;}
.x42{left:300.630676pt;}
.x43{left:304.619995pt;}
.x4f{left:313.525859pt;}
.x6c{left:314.952169pt;}
.x6b{left:317.486674pt;}
.x50{left:319.780233pt;}
.x6d{left:321.209819pt;}
.x52{left:322.518921pt;}
.x5e{left:323.473470pt;}
.x6f{left:331.989471pt;}
.x62{left:333.654928pt;}
.x1c{left:335.297343pt;}
.x1d{left:340.964132pt;}
.x3e{left:358.429321pt;}
.x7d{left:359.556641pt;}
.x84{left:361.313314pt;}
.x51{left:366.745728pt;}
.x6e{left:368.174683pt;}
.x26{left:370.043986pt;}
.x3f{left:374.913086pt;}
.x3d{left:375.934123pt;}
.x18{left:384.306681pt;}
.x27{left:386.590942pt;}
.x12{left:394.272013pt;}
.x13{left:398.325073pt;}
.x28{left:402.425333pt;}
.x3{left:404.408000pt;}
.x29{left:406.042928pt;}
.x70{left:409.107056pt;}
.xb{left:410.799479pt;}
.x75{left:415.821055pt;}
.x40{left:417.790649pt;}
.x83{left:419.112020pt;}
.x53{left:422.821452pt;}
.x2b{left:423.911051pt;}
.x72{left:427.596151pt;}
.x54{left:429.076660pt;}
.x71{left:430.130656pt;}
.x7{left:431.874146pt;}
.x81{left:432.843994pt;}
.x73{left:433.853841pt;}
.x41{left:437.913615pt;}
.x82{left:444.403727pt;}
.x5f{left:452.089315pt;}
.x2d{left:453.481323pt;}
.x2e{left:460.548014pt;}
.x19{left:466.227336pt;}
.x8{left:469.341715pt;}
.x60{left:472.649618pt;}
.x23{left:476.397583pt;}
.x74{left:479.114543pt;}
.x20{left:483.745321pt;}
.x21{left:487.798014pt;}
.x24{left:493.217326pt;}
.x25{left:503.871053pt;}
.x44{left:508.690674pt;}
.xe{left:511.441593pt;}
.x7f{left:512.593593pt;}
}




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