
    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_f836c99565b7271b777ffcb2.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_7b0c1a5f2deb08da5d51a887.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_84b56bf1163763b114d2d22e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_eaa31c67ba7d5807b0466d67.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_be684004eb8b66c040ac9d31.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9d3cacc70ce8ed025da4818d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_590f138b95e3e2db2e8b9e03.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142000;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_159795cf8f90ded87f618503.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5652b3943e9f7f16937097ae.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_789e34f5ea3e8c9cb468e2aa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_58762eb7e2b3282d920f75c3.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b122f8bc73118270e72eb5dd.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2cff0da85133065739743754.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_173bacd2d1ff09caa79ada07.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.901000;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_a24bf85246811fe65768bf1f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.534000;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_280bf670c7fd20282ccb8261.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.391000;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_4cb77416ab432be932af7213.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.152000;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_ab5983bc3b8d9a95e313139a.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_a1acef06b16cd78dd3c7975a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_fe7f873e73140b9651e2c4e2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.901000;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_9cdf809141541b5fd8f98fef.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_67da10e76d61ae2198008b04.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.266000;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_dbdd1982d978d063f27f41f8.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_60229837f4b7c7f2688e6082.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_ae0beba157f57b340b9d50ae.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_6731cb6c94cda95cea5678b3.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_4c7d6fd10349b3d8288a9f42.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_e8a9ae89a457e134f57f9cbc.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.847000;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_5fc94daa4b356061b1ae6b72.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_b68ca5d16023a6421335ccbe.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_4bb294173369861e51f28083.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;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_b044cf2c7586b4bcad9dbc8f.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.939000;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_0351ef99be751536d5902f94.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.926000;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_412808dc81a505c0c1ae34d1.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.927000;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_42a26e299b9939cc6e616ddc.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.742000;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_27329d40dd4b3d01c55db945.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.901000;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_09b21697b40fabb345aa8ccc.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_553ed93e5d082630cbb651b4.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.901000;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_0d0abc1d7f18e5b78b1b6c15.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_0326d861239e7e9ab38f509d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.901000;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_030a32601ad31715416345da.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_460e0b8954ed4d51e55002ed.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:2.460000;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_2d4bb9b613ed823042d044e5.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_005c8eccd4b5324d525215dc.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.901000;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_c979ad1381c313f02a86e56f.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.662000;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_8240741bcc59dfa312f941c2.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.879000;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_c1c7e8fd04cc478c1c9c0c51.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.901000;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_e0618d126c12bdb54074308b.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_3fd2b0e0357d699505c0d191.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.731000;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_fde72791ec56ede4550f3374.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.938000;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_ecdc5efa666686623a680b2d.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.733000;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;}
.mf{transform:matrix(0.000000,-0.248023,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248023,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248023,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.md{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250517,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250730,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,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);}
.va{vertical-align:-39.018000px;}
.v2{vertical-align:-19.199982px;}
.v3{vertical-align:-15.173401px;}
.v9{vertical-align:-11.770203px;}
.ve{vertical-align:-10.638519px;}
.vd{vertical-align:-4.914556px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:5.562012px;}
.v4{vertical-align:15.173401px;}
.vb{vertical-align:19.128073px;}
.v1{vertical-align:24.000000px;}
.vf{vertical-align:25.434631px;}
.v11{vertical-align:28.781433px;}
.v10{vertical-align:36.828000px;}
.v5{vertical-align:66.556632px;}
.v8{vertical-align:68.957886px;}
.v7{vertical-align:70.630920px;}
.v6{vertical-align:73.638402px;}
.ls66{letter-spacing:-1.944756px;}
.ls1a{letter-spacing:-1.680000px;}
.ls67{letter-spacing:-1.661882px;}
.ls6a{letter-spacing:-1.475000px;}
.ls3d{letter-spacing:-1.390514px;}
.ls46{letter-spacing:-1.169296px;}
.ls3e{letter-spacing:-1.137694px;}
.ls69{letter-spacing:-1.009211px;}
.ls3f{letter-spacing:-0.948078px;}
.ls43{letter-spacing:-0.916475px;}
.ls55{letter-spacing:-0.912114px;}
.ls58{letter-spacing:-0.912078px;}
.ls42{letter-spacing:-0.853270px;}
.ls48{letter-spacing:-0.790065px;}
.ls74{letter-spacing:-0.737500px;}
.ls41{letter-spacing:-0.726860px;}
.ls75{letter-spacing:-0.720000px;}
.ls77{letter-spacing:-0.672000px;}
.ls44{letter-spacing:-0.663655px;}
.ls56{letter-spacing:-0.638480px;}
.ls47{letter-spacing:-0.632052px;}
.ls45{letter-spacing:-0.442436px;}
.ls64{letter-spacing:-0.349342px;}
.ls1{letter-spacing:-0.312000px;}
.ls28{letter-spacing:-0.302590px;}
.ls2{letter-spacing:-0.300000px;}
.ls49{letter-spacing:-0.284423px;}
.ls4b{letter-spacing:-0.210050px;}
.ls72{letter-spacing:-0.194079px;}
.ls40{letter-spacing:-0.189616px;}
.ls6d{letter-spacing:-0.155419px;}
.ls6c{letter-spacing:-0.155263px;}
.ls6f{letter-spacing:-0.116564px;}
.ls70{letter-spacing:-0.116447px;}
.ls2a{letter-spacing:-0.110033px;}
.ls2b{letter-spacing:-0.082525px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.015939px;}
.lse{letter-spacing:0.028515px;}
.ls10{letter-spacing:0.031149px;}
.ls15{letter-spacing:0.042010px;}
.ls4a{letter-spacing:0.060015px;}
.ls57{letter-spacing:0.060808px;}
.ls20{letter-spacing:0.063839px;}
.ls60{letter-spacing:0.084544px;}
.ls29{letter-spacing:0.110033px;}
.ls3c{letter-spacing:0.112601px;}
.ls1d{letter-spacing:0.151554px;}
.ls27{letter-spacing:0.159597px;}
.ls1c{letter-spacing:0.227331px;}
.ls1f{letter-spacing:0.255355px;}
.ls23{letter-spacing:0.303108px;}
.ls73{letter-spacing:0.349342px;}
.ls21{letter-spacing:0.357607px;}
.ls38{letter-spacing:0.365953px;}
.ls5f{letter-spacing:0.366358px;}
.ls1e{letter-spacing:0.378885px;}
.ls63{letter-spacing:0.422721px;}
.ls25{letter-spacing:0.446872px;}
.ls32{letter-spacing:0.506704px;}
.ls2e{letter-spacing:0.587952px;}
.ls2c{letter-spacing:0.588000px;}
.ls2d{letter-spacing:0.588135px;}
.ls36{letter-spacing:0.619304px;}
.ls68{letter-spacing:0.621053px;}
.ls33{letter-spacing:0.647455px;}
.ls62{letter-spacing:0.648172px;}
.ls76{letter-spacing:0.672000px;}
.ls3a{letter-spacing:0.675605px;}
.ls31{letter-spacing:0.731905px;}
.ls54{letter-spacing:0.732716px;}
.ls30{letter-spacing:0.760055px;}
.ls52{letter-spacing:0.760898px;}
.ls53{letter-spacing:0.789079px;}
.ls1b{letter-spacing:0.840000px;}
.ls2f{letter-spacing:0.851971px;}
.ls5c{letter-spacing:0.901805px;}
.ls3b{letter-spacing:0.985257px;}
.ls5a{letter-spacing:0.986349px;}
.ls39{letter-spacing:1.013407px;}
.ls61{letter-spacing:1.014530px;}
.ls6b{letter-spacing:1.280921px;}
.ls34{letter-spacing:1.323059px;}
.ls59{letter-spacing:1.324526px;}
.ls37{letter-spacing:1.660862px;}
.ls5e{letter-spacing:1.662703px;}
.ls12{letter-spacing:2.969080px;}
.lsc{letter-spacing:2.970914px;}
.lsf{letter-spacing:2.971462px;}
.ls4{letter-spacing:2.971506px;}
.ls9{letter-spacing:2.971508px;}
.ls11{letter-spacing:2.971513px;}
.ls13{letter-spacing:2.971554px;}
.ls4d{letter-spacing:2.996805px;}
.ls51{letter-spacing:2.997354px;}
.ls4c{letter-spacing:2.999185px;}
.ls8{letter-spacing:3.025523px;}
.ls7{letter-spacing:3.025524px;}
.lsd{letter-spacing:8.222055px;}
.ls26{letter-spacing:9.128948px;}
.ls5b{letter-spacing:9.215318px;}
.ls35{letter-spacing:9.458467px;}
.ls5d{letter-spacing:9.468950px;}
.ls6{letter-spacing:9.962490px;}
.ls5{letter-spacing:10.022505px;}
.ls4f{letter-spacing:10.450021px;}
.ls6e{letter-spacing:10.646215px;}
.ls16{letter-spacing:12.962399px;}
.ls19{letter-spacing:13.323329px;}
.ls18{letter-spacing:16.347837px;}
.lsa{letter-spacing:16.624154px;}
.lsb{letter-spacing:16.684169px;}
.ls14{letter-spacing:17.188625px;}
.ls22{letter-spacing:21.217560px;}
.ls24{letter-spacing:21.520668px;}
.ls4e{letter-spacing:23.851153px;}
.ls50{letter-spacing:28.190121px;}
.ls3{letter-spacing:31.687919px;}
.ls71{letter-spacing:101.480900px;}
.ls65{letter-spacing:133.445621px;}
.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;}
}
.ws17a{word-spacing:-133.480980px;}
.ws185{word-spacing:-101.516259px;}
.wse0{word-spacing:-21.596445px;}
.wsdf{word-spacing:-21.293337px;}
.ws5b{word-spacing:-16.744184px;}
.ws67{word-spacing:-16.684169px;}
.ws12e{word-spacing:-16.624154px;}
.wsf8{word-spacing:-15.840000px;}
.ws3d{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.664000px;}
.ws4e{word-spacing:-13.332000px;}
.ws81{word-spacing:-13.323329px;}
.ws1cb{word-spacing:-12.672000px;}
.ws4{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.120000px;}
.wscd{word-spacing:-12.000000px;}
.ws7{word-spacing:-11.520000px;}
.ws4f{word-spacing:-11.340000px;}
.ws1ec{word-spacing:-11.328000px;}
.ws1ca{word-spacing:-11.280000px;}
.wsf5{word-spacing:-11.088000px;}
.ws182{word-spacing:-10.685070px;}
.ws74{word-spacing:-10.500000px;}
.ws64{word-spacing:-10.022505px;}
.ws16d{word-spacing:-9.497132px;}
.ws104{word-spacing:-9.486617px;}
.ws2{word-spacing:-9.408000px;}
.ws168{word-spacing:-9.243499px;}
.ws19a{word-spacing:-9.216000px;}
.wse4{word-spacing:-9.160868px;}
.ws5{word-spacing:-8.694000px;}
.ws8{word-spacing:-8.400000px;}
.ws82{word-spacing:-7.500000px;}
.wsc3{word-spacing:-6.000000px;}
.ws16e{word-spacing:-1.690884px;}
.ws109{word-spacing:-1.689012px;}
.ws1d9{word-spacing:-1.440000px;}
.wsd7{word-spacing:-1.380000px;}
.ws166{word-spacing:-1.352707px;}
.ws102{word-spacing:-1.351210px;}
.ws19e{word-spacing:-1.320000px;}
.ws17f{word-spacing:-1.319737px;}
.ws3a{word-spacing:-1.140000px;}
.ws161{word-spacing:-1.080000px;}
.ws172{word-spacing:-1.042712px;}
.wsb5{word-spacing:-1.020000px;}
.ws167{word-spacing:-1.014530px;}
.ws110{word-spacing:-1.013407px;}
.ws47{word-spacing:-0.960000px;}
.ws16c{word-spacing:-0.929986px;}
.wsbb{word-spacing:-0.900000px;}
.wsf6{word-spacing:-0.840000px;}
.ws178{word-spacing:-0.817261px;}
.ws177{word-spacing:-0.789079px;}
.ws2f{word-spacing:-0.780000px;}
.ws103{word-spacing:-0.760055px;}
.ws18d{word-spacing:-0.732716px;}
.ws68{word-spacing:-0.720000px;}
.ws173{word-spacing:-0.676354px;}
.ws10e{word-spacing:-0.675605px;}
.ws1cc{word-spacing:-0.672000px;}
.ws11d{word-spacing:-0.660000px;}
.ws17c{word-spacing:-0.659869px;}
.ws108{word-spacing:-0.647455px;}
.ws4d{word-spacing:-0.600000px;}
.ws38{word-spacing:-0.540000px;}
.ws10d{word-spacing:-0.534854px;}
.ws200{word-spacing:-0.528000px;}
.wsf7{word-spacing:-0.480000px;}
.wse2{word-spacing:-0.478791px;}
.wse1{word-spacing:-0.454662px;}
.ws174{word-spacing:-0.450902px;}
.ws24{word-spacing:-0.420000px;}
.ws16f{word-spacing:-0.394540px;}
.ws10a{word-spacing:-0.394103px;}
.ws18a{word-spacing:-0.388158px;}
.ws1b8{word-spacing:-0.384000px;}
.ws7e{word-spacing:-0.360000px;}
.ws1ff{word-spacing:-0.336000px;}
.wsec{word-spacing:-0.303108px;}
.ws37{word-spacing:-0.300000px;}
.wse3{word-spacing:-0.287275px;}
.wsa4{word-spacing:-0.240000px;}
.ws1c1{word-spacing:-0.192000px;}
.ws34{word-spacing:-0.180000px;}
.wsed{word-spacing:-0.159597px;}
.ws1e7{word-spacing:-0.144000px;}
.ws50{word-spacing:-0.120000px;}
.ws170{word-spacing:-0.112726px;}
.ws11f{word-spacing:-0.112601px;}
.ws1d0{word-spacing:-0.096000px;}
.ws18c{word-spacing:-0.060808px;}
.ws5c{word-spacing:-0.060015px;}
.wsa8{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws160{word-spacing:-0.042010px;}
.ws188{word-spacing:-0.038816px;}
.ws0{word-spacing:0.000000px;}
.ws1f3{word-spacing:0.048000px;}
.ws7a{word-spacing:0.060000px;}
.ws183{word-spacing:0.077710px;}
.wsee{word-spacing:0.082525px;}
.ws1cd{word-spacing:0.096000px;}
.ws180{word-spacing:0.116447px;}
.ws181{word-spacing:0.116564px;}
.ws60{word-spacing:0.120000px;}
.ws159{word-spacing:0.144000px;}
.ws189{word-spacing:0.155263px;}
.ws73{word-spacing:0.180000px;}
.ws127{word-spacing:0.180043px;}
.ws120{word-spacing:0.189616px;}
.ws7c{word-spacing:0.240000px;}
.wse7{word-spacing:0.275082px;}
.ws122{word-spacing:0.284423px;}
.ws46{word-spacing:0.300000px;}
.ws1ce{word-spacing:0.336000px;}
.ws18e{word-spacing:0.349342px;}
.ws1d{word-spacing:0.360000px;}
.ws61{word-spacing:0.420000px;}
.ws1a4{word-spacing:0.432000px;}
.wsfe{word-spacing:0.480000px;}
.wsa7{word-spacing:0.540000px;}
.ws1b5{word-spacing:0.576000px;}
.wsa2{word-spacing:0.600000px;}
.ws118{word-spacing:0.600449px;}
.ws164{word-spacing:0.608076px;}
.ws1d7{word-spacing:0.624000px;}
.ws114{word-spacing:0.632052px;}
.ws57{word-spacing:0.660000px;}
.wsda{word-spacing:0.672000px;}
.ws113{word-spacing:0.695257px;}
.ws13{word-spacing:0.720000px;}
.ws192{word-spacing:0.737500px;}
.ws119{word-spacing:0.758462px;}
.ws1d1{word-spacing:0.768000px;}
.ws77{word-spacing:0.780000px;}
.wsd5{word-spacing:0.816000px;}
.ws49{word-spacing:0.840000px;}
.ws121{word-spacing:0.853270px;}
.ws1ed{word-spacing:0.864000px;}
.ws165{word-spacing:0.881675px;}
.ws163{word-spacing:0.881710px;}
.wsd0{word-spacing:0.900000px;}
.ws1f7{word-spacing:0.912000px;}
.ws112{word-spacing:0.916475px;}
.ws9b{word-spacing:0.960000px;}
.ws17d{word-spacing:0.970395px;}
.ws191{word-spacing:1.009211px;}
.ws71{word-spacing:1.020000px;}
.ws1a5{word-spacing:1.056000px;}
.ws2c{word-spacing:1.080000px;}
.ws13a{word-spacing:1.104000px;}
.ws115{word-spacing:1.106091px;}
.ws117{word-spacing:1.137694px;}
.wsba{word-spacing:1.140000px;}
.ws1e5{word-spacing:1.152000px;}
.wsb6{word-spacing:1.200000px;}
.ws1d8{word-spacing:1.248000px;}
.ws72{word-spacing:1.260000px;}
.ws6c{word-spacing:1.320000px;}
.ws1a7{word-spacing:1.344000px;}
.ws111{word-spacing:1.358912px;}
.wsc6{word-spacing:1.380000px;}
.ws19f{word-spacing:1.392000px;}
.ws17e{word-spacing:1.436185px;}
.ws90{word-spacing:1.440000px;}
.ws190{word-spacing:1.475000px;}
.ws1b4{word-spacing:1.488000px;}
.ws17{word-spacing:1.500000px;}
.ws1f8{word-spacing:1.536000px;}
.ws9{word-spacing:1.560000px;}
.ws1a8{word-spacing:1.584000px;}
.ws30{word-spacing:1.620000px;}
.ws18f{word-spacing:1.661882px;}
.wsa{word-spacing:1.680000px;}
.ws1fd{word-spacing:1.728000px;}
.ws79{word-spacing:1.740000px;}
.ws1ba{word-spacing:1.776000px;}
.ws98{word-spacing:1.800000px;}
.ws1a0{word-spacing:1.824000px;}
.ws3e{word-spacing:1.860000px;}
.wsd6{word-spacing:1.872000px;}
.wsdb{word-spacing:1.920000px;}
.wsf2{word-spacing:1.968000px;}
.wscb{word-spacing:1.980000px;}
.ws1ea{word-spacing:2.016000px;}
.ws100{word-spacing:2.040000px;}
.ws1da{word-spacing:2.064000px;}
.ws6a{word-spacing:2.100000px;}
.ws1d2{word-spacing:2.112000px;}
.wsad{word-spacing:2.160000px;}
.ws51{word-spacing:2.220000px;}
.wsdc{word-spacing:2.256000px;}
.wsca{word-spacing:2.280000px;}
.ws138{word-spacing:2.304000px;}
.wsa0{word-spacing:2.340000px;}
.ws29{word-spacing:2.400000px;}
.ws145{word-spacing:2.448000px;}
.ws59{word-spacing:2.460000px;}
.ws1db{word-spacing:2.496000px;}
.ws4c{word-spacing:2.520000px;}
.wsce{word-spacing:2.580000px;}
.ws1b{word-spacing:2.640000px;}
.wsf4{word-spacing:2.688000px;}
.ws95{word-spacing:2.700000px;}
.ws1e3{word-spacing:2.736000px;}
.wsf{word-spacing:2.760000px;}
.ws1b9{word-spacing:2.784000px;}
.ws1c{word-spacing:2.820000px;}
.ws1ee{word-spacing:2.832000px;}
.ws2b{word-spacing:2.880000px;}
.ws1e0{word-spacing:2.928000px;}
.ws18{word-spacing:2.940000px;}
.ws42{word-spacing:3.000000px;}
.wsd2{word-spacing:3.024000px;}
.ws14{word-spacing:3.060000px;}
.ws143{word-spacing:3.072000px;}
.ws48{word-spacing:3.120000px;}
.ws158{word-spacing:3.168000px;}
.wsc8{word-spacing:3.180000px;}
.ws146{word-spacing:3.216000px;}
.ws136{word-spacing:3.240000px;}
.ws1a3{word-spacing:3.264000px;}
.ws135{word-spacing:3.300000px;}
.ws1b3{word-spacing:3.312000px;}
.ws16{word-spacing:3.360000px;}
.ws1bf{word-spacing:3.408000px;}
.wse{word-spacing:3.420000px;}
.ws1a6{word-spacing:3.456000px;}
.ws85{word-spacing:3.480000px;}
.ws1e9{word-spacing:3.504000px;}
.ws78{word-spacing:3.540000px;}
.ws96{word-spacing:3.600000px;}
.ws5e{word-spacing:3.660000px;}
.ws2e{word-spacing:3.720000px;}
.ws21{word-spacing:3.780000px;}
.wsd9{word-spacing:3.792000px;}
.ws7f{word-spacing:3.840000px;}
.ws1dd{word-spacing:3.888000px;}
.ws25{word-spacing:3.900000px;}
.ws1df{word-spacing:3.936000px;}
.wsa1{word-spacing:3.960000px;}
.ws1e4{word-spacing:3.984000px;}
.ws14a{word-spacing:4.020000px;}
.wsbe{word-spacing:4.032000px;}
.ws75{word-spacing:4.080000px;}
.ws1a2{word-spacing:4.128000px;}
.ws5d{word-spacing:4.140000px;}
.ws1e8{word-spacing:4.176000px;}
.ws36{word-spacing:4.200000px;}
.wsbc{word-spacing:4.260000px;}
.ws1b1{word-spacing:4.272000px;}
.ws9f{word-spacing:4.320000px;}
.wsd3{word-spacing:4.368000px;}
.ws8b{word-spacing:4.380000px;}
.ws4a{word-spacing:4.440000px;}
.wsf1{word-spacing:4.464000px;}
.wsc{word-spacing:4.500000px;}
.ws15d{word-spacing:4.560000px;}
.ws1c0{word-spacing:4.608000px;}
.wsb{word-spacing:4.620000px;}
.wsd8{word-spacing:4.680000px;}
.wsf3{word-spacing:4.704000px;}
.ws69{word-spacing:4.740000px;}
.ws1bb{word-spacing:4.752000px;}
.ws45{word-spacing:4.800000px;}
.wsbf{word-spacing:4.848000px;}
.wsa3{word-spacing:4.860000px;}
.ws1e1{word-spacing:4.896000px;}
.ws6b{word-spacing:4.920000px;}
.ws12{word-spacing:4.980000px;}
.ws1a9{word-spacing:4.992000px;}
.ws54{word-spacing:5.040000px;}
.wsb1{word-spacing:5.100000px;}
.wsd4{word-spacing:5.136000px;}
.wsac{word-spacing:5.160000px;}
.ws2a{word-spacing:5.220000px;}
.ws144{word-spacing:5.232000px;}
.ws8d{word-spacing:5.280000px;}
.ws1ef{word-spacing:5.328000px;}
.ws28{word-spacing:5.340000px;}
.ws1b7{word-spacing:5.376000px;}
.ws94{word-spacing:5.400000px;}
.ws157{word-spacing:5.424000px;}
.wsa9{word-spacing:5.460000px;}
.ws139{word-spacing:5.472000px;}
.ws76{word-spacing:5.520000px;}
.ws35{word-spacing:5.580000px;}
.ws1e{word-spacing:5.640000px;}
.ws27{word-spacing:5.700000px;}
.ws3c{word-spacing:5.760000px;}
.ws87{word-spacing:5.820000px;}
.ws1ab{word-spacing:5.856000px;}
.ws53{word-spacing:5.880000px;}
.ws1c4{word-spacing:5.904000px;}
.ws151{word-spacing:5.940000px;}
.ws39{word-spacing:6.000000px;}
.ws7d{word-spacing:6.060000px;}
.wsfa{word-spacing:6.096000px;}
.ws11{word-spacing:6.120000px;}
.wsc1{word-spacing:6.144000px;}
.ws3f{word-spacing:6.180000px;}
.wsc0{word-spacing:6.192000px;}
.ws89{word-spacing:6.240000px;}
.ws86{word-spacing:6.300000px;}
.ws15a{word-spacing:6.336000px;}
.ws56{word-spacing:6.360000px;}
.ws1c3{word-spacing:6.384000px;}
.ws93{word-spacing:6.420000px;}
.ws1e6{word-spacing:6.432000px;}
.ws97{word-spacing:6.480000px;}
.ws171{word-spacing:6.509903px;}
.ws1f4{word-spacing:6.528000px;}
.ws31{word-spacing:6.540000px;}
.ws4b{word-spacing:6.600000px;}
.ws1bc{word-spacing:6.624000px;}
.ws58{word-spacing:6.660000px;}
.ws44{word-spacing:6.720000px;}
.ws10b{word-spacing:6.756048px;}
.ws1a1{word-spacing:6.768000px;}
.wsb0{word-spacing:6.780000px;}
.ws13b{word-spacing:6.840000px;}
.ws1de{word-spacing:6.864000px;}
.ws134{word-spacing:6.900000px;}
.ws70{word-spacing:6.960000px;}
.ws149{word-spacing:7.020000px;}
.ws1ae{word-spacing:7.056000px;}
.ws150{word-spacing:7.080000px;}
.ws1aa{word-spacing:7.104000px;}
.wseb{word-spacing:7.140000px;}
.ws1eb{word-spacing:7.152000px;}
.ws133{word-spacing:7.200000px;}
.wsd1{word-spacing:7.248000px;}
.ws9d{word-spacing:7.260000px;}
.ws1b2{word-spacing:7.296000px;}
.ws15{word-spacing:7.320000px;}
.ws1c2{word-spacing:7.344000px;}
.wsfd{word-spacing:7.380000px;}
.wsbd{word-spacing:7.440000px;}
.ws20{word-spacing:7.500000px;}
.wsc5{word-spacing:7.560000px;}
.ws16b{word-spacing:7.608978px;}
.ws99{word-spacing:7.620000px;}
.wsb2{word-spacing:7.680000px;}
.ws15b{word-spacing:7.740000px;}
.ws1f9{word-spacing:7.776000px;}
.wsea{word-spacing:7.800000px;}
.ws1be{word-spacing:7.824000px;}
.ws10f{word-spacing:7.825756px;}
.wsfb{word-spacing:7.860000px;}
.ws107{word-spacing:7.882056px;}
.ws6f{word-spacing:7.920000px;}
.ws105{word-spacing:7.966507px;}
.ws23{word-spacing:7.980000px;}
.ws10c{word-spacing:7.994657px;}
.ws169{word-spacing:8.003517px;}
.ws1c9{word-spacing:8.016000px;}
.ws15c{word-spacing:8.040000px;}
.ws179{word-spacing:8.059880px;}
.ws6e{word-spacing:8.100000px;}
.ws41{word-spacing:8.160000px;}
.wsaf{word-spacing:8.220000px;}
.ws55{word-spacing:8.280000px;}
.wsef{word-spacing:8.304000px;}
.ws106{word-spacing:8.332459px;}
.ws92{word-spacing:8.340000px;}
.ws16a{word-spacing:8.341694px;}
.ws152{word-spacing:8.400000px;}
.wsa6{word-spacing:8.460000px;}
.ws32{word-spacing:8.520000px;}
.ws1b6{word-spacing:8.544000px;}
.ws9e{word-spacing:8.580000px;}
.ws175{word-spacing:8.595327px;}
.ws116{word-spacing:8.595907px;}
.ws11c{word-spacing:8.640000px;}
.ws1d4{word-spacing:8.688000px;}
.wsb7{word-spacing:8.700000px;}
.ws176{word-spacing:8.708052px;}
.ws6d{word-spacing:8.760000px;}
.ws1f0{word-spacing:8.784000px;}
.wsaa{word-spacing:8.820000px;}
.ws1cf{word-spacing:8.832000px;}
.wsa5{word-spacing:8.880000px;}
.ws155{word-spacing:8.940000px;}
.ws147{word-spacing:9.000000px;}
.ws1ad{word-spacing:9.024000px;}
.ws52{word-spacing:9.060000px;}
.wse5{word-spacing:9.097029px;}
.ws137{word-spacing:9.120000px;}
.wse6{word-spacing:9.224707px;}
.ws80{word-spacing:9.240000px;}
.ws1fe{word-spacing:9.264000px;}
.ws1d5{word-spacing:9.312000px;}
.wsb4{word-spacing:9.360000px;}
.ws195{word-spacing:9.480000px;}
.ws141{word-spacing:9.540000px;}
.ws13f{word-spacing:9.660000px;}
.ws1af{word-spacing:9.696000px;}
.ws128{word-spacing:9.720000px;}
.ws26{word-spacing:9.780000px;}
.wsd{word-spacing:9.840000px;}
.ws1dc{word-spacing:9.936000px;}
.ws15e{word-spacing:9.960000px;}
.ws83{word-spacing:10.020000px;}
.ws194{word-spacing:10.080000px;}
.ws62{word-spacing:10.140000px;}
.ws1d3{word-spacing:10.176000px;}
.ws14c{word-spacing:10.200000px;}
.ws2d{word-spacing:10.260000px;}
.ws1fb{word-spacing:10.272000px;}
.ws101{word-spacing:10.320000px;}
.wsae{word-spacing:10.380000px;}
.ws124{word-spacing:10.418530px;}
.ws126{word-spacing:10.431133px;}
.ws193{word-spacing:10.440000px;}
.ws184{word-spacing:10.480266px;}
.ws125{word-spacing:10.489942px;}
.ws43{word-spacing:10.500000px;}
.ws123{word-spacing:10.502550px;}
.ws9a{word-spacing:10.560000px;}
.wsf9{word-spacing:10.620000px;}
.ws14f{word-spacing:10.680000px;}
.ws5f{word-spacing:10.740000px;}
.ws18b{word-spacing:10.751976px;}
.ws1f1{word-spacing:10.752000px;}
.ws22{word-spacing:10.800000px;}
.ws65{word-spacing:10.860000px;}
.wsc9{word-spacing:10.920000px;}
.ws40{word-spacing:10.980000px;}
.ws33{word-spacing:11.100000px;}
.ws153{word-spacing:11.220000px;}
.ws19b{word-spacing:11.280000px;}
.ws131{word-spacing:11.460000px;}
.wsfc{word-spacing:11.580000px;}
.ws1fc{word-spacing:11.664000px;}
.ws199{word-spacing:11.760000px;}
.ws11b{word-spacing:11.820000px;}
.ws3b{word-spacing:11.880000px;}
.wsc4{word-spacing:11.940000px;}
.ws5a{word-spacing:12.000000px;}
.ws142{word-spacing:12.120000px;}
.ws197{word-spacing:12.180000px;}
.wsc2{word-spacing:12.240000px;}
.ws1f2{word-spacing:12.288000px;}
.ws88{word-spacing:12.300000px;}
.ws91{word-spacing:12.360000px;}
.ws14e{word-spacing:12.480000px;}
.ws1bd{word-spacing:12.528000px;}
.ws10{word-spacing:12.540000px;}
.ws156{word-spacing:12.600000px;}
.wsb9{word-spacing:12.660000px;}
.ws148{word-spacing:12.720000px;}
.ws12b{word-spacing:12.780000px;}
.ws11e{word-spacing:12.900000px;}
.ws15f{word-spacing:13.200000px;}
.ws7b{word-spacing:13.320000px;}
.ws129{word-spacing:13.380000px;}
.ws63{word-spacing:13.560000px;}
.ws19c{word-spacing:13.680000px;}
.ws198{word-spacing:13.740000px;}
.ws8a{word-spacing:13.800000px;}
.ws162{word-spacing:13.980000px;}
.ws13c{word-spacing:14.100000px;}
.ws132{word-spacing:14.340000px;}
.wsb8{word-spacing:14.400000px;}
.wsb3{word-spacing:14.460000px;}
.ws8c{word-spacing:14.520000px;}
.ws13e{word-spacing:14.580000px;}
.ws1c5{word-spacing:14.592000px;}
.ws84{word-spacing:14.640000px;}
.wsf0{word-spacing:14.784000px;}
.ws1f{word-spacing:14.940000px;}
.ws154{word-spacing:15.000000px;}
.ws1f5{word-spacing:15.120000px;}
.ws9c{word-spacing:15.360000px;}
.wsc7{word-spacing:15.480000px;}
.wscf{word-spacing:15.600000px;}
.ws1e2{word-spacing:15.840000px;}
.ws130{word-spacing:15.900000px;}
.ws140{word-spacing:15.960000px;}
.wsff{word-spacing:16.020000px;}
.ws1c7{word-spacing:16.272000px;}
.ws11a{word-spacing:16.320000px;}
.ws8f{word-spacing:16.560000px;}
.ws196{word-spacing:16.980000px;}
.ws12f{word-spacing:17.040000px;}
.ws12c{word-spacing:17.340000px;}
.ws1d6{word-spacing:17.664000px;}
.ws13d{word-spacing:17.700000px;}
.ws19d{word-spacing:18.000000px;}
.ws1f6{word-spacing:18.432000px;}
.ws8e{word-spacing:18.840000px;}
.wscc{word-spacing:18.900000px;}
.ws1b0{word-spacing:19.008000px;}
.wsab{word-spacing:19.140000px;}
.ws1c8{word-spacing:19.248000px;}
.ws1a{word-spacing:19.668000px;}
.ws14d{word-spacing:19.680000px;}
.ws14b{word-spacing:20.040000px;}
.ws12a{word-spacing:20.580000px;}
.wsdd{word-spacing:20.762886px;}
.wsde{word-spacing:21.823776px;}
.ws1c6{word-spacing:23.424000px;}
.ws1ac{word-spacing:26.064000px;}
.ws1fa{word-spacing:27.792000px;}
.ws66{word-spacing:31.380000px;}
.ws19{word-spacing:73.056000px;}
.ws187{word-spacing:86.771477px;}
.ws186{word-spacing:87.620098px;}
.ws12d{word-spacing:119.220000px;}
.ws17b{word-spacing:119.301941px;}
.wse9{word-spacing:672.135335px;}
.wse8{word-spacing:695.269748px;}
._14{margin-left:-43.860000px;}
._35{margin-left:-29.520000px;}
._32{margin-left:-27.256800px;}
._2f{margin-left:-26.028000px;}
._34{margin-left:-24.408057px;}
._39{margin-left:-23.295010px;}
._1c{margin-left:-21.900000px;}
._30{margin-left:-20.390407px;}
._18{margin-left:-19.197593px;}
._33{margin-left:-18.038411px;}
._13{margin-left:-16.684169px;}
._6{margin-left:-15.600000px;}
._4{margin-left:-14.352021px;}
._15{margin-left:-12.480000px;}
._17{margin-left:-11.102407px;}
._1a{margin-left:-9.902449px;}
._1d{margin-left:-8.530800px;}
._1b{margin-left:-7.500000px;}
._20{margin-left:-6.000000px;}
._5{margin-left:-4.700400px;}
._3b{margin-left:-3.698400px;}
._3{margin-left:-2.690400px;}
._0{margin-left:-1.632000px;}
._1{width:1.334400px;}
._e{width:2.352000px;}
._a{width:3.793200px;}
._d{width:5.282400px;}
._f{width:6.402000px;}
._b{width:7.809600px;}
._c{width:9.536400px;}
._12{width:10.908000px;}
._36{width:12.540000px;}
._11{width:13.901400px;}
._16{width:15.936470px;}
._2e{width:18.660000px;}
._19{width:19.668000px;}
._7{width:22.320000px;}
._38{width:23.472000px;}
._31{width:26.460000px;}
._10{width:30.426000px;}
._37{width:33.000000px;}
._25{width:38.258400px;}
._2{width:40.324187px;}
._22{width:51.602400px;}
._8{width:56.255991px;}
._3a{width:58.992000px;}
._1f{width:104.947200px;}
._1e{width:142.560000px;}
._24{width:147.311978px;}
._2d{width:205.920000px;}
._2c{width:223.776000px;}
._21{width:236.400000px;}
._2b{width:245.135978px;}
._23{width:267.216000px;}
._2a{width:317.039978px;}
._26{width:329.712000px;}
._27{width:949.823978px;}
._28{width:1081.257578px;}
._29{width:1224.767978px;}
._9{width:1763.615987px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(59,59,59);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:27.508200px;}
.fse{font-size:28.150200px;}
.fs13{font-size:28.181399px;}
.fs10{font-size:30.007200px;}
.fs12{font-size:30.402600px;}
.fs11{font-size:30.403799px;}
.fsf{font-size:31.602599px;}
.fsc{font-size:31.919400px;}
.fs7{font-size:33.600000px;}
.fs15{font-size:35.359200px;}
.fs14{font-size:38.815799px;}
.fs16{font-size:38.854800px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:42.010200px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:60.014997px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:75.777000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:0.001236px;}
.y260{bottom:0.016205px;}
.y26c{bottom:0.026550px;}
.ya8{bottom:0.041565px;}
.yb4{bottom:0.042023px;}
.ye5{bottom:1.185150px;}
.y21e{bottom:1.342049px;}
.y21d{bottom:2.732552px;}
.ye7{bottom:3.142090px;}
.yac{bottom:3.344559px;}
.ydc{bottom:3.794403px;}
.yb9{bottom:3.794501px;}
.ya4{bottom:3.794586px;}
.yb1{bottom:3.794684px;}
.yba{bottom:3.794815px;}
.y24f{bottom:3.796051px;}
.yb8{bottom:3.929535px;}
.yb0{bottom:3.929718px;}
.yc2{bottom:6.316040px;}
.yb3{bottom:7.169861px;}
.y25c{bottom:7.216209px;}
.ye3{bottom:8.400009px;}
.y264{bottom:9.871056px;}
.y268{bottom:9.881561px;}
.ybd{bottom:10.109528px;}
.y258{bottom:10.705491px;}
.y253{bottom:10.709703px;}
.y219{bottom:11.146053px;}
.y25e{bottom:15.289352px;}
.y26a{bottom:17.806366px;}
.y21b{bottom:18.678898px;}
.ye9{bottom:20.381561px;}
.yc0{bottom:26.754730px;}
.y6{bottom:35.925007px;}
.y255{bottom:35.967752px;}
.y24{bottom:50.758198px;}
.y5{bottom:66.525004px;}
.y22a{bottom:89.880455px;}
.y149{bottom:90.000000px;}
.y14e{bottom:90.012003px;}
.y14f{bottom:90.024012px;}
.y148{bottom:90.036000px;}
.y151{bottom:90.036022px;}
.y155{bottom:90.048031px;}
.y2b9{bottom:90.131552px;}
.y274{bottom:90.362704px;}
.y222{bottom:90.797516px;}
.ya0{bottom:90.797539px;}
.y174{bottom:90.797562px;}
.y321{bottom:91.139516px;}
.yfd{bottom:91.199982px;}
.y120{bottom:91.200005px;}
.y185{bottom:91.346695px;}
.y1a5{bottom:91.903061px;}
.y47{bottom:94.800000px;}
.y24c{bottom:95.437180px;}
.yda{bottom:96.800554px;}
.y4{bottom:97.125005px;}
.y221{bottom:102.902550px;}
.y10f{bottom:103.547516px;}
.y12d{bottom:103.687042px;}
.y147{bottom:104.280000px;}
.y2a9{bottom:104.297516px;}
.y2b8{bottom:104.375552px;}
.y1be{bottom:105.187042px;}
.y320{bottom:105.383516px;}
.y1db{bottom:107.437202px;}
.y75{bottom:107.672516px;}
.y282{bottom:107.876541px;}
.y229{bottom:107.880455px;}
.y273{bottom:108.362704px;}
.y140{bottom:108.797516px;}
.y9f{bottom:108.797539px;}
.y173{bottom:108.797562px;}
.y1fe{bottom:109.187517px;}
.yfc{bottom:109.199982px;}
.y11f{bottom:109.200005px;}
.y184{bottom:109.346695px;}
.y1a4{bottom:109.903061px;}
.y46{bottom:111.803253px;}
.y24b{bottom:113.437180px;}
.yd9{bottom:114.800554px;}
.y2ed{bottom:117.011543px;}
.y146{bottom:118.524000px;}
.y2b7{bottom:118.619552px;}
.y31f{bottom:119.627516px;}
.y220{bottom:120.902550px;}
.y10e{bottom:121.547516px;}
.y12c{bottom:121.687042px;}
.y2a8{bottom:122.297516px;}
.y1bd{bottom:123.187042px;}
.y1da{bottom:125.437202px;}
.y74{bottom:125.672516px;}
.y281{bottom:125.876541px;}
.y228{bottom:125.880455px;}
.y272{bottom:126.362704px;}
.y13f{bottom:126.797516px;}
.y9e{bottom:126.797539px;}
.y172{bottom:126.797562px;}
.y1fd{bottom:127.187517px;}
.yfb{bottom:127.199982px;}
.y11e{bottom:127.200005px;}
.y183{bottom:127.346695px;}
.y1a3{bottom:127.903061px;}
.y45{bottom:130.847248px;}
.y2ec{bottom:131.255543px;}
.y24a{bottom:131.437180px;}
.y145{bottom:132.768000px;}
.yd8{bottom:132.800554px;}
.y218{bottom:133.645500px;}
.y31e{bottom:133.871516px;}
.y21c{bottom:137.606700px;}
.y23{bottom:139.264499px;}
.y10d{bottom:139.547516px;}
.y12b{bottom:139.687042px;}
.y2a7{bottom:140.297516px;}
.y1d9{bottom:143.437042px;}
.y73{bottom:143.672516px;}
.y280{bottom:143.876541px;}
.y227{bottom:143.880455px;}
.y271{bottom:144.362704px;}
.y21a{bottom:144.791553px;}
.y13e{bottom:144.797516px;}
.y9d{bottom:144.797539px;}
.y21f{bottom:144.797550px;}
.y171{bottom:144.797562px;}
.y1fc{bottom:145.187517px;}
.yfa{bottom:145.199982px;}
.y11d{bottom:145.200005px;}
.y182{bottom:145.346695px;}
.y2eb{bottom:145.499543px;}
.y1a2{bottom:145.903061px;}
.y144{bottom:147.012000px;}
.y31d{bottom:148.115516px;}
.y249{bottom:149.437180px;}
.yd7{bottom:150.800554px;}
.y2b6{bottom:154.607552px;}
.y44{bottom:154.703250px;}
.y10c{bottom:157.547516px;}
.y12a{bottom:157.687042px;}
.y2a6{bottom:158.297516px;}
.y1bc{bottom:159.187042px;}
.y2ea{bottom:159.743543px;}
.y143{bottom:161.256000px;}
.y1d8{bottom:161.437042px;}
.y72{bottom:161.672516px;}
.y27f{bottom:161.876541px;}
.y226{bottom:161.880455px;}
.y31c{bottom:162.359516px;}
.y270{bottom:162.362704px;}
.y13d{bottom:162.797516px;}
.y9c{bottom:162.797539px;}
.y170{bottom:162.797562px;}
.y1fb{bottom:163.187517px;}
.yf9{bottom:163.199982px;}
.y11c{bottom:163.200005px;}
.y181{bottom:163.346695px;}
.y1a1{bottom:163.903061px;}
.y248{bottom:167.437180px;}
.yd6{bottom:168.800554px;}
.y43{bottom:168.947250px;}
.y2e9{bottom:173.987543px;}
.y10b{bottom:175.547516px;}
.y129{bottom:175.687042px;}
.y2a5{bottom:176.297516px;}
.y31b{bottom:176.603516px;}
.y1d7{bottom:179.437042px;}
.y71{bottom:179.672516px;}
.y27e{bottom:179.876541px;}
.y225{bottom:179.880455px;}
.y142{bottom:180.299995px;}
.y26f{bottom:180.362704px;}
.y13c{bottom:180.797516px;}
.y9b{bottom:180.797539px;}
.y16f{bottom:180.797562px;}
.y1fa{bottom:181.187517px;}
.yf8{bottom:181.199982px;}
.y11b{bottom:181.200005px;}
.y180{bottom:181.346695px;}
.y1a0{bottom:181.903061px;}
.y2b5{bottom:183.107552px;}
.y247{bottom:185.437180px;}
.yd5{bottom:186.800554px;}
.y2e8{bottom:188.231543px;}
.y31a{bottom:190.847516px;}
.y10a{bottom:193.547516px;}
.y128{bottom:193.687042px;}
.y2a4{bottom:194.297516px;}
.y1a{bottom:196.933500px;}
.y1d6{bottom:197.437042px;}
.y70{bottom:197.672516px;}
.y28c{bottom:197.753998px;}
.y27d{bottom:197.876541px;}
.y224{bottom:197.880455px;}
.y26e{bottom:198.362704px;}
.y13b{bottom:198.797516px;}
.y9a{bottom:198.797539px;}
.y16e{bottom:198.797562px;}
.y1f9{bottom:199.187517px;}
.yf7{bottom:199.199982px;}
.y11a{bottom:199.200005px;}
.y17f{bottom:199.346695px;}
.y1bb{bottom:199.687042px;}
.y19f{bottom:199.903061px;}
.y2e7{bottom:202.475543px;}
.y246{bottom:203.437180px;}
.yd4{bottom:204.800554px;}
.y319{bottom:205.091516px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y109{bottom:211.547516px;}
.y127{bottom:211.687042px;}
.y2a3{bottom:212.297516px;}
.y2b4{bottom:215.393562px;}
.y1d5{bottom:215.437042px;}
.y6f{bottom:215.672516px;}
.y27c{bottom:215.876541px;}
.y223{bottom:215.880455px;}
.y26d{bottom:216.362704px;}
.y2e6{bottom:216.719543px;}
.y13a{bottom:216.797516px;}
.y99{bottom:216.797539px;}
.y16d{bottom:216.797562px;}
.y1f8{bottom:217.187517px;}
.yf6{bottom:217.199982px;}
.y119{bottom:217.200005px;}
.y17e{bottom:217.346695px;}
.y1ba{bottom:217.687042px;}
.y19e{bottom:217.903061px;}
.y318{bottom:219.335516px;}
.y245{bottom:221.437180px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.yd3{bottom:222.800554px;}
.y263{bottom:229.114494px;}
.y108{bottom:229.547516px;}
.y2b3{bottom:229.637562px;}
.y126{bottom:229.687042px;}
.y2a2{bottom:230.297516px;}
.y2e5{bottom:230.963543px;}
.y267{bottom:231.800697px;}
.y1d4{bottom:233.437042px;}
.y317{bottom:233.579516px;}
.y6e{bottom:233.672516px;}
.y27b{bottom:233.876541px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y139{bottom:234.797516px;}
.y98{bottom:234.797539px;}
.y16c{bottom:234.797562px;}
.y1f7{bottom:235.187517px;}
.yf5{bottom:235.199982px;}
.y118{bottom:235.200005px;}
.y17d{bottom:235.353755px;}
.y1b9{bottom:235.687042px;}
.y19d{bottom:235.903061px;}
.y265{bottom:238.985550px;}
.y269{bottom:238.996056px;}
.y262{bottom:238.997704px;}
.y244{bottom:239.437180px;}
.yd2{bottom:240.800554px;}
.y42{bottom:242.567093px;}
.y2b2{bottom:243.881562px;}
.y2e4{bottom:245.207543px;}
.y266{bottom:246.194389px;}
.y107{bottom:247.547516px;}
.y125{bottom:247.687042px;}
.y316{bottom:247.823516px;}
.y14d{bottom:247.871994px;}
.y26b{bottom:248.148903px;}
.y1d3{bottom:251.437042px;}
.y6d{bottom:251.672516px;}
.y27a{bottom:251.876541px;}
.y141{bottom:252.797516px;}
.y97{bottom:252.797539px;}
.y16b{bottom:252.797562px;}
.y1f6{bottom:253.187517px;}
.yf4{bottom:253.199982px;}
.y117{bottom:253.200005px;}
.y17c{bottom:253.353755px;}
.y1b8{bottom:253.687042px;}
.y19c{bottom:253.903061px;}
.y243{bottom:257.437180px;}
.y2b1{bottom:258.125562px;}
.y25b{bottom:258.787491px;}
.yd1{bottom:258.800554px;}
.y231{bottom:258.878557px;}
.y2e3{bottom:259.451543px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y315{bottom:262.067516px;}
.y106{bottom:265.547516px;}
.y124{bottom:265.687042px;}
.y25a{bottom:265.991698px;}
.y261{bottom:265.997704px;}
.y25d{bottom:266.003700px;}
.y2a1{bottom:266.297516px;}
.y1d2{bottom:269.437042px;}
.y6c{bottom:269.672516px;}
.y1c0{bottom:269.767456px;}
.y279{bottom:269.876541px;}
.y138{bottom:270.797516px;}
.y96{bottom:270.797539px;}
.y16a{bottom:270.797562px;}
.y1f5{bottom:271.187517px;}
.yf3{bottom:271.199982px;}
.y116{bottom:271.200005px;}
.y17b{bottom:271.353755px;}
.y1b7{bottom:271.687042px;}
.y19b{bottom:271.903061px;}
.y2b0{bottom:272.369562px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y230{bottom:273.122557px;}
.y2e2{bottom:273.695543px;}
.y25f{bottom:275.210700px;}
.y242{bottom:275.437180px;}
.y314{bottom:276.311516px;}
.yd0{bottom:276.800554px;}
.y41{bottom:279.317093px;}
.y105{bottom:283.547516px;}
.y123{bottom:283.687042px;}
.y252{bottom:284.748000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y2af{bottom:286.613562px;}
.y22f{bottom:287.366557px;}
.y1d1{bottom:287.437042px;}
.y6b{bottom:287.672516px;}
.y278{bottom:287.876541px;}
.y2e1{bottom:287.939543px;}
.y257{bottom:288.257698px;}
.y137{bottom:288.797516px;}
.y95{bottom:288.797539px;}
.y169{bottom:288.797562px;}
.y1f4{bottom:289.187517px;}
.yf2{bottom:289.199982px;}
.y115{bottom:289.200005px;}
.y17a{bottom:289.353755px;}
.y1b6{bottom:289.687042px;}
.y19a{bottom:289.903061px;}
.y323{bottom:290.543516px;}
.y313{bottom:290.555516px;}
.y241{bottom:293.437180px;}
.ycf{bottom:294.800554px;}
.y254{bottom:295.457703px;}
.y259{bottom:295.466698px;}
.y251{bottom:295.472562px;}
.y40{bottom:297.317093px;}
.y2ae{bottom:300.857562px;}
.y104{bottom:301.547516px;}
.y22e{bottom:301.610557px;}
.y122{bottom:301.687042px;}
.y2e0{bottom:302.183543px;}
.y256{bottom:304.607689px;}
.y322{bottom:304.787516px;}
.y312{bottom:304.799516px;}
.y1d0{bottom:305.437042px;}
.y6a{bottom:305.672516px;}
.y277{bottom:305.876541px;}
.y136{bottom:306.797516px;}
.y94{bottom:306.797539px;}
.y168{bottom:306.797562px;}
.y1f3{bottom:307.187517px;}
.yf1{bottom:307.199982px;}
.y114{bottom:307.200005px;}
.y179{bottom:307.353755px;}
.y1b5{bottom:307.687042px;}
.y199{bottom:307.903061px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y240{bottom:311.437180px;}
.yce{bottom:312.800554px;}
.y22d{bottom:315.854557px;}
.y2df{bottom:316.427543px;}
.y311{bottom:319.043516px;}
.y103{bottom:319.547516px;}
.y121{bottom:319.687042px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1cf{bottom:323.437042px;}
.y69{bottom:323.672516px;}
.y276{bottom:323.876541px;}
.y135{bottom:324.797516px;}
.y93{bottom:324.797539px;}
.y167{bottom:324.797562px;}
.y1f2{bottom:325.187517px;}
.yf0{bottom:325.199982px;}
.y113{bottom:325.200005px;}
.y1b4{bottom:325.687042px;}
.y198{bottom:325.903061px;}
.y2ad{bottom:329.333562px;}
.y23f{bottom:329.437180px;}
.y22c{bottom:330.098557px;}
.y2de{bottom:330.671543px;}
.ycd{bottom:330.800554px;}
.y310{bottom:333.287516px;}
.y3f{bottom:334.067093px;}
.y102{bottom:337.547516px;}
.y1ce{bottom:341.437042px;}
.y68{bottom:341.672516px;}
.y275{bottom:341.876541px;}
.y134{bottom:342.797516px;}
.y92{bottom:342.797539px;}
.y166{bottom:342.797562px;}
.yef{bottom:343.199982px;}
.y112{bottom:343.200005px;}
.y178{bottom:343.353755px;}
.y2ac{bottom:343.577562px;}
.y1b3{bottom:343.687042px;}
.y197{bottom:343.903061px;}
.y2dd{bottom:344.915543px;}
.y23e{bottom:347.437180px;}
.y30f{bottom:347.531516px;}
.y11{bottom:348.133500px;}
.ycc{bottom:348.800554px;}
.y3e{bottom:352.067093px;}
.y101{bottom:355.547516px;}
.y2dc{bottom:359.159543px;}
.y1cd{bottom:359.437042px;}
.y67{bottom:359.672516px;}
.y133{bottom:360.797516px;}
.y165{bottom:360.797562px;}
.y12e{bottom:361.159058px;}
.y1f1{bottom:361.187517px;}
.yee{bottom:361.199982px;}
.y1b2{bottom:361.687042px;}
.y30e{bottom:361.775516px;}
.y196{bottom:361.903061px;}
.y23d{bottom:365.437180px;}
.ycb{bottom:366.800554px;}
.y3d{bottom:370.067093px;}
.y2ab{bottom:372.053562px;}
.y2db{bottom:373.403543px;}
.y100{bottom:373.547516px;}
.y30d{bottom:376.019516px;}
.y1cc{bottom:377.437042px;}
.y66{bottom:377.672516px;}
.y132{bottom:378.797516px;}
.y91{bottom:378.797539px;}
.y164{bottom:378.797562px;}
.yed{bottom:379.199982px;}
.y111{bottom:379.200005px;}
.y1b1{bottom:379.687042px;}
.y195{bottom:379.903061px;}
.y23c{bottom:383.437180px;}
.yca{bottom:384.800554px;}
.y2aa{bottom:386.297562px;}
.y10{bottom:386.785499px;}
.y2da{bottom:387.647543px;}
.y3c{bottom:388.067093px;}
.y30c{bottom:390.263516px;}
.y2a0{bottom:390.403659px;}
.yff{bottom:391.547516px;}
.y1cb{bottom:395.437042px;}
.y65{bottom:395.672516px;}
.y177{bottom:396.333755px;}
.y150{bottom:396.636012px;}
.y154{bottom:396.648022px;}
.y131{bottom:396.797516px;}
.y163{bottom:396.797562px;}
.yec{bottom:397.199982px;}
.y1b0{bottom:397.687042px;}
.y194{bottom:397.903061px;}
.y23b{bottom:401.437180px;}
.y2d9{bottom:401.891543px;}
.yc9{bottom:402.800554px;}
.y1f0{bottom:403.742516px;}
.y30b{bottom:404.507516px;}
.y29f{bottom:404.647659px;}
.y14b{bottom:405.611997px;}
.y14a{bottom:405.612000px;}
.y152{bottom:405.648022px;}
.y156{bottom:405.660031px;}
.y3b{bottom:406.067093px;}
.yf{bottom:408.044999px;}
.y1ca{bottom:413.437042px;}
.y64{bottom:413.672516px;}
.y176{bottom:414.333755px;}
.y130{bottom:414.797516px;}
.y90{bottom:414.797562px;}
.yeb{bottom:415.197015px;}
.y207{bottom:415.199982px;}
.y1af{bottom:415.687042px;}
.y193{bottom:415.903061px;}
.y2d8{bottom:416.135543px;}
.y30a{bottom:418.751516px;}
.y23a{bottom:419.437180px;}
.yc8{bottom:420.800554px;}
.y1ef{bottom:421.742516px;}
.y3a{bottom:424.067093px;}
.yfe{bottom:427.547516px;}
.ye2{bottom:427.949982px;}
.y2d7{bottom:430.379543px;}
.y28b{bottom:431.239517px;}
.y63{bottom:431.672516px;}
.y175{bottom:432.333755px;}
.y12f{bottom:432.797516px;}
.y162{bottom:432.797562px;}
.y309{bottom:432.995516px;}
.y206{bottom:433.199982px;}
.y1ae{bottom:433.687042px;}
.y192{bottom:433.903061px;}
.ye8{bottom:436.343857px;}
.yea{bottom:436.347015px;}
.ye1{bottom:436.352516px;}
.y239{bottom:437.437180px;}
.y1ee{bottom:439.742516px;}
.y39{bottom:442.067093px;}
.ye4{bottom:443.535141px;}
.ye6{bottom:443.849716px;}
.y2d6{bottom:444.623543px;}
.y308{bottom:447.239516px;}
.y62{bottom:449.672516px;}
.y110{bottom:450.797516px;}
.y161{bottom:450.797562px;}
.y205{bottom:451.199982px;}
.y1ad{bottom:451.687042px;}
.y191{bottom:451.903061px;}
.y238{bottom:455.437180px;}
.yc7{bottom:456.800554px;}
.y1ed{bottom:457.742516px;}
.ye0{bottom:458.852516px;}
.y2d5{bottom:458.867543px;}
.y1df{bottom:459.367045px;}
.y38{bottom:460.067093px;}
.y307{bottom:461.483516px;}
.y29d{bottom:467.359188px;}
.y61{bottom:467.672516px;}
.y294{bottom:467.751899px;}
.y8f{bottom:468.797516px;}
.y160{bottom:468.797562px;}
.y204{bottom:469.199982px;}
.y1ac{bottom:469.687042px;}
.y190{bottom:469.903061px;}
.y2d4{bottom:473.111543px;}
.y237{bottom:473.437180px;}
.y1de{bottom:473.611045px;}
.y306{bottom:475.727516px;}
.y1ec{bottom:475.742516px;}
.ydf{bottom:476.852516px;}
.y37{bottom:478.067093px;}
.y29a{bottom:480.718369px;}
.y290{bottom:481.182770px;}
.y18d{bottom:481.393034px;}
.ye{bottom:484.864502px;}
.y60{bottom:485.672516px;}
.y8e{bottom:486.797516px;}
.y15f{bottom:486.797562px;}
.y203{bottom:487.199982px;}
.y2d3{bottom:487.355543px;}
.y1dd{bottom:487.855045px;}
.y18f{bottom:487.903061px;}
.y305{bottom:489.971516px;}
.y236{bottom:491.437180px;}
.y1eb{bottom:493.742516px;}
.yde{bottom:494.852516px;}
.y18c{bottom:495.637034px;}
.y36{bottom:496.067093px;}
.yc6{bottom:497.300554px;}
.y2d2{bottom:501.599543px;}
.y1dc{bottom:502.099045px;}
.yd{bottom:502.864502px;}
.y5f{bottom:503.672516px;}
.y297{bottom:503.914215px;}
.y304{bottom:504.215516px;}
.y28d{bottom:504.311829px;}
.y291{bottom:504.578384px;}
.y8d{bottom:504.797516px;}
.y15e{bottom:504.797562px;}
.y202{bottom:505.199982px;}
.y18e{bottom:505.903061px;}
.y295{bottom:509.429993px;}
.y235{bottom:509.437180px;}
.y18b{bottom:509.881034px;}
.y1ea{bottom:511.742516px;}
.y35{bottom:514.067093px;}
.y1c9{bottom:514.113621px;}
.yc5{bottom:515.300554px;}
.y2d1{bottom:515.843543px;}
.y303{bottom:518.459516px;}
.yc{bottom:520.864502px;}
.y5e{bottom:521.672516px;}
.y8c{bottom:522.797516px;}
.y15d{bottom:522.797562px;}
.y201{bottom:523.199982px;}
.y18a{bottom:524.125034px;}
.y234{bottom:527.437180px;}
.y1c8{bottom:528.357621px;}
.y1e9{bottom:529.742516px;}
.y2d0{bottom:530.087543px;}
.ydd{bottom:530.852516px;}
.y28e{bottom:531.162657px;}
.y298{bottom:531.162906px;}
.y292{bottom:531.361286px;}
.y29b{bottom:531.366440px;}
.y34{bottom:532.067093px;}
.y302{bottom:532.703516px;}
.yc4{bottom:533.300554px;}
.y189{bottom:538.387034px;}
.yb{bottom:538.864499px;}
.y5d{bottom:539.672516px;}
.y8b{bottom:540.797516px;}
.y15c{bottom:540.797562px;}
.y200{bottom:541.199982px;}
.y1c7{bottom:542.601621px;}
.y2cf{bottom:544.331543px;}
.y233{bottom:545.437180px;}
.y301{bottom:546.947516px;}
.y1e8{bottom:547.742516px;}
.y33{bottom:550.067093px;}
.yc3{bottom:551.300554px;}
.y188{bottom:552.631034px;}
.y1ab{bottom:556.699052px;}
.y1c6{bottom:556.845621px;}
.ya{bottom:556.864499px;}
.y5c{bottom:557.672516px;}
.y28f{bottom:557.751480px;}
.y293{bottom:558.144187px;}
.y299{bottom:558.343669px;}
.y29c{bottom:558.547203px;}
.y2ce{bottom:558.575543px;}
.y8a{bottom:558.797516px;}
.y15b{bottom:558.797562px;}
.y1ff{bottom:559.199982px;}
.y300{bottom:561.191516px;}
.y232{bottom:563.437180px;}
.ybc{bottom:564.048019px;}
.y1e7{bottom:565.742516px;}
.y187{bottom:566.875034px;}
.y32{bottom:568.067093px;}
.yb7{bottom:570.339020px;}
.y1aa{bottom:570.943052px;}
.y1c5{bottom:571.089621px;}
.y2cd{bottom:572.819543px;}
.yb6{bottom:574.142562px;}
.ybb{bottom:574.145554px;}
.ybf{bottom:574.156703px;}
.yc1{bottom:574.157410px;}
.y2ff{bottom:575.435516px;}
.y5b{bottom:575.672516px;}
.y89{bottom:576.797516px;}
.y15a{bottom:576.797562px;}
.ybe{bottom:577.532547px;}
.y29e{bottom:579.017395px;}
.y296{bottom:579.814362px;}
.y186{bottom:581.119034px;}
.y1e6{bottom:583.742516px;}
.y1a9{bottom:585.187052px;}
.y1c4{bottom:585.333621px;}
.y31{bottom:586.067093px;}
.y2cc{bottom:587.063543px;}
.y2fe{bottom:589.679516px;}
.yaf{bottom:590.990982px;}
.y5a{bottom:593.672516px;}
.yb2{bottom:594.785843px;}
.y88{bottom:594.797516px;}
.yb5{bottom:594.797562px;}
.y1a8{bottom:599.431052px;}
.y1c3{bottom:599.577621px;}
.y2cb{bottom:601.307543px;}
.y1e5{bottom:601.742516px;}
.y2fd{bottom:603.923516px;}
.y30{bottom:604.067093px;}
.y24d{bottom:608.299072px;}
.y250{bottom:608.990982px;}
.yab{bottom:609.449982px;}
.y59{bottom:611.672516px;}
.yad{bottom:612.794540px;}
.y87{bottom:612.797516px;}
.yae{bottom:612.797562px;}
.y1a7{bottom:613.675052px;}
.y2ca{bottom:615.551543px;}
.y2fc{bottom:618.167516px;}
.y1e4{bottom:619.742516px;}
.y217{bottom:620.563941px;}
.y2f{bottom:622.067093px;}
.y1bf{bottom:625.585510px;}
.y24e{bottom:626.989517px;}
.y1a6{bottom:627.919052px;}
.y58{bottom:629.672516px;}
.y2c9{bottom:629.795543px;}
.y86{bottom:630.797516px;}
.yaa{bottom:630.797562px;}
.y2fb{bottom:632.411516px;}
.y216{bottom:634.807941px;}
.y22b{bottom:636.019043px;}
.y1e3{bottom:637.742516px;}
.y2e{bottom:640.067093px;}
.y2c8{bottom:644.039543px;}
.ya7{bottom:644.990982px;}
.y9{bottom:645.510000px;}
.y2fa{bottom:646.655516px;}
.y57{bottom:647.672516px;}
.y85{bottom:648.797516px;}
.ya9{bottom:648.797562px;}
.y215{bottom:649.051941px;}
.y1e2{bottom:655.742516px;}
.y2d{bottom:658.067093px;}
.y2c7{bottom:658.283543px;}
.y2f9{bottom:660.899516px;}
.ya3{bottom:662.990982px;}
.y56{bottom:665.672516px;}
.y28a{bottom:666.118973px;}
.y8{bottom:666.771000px;}
.y84{bottom:666.797516px;}
.ya6{bottom:666.797562px;}
.y2c6{bottom:672.527543px;}
.y1e1{bottom:673.742516px;}
.y2f8{bottom:675.143516px;}
.y55{bottom:683.672516px;}
.y83{bottom:684.797516px;}
.y159{bottom:684.797562px;}
.y2c5{bottom:686.771543px;}
.y2f7{bottom:689.387516px;}
.y2c4{bottom:701.015543px;}
.y54{bottom:701.672516px;}
.y82{bottom:702.797516px;}
.y2f6{bottom:703.631516px;}
.y2c{bottom:706.559696px;}
.y1e0{bottom:709.742516px;}
.y2c3{bottom:715.259543px;}
.y2f5{bottom:717.875516px;}
.y53{bottom:719.672516px;}
.y81{bottom:720.797516px;}
.y158{bottom:720.797562px;}
.y2b{bottom:720.803696px;}
.y7{bottom:726.298500px;}
.y2c2{bottom:729.503543px;}
.y2f4{bottom:732.119516px;}
.y52{bottom:737.672516px;}
.y80{bottom:738.797516px;}
.y2c1{bottom:743.747543px;}
.y2f3{bottom:746.363516px;}
.y3{bottom:752.599495px;}
.y51{bottom:755.672516px;}
.y7f{bottom:756.797516px;}
.y2a{bottom:758.652145px;}
.y2f2{bottom:760.607516px;}
.y50{bottom:773.672516px;}
.y7e{bottom:774.797516px;}
.y2f1{bottom:774.851516px;}
.y2c0{bottom:776.297516px;}
.y2f0{bottom:789.095516px;}
.y4f{bottom:791.672516px;}
.y7d{bottom:792.797516px;}
.y214{bottom:798.756775px;}
.y213{bottom:800.017914px;}
.y29{bottom:801.392529px;}
.y2ef{bottom:803.339516px;}
.y4e{bottom:809.672516px;}
.y212{bottom:810.042572px;}
.y211{bottom:810.241974px;}
.y7c{bottom:810.797516px;}
.y289{bottom:814.421722px;}
.y2ee{bottom:817.583516px;}
.y210{bottom:821.063965px;}
.y20f{bottom:821.064148px;}
.y288{bottom:823.618835px;}
.y28{bottom:823.895529px;}
.y4d{bottom:827.672516px;}
.y7b{bottom:828.797516px;}
.y14c{bottom:831.371994px;}
.y153{bottom:831.408016px;}
.y157{bottom:831.420025px;}
.y2bf{bottom:831.827516px;}
.y20e{bottom:831.885773px;}
.y20d{bottom:832.150818px;}
.y287{bottom:832.816498px;}
.y286{bottom:842.013428px;}
.y20c{bottom:842.772491px;}
.y20b{bottom:842.972443px;}
.y4c{bottom:845.672516px;}
.y2be{bottom:846.071516px;}
.y27{bottom:846.398529px;}
.y7a{bottom:846.797516px;}
.y285{bottom:851.210724px;}
.y20a{bottom:853.793884px;}
.y284{bottom:860.217133px;}
.y2bd{bottom:860.315516px;}
.y4b{bottom:863.672516px;}
.y209{bottom:864.416290px;}
.y79{bottom:864.797516px;}
.y283{bottom:869.414063px;}
.y2bc{bottom:874.559516px;}
.ydb{bottom:878.991028px;}
.y2{bottom:879.369000px;}
.y78{bottom:882.797516px;}
.y1c1{bottom:883.675232px;}
.y1c2{bottom:884.259705px;}
.y2bb{bottom:888.803516px;}
.y4a{bottom:899.672516px;}
.y77{bottom:900.797516px;}
.y2ba{bottom:903.047516px;}
.y208{bottom:904.577820px;}
.y26{bottom:925.867084px;}
.y76{bottom:939.670349px;}
.ya2{bottom:940.110892px;}
.y49{bottom:940.111075px;}
.y25{bottom:940.111084px;}
.ya1{bottom:940.626892px;}
.y48{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h23{height:3.960990px;}
.h3a{height:10.500000px;}
.h18{height:13.650000px;}
.h14{height:13.950000px;}
.h1f{height:15.150000px;}
.h3b{height:15.451499px;}
.h29{height:16.922764px;}
.h1b{height:18.448500px;}
.h32{height:20.053478px;}
.h35{height:20.493346px;}
.h45{height:20.494918px;}
.h49{height:20.516059px;}
.h47{height:21.859469px;}
.h46{height:21.860332px;}
.h31{height:22.854290px;}
.h37{height:23.006692px;}
.h36{height:23.038295px;}
.h4b{height:25.458624px;}
.h3f{height:25.650000px;}
.h38{height:25.951500px;}
.h1a{height:26.886719px;}
.h21{height:27.750000px;}
.h25{height:27.900000px;}
.h4a{height:27.947375px;}
.h43{height:28.050000px;}
.h4c{height:28.257901px;}
.h4d{height:28.286294px;}
.h1d{height:28.398895px;}
.h24{height:28.692967px;}
.h11{height:31.046400px;}
.h7{height:32.130000px;}
.h42{height:32.221823px;}
.ha{height:33.840000px;}
.h3d{height:37.051500px;}
.h15{height:40.570138px;}
.h19{height:40.990243px;}
.h41{height:41.410348px;}
.hb{height:42.048000px;}
.h10{height:44.352000px;}
.h1c{height:45.011248px;}
.h20{height:45.552639px;}
.h6{height:45.900000px;}
.h3e{height:45.929549px;}
.h3c{height:46.031503px;}
.h39{height:46.132150px;}
.h3{height:48.195000px;}
.h2e{height:50.174473px;}
.h34{height:53.160000px;}
.h13{height:53.640000px;}
.h2{height:55.080000px;}
.h30{height:55.241433px;}
.hf{height:55.440000px;}
.h4e{height:55.440183px;}
.h33{height:55.440641px;}
.h2a{height:55.451865px;}
.h1e{height:55.581491px;}
.h17{height:55.582223px;}
.h16{height:55.743539px;}
.he{height:59.340000px;}
.h2c{height:62.779758px;}
.h2d{height:62.808000px;}
.h2b{height:62.808092px;}
.h40{height:64.638752px;}
.hd{height:64.866000px;}
.h12{height:65.274000px;}
.hc{height:69.108000px;}
.h44{height:69.351571px;}
.h22{height:70.517622px;}
.h28{height:72.918876px;}
.h27{height:74.591910px;}
.h26{height:77.599392px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h48{height:198.082489px;}
.h2f{height:286.462509px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w10{width:9.928500px;}
.w11{width:10.605000px;}
.w7{width:57.554998px;}
.wc{width:58.891502px;}
.wa{width:65.909998px;}
.wb{width:72.209999px;}
.w9{width:92.850002px;}
.w13{width:94.365000px;}
.w5{width:95.939999px;}
.w8{width:99.509995px;}
.w6{width:102.538502px;}
.w12{width:126.750000px;}
.wd{width:144.330002px;}
.w14{width:169.035004px;}
.wf{width:295.740005px;}
.w15{width:496.320007px;}
.we{width:505.984497px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:28.017448px;}
.x1a{left:31.118669px;}
.x13{left:32.777258px;}
.x43{left:38.856153px;}
.x14{left:42.402449px;}
.x2a{left:44.041809px;}
.x27{left:48.617088px;}
.x10{left:50.413347px;}
.x55{left:59.206924px;}
.x24{left:61.941753px;}
.x21{left:63.252159px;}
.x2c{left:69.624458px;}
.x5b{left:71.323357px;}
.x1b{left:75.071094px;}
.x6{left:76.535402px;}
.x8{left:77.598450px;}
.x16{left:79.622549px;}
.x67{left:81.370502px;}
.x4a{left:82.574999px;}
.xb{left:85.643251px;}
.x12{left:88.658552px;}
.xd{left:92.267550px;}
.x9{left:93.545402px;}
.x7{left:97.799400px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x74{left:107.303402px;}
.xf{left:108.886047px;}
.x19{left:111.345005px;}
.x52{left:112.744503px;}
.x44{left:115.002605px;}
.x23{left:118.309502px;}
.x45{left:121.785450px;}
.x53{left:123.350853px;}
.x15{left:124.932598px;}
.x60{left:126.592815px;}
.x2e{left:131.305641px;}
.x11{left:134.015396px;}
.x62{left:144.183163px;}
.x6b{left:149.525763px;}
.x17{left:154.929749px;}
.x30{left:165.850204px;}
.x6a{left:167.622597px;}
.x6c{left:168.683712px;}
.xc{left:172.400402px;}
.x18{left:175.970398px;}
.xe{left:179.000404px;}
.x31{left:187.232998px;}
.x25{left:190.519947px;}
.x69{left:194.700302px;}
.x6e{left:198.626106px;}
.x4{left:203.484001px;}
.x4b{left:212.913300px;}
.x32{left:215.240998px;}
.x68{left:217.188606px;}
.x4c{left:228.294142px;}
.x33{left:229.484998px;}
.x5d{left:236.348991px;}
.x4e{left:238.541090px;}
.x6d{left:241.128927px;}
.x34{left:243.728998px;}
.x35{left:257.972998px;}
.x5e{left:262.835999px;}
.x36{left:276.116996px;}
.x59{left:289.777496px;}
.x37{left:294.260996px;}
.x5f{left:310.477959px;}
.x38{left:312.404996px;}
.x4d{left:315.864304px;}
.x61{left:322.262856px;}
.x1c{left:327.178505px;}
.x39{left:330.548996px;}
.x1e{left:340.696806px;}
.x1d{left:341.912109px;}
.x3a{left:348.692996px;}
.x63{left:351.814499px;}
.x5a{left:354.688499px;}
.x64{left:359.710510px;}
.x26{left:361.122002px;}
.x3b{left:366.848996px;}
.x20{left:368.493141px;}
.x29{left:373.180800px;}
.x4f{left:378.525307px;}
.x3c{left:381.092996px;}
.x5c{left:384.142181px;}
.x71{left:387.309448px;}
.x22{left:393.013962px;}
.x3d{left:395.336996px;}
.x2b{left:397.602448px;}
.x73{left:400.350449px;}
.x3e{left:409.580996px;}
.x6f{left:417.381454px;}
.x28{left:420.012772px;}
.x2d{left:423.239090px;}
.x70{left:432.417858px;}
.x72{left:436.949496px;}
.x3f{left:441.968996px;}
.x46{left:444.273468px;}
.x3{left:454.959000px;}
.x50{left:457.405518px;}
.x40{left:460.112996px;}
.x51{left:467.335190px;}
.x2f{left:472.308472px;}
.x41{left:478.340996px;}
.x5{left:485.858414px;}
.x42{left:492.584996px;}
.x66{left:495.747437px;}
.x65{left:497.794968px;}
.x54{left:500.530930px;}
.x48{left:507.682938px;}
.x47{left:511.869461px;}
.x49{left:515.989929px;}
.x56{left:533.633102px;}
.x57{left:552.911087px;}
.xa{left:559.720184px;}
.x58{left:582.519608px;}
@media print{
.va{vertical-align:-34.682667pt;}
.v2{vertical-align:-17.066650pt;}
.v3{vertical-align:-13.487467pt;}
.v9{vertical-align:-10.462402pt;}
.ve{vertical-align:-9.456462pt;}
.vd{vertical-align:-4.368494pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:4.944010pt;}
.v4{vertical-align:13.487467pt;}
.vb{vertical-align:17.002732pt;}
.v1{vertical-align:21.333333pt;}
.vf{vertical-align:22.608561pt;}
.v11{vertical-align:25.583496pt;}
.v10{vertical-align:32.736000pt;}
.v5{vertical-align:59.161451pt;}
.v8{vertical-align:61.295898pt;}
.v7{vertical-align:62.783040pt;}
.v6{vertical-align:65.456357pt;}
.ls66{letter-spacing:-1.728672pt;}
.ls1a{letter-spacing:-1.493333pt;}
.ls67{letter-spacing:-1.477229pt;}
.ls6a{letter-spacing:-1.311111pt;}
.ls3d{letter-spacing:-1.236013pt;}
.ls46{letter-spacing:-1.039374pt;}
.ls3e{letter-spacing:-1.011283pt;}
.ls69{letter-spacing:-0.897076pt;}
.ls3f{letter-spacing:-0.842736pt;}
.ls43{letter-spacing:-0.814645pt;}
.ls55{letter-spacing:-0.810768pt;}
.ls58{letter-spacing:-0.810736pt;}
.ls42{letter-spacing:-0.758462pt;}
.ls48{letter-spacing:-0.702280pt;}
.ls74{letter-spacing:-0.655556pt;}
.ls41{letter-spacing:-0.646098pt;}
.ls75{letter-spacing:-0.640000pt;}
.ls77{letter-spacing:-0.597333pt;}
.ls44{letter-spacing:-0.589915pt;}
.ls56{letter-spacing:-0.567538pt;}
.ls47{letter-spacing:-0.561824pt;}
.ls45{letter-spacing:-0.393277pt;}
.ls64{letter-spacing:-0.310526pt;}
.ls1{letter-spacing:-0.277333pt;}
.ls28{letter-spacing:-0.268969pt;}
.ls2{letter-spacing:-0.266667pt;}
.ls49{letter-spacing:-0.252821pt;}
.ls4b{letter-spacing:-0.186711pt;}
.ls72{letter-spacing:-0.172515pt;}
.ls40{letter-spacing:-0.168547pt;}
.ls6d{letter-spacing:-0.138150pt;}
.ls6c{letter-spacing:-0.138012pt;}
.ls6f{letter-spacing:-0.103613pt;}
.ls70{letter-spacing:-0.103509pt;}
.ls2a{letter-spacing:-0.097807pt;}
.ls2b{letter-spacing:-0.073355pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.014168pt;}
.lse{letter-spacing:0.025347pt;}
.ls10{letter-spacing:0.027688pt;}
.ls15{letter-spacing:0.037342pt;}
.ls4a{letter-spacing:0.053347pt;}
.ls57{letter-spacing:0.054051pt;}
.ls20{letter-spacing:0.056746pt;}
.ls60{letter-spacing:0.075150pt;}
.ls29{letter-spacing:0.097807pt;}
.ls3c{letter-spacing:0.100090pt;}
.ls1d{letter-spacing:0.134715pt;}
.ls27{letter-spacing:0.141864pt;}
.ls1c{letter-spacing:0.202072pt;}
.ls1f{letter-spacing:0.226982pt;}
.ls23{letter-spacing:0.269429pt;}
.ls73{letter-spacing:0.310526pt;}
.ls21{letter-spacing:0.317873pt;}
.ls38{letter-spacing:0.325291pt;}
.ls5f{letter-spacing:0.325652pt;}
.ls1e{letter-spacing:0.336787pt;}
.ls63{letter-spacing:0.375752pt;}
.ls25{letter-spacing:0.397219pt;}
.ls32{letter-spacing:0.450403pt;}
.ls2e{letter-spacing:0.522624pt;}
.ls2c{letter-spacing:0.522667pt;}
.ls2d{letter-spacing:0.522786pt;}
.ls36{letter-spacing:0.550493pt;}
.ls68{letter-spacing:0.552047pt;}
.ls33{letter-spacing:0.575515pt;}
.ls62{letter-spacing:0.576153pt;}
.ls76{letter-spacing:0.597333pt;}
.ls3a{letter-spacing:0.600538pt;}
.ls31{letter-spacing:0.650582pt;}
.ls54{letter-spacing:0.651303pt;}
.ls30{letter-spacing:0.675605pt;}
.ls52{letter-spacing:0.676354pt;}
.ls53{letter-spacing:0.701404pt;}
.ls1b{letter-spacing:0.746667pt;}
.ls2f{letter-spacing:0.757307pt;}
.ls5c{letter-spacing:0.801604pt;}
.ls3b{letter-spacing:0.875784pt;}
.ls5a{letter-spacing:0.876755pt;}
.ls39{letter-spacing:0.900806pt;}
.ls61{letter-spacing:0.901805pt;}
.ls6b{letter-spacing:1.138597pt;}
.ls34{letter-spacing:1.176053pt;}
.ls59{letter-spacing:1.177356pt;}
.ls37{letter-spacing:1.476322pt;}
.ls5e{letter-spacing:1.477958pt;}
.ls12{letter-spacing:2.639182pt;}
.lsc{letter-spacing:2.640812pt;}
.lsf{letter-spacing:2.641300pt;}
.ls4{letter-spacing:2.641339pt;}
.ls9{letter-spacing:2.641341pt;}
.ls11{letter-spacing:2.641345pt;}
.ls13{letter-spacing:2.641381pt;}
.ls4d{letter-spacing:2.663826pt;}
.ls51{letter-spacing:2.664315pt;}
.ls4c{letter-spacing:2.665942pt;}
.ls8{letter-spacing:2.689354pt;}
.ls7{letter-spacing:2.689355pt;}
.lsd{letter-spacing:7.308493pt;}
.ls26{letter-spacing:8.114621pt;}
.ls5b{letter-spacing:8.191393pt;}
.ls35{letter-spacing:8.407526pt;}
.ls5d{letter-spacing:8.416845pt;}
.ls6{letter-spacing:8.855546pt;}
.ls5{letter-spacing:8.908893pt;}
.ls4f{letter-spacing:9.288908pt;}
.ls6e{letter-spacing:9.463302pt;}
.ls16{letter-spacing:11.522133pt;}
.ls19{letter-spacing:11.842960pt;}
.ls18{letter-spacing:14.531410pt;}
.lsa{letter-spacing:14.777026pt;}
.lsb{letter-spacing:14.830373pt;}
.ls14{letter-spacing:15.278777pt;}
.ls22{letter-spacing:18.860053pt;}
.ls24{letter-spacing:19.129483pt;}
.ls4e{letter-spacing:21.201024pt;}
.ls50{letter-spacing:25.057885pt;}
.ls3{letter-spacing:28.167039pt;}
.ls71{letter-spacing:90.205244pt;}
.ls65{letter-spacing:118.618330pt;}
.ws17a{word-spacing:-118.649760pt;}
.ws185{word-spacing:-90.236675pt;}
.wse0{word-spacing:-19.196840pt;}
.wsdf{word-spacing:-18.927411pt;}
.ws5b{word-spacing:-14.883719pt;}
.ws67{word-spacing:-14.830373pt;}
.ws12e{word-spacing:-14.777026pt;}
.wsf8{word-spacing:-14.080000pt;}
.ws3d{word-spacing:-13.333333pt;}
.ws3{word-spacing:-13.034667pt;}
.ws4e{word-spacing:-11.850667pt;}
.ws81{word-spacing:-11.842960pt;}
.ws1cb{word-spacing:-11.264000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.773333pt;}
.wscd{word-spacing:-10.666667pt;}
.ws7{word-spacing:-10.240000pt;}
.ws4f{word-spacing:-10.080000pt;}
.ws1ec{word-spacing:-10.069333pt;}
.ws1ca{word-spacing:-10.026667pt;}
.wsf5{word-spacing:-9.856000pt;}
.ws182{word-spacing:-9.497840pt;}
.ws74{word-spacing:-9.333333pt;}
.ws64{word-spacing:-8.908893pt;}
.ws16d{word-spacing:-8.441895pt;}
.ws104{word-spacing:-8.432549pt;}
.ws2{word-spacing:-8.362667pt;}
.ws168{word-spacing:-8.216444pt;}
.ws19a{word-spacing:-8.192000pt;}
.wse4{word-spacing:-8.142994pt;}
.ws5{word-spacing:-7.728000pt;}
.ws8{word-spacing:-7.466667pt;}
.ws82{word-spacing:-6.666667pt;}
.wsc3{word-spacing:-5.333333pt;}
.ws16e{word-spacing:-1.503008pt;}
.ws109{word-spacing:-1.501344pt;}
.ws1d9{word-spacing:-1.280000pt;}
.wsd7{word-spacing:-1.226667pt;}
.ws166{word-spacing:-1.202406pt;}
.ws102{word-spacing:-1.201075pt;}
.ws19e{word-spacing:-1.173333pt;}
.ws17f{word-spacing:-1.173100pt;}
.ws3a{word-spacing:-1.013333pt;}
.ws161{word-spacing:-0.960000pt;}
.ws172{word-spacing:-0.926855pt;}
.wsb5{word-spacing:-0.906667pt;}
.ws167{word-spacing:-0.901805pt;}
.ws110{word-spacing:-0.900806pt;}
.ws47{word-spacing:-0.853333pt;}
.ws16c{word-spacing:-0.826654pt;}
.wsbb{word-spacing:-0.800000pt;}
.wsf6{word-spacing:-0.746667pt;}
.ws178{word-spacing:-0.726454pt;}
.ws177{word-spacing:-0.701404pt;}
.ws2f{word-spacing:-0.693333pt;}
.ws103{word-spacing:-0.675605pt;}
.ws18d{word-spacing:-0.651303pt;}
.ws68{word-spacing:-0.640000pt;}
.ws173{word-spacing:-0.601203pt;}
.ws10e{word-spacing:-0.600538pt;}
.ws1cc{word-spacing:-0.597333pt;}
.ws11d{word-spacing:-0.586667pt;}
.ws17c{word-spacing:-0.586550pt;}
.ws108{word-spacing:-0.575515pt;}
.ws4d{word-spacing:-0.533333pt;}
.ws38{word-spacing:-0.480000pt;}
.ws10d{word-spacing:-0.475426pt;}
.ws200{word-spacing:-0.469333pt;}
.wsf7{word-spacing:-0.426667pt;}
.wse2{word-spacing:-0.425592pt;}
.wse1{word-spacing:-0.404144pt;}
.ws174{word-spacing:-0.400802pt;}
.ws24{word-spacing:-0.373333pt;}
.ws16f{word-spacing:-0.350702pt;}
.ws10a{word-spacing:-0.350314pt;}
.ws18a{word-spacing:-0.345029pt;}
.ws1b8{word-spacing:-0.341333pt;}
.ws7e{word-spacing:-0.320000pt;}
.ws1ff{word-spacing:-0.298667pt;}
.wsec{word-spacing:-0.269429pt;}
.ws37{word-spacing:-0.266667pt;}
.wse3{word-spacing:-0.255355pt;}
.wsa4{word-spacing:-0.213333pt;}
.ws1c1{word-spacing:-0.170667pt;}
.ws34{word-spacing:-0.160000pt;}
.wsed{word-spacing:-0.141864pt;}
.ws1e7{word-spacing:-0.128000pt;}
.ws50{word-spacing:-0.106667pt;}
.ws170{word-spacing:-0.100201pt;}
.ws11f{word-spacing:-0.100090pt;}
.ws1d0{word-spacing:-0.085333pt;}
.ws18c{word-spacing:-0.054051pt;}
.ws5c{word-spacing:-0.053347pt;}
.wsa8{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws160{word-spacing:-0.037342pt;}
.ws188{word-spacing:-0.034503pt;}
.ws0{word-spacing:0.000000pt;}
.ws1f3{word-spacing:0.042667pt;}
.ws7a{word-spacing:0.053333pt;}
.ws183{word-spacing:0.069075pt;}
.wsee{word-spacing:0.073355pt;}
.ws1cd{word-spacing:0.085333pt;}
.ws180{word-spacing:0.103509pt;}
.ws181{word-spacing:0.103613pt;}
.ws60{word-spacing:0.106667pt;}
.ws159{word-spacing:0.128000pt;}
.ws189{word-spacing:0.138012pt;}
.ws73{word-spacing:0.160000pt;}
.ws127{word-spacing:0.160038pt;}
.ws120{word-spacing:0.168547pt;}
.ws7c{word-spacing:0.213333pt;}
.wse7{word-spacing:0.244517pt;}
.ws122{word-spacing:0.252821pt;}
.ws46{word-spacing:0.266667pt;}
.ws1ce{word-spacing:0.298667pt;}
.ws18e{word-spacing:0.310526pt;}
.ws1d{word-spacing:0.320000pt;}
.ws61{word-spacing:0.373333pt;}
.ws1a4{word-spacing:0.384000pt;}
.wsfe{word-spacing:0.426667pt;}
.wsa7{word-spacing:0.480000pt;}
.ws1b5{word-spacing:0.512000pt;}
.wsa2{word-spacing:0.533333pt;}
.ws118{word-spacing:0.533733pt;}
.ws164{word-spacing:0.540512pt;}
.ws1d7{word-spacing:0.554667pt;}
.ws114{word-spacing:0.561824pt;}
.ws57{word-spacing:0.586667pt;}
.wsda{word-spacing:0.597333pt;}
.ws113{word-spacing:0.618006pt;}
.ws13{word-spacing:0.640000pt;}
.ws192{word-spacing:0.655556pt;}
.ws119{word-spacing:0.674189pt;}
.ws1d1{word-spacing:0.682667pt;}
.ws77{word-spacing:0.693333pt;}
.wsd5{word-spacing:0.725333pt;}
.ws49{word-spacing:0.746667pt;}
.ws121{word-spacing:0.758462pt;}
.ws1ed{word-spacing:0.768000pt;}
.ws165{word-spacing:0.783711pt;}
.ws163{word-spacing:0.783742pt;}
.wsd0{word-spacing:0.800000pt;}
.ws1f7{word-spacing:0.810667pt;}
.ws112{word-spacing:0.814645pt;}
.ws9b{word-spacing:0.853333pt;}
.ws17d{word-spacing:0.862573pt;}
.ws191{word-spacing:0.897076pt;}
.ws71{word-spacing:0.906667pt;}
.ws1a5{word-spacing:0.938667pt;}
.ws2c{word-spacing:0.960000pt;}
.ws13a{word-spacing:0.981333pt;}
.ws115{word-spacing:0.983192pt;}
.ws117{word-spacing:1.011283pt;}
.wsba{word-spacing:1.013333pt;}
.ws1e5{word-spacing:1.024000pt;}
.wsb6{word-spacing:1.066667pt;}
.ws1d8{word-spacing:1.109333pt;}
.ws72{word-spacing:1.120000pt;}
.ws6c{word-spacing:1.173333pt;}
.ws1a7{word-spacing:1.194667pt;}
.ws111{word-spacing:1.207922pt;}
.wsc6{word-spacing:1.226667pt;}
.ws19f{word-spacing:1.237333pt;}
.ws17e{word-spacing:1.276608pt;}
.ws90{word-spacing:1.280000pt;}
.ws190{word-spacing:1.311111pt;}
.ws1b4{word-spacing:1.322667pt;}
.ws17{word-spacing:1.333333pt;}
.ws1f8{word-spacing:1.365333pt;}
.ws9{word-spacing:1.386667pt;}
.ws1a8{word-spacing:1.408000pt;}
.ws30{word-spacing:1.440000pt;}
.ws18f{word-spacing:1.477229pt;}
.wsa{word-spacing:1.493333pt;}
.ws1fd{word-spacing:1.536000pt;}
.ws79{word-spacing:1.546667pt;}
.ws1ba{word-spacing:1.578667pt;}
.ws98{word-spacing:1.600000pt;}
.ws1a0{word-spacing:1.621333pt;}
.ws3e{word-spacing:1.653333pt;}
.wsd6{word-spacing:1.664000pt;}
.wsdb{word-spacing:1.706667pt;}
.wsf2{word-spacing:1.749333pt;}
.wscb{word-spacing:1.760000pt;}
.ws1ea{word-spacing:1.792000pt;}
.ws100{word-spacing:1.813333pt;}
.ws1da{word-spacing:1.834667pt;}
.ws6a{word-spacing:1.866667pt;}
.ws1d2{word-spacing:1.877333pt;}
.wsad{word-spacing:1.920000pt;}
.ws51{word-spacing:1.973333pt;}
.wsdc{word-spacing:2.005333pt;}
.wsca{word-spacing:2.026667pt;}
.ws138{word-spacing:2.048000pt;}
.wsa0{word-spacing:2.080000pt;}
.ws29{word-spacing:2.133333pt;}
.ws145{word-spacing:2.176000pt;}
.ws59{word-spacing:2.186667pt;}
.ws1db{word-spacing:2.218667pt;}
.ws4c{word-spacing:2.240000pt;}
.wsce{word-spacing:2.293333pt;}
.ws1b{word-spacing:2.346667pt;}
.wsf4{word-spacing:2.389333pt;}
.ws95{word-spacing:2.400000pt;}
.ws1e3{word-spacing:2.432000pt;}
.wsf{word-spacing:2.453333pt;}
.ws1b9{word-spacing:2.474667pt;}
.ws1c{word-spacing:2.506667pt;}
.ws1ee{word-spacing:2.517333pt;}
.ws2b{word-spacing:2.560000pt;}
.ws1e0{word-spacing:2.602667pt;}
.ws18{word-spacing:2.613333pt;}
.ws42{word-spacing:2.666667pt;}
.wsd2{word-spacing:2.688000pt;}
.ws14{word-spacing:2.720000pt;}
.ws143{word-spacing:2.730667pt;}
.ws48{word-spacing:2.773333pt;}
.ws158{word-spacing:2.816000pt;}
.wsc8{word-spacing:2.826667pt;}
.ws146{word-spacing:2.858667pt;}
.ws136{word-spacing:2.880000pt;}
.ws1a3{word-spacing:2.901333pt;}
.ws135{word-spacing:2.933333pt;}
.ws1b3{word-spacing:2.944000pt;}
.ws16{word-spacing:2.986667pt;}
.ws1bf{word-spacing:3.029333pt;}
.wse{word-spacing:3.040000pt;}
.ws1a6{word-spacing:3.072000pt;}
.ws85{word-spacing:3.093333pt;}
.ws1e9{word-spacing:3.114667pt;}
.ws78{word-spacing:3.146667pt;}
.ws96{word-spacing:3.200000pt;}
.ws5e{word-spacing:3.253333pt;}
.ws2e{word-spacing:3.306667pt;}
.ws21{word-spacing:3.360000pt;}
.wsd9{word-spacing:3.370667pt;}
.ws7f{word-spacing:3.413333pt;}
.ws1dd{word-spacing:3.456000pt;}
.ws25{word-spacing:3.466667pt;}
.ws1df{word-spacing:3.498667pt;}
.wsa1{word-spacing:3.520000pt;}
.ws1e4{word-spacing:3.541333pt;}
.ws14a{word-spacing:3.573333pt;}
.wsbe{word-spacing:3.584000pt;}
.ws75{word-spacing:3.626667pt;}
.ws1a2{word-spacing:3.669333pt;}
.ws5d{word-spacing:3.680000pt;}
.ws1e8{word-spacing:3.712000pt;}
.ws36{word-spacing:3.733333pt;}
.wsbc{word-spacing:3.786667pt;}
.ws1b1{word-spacing:3.797333pt;}
.ws9f{word-spacing:3.840000pt;}
.wsd3{word-spacing:3.882667pt;}
.ws8b{word-spacing:3.893333pt;}
.ws4a{word-spacing:3.946667pt;}
.wsf1{word-spacing:3.968000pt;}
.wsc{word-spacing:4.000000pt;}
.ws15d{word-spacing:4.053333pt;}
.ws1c0{word-spacing:4.096000pt;}
.wsb{word-spacing:4.106667pt;}
.wsd8{word-spacing:4.160000pt;}
.wsf3{word-spacing:4.181333pt;}
.ws69{word-spacing:4.213333pt;}
.ws1bb{word-spacing:4.224000pt;}
.ws45{word-spacing:4.266667pt;}
.wsbf{word-spacing:4.309333pt;}
.wsa3{word-spacing:4.320000pt;}
.ws1e1{word-spacing:4.352000pt;}
.ws6b{word-spacing:4.373333pt;}
.ws12{word-spacing:4.426667pt;}
.ws1a9{word-spacing:4.437333pt;}
.ws54{word-spacing:4.480000pt;}
.wsb1{word-spacing:4.533333pt;}
.wsd4{word-spacing:4.565333pt;}
.wsac{word-spacing:4.586667pt;}
.ws2a{word-spacing:4.640000pt;}
.ws144{word-spacing:4.650667pt;}
.ws8d{word-spacing:4.693333pt;}
.ws1ef{word-spacing:4.736000pt;}
.ws28{word-spacing:4.746667pt;}
.ws1b7{word-spacing:4.778667pt;}
.ws94{word-spacing:4.800000pt;}
.ws157{word-spacing:4.821333pt;}
.wsa9{word-spacing:4.853333pt;}
.ws139{word-spacing:4.864000pt;}
.ws76{word-spacing:4.906667pt;}
.ws35{word-spacing:4.960000pt;}
.ws1e{word-spacing:5.013333pt;}
.ws27{word-spacing:5.066667pt;}
.ws3c{word-spacing:5.120000pt;}
.ws87{word-spacing:5.173333pt;}
.ws1ab{word-spacing:5.205333pt;}
.ws53{word-spacing:5.226667pt;}
.ws1c4{word-spacing:5.248000pt;}
.ws151{word-spacing:5.280000pt;}
.ws39{word-spacing:5.333333pt;}
.ws7d{word-spacing:5.386667pt;}
.wsfa{word-spacing:5.418667pt;}
.ws11{word-spacing:5.440000pt;}
.wsc1{word-spacing:5.461333pt;}
.ws3f{word-spacing:5.493333pt;}
.wsc0{word-spacing:5.504000pt;}
.ws89{word-spacing:5.546667pt;}
.ws86{word-spacing:5.600000pt;}
.ws15a{word-spacing:5.632000pt;}
.ws56{word-spacing:5.653333pt;}
.ws1c3{word-spacing:5.674667pt;}
.ws93{word-spacing:5.706667pt;}
.ws1e6{word-spacing:5.717333pt;}
.ws97{word-spacing:5.760000pt;}
.ws171{word-spacing:5.786581pt;}
.ws1f4{word-spacing:5.802667pt;}
.ws31{word-spacing:5.813333pt;}
.ws4b{word-spacing:5.866667pt;}
.ws1bc{word-spacing:5.888000pt;}
.ws58{word-spacing:5.920000pt;}
.ws44{word-spacing:5.973333pt;}
.ws10b{word-spacing:6.005376pt;}
.ws1a1{word-spacing:6.016000pt;}
.wsb0{word-spacing:6.026667pt;}
.ws13b{word-spacing:6.080000pt;}
.ws1de{word-spacing:6.101333pt;}
.ws134{word-spacing:6.133333pt;}
.ws70{word-spacing:6.186667pt;}
.ws149{word-spacing:6.240000pt;}
.ws1ae{word-spacing:6.272000pt;}
.ws150{word-spacing:6.293333pt;}
.ws1aa{word-spacing:6.314667pt;}
.wseb{word-spacing:6.346667pt;}
.ws1eb{word-spacing:6.357333pt;}
.ws133{word-spacing:6.400000pt;}
.wsd1{word-spacing:6.442667pt;}
.ws9d{word-spacing:6.453333pt;}
.ws1b2{word-spacing:6.485333pt;}
.ws15{word-spacing:6.506667pt;}
.ws1c2{word-spacing:6.528000pt;}
.wsfd{word-spacing:6.560000pt;}
.wsbd{word-spacing:6.613333pt;}
.ws20{word-spacing:6.666667pt;}
.wsc5{word-spacing:6.720000pt;}
.ws16b{word-spacing:6.763536pt;}
.ws99{word-spacing:6.773333pt;}
.wsb2{word-spacing:6.826667pt;}
.ws15b{word-spacing:6.880000pt;}
.ws1f9{word-spacing:6.912000pt;}
.wsea{word-spacing:6.933333pt;}
.ws1be{word-spacing:6.954667pt;}
.ws10f{word-spacing:6.956227pt;}
.wsfb{word-spacing:6.986667pt;}
.ws107{word-spacing:7.006272pt;}
.ws6f{word-spacing:7.040000pt;}
.ws105{word-spacing:7.081339pt;}
.ws23{word-spacing:7.093333pt;}
.ws10c{word-spacing:7.106362pt;}
.ws169{word-spacing:7.114238pt;}
.ws1c9{word-spacing:7.125333pt;}
.ws15c{word-spacing:7.146667pt;}
.ws179{word-spacing:7.164338pt;}
.ws6e{word-spacing:7.200000pt;}
.ws41{word-spacing:7.253333pt;}
.wsaf{word-spacing:7.306667pt;}
.ws55{word-spacing:7.360000pt;}
.wsef{word-spacing:7.381333pt;}
.ws106{word-spacing:7.406630pt;}
.ws92{word-spacing:7.413333pt;}
.ws16a{word-spacing:7.414839pt;}
.ws152{word-spacing:7.466667pt;}
.wsa6{word-spacing:7.520000pt;}
.ws32{word-spacing:7.573333pt;}
.ws1b6{word-spacing:7.594667pt;}
.ws9e{word-spacing:7.626667pt;}
.ws175{word-spacing:7.640290pt;}
.ws116{word-spacing:7.640806pt;}
.ws11c{word-spacing:7.680000pt;}
.ws1d4{word-spacing:7.722667pt;}
.wsb7{word-spacing:7.733333pt;}
.ws176{word-spacing:7.740491pt;}
.ws6d{word-spacing:7.786667pt;}
.ws1f0{word-spacing:7.808000pt;}
.wsaa{word-spacing:7.840000pt;}
.ws1cf{word-spacing:7.850667pt;}
.wsa5{word-spacing:7.893333pt;}
.ws155{word-spacing:7.946667pt;}
.ws147{word-spacing:8.000000pt;}
.ws1ad{word-spacing:8.021333pt;}
.ws52{word-spacing:8.053333pt;}
.wse5{word-spacing:8.086248pt;}
.ws137{word-spacing:8.106667pt;}
.wse6{word-spacing:8.199739pt;}
.ws80{word-spacing:8.213333pt;}
.ws1fe{word-spacing:8.234667pt;}
.ws1d5{word-spacing:8.277333pt;}
.wsb4{word-spacing:8.320000pt;}
.ws195{word-spacing:8.426667pt;}
.ws141{word-spacing:8.480000pt;}
.ws13f{word-spacing:8.586667pt;}
.ws1af{word-spacing:8.618667pt;}
.ws128{word-spacing:8.640000pt;}
.ws26{word-spacing:8.693333pt;}
.wsd{word-spacing:8.746667pt;}
.ws1dc{word-spacing:8.832000pt;}
.ws15e{word-spacing:8.853333pt;}
.ws83{word-spacing:8.906667pt;}
.ws194{word-spacing:8.960000pt;}
.ws62{word-spacing:9.013333pt;}
.ws1d3{word-spacing:9.045333pt;}
.ws14c{word-spacing:9.066667pt;}
.ws2d{word-spacing:9.120000pt;}
.ws1fb{word-spacing:9.130667pt;}
.ws101{word-spacing:9.173333pt;}
.wsae{word-spacing:9.226667pt;}
.ws124{word-spacing:9.260915pt;}
.ws126{word-spacing:9.272118pt;}
.ws193{word-spacing:9.280000pt;}
.ws184{word-spacing:9.315792pt;}
.ws125{word-spacing:9.324393pt;}
.ws43{word-spacing:9.333333pt;}
.ws123{word-spacing:9.335600pt;}
.ws9a{word-spacing:9.386667pt;}
.wsf9{word-spacing:9.440000pt;}
.ws14f{word-spacing:9.493333pt;}
.ws5f{word-spacing:9.546667pt;}
.ws18b{word-spacing:9.557312pt;}
.ws1f1{word-spacing:9.557333pt;}
.ws22{word-spacing:9.600000pt;}
.ws65{word-spacing:9.653333pt;}
.wsc9{word-spacing:9.706667pt;}
.ws40{word-spacing:9.760000pt;}
.ws33{word-spacing:9.866667pt;}
.ws153{word-spacing:9.973333pt;}
.ws19b{word-spacing:10.026667pt;}
.ws131{word-spacing:10.186667pt;}
.wsfc{word-spacing:10.293333pt;}
.ws1fc{word-spacing:10.368000pt;}
.ws199{word-spacing:10.453333pt;}
.ws11b{word-spacing:10.506667pt;}
.ws3b{word-spacing:10.560000pt;}
.wsc4{word-spacing:10.613333pt;}
.ws5a{word-spacing:10.666667pt;}
.ws142{word-spacing:10.773333pt;}
.ws197{word-spacing:10.826667pt;}
.wsc2{word-spacing:10.880000pt;}
.ws1f2{word-spacing:10.922667pt;}
.ws88{word-spacing:10.933333pt;}
.ws91{word-spacing:10.986667pt;}
.ws14e{word-spacing:11.093333pt;}
.ws1bd{word-spacing:11.136000pt;}
.ws10{word-spacing:11.146667pt;}
.ws156{word-spacing:11.200000pt;}
.wsb9{word-spacing:11.253333pt;}
.ws148{word-spacing:11.306667pt;}
.ws12b{word-spacing:11.360000pt;}
.ws11e{word-spacing:11.466667pt;}
.ws15f{word-spacing:11.733333pt;}
.ws7b{word-spacing:11.840000pt;}
.ws129{word-spacing:11.893333pt;}
.ws63{word-spacing:12.053333pt;}
.ws19c{word-spacing:12.160000pt;}
.ws198{word-spacing:12.213333pt;}
.ws8a{word-spacing:12.266667pt;}
.ws162{word-spacing:12.426667pt;}
.ws13c{word-spacing:12.533333pt;}
.ws132{word-spacing:12.746667pt;}
.wsb8{word-spacing:12.800000pt;}
.wsb3{word-spacing:12.853333pt;}
.ws8c{word-spacing:12.906667pt;}
.ws13e{word-spacing:12.960000pt;}
.ws1c5{word-spacing:12.970667pt;}
.ws84{word-spacing:13.013333pt;}
.wsf0{word-spacing:13.141333pt;}
.ws1f{word-spacing:13.280000pt;}
.ws154{word-spacing:13.333333pt;}
.ws1f5{word-spacing:13.440000pt;}
.ws9c{word-spacing:13.653333pt;}
.wsc7{word-spacing:13.760000pt;}
.wscf{word-spacing:13.866667pt;}
.ws1e2{word-spacing:14.080000pt;}
.ws130{word-spacing:14.133333pt;}
.ws140{word-spacing:14.186667pt;}
.wsff{word-spacing:14.240000pt;}
.ws1c7{word-spacing:14.464000pt;}
.ws11a{word-spacing:14.506667pt;}
.ws8f{word-spacing:14.720000pt;}
.ws196{word-spacing:15.093333pt;}
.ws12f{word-spacing:15.146667pt;}
.ws12c{word-spacing:15.413333pt;}
.ws1d6{word-spacing:15.701333pt;}
.ws13d{word-spacing:15.733333pt;}
.ws19d{word-spacing:16.000000pt;}
.ws1f6{word-spacing:16.384000pt;}
.ws8e{word-spacing:16.746667pt;}
.wscc{word-spacing:16.800000pt;}
.ws1b0{word-spacing:16.896000pt;}
.wsab{word-spacing:17.013333pt;}
.ws1c8{word-spacing:17.109333pt;}
.ws1a{word-spacing:17.482667pt;}
.ws14d{word-spacing:17.493333pt;}
.ws14b{word-spacing:17.813333pt;}
.ws12a{word-spacing:18.293333pt;}
.wsdd{word-spacing:18.455899pt;}
.wsde{word-spacing:19.398912pt;}
.ws1c6{word-spacing:20.821333pt;}
.ws1ac{word-spacing:23.168000pt;}
.ws1fa{word-spacing:24.704000pt;}
.ws66{word-spacing:27.893333pt;}
.ws19{word-spacing:64.938667pt;}
.ws187{word-spacing:77.130202pt;}
.ws186{word-spacing:77.884531pt;}
.ws12d{word-spacing:105.973333pt;}
.ws17b{word-spacing:106.046170pt;}
.wse9{word-spacing:597.453631pt;}
.wse8{word-spacing:618.017554pt;}
._14{margin-left:-38.986667pt;}
._35{margin-left:-26.240000pt;}
._32{margin-left:-24.228267pt;}
._2f{margin-left:-23.136000pt;}
._34{margin-left:-21.696051pt;}
._39{margin-left:-20.706675pt;}
._1c{margin-left:-19.466667pt;}
._30{margin-left:-18.124806pt;}
._18{margin-left:-17.064527pt;}
._33{margin-left:-16.034143pt;}
._13{margin-left:-14.830373pt;}
._6{margin-left:-13.866667pt;}
._4{margin-left:-12.757352pt;}
._15{margin-left:-11.093333pt;}
._17{margin-left:-9.868806pt;}
._1a{margin-left:-8.802177pt;}
._1d{margin-left:-7.582933pt;}
._1b{margin-left:-6.666667pt;}
._20{margin-left:-5.333333pt;}
._5{margin-left:-4.178133pt;}
._3b{margin-left:-3.287467pt;}
._3{margin-left:-2.391467pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.186133pt;}
._e{width:2.090667pt;}
._a{width:3.371733pt;}
._d{width:4.695467pt;}
._f{width:5.690667pt;}
._b{width:6.941867pt;}
._c{width:8.476800pt;}
._12{width:9.696000pt;}
._36{width:11.146666pt;}
._11{width:12.356800pt;}
._16{width:14.165751pt;}
._2e{width:16.586667pt;}
._19{width:17.482667pt;}
._7{width:19.840000pt;}
._38{width:20.864000pt;}
._31{width:23.520000pt;}
._10{width:27.045333pt;}
._37{width:29.333333pt;}
._25{width:34.007467pt;}
._2{width:35.843722pt;}
._22{width:45.868800pt;}
._8{width:50.005325pt;}
._3a{width:52.437333pt;}
._1f{width:93.286400pt;}
._1e{width:126.720000pt;}
._24{width:130.943980pt;}
._2d{width:183.040000pt;}
._2c{width:198.912000pt;}
._21{width:210.133333pt;}
._2b{width:217.898647pt;}
._23{width:237.525333pt;}
._2a{width:281.813314pt;}
._26{width:293.077333pt;}
._27{width:844.287980pt;}
._28{width:961.117847pt;}
._29{width:1088.682647pt;}
._9{width:1567.658655pt;}
.fsd{font-size:24.451733pt;}
.fse{font-size:25.022400pt;}
.fs13{font-size:25.050133pt;}
.fs10{font-size:26.673067pt;}
.fs12{font-size:27.024533pt;}
.fs11{font-size:27.025599pt;}
.fsf{font-size:28.091199pt;}
.fsc{font-size:28.372800pt;}
.fs7{font-size:29.866667pt;}
.fs15{font-size:31.430400pt;}
.fs14{font-size:34.502932pt;}
.fs16{font-size:34.537600pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:37.342400pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:53.346664pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:67.357333pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:0.001099pt;}
.y260{bottom:0.014404pt;}
.y26c{bottom:0.023600pt;}
.ya8{bottom:0.036947pt;}
.yb4{bottom:0.037354pt;}
.ye5{bottom:1.053467pt;}
.y21e{bottom:1.192932pt;}
.y21d{bottom:2.428935pt;}
.ye7{bottom:2.792969pt;}
.yac{bottom:2.972941pt;}
.ydc{bottom:3.372803pt;}
.yb9{bottom:3.372890pt;}
.ya4{bottom:3.372965pt;}
.yb1{bottom:3.373053pt;}
.yba{bottom:3.373169pt;}
.y24f{bottom:3.374268pt;}
.yb8{bottom:3.492920pt;}
.yb0{bottom:3.493083pt;}
.yc2{bottom:5.614258pt;}
.yb3{bottom:6.373210pt;}
.y25c{bottom:6.414408pt;}
.ye3{bottom:7.466675pt;}
.y264{bottom:8.774272pt;}
.y268{bottom:8.783610pt;}
.ybd{bottom:8.986247pt;}
.y258{bottom:9.515992pt;}
.y253{bottom:9.519736pt;}
.y219{bottom:9.907603pt;}
.y25e{bottom:13.590535pt;}
.y26a{bottom:15.827881pt;}
.y21b{bottom:16.603465pt;}
.ye9{bottom:18.116943pt;}
.yc0{bottom:23.781982pt;}
.y6{bottom:31.933340pt;}
.y255{bottom:31.971335pt;}
.y24{bottom:45.118398pt;}
.y5{bottom:59.133337pt;}
.y22a{bottom:79.893738pt;}
.y149{bottom:80.000000pt;}
.y14e{bottom:80.010670pt;}
.y14f{bottom:80.021344pt;}
.y148{bottom:80.032000pt;}
.y151{bottom:80.032019pt;}
.y155{bottom:80.042694pt;}
.y2b9{bottom:80.116935pt;}
.y274{bottom:80.322403pt;}
.y222{bottom:80.708903pt;}
.ya0{bottom:80.708923pt;}
.y174{bottom:80.708944pt;}
.y321{bottom:81.012903pt;}
.yfd{bottom:81.066650pt;}
.y120{bottom:81.066671pt;}
.y185{bottom:81.197062pt;}
.y1a5{bottom:81.691610pt;}
.y47{bottom:84.266667pt;}
.y24c{bottom:84.833049pt;}
.yda{bottom:86.044937pt;}
.y4{bottom:86.333337pt;}
.y221{bottom:91.468933pt;}
.y10f{bottom:92.042236pt;}
.y12d{bottom:92.166260pt;}
.y147{bottom:92.693333pt;}
.y2a9{bottom:92.708903pt;}
.y2b8{bottom:92.778268pt;}
.y1be{bottom:93.499593pt;}
.y320{bottom:93.674236pt;}
.y1db{bottom:95.499736pt;}
.y75{bottom:95.708903pt;}
.y282{bottom:95.890259pt;}
.y229{bottom:95.893738pt;}
.y273{bottom:96.322403pt;}
.y140{bottom:96.708903pt;}
.y9f{bottom:96.708923pt;}
.y173{bottom:96.708944pt;}
.y1fe{bottom:97.055571pt;}
.yfc{bottom:97.066650pt;}
.y11f{bottom:97.066671pt;}
.y184{bottom:97.197062pt;}
.y1a4{bottom:97.691610pt;}
.y46{bottom:99.380669pt;}
.y24b{bottom:100.833049pt;}
.yd9{bottom:102.044937pt;}
.y2ed{bottom:104.010261pt;}
.y146{bottom:105.354667pt;}
.y2b7{bottom:105.439601pt;}
.y31f{bottom:106.335570pt;}
.y220{bottom:107.468933pt;}
.y10e{bottom:108.042236pt;}
.y12c{bottom:108.166260pt;}
.y2a8{bottom:108.708903pt;}
.y1bd{bottom:109.499593pt;}
.y1da{bottom:111.499736pt;}
.y74{bottom:111.708903pt;}
.y281{bottom:111.890259pt;}
.y228{bottom:111.893738pt;}
.y272{bottom:112.322403pt;}
.y13f{bottom:112.708903pt;}
.y9e{bottom:112.708923pt;}
.y172{bottom:112.708944pt;}
.y1fd{bottom:113.055571pt;}
.yfb{bottom:113.066650pt;}
.y11e{bottom:113.066671pt;}
.y183{bottom:113.197062pt;}
.y1a3{bottom:113.691610pt;}
.y45{bottom:116.308665pt;}
.y2ec{bottom:116.671594pt;}
.y24a{bottom:116.833049pt;}
.y145{bottom:118.016000pt;}
.yd8{bottom:118.044937pt;}
.y218{bottom:118.796000pt;}
.y31e{bottom:118.996903pt;}
.y21c{bottom:122.317067pt;}
.y23{bottom:123.790666pt;}
.y10d{bottom:124.042236pt;}
.y12b{bottom:124.166260pt;}
.y2a7{bottom:124.708903pt;}
.y1d9{bottom:127.499593pt;}
.y73{bottom:127.708903pt;}
.y280{bottom:127.890259pt;}
.y227{bottom:127.893738pt;}
.y271{bottom:128.322403pt;}
.y21a{bottom:128.703603pt;}
.y13e{bottom:128.708903pt;}
.y9d{bottom:128.708923pt;}
.y21f{bottom:128.708933pt;}
.y171{bottom:128.708944pt;}
.y1fc{bottom:129.055571pt;}
.yfa{bottom:129.066650pt;}
.y11d{bottom:129.066671pt;}
.y182{bottom:129.197062pt;}
.y2eb{bottom:129.332927pt;}
.y1a2{bottom:129.691610pt;}
.y144{bottom:130.677333pt;}
.y31d{bottom:131.658236pt;}
.y249{bottom:132.833049pt;}
.yd7{bottom:134.044937pt;}
.y2b6{bottom:137.428935pt;}
.y44{bottom:137.514000pt;}
.y10c{bottom:140.042236pt;}
.y12a{bottom:140.166260pt;}
.y2a6{bottom:140.708903pt;}
.y1bc{bottom:141.499593pt;}
.y2ea{bottom:141.994261pt;}
.y143{bottom:143.338667pt;}
.y1d8{bottom:143.499593pt;}
.y72{bottom:143.708903pt;}
.y27f{bottom:143.890259pt;}
.y226{bottom:143.893738pt;}
.y31c{bottom:144.319570pt;}
.y270{bottom:144.322403pt;}
.y13d{bottom:144.708903pt;}
.y9c{bottom:144.708923pt;}
.y170{bottom:144.708944pt;}
.y1fb{bottom:145.055571pt;}
.yf9{bottom:145.066650pt;}
.y11c{bottom:145.066671pt;}
.y181{bottom:145.197062pt;}
.y1a1{bottom:145.691610pt;}
.y248{bottom:148.833049pt;}
.yd6{bottom:150.044937pt;}
.y43{bottom:150.175333pt;}
.y2e9{bottom:154.655594pt;}
.y10b{bottom:156.042236pt;}
.y129{bottom:156.166260pt;}
.y2a5{bottom:156.708903pt;}
.y31b{bottom:156.980903pt;}
.y1d7{bottom:159.499593pt;}
.y71{bottom:159.708903pt;}
.y27e{bottom:159.890259pt;}
.y225{bottom:159.893738pt;}
.y142{bottom:160.266663pt;}
.y26f{bottom:160.322403pt;}
.y13c{bottom:160.708903pt;}
.y9b{bottom:160.708923pt;}
.y16f{bottom:160.708944pt;}
.y1fa{bottom:161.055571pt;}
.yf8{bottom:161.066650pt;}
.y11b{bottom:161.066671pt;}
.y180{bottom:161.197062pt;}
.y1a0{bottom:161.691610pt;}
.y2b5{bottom:162.762268pt;}
.y247{bottom:164.833049pt;}
.yd5{bottom:166.044937pt;}
.y2e8{bottom:167.316927pt;}
.y31a{bottom:169.642236pt;}
.y10a{bottom:172.042236pt;}
.y128{bottom:172.166260pt;}
.y2a4{bottom:172.708903pt;}
.y1a{bottom:175.052000pt;}
.y1d6{bottom:175.499593pt;}
.y70{bottom:175.708903pt;}
.y28c{bottom:175.781331pt;}
.y27d{bottom:175.890259pt;}
.y224{bottom:175.893738pt;}
.y26e{bottom:176.322403pt;}
.y13b{bottom:176.708903pt;}
.y9a{bottom:176.708923pt;}
.y16e{bottom:176.708944pt;}
.y1f9{bottom:177.055571pt;}
.yf7{bottom:177.066650pt;}
.y11a{bottom:177.066671pt;}
.y17f{bottom:177.197062pt;}
.y1bb{bottom:177.499593pt;}
.y19f{bottom:177.691610pt;}
.y2e7{bottom:179.978261pt;}
.y246{bottom:180.833049pt;}
.yd4{bottom:182.044937pt;}
.y319{bottom:182.303570pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y109{bottom:188.042236pt;}
.y127{bottom:188.166260pt;}
.y2a3{bottom:188.708903pt;}
.y2b4{bottom:191.460944pt;}
.y1d5{bottom:191.499593pt;}
.y6f{bottom:191.708903pt;}
.y27c{bottom:191.890259pt;}
.y223{bottom:191.893738pt;}
.y26d{bottom:192.322403pt;}
.y2e6{bottom:192.639594pt;}
.y13a{bottom:192.708903pt;}
.y99{bottom:192.708923pt;}
.y16d{bottom:192.708944pt;}
.y1f8{bottom:193.055571pt;}
.yf6{bottom:193.066650pt;}
.y119{bottom:193.066671pt;}
.y17e{bottom:193.197062pt;}
.y1ba{bottom:193.499593pt;}
.y19e{bottom:193.691610pt;}
.y318{bottom:194.964903pt;}
.y245{bottom:196.833049pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.yd3{bottom:198.044937pt;}
.y263{bottom:203.657328pt;}
.y108{bottom:204.042236pt;}
.y2b3{bottom:204.122277pt;}
.y126{bottom:204.166260pt;}
.y2a2{bottom:204.708903pt;}
.y2e5{bottom:205.300927pt;}
.y267{bottom:206.045064pt;}
.y1d4{bottom:207.499593pt;}
.y317{bottom:207.626236pt;}
.y6e{bottom:207.708903pt;}
.y27b{bottom:207.890259pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y139{bottom:208.708903pt;}
.y98{bottom:208.708923pt;}
.y16c{bottom:208.708944pt;}
.y1f7{bottom:209.055571pt;}
.yf5{bottom:209.066650pt;}
.y118{bottom:209.066671pt;}
.y17d{bottom:209.203338pt;}
.y1b9{bottom:209.499593pt;}
.y19d{bottom:209.691610pt;}
.y265{bottom:212.431600pt;}
.y269{bottom:212.440938pt;}
.y262{bottom:212.442403pt;}
.y244{bottom:212.833049pt;}
.yd2{bottom:214.044937pt;}
.y42{bottom:215.615194pt;}
.y2b2{bottom:216.783610pt;}
.y2e4{bottom:217.962261pt;}
.y266{bottom:218.839457pt;}
.y107{bottom:220.042236pt;}
.y125{bottom:220.166260pt;}
.y316{bottom:220.287570pt;}
.y14d{bottom:220.330661pt;}
.y26b{bottom:220.576803pt;}
.y1d3{bottom:223.499593pt;}
.y6d{bottom:223.708903pt;}
.y27a{bottom:223.890259pt;}
.y141{bottom:224.708903pt;}
.y97{bottom:224.708923pt;}
.y16b{bottom:224.708944pt;}
.y1f6{bottom:225.055571pt;}
.yf4{bottom:225.066650pt;}
.y117{bottom:225.066671pt;}
.y17c{bottom:225.203338pt;}
.y1b8{bottom:225.499593pt;}
.y19c{bottom:225.691610pt;}
.y243{bottom:228.833049pt;}
.y2b1{bottom:229.444944pt;}
.y25b{bottom:230.033325pt;}
.yd1{bottom:230.044937pt;}
.y231{bottom:230.114272pt;}
.y2e3{bottom:230.623594pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y315{bottom:232.948903pt;}
.y106{bottom:236.042236pt;}
.y124{bottom:236.166260pt;}
.y25a{bottom:236.437065pt;}
.y261{bottom:236.442403pt;}
.y25d{bottom:236.447733pt;}
.y2a1{bottom:236.708903pt;}
.y1d2{bottom:239.499593pt;}
.y6c{bottom:239.708903pt;}
.y1c0{bottom:239.793294pt;}
.y279{bottom:239.890259pt;}
.y138{bottom:240.708903pt;}
.y96{bottom:240.708923pt;}
.y16a{bottom:240.708944pt;}
.y1f5{bottom:241.055571pt;}
.yf3{bottom:241.066650pt;}
.y116{bottom:241.066671pt;}
.y17b{bottom:241.203338pt;}
.y1b7{bottom:241.499593pt;}
.y19b{bottom:241.691610pt;}
.y2b0{bottom:242.106277pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y230{bottom:242.775606pt;}
.y2e2{bottom:243.284927pt;}
.y25f{bottom:244.631733pt;}
.y242{bottom:244.833049pt;}
.y314{bottom:245.610236pt;}
.yd0{bottom:246.044937pt;}
.y41{bottom:248.281860pt;}
.y105{bottom:252.042236pt;}
.y123{bottom:252.166260pt;}
.y252{bottom:253.109333pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y2af{bottom:254.767610pt;}
.y22f{bottom:255.436939pt;}
.y1d1{bottom:255.499593pt;}
.y6b{bottom:255.708903pt;}
.y278{bottom:255.890259pt;}
.y2e1{bottom:255.946261pt;}
.y257{bottom:256.229065pt;}
.y137{bottom:256.708903pt;}
.y95{bottom:256.708923pt;}
.y169{bottom:256.708944pt;}
.y1f4{bottom:257.055571pt;}
.yf2{bottom:257.066650pt;}
.y115{bottom:257.066671pt;}
.y17a{bottom:257.203338pt;}
.y1b6{bottom:257.499593pt;}
.y19a{bottom:257.691610pt;}
.y323{bottom:258.260903pt;}
.y313{bottom:258.271570pt;}
.y241{bottom:260.833049pt;}
.ycf{bottom:262.044937pt;}
.y254{bottom:262.629069pt;}
.y259{bottom:262.637065pt;}
.y251{bottom:262.642277pt;}
.y40{bottom:264.281860pt;}
.y2ae{bottom:267.428944pt;}
.y104{bottom:268.042236pt;}
.y22e{bottom:268.098272pt;}
.y122{bottom:268.166260pt;}
.y2e0{bottom:268.607594pt;}
.y256{bottom:270.762390pt;}
.y322{bottom:270.922236pt;}
.y312{bottom:270.932903pt;}
.y1d0{bottom:271.499593pt;}
.y6a{bottom:271.708903pt;}
.y277{bottom:271.890259pt;}
.y136{bottom:272.708903pt;}
.y94{bottom:272.708923pt;}
.y168{bottom:272.708944pt;}
.y1f3{bottom:273.055571pt;}
.yf1{bottom:273.066650pt;}
.y114{bottom:273.066671pt;}
.y179{bottom:273.203338pt;}
.y1b5{bottom:273.499593pt;}
.y199{bottom:273.691610pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y240{bottom:276.833049pt;}
.yce{bottom:278.044937pt;}
.y22d{bottom:280.759606pt;}
.y2df{bottom:281.268927pt;}
.y311{bottom:283.594236pt;}
.y103{bottom:284.042236pt;}
.y121{bottom:284.166260pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1cf{bottom:287.499593pt;}
.y69{bottom:287.708903pt;}
.y276{bottom:287.890259pt;}
.y135{bottom:288.708903pt;}
.y93{bottom:288.708923pt;}
.y167{bottom:288.708944pt;}
.y1f2{bottom:289.055571pt;}
.yf0{bottom:289.066650pt;}
.y113{bottom:289.066671pt;}
.y1b4{bottom:289.499593pt;}
.y198{bottom:289.691610pt;}
.y2ad{bottom:292.740944pt;}
.y23f{bottom:292.833049pt;}
.y22c{bottom:293.420939pt;}
.y2de{bottom:293.930261pt;}
.ycd{bottom:294.044937pt;}
.y310{bottom:296.255570pt;}
.y3f{bottom:296.948527pt;}
.y102{bottom:300.042236pt;}
.y1ce{bottom:303.499593pt;}
.y68{bottom:303.708903pt;}
.y275{bottom:303.890259pt;}
.y134{bottom:304.708903pt;}
.y92{bottom:304.708923pt;}
.y166{bottom:304.708944pt;}
.yef{bottom:305.066650pt;}
.y112{bottom:305.066671pt;}
.y178{bottom:305.203338pt;}
.y2ac{bottom:305.402277pt;}
.y1b3{bottom:305.499593pt;}
.y197{bottom:305.691610pt;}
.y2dd{bottom:306.591594pt;}
.y23e{bottom:308.833049pt;}
.y30f{bottom:308.916903pt;}
.y11{bottom:309.452000pt;}
.ycc{bottom:310.044937pt;}
.y3e{bottom:312.948527pt;}
.y101{bottom:316.042236pt;}
.y2dc{bottom:319.252927pt;}
.y1cd{bottom:319.499593pt;}
.y67{bottom:319.708903pt;}
.y133{bottom:320.708903pt;}
.y165{bottom:320.708944pt;}
.y12e{bottom:321.030273pt;}
.y1f1{bottom:321.055571pt;}
.yee{bottom:321.066650pt;}
.y1b2{bottom:321.499593pt;}
.y30e{bottom:321.578236pt;}
.y196{bottom:321.691610pt;}
.y23d{bottom:324.833049pt;}
.ycb{bottom:326.044937pt;}
.y3d{bottom:328.948527pt;}
.y2ab{bottom:330.714277pt;}
.y2db{bottom:331.914261pt;}
.y100{bottom:332.042236pt;}
.y30d{bottom:334.239570pt;}
.y1cc{bottom:335.499593pt;}
.y66{bottom:335.708903pt;}
.y132{bottom:336.708903pt;}
.y91{bottom:336.708923pt;}
.y164{bottom:336.708944pt;}
.yed{bottom:337.066650pt;}
.y111{bottom:337.066671pt;}
.y1b1{bottom:337.499593pt;}
.y195{bottom:337.691610pt;}
.y23c{bottom:340.833049pt;}
.yca{bottom:342.044937pt;}
.y2aa{bottom:343.375610pt;}
.y10{bottom:343.809333pt;}
.y2da{bottom:344.575594pt;}
.y3c{bottom:344.948527pt;}
.y30c{bottom:346.900903pt;}
.y2a0{bottom:347.025475pt;}
.yff{bottom:348.042236pt;}
.y1cb{bottom:351.499593pt;}
.y65{bottom:351.708903pt;}
.y177{bottom:352.296672pt;}
.y150{bottom:352.565344pt;}
.y154{bottom:352.576019pt;}
.y131{bottom:352.708903pt;}
.y163{bottom:352.708944pt;}
.yec{bottom:353.066650pt;}
.y1b0{bottom:353.499593pt;}
.y194{bottom:353.691610pt;}
.y23b{bottom:356.833049pt;}
.y2d9{bottom:357.236927pt;}
.yc9{bottom:358.044937pt;}
.y1f0{bottom:358.882236pt;}
.y30b{bottom:359.562236pt;}
.y29f{bottom:359.686808pt;}
.y14b{bottom:360.543997pt;}
.y14a{bottom:360.544000pt;}
.y152{bottom:360.576019pt;}
.y156{bottom:360.586694pt;}
.y3b{bottom:360.948527pt;}
.yf{bottom:362.706666pt;}
.y1ca{bottom:367.499593pt;}
.y64{bottom:367.708903pt;}
.y176{bottom:368.296672pt;}
.y130{bottom:368.708903pt;}
.y90{bottom:368.708944pt;}
.yeb{bottom:369.064014pt;}
.y207{bottom:369.066650pt;}
.y1af{bottom:369.499593pt;}
.y193{bottom:369.691610pt;}
.y2d8{bottom:369.898261pt;}
.y30a{bottom:372.223570pt;}
.y23a{bottom:372.833049pt;}
.yc8{bottom:374.044937pt;}
.y1ef{bottom:374.882236pt;}
.y3a{bottom:376.948527pt;}
.yfe{bottom:380.042236pt;}
.ye2{bottom:380.399984pt;}
.y2d7{bottom:382.559594pt;}
.y28b{bottom:383.324015pt;}
.y63{bottom:383.708903pt;}
.y175{bottom:384.296672pt;}
.y12f{bottom:384.708903pt;}
.y162{bottom:384.708944pt;}
.y309{bottom:384.884903pt;}
.y206{bottom:385.066650pt;}
.y1ae{bottom:385.499593pt;}
.y192{bottom:385.691610pt;}
.ye8{bottom:387.861206pt;}
.yea{bottom:387.864014pt;}
.ye1{bottom:387.868903pt;}
.y239{bottom:388.833049pt;}
.y1ee{bottom:390.882236pt;}
.y39{bottom:392.948527pt;}
.ye4{bottom:394.253459pt;}
.ye6{bottom:394.533081pt;}
.y2d6{bottom:395.220927pt;}
.y308{bottom:397.546236pt;}
.y62{bottom:399.708903pt;}
.y110{bottom:400.708903pt;}
.y161{bottom:400.708944pt;}
.y205{bottom:401.066650pt;}
.y1ad{bottom:401.499593pt;}
.y191{bottom:401.691610pt;}
.y238{bottom:404.833049pt;}
.yc7{bottom:406.044937pt;}
.y1ed{bottom:406.882236pt;}
.ye0{bottom:407.868903pt;}
.y2d5{bottom:407.882261pt;}
.y1df{bottom:408.326262pt;}
.y38{bottom:408.948527pt;}
.y307{bottom:410.207570pt;}
.y29d{bottom:415.430390pt;}
.y61{bottom:415.708903pt;}
.y294{bottom:415.779466pt;}
.y8f{bottom:416.708903pt;}
.y160{bottom:416.708944pt;}
.y204{bottom:417.066650pt;}
.y1ac{bottom:417.499593pt;}
.y190{bottom:417.691610pt;}
.y2d4{bottom:420.543594pt;}
.y237{bottom:420.833049pt;}
.y1de{bottom:420.987595pt;}
.y306{bottom:422.868903pt;}
.y1ec{bottom:422.882236pt;}
.ydf{bottom:423.868903pt;}
.y37{bottom:424.948527pt;}
.y29a{bottom:427.305216pt;}
.y290{bottom:427.718018pt;}
.y18d{bottom:427.904919pt;}
.ye{bottom:430.990669pt;}
.y60{bottom:431.708903pt;}
.y8e{bottom:432.708903pt;}
.y15f{bottom:432.708944pt;}
.y203{bottom:433.066650pt;}
.y2d3{bottom:433.204927pt;}
.y1dd{bottom:433.648929pt;}
.y18f{bottom:433.691610pt;}
.y305{bottom:435.530236pt;}
.y236{bottom:436.833049pt;}
.y1eb{bottom:438.882236pt;}
.yde{bottom:439.868903pt;}
.y18c{bottom:440.566252pt;}
.y36{bottom:440.948527pt;}
.yc6{bottom:442.044937pt;}
.y2d2{bottom:445.866261pt;}
.y1dc{bottom:446.310262pt;}
.yd{bottom:446.990669pt;}
.y5f{bottom:447.708903pt;}
.y297{bottom:447.923747pt;}
.y304{bottom:448.191570pt;}
.y28d{bottom:448.277181pt;}
.y291{bottom:448.514119pt;}
.y8d{bottom:448.708903pt;}
.y15e{bottom:448.708944pt;}
.y202{bottom:449.066650pt;}
.y18e{bottom:449.691610pt;}
.y295{bottom:452.826660pt;}
.y235{bottom:452.833049pt;}
.y18b{bottom:453.227586pt;}
.y1ea{bottom:454.882236pt;}
.y35{bottom:456.948527pt;}
.y1c9{bottom:456.989886pt;}
.yc5{bottom:458.044937pt;}
.y2d1{bottom:458.527594pt;}
.y303{bottom:460.852903pt;}
.yc{bottom:462.990669pt;}
.y5e{bottom:463.708903pt;}
.y8c{bottom:464.708903pt;}
.y15d{bottom:464.708944pt;}
.y201{bottom:465.066650pt;}
.y18a{bottom:465.888919pt;}
.y234{bottom:468.833049pt;}
.y1c8{bottom:469.651219pt;}
.y1e9{bottom:470.882236pt;}
.y2d0{bottom:471.188927pt;}
.ydd{bottom:471.868903pt;}
.y28e{bottom:472.144584pt;}
.y298{bottom:472.144805pt;}
.y292{bottom:472.321143pt;}
.y29b{bottom:472.325725pt;}
.y34{bottom:472.948527pt;}
.y302{bottom:473.514236pt;}
.yc4{bottom:474.044937pt;}
.y189{bottom:478.566252pt;}
.yb{bottom:478.990666pt;}
.y5d{bottom:479.708903pt;}
.y8b{bottom:480.708903pt;}
.y15c{bottom:480.708944pt;}
.y200{bottom:481.066650pt;}
.y1c7{bottom:482.312552pt;}
.y2cf{bottom:483.850261pt;}
.y233{bottom:484.833049pt;}
.y301{bottom:486.175570pt;}
.y1e8{bottom:486.882236pt;}
.y33{bottom:488.948527pt;}
.yc3{bottom:490.044937pt;}
.y188{bottom:491.227586pt;}
.y1ab{bottom:494.843602pt;}
.y1c6{bottom:494.973886pt;}
.ya{bottom:494.990666pt;}
.y5c{bottom:495.708903pt;}
.y28f{bottom:495.779093pt;}
.y293{bottom:496.128166pt;}
.y299{bottom:496.305483pt;}
.y29c{bottom:496.486403pt;}
.y2ce{bottom:496.511594pt;}
.y8a{bottom:496.708903pt;}
.y15b{bottom:496.708944pt;}
.y1ff{bottom:497.066650pt;}
.y300{bottom:498.836903pt;}
.y232{bottom:500.833049pt;}
.ybc{bottom:501.376017pt;}
.y1e7{bottom:502.882236pt;}
.y187{bottom:503.888919pt;}
.y32{bottom:504.948527pt;}
.yb7{bottom:506.968018pt;}
.y1aa{bottom:507.504935pt;}
.y1c5{bottom:507.635219pt;}
.y2cd{bottom:509.172927pt;}
.yb6{bottom:510.348944pt;}
.ybb{bottom:510.351603pt;}
.ybf{bottom:510.361514pt;}
.yc1{bottom:510.362142pt;}
.y2ff{bottom:511.498236pt;}
.y5b{bottom:511.708903pt;}
.y89{bottom:512.708903pt;}
.y15a{bottom:512.708944pt;}
.ybe{bottom:513.362264pt;}
.y29e{bottom:514.682129pt;}
.y296{bottom:515.390544pt;}
.y186{bottom:516.550252pt;}
.y1e6{bottom:518.882236pt;}
.y1a9{bottom:520.166269pt;}
.y1c4{bottom:520.296552pt;}
.y31{bottom:520.948527pt;}
.y2cc{bottom:521.834261pt;}
.y2fe{bottom:524.159570pt;}
.yaf{bottom:525.325317pt;}
.y5a{bottom:527.708903pt;}
.yb2{bottom:528.698527pt;}
.y88{bottom:528.708903pt;}
.yb5{bottom:528.708944pt;}
.y1a8{bottom:532.827602pt;}
.y1c3{bottom:532.957886pt;}
.y2cb{bottom:534.495594pt;}
.y1e5{bottom:534.882236pt;}
.y2fd{bottom:536.820903pt;}
.y30{bottom:536.948527pt;}
.y24d{bottom:540.710286pt;}
.y250{bottom:541.325317pt;}
.yab{bottom:541.733317pt;}
.y59{bottom:543.708903pt;}
.yad{bottom:544.706258pt;}
.y87{bottom:544.708903pt;}
.yae{bottom:544.708944pt;}
.y1a7{bottom:545.488935pt;}
.y2ca{bottom:547.156927pt;}
.y2fc{bottom:549.482236pt;}
.y1e4{bottom:550.882236pt;}
.y217{bottom:551.612392pt;}
.y2f{bottom:552.948527pt;}
.y1bf{bottom:556.076009pt;}
.y24e{bottom:557.324015pt;}
.y1a6{bottom:558.150269pt;}
.y58{bottom:559.708903pt;}
.y2c9{bottom:559.818261pt;}
.y86{bottom:560.708903pt;}
.yaa{bottom:560.708944pt;}
.y2fb{bottom:562.143570pt;}
.y216{bottom:564.273725pt;}
.y22b{bottom:565.350260pt;}
.y1e3{bottom:566.882236pt;}
.y2e{bottom:568.948527pt;}
.y2c8{bottom:572.479594pt;}
.ya7{bottom:573.325317pt;}
.y9{bottom:573.786667pt;}
.y2fa{bottom:574.804903pt;}
.y57{bottom:575.708903pt;}
.y85{bottom:576.708903pt;}
.ya9{bottom:576.708944pt;}
.y215{bottom:576.935059pt;}
.y1e2{bottom:582.882236pt;}
.y2d{bottom:584.948527pt;}
.y2c7{bottom:585.140927pt;}
.y2f9{bottom:587.466236pt;}
.ya3{bottom:589.325317pt;}
.y56{bottom:591.708903pt;}
.y28a{bottom:592.105754pt;}
.y8{bottom:592.685334pt;}
.y84{bottom:592.708903pt;}
.ya6{bottom:592.708944pt;}
.y2c6{bottom:597.802261pt;}
.y1e1{bottom:598.882236pt;}
.y2f8{bottom:600.127570pt;}
.y55{bottom:607.708903pt;}
.y83{bottom:608.708903pt;}
.y159{bottom:608.708944pt;}
.y2c5{bottom:610.463594pt;}
.y2f7{bottom:612.788903pt;}
.y2c4{bottom:623.124927pt;}
.y54{bottom:623.708903pt;}
.y82{bottom:624.708903pt;}
.y2f6{bottom:625.450236pt;}
.y2c{bottom:628.053063pt;}
.y1e0{bottom:630.882236pt;}
.y2c3{bottom:635.786261pt;}
.y2f5{bottom:638.111570pt;}
.y53{bottom:639.708903pt;}
.y81{bottom:640.708903pt;}
.y158{bottom:640.708944pt;}
.y2b{bottom:640.714396pt;}
.y7{bottom:645.598667pt;}
.y2c2{bottom:648.447594pt;}
.y2f4{bottom:650.772903pt;}
.y52{bottom:655.708903pt;}
.y80{bottom:656.708903pt;}
.y2c1{bottom:661.108927pt;}
.y2f3{bottom:663.434236pt;}
.y3{bottom:668.977329pt;}
.y51{bottom:671.708903pt;}
.y7f{bottom:672.708903pt;}
.y2a{bottom:674.357463pt;}
.y2f2{bottom:676.095570pt;}
.y50{bottom:687.708903pt;}
.y7e{bottom:688.708903pt;}
.y2f1{bottom:688.756903pt;}
.y2c0{bottom:690.042236pt;}
.y2f0{bottom:701.418236pt;}
.y4f{bottom:703.708903pt;}
.y7d{bottom:704.708903pt;}
.y214{bottom:710.006022pt;}
.y213{bottom:711.127035pt;}
.y29{bottom:712.348915pt;}
.y2ef{bottom:714.079570pt;}
.y4e{bottom:719.708903pt;}
.y212{bottom:720.037842pt;}
.y211{bottom:720.215088pt;}
.y7c{bottom:720.708903pt;}
.y289{bottom:723.930420pt;}
.y2ee{bottom:726.740903pt;}
.y210{bottom:729.834635pt;}
.y20f{bottom:729.834798pt;}
.y288{bottom:732.105632pt;}
.y28{bottom:732.351581pt;}
.y4d{bottom:735.708903pt;}
.y7b{bottom:736.708903pt;}
.y14c{bottom:738.997328pt;}
.y153{bottom:739.029348pt;}
.y157{bottom:739.040022pt;}
.y2bf{bottom:739.402236pt;}
.y20e{bottom:739.454020pt;}
.y20d{bottom:739.689616pt;}
.y287{bottom:740.281331pt;}
.y286{bottom:748.456380pt;}
.y20c{bottom:749.131104pt;}
.y20b{bottom:749.308838pt;}
.y4c{bottom:751.708903pt;}
.y2be{bottom:752.063570pt;}
.y27{bottom:752.354248pt;}
.y7a{bottom:752.708903pt;}
.y285{bottom:756.631755pt;}
.y20a{bottom:758.927897pt;}
.y284{bottom:764.637451pt;}
.y2bd{bottom:764.724903pt;}
.y4b{bottom:767.708903pt;}
.y209{bottom:768.370036pt;}
.y79{bottom:768.708903pt;}
.y283{bottom:772.812500pt;}
.y2bc{bottom:777.386236pt;}
.ydb{bottom:781.325358pt;}
.y2{bottom:781.661334pt;}
.y78{bottom:784.708903pt;}
.y1c1{bottom:785.489095pt;}
.y1c2{bottom:786.008626pt;}
.y2bb{bottom:790.047570pt;}
.y4a{bottom:799.708903pt;}
.y77{bottom:800.708903pt;}
.y2ba{bottom:802.708903pt;}
.y208{bottom:804.069173pt;}
.y26{bottom:822.992964pt;}
.y76{bottom:835.262533pt;}
.ya2{bottom:835.654126pt;}
.y49{bottom:835.654289pt;}
.y25{bottom:835.654297pt;}
.ya1{bottom:836.112793pt;}
.y48{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h23{height:3.520880pt;}
.h3a{height:9.333333pt;}
.h18{height:12.133333pt;}
.h14{height:12.400000pt;}
.h1f{height:13.466667pt;}
.h3b{height:13.734666pt;}
.h29{height:15.042457pt;}
.h1b{height:16.398666pt;}
.h32{height:17.825314pt;}
.h35{height:18.216307pt;}
.h45{height:18.217705pt;}
.h49{height:18.236497pt;}
.h47{height:19.430639pt;}
.h46{height:19.431406pt;}
.h31{height:20.314925pt;}
.h37{height:20.450393pt;}
.h36{height:20.478484pt;}
.h4b{height:22.629888pt;}
.h3f{height:22.800000pt;}
.h38{height:23.068000pt;}
.h1a{height:23.899306pt;}
.h21{height:24.666667pt;}
.h25{height:24.800000pt;}
.h4a{height:24.842111pt;}
.h43{height:24.933333pt;}
.h4c{height:25.118135pt;}
.h4d{height:25.143373pt;}
.h1d{height:25.243462pt;}
.h24{height:25.504859pt;}
.h11{height:27.596800pt;}
.h7{height:28.560000pt;}
.h42{height:28.641621pt;}
.ha{height:30.080000pt;}
.h3d{height:32.934667pt;}
.h15{height:36.062345pt;}
.h19{height:36.435772pt;}
.h41{height:36.809198pt;}
.hb{height:37.376000pt;}
.h10{height:39.424000pt;}
.h1c{height:40.009998pt;}
.h20{height:40.491234pt;}
.h6{height:40.800000pt;}
.h3e{height:40.826266pt;}
.h3c{height:40.916892pt;}
.h39{height:41.006356pt;}
.h3{height:42.840000pt;}
.h2e{height:44.599532pt;}
.h34{height:47.253333pt;}
.h13{height:47.680000pt;}
.h2{height:48.960000pt;}
.h30{height:49.103496pt;}
.hf{height:49.280000pt;}
.h4e{height:49.280163pt;}
.h33{height:49.280570pt;}
.h2a{height:49.290547pt;}
.h1e{height:49.405770pt;}
.h17{height:49.406421pt;}
.h16{height:49.549813pt;}
.he{height:52.746667pt;}
.h2c{height:55.804229pt;}
.h2d{height:55.829333pt;}
.h2b{height:55.829415pt;}
.h40{height:57.456669pt;}
.hd{height:57.658667pt;}
.h12{height:58.021333pt;}
.hc{height:61.429333pt;}
.h44{height:61.645841pt;}
.h22{height:62.682331pt;}
.h28{height:64.816778pt;}
.h27{height:66.303920pt;}
.h26{height:68.977237pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h48{height:176.073324pt;}
.h2f{height:254.633341pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w10{width:8.825333pt;}
.w11{width:9.426667pt;}
.w7{width:51.159999pt;}
.wc{width:52.348002pt;}
.wa{width:58.586665pt;}
.wb{width:64.186666pt;}
.w9{width:82.533335pt;}
.w13{width:83.880000pt;}
.w5{width:85.279999pt;}
.w8{width:88.453328pt;}
.w6{width:91.145335pt;}
.w12{width:112.666667pt;}
.wd{width:128.293335pt;}
.w14{width:150.253337pt;}
.wf{width:262.880005pt;}
.w15{width:441.173340pt;}
.we{width:449.763997pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:24.904399pt;}
.x1a{left:27.661039pt;}
.x13{left:29.135340pt;}
.x43{left:34.538802pt;}
.x14{left:37.691065pt;}
.x2a{left:39.148275pt;}
.x27{left:43.215190pt;}
.x10{left:44.811864pt;}
.x55{left:52.628377pt;}
.x24{left:55.059336pt;}
.x21{left:56.224141pt;}
.x2c{left:61.888407pt;}
.x5b{left:63.398539pt;}
.x1b{left:66.729861pt;}
.x6{left:68.031469pt;}
.x8{left:68.976400pt;}
.x16{left:70.775599pt;}
.x67{left:72.329336pt;}
.x4a{left:73.399999pt;}
.xb{left:76.127335pt;}
.x12{left:78.807602pt;}
.xd{left:82.015600pt;}
.x9{left:83.151469pt;}
.x7{left:86.932800pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x74{left:95.380802pt;}
.xf{left:96.787598pt;}
.x19{left:98.973338pt;}
.x52{left:100.217336pt;}
.x44{left:102.224538pt;}
.x23{left:105.164001pt;}
.x45{left:108.253733pt;}
.x53{left:109.645203pt;}
.x15{left:111.051198pt;}
.x60{left:112.526947pt;}
.x2e{left:116.716125pt;}
.x11{left:119.124797pt;}
.x62{left:128.162811pt;}
.x6b{left:132.911789pt;}
.x17{left:137.715332pt;}
.x30{left:147.422404pt;}
.x6a{left:148.997864pt;}
.x6c{left:149.941077pt;}
.xc{left:153.244802pt;}
.x18{left:156.418132pt;}
.xe{left:159.111471pt;}
.x31{left:166.429331pt;}
.x25{left:169.351064pt;}
.x69{left:173.066935pt;}
.x6e{left:176.556539pt;}
.x4{left:180.874667pt;}
.x4b{left:189.256266pt;}
.x32{left:191.325331pt;}
.x68{left:193.056539pt;}
.x4c{left:202.928126pt;}
.x33{left:203.986665pt;}
.x5d{left:210.087992pt;}
.x4e{left:212.036524pt;}
.x6d{left:214.336824pt;}
.x34{left:216.647998pt;}
.x35{left:229.309331pt;}
.x5e{left:233.631999pt;}
.x36{left:245.437329pt;}
.x59{left:257.579997pt;}
.x37{left:261.565329pt;}
.x5f{left:275.980408pt;}
.x38{left:277.693329pt;}
.x4d{left:280.768270pt;}
.x61{left:286.455872pt;}
.x1c{left:290.825338pt;}
.x39{left:293.821329pt;}
.x1e{left:302.841605pt;}
.x1d{left:303.921875pt;}
.x3a{left:309.949329pt;}
.x63{left:312.723999pt;}
.x5a{left:315.278666pt;}
.x64{left:319.742676pt;}
.x26{left:320.997335pt;}
.x3b{left:326.087996pt;}
.x20{left:327.549459pt;}
.x29{left:331.716267pt;}
.x4f{left:336.466939pt;}
.x3c{left:338.749329pt;}
.x5c{left:341.459717pt;}
.x71{left:344.275065pt;}
.x22{left:349.345744pt;}
.x3d{left:351.410663pt;}
.x2b{left:353.424398pt;}
.x73{left:355.867065pt;}
.x3e{left:364.071996pt;}
.x6f{left:371.005737pt;}
.x28{left:373.344686pt;}
.x2d{left:376.212524pt;}
.x70{left:384.371429pt;}
.x72{left:388.399552pt;}
.x3f{left:392.861329pt;}
.x46{left:394.909749pt;}
.x3{left:404.408000pt;}
.x50{left:406.582682pt;}
.x40{left:408.989329pt;}
.x51{left:415.409058pt;}
.x2f{left:419.829753pt;}
.x41{left:425.191996pt;}
.x5{left:431.874146pt;}
.x42{left:437.853329pt;}
.x66{left:440.664388pt;}
.x65{left:442.484416pt;}
.x54{left:444.916382pt;}
.x48{left:451.273722pt;}
.x47{left:454.995076pt;}
.x49{left:458.657715pt;}
.x56{left:474.340535pt;}
.x57{left:491.476522pt;}
.xa{left:497.529053pt;}
.x58{left:517.795207pt;}
}




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