
    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_8ac228b69f7f4f848263f066.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e0074b762f5af049bcb53fc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0cec53987c3dbfeb4bf68bb7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1fa4381f27c4a21b263091f3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_56c344d6e365346b5cd15cf2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_79369a2eeb63546a1eda909b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c3c2be35a2f87d77888d7332.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090000;font-style:normal;font-weight: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_40725b4a79e5a7fceb7ac244.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0ff566b330e21f55274fc60d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c5ab362a48743619fb5bda36.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ec666423eb0921bba8ddc42a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5bca67563d6baf8f7f9711cc.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_92a1089f489d0a11304eb0a0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.890000;font-style:normal;font-weight: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_2701c54d27c6a9446a66cb17.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.871000;font-style:normal;font-weight: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_1e082db1ac443ca72b03975e.woff2')format("woff");}.fff{font-family:fff;line-height:0.904000;font-style:normal;font-weight: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_0375b0d58a3aa158a9bf2c66.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871000;font-style:normal;font-weight: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_b486a004ebbfe085f5d03f24.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.650000;font-style:normal;font-weight: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_5e253c0cacb09b0886f0d167.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.904000;font-style:normal;font-weight: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_61a63c756026d85bb32df565.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.650000;font-style:normal;font-weight: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_14d518d1d11df74c6239ee5d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.904000;font-style:normal;font-weight: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_7956418a22d8fe657dc25d46.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.674000;font-style:normal;font-weight: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_c8004f80f9372f8e01b3eec8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.861000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_0fdbb1a9b7fc60fc73f43389.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.693000;font-style:normal;font-weight: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_9fef84130bfd4b340140d9a3.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.120000;font-style:normal;font-weight: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_77a8aaddb5f1908bd46ecc6a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_61e88782ca2f818f9748da26.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.861000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_ed62d0a33bc540531619ecb3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.796000;font-style:normal;font-weight: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_323cac625011ab44d48751d5.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_79416693bfdb6ce55e5a62e8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_5b16443546299b0a1397abd6.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.674000;font-style:normal;font-weight: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_bf85bcc0fae707fb1c80536f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.874000;font-style:normal;font-weight: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_e187c02ae74e9ad676f11e84.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.230000;font-style:normal;font-weight: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_a0a3fcb292c33e08d5460e5f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_a3a05fb645bfd3303a2ed050.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.452000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_fe7703c39396c87b36d04cb8.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.674000;font-style:normal;font-weight: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_b6b290269d1111268f04926c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.674000;font-style:normal;font-weight: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_75975e1f91f2dc1b2ceea808.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.861000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_4c7d5ea070efbbc624fe3525.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.697000;font-style:normal;font-weight: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_dfa75349481b9cd04ec1f8d3.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.452000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_ba505267f22c69abff41116b.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.674000;font-style:normal;font-weight: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_39da6456224aa046db024719.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.674000;font-style:normal;font-weight: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_6133ef2cec733289625f99a3.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.687000;font-style:normal;font-weight: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_a2160bd78efe8f29440992f7.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.674000;font-style:normal;font-weight: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_0b36ecf7adc7733979c4cb94.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.690000;font-style:normal;font-weight: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_a2e26d54a718ea869f2a3da1.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.674000;font-style:normal;font-weight: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_83b8d1372896eb42708c3c58.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.687000;font-style:normal;font-weight: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_634edd87530fa82a20713f79.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.674000;font-style:normal;font-weight: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_623e4791954f013c1bfd319a.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.690000;font-style:normal;font-weight: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_ddf60cc6cb04966b7c6ddb28.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.674000;font-style:normal;font-weight: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_f10d8c04e2701c017781a1d7.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.687000;font-style:normal;font-weight: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_ca8a4c3a569af4ddc7ad0006.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.674000;font-style:normal;font-weight: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_4c8ecaa5d38fbec4486559c0.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.690000;font-style:normal;font-weight: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_c2f170246cc0a5b0ef6a88cd.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.697000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_d16a4ea0c2d3b58c01aff04b.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.748047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400011px;}
.v6{vertical-align:-18.604649px;}
.v4{vertical-align:-15.000000px;}
.v7{vertical-align:-12.870000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.000000px;}
.v3{vertical-align:20.304055px;}
.v1{vertical-align:24.000000px;}
.ls9b{letter-spacing:-1.260000px;}
.ls78{letter-spacing:-1.200000px;}
.ls7b{letter-spacing:-1.140000px;}
.ls9a{letter-spacing:-1.020000px;}
.ls9d{letter-spacing:-0.966235px;}
.ls7a{letter-spacing:-0.900000px;}
.ls66{letter-spacing:-0.816000px;}
.ls9f{letter-spacing:-0.785228px;}
.ls99{letter-spacing:-0.780000px;}
.ls6e{letter-spacing:-0.749603px;}
.ls9c{letter-spacing:-0.720000px;}
.ls74{letter-spacing:-0.693230px;}
.ls6b{letter-spacing:-0.691942px;}
.ls79{letter-spacing:-0.540000px;}
.ls4c{letter-spacing:-0.500515px;}
.ls2e{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.420000px;}
.lse3{letter-spacing:-0.408000px;}
.ls3a{letter-spacing:-0.360000px;}
.lscc{letter-spacing:-0.357000px;}
.lsd0{letter-spacing:-0.306000px;}
.ls2d{letter-spacing:-0.300000px;}
.ls9e{letter-spacing:-0.294000px;}
.ls64{letter-spacing:-0.280116px;}
.lse0{letter-spacing:-0.255000px;}
.ls18{letter-spacing:-0.240000px;}
.ls65{letter-spacing:-0.233430px;}
.ls6d{letter-spacing:-0.230647px;}
.lscd{letter-spacing:-0.204000px;}
.ls48{letter-spacing:-0.184634px;}
.ls17{letter-spacing:-0.180000px;}
.ls61{letter-spacing:-0.154998px;}
.lscf{letter-spacing:-0.153000px;}
.ls49{letter-spacing:-0.138476px;}
.ls16{letter-spacing:-0.120000px;}
.ls4b{letter-spacing:-0.111226px;}
.lsce{letter-spacing:-0.102000px;}
.ls4e{letter-spacing:-0.092317px;}
.ls13{letter-spacing:-0.060000px;}
.ls73{letter-spacing:-0.057769px;}
.ls6a{letter-spacing:-0.057662px;}
.ls4d{letter-spacing:-0.055613px;}
.ls60{letter-spacing:-0.051666px;}
.lse1{letter-spacing:-0.051000px;}
.ls47{letter-spacing:-0.046159px;}
.lsa0{letter-spacing:-0.035692px;}
.ls12{letter-spacing:0.000000px;}
.lsdd{letter-spacing:0.000013px;}
.ls95{letter-spacing:0.000900px;}
.ls8c{letter-spacing:0.001855px;}
.ls8f{letter-spacing:0.001905px;}
.ls85{letter-spacing:0.004281px;}
.ls83{letter-spacing:0.013558px;}
.ls98{letter-spacing:0.013593px;}
.ls96{letter-spacing:0.013639px;}
.ls90{letter-spacing:0.015847px;}
.ls8d{letter-spacing:0.015891px;}
.ls7d{letter-spacing:0.015893px;}
.ls7f{letter-spacing:0.015939px;}
.ls77{letter-spacing:0.025808px;}
.lsae{letter-spacing:0.042000px;}
.ls6f{letter-spacing:0.043327px;}
.ls3f{letter-spacing:0.046159px;}
.ls54{letter-spacing:0.046686px;}
.ls56{letter-spacing:0.047859px;}
.ls57{letter-spacing:0.047948px;}
.lsb3{letter-spacing:0.051000px;}
.ls40{letter-spacing:0.055613px;}
.ls27{letter-spacing:0.060000px;}
.ls14{letter-spacing:0.084000px;}
.ls55{letter-spacing:0.095718px;}
.ls58{letter-spacing:0.095897px;}
.lsc4{letter-spacing:0.101815px;}
.lsbc{letter-spacing:0.102000px;}
.ls7{letter-spacing:0.120000px;}
.ls94{letter-spacing:0.126000px;}
.lsaa{letter-spacing:0.133764px;}
.ls3e{letter-spacing:0.138476px;}
.ls5a{letter-spacing:0.143845px;}
.ls31{letter-spacing:0.150000px;}
.lsc0{letter-spacing:0.153000px;}
.lsa9{letter-spacing:0.170361px;}
.ls10{letter-spacing:0.178791px;}
.ls29{letter-spacing:0.180000px;}
.ls62{letter-spacing:0.186744px;}
.lsdb{letter-spacing:0.203902px;}
.lsbe{letter-spacing:0.204000px;}
.lsa{letter-spacing:0.210000px;}
.lsd3{letter-spacing:0.229500px;}
.ls41{letter-spacing:0.230793px;}
.ls1{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.255000px;}
.lsb9{letter-spacing:0.264000px;}
.ls76{letter-spacing:0.270000px;}
.ls93{letter-spacing:0.279438px;}
.lsdc{letter-spacing:0.280500px;}
.lsbd{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.lsd2{letter-spacing:0.306000px;}
.ls44{letter-spacing:0.323110px;}
.ls1b{letter-spacing:0.330000px;}
.lsd9{letter-spacing:0.331500px;}
.ls4a{letter-spacing:0.333677px;}
.lsda{letter-spacing:0.356980px;}
.lsba{letter-spacing:0.357000px;}
.ls8{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.390000px;}
.lsbb{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.420000px;}
.lsc9{letter-spacing:0.433500px;}
.ls5{letter-spacing:0.444000px;}
.ls50{letter-spacing:0.450000px;}
.lsc8{letter-spacing:0.458914px;}
.lsd1{letter-spacing:0.459000px;}
.ls91{letter-spacing:0.462000px;}
.ls63{letter-spacing:0.466860px;}
.ls3{letter-spacing:0.480000px;}
.ls26{letter-spacing:0.510000px;}
.lsa6{letter-spacing:0.515442px;}
.lsa4{letter-spacing:0.515991px;}
.ls7c{letter-spacing:0.516000px;}
.ls4{letter-spacing:0.540000px;}
.lsbf{letter-spacing:0.561000px;}
.lse{letter-spacing:0.570000px;}
.lsf{letter-spacing:0.600000px;}
.lsb2{letter-spacing:0.612000px;}
.lsa1{letter-spacing:0.617988px;}
.lscb{letter-spacing:0.637500px;}
.lsa7{letter-spacing:0.648709px;}
.ls6{letter-spacing:0.660000px;}
.lsdf{letter-spacing:0.662959px;}
.lsd5{letter-spacing:0.663000px;}
.ls92{letter-spacing:0.672000px;}
.lsaf{letter-spacing:0.688500px;}
.ls28{letter-spacing:0.690000px;}
.lsb5{letter-spacing:0.714000px;}
.lsc{letter-spacing:0.720000px;}
.lsd6{letter-spacing:0.739500px;}
.lsa8{letter-spacing:0.739736px;}
.ls2b{letter-spacing:0.750000px;}
.ls2c{letter-spacing:0.756000px;}
.lsb4{letter-spacing:0.765000px;}
.ls22{letter-spacing:0.780000px;}
.ls30{letter-spacing:0.810000px;}
.lsb1{letter-spacing:0.816000px;}
.lsa5{letter-spacing:0.819507px;}
.ls1c{letter-spacing:0.840000px;}
.lsd8{letter-spacing:0.867000px;}
.ls23{letter-spacing:0.900000px;}
.lsa3{letter-spacing:0.912113px;}
.lsb0{letter-spacing:0.918000px;}
.ls52{letter-spacing:0.930000px;}
.ls1e{letter-spacing:0.960000px;}
.lsb6{letter-spacing:0.969000px;}
.ls4f{letter-spacing:0.990000px;}
.lsd{letter-spacing:1.020000px;}
.ls19{letter-spacing:1.050000px;}
.lse2{letter-spacing:1.071000px;}
.ls24{letter-spacing:1.080000px;}
.ls3c{letter-spacing:1.110000px;}
.lse4{letter-spacing:1.122000px;}
.lsb{letter-spacing:1.140000px;}
.lsc2{letter-spacing:1.173000px;}
.ls1d{letter-spacing:1.200000px;}
.lsa2{letter-spacing:1.200026px;}
.ls39{letter-spacing:1.223970px;}
.lsb8{letter-spacing:1.224017px;}
.lsca{letter-spacing:1.249500px;}
.ls21{letter-spacing:1.260000px;}
.lsc7{letter-spacing:1.275000px;}
.ls3d{letter-spacing:1.320000px;}
.lsc3{letter-spacing:1.326000px;}
.lsc6{letter-spacing:1.377000px;}
.ls1f{letter-spacing:1.380000px;}
.ls51{letter-spacing:1.410000px;}
.lsc1{letter-spacing:1.428000px;}
.ls38{letter-spacing:1.440000px;}
.ls2f{letter-spacing:1.500000px;}
.lsde{letter-spacing:1.530000px;}
.ls25{letter-spacing:1.560000px;}
.lsc5{letter-spacing:1.581000px;}
.ls36{letter-spacing:1.620000px;}
.lsd7{letter-spacing:1.632000px;}
.ls32{letter-spacing:1.680000px;}
.lsd4{letter-spacing:1.734000px;}
.ls3b{letter-spacing:1.740000px;}
.ls20{letter-spacing:1.800000px;}
.ls37{letter-spacing:1.860000px;}
.ls33{letter-spacing:1.980000px;}
.ls34{letter-spacing:2.100000px;}
.ls35{letter-spacing:2.280000px;}
.ls8e{letter-spacing:2.955773px;}
.ls8b{letter-spacing:3.009155px;}
.ls84{letter-spacing:3.009771px;}
.ls1a{letter-spacing:3.120000px;}
.ls0{letter-spacing:3.990000px;}
.lsb7{letter-spacing:9.638983px;}
.ls6c{letter-spacing:12.916243px;}
.ls75{letter-spacing:12.940300px;}
.ls88{letter-spacing:13.383344px;}
.ls89{letter-spacing:16.345365px;}
.ls87{letter-spacing:16.345960px;}
.ls8a{letter-spacing:16.347745px;}
.ls82{letter-spacing:16.684169px;}
.ls80{letter-spacing:19.618617px;}
.ls81{letter-spacing:19.638927px;}
.ls7e{letter-spacing:19.672656px;}
.ls86{letter-spacing:19.694546px;}
.ls72{letter-spacing:30.372367px;}
.ls69{letter-spacing:35.678114px;}
.ls71{letter-spacing:41.377476px;}
.ls70{letter-spacing:41.420803px;}
.ls68{letter-spacing:46.489664px;}
.ls67{letter-spacing:46.619402px;}
.ls5e{letter-spacing:57.003606px;}
.ls5f{letter-spacing:57.143664px;}
.ls42{letter-spacing:68.730155px;}
.ls43{letter-spacing:68.776314px;}
.ls5d{letter-spacing:68.815164px;}
.ls53{letter-spacing:80.766780px;}
.ls46{letter-spacing:94.809764px;}
.ls45{letter-spacing:106.580207px;}
.ls5c{letter-spacing:153.521743px;}
.ls59{letter-spacing:153.554878px;}
.ls5b{letter-spacing:153.666563px;}
.lsab{letter-spacing:384.897620px;}
.lsac{letter-spacing:402.797988px;}
.lsad{letter-spacing:405.653988px;}
.ls97{letter-spacing:458.053785px;}
.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;}
}
.ws72{word-spacing:-106.580207px;}
.ws73{word-spacing:-94.809764px;}
.ws83{word-spacing:-91.317816px;}
.ws84{word-spacing:-79.366200px;}
.ws65{word-spacing:-79.208158px;}
.ws63{word-spacing:-79.161999px;}
.ws86{word-spacing:-67.694700px;}
.ws85{word-spacing:-67.554642px;}
.ws8d{word-spacing:-46.662648px;}
.ws8f{word-spacing:-46.532910px;}
.ws96{word-spacing:-41.464130px;}
.ws98{word-spacing:-41.420803px;}
.ws91{word-spacing:-35.721360px;}
.ws9a{word-spacing:-30.415694px;}
.ws9e{word-spacing:-25.996139px;}
.ws95{word-spacing:-25.947810px;}
.wsbb{word-spacing:-16.684169px;}
.wsc2{word-spacing:-16.500000px;}
.wsaf{word-spacing:-15.900000px;}
.ws54{word-spacing:-15.840000px;}
.wsa6{word-spacing:-15.720000px;}
.ws7b{word-spacing:-15.300000px;}
.ws25{word-spacing:-15.000000px;}
.wscd{word-spacing:-14.832000px;}
.ws26{word-spacing:-14.760000px;}
.ws7{word-spacing:-14.544000px;}
.wscf{word-spacing:-13.923000px;}
.wsf3{word-spacing:-13.515000px;}
.wsf2{word-spacing:-13.413000px;}
.wsef{word-spacing:-13.387500px;}
.wsd2{word-spacing:-13.209000px;}
.wsd1{word-spacing:-13.183500px;}
.wsf0{word-spacing:-13.107000px;}
.ws9f{word-spacing:-13.055839px;}
.wsce{word-spacing:-13.005000px;}
.wsf1{word-spacing:-12.954000px;}
.wsd0{word-spacing:-12.852000px;}
.ws53{word-spacing:-12.750000px;}
.ws6c{word-spacing:-12.568493px;}
.ws6e{word-spacing:-12.512880px;}
.ws2{word-spacing:-12.420000px;}
.ws9d{word-spacing:-12.362608px;}
.ws4{word-spacing:-12.360000px;}
.ws94{word-spacing:-12.339625px;}
.ws6d{word-spacing:-12.067977px;}
.ws8c{word-spacing:-11.934000px;}
.ws87{word-spacing:-11.624850px;}
.wsc3{word-spacing:-11.550000px;}
.ws6{word-spacing:-11.520000px;}
.ws24{word-spacing:-11.256000px;}
.wsb3{word-spacing:-11.172000px;}
.ws89{word-spacing:-11.017896px;}
.wsb2{word-spacing:-10.962000px;}
.wsb4{word-spacing:-10.920000px;}
.ws9c{word-spacing:-10.836338px;}
.ws93{word-spacing:-10.816134px;}
.wscc{word-spacing:-10.761000px;}
.ws88{word-spacing:-10.737780px;}
.wsb5{word-spacing:-10.710000px;}
.ws62{word-spacing:-10.662637px;}
.wsb7{word-spacing:-10.626000px;}
.ws5{word-spacing:-10.584000px;}
.ws69{word-spacing:-10.570319px;}
.wsc1{word-spacing:-10.542000px;}
.wsac{word-spacing:-10.500000px;}
.wscb{word-spacing:-10.480500px;}
.ws6a{word-spacing:-10.385685px;}
.ws8b{word-spacing:-10.317606px;}
.ws8a{word-spacing:-10.270920px;}
.ws6b{word-spacing:-10.247209px;}
.wsb6{word-spacing:-10.206000px;}
.ws1{word-spacing:-9.996000px;}
.ws27{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws9{word-spacing:-1.890000px;}
.ws3c{word-spacing:-1.560000px;}
.wsf{word-spacing:-1.500000px;}
.wsc{word-spacing:-1.440000px;}
.ws10{word-spacing:-1.380000px;}
.ws51{word-spacing:-1.320000px;}
.wsd6{word-spacing:-1.275000px;}
.ws42{word-spacing:-1.260000px;}
.ws2a{word-spacing:-1.200000px;}
.wse4{word-spacing:-1.173000px;}
.ws80{word-spacing:-1.140000px;}
.ws29{word-spacing:-1.080000px;}
.wsde{word-spacing:-1.071000px;}
.ws35{word-spacing:-1.020000px;}
.wsdc{word-spacing:-0.969000px;}
.wsc5{word-spacing:-0.960000px;}
.wsfd{word-spacing:-0.918000px;}
.wsd{word-spacing:-0.900000px;}
.ws78{word-spacing:-0.889805px;}
.ws3d{word-spacing:-0.840000px;}
.ws7a{word-spacing:-0.834192px;}
.ws101{word-spacing:-0.816000px;}
.ws1d{word-spacing:-0.780000px;}
.wsdf{word-spacing:-0.765000px;}
.ws14{word-spacing:-0.720000px;}
.wse0{word-spacing:-0.714000px;}
.wsf4{word-spacing:-0.663000px;}
.ws16{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.612000px;}
.wsa{word-spacing:-0.570000px;}
.ws3e{word-spacing:-0.540000px;}
.wsc0{word-spacing:-0.510000px;}
.wsa7{word-spacing:-0.480000px;}
.ws37{word-spacing:-0.420000px;}
.wsc9{word-spacing:-0.360000px;}
.ws104{word-spacing:-0.357000px;}
.ws79{word-spacing:-0.333677px;}
.ws18{word-spacing:-0.300000px;}
.wsdb{word-spacing:-0.264000px;}
.wsd9{word-spacing:-0.255000px;}
.ws12{word-spacing:-0.240000px;}
.ws1e{word-spacing:-0.180000px;}
.ws107{word-spacing:-0.153000px;}
.ws6f{word-spacing:-0.120000px;}
.wse8{word-spacing:-0.102000px;}
.wsad{word-spacing:-0.060015px;}
.ws59{word-spacing:-0.060000px;}
.ws77{word-spacing:-0.055613px;}
.ws8{word-spacing:-0.051000px;}
.wsb8{word-spacing:-0.050989px;}
.ws0{word-spacing:-0.048000px;}
.wsa5{word-spacing:-0.047948px;}
.wsa4{word-spacing:-0.043327px;}
.wsb{word-spacing:0.000000px;}
.wsa2{word-spacing:0.057662px;}
.ws70{word-spacing:0.060000px;}
.ws38{word-spacing:0.120000px;}
.ws76{word-spacing:0.138476px;}
.wsa1{word-spacing:0.154998px;}
.ws36{word-spacing:0.180000px;}
.ws20{word-spacing:0.240000px;}
.ws11{word-spacing:0.300000px;}
.wsd8{word-spacing:0.357000px;}
.ws58{word-spacing:0.360000px;}
.wsa9{word-spacing:0.420000px;}
.ws41{word-spacing:0.480000px;}
.wsa8{word-spacing:0.540000px;}
.ws2c{word-spacing:0.600000px;}
.ws7c{word-spacing:0.660000px;}
.wsfb{word-spacing:0.663000px;}
.wsa0{word-spacing:0.671658px;}
.wse2{word-spacing:0.714000px;}
.ws19{word-spacing:0.720000px;}
.wsa3{word-spacing:0.749603px;}
.ws4c{word-spacing:0.780000px;}
.wsbf{word-spacing:0.785228px;}
.wse5{word-spacing:0.816000px;}
.ws1a{word-spacing:0.840000px;}
.ws15{word-spacing:0.900000px;}
.wsae{word-spacing:0.924224px;}
.ws52{word-spacing:0.960000px;}
.wse6{word-spacing:0.969000px;}
.ws1f{word-spacing:1.020000px;}
.ws75{word-spacing:1.061648px;}
.ws106{word-spacing:1.071000px;}
.wsaa{word-spacing:1.080000px;}
.ws13{word-spacing:1.140000px;}
.wsdd{word-spacing:1.173000px;}
.ws71{word-spacing:1.200000px;}
.ws4b{word-spacing:1.260000px;}
.wsd5{word-spacing:1.275000px;}
.ws50{word-spacing:1.320000px;}
.wsf6{word-spacing:1.326000px;}
.wsab{word-spacing:1.377000px;}
.ws21{word-spacing:1.380000px;}
.ws57{word-spacing:1.440000px;}
.wsf8{word-spacing:1.479000px;}
.wse{word-spacing:1.500000px;}
.ws49{word-spacing:1.560000px;}
.wsca{word-spacing:1.581000px;}
.ws34{word-spacing:1.620000px;}
.ws108{word-spacing:1.632000px;}
.ws3f{word-spacing:1.680000px;}
.ws74{word-spacing:1.707868px;}
.wsee{word-spacing:1.734000px;}
.ws7d{word-spacing:1.740000px;}
.wse1{word-spacing:1.785000px;}
.ws40{word-spacing:1.800000px;}
.ws45{word-spacing:1.860000px;}
.wsd7{word-spacing:1.887000px;}
.ws5a{word-spacing:1.920000px;}
.ws102{word-spacing:1.938000px;}
.ws7e{word-spacing:1.980000px;}
.wsf7{word-spacing:1.989000px;}
.ws47{word-spacing:2.040000px;}
.ws2d{word-spacing:2.100000px;}
.ws5d{word-spacing:2.160000px;}
.ws4e{word-spacing:2.220000px;}
.wsd4{word-spacing:2.244000px;}
.ws81{word-spacing:2.280000px;}
.wsfc{word-spacing:2.295000px;}
.ws5f{word-spacing:2.340000px;}
.ws39{word-spacing:2.400000px;}
.wsfe{word-spacing:2.499000px;}
.ws2f{word-spacing:2.520000px;}
.wsd3{word-spacing:2.550000px;}
.ws32{word-spacing:2.580000px;}
.ws46{word-spacing:2.640000px;}
.ws105{word-spacing:2.652000px;}
.ws4d{word-spacing:2.700000px;}
.wsbd{word-spacing:2.760000px;}
.wse7{word-spacing:2.805000px;}
.ws48{word-spacing:2.820000px;}
.wsea{word-spacing:2.856000px;}
.ws1c{word-spacing:2.880000px;}
.ws100{word-spacing:2.958000px;}
.ws28{word-spacing:3.000000px;}
.ws60{word-spacing:3.060000px;}
.ws56{word-spacing:3.120000px;}
.ws3a{word-spacing:3.180000px;}
.ws5e{word-spacing:3.240000px;}
.wsf9{word-spacing:3.264000px;}
.ws43{word-spacing:3.300000px;}
.ws1b{word-spacing:3.360000px;}
.wsbc{word-spacing:3.420000px;}
.ws17{word-spacing:3.480000px;}
.ws4a{word-spacing:3.540000px;}
.wsff{word-spacing:3.570000px;}
.ws7f{word-spacing:3.600000px;}
.ws2e{word-spacing:3.720000px;}
.ws44{word-spacing:3.900000px;}
.ws33{word-spacing:3.960000px;}
.wse3{word-spacing:3.978000px;}
.ws4f{word-spacing:4.020000px;}
.ws61{word-spacing:4.080000px;}
.wsbe{word-spacing:4.200000px;}
.wsda{word-spacing:4.284000px;}
.wsed{word-spacing:4.335000px;}
.wsec{word-spacing:4.386000px;}
.wsc7{word-spacing:4.500000px;}
.ws30{word-spacing:4.680000px;}
.ws82{word-spacing:4.743000px;}
.ws5c{word-spacing:4.800000px;}
.wsc8{word-spacing:4.920000px;}
.ws5b{word-spacing:5.040000px;}
.wseb{word-spacing:5.049000px;}
.ws55{word-spacing:5.100000px;}
.ws3b{word-spacing:5.640000px;}
.ws103{word-spacing:5.712000px;}
.wse9{word-spacing:5.916000px;}
.wsc6{word-spacing:5.940000px;}
.wsfa{word-spacing:6.120000px;}
.ws31{word-spacing:6.600000px;}
.wsf5{word-spacing:6.885000px;}
.ws2b{word-spacing:13.260000px;}
.wsb0{word-spacing:16.612151px;}
.ws9b{word-spacing:19.367258px;}
.wsb1{word-spacing:21.639431px;}
.ws92{word-spacing:24.607087px;}
.ws97{word-spacing:41.334149px;}
.ws99{word-spacing:41.377476px;}
.ws8e{word-spacing:46.446417px;}
.ws90{word-spacing:46.619402px;}
.wsc4{word-spacing:54.978000px;}
.ws64{word-spacing:58.298312px;}
.ws66{word-spacing:58.390629px;}
.ws67{word-spacing:70.114913px;}
.ws22{word-spacing:72.267000px;}
.ws68{word-spacing:80.962184px;}
.wsba{word-spacing:234.447000px;}
.wsb9{word-spacing:259.947000px;}
._3f{margin-left:-2964.615033px;}
._5c{margin-left:-78.105888px;}
._40{margin-left:-68.730155px;}
._56{margin-left:-57.695565px;}
._57{margin-left:-56.451705px;}
._5b{margin-left:-54.702837px;}
._63{margin-left:-52.405605px;}
._60{margin-left:-49.146457px;}
._59{margin-left:-46.619402px;}
._6a{margin-left:-45.319003px;}
._5f{margin-left:-44.221716px;}
._61{margin-left:-41.350176px;}
._5d{margin-left:-40.105842px;}
._5e{margin-left:-39.100803px;}
._64{margin-left:-36.564276px;}
._5a{margin-left:-35.288909px;}
._6b{margin-left:-33.720513px;}
._62{margin-left:-31.778376px;}
._69{margin-left:-30.481574px;}
._65{margin-left:-28.380387px;}
._a{margin-left:-19.998054px;}
._7{margin-left:-16.575000px;}
._5{margin-left:-15.384091px;}
._e{margin-left:-13.617028px;}
._66{margin-left:-12.108978px;}
._6c{margin-left:-10.607984px;}
._3{margin-left:-9.126000px;}
._1{margin-left:-4.622700px;}
._6{margin-left:-2.981873px;}
._0{margin-left:-1.632000px;}
._2{width:1.814400px;}
._c{width:3.072000px;}
._b{width:5.085600px;}
._7d{width:9.333009px;}
._14{width:11.883005px;}
._7e{width:14.432998px;}
._d{width:15.605987px;}
._8{width:18.359991px;}
._4{width:39.188401px;}
._74{width:42.227976px;}
._2b{width:44.217000px;}
._9{width:54.621018px;}
._77{width:56.202000px;}
._76{width:67.114777px;}
._13{width:71.808000px;}
._7c{width:77.010000px;}
._78{width:80.324999px;}
._24{width:93.227999px;}
._75{width:96.639473px;}
._41{width:98.964018px;}
._43{width:104.652000px;}
._42{width:105.978000px;}
._52{width:110.466000px;}
._21{width:120.717005px;}
._34{width:136.293633px;}
._6d{width:137.649000px;}
._67{width:151.784231px;}
._68{width:152.843304px;}
._35{width:161.925000px;}
._72{width:177.531000px;}
._58{width:178.583657px;}
._37{width:180.818873px;}
._19{width:189.720000px;}
._73{width:191.608199px;}
._15{width:192.984005px;}
._47{width:202.623000px;}
._49{width:207.825000px;}
._2e{width:211.395000px;}
._2c{width:214.302000px;}
._4f{width:215.679000px;}
._7b{width:232.407000px;}
._36{width:233.784000px;}
._4d{width:242.760000px;}
._29{width:247.197000px;}
._27{width:255.204000px;}
._2d{width:258.059932px;}
._33{width:263.721000px;}
._53{width:268.260000px;}
._20{width:276.573000px;}
._12{width:279.582000px;}
._17{width:281.010000px;}
._70{width:282.947990px;}
._2a{width:289.781971px;}
._6f{width:297.992989px;}
._16{width:312.272966px;}
._79{width:313.343314px;}
._71{width:317.424011px;}
._6e{width:318.545911px;}
._11{width:320.637000px;}
._7a{width:322.115356px;}
._4b{width:324.054000px;}
._48{width:332.316000px;}
._3b{width:333.387000px;}
._4a{width:336.039000px;}
._23{width:340.731000px;}
._28{width:341.802000px;}
._55{width:346.290000px;}
._54{width:353.020913px;}
._45{width:355.368000px;}
._46{width:358.530000px;}
._10{width:361.335000px;}
._4c{width:368.118000px;}
._4e{width:370.974000px;}
._32{width:372.912000px;}
._26{width:378.369028px;}
._3e{width:404.073000px;}
._1d{width:411.060000px;}
._1b{width:412.488000px;}
._1f{width:413.916000px;}
._31{width:418.404000px;}
._44{width:442.956600px;}
._1c{width:455.073000px;}
._1a{width:457.979971px;}
._22{width:459.407966px;}
._2f{width:463.131040px;}
._25{width:465.119972px;}
._30{width:469.149000px;}
._3d{width:477.666000px;}
._3a{width:480.573000px;}
._1e{width:484.908000px;}
._51{width:501.432000px;}
._18{width:503.217000px;}
._39{width:515.916000px;}
._3c{width:523.158000px;}
._38{width:561.407971px;}
._50{width:637.143000px;}
._f{width:2146.544927px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs18{font-size:35.692200px;}
.fs8{font-size:35.699999px;}
.fsa{font-size:41.709600px;}
.fs6{font-size:42.000000px;}
.fs16{font-size:42.010200px;}
.fsf{font-size:43.246199px;}
.fs12{font-size:43.327200px;}
.fsb{font-size:46.158600px;}
.fsd{font-size:46.686000px;}
.fs10{font-size:47.859000px;}
.fs13{font-size:47.948399px;}
.fs0{font-size:48.000000px;}
.fs17{font-size:50.988600px;}
.fs2{font-size:51.000000px;}
.fse{font-size:51.666000px;}
.fsc{font-size:55.612799px;}
.fs3{font-size:57.000000px;}
.fs11{font-size:57.661800px;}
.fs14{font-size:57.769197px;}
.fs5{font-size:60.000000px;}
.fs15{font-size:60.014997px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1b3{bottom:3.194710px;}
.y1a7{bottom:3.195305px;}
.y1ae{bottom:3.343803px;}
.y1b6{bottom:3.344696px;}
.y1c0{bottom:3.344707px;}
.y1bd{bottom:3.346207px;}
.y183{bottom:3.733932px;}
.y1aa{bottom:4.995300px;}
.y17d{bottom:5.895309px;}
.y196{bottom:5.970474px;}
.y187{bottom:10.020584px;}
.y198{bottom:17.971802px;}
.y19a{bottom:17.971985px;}
.y19c{bottom:17.972122px;}
.y19e{bottom:17.972397px;}
.yd0{bottom:21.271820px;}
.y18b{bottom:22.021957px;}
.y18e{bottom:22.022232px;}
.y191{bottom:22.022415px;}
.y189{bottom:26.665924px;}
.y193{bottom:26.666702px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y32{bottom:112.944300px;}
.y234{bottom:112.966760px;}
.y9f{bottom:113.269798px;}
.y16b{bottom:113.689796px;}
.y108{bottom:114.874786px;}
.yc3{bottom:114.874969px;}
.y27a{bottom:116.614803px;}
.y1c4{bottom:118.567497px;}
.y1c5{bottom:121.915203px;}
.y2d{bottom:122.461349px;}
.y13c{bottom:126.448803px;}
.y31{bottom:127.938300px;}
.y233{bottom:127.960760px;}
.y279{bottom:131.608823px;}
.y2bb{bottom:132.004050px;}
.y107{bottom:133.624786px;}
.yc2{bottom:133.624969px;}
.y1c2{bottom:137.355000px;}
.y201{bottom:137.532452px;}
.y1c3{bottom:140.702705px;}
.y2c{bottom:141.211349px;}
.y232{bottom:142.954760px;}
.y135{bottom:143.236805px;}
.y278{bottom:146.602823px;}
.y2ba{bottom:146.998050px;}
.y30{bottom:148.032303px;}
.y106{bottom:152.374786px;}
.yc1{bottom:152.374969px;}
.y200{bottom:152.526452px;}
.y1bf{bottom:156.067497px;}
.y231{bottom:157.948760px;}
.y1c1{bottom:159.415203px;}
.y2b{bottom:159.961349px;}
.y277{bottom:161.596823px;}
.y2b9{bottom:161.992050px;}
.y1ff{bottom:167.520452px;}
.y105{bottom:171.124786px;}
.yc0{bottom:171.124969px;}
.y230{bottom:172.942760px;}
.y2f{bottom:173.032803px;}
.y1bc{bottom:174.778496px;}
.y276{bottom:176.590823px;}
.y2b8{bottom:176.986050px;}
.y1be{bottom:178.127700px;}
.y2a{bottom:178.711349px;}
.y79{bottom:180.013792px;}
.y1ad{bottom:182.255997px;}
.y1fe{bottom:182.514452px;}
.y11d{bottom:186.562408px;}
.y22f{bottom:187.936760px;}
.y2e{bottom:188.026794px;}
.y104{bottom:189.874786px;}
.ybf{bottom:189.874969px;}
.y275{bottom:191.584823px;}
.y2b7{bottom:191.980060px;}
.y1ba{bottom:193.492493px;}
.y78{bottom:195.007792px;}
.y1bb{bottom:196.840210px;}
.y29{bottom:197.461349px;}
.y1fd{bottom:197.508452px;}
.y136{bottom:198.024049px;}
.y1ac{bottom:200.608798px;}
.y175{bottom:200.921551px;}
.y22e{bottom:202.930800px;}
.y274{bottom:206.578823px;}
.y2b6{bottom:206.974060px;}
.y103{bottom:208.624786px;}
.ybe{bottom:208.624969px;}
.y77{bottom:210.001792px;}
.y1a9{bottom:210.607498px;}
.y1b8{bottom:212.205002px;}
.y1fc{bottom:212.502452px;}
.y1b9{bottom:215.552696px;}
.y1ab{bottom:215.602798px;}
.y174{bottom:215.915551px;}
.y28{bottom:216.211349px;}
.y22d{bottom:217.924805px;}
.y273{bottom:221.572823px;}
.y2b5{bottom:221.968060px;}
.y76{bottom:224.995792px;}
.y102{bottom:227.374786px;}
.ybd{bottom:227.374969px;}
.y1a6{bottom:227.416489px;}
.y1fb{bottom:227.496452px;}
.y1a8{bottom:230.602798px;}
.y1a5{bottom:230.608798px;}
.y173{bottom:230.909551px;}
.y1b5{bottom:230.917511px;}
.y22c{bottom:232.918776px;}
.y1b7{bottom:234.265205px;}
.ye6{bottom:234.789908px;}
.y26{bottom:234.961349px;}
.y272{bottom:236.566823px;}
.y2b4{bottom:236.962060px;}
.y75{bottom:239.989792px;}
.y1fa{bottom:242.490452px;}
.y1a4{bottom:245.632798px;}
.y172{bottom:245.903551px;}
.y101{bottom:246.124786px;}
.ybc{bottom:246.124969px;}
.y22b{bottom:247.912776px;}
.ye5{bottom:249.783908px;}
.y1b2{bottom:249.792000px;}
.y271{bottom:251.560823px;}
.y2b3{bottom:251.956060px;}
.y137{bottom:252.800462px;}
.y1b4{bottom:252.977692px;}
.y25{bottom:253.711349px;}
.y1f9{bottom:257.484452px;}
.y1a3{bottom:260.626798px;}
.y171{bottom:260.897551px;}
.y22a{bottom:262.906776px;}
.ye4{bottom:264.777908px;}
.y100{bottom:264.874786px;}
.ybb{bottom:264.874969px;}
.y270{bottom:266.554823px;}
.y2b2{bottom:266.950060px;}
.y1b1{bottom:271.695460px;}
.y24{bottom:272.461349px;}
.y1f8{bottom:272.478452px;}
.y13a{bottom:275.243952px;}
.y1a2{bottom:275.620798px;}
.y170{bottom:275.891551px;}
.y229{bottom:277.900776px;}
.ye3{bottom:279.771908px;}
.y26f{bottom:281.548823px;}
.y2b1{bottom:281.944060px;}
.y74{bottom:282.165298px;}
.y5d{bottom:282.165344px;}
.yff{bottom:283.624786px;}
.yba{bottom:283.624969px;}
.y1f7{bottom:287.472452px;}
.y1a1{bottom:290.614798px;}
.y16f{bottom:290.885551px;}
.y23{bottom:291.211349px;}
.y228{bottom:292.894776px;}
.y26e{bottom:296.542823px;}
.y2b0{bottom:296.938060px;}
.y1b0{bottom:299.783710px;}
.y73{bottom:300.915298px;}
.y5c{bottom:300.915344px;}
.yfe{bottom:302.374786px;}
.yb9{bottom:302.374969px;}
.y1f6{bottom:302.466452px;}
.y1a0{bottom:305.608798px;}
.y16e{bottom:305.879549px;}
.y138{bottom:307.598538px;}
.y227{bottom:307.888776px;}
.y22{bottom:309.961349px;}
.y26d{bottom:311.536823px;}
.y2af{bottom:311.932060px;}
.y1af{bottom:314.777710px;}
.y72{bottom:319.665298px;}
.y5b{bottom:319.665344px;}
.y19f{bottom:320.602798px;}
.yfd{bottom:321.124786px;}
.yb8{bottom:321.124969px;}
.y226{bottom:322.882776px;}
.y26c{bottom:326.530823px;}
.y13b{bottom:326.793159px;}
.y2ae{bottom:326.926060px;}
.y21{bottom:328.711349px;}
.y1f5{bottom:336.177452px;}
.y225{bottom:337.876776px;}
.y71{bottom:338.415298px;}
.y5a{bottom:338.415344px;}
.yfc{bottom:339.874786px;}
.yb7{bottom:339.874969px;}
.y1d2{bottom:340.627818px;}
.y26b{bottom:341.524823px;}
.y2ad{bottom:341.920052px;}
.y20{bottom:347.461349px;}
.ye2{bottom:348.006135px;}
.y134{bottom:349.519942px;}
.y224{bottom:352.870776px;}
.y13e{bottom:353.892150px;}
.y1d1{bottom:355.621818px;}
.y26a{bottom:356.518823px;}
.y16d{bottom:356.586299px;}
.y2ac{bottom:356.914086px;}
.y70{bottom:357.165298px;}
.y59{bottom:357.165344px;}
.y157{bottom:358.485260px;}
.y16a{bottom:358.485306px;}
.yfb{bottom:358.624786px;}
.yb6{bottom:358.624969px;}
.y139{bottom:362.385783px;}
.y133{bottom:364.513942px;}
.y1f{bottom:366.211349px;}
.ye1{bottom:366.799635px;}
.y223{bottom:367.864776px;}
.y1f4{bottom:369.927452px;}
.y1d0{bottom:370.615818px;}
.y269{bottom:371.512823px;}
.y16c{bottom:371.580299px;}
.y2ab{bottom:371.908086px;}
.y13d{bottom:372.918892px;}
.y6f{bottom:375.915298px;}
.y58{bottom:375.915344px;}
.y156{bottom:377.235260px;}
.y169{bottom:377.235306px;}
.yfa{bottom:377.374786px;}
.yb5{bottom:377.374969px;}
.y132{bottom:379.507942px;}
.y180{bottom:382.110461px;}
.y222{bottom:382.858776px;}
.y1e{bottom:384.961349px;}
.ye0{bottom:385.516635px;}
.y1cf{bottom:385.609818px;}
.y268{bottom:386.506823px;}
.y2aa{bottom:386.902086px;}
.y6e{bottom:394.665298px;}
.y57{bottom:394.665344px;}
.y155{bottom:395.985260px;}
.y168{bottom:395.985306px;}
.yf9{bottom:396.124786px;}
.yb4{bottom:396.124969px;}
.y221{bottom:397.852760px;}
.y17f{bottom:400.860461px;}
.y267{bottom:401.500823px;}
.y2a9{bottom:401.896086px;}
.y1d{bottom:403.711349px;}
.ydf{bottom:404.233635px;}
.y1f3{bottom:407.521214px;}
.y220{bottom:412.846760px;}
.y6d{bottom:413.415298px;}
.y56{bottom:413.415344px;}
.y154{bottom:414.735260px;}
.y167{bottom:414.735306px;}
.yf8{bottom:414.874786px;}
.yb3{bottom:414.874969px;}
.y266{bottom:416.494823px;}
.y2a8{bottom:416.890086px;}
.y27{bottom:422.461349px;}
.y1f2{bottom:422.515214px;}
.yde{bottom:422.950635px;}
.y21f{bottom:427.840760px;}
.y195{bottom:428.984985px;}
.y197{bottom:431.216080px;}
.y265{bottom:431.488823px;}
.y2a7{bottom:431.884086px;}
.y6c{bottom:432.165298px;}
.y55{bottom:432.165344px;}
.y194{bottom:432.885452px;}
.y153{bottom:433.485260px;}
.y166{bottom:433.485306px;}
.yf7{bottom:433.624786px;}
.yb2{bottom:433.624969px;}
.y199{bottom:434.955734px;}
.y19b{bottom:434.955917px;}
.y19d{bottom:434.956055px;}
.y1e0{bottom:441.132913px;}
.y1c{bottom:441.211349px;}
.y9e{bottom:441.267748px;}
.ydd{bottom:441.667635px;}
.y21e{bottom:442.834760px;}
.y264{bottom:446.482823px;}
.y2a6{bottom:446.878086px;}
.y12f{bottom:448.528793px;}
.y6b{bottom:450.915298px;}
.y54{bottom:450.915344px;}
.y152{bottom:452.235260px;}
.y165{bottom:452.235306px;}
.yf6{bottom:452.374786px;}
.yb1{bottom:452.374969px;}
.y1f1{bottom:456.226214px;}
.y21d{bottom:457.828760px;}
.y1df{bottom:459.926413px;}
.y9d{bottom:460.061248px;}
.ydc{bottom:460.384635px;}
.y263{bottom:461.476823px;}
.y2a5{bottom:461.872086px;}
.y122{bottom:465.274796px;}
.y17e{bottom:466.785461px;}
.y6a{bottom:469.665298px;}
.y53{bottom:469.665344px;}
.y151{bottom:470.985260px;}
.y164{bottom:470.985306px;}
.yf5{bottom:471.124786px;}
.yb0{bottom:471.124969px;}
.y1f0{bottom:471.220214px;}
.y21c{bottom:472.822760px;}
.y262{bottom:476.470823px;}
.y2a4{bottom:476.866086px;}
.y1de{bottom:478.643413px;}
.y9c{bottom:478.778248px;}
.y17c{bottom:479.648987px;}
.y17b{bottom:485.535461px;}
.y1ef{bottom:486.214214px;}
.y123{bottom:486.692475px;}
.y21b{bottom:487.816818px;}
.y69{bottom:488.415298px;}
.y52{bottom:488.415344px;}
.ydb{bottom:488.472885px;}
.y150{bottom:489.735260px;}
.y163{bottom:489.735306px;}
.yf4{bottom:489.874786px;}
.yaf{bottom:489.874969px;}
.y261{bottom:491.464823px;}
.y2a3{bottom:491.860086px;}
.y12d{bottom:492.390164px;}
.y9b{bottom:493.772248px;}
.y1dd{bottom:497.355922px;}
.y1b{bottom:497.461349px;}
.y1ee{bottom:501.208214px;}
.y21a{bottom:502.810768px;}
.y17a{bottom:504.285461px;}
.y260{bottom:506.458823px;}
.y2a2{bottom:506.854086px;}
.y68{bottom:507.165298px;}
.y51{bottom:507.165344px;}
.y124{bottom:508.110155px;}
.y14f{bottom:508.485260px;}
.y162{bottom:508.485306px;}
.yf3{bottom:508.624786px;}
.yae{bottom:508.624969px;}
.y9a{bottom:512.489248px;}
.yda{bottom:513.963455px;}
.y1dc{bottom:516.068385px;}
.y1ed{bottom:516.202214px;}
.y219{bottom:517.804768px;}
.y25f{bottom:521.452823px;}
.y2a1{bottom:521.848086px;}
.y67{bottom:525.915298px;}
.y50{bottom:525.915344px;}
.y14e{bottom:527.235260px;}
.y161{bottom:527.235306px;}
.yf2{bottom:527.374786px;}
.yad{bottom:527.374969px;}
.y125{bottom:529.538647px;}
.y1ec{bottom:531.196214px;}
.y99{bottom:531.206248px;}
.y186{bottom:532.410004px;}
.y218{bottom:532.798768px;}
.y1db{bottom:534.772635px;}
.y1a{bottom:534.961349px;}
.y25e{bottom:536.446823px;}
.y2a0{bottom:536.842072px;}
.y188{bottom:538.691116px;}
.y185{bottom:540.660461px;}
.y18a{bottom:542.430771px;}
.y18d{bottom:542.430908px;}
.y190{bottom:542.431046px;}
.y66{bottom:544.665298px;}
.y4f{bottom:544.665344px;}
.y14d{bottom:545.985260px;}
.y160{bottom:545.985306px;}
.yf1{bottom:546.124786px;}
.yac{bottom:546.124969px;}
.y1eb{bottom:546.190214px;}
.y217{bottom:547.792768px;}
.y98{bottom:549.923248px;}
.y126{bottom:550.956327px;}
.y25d{bottom:551.440823px;}
.y18c{bottom:551.489548px;}
.y18f{bottom:551.489685px;}
.y192{bottom:551.489868px;}
.y29f{bottom:551.836029px;}
.y1da{bottom:553.489635px;}
.y19{bottom:553.711349px;}
.y1ea{bottom:561.184214px;}
.ycf{bottom:562.652985px;}
.y216{bottom:562.786768px;}
.y65{bottom:563.415298px;}
.y4e{bottom:563.415344px;}
.y14c{bottom:564.735260px;}
.y15f{bottom:564.735306px;}
.yf0{bottom:564.874786px;}
.yab{bottom:564.874969px;}
.y25c{bottom:566.434823px;}
.y29e{bottom:566.830073px;}
.yd2{bottom:567.993300px;}
.y97{bottom:568.640248px;}
.y1d9{bottom:572.206635px;}
.y127{bottom:572.352383px;}
.y18{bottom:572.461349px;}
.y1e9{bottom:576.178214px;}
.y215{bottom:577.780768px;}
.y179{bottom:578.910461px;}
.y25b{bottom:581.428823px;}
.y29d{bottom:581.824073px;}
.y64{bottom:582.165298px;}
.y4d{bottom:582.165344px;}
.y14b{bottom:583.485260px;}
.y15e{bottom:583.485306px;}
.yef{bottom:583.624786px;}
.yaa{bottom:583.624969px;}
.yce{bottom:583.924805px;}
.y94{bottom:587.344498px;}
.y1d8{bottom:590.923635px;}
.y1e8{bottom:591.172214px;}
.y17{bottom:591.211349px;}
.y214{bottom:592.774768px;}
.y128{bottom:593.770063px;}
.y25a{bottom:596.422823px;}
.y29c{bottom:596.818039px;}
.y178{bottom:597.660308px;}
.yc9{bottom:599.334320px;}
.y63{bottom:600.915298px;}
.y4c{bottom:600.915344px;}
.y14a{bottom:602.235260px;}
.y15d{bottom:602.235306px;}
.y93{bottom:602.338498px;}
.y96{bottom:602.351248px;}
.yee{bottom:602.374786px;}
.ya9{bottom:602.374969px;}
.y1e7{bottom:606.166214px;}
.y213{bottom:607.768768px;}
.y1d7{bottom:609.640635px;}
.y16{bottom:609.961349px;}
.y259{bottom:611.416823px;}
.y29b{bottom:611.812049px;}
.y129{bottom:615.187743px;}
.y177{bottom:616.410308px;}
.y92{bottom:617.332498px;}
.y95{bottom:617.345248px;}
.y62{bottom:619.665298px;}
.y4b{bottom:619.665344px;}
.y149{bottom:620.985260px;}
.y15c{bottom:620.985306px;}
.yed{bottom:621.124786px;}
.ya8{bottom:621.124969px;}
.y212{bottom:622.762802px;}
.y1d6{bottom:624.634635px;}
.y258{bottom:626.410823px;}
.y29a{bottom:626.806049px;}
.y15{bottom:628.711349px;}
.y91{bottom:636.049498px;}
.y12a{bottom:636.605423px;}
.y211{bottom:637.756760px;}
.y4a{bottom:638.415344px;}
.y148{bottom:639.735260px;}
.y15b{bottom:639.735306px;}
.yec{bottom:639.874786px;}
.ya7{bottom:639.874969px;}
.y257{bottom:641.404823px;}
.y299{bottom:641.800049px;}
.y182{bottom:644.536514px;}
.y181{bottom:645.885448px;}
.y12e{bottom:646.179428px;}
.y14{bottom:647.461349px;}
.y184{bottom:648.270447px;}
.y1d5{bottom:652.722885px;}
.y210{bottom:652.750760px;}
.y121{bottom:654.206095px;}
.y90{bottom:654.766498px;}
.y256{bottom:656.398823px;}
.y298{bottom:656.794073px;}
.y61{bottom:657.165298px;}
.y49{bottom:657.165344px;}
.y12b{bottom:658.023103px;}
.y147{bottom:658.485260px;}
.y15a{bottom:658.485306px;}
.yeb{bottom:658.624786px;}
.ya6{bottom:658.624969px;}
.yca{bottom:660.053070px;}
.y13{bottom:666.211349px;}
.y20f{bottom:667.744760px;}
.y120{bottom:669.200095px;}
.y131{bottom:671.125809px;}
.y255{bottom:671.392823px;}
.y297{bottom:671.788073px;}
.y8f{bottom:673.483498px;}
.y48{bottom:675.915344px;}
.y146{bottom:677.235260px;}
.y159{bottom:677.235306px;}
.yea{bottom:677.374786px;}
.ya5{bottom:677.374969px;}
.y1d4{bottom:678.219455px;}
.y12c{bottom:679.419160px;}
.y20e{bottom:682.738760px;}
.y11f{bottom:684.194095px;}
.y12{bottom:684.961349px;}
.y254{bottom:686.386823px;}
.y296{bottom:686.782073px;}
.y8e{bottom:692.200498px;}
.y130{bottom:692.664917px;}
.y1d3{bottom:693.213455px;}
.y47{bottom:694.665344px;}
.y145{bottom:695.985260px;}
.y176{bottom:695.985306px;}
.ye9{bottom:696.124786px;}
.ya4{bottom:696.124969px;}
.y20d{bottom:697.732760px;}
.yd1{bottom:699.021286px;}
.y11e{bottom:699.188095px;}
.y253{bottom:701.380823px;}
.y295{bottom:701.776073px;}
.y11{bottom:703.711395px;}
.y8d{bottom:710.917498px;}
.y20c{bottom:712.726760px;}
.y46{bottom:713.415344px;}
.y144{bottom:714.735260px;}
.y158{bottom:714.735306px;}
.ye8{bottom:714.874786px;}
.ya3{bottom:714.874969px;}
.y252{bottom:716.374823px;}
.y294{bottom:716.770073px;}
.ycb{bottom:720.750966px;}
.y10{bottom:722.461395px;}
.y20b{bottom:727.720760px;}
.y8c{bottom:729.634498px;}
.y251{bottom:731.368823px;}
.y293{bottom:731.764083px;}
.y45{bottom:732.165344px;}
.y143{bottom:733.485260px;}
.ye7{bottom:733.624786px;}
.ya2{bottom:733.624969px;}
.yf{bottom:741.211395px;}
.y20a{bottom:742.714760px;}
.y250{bottom:746.362823px;}
.y292{bottom:746.758083px;}
.y11c{bottom:750.152985px;}
.y44{bottom:750.915344px;}
.y142{bottom:752.235260px;}
.ya1{bottom:752.374969px;}
.y11b{bottom:756.195282px;}
.y209{bottom:757.708760px;}
.y8b{bottom:757.722748px;}
.ye{bottom:759.961395px;}
.y24f{bottom:761.356823px;}
.y291{bottom:761.752083px;}
.yd9{bottom:764.468399px;}
.y43{bottom:769.665344px;}
.y119{bottom:770.126034px;}
.y141{bottom:770.985260px;}
.ya0{bottom:771.124969px;}
.y208{bottom:772.702760px;}
.y24e{bottom:776.350823px;}
.y290{bottom:776.746083px;}
.yd8{bottom:778.268738px;}
.yd{bottom:778.711395px;}
.ycc{bottom:781.480142px;}
.y8a{bottom:783.213318px;}
.y10a{bottom:783.916767px;}
.y110{bottom:785.322327px;}
.y207{bottom:787.696838px;}
.y42{bottom:788.415344px;}
.y140{bottom:789.735260px;}
.y1e6{bottom:789.874969px;}
.y24d{bottom:791.344823px;}
.y28f{bottom:791.740083px;}
.yd7{bottom:792.055756px;}
.yc{bottom:797.461395px;}
.y109{bottom:798.910767px;}
.y111{bottom:799.818330px;}
.y206{bottom:802.690760px;}
.y11a{bottom:805.737122px;}
.yd6{bottom:805.842865px;}
.y24c{bottom:806.338823px;}
.y28e{bottom:806.734083px;}
.y41{bottom:807.165344px;}
.y13f{bottom:808.485260px;}
.y1e5{bottom:808.624969px;}
.y112{bottom:814.326004px;}
.yb{bottom:816.211395px;}
.y205{bottom:817.684760px;}
.yc5{bottom:818.116840px;}
.yd5{bottom:819.641693px;}
.y24b{bottom:821.332823px;}
.y28d{bottom:821.728083px;}
.y40{bottom:825.915344px;}
.y85{bottom:827.235260px;}
.y1e4{bottom:827.374969px;}
.y113{bottom:828.868693px;}
.y204{bottom:832.678760px;}
.yc8{bottom:833.005011px;}
.yc4{bottom:833.110840px;}
.yd4{bottom:833.428802px;}
.ya{bottom:834.961395px;}
.y24a{bottom:836.326823px;}
.y28c{bottom:836.722083px;}
.ycd{bottom:842.178037px;}
.y114{bottom:843.364696px;}
.y3f{bottom:844.665344px;}
.y84{bottom:845.985260px;}
.y1e3{bottom:846.124969px;}
.y203{bottom:847.672760px;}
.yc7{bottom:847.999011px;}
.y249{bottom:851.320823px;}
.y28b{bottom:851.716083px;}
.yd3{bottom:857.007019px;}
.y115{bottom:857.860699px;}
.yc6{bottom:862.993011px;}
.y3e{bottom:863.415344px;}
.y83{bottom:864.735260px;}
.y1e2{bottom:864.874969px;}
.y248{bottom:866.314823px;}
.y28a{bottom:866.710052px;}
.y116{bottom:872.403388px;}
.y9{bottom:879.144153px;}
.y10f{bottom:879.496687px;}
.y247{bottom:881.308823px;}
.y202{bottom:881.422760px;}
.y289{bottom:881.704076px;}
.y60{bottom:882.165344px;}
.y82{bottom:883.485260px;}
.y1e1{bottom:883.624969px;}
.y117{bottom:886.911063px;}
.y33{bottom:893.550018px;}
.y8{bottom:894.138153px;}
.y10e{bottom:894.490687px;}
.y246{bottom:896.302823px;}
.y288{bottom:896.698076px;}
.y3d{bottom:900.915344px;}
.y118{bottom:901.407066px;}
.y81{bottom:902.235260px;}
.y10d{bottom:909.484687px;}
.y245{bottom:911.296823px;}
.y287{bottom:911.692076px;}
.y5f{bottom:919.665344px;}
.y80{bottom:920.985260px;}
.y10c{bottom:924.478687px;}
.y244{bottom:926.290823px;}
.y286{bottom:926.686066px;}
.y7{bottom:936.738190px;}
.y5e{bottom:938.415344px;}
.y10b{bottom:939.472687px;}
.y89{bottom:939.735260px;}
.y1ce{bottom:939.735306px;}
.y243{bottom:941.284823px;}
.y285{bottom:941.680023px;}
.y242{bottom:956.278823px;}
.y284{bottom:956.674073px;}
.y3c{bottom:957.165344px;}
.y7f{bottom:958.485260px;}
.y1cd{bottom:958.485306px;}
.y241{bottom:971.272823px;}
.y283{bottom:971.668073px;}
.y3b{bottom:975.915344px;}
.y88{bottom:977.235260px;}
.y1cc{bottom:977.235306px;}
.y6{bottom:981.424622px;}
.y240{bottom:986.266846px;}
.y282{bottom:986.662073px;}
.y3a{bottom:994.665344px;}
.y7e{bottom:995.985260px;}
.y1cb{bottom:995.985306px;}
.y23f{bottom:1001.260823px;}
.y281{bottom:1001.656073px;}
.y5{bottom:1008.424622px;}
.y39{bottom:1013.415344px;}
.y87{bottom:1014.735260px;}
.y1ca{bottom:1014.735306px;}
.y23e{bottom:1016.254823px;}
.y280{bottom:1016.650073px;}
.y23d{bottom:1031.248823px;}
.y27f{bottom:1031.644073px;}
.y38{bottom:1032.165344px;}
.y86{bottom:1033.485260px;}
.y1c9{bottom:1033.485306px;}
.y238{bottom:1045.120844px;}
.y23c{bottom:1046.242823px;}
.y2bf{bottom:1046.255573px;}
.y27e{bottom:1046.638073px;}
.y37{bottom:1050.915344px;}
.y7d{bottom:1052.235260px;}
.y1c8{bottom:1052.235306px;}
.y237{bottom:1060.114844px;}
.y23b{bottom:1061.236823px;}
.y2be{bottom:1061.249573px;}
.y27d{bottom:1061.632042px;}
.y36{bottom:1069.665344px;}
.y7c{bottom:1070.985260px;}
.y1c7{bottom:1070.985306px;}
.y236{bottom:1075.108844px;}
.y4{bottom:1076.132080px;}
.y23a{bottom:1076.230823px;}
.y2bd{bottom:1076.243573px;}
.y27c{bottom:1076.626042px;}
.y35{bottom:1088.415344px;}
.y7b{bottom:1089.735260px;}
.y1c6{bottom:1089.735306px;}
.y235{bottom:1090.102844px;}
.y239{bottom:1091.224823px;}
.y2bc{bottom:1091.237573px;}
.y27b{bottom:1091.620042px;}
.y3{bottom:1109.586639px;}
.y34{bottom:1126.004974px;}
.y7a{bottom:1126.905029px;}
.h2f{height:3.960990px;}
.h35{height:8.850000px;}
.h39{height:11.998500px;}
.h3c{height:12.000000px;}
.h37{height:13.650000px;}
.h28{height:13.950000px;}
.h26{height:16.050000px;}
.h2a{height:18.784694px;}
.h32{height:19.050000px;}
.h36{height:22.485973px;}
.h1e{height:27.720813px;}
.h2c{height:27.750000px;}
.h21{height:27.772735px;}
.h30{height:28.398895px;}
.h15{height:28.904753px;}
.he{height:31.130399px;}
.h16{height:31.987910px;}
.h1b{height:32.353398px;}
.h19{height:33.511144px;}
.h2{height:33.840000px;}
.h38{height:34.366316px;}
.h1f{height:34.745634px;}
.h31{height:34.748684px;}
.h22{height:34.810537px;}
.h3a{height:34.825214px;}
.h1c{height:35.804538px;}
.hf{height:35.955000px;}
.h18{height:38.539669px;}
.h2d{height:39.249808px;}
.h34{height:40.030003px;}
.h27{height:40.450108px;}
.h2b{height:40.570138px;}
.h29{height:40.990243px;}
.h20{height:41.862467px;}
.h23{height:41.940437px;}
.h3b{height:44.450960px;}
.hd{height:44.472000px;}
.h4b{height:44.472025px;}
.h4a{height:44.472057px;}
.h4c{height:44.472085px;}
.h47{height:44.472120px;}
.h45{height:44.472124px;}
.h48{height:44.472136px;}
.h40{height:44.472144px;}
.h43{height:44.472154px;}
.h44{height:44.472172px;}
.h49{height:44.472176px;}
.h41{height:44.472182px;}
.h46{height:44.472199px;}
.h42{height:44.472246px;}
.h3f{height:44.489963px;}
.h3e{height:44.490147px;}
.h3d{height:44.523000px;}
.h4{height:44.676000px;}
.h11{height:45.186000px;}
.h12{height:51.434454px;}
.h14{height:51.530362px;}
.h1a{height:51.647454px;}
.h9{height:52.320000px;}
.h24{height:52.320183px;}
.h25{height:52.320612px;}
.hb{height:53.160000px;}
.h2e{height:54.207694px;}
.h3{height:54.862258px;}
.h33{height:55.407628px;}
.h5{height:55.461000px;}
.h13{height:59.004000px;}
.h8{height:59.340000px;}
.ha{height:60.623817px;}
.h10{height:60.624000px;}
.h7{height:64.866000px;}
.hc{height:71.208000px;}
.h6{height:85.056000px;}
.h1d{height:198.881996px;}
.h17{height:309.901497px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w8{width:11.863500px;}
.wb{width:11.865000px;}
.w9{width:13.365000px;}
.w4{width:15.705000px;}
.wd{width:19.125000px;}
.we{width:19.500000px;}
.wc{width:19.515000px;}
.wa{width:36.944999px;}
.w7{width:153.105000px;}
.w5{width:191.100002px;}
.w6{width:287.623489px;}
.w2{width:541.113007px;}
.w3{width:541.244980px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:53.521048px;}
.x44{left:59.114256px;}
.x37{left:66.405756px;}
.x3{left:76.535402px;}
.xa{left:78.746400px;}
.x36{left:83.986948px;}
.x4{left:85.181849px;}
.x43{left:86.645399px;}
.x4a{left:89.900402px;}
.x5{left:93.545402px;}
.x8{left:97.796104px;}
.x54{left:102.048152px;}
.x31{left:107.170206px;}
.x39{left:119.878950px;}
.x2e{left:122.429249px;}
.x33{left:125.638350px;}
.x47{left:127.626760px;}
.x45{left:142.670403px;}
.x49{left:148.160414px;}
.x3c{left:149.835600px;}
.x38{left:158.804100px;}
.x46{left:166.525050px;}
.x30{left:176.078396px;}
.x35{left:177.370794px;}
.x24{left:187.858521px;}
.x32{left:194.546539px;}
.x3a{left:203.435097px;}
.x48{left:211.196411px;}
.x3b{left:212.763748px;}
.x2b{left:221.248489px;}
.x3f{left:224.436613px;}
.x12{left:233.493521px;}
.x2c{left:236.670593px;}
.xb{left:242.482247px;}
.x34{left:246.292511px;}
.x40{left:267.434401px;}
.x17{left:275.264992px;}
.x3d{left:278.036110px;}
.x42{left:280.448095px;}
.x3e{left:287.364761px;}
.x27{left:289.120056px;}
.x22{left:291.006752px;}
.x25{left:294.198388px;}
.x1a{left:296.343155px;}
.x1e{left:298.449600px;}
.x20{left:302.032751px;}
.x1f{left:304.367051px;}
.x16{left:308.216400px;}
.x26{left:311.064405px;}
.x21{left:334.759637px;}
.x9{left:339.825005px;}
.x41{left:350.989952px;}
.x29{left:364.335297px;}
.x1d{left:371.337296px;}
.x4b{left:385.097394px;}
.xc{left:389.770247px;}
.x50{left:393.724640px;}
.xd{left:398.771747px;}
.x2d{left:416.220599px;}
.x1c{left:426.393448px;}
.x28{left:456.256805px;}
.x6{left:459.215389px;}
.x1b{left:462.518097px;}
.x2a{left:467.762558px;}
.x7{left:476.225389px;}
.x4c{left:478.809894px;}
.x53{left:484.725290px;}
.x18{left:492.452110px;}
.x23{left:526.328979px;}
.xe{left:534.699497px;}
.xf{left:543.700997px;}
.x4d{left:556.470144px;}
.x51{left:575.288540px;}
.x15{left:607.056642px;}
.x14{left:617.619598px;}
.x4e{left:653.459392px;}
.x10{left:690.262246px;}
.x11{left:699.263746px;}
.x1{left:728.220612px;}
.x52{left:744.085790px;}
.x4f{left:748.867640px;}
.x2{left:755.489868px;}
.x13{left:798.570007px;}
.x19{left:803.120728px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v6{vertical-align:-16.537466pt;}
.v4{vertical-align:-13.333333pt;}
.v7{vertical-align:-11.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:13.333333pt;}
.v3{vertical-align:18.048049pt;}
.v1{vertical-align:21.333333pt;}
.ls9b{letter-spacing:-1.120000pt;}
.ls78{letter-spacing:-1.066667pt;}
.ls7b{letter-spacing:-1.013333pt;}
.ls9a{letter-spacing:-0.906667pt;}
.ls9d{letter-spacing:-0.858875pt;}
.ls7a{letter-spacing:-0.800000pt;}
.ls66{letter-spacing:-0.725333pt;}
.ls9f{letter-spacing:-0.697981pt;}
.ls99{letter-spacing:-0.693333pt;}
.ls6e{letter-spacing:-0.666314pt;}
.ls9c{letter-spacing:-0.640000pt;}
.ls74{letter-spacing:-0.616205pt;}
.ls6b{letter-spacing:-0.615059pt;}
.ls79{letter-spacing:-0.480000pt;}
.ls4c{letter-spacing:-0.444902pt;}
.ls2e{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.373333pt;}
.lse3{letter-spacing:-0.362667pt;}
.ls3a{letter-spacing:-0.320000pt;}
.lscc{letter-spacing:-0.317333pt;}
.lsd0{letter-spacing:-0.272000pt;}
.ls2d{letter-spacing:-0.266667pt;}
.ls9e{letter-spacing:-0.261333pt;}
.ls64{letter-spacing:-0.248992pt;}
.lse0{letter-spacing:-0.226667pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls65{letter-spacing:-0.207493pt;}
.ls6d{letter-spacing:-0.205020pt;}
.lscd{letter-spacing:-0.181333pt;}
.ls48{letter-spacing:-0.164119pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls61{letter-spacing:-0.137776pt;}
.lscf{letter-spacing:-0.136000pt;}
.ls49{letter-spacing:-0.123090pt;}
.ls16{letter-spacing:-0.106667pt;}
.ls4b{letter-spacing:-0.098867pt;}
.lsce{letter-spacing:-0.090667pt;}
.ls4e{letter-spacing:-0.082060pt;}
.ls13{letter-spacing:-0.053333pt;}
.ls73{letter-spacing:-0.051350pt;}
.ls6a{letter-spacing:-0.051255pt;}
.ls4d{letter-spacing:-0.049434pt;}
.ls60{letter-spacing:-0.045925pt;}
.lse1{letter-spacing:-0.045333pt;}
.ls47{letter-spacing:-0.041030pt;}
.lsa0{letter-spacing:-0.031726pt;}
.ls12{letter-spacing:0.000000pt;}
.lsdd{letter-spacing:0.000012pt;}
.ls95{letter-spacing:0.000800pt;}
.ls8c{letter-spacing:0.001649pt;}
.ls8f{letter-spacing:0.001693pt;}
.ls85{letter-spacing:0.003805pt;}
.ls83{letter-spacing:0.012052pt;}
.ls98{letter-spacing:0.012083pt;}
.ls96{letter-spacing:0.012123pt;}
.ls90{letter-spacing:0.014086pt;}
.ls8d{letter-spacing:0.014125pt;}
.ls7d{letter-spacing:0.014127pt;}
.ls7f{letter-spacing:0.014168pt;}
.ls77{letter-spacing:0.022940pt;}
.lsae{letter-spacing:0.037333pt;}
.ls6f{letter-spacing:0.038513pt;}
.ls3f{letter-spacing:0.041030pt;}
.ls54{letter-spacing:0.041499pt;}
.ls56{letter-spacing:0.042541pt;}
.ls57{letter-spacing:0.042621pt;}
.lsb3{letter-spacing:0.045333pt;}
.ls40{letter-spacing:0.049434pt;}
.ls27{letter-spacing:0.053333pt;}
.ls14{letter-spacing:0.074667pt;}
.ls55{letter-spacing:0.085083pt;}
.ls58{letter-spacing:0.085242pt;}
.lsc4{letter-spacing:0.090502pt;}
.lsbc{letter-spacing:0.090667pt;}
.ls7{letter-spacing:0.106667pt;}
.ls94{letter-spacing:0.112000pt;}
.lsaa{letter-spacing:0.118901pt;}
.ls3e{letter-spacing:0.123090pt;}
.ls5a{letter-spacing:0.127862pt;}
.ls31{letter-spacing:0.133333pt;}
.lsc0{letter-spacing:0.136000pt;}
.lsa9{letter-spacing:0.151432pt;}
.ls10{letter-spacing:0.158926pt;}
.ls29{letter-spacing:0.160000pt;}
.ls62{letter-spacing:0.165995pt;}
.lsdb{letter-spacing:0.181246pt;}
.lsbe{letter-spacing:0.181333pt;}
.lsa{letter-spacing:0.186667pt;}
.lsd3{letter-spacing:0.204000pt;}
.ls41{letter-spacing:0.205149pt;}
.ls1{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.226667pt;}
.lsb9{letter-spacing:0.234667pt;}
.ls76{letter-spacing:0.240000pt;}
.ls93{letter-spacing:0.248389pt;}
.lsdc{letter-spacing:0.249333pt;}
.lsbd{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.lsd2{letter-spacing:0.272000pt;}
.ls44{letter-spacing:0.287209pt;}
.ls1b{letter-spacing:0.293333pt;}
.lsd9{letter-spacing:0.294667pt;}
.ls4a{letter-spacing:0.296602pt;}
.lsda{letter-spacing:0.317316pt;}
.lsba{letter-spacing:0.317333pt;}
.ls8{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.346667pt;}
.lsbb{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.373333pt;}
.lsc9{letter-spacing:0.385333pt;}
.ls5{letter-spacing:0.394667pt;}
.ls50{letter-spacing:0.400000pt;}
.lsc8{letter-spacing:0.407923pt;}
.lsd1{letter-spacing:0.408000pt;}
.ls91{letter-spacing:0.410667pt;}
.ls63{letter-spacing:0.414987pt;}
.ls3{letter-spacing:0.426667pt;}
.ls26{letter-spacing:0.453333pt;}
.lsa6{letter-spacing:0.458171pt;}
.lsa4{letter-spacing:0.458659pt;}
.ls7c{letter-spacing:0.458667pt;}
.ls4{letter-spacing:0.480000pt;}
.lsbf{letter-spacing:0.498667pt;}
.lse{letter-spacing:0.506667pt;}
.lsf{letter-spacing:0.533333pt;}
.lsb2{letter-spacing:0.544000pt;}
.lsa1{letter-spacing:0.549322pt;}
.lscb{letter-spacing:0.566667pt;}
.lsa7{letter-spacing:0.576630pt;}
.ls6{letter-spacing:0.586667pt;}
.lsdf{letter-spacing:0.589297pt;}
.lsd5{letter-spacing:0.589333pt;}
.ls92{letter-spacing:0.597333pt;}
.lsaf{letter-spacing:0.612000pt;}
.ls28{letter-spacing:0.613333pt;}
.lsb5{letter-spacing:0.634667pt;}
.lsc{letter-spacing:0.640000pt;}
.lsd6{letter-spacing:0.657333pt;}
.lsa8{letter-spacing:0.657543pt;}
.ls2b{letter-spacing:0.666667pt;}
.ls2c{letter-spacing:0.672000pt;}
.lsb4{letter-spacing:0.680000pt;}
.ls22{letter-spacing:0.693333pt;}
.ls30{letter-spacing:0.720000pt;}
.lsb1{letter-spacing:0.725333pt;}
.lsa5{letter-spacing:0.728451pt;}
.ls1c{letter-spacing:0.746667pt;}
.lsd8{letter-spacing:0.770667pt;}
.ls23{letter-spacing:0.800000pt;}
.lsa3{letter-spacing:0.810767pt;}
.lsb0{letter-spacing:0.816000pt;}
.ls52{letter-spacing:0.826667pt;}
.ls1e{letter-spacing:0.853333pt;}
.lsb6{letter-spacing:0.861333pt;}
.ls4f{letter-spacing:0.880000pt;}
.lsd{letter-spacing:0.906667pt;}
.ls19{letter-spacing:0.933333pt;}
.lse2{letter-spacing:0.952000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls3c{letter-spacing:0.986667pt;}
.lse4{letter-spacing:0.997333pt;}
.lsb{letter-spacing:1.013333pt;}
.lsc2{letter-spacing:1.042667pt;}
.ls1d{letter-spacing:1.066667pt;}
.lsa2{letter-spacing:1.066689pt;}
.ls39{letter-spacing:1.087973pt;}
.lsb8{letter-spacing:1.088015pt;}
.lsca{letter-spacing:1.110667pt;}
.ls21{letter-spacing:1.120000pt;}
.lsc7{letter-spacing:1.133333pt;}
.ls3d{letter-spacing:1.173333pt;}
.lsc3{letter-spacing:1.178667pt;}
.lsc6{letter-spacing:1.224000pt;}
.ls1f{letter-spacing:1.226667pt;}
.ls51{letter-spacing:1.253333pt;}
.lsc1{letter-spacing:1.269333pt;}
.ls38{letter-spacing:1.280000pt;}
.ls2f{letter-spacing:1.333333pt;}
.lsde{letter-spacing:1.360000pt;}
.ls25{letter-spacing:1.386667pt;}
.lsc5{letter-spacing:1.405333pt;}
.ls36{letter-spacing:1.440000pt;}
.lsd7{letter-spacing:1.450667pt;}
.ls32{letter-spacing:1.493333pt;}
.lsd4{letter-spacing:1.541333pt;}
.ls3b{letter-spacing:1.546667pt;}
.ls20{letter-spacing:1.600000pt;}
.ls37{letter-spacing:1.653333pt;}
.ls33{letter-spacing:1.760000pt;}
.ls34{letter-spacing:1.866667pt;}
.ls35{letter-spacing:2.026667pt;}
.ls8e{letter-spacing:2.627354pt;}
.ls8b{letter-spacing:2.674804pt;}
.ls84{letter-spacing:2.675352pt;}
.ls1a{letter-spacing:2.773333pt;}
.ls0{letter-spacing:3.546667pt;}
.lsb7{letter-spacing:8.567985pt;}
.ls6c{letter-spacing:11.481105pt;}
.ls75{letter-spacing:11.502489pt;}
.ls88{letter-spacing:11.896306pt;}
.ls89{letter-spacing:14.529213pt;}
.ls87{letter-spacing:14.529742pt;}
.ls8a{letter-spacing:14.531329pt;}
.ls82{letter-spacing:14.830373pt;}
.ls80{letter-spacing:17.438771pt;}
.ls81{letter-spacing:17.456824pt;}
.ls7e{letter-spacing:17.486806pt;}
.ls86{letter-spacing:17.506263pt;}
.ls72{letter-spacing:26.997660pt;}
.ls69{letter-spacing:31.713879pt;}
.ls71{letter-spacing:36.779979pt;}
.ls70{letter-spacing:36.818492pt;}
.ls68{letter-spacing:41.324145pt;}
.ls67{letter-spacing:41.439469pt;}
.ls5e{letter-spacing:50.669872pt;}
.ls5f{letter-spacing:50.794368pt;}
.ls42{letter-spacing:61.093471pt;}
.ls43{letter-spacing:61.134501pt;}
.ls5d{letter-spacing:61.169035pt;}
.ls53{letter-spacing:71.792693pt;}
.ls46{letter-spacing:84.275346pt;}
.ls45{letter-spacing:94.737962pt;}
.ls5c{letter-spacing:136.463772pt;}
.ls59{letter-spacing:136.493225pt;}
.ls5b{letter-spacing:136.592500pt;}
.lsab{letter-spacing:342.131218pt;}
.lsac{letter-spacing:358.042656pt;}
.lsad{letter-spacing:360.581323pt;}
.ls97{letter-spacing:407.158920pt;}
.ws72{word-spacing:-94.737962pt;}
.ws73{word-spacing:-84.275346pt;}
.ws83{word-spacing:-81.171392pt;}
.ws84{word-spacing:-70.547733pt;}
.ws65{word-spacing:-70.407251pt;}
.ws63{word-spacing:-70.366221pt;}
.ws86{word-spacing:-60.173067pt;}
.ws85{word-spacing:-60.048571pt;}
.ws8d{word-spacing:-41.477910pt;}
.ws8f{word-spacing:-41.362586pt;}
.ws96{word-spacing:-36.857005pt;}
.ws98{word-spacing:-36.818492pt;}
.ws91{word-spacing:-31.752320pt;}
.ws9a{word-spacing:-27.036173pt;}
.ws9e{word-spacing:-23.107679pt;}
.ws95{word-spacing:-23.064720pt;}
.wsbb{word-spacing:-14.830373pt;}
.wsc2{word-spacing:-14.666667pt;}
.wsaf{word-spacing:-14.133333pt;}
.ws54{word-spacing:-14.080000pt;}
.wsa6{word-spacing:-13.973333pt;}
.ws7b{word-spacing:-13.600000pt;}
.ws25{word-spacing:-13.333333pt;}
.wscd{word-spacing:-13.184000pt;}
.ws26{word-spacing:-13.120000pt;}
.ws7{word-spacing:-12.928000pt;}
.wscf{word-spacing:-12.376000pt;}
.wsf3{word-spacing:-12.013333pt;}
.wsf2{word-spacing:-11.922667pt;}
.wsef{word-spacing:-11.900000pt;}
.wsd2{word-spacing:-11.741333pt;}
.wsd1{word-spacing:-11.718667pt;}
.wsf0{word-spacing:-11.650667pt;}
.ws9f{word-spacing:-11.605190pt;}
.wsce{word-spacing:-11.560000pt;}
.wsf1{word-spacing:-11.514667pt;}
.wsd0{word-spacing:-11.424000pt;}
.ws53{word-spacing:-11.333333pt;}
.ws6c{word-spacing:-11.171993pt;}
.ws6e{word-spacing:-11.122560pt;}
.ws2{word-spacing:-11.040000pt;}
.ws9d{word-spacing:-10.988985pt;}
.ws4{word-spacing:-10.986667pt;}
.ws94{word-spacing:-10.968556pt;}
.ws6d{word-spacing:-10.727091pt;}
.ws8c{word-spacing:-10.608000pt;}
.ws87{word-spacing:-10.333200pt;}
.wsc3{word-spacing:-10.266667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws24{word-spacing:-10.005333pt;}
.wsb3{word-spacing:-9.930667pt;}
.ws89{word-spacing:-9.793685pt;}
.wsb2{word-spacing:-9.744000pt;}
.wsb4{word-spacing:-9.706667pt;}
.ws9c{word-spacing:-9.632301pt;}
.ws93{word-spacing:-9.614341pt;}
.wscc{word-spacing:-9.565333pt;}
.ws88{word-spacing:-9.544693pt;}
.wsb5{word-spacing:-9.520000pt;}
.ws62{word-spacing:-9.477899pt;}
.wsb7{word-spacing:-9.445333pt;}
.ws5{word-spacing:-9.408000pt;}
.ws69{word-spacing:-9.395839pt;}
.wsc1{word-spacing:-9.370667pt;}
.wsac{word-spacing:-9.333333pt;}
.wscb{word-spacing:-9.316000pt;}
.ws6a{word-spacing:-9.231720pt;}
.ws8b{word-spacing:-9.171205pt;}
.ws8a{word-spacing:-9.129707pt;}
.ws6b{word-spacing:-9.108630pt;}
.wsb6{word-spacing:-9.072000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws27{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws9{word-spacing:-1.680000pt;}
.ws3c{word-spacing:-1.386667pt;}
.wsf{word-spacing:-1.333333pt;}
.wsc{word-spacing:-1.280000pt;}
.ws10{word-spacing:-1.226667pt;}
.ws51{word-spacing:-1.173333pt;}
.wsd6{word-spacing:-1.133333pt;}
.ws42{word-spacing:-1.120000pt;}
.ws2a{word-spacing:-1.066667pt;}
.wse4{word-spacing:-1.042667pt;}
.ws80{word-spacing:-1.013333pt;}
.ws29{word-spacing:-0.960000pt;}
.wsde{word-spacing:-0.952000pt;}
.ws35{word-spacing:-0.906667pt;}
.wsdc{word-spacing:-0.861333pt;}
.wsc5{word-spacing:-0.853333pt;}
.wsfd{word-spacing:-0.816000pt;}
.wsd{word-spacing:-0.800000pt;}
.ws78{word-spacing:-0.790938pt;}
.ws3d{word-spacing:-0.746667pt;}
.ws7a{word-spacing:-0.741504pt;}
.ws101{word-spacing:-0.725333pt;}
.ws1d{word-spacing:-0.693333pt;}
.wsdf{word-spacing:-0.680000pt;}
.ws14{word-spacing:-0.640000pt;}
.wse0{word-spacing:-0.634667pt;}
.wsf4{word-spacing:-0.589333pt;}
.ws16{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.544000pt;}
.wsa{word-spacing:-0.506667pt;}
.ws3e{word-spacing:-0.480000pt;}
.wsc0{word-spacing:-0.453333pt;}
.wsa7{word-spacing:-0.426667pt;}
.ws37{word-spacing:-0.373333pt;}
.wsc9{word-spacing:-0.320000pt;}
.ws104{word-spacing:-0.317333pt;}
.ws79{word-spacing:-0.296602pt;}
.ws18{word-spacing:-0.266667pt;}
.wsdb{word-spacing:-0.234667pt;}
.wsd9{word-spacing:-0.226667pt;}
.ws12{word-spacing:-0.213333pt;}
.ws1e{word-spacing:-0.160000pt;}
.ws107{word-spacing:-0.136000pt;}
.ws6f{word-spacing:-0.106667pt;}
.wse8{word-spacing:-0.090667pt;}
.wsad{word-spacing:-0.053347pt;}
.ws59{word-spacing:-0.053333pt;}
.ws77{word-spacing:-0.049434pt;}
.ws8{word-spacing:-0.045333pt;}
.wsb8{word-spacing:-0.045323pt;}
.ws0{word-spacing:-0.042667pt;}
.wsa5{word-spacing:-0.042621pt;}
.wsa4{word-spacing:-0.038513pt;}
.wsb{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.051255pt;}
.ws70{word-spacing:0.053333pt;}
.ws38{word-spacing:0.106667pt;}
.ws76{word-spacing:0.123090pt;}
.wsa1{word-spacing:0.137776pt;}
.ws36{word-spacing:0.160000pt;}
.ws20{word-spacing:0.213333pt;}
.ws11{word-spacing:0.266667pt;}
.wsd8{word-spacing:0.317333pt;}
.ws58{word-spacing:0.320000pt;}
.wsa9{word-spacing:0.373333pt;}
.ws41{word-spacing:0.426667pt;}
.wsa8{word-spacing:0.480000pt;}
.ws2c{word-spacing:0.533333pt;}
.ws7c{word-spacing:0.586667pt;}
.wsfb{word-spacing:0.589333pt;}
.wsa0{word-spacing:0.597029pt;}
.wse2{word-spacing:0.634667pt;}
.ws19{word-spacing:0.640000pt;}
.wsa3{word-spacing:0.666314pt;}
.ws4c{word-spacing:0.693333pt;}
.wsbf{word-spacing:0.697981pt;}
.wse5{word-spacing:0.725333pt;}
.ws1a{word-spacing:0.746667pt;}
.ws15{word-spacing:0.800000pt;}
.wsae{word-spacing:0.821533pt;}
.ws52{word-spacing:0.853333pt;}
.wse6{word-spacing:0.861333pt;}
.ws1f{word-spacing:0.906667pt;}
.ws75{word-spacing:0.943687pt;}
.ws106{word-spacing:0.952000pt;}
.wsaa{word-spacing:0.960000pt;}
.ws13{word-spacing:1.013333pt;}
.wsdd{word-spacing:1.042667pt;}
.ws71{word-spacing:1.066667pt;}
.ws4b{word-spacing:1.120000pt;}
.wsd5{word-spacing:1.133333pt;}
.ws50{word-spacing:1.173333pt;}
.wsf6{word-spacing:1.178667pt;}
.wsab{word-spacing:1.224000pt;}
.ws21{word-spacing:1.226667pt;}
.ws57{word-spacing:1.280000pt;}
.wsf8{word-spacing:1.314667pt;}
.wse{word-spacing:1.333333pt;}
.ws49{word-spacing:1.386667pt;}
.wsca{word-spacing:1.405333pt;}
.ws34{word-spacing:1.440000pt;}
.ws108{word-spacing:1.450667pt;}
.ws3f{word-spacing:1.493333pt;}
.ws74{word-spacing:1.518105pt;}
.wsee{word-spacing:1.541333pt;}
.ws7d{word-spacing:1.546667pt;}
.wse1{word-spacing:1.586667pt;}
.ws40{word-spacing:1.600000pt;}
.ws45{word-spacing:1.653333pt;}
.wsd7{word-spacing:1.677333pt;}
.ws5a{word-spacing:1.706667pt;}
.ws102{word-spacing:1.722667pt;}
.ws7e{word-spacing:1.760000pt;}
.wsf7{word-spacing:1.768000pt;}
.ws47{word-spacing:1.813333pt;}
.ws2d{word-spacing:1.866667pt;}
.ws5d{word-spacing:1.920000pt;}
.ws4e{word-spacing:1.973333pt;}
.wsd4{word-spacing:1.994667pt;}
.ws81{word-spacing:2.026667pt;}
.wsfc{word-spacing:2.040000pt;}
.ws5f{word-spacing:2.080000pt;}
.ws39{word-spacing:2.133333pt;}
.wsfe{word-spacing:2.221333pt;}
.ws2f{word-spacing:2.240000pt;}
.wsd3{word-spacing:2.266667pt;}
.ws32{word-spacing:2.293333pt;}
.ws46{word-spacing:2.346667pt;}
.ws105{word-spacing:2.357333pt;}
.ws4d{word-spacing:2.400000pt;}
.wsbd{word-spacing:2.453333pt;}
.wse7{word-spacing:2.493333pt;}
.ws48{word-spacing:2.506667pt;}
.wsea{word-spacing:2.538667pt;}
.ws1c{word-spacing:2.560000pt;}
.ws100{word-spacing:2.629333pt;}
.ws28{word-spacing:2.666667pt;}
.ws60{word-spacing:2.720000pt;}
.ws56{word-spacing:2.773333pt;}
.ws3a{word-spacing:2.826667pt;}
.ws5e{word-spacing:2.880000pt;}
.wsf9{word-spacing:2.901333pt;}
.ws43{word-spacing:2.933333pt;}
.ws1b{word-spacing:2.986667pt;}
.wsbc{word-spacing:3.040000pt;}
.ws17{word-spacing:3.093333pt;}
.ws4a{word-spacing:3.146667pt;}
.wsff{word-spacing:3.173333pt;}
.ws7f{word-spacing:3.200000pt;}
.ws2e{word-spacing:3.306667pt;}
.ws44{word-spacing:3.466667pt;}
.ws33{word-spacing:3.520000pt;}
.wse3{word-spacing:3.536000pt;}
.ws4f{word-spacing:3.573333pt;}
.ws61{word-spacing:3.626667pt;}
.wsbe{word-spacing:3.733333pt;}
.wsda{word-spacing:3.808000pt;}
.wsed{word-spacing:3.853333pt;}
.wsec{word-spacing:3.898667pt;}
.wsc7{word-spacing:4.000000pt;}
.ws30{word-spacing:4.160000pt;}
.ws82{word-spacing:4.216000pt;}
.ws5c{word-spacing:4.266667pt;}
.wsc8{word-spacing:4.373333pt;}
.ws5b{word-spacing:4.480000pt;}
.wseb{word-spacing:4.488000pt;}
.ws55{word-spacing:4.533333pt;}
.ws3b{word-spacing:5.013333pt;}
.ws103{word-spacing:5.077333pt;}
.wse9{word-spacing:5.258667pt;}
.wsc6{word-spacing:5.280000pt;}
.wsfa{word-spacing:5.440000pt;}
.ws31{word-spacing:5.866667pt;}
.wsf5{word-spacing:6.120000pt;}
.ws2b{word-spacing:11.786667pt;}
.wsb0{word-spacing:14.766356pt;}
.ws9b{word-spacing:17.215341pt;}
.wsb1{word-spacing:19.235050pt;}
.ws92{word-spacing:21.872966pt;}
.ws97{word-spacing:36.741466pt;}
.ws99{word-spacing:36.779979pt;}
.ws8e{word-spacing:41.285704pt;}
.ws90{word-spacing:41.439469pt;}
.wsc4{word-spacing:48.869333pt;}
.ws64{word-spacing:51.820722pt;}
.ws66{word-spacing:51.902781pt;}
.ws67{word-spacing:62.324367pt;}
.ws22{word-spacing:64.237333pt;}
.ws68{word-spacing:71.966386pt;}
.wsba{word-spacing:208.397333pt;}
.wsb9{word-spacing:231.064000pt;}
._3f{margin-left:-2635.213363pt;}
._5c{margin-left:-69.427456pt;}
._40{margin-left:-61.093471pt;}
._56{margin-left:-51.284946pt;}
._57{margin-left:-50.179294pt;}
._5b{margin-left:-48.624744pt;}
._63{margin-left:-46.582760pt;}
._60{margin-left:-43.685739pt;}
._59{margin-left:-41.439469pt;}
._6a{margin-left:-40.283558pt;}
._5f{margin-left:-39.308192pt;}
._61{margin-left:-36.755712pt;}
._5d{margin-left:-35.649637pt;}
._5e{margin-left:-34.756269pt;}
._64{margin-left:-32.501579pt;}
._5a{margin-left:-31.367919pt;}
._6b{margin-left:-29.973790pt;}
._62{margin-left:-28.247445pt;}
._69{margin-left:-27.094733pt;}
._65{margin-left:-25.227011pt;}
._a{margin-left:-17.776048pt;}
._7{margin-left:-14.733333pt;}
._5{margin-left:-13.674747pt;}
._e{margin-left:-12.104025pt;}
._66{margin-left:-10.763536pt;}
._6c{margin-left:-9.429320pt;}
._3{margin-left:-8.112000pt;}
._1{margin-left:-4.109067pt;}
._6{margin-left:-2.650553pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.612800pt;}
._c{width:2.730667pt;}
._b{width:4.520533pt;}
._7d{width:8.296008pt;}
._14{width:10.562671pt;}
._7e{width:12.829332pt;}
._d{width:13.871989pt;}
._8{width:16.319992pt;}
._4{width:34.834134pt;}
._74{width:37.535979pt;}
._2b{width:39.304000pt;}
._9{width:48.552016pt;}
._77{width:49.957333pt;}
._76{width:59.657579pt;}
._13{width:63.829333pt;}
._7c{width:68.453333pt;}
._78{width:71.399999pt;}
._24{width:82.869332pt;}
._75{width:85.901753pt;}
._41{width:87.968016pt;}
._43{width:93.024000pt;}
._42{width:94.202667pt;}
._52{width:98.192000pt;}
._21{width:107.304004pt;}
._34{width:121.149896pt;}
._6d{width:122.354667pt;}
._67{width:134.919316pt;}
._68{width:135.860715pt;}
._35{width:143.933333pt;}
._72{width:157.805333pt;}
._58{width:158.741029pt;}
._37{width:160.727887pt;}
._19{width:168.640000pt;}
._73{width:170.318399pt;}
._15{width:171.541338pt;}
._47{width:180.109333pt;}
._49{width:184.733333pt;}
._2e{width:187.906667pt;}
._2c{width:190.490667pt;}
._4f{width:191.714667pt;}
._7b{width:206.584000pt;}
._36{width:207.808000pt;}
._4d{width:215.786667pt;}
._29{width:219.730667pt;}
._27{width:226.848000pt;}
._2d{width:229.386606pt;}
._33{width:234.418667pt;}
._53{width:238.453333pt;}
._20{width:245.842667pt;}
._12{width:248.517333pt;}
._17{width:249.786667pt;}
._70{width:251.509324pt;}
._2a{width:257.583974pt;}
._6f{width:264.882657pt;}
._16{width:277.575970pt;}
._79{width:278.527390pt;}
._71{width:282.154676pt;}
._6e{width:283.151921pt;}
._11{width:285.010667pt;}
._7a{width:286.324761pt;}
._4b{width:288.048000pt;}
._48{width:295.392000pt;}
._3b{width:296.344000pt;}
._4a{width:298.701333pt;}
._23{width:302.872000pt;}
._28{width:303.824000pt;}
._55{width:307.813333pt;}
._54{width:313.796367pt;}
._45{width:315.882667pt;}
._46{width:318.693333pt;}
._10{width:321.186667pt;}
._4c{width:327.216000pt;}
._4e{width:329.754667pt;}
._32{width:331.477333pt;}
._26{width:336.328025pt;}
._3e{width:359.176000pt;}
._1d{width:365.386667pt;}
._1b{width:366.656000pt;}
._1f{width:367.925333pt;}
._31{width:371.914667pt;}
._44{width:393.739200pt;}
._1c{width:404.509333pt;}
._1a{width:407.093308pt;}
._22{width:408.362637pt;}
._2f{width:411.672035pt;}
._25{width:413.439975pt;}
._30{width:417.021333pt;}
._3d{width:424.592000pt;}
._3a{width:427.176000pt;}
._1e{width:431.029333pt;}
._51{width:445.717333pt;}
._18{width:447.304000pt;}
._39{width:458.592000pt;}
._3c{width:465.029333pt;}
._38{width:499.029308pt;}
._50{width:566.349333pt;}
._f{width:1908.039935pt;}
.fs18{font-size:31.726400pt;}
.fs8{font-size:31.733332pt;}
.fsa{font-size:37.075200pt;}
.fs6{font-size:37.333333pt;}
.fs16{font-size:37.342400pt;}
.fsf{font-size:38.441065pt;}
.fs12{font-size:38.513067pt;}
.fsb{font-size:41.029867pt;}
.fsd{font-size:41.498667pt;}
.fs10{font-size:42.541333pt;}
.fs13{font-size:42.620799pt;}
.fs0{font-size:42.666667pt;}
.fs17{font-size:45.323200pt;}
.fs2{font-size:45.333333pt;}
.fse{font-size:45.925333pt;}
.fsc{font-size:49.433599pt;}
.fs3{font-size:50.666667pt;}
.fs11{font-size:51.254933pt;}
.fs14{font-size:51.350398pt;}
.fs5{font-size:53.333333pt;}
.fs15{font-size:53.346664pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1b3{bottom:2.839742pt;}
.y1a7{bottom:2.840271pt;}
.y1ae{bottom:2.972270pt;}
.y1b6{bottom:2.973063pt;}
.y1c0{bottom:2.973073pt;}
.y1bd{bottom:2.974406pt;}
.y183{bottom:3.319051pt;}
.y1aa{bottom:4.440267pt;}
.y17d{bottom:5.240275pt;}
.y196{bottom:5.307088pt;}
.y187{bottom:8.907186pt;}
.y198{bottom:15.974935pt;}
.y19a{bottom:15.975098pt;}
.y19c{bottom:15.975220pt;}
.y19e{bottom:15.975464pt;}
.yd0{bottom:18.908285pt;}
.y18b{bottom:19.575073pt;}
.y18e{bottom:19.575317pt;}
.y191{bottom:19.575480pt;}
.y189{bottom:23.703044pt;}
.y193{bottom:23.703735pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y32{bottom:100.394933pt;}
.y234{bottom:100.414898pt;}
.y9f{bottom:100.684265pt;}
.y16b{bottom:101.057597pt;}
.y108{bottom:102.110921pt;}
.yc3{bottom:102.111084pt;}
.y27a{bottom:103.657603pt;}
.y1c4{bottom:105.393331pt;}
.y1c5{bottom:108.369069pt;}
.y2d{bottom:108.854533pt;}
.y13c{bottom:112.398936pt;}
.y31{bottom:113.722933pt;}
.y233{bottom:113.742898pt;}
.y279{bottom:116.985620pt;}
.y2bb{bottom:117.336933pt;}
.y107{bottom:118.777588pt;}
.yc2{bottom:118.777751pt;}
.y1c2{bottom:122.093333pt;}
.y201{bottom:122.251069pt;}
.y1c3{bottom:125.069071pt;}
.y2c{bottom:125.521200pt;}
.y232{bottom:127.070898pt;}
.y135{bottom:127.321604pt;}
.y278{bottom:130.313620pt;}
.y2ba{bottom:130.664933pt;}
.y30{bottom:131.584269pt;}
.y106{bottom:135.444255pt;}
.yc1{bottom:135.444417pt;}
.y200{bottom:135.579069pt;}
.y1bf{bottom:138.726664pt;}
.y231{bottom:140.398898pt;}
.y1c1{bottom:141.702403pt;}
.y2b{bottom:142.187866pt;}
.y277{bottom:143.641620pt;}
.y2b9{bottom:143.992933pt;}
.y1ff{bottom:148.907069pt;}
.y105{bottom:152.110921pt;}
.yc0{bottom:152.111084pt;}
.y230{bottom:153.726898pt;}
.y2f{bottom:153.806936pt;}
.y1bc{bottom:155.358663pt;}
.y276{bottom:156.969620pt;}
.y2b8{bottom:157.320933pt;}
.y1be{bottom:158.335733pt;}
.y2a{bottom:158.854533pt;}
.y79{bottom:160.012259pt;}
.y1ad{bottom:162.005330pt;}
.y1fe{bottom:162.235069pt;}
.y11d{bottom:165.833252pt;}
.y22f{bottom:167.054898pt;}
.y2e{bottom:167.134928pt;}
.y104{bottom:168.777588pt;}
.ybf{bottom:168.777751pt;}
.y275{bottom:170.297620pt;}
.y2b7{bottom:170.648942pt;}
.y1ba{bottom:171.993327pt;}
.y78{bottom:173.340259pt;}
.y1bb{bottom:174.969076pt;}
.y29{bottom:175.521200pt;}
.y1fd{bottom:175.563069pt;}
.y136{bottom:176.021377pt;}
.y1ac{bottom:178.318932pt;}
.y175{bottom:178.596934pt;}
.y22e{bottom:180.382933pt;}
.y274{bottom:183.625620pt;}
.y2b6{bottom:183.976942pt;}
.y103{bottom:185.444255pt;}
.ybe{bottom:185.444417pt;}
.y77{bottom:186.668259pt;}
.y1a9{bottom:187.206665pt;}
.y1b8{bottom:188.626668pt;}
.y1fc{bottom:188.891069pt;}
.y1b9{bottom:191.602397pt;}
.y1ab{bottom:191.646932pt;}
.y174{bottom:191.924934pt;}
.y28{bottom:192.187866pt;}
.y22d{bottom:193.710937pt;}
.y273{bottom:196.953620pt;}
.y2b5{bottom:197.304942pt;}
.y76{bottom:199.996259pt;}
.y102{bottom:202.110921pt;}
.ybd{bottom:202.111084pt;}
.y1a6{bottom:202.147990pt;}
.y1fb{bottom:202.219069pt;}
.y1a8{bottom:204.980265pt;}
.y1a5{bottom:204.985599pt;}
.y173{bottom:205.252934pt;}
.y1b5{bottom:205.260010pt;}
.y22c{bottom:207.038912pt;}
.y1b7{bottom:208.235738pt;}
.ye6{bottom:208.702140pt;}
.y26{bottom:208.854533pt;}
.y272{bottom:210.281620pt;}
.y2b4{bottom:210.632942pt;}
.y75{bottom:213.324259pt;}
.y1fa{bottom:215.547069pt;}
.y1a4{bottom:218.340265pt;}
.y172{bottom:218.580934pt;}
.y101{bottom:218.777588pt;}
.ybc{bottom:218.777751pt;}
.y22b{bottom:220.366912pt;}
.ye5{bottom:222.030140pt;}
.y1b2{bottom:222.037333pt;}
.y271{bottom:223.609620pt;}
.y2b3{bottom:223.960942pt;}
.y137{bottom:224.711522pt;}
.y1b4{bottom:224.869059pt;}
.y25{bottom:225.521200pt;}
.y1f9{bottom:228.875069pt;}
.y1a3{bottom:231.668265pt;}
.y171{bottom:231.908934pt;}
.y22a{bottom:233.694912pt;}
.ye4{bottom:235.358140pt;}
.y100{bottom:235.444255pt;}
.ybb{bottom:235.444417pt;}
.y270{bottom:236.937620pt;}
.y2b2{bottom:237.288942pt;}
.y1b1{bottom:241.507076pt;}
.y24{bottom:242.187866pt;}
.y1f8{bottom:242.203069pt;}
.y13a{bottom:244.661290pt;}
.y1a2{bottom:244.996265pt;}
.y170{bottom:245.236934pt;}
.y229{bottom:247.022912pt;}
.ye3{bottom:248.686140pt;}
.y26f{bottom:250.265620pt;}
.y2b1{bottom:250.616942pt;}
.y74{bottom:250.813599pt;}
.y5d{bottom:250.813639pt;}
.yff{bottom:252.110921pt;}
.yba{bottom:252.111084pt;}
.y1f7{bottom:255.531069pt;}
.y1a1{bottom:258.324265pt;}
.y16f{bottom:258.564934pt;}
.y23{bottom:258.854533pt;}
.y228{bottom:260.350912pt;}
.y26e{bottom:263.593620pt;}
.y2b0{bottom:263.944942pt;}
.y1b0{bottom:266.474409pt;}
.y73{bottom:267.480265pt;}
.y5c{bottom:267.480306pt;}
.yfe{bottom:268.777588pt;}
.yb9{bottom:268.777751pt;}
.y1f6{bottom:268.859069pt;}
.y1a0{bottom:271.652265pt;}
.y16e{bottom:271.892933pt;}
.y138{bottom:273.420923pt;}
.y227{bottom:273.678912pt;}
.y22{bottom:275.521200pt;}
.y26d{bottom:276.921620pt;}
.y2af{bottom:277.272942pt;}
.y1af{bottom:279.802409pt;}
.y72{bottom:284.146932pt;}
.y5b{bottom:284.146973pt;}
.y19f{bottom:284.980265pt;}
.yfd{bottom:285.444255pt;}
.yb8{bottom:285.444417pt;}
.y226{bottom:287.006912pt;}
.y26c{bottom:290.249620pt;}
.y13b{bottom:290.482808pt;}
.y2ae{bottom:290.600942pt;}
.y21{bottom:292.187866pt;}
.y1f5{bottom:298.824402pt;}
.y225{bottom:300.334912pt;}
.y71{bottom:300.813599pt;}
.y5a{bottom:300.813639pt;}
.yfc{bottom:302.110921pt;}
.yb7{bottom:302.111084pt;}
.y1d2{bottom:302.780282pt;}
.y26b{bottom:303.577620pt;}
.y2ad{bottom:303.928935pt;}
.y20{bottom:308.854533pt;}
.ye2{bottom:309.338787pt;}
.y134{bottom:310.684393pt;}
.y224{bottom:313.662912pt;}
.y13e{bottom:314.570800pt;}
.y1d1{bottom:316.108282pt;}
.y26a{bottom:316.905620pt;}
.y16d{bottom:316.965599pt;}
.y2ac{bottom:317.256965pt;}
.y70{bottom:317.480265pt;}
.y59{bottom:317.480306pt;}
.y157{bottom:318.653564pt;}
.y16a{bottom:318.653605pt;}
.yfb{bottom:318.777588pt;}
.yb6{bottom:318.777751pt;}
.y139{bottom:322.120696pt;}
.y133{bottom:324.012393pt;}
.y1f{bottom:325.521200pt;}
.ye1{bottom:326.044120pt;}
.y223{bottom:326.990912pt;}
.y1f4{bottom:328.824402pt;}
.y1d0{bottom:329.436282pt;}
.y269{bottom:330.233620pt;}
.y16c{bottom:330.293599pt;}
.y2ab{bottom:330.584965pt;}
.y13d{bottom:331.483459pt;}
.y6f{bottom:334.146932pt;}
.y58{bottom:334.146973pt;}
.y156{bottom:335.320231pt;}
.y169{bottom:335.320272pt;}
.yfa{bottom:335.444255pt;}
.yb5{bottom:335.444417pt;}
.y132{bottom:337.340393pt;}
.y180{bottom:339.653743pt;}
.y222{bottom:340.318912pt;}
.y1e{bottom:342.187866pt;}
.ye0{bottom:342.681453pt;}
.y1cf{bottom:342.764282pt;}
.y268{bottom:343.561620pt;}
.y2aa{bottom:343.912965pt;}
.y6e{bottom:350.813599pt;}
.y57{bottom:350.813639pt;}
.y155{bottom:351.986898pt;}
.y168{bottom:351.986938pt;}
.yf9{bottom:352.110921pt;}
.yb4{bottom:352.111084pt;}
.y221{bottom:353.646898pt;}
.y17f{bottom:356.320410pt;}
.y267{bottom:356.889620pt;}
.y2a9{bottom:357.240965pt;}
.y1d{bottom:358.854533pt;}
.ydf{bottom:359.318787pt;}
.y1f3{bottom:362.241079pt;}
.y220{bottom:366.974898pt;}
.y6d{bottom:367.480265pt;}
.y56{bottom:367.480306pt;}
.y154{bottom:368.653564pt;}
.y167{bottom:368.653605pt;}
.yf8{bottom:368.777588pt;}
.yb3{bottom:368.777751pt;}
.y266{bottom:370.217620pt;}
.y2a8{bottom:370.568965pt;}
.y27{bottom:375.521200pt;}
.y1f2{bottom:375.569079pt;}
.yde{bottom:375.956120pt;}
.y21f{bottom:380.302898pt;}
.y195{bottom:381.319987pt;}
.y197{bottom:383.303182pt;}
.y265{bottom:383.545620pt;}
.y2a7{bottom:383.896965pt;}
.y6c{bottom:384.146932pt;}
.y55{bottom:384.146973pt;}
.y194{bottom:384.787069pt;}
.y153{bottom:385.320231pt;}
.y166{bottom:385.320272pt;}
.yf7{bottom:385.444255pt;}
.yb2{bottom:385.444417pt;}
.y199{bottom:386.627319pt;}
.y19b{bottom:386.627482pt;}
.y19d{bottom:386.627604pt;}
.y1e0{bottom:392.118145pt;}
.y1c{bottom:392.187866pt;}
.y9e{bottom:392.237998pt;}
.ydd{bottom:392.593453pt;}
.y21e{bottom:393.630898pt;}
.y264{bottom:396.873620pt;}
.y2a6{bottom:397.224965pt;}
.y12f{bottom:398.692261pt;}
.y6b{bottom:400.813599pt;}
.y54{bottom:400.813639pt;}
.y152{bottom:401.986898pt;}
.y165{bottom:401.986938pt;}
.yf6{bottom:402.110921pt;}
.yb1{bottom:402.111084pt;}
.y1f1{bottom:405.534412pt;}
.y21d{bottom:406.958898pt;}
.y1df{bottom:408.823478pt;}
.y9d{bottom:408.943331pt;}
.ydc{bottom:409.230787pt;}
.y263{bottom:410.201620pt;}
.y2a5{bottom:410.552965pt;}
.y122{bottom:413.577596pt;}
.y17e{bottom:414.920410pt;}
.y6a{bottom:417.480265pt;}
.y53{bottom:417.480306pt;}
.y151{bottom:418.653564pt;}
.y164{bottom:418.653605pt;}
.yf5{bottom:418.777588pt;}
.yb0{bottom:418.777751pt;}
.y1f0{bottom:418.862412pt;}
.y21c{bottom:420.286898pt;}
.y262{bottom:423.529620pt;}
.y2a4{bottom:423.880965pt;}
.y1de{bottom:425.460811pt;}
.y9c{bottom:425.580665pt;}
.y17c{bottom:426.354655pt;}
.y17b{bottom:431.587077pt;}
.y1ef{bottom:432.190412pt;}
.y123{bottom:432.615534pt;}
.y21b{bottom:433.614950pt;}
.y69{bottom:434.146932pt;}
.y52{bottom:434.146973pt;}
.ydb{bottom:434.198120pt;}
.y150{bottom:435.320231pt;}
.y163{bottom:435.320272pt;}
.yf4{bottom:435.444255pt;}
.yaf{bottom:435.444417pt;}
.y261{bottom:436.857620pt;}
.y2a3{bottom:437.208965pt;}
.y12d{bottom:437.680146pt;}
.y9b{bottom:438.908665pt;}
.y1dd{bottom:442.094153pt;}
.y1b{bottom:442.187866pt;}
.y1ee{bottom:445.518412pt;}
.y21a{bottom:446.942905pt;}
.y17a{bottom:448.253743pt;}
.y260{bottom:450.185620pt;}
.y2a2{bottom:450.536965pt;}
.y68{bottom:450.813599pt;}
.y51{bottom:450.813639pt;}
.y124{bottom:451.653471pt;}
.y14f{bottom:451.986898pt;}
.y162{bottom:451.986938pt;}
.yf3{bottom:452.110921pt;}
.yae{bottom:452.111084pt;}
.y9a{bottom:455.545998pt;}
.yda{bottom:456.856405pt;}
.y1dc{bottom:458.727453pt;}
.y1ed{bottom:458.846412pt;}
.y219{bottom:460.270905pt;}
.y25f{bottom:463.513620pt;}
.y2a1{bottom:463.864965pt;}
.y67{bottom:467.480265pt;}
.y50{bottom:467.480306pt;}
.y14e{bottom:468.653564pt;}
.y161{bottom:468.653605pt;}
.yf2{bottom:468.777588pt;}
.yad{bottom:468.777751pt;}
.y125{bottom:470.701019pt;}
.y1ec{bottom:472.174412pt;}
.y99{bottom:472.183331pt;}
.y186{bottom:473.253337pt;}
.y218{bottom:473.598905pt;}
.y1db{bottom:475.353453pt;}
.y1a{bottom:475.521200pt;}
.y25e{bottom:476.841620pt;}
.y2a0{bottom:477.192952pt;}
.y188{bottom:478.836548pt;}
.y185{bottom:480.587077pt;}
.y18a{bottom:482.160685pt;}
.y18d{bottom:482.160807pt;}
.y190{bottom:482.160929pt;}
.y66{bottom:484.146932pt;}
.y4f{bottom:484.146973pt;}
.y14d{bottom:485.320231pt;}
.y160{bottom:485.320272pt;}
.yf1{bottom:485.444255pt;}
.yac{bottom:485.444417pt;}
.y1eb{bottom:485.502412pt;}
.y217{bottom:486.926905pt;}
.y98{bottom:488.820665pt;}
.y126{bottom:489.738957pt;}
.y25d{bottom:490.169620pt;}
.y18c{bottom:490.212931pt;}
.y18f{bottom:490.213053pt;}
.y192{bottom:490.213216pt;}
.y29f{bottom:490.520915pt;}
.y1da{bottom:491.990787pt;}
.y19{bottom:492.187866pt;}
.y1ea{bottom:498.830412pt;}
.ycf{bottom:500.135986pt;}
.y216{bottom:500.254905pt;}
.y65{bottom:500.813599pt;}
.y4e{bottom:500.813639pt;}
.y14c{bottom:501.986898pt;}
.y15f{bottom:501.986938pt;}
.yf0{bottom:502.110921pt;}
.yab{bottom:502.111084pt;}
.y25c{bottom:503.497620pt;}
.y29e{bottom:503.848954pt;}
.yd2{bottom:504.882933pt;}
.y97{bottom:505.457998pt;}
.y1d9{bottom:508.628120pt;}
.y127{bottom:508.757674pt;}
.y18{bottom:508.854533pt;}
.y1e9{bottom:512.158412pt;}
.y215{bottom:513.582905pt;}
.y179{bottom:514.587077pt;}
.y25b{bottom:516.825620pt;}
.y29d{bottom:517.176954pt;}
.y64{bottom:517.480265pt;}
.y4d{bottom:517.480306pt;}
.y14b{bottom:518.653564pt;}
.y15e{bottom:518.653605pt;}
.yef{bottom:518.777588pt;}
.yaa{bottom:518.777751pt;}
.yce{bottom:519.044271pt;}
.y94{bottom:522.083998pt;}
.y1d8{bottom:525.265453pt;}
.y1e8{bottom:525.486412pt;}
.y17{bottom:525.521200pt;}
.y214{bottom:526.910905pt;}
.y128{bottom:527.795612pt;}
.y25a{bottom:530.153620pt;}
.y29c{bottom:530.504924pt;}
.y178{bottom:531.253607pt;}
.yc9{bottom:532.741618pt;}
.y63{bottom:534.146932pt;}
.y4c{bottom:534.146973pt;}
.y14a{bottom:535.320231pt;}
.y15d{bottom:535.320272pt;}
.y93{bottom:535.411998pt;}
.y96{bottom:535.423331pt;}
.yee{bottom:535.444255pt;}
.ya9{bottom:535.444417pt;}
.y1e7{bottom:538.814412pt;}
.y213{bottom:540.238905pt;}
.y1d7{bottom:541.902787pt;}
.y16{bottom:542.187866pt;}
.y259{bottom:543.481620pt;}
.y29b{bottom:543.832933pt;}
.y129{bottom:546.833549pt;}
.y177{bottom:547.920274pt;}
.y92{bottom:548.739998pt;}
.y95{bottom:548.751331pt;}
.y62{bottom:550.813599pt;}
.y4b{bottom:550.813639pt;}
.y149{bottom:551.986898pt;}
.y15c{bottom:551.986938pt;}
.yed{bottom:552.110921pt;}
.ya8{bottom:552.111084pt;}
.y212{bottom:553.566935pt;}
.y1d6{bottom:555.230787pt;}
.y258{bottom:556.809620pt;}
.y29a{bottom:557.160933pt;}
.y15{bottom:558.854533pt;}
.y91{bottom:565.377331pt;}
.y12a{bottom:565.871487pt;}
.y211{bottom:566.894898pt;}
.y4a{bottom:567.480306pt;}
.y148{bottom:568.653564pt;}
.y15b{bottom:568.653605pt;}
.yec{bottom:568.777588pt;}
.ya7{bottom:568.777751pt;}
.y257{bottom:570.137620pt;}
.y299{bottom:570.488933pt;}
.y182{bottom:572.921346pt;}
.y181{bottom:574.120398pt;}
.y12e{bottom:574.381714pt;}
.y14{bottom:575.521200pt;}
.y184{bottom:576.240397pt;}
.y1d5{bottom:580.198120pt;}
.y210{bottom:580.222898pt;}
.y121{bottom:581.516529pt;}
.y90{bottom:582.014665pt;}
.y256{bottom:583.465620pt;}
.y298{bottom:583.816954pt;}
.y61{bottom:584.146932pt;}
.y49{bottom:584.146973pt;}
.y12b{bottom:584.909425pt;}
.y147{bottom:585.320231pt;}
.y15a{bottom:585.320272pt;}
.yeb{bottom:585.444255pt;}
.ya6{bottom:585.444417pt;}
.yca{bottom:586.713840pt;}
.y13{bottom:592.187866pt;}
.y20f{bottom:593.550898pt;}
.y120{bottom:594.844529pt;}
.y131{bottom:596.556274pt;}
.y255{bottom:596.793620pt;}
.y297{bottom:597.144954pt;}
.y8f{bottom:598.651998pt;}
.y48{bottom:600.813639pt;}
.y146{bottom:601.986898pt;}
.y159{bottom:601.986938pt;}
.yea{bottom:602.110921pt;}
.ya5{bottom:602.111084pt;}
.y1d4{bottom:602.861738pt;}
.y12c{bottom:603.928142pt;}
.y20e{bottom:606.878898pt;}
.y11f{bottom:608.172529pt;}
.y12{bottom:608.854533pt;}
.y254{bottom:610.121620pt;}
.y296{bottom:610.472954pt;}
.y8e{bottom:615.289331pt;}
.y130{bottom:615.702148pt;}
.y1d3{bottom:616.189738pt;}
.y47{bottom:617.480306pt;}
.y145{bottom:618.653564pt;}
.y176{bottom:618.653605pt;}
.ye9{bottom:618.777588pt;}
.ya4{bottom:618.777751pt;}
.y20d{bottom:620.206898pt;}
.yd1{bottom:621.352254pt;}
.y11e{bottom:621.500529pt;}
.y253{bottom:623.449620pt;}
.y295{bottom:623.800954pt;}
.y11{bottom:625.521240pt;}
.y8d{bottom:631.926665pt;}
.y20c{bottom:633.534898pt;}
.y46{bottom:634.146973pt;}
.y144{bottom:635.320231pt;}
.y158{bottom:635.320272pt;}
.ye8{bottom:635.444255pt;}
.ya3{bottom:635.444417pt;}
.y252{bottom:636.777620pt;}
.y294{bottom:637.128954pt;}
.ycb{bottom:640.667525pt;}
.y10{bottom:642.187907pt;}
.y20b{bottom:646.862898pt;}
.y8c{bottom:648.563998pt;}
.y251{bottom:650.105620pt;}
.y293{bottom:650.456962pt;}
.y45{bottom:650.813639pt;}
.y143{bottom:651.986898pt;}
.ye7{bottom:652.110921pt;}
.ya2{bottom:652.111084pt;}
.yf{bottom:658.854574pt;}
.y20a{bottom:660.190898pt;}
.y250{bottom:663.433620pt;}
.y292{bottom:663.784962pt;}
.y11c{bottom:666.802653pt;}
.y44{bottom:667.480306pt;}
.y142{bottom:668.653564pt;}
.ya1{bottom:668.777751pt;}
.y11b{bottom:672.173584pt;}
.y209{bottom:673.518898pt;}
.y8b{bottom:673.531331pt;}
.ye{bottom:675.521240pt;}
.y24f{bottom:676.761620pt;}
.y291{bottom:677.112962pt;}
.yd9{bottom:679.527466pt;}
.y43{bottom:684.146973pt;}
.y119{bottom:684.556474pt;}
.y141{bottom:685.320231pt;}
.ya0{bottom:685.444417pt;}
.y208{bottom:686.846898pt;}
.y24e{bottom:690.089620pt;}
.y290{bottom:690.440962pt;}
.yd8{bottom:691.794434pt;}
.yd{bottom:692.187907pt;}
.ycc{bottom:694.649015pt;}
.y8a{bottom:696.189616pt;}
.y10a{bottom:696.814904pt;}
.y110{bottom:698.064290pt;}
.y207{bottom:700.174967pt;}
.y42{bottom:700.813639pt;}
.y140{bottom:701.986898pt;}
.y1e6{bottom:702.111084pt;}
.y24d{bottom:703.417620pt;}
.y28f{bottom:703.768962pt;}
.yd7{bottom:704.049561pt;}
.yc{bottom:708.854574pt;}
.y109{bottom:710.142904pt;}
.y111{bottom:710.949626pt;}
.y206{bottom:713.502898pt;}
.y11a{bottom:716.210775pt;}
.yd6{bottom:716.304769pt;}
.y24c{bottom:716.745620pt;}
.y28e{bottom:717.096962pt;}
.y41{bottom:717.480306pt;}
.y13f{bottom:718.653564pt;}
.y1e5{bottom:718.777751pt;}
.y112{bottom:723.845337pt;}
.yb{bottom:725.521240pt;}
.y205{bottom:726.830898pt;}
.yc5{bottom:727.214969pt;}
.yd5{bottom:728.570394pt;}
.y24b{bottom:730.073620pt;}
.y28d{bottom:730.424962pt;}
.y40{bottom:734.146973pt;}
.y85{bottom:735.320231pt;}
.y1e4{bottom:735.444417pt;}
.y113{bottom:736.772172pt;}
.y204{bottom:740.158898pt;}
.yc8{bottom:740.448899pt;}
.yc4{bottom:740.542969pt;}
.yd4{bottom:740.825602pt;}
.ya{bottom:742.187907pt;}
.y24a{bottom:743.401620pt;}
.y28c{bottom:743.752962pt;}
.ycd{bottom:748.602700pt;}
.y114{bottom:749.657508pt;}
.y3f{bottom:750.813639pt;}
.y84{bottom:751.986898pt;}
.y1e3{bottom:752.111084pt;}
.y203{bottom:753.486898pt;}
.yc7{bottom:753.776899pt;}
.y249{bottom:756.729620pt;}
.y28b{bottom:757.080962pt;}
.yd3{bottom:761.784017pt;}
.y115{bottom:762.542844pt;}
.yc6{bottom:767.104899pt;}
.y3e{bottom:767.480306pt;}
.y83{bottom:768.653564pt;}
.y1e2{bottom:768.777751pt;}
.y248{bottom:770.057620pt;}
.y28a{bottom:770.408936pt;}
.y116{bottom:775.469678pt;}
.y9{bottom:781.461469pt;}
.y10f{bottom:781.774833pt;}
.y247{bottom:783.385620pt;}
.y202{bottom:783.486898pt;}
.y289{bottom:783.736957pt;}
.y60{bottom:784.146973pt;}
.y82{bottom:785.320231pt;}
.y1e1{bottom:785.444417pt;}
.y117{bottom:788.365389pt;}
.y33{bottom:794.266683pt;}
.y8{bottom:794.789469pt;}
.y10e{bottom:795.102833pt;}
.y246{bottom:796.713620pt;}
.y288{bottom:797.064957pt;}
.y3d{bottom:800.813639pt;}
.y118{bottom:801.250725pt;}
.y81{bottom:801.986898pt;}
.y10d{bottom:808.430833pt;}
.y245{bottom:810.041620pt;}
.y287{bottom:810.392957pt;}
.y5f{bottom:817.480306pt;}
.y80{bottom:818.653564pt;}
.y10c{bottom:821.758833pt;}
.y244{bottom:823.369620pt;}
.y286{bottom:823.720947pt;}
.y7{bottom:832.656169pt;}
.y5e{bottom:834.146973pt;}
.y10b{bottom:835.086833pt;}
.y89{bottom:835.320231pt;}
.y1ce{bottom:835.320272pt;}
.y243{bottom:836.697620pt;}
.y285{bottom:837.048910pt;}
.y242{bottom:850.025620pt;}
.y284{bottom:850.376954pt;}
.y3c{bottom:850.813639pt;}
.y7f{bottom:851.986898pt;}
.y1cd{bottom:851.986938pt;}
.y241{bottom:863.353620pt;}
.y283{bottom:863.704954pt;}
.y3b{bottom:867.480306pt;}
.y88{bottom:868.653564pt;}
.y1cc{bottom:868.653605pt;}
.y6{bottom:872.377441pt;}
.y240{bottom:876.681641pt;}
.y282{bottom:877.032954pt;}
.y3a{bottom:884.146973pt;}
.y7e{bottom:885.320231pt;}
.y1cb{bottom:885.320272pt;}
.y23f{bottom:890.009620pt;}
.y281{bottom:890.360954pt;}
.y5{bottom:896.377441pt;}
.y39{bottom:900.813639pt;}
.y87{bottom:901.986898pt;}
.y1ca{bottom:901.986938pt;}
.y23e{bottom:903.337620pt;}
.y280{bottom:903.688954pt;}
.y23d{bottom:916.665620pt;}
.y27f{bottom:917.016954pt;}
.y38{bottom:917.480306pt;}
.y86{bottom:918.653564pt;}
.y1c9{bottom:918.653605pt;}
.y238{bottom:928.996306pt;}
.y23c{bottom:929.993620pt;}
.y2bf{bottom:930.004954pt;}
.y27e{bottom:930.344954pt;}
.y37{bottom:934.146973pt;}
.y7d{bottom:935.320231pt;}
.y1c8{bottom:935.320272pt;}
.y237{bottom:942.324306pt;}
.y23b{bottom:943.321620pt;}
.y2be{bottom:943.332954pt;}
.y27d{bottom:943.672926pt;}
.y36{bottom:950.813639pt;}
.y7c{bottom:951.986898pt;}
.y1c7{bottom:951.986938pt;}
.y236{bottom:955.652306pt;}
.y4{bottom:956.561849pt;}
.y23a{bottom:956.649620pt;}
.y2bd{bottom:956.660954pt;}
.y27c{bottom:957.000926pt;}
.y35{bottom:967.480306pt;}
.y7b{bottom:968.653564pt;}
.y1c6{bottom:968.653605pt;}
.y235{bottom:968.980306pt;}
.y239{bottom:969.977620pt;}
.y2bc{bottom:969.988954pt;}
.y27b{bottom:970.328926pt;}
.y3{bottom:986.299235pt;}
.y34{bottom:1000.893311pt;}
.y7a{bottom:1001.693359pt;}
.h2f{height:3.520880pt;}
.h35{height:7.866667pt;}
.h39{height:10.665333pt;}
.h3c{height:10.666667pt;}
.h37{height:12.133333pt;}
.h28{height:12.400000pt;}
.h26{height:14.266666pt;}
.h2a{height:16.697506pt;}
.h32{height:16.933333pt;}
.h36{height:19.987531pt;}
.h1e{height:24.640723pt;}
.h2c{height:24.666667pt;}
.h21{height:24.686876pt;}
.h30{height:25.243462pt;}
.h15{height:25.693114pt;}
.he{height:27.671466pt;}
.h16{height:28.433698pt;}
.h1b{height:28.758576pt;}
.h19{height:29.787683pt;}
.h2{height:30.080000pt;}
.h38{height:30.547837pt;}
.h1f{height:30.885008pt;}
.h31{height:30.887719pt;}
.h22{height:30.942700pt;}
.h3a{height:30.955746pt;}
.h1c{height:31.826256pt;}
.hf{height:31.960000pt;}
.h18{height:34.257484pt;}
.h2d{height:34.888719pt;}
.h34{height:35.582225pt;}
.h27{height:35.955652pt;}
.h2b{height:36.062345pt;}
.h29{height:36.435772pt;}
.h20{height:37.211082pt;}
.h23{height:37.280389pt;}
.h3b{height:39.511965pt;}
.hd{height:39.530667pt;}
.h4b{height:39.530689pt;}
.h4a{height:39.530717pt;}
.h4c{height:39.530742pt;}
.h47{height:39.530773pt;}
.h45{height:39.530777pt;}
.h48{height:39.530788pt;}
.h40{height:39.530794pt;}
.h43{height:39.530803pt;}
.h44{height:39.530819pt;}
.h49{height:39.530823pt;}
.h41{height:39.530828pt;}
.h46{height:39.530844pt;}
.h42{height:39.530885pt;}
.h3f{height:39.546634pt;}
.h3e{height:39.546797pt;}
.h3d{height:39.576000pt;}
.h4{height:39.712000pt;}
.h11{height:40.165333pt;}
.h12{height:45.719515pt;}
.h14{height:45.804767pt;}
.h1a{height:45.908848pt;}
.h9{height:46.506667pt;}
.h24{height:46.506829pt;}
.h25{height:46.507211pt;}
.hb{height:47.253333pt;}
.h2e{height:48.184617pt;}
.h3{height:48.766452pt;}
.h33{height:49.251225pt;}
.h5{height:49.298667pt;}
.h13{height:52.448000pt;}
.h8{height:52.746667pt;}
.ha{height:53.887837pt;}
.h10{height:53.888000pt;}
.h7{height:57.658667pt;}
.hc{height:63.296000pt;}
.h6{height:75.605333pt;}
.h1d{height:176.783997pt;}
.h17{height:275.467997pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w8{width:10.545333pt;}
.wb{width:10.546666pt;}
.w9{width:11.880000pt;}
.w4{width:13.960000pt;}
.wd{width:17.000000pt;}
.we{width:17.333333pt;}
.wc{width:17.346667pt;}
.wa{width:32.839999pt;}
.w7{width:136.093333pt;}
.w5{width:169.866669pt;}
.w6{width:255.665324pt;}
.w2{width:480.989339pt;}
.w3{width:481.106649pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:47.574265pt;}
.x44{left:52.546005pt;}
.x37{left:59.027339pt;}
.x3{left:68.031469pt;}
.xa{left:69.996800pt;}
.x36{left:74.655065pt;}
.x4{left:75.717199pt;}
.x43{left:77.018133pt;}
.x4a{left:79.911469pt;}
.x5{left:83.151469pt;}
.x8{left:86.929871pt;}
.x54{left:90.709469pt;}
.x31{left:95.262405pt;}
.x39{left:106.559067pt;}
.x2e{left:108.825999pt;}
.x33{left:111.678533pt;}
.x47{left:113.446009pt;}
.x45{left:126.818136pt;}
.x49{left:131.698146pt;}
.x3c{left:133.187200pt;}
.x38{left:141.159200pt;}
.x46{left:148.022267pt;}
.x30{left:156.514130pt;}
.x35{left:157.662928pt;}
.x24{left:166.985352pt;}
.x32{left:172.930257pt;}
.x3a{left:180.831197pt;}
.x48{left:187.730143pt;}
.x3b{left:189.123332pt;}
.x2b{left:196.665324pt;}
.x3f{left:199.499212pt;}
.x12{left:207.549796pt;}
.x2c{left:210.373861pt;}
.xb{left:215.539775pt;}
.x34{left:218.926676pt;}
.x40{left:237.719467pt;}
.x17{left:244.679993pt;}
.x3d{left:247.143209pt;}
.x42{left:249.287196pt;}
.x3e{left:255.435343pt;}
.x27{left:256.995605pt;}
.x22{left:258.672668pt;}
.x25{left:261.509678pt;}
.x1a{left:263.416138pt;}
.x1e{left:265.288533pt;}
.x20{left:268.473556pt;}
.x1f{left:270.548489pt;}
.x16{left:273.970133pt;}
.x26{left:276.501693pt;}
.x21{left:297.564121pt;}
.x9{left:302.066671pt;}
.x41{left:311.991069pt;}
.x29{left:323.853597pt;}
.x1d{left:330.077596pt;}
.x4b{left:342.308794pt;}
.xc{left:346.462442pt;}
.x50{left:349.977458pt;}
.xd{left:354.463775pt;}
.x2d{left:369.973866pt;}
.x1c{left:379.016398pt;}
.x28{left:405.561605pt;}
.x6{left:408.191457pt;}
.x1b{left:411.127197pt;}
.x2a{left:415.788940pt;}
.x7{left:423.311457pt;}
.x4c{left:425.608794pt;}
.x53{left:430.866924pt;}
.x18{left:437.735209pt;}
.x23{left:467.847982pt;}
.xe{left:475.288442pt;}
.xf{left:483.289775pt;}
.x4d{left:494.640128pt;}
.x51{left:511.367591pt;}
.x15{left:539.605904pt;}
.x14{left:548.995199pt;}
.x4e{left:580.852793pt;}
.x10{left:613.566441pt;}
.x11{left:621.567774pt;}
.x1{left:647.307210pt;}
.x52{left:661.409591pt;}
.x4f{left:665.660124pt;}
.x2{left:671.546549pt;}
.x13{left:709.840007pt;}
.x19{left:713.885091pt;}
}




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