
    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_4a7cca462024becbf481c7df.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907715;font-style:normal;font-weight: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_d92d25c7041809fffef2a3d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b4e8d0540653878010ff109e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d1f89fdbea2ff0da55a2b530.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a37cdd062887b94362fd7932.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.716000;font-style:normal;font-weight: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_7b4888c69da83b0b12b9c527.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.716000;font-style:normal;font-weight: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_cc23e4bc8dc470e87fa00354.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;font-style:normal;font-weight: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_76fd9515e8111a5abd0de0ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0a39b0f58eb5802bbb32e33d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5e96685cf7016aed240f3474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922000;font-style:normal;font-weight: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_ccafd378392a8eceb71acd3c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a20ca06832d2a5dd5bd8067c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_60d6de5215c08ea967126a26.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_19de0f5ddc99aa48c440b8a7.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.364258;font-style:normal;font-weight: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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.907715;font-style:normal;font-weight: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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922000;font-style:normal;font-weight: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_f116c9e0a1aaad3d427cf353.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.716000;font-style:normal;font-weight: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_71ed8077b730411dac4fe372.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.716000;font-style:normal;font-weight: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_1c9bb63c36265293538025a8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.899000;font-style:normal;font-weight: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_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.907715;font-style:normal;font-weight: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_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.922000;font-style:normal;font-weight: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_455d9a8eb4f045352fcaafd1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.716000;font-style:normal;font-weight: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_032f043f1acbd5760fe7853f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.819000;font-style:normal;font-weight: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_85000cad01946e426c101507.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.390000;font-style:normal;font-weight: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_94a57763ee729dc5e7d61e71.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_82f6886f6a62c5dcd898e85a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.684000;font-style:normal;font-weight: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_a3def05d432b3547eb62280d.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.686000;font-style:normal;font-weight: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_1f00c048fc134be49017a99f.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.907715;font-style:normal;font-weight: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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.922000;font-style:normal;font-weight: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_f116c9e0a1aaad3d427cf353.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.716000;font-style:normal;font-weight: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_71ed8077b730411dac4fe372.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.716000;font-style:normal;font-weight: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_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.907715;font-style:normal;font-weight: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_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.922000;font-style:normal;font-weight: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_455d9a8eb4f045352fcaafd1.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.716000;font-style:normal;font-weight: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_032f043f1acbd5760fe7853f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.819000;font-style:normal;font-weight: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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.907715;font-style:normal;font-weight: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_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.922000;font-style:normal;font-weight: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_f116c9e0a1aaad3d427cf353.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.716000;font-style:normal;font-weight: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_71ed8077b730411dac4fe372.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.716000;font-style:normal;font-weight: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_dad216b752930d0759ea1971.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_3ce5e823740c6b0ffbb3740a.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_b02573b6fe2e48cf3da8903b.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.907715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_455d9a8eb4f045352fcaafd1.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_032f043f1acbd5760fe7853f.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.819000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-52.530000px;}
.v2{vertical-align:-35.862000px;}
.v9{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:4.980000px;}
.v6{vertical-align:6.774000px;}
.v5{vertical-align:13.554000px;}
.v8{vertical-align:21.690000px;}
.v7{vertical-align:33.888000px;}
.v1{vertical-align:35.862000px;}
.v3{vertical-align:52.524000px;}
.ls6{letter-spacing:-0.338030px;}
.ls4{letter-spacing:-0.089291px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.038268px;}
.ls1{letter-spacing:0.242361px;}
.ls0{letter-spacing:0.612281px;}
.ls2{letter-spacing:0.664504px;}
.ls8{letter-spacing:0.666549px;}
.ls9{letter-spacing:0.693531px;}
.ls3{letter-spacing:0.693663px;}
.ls10{letter-spacing:2.983842px;}
.lsf{letter-spacing:2.987065px;}
.ls11{letter-spacing:2.989842px;}
.lsb{letter-spacing:4.312243px;}
.lsd{letter-spacing:6.776909px;}
.lsc{letter-spacing:23.775030px;}
.lse{letter-spacing:25.861842px;}
.lsa{letter-spacing:29.882978px;}
.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;}
}
.ws1{word-spacing:-40.428498px;}
.ws0{word-spacing:-40.224404px;}
.wsbb{word-spacing:-16.606328px;}
.ws6e{word-spacing:-16.307167px;}
.wse4{word-spacing:-13.556970px;}
.ws36{word-spacing:-3.036722px;}
.ws3f{word-spacing:-2.976944px;}
.wsd0{word-spacing:-2.976705px;}
.ws16c{word-spacing:-2.857329px;}
.ws45{word-spacing:-2.737952px;}
.ws1b1{word-spacing:-2.677935px;}
.ws19d{word-spacing:-2.499139px;}
.wsd2{word-spacing:-2.319147px;}
.ws8c{word-spacing:-2.259608px;}
.wsc8{word-spacing:-2.140351px;}
.wscb{word-spacing:-2.140052px;}
.ws149{word-spacing:-2.080334px;}
.wsac{word-spacing:-1.841162px;}
.ws168{word-spacing:-1.840923px;}
.ws48{word-spacing:-1.721547px;}
.ws5b{word-spacing:-1.662127px;}
.ws20f{word-spacing:-1.661828px;}
.wsfc{word-spacing:-1.661530px;}
.wsad{word-spacing:-1.602110px;}
.ws16f{word-spacing:-1.602050px;}
.ws1c{word-spacing:-1.542153px;}
.ws39{word-spacing:-1.422716px;}
.wsd3{word-spacing:-1.363297px;}
.ws8f{word-spacing:-1.362938px;}
.ws10e{word-spacing:-1.362699px;}
.ws112{word-spacing:-1.303340px;}
.ws223{word-spacing:-1.303160px;}
.ws1a9{word-spacing:-1.243382px;}
.wsb9{word-spacing:-1.243323px;}
.ws6c{word-spacing:-1.167161px;}
.ws82{word-spacing:-1.063929px;}
.ws67{word-spacing:-1.020469px;}
.ws1a8{word-spacing:-1.004510px;}
.ws219{word-spacing:-1.004270px;}
.ws6b{word-spacing:-1.001335px;}
.ws19e{word-spacing:-0.825116px;}
.ws184{word-spacing:-0.824936px;}
.wsaf{word-spacing:-0.705679px;}
.ws65{word-spacing:-0.612281px;}
.ws54{word-spacing:-0.585705px;}
.wsb{word-spacing:-0.532024px;}
.ws68{word-spacing:-0.503856px;}
.ws6d{word-spacing:-0.465589px;}
.ws153{word-spacing:-0.406909px;}
.ws1f0{word-spacing:-0.406490px;}
.ws1f2{word-spacing:-0.406251px;}
.ws43{word-spacing:-0.346952px;}
.ws105{word-spacing:-0.286934px;}
.wsf4{word-spacing:-0.286875px;}
.ws1ed{word-spacing:-0.263023px;}
.ws20{word-spacing:-0.227515px;}
.ws1ee{word-spacing:-0.227156px;}
.ws21{word-spacing:-0.226917px;}
.ws3e{word-spacing:-0.167498px;}
.ws5f{word-spacing:-0.108138px;}
.ws136{word-spacing:-0.107600px;}
.ws5e{word-spacing:-0.107541px;}
.ws3{word-spacing:-0.086076px;}
.wsfa{word-spacing:-0.059778px;}
.wse8{word-spacing:-0.048121px;}
.ws101{word-spacing:-0.047820px;}
.ws64{word-spacing:0.000000px;}
.ws6a{word-spacing:0.044646px;}
.wsc4{word-spacing:0.131512px;}
.ws4e{word-spacing:0.191290px;}
.ws1c5{word-spacing:0.215201px;}
.ws66{word-spacing:0.293385px;}
.wsd1{word-spacing:0.310666px;}
.ws147{word-spacing:0.370743px;}
.ws2b{word-spacing:0.430103px;}
.ws187{word-spacing:0.430402px;}
.ws100{word-spacing:0.490180px;}
.ws60{word-spacing:0.550077px;}
.wse7{word-spacing:0.609556px;}
.ws69{word-spacing:0.714328px;}
.ws90{word-spacing:0.729292px;}
.ws171{word-spacing:0.848848px;}
.ws10f{word-spacing:0.908626px;}
.ws40{word-spacing:0.908865px;}
.ws135{word-spacing:0.968284px;}
.ws12c{word-spacing:0.968404px;}
.ws227{word-spacing:1.028182px;}
.ws49{word-spacing:1.028301px;}
.ws5d{word-spacing:1.087661px;}
.ws175{word-spacing:1.147678px;}
.ws12f{word-spacing:1.147738px;}
.ws161{word-spacing:1.147797px;}
.wsae{word-spacing:1.207575px;}
.wsb0{word-spacing:1.207695px;}
.ws102{word-spacing:1.267054px;}
.ws2d{word-spacing:1.327072px;}
.ws103{word-spacing:1.386491px;}
.wsa1{word-spacing:1.386850px;}
.wsdd{word-spacing:1.387089px;}
.ws170{word-spacing:1.446448px;}
.ws13f{word-spacing:1.566482px;}
.ws124{word-spacing:1.625902px;}
.wse{word-spacing:1.679642px;}
.ws42{word-spacing:1.685740px;}
.ws1c0{word-spacing:1.769429px;}
.ws131{word-spacing:1.804698px;}
.ws2a{word-spacing:1.805296px;}
.ws120{word-spacing:1.864834px;}
.wse1{word-spacing:1.924852px;}
.ws132{word-spacing:1.984630px;}
.ws73{word-spacing:2.164083px;}
.wsb7{word-spacing:2.224100px;}
.wsbc{word-spacing:2.283041px;}
.ws47{word-spacing:2.283460px;}
.ws1a5{word-spacing:2.283520px;}
.ws9c{word-spacing:2.343298px;}
.ws110{word-spacing:2.402896px;}
.wsbe{word-spacing:2.462854px;}
.wsa9{word-spacing:2.522273px;}
.ws176{word-spacing:2.523050px;}
.ws5c{word-spacing:2.582290px;}
.ws1e7{word-spacing:2.606500px;}
.ws32{word-spacing:2.642247px;}
.ws13d{word-spacing:2.701667px;}
.ws70{word-spacing:2.702264px;}
.ws7e{word-spacing:2.761684px;}
.ws173{word-spacing:2.821103px;}
.ws33{word-spacing:2.941078px;}
.ws14f{word-spacing:3.000497px;}
.wsc0{word-spacing:3.060454px;}
.wsd{word-spacing:3.114434px;}
.ws129{word-spacing:3.120412px;}
.wsb2{word-spacing:3.179891px;}
.ws14d{word-spacing:3.240087px;}
.wsf8{word-spacing:3.299267px;}
.wsce{word-spacing:3.299447px;}
.ws30{word-spacing:3.299746px;}
.ws31{word-spacing:3.299865px;}
.wsf1{word-spacing:3.300044px;}
.wsd6{word-spacing:3.359464px;}
.ws81{word-spacing:3.359524px;}
.wsba{word-spacing:3.419302px;}
.wsff{word-spacing:3.419899px;}
.ws123{word-spacing:3.479259px;}
.wsc{word-spacing:3.533059px;}
.ws37{word-spacing:3.538858px;}
.wsde{word-spacing:3.598695px;}
.ws1ef{word-spacing:3.658055px;}
.ws154{word-spacing:3.658294px;}
.ws10b{word-spacing:3.718192px;}
.ws1e4{word-spacing:3.742342px;}
.ws94{word-spacing:3.778089px;}
.ws1c6{word-spacing:3.897526px;}
.ws15a{word-spacing:3.957124px;}
.ws10a{word-spacing:3.957483px;}
.ws22f{word-spacing:3.960157px;}
.ws22e{word-spacing:3.981095px;}
.ws183{word-spacing:4.016902px;}
.ws1b9{word-spacing:4.017082px;}
.ws7d{word-spacing:4.076860px;}
.ws8a{word-spacing:4.136518px;}
.wsfb{word-spacing:4.136877px;}
.ws134{word-spacing:4.196296px;}
.ws57{word-spacing:4.196475px;}
.ws20d{word-spacing:4.220327px;}
.ws28{word-spacing:4.255656px;}
.ws137{word-spacing:4.256253px;}
.wsfd{word-spacing:4.256851px;}
.ws1b8{word-spacing:4.279925px;}
.ws142{word-spacing:4.315972px;}
.ws22b{word-spacing:4.316270px;}
.ws6f{word-spacing:4.375690px;}
.ws77{word-spacing:4.375750px;}
.ws1aa{word-spacing:4.435049px;}
.ws160{word-spacing:4.435288px;}
.ws1d{word-spacing:4.495066px;}
.wse3{word-spacing:4.495306px;}
.ws8{word-spacing:4.608824px;}
.ws52{word-spacing:4.614862px;}
.ws53{word-spacing:4.615101px;}
.ws233{word-spacing:4.698132px;}
.ws38{word-spacing:4.733880px;}
.ws2e{word-spacing:4.734418px;}
.ws2f{word-spacing:4.734477px;}
.ws130{word-spacing:4.793897px;}
.ws10c{word-spacing:4.853854px;}
.ws1ba{word-spacing:4.853974px;}
.wse6{word-spacing:4.854153px;}
.ws11e{word-spacing:4.897373px;}
.ws11a{word-spacing:4.904980px;}
.ws11c{word-spacing:4.906843px;}
.ws14a{word-spacing:4.913871px;}
.ws11f{word-spacing:4.920836px;}
.ws46{word-spacing:4.973290px;}
.wsaa{word-spacing:4.973530px;}
.ws20e{word-spacing:4.997501px;}
.ws91{word-spacing:5.033248px;}
.wsd8{word-spacing:5.033308px;}
.ws128{word-spacing:5.152864px;}
.ws76{word-spacing:5.212642px;}
.ws51{word-spacing:5.213299px;}
.ws9{word-spacing:5.385818px;}
.ws12d{word-spacing:5.391497px;}
.ws178{word-spacing:5.391976px;}
.ws1a3{word-spacing:5.451455px;}
.wsdc{word-spacing:5.451754px;}
.ws92{word-spacing:5.452052px;}
.ws1d5{word-spacing:5.511532px;}
.ws27{word-spacing:5.571130px;}
.ws26{word-spacing:5.571310px;}
.ws11{word-spacing:5.624632px;}
.ws14{word-spacing:5.625110px;}
.ws111{word-spacing:5.630848px;}
.ws58{word-spacing:5.631506px;}
.ws23b{word-spacing:5.750584px;}
.ws71{word-spacing:5.810302px;}
.ws203{word-spacing:5.810422px;}
.ws80{word-spacing:5.810541px;}
.ws98{word-spacing:5.869662px;}
.ws202{word-spacing:6.073445px;}
.wsb4{word-spacing:6.109072px;}
.ws35{word-spacing:6.169090px;}
.ws1c9{word-spacing:6.193001px;}
.wsf6{word-spacing:6.228449px;}
.ws1a2{word-spacing:6.228927px;}
.wsf0{word-spacing:6.229107px;}
.ws22c{word-spacing:6.252540px;}
.ws59{word-spacing:6.288466px;}
.wsea{word-spacing:6.288765px;}
.ws87{word-spacing:6.348184px;}
.ws159{word-spacing:6.407903px;}
.wsbf{word-spacing:6.408500px;}
.ws8b{word-spacing:6.467860px;}
.ws1d1{word-spacing:6.491891px;}
.ws19f{word-spacing:6.527279px;}
.ws22a{word-spacing:6.527758px;}
.ws1d6{word-spacing:6.555641px;}
.ws99{word-spacing:6.587536px;}
.ws182{word-spacing:6.599133px;}
.ws62{word-spacing:6.646656px;}
.ws61{word-spacing:6.647314px;}
.wscc{word-spacing:6.659269px;}
.wsfe{word-spacing:6.707032px;}
.ws22{word-spacing:6.707092px;}
.ws7c{word-spacing:6.766870px;}
.ws229{word-spacing:6.850738px;}
.ws44{word-spacing:6.886426px;}
.wsd9{word-spacing:6.945845px;}
.ws218{word-spacing:6.946204px;}
.ws72{word-spacing:7.005982px;}
.ws121{word-spacing:7.006101px;}
.ws12b{word-spacing:7.065760px;}
.ws1ab{word-spacing:7.066058px;}
.ws79{word-spacing:7.125538px;}
.wsb5{word-spacing:7.126076px;}
.ws20c{word-spacing:7.149090px;}
.ws145{word-spacing:7.184897px;}
.ws144{word-spacing:7.185316px;}
.ws55{word-spacing:7.185495px;}
.ws1d2{word-spacing:7.208988px;}
.ws174{word-spacing:7.244854px;}
.ws84{word-spacing:7.364650px;}
.ws25{word-spacing:7.424248px;}
.ws104{word-spacing:7.484206px;}
.ws86{word-spacing:7.543984px;}
.ws2c{word-spacing:7.603702px;}
.ws13{word-spacing:7.717459px;}
.wsf3{word-spacing:7.723437px;}
.ws172{word-spacing:7.783096px;}
.ws1db{word-spacing:7.807007px;}
.ws10{word-spacing:7.836836px;}
.ws15b{word-spacing:7.842874px;}
.ws106{word-spacing:7.902652px;}
.ws15c{word-spacing:7.902831px;}
.ws155{word-spacing:7.918992px;}
.wsa2{word-spacing:7.962430px;}
.ws4{word-spacing:7.990722px;}
.ws8d{word-spacing:8.022148px;}
.wsf2{word-spacing:8.022506px;}
.wsb8{word-spacing:8.081866px;}
.ws1ec{word-spacing:8.106016px;}
.wsdb{word-spacing:8.141644px;}
.ws141{word-spacing:8.141764px;}
.wsbd{word-spacing:8.141883px;}
.ws15d{word-spacing:8.261080px;}
.ws13a{word-spacing:8.261320px;}
.ws217{word-spacing:8.285231px;}
.ws9d{word-spacing:8.440654px;}
.ws16d{word-spacing:8.620107px;}
.ws56{word-spacing:8.679467px;}
.ws226{word-spacing:8.680064px;}
.ws1f3{word-spacing:8.703677px;}
.ws13b{word-spacing:8.739484px;}
.ws85{word-spacing:8.799262px;}
.wsa0{word-spacing:8.799501px;}
.ws208{word-spacing:8.823053px;}
.wsd7{word-spacing:8.858860px;}
.wscd{word-spacing:8.859100px;}
.ws1f9{word-spacing:8.883011px;}
.ws14e{word-spacing:8.918698px;}
.ws4f{word-spacing:8.918878px;}
.wsc7{word-spacing:9.038673px;}
.ws107{word-spacing:9.098092px;}
.ws140{word-spacing:9.098212px;}
.ws151{word-spacing:9.098271px;}
.ws83{word-spacing:9.157990px;}
.ws88{word-spacing:9.217708px;}
.ws125{word-spacing:9.217768px;}
.ws126{word-spacing:9.218306px;}
.ws150{word-spacing:9.277486px;}
.ws3b{word-spacing:9.277546px;}
.ws1c1{word-spacing:9.396922px;}
.ws3a{word-spacing:9.397102px;}
.ws29{word-spacing:9.516658px;}
.wsc6{word-spacing:9.576316px;}
.ws1f5{word-spacing:9.635855px;}
.ws1e9{word-spacing:9.636214px;}
.ws34{word-spacing:9.636453px;}
.ws1bf{word-spacing:9.660125px;}
.ws1ce{word-spacing:9.681857px;}
.ws1a0{word-spacing:9.695752px;}
.ws15{word-spacing:9.752252px;}
.ws19{word-spacing:9.755774px;}
.ws17{word-spacing:9.756260px;}
.ws18{word-spacing:9.757816px;}
.ws1e1{word-spacing:9.779442px;}
.ws7a{word-spacing:9.815906px;}
.ws24{word-spacing:9.875266px;}
.ws23{word-spacing:9.875326px;}
.ws1e6{word-spacing:9.887358px;}
.ws1f6{word-spacing:9.927331px;}
.ws1e{word-spacing:9.935104px;}
.ws122{word-spacing:9.935163px;}
.ws1f{word-spacing:9.935283px;}
.ws17c{word-spacing:10.054660px;}
.ws14c{word-spacing:10.114557px;}
.wsb3{word-spacing:10.174216px;}
.ws14b{word-spacing:10.233934px;}
.ws108{word-spacing:10.234053px;}
.wsa{word-spacing:10.287854px;}
.ws115{word-spacing:10.292875px;}
.ws23f{word-spacing:10.353370px;}
.wsda{word-spacing:10.353490px;}
.ws50{word-spacing:10.473106px;}
.ws20a{word-spacing:10.564499px;}
.ws97{word-spacing:10.592662px;}
.ws117{word-spacing:10.592901px;}
.wse9{word-spacing:10.652738px;}
.wsa6{word-spacing:10.712158px;}
.ws1a6{word-spacing:10.712218px;}
.ws1a1{word-spacing:10.712277px;}
.ws7{word-spacing:10.766018px;}
.ws19c{word-spacing:10.771099px;}
.wsef{word-spacing:10.771697px;}
.ws152{word-spacing:10.831594px;}
.ws113{word-spacing:10.831654px;}
.ws114{word-spacing:10.832252px;}
.ws209{word-spacing:10.951688px;}
.wsb6{word-spacing:11.011108px;}
.ws8e{word-spacing:11.071065px;}
.ws210{word-spacing:11.094797px;}
.wsa7{word-spacing:11.130664px;}
.wsa8{word-spacing:11.190442px;}
.ws4d{word-spacing:11.190501px;}
.ws63{word-spacing:11.249801px;}
.ws5a{word-spacing:11.309878px;}
.ws15e{word-spacing:11.369776px;}
.wsee{word-spacing:11.369895px;}
.ws16e{word-spacing:11.429255px;}
.ws16a{word-spacing:11.429852px;}
.ws1dd{word-spacing:11.549110px;}
.ws133{word-spacing:11.608589px;}
.ws1d8{word-spacing:11.632799px;}
.ws143{word-spacing:11.728444px;}
.ws127{word-spacing:11.728683px;}
.wsed{word-spacing:11.787982px;}
.wsdf{word-spacing:11.848000px;}
.ws21c{word-spacing:11.907778px;}
.ws95{word-spacing:11.908076px;}
.ws1bd{word-spacing:11.931689px;}
.ws12e{word-spacing:11.967496px;}
.wsc1{word-spacing:12.026855px;}
.ws4b{word-spacing:12.027453px;}
.ws10d{word-spacing:12.087112px;}
.ws1e8{word-spacing:12.170801px;}
.wsab{word-spacing:12.266864px;}
.wse5{word-spacing:12.268139px;}
.ws3c{word-spacing:12.445660px;}
.ws3d{word-spacing:12.446258px;}
.wsf{word-spacing:12.499281px;}
.ws12a{word-spacing:12.505558px;}
.ws9b{word-spacing:12.505617px;}
.wsc3{word-spacing:12.625054px;}
.ws13e{word-spacing:12.745088px;}
.ws74{word-spacing:12.804448px;}
.ws7f{word-spacing:12.804507px;}
.wsf7{word-spacing:12.864465px;}
.wsa3{word-spacing:12.923884px;}
.ws9a{word-spacing:12.983841px;}
.wsb1{word-spacing:13.162697px;}
.ws1a4{word-spacing:13.163235px;}
.ws78{word-spacing:13.163295px;}
.ws17a{word-spacing:13.222654px;}
.ws1c4{word-spacing:13.274015px;}
.ws1d0{word-spacing:13.277015px;}
.ws1b6{word-spacing:13.280015px;}
.ws1b0{word-spacing:13.282672px;}
.ws139{word-spacing:13.342091px;}
.wsc5{word-spacing:13.402108px;}
.ws41{word-spacing:13.462065px;}
.ws13c{word-spacing:13.521784px;}
.ws4c{word-spacing:13.581502px;}
.ws21f{word-spacing:13.701118px;}
.ws89{word-spacing:13.760896px;}
.wsca{word-spacing:13.820674px;}
.ws1dc{word-spacing:14.322689px;}
.wsf5{word-spacing:14.358496px;}
.ws7b{word-spacing:14.418454px;}
.ws185{word-spacing:14.478471px;}
.ws96{word-spacing:14.537890px;}
.wsc9{word-spacing:14.597907px;}
.ws21b{word-spacing:14.622117px;}
.ws75{word-spacing:14.657566px;}
.ws146{word-spacing:14.717284px;}
.ws1e5{word-spacing:14.717344px;}
.ws16{word-spacing:14.770974px;}
.ws109{word-spacing:14.776703px;}
.ws138{word-spacing:14.777122px;}
.wsc2{word-spacing:14.956097px;}
.ws1cb{word-spacing:14.956695px;}
.ws23e{word-spacing:15.016054px;}
.ws1d9{word-spacing:15.099743px;}
.ws1da{word-spacing:15.099923px;}
.ws207{word-spacing:15.159701px;}
.ws9f{word-spacing:15.314884px;}
.ws1eb{word-spacing:15.326015px;}
.ws9e{word-spacing:15.374902px;}
.ws236{word-spacing:15.494338px;}
.ws93{word-spacing:15.614253px;}
.ws23a{word-spacing:15.637925px;}
.ws116{word-spacing:15.972502px;}
.ws1ac{word-spacing:16.151896px;}
.ws21a{word-spacing:16.319394px;}
.ws19b{word-spacing:16.690018px;}
.ws169{word-spacing:16.809454px;}
.ws6{word-spacing:16.880460px;}
.ws148{word-spacing:16.928890px;}
.ws222{word-spacing:17.096508px;}
.ws17f{word-spacing:17.407354px;}
.wseb{word-spacing:17.467072px;}
.ws200{word-spacing:17.586508px;}
.ws1f1{word-spacing:17.873622px;}
.wsec{word-spacing:18.124690px;}
.ws158{word-spacing:18.184288px;}
.ws1b{word-spacing:18.244066px;}
.ws1a7{word-spacing:18.244246px;}
.ws5{word-spacing:18.344597px;}
.ws12{word-spacing:18.535261px;}
.ws23d{word-spacing:18.925655px;}
.ws1cd{word-spacing:18.925715px;}
.ws214{word-spacing:19.129438px;}
.ws228{word-spacing:19.188798px;}
.ws19a{word-spacing:19.319891px;}
.ws234{word-spacing:19.344699px;}
.ws118{word-spacing:19.380087px;}
.ws1d7{word-spacing:19.427611px;}
.ws231{word-spacing:19.547227px;}
.wse2{word-spacing:19.738696px;}
.wsa5{word-spacing:19.798055px;}
.wsa4{word-spacing:19.798354px;}
.ws1fa{word-spacing:19.798474px;}
.ws1b5{word-spacing:19.843572px;}
.ws1f4{word-spacing:19.858252px;}
.ws1c2{word-spacing:20.097364px;}
.wse0{word-spacing:20.157142px;}
.ws1cc{word-spacing:20.300489px;}
.ws177{word-spacing:20.396254px;}
.ws239{word-spacing:20.420284px;}
.ws1b3{word-spacing:20.581422px;}
.ws216{word-spacing:20.659277px;}
.wsf9{word-spacing:20.694785px;}
.ws1d4{word-spacing:20.994034px;}
.ws1cf{word-spacing:21.280968px;}
.ws232{word-spacing:21.340686px;}
.ws1bb{word-spacing:21.340746px;}
.ws186{word-spacing:21.352702px;}
.ws20b{word-spacing:21.520080px;}
.ws230{word-spacing:21.878628px;}
.ws16b{word-spacing:21.890644px;}
.ws1d3{word-spacing:22.034171px;}
.ws17b{word-spacing:22.129995px;}
.ws221{word-spacing:22.177698px;}
.ws157{word-spacing:22.786656px;}
.ws1e3{word-spacing:22.811285px;}
.wscf{word-spacing:22.835196px;}
.ws4a{word-spacing:23.206059px;}
.ws1ff{word-spacing:23.743822px;}
.ws1de{word-spacing:23.803600px;}
.ws1fc{word-spacing:23.923156px;}
.ws225{word-spacing:25.023071px;}
.ws220{word-spacing:26.003430px;}
.ws21d{word-spacing:26.028776px;}
.ws17d{word-spacing:26.075283px;}
.ws1b7{word-spacing:26.098895px;}
.ws1ea{word-spacing:26.162177px;}
.ws1b2{word-spacing:26.374054px;}
.ws1e2{word-spacing:26.421816px;}
.ws201{word-spacing:26.481654px;}
.ws23c{word-spacing:26.481833px;}
.ws156{word-spacing:26.732781px;}
.ws1f7{word-spacing:27.378204px;}
.ws240{word-spacing:27.796352px;}
.ws1f8{word-spacing:27.797009px;}
.ws179{word-spacing:27.808666px;}
.ws1e0{word-spacing:27.949876px;}
.ws206{word-spacing:27.950412px;}
.ws2{word-spacing:27.974958px;}
.ws213{word-spacing:28.047838px;}
.ws212{word-spacing:29.506481px;}
.ws1be{word-spacing:29.900956px;}
.ws1fe{word-spacing:30.343313px;}
.ws181{word-spacing:30.558454px;}
.ws180{word-spacing:31.455184px;}
.ws22d{word-spacing:31.598711px;}
.ws215{word-spacing:32.220222px;}
.ws224{word-spacing:33.212537px;}
.ws204{word-spacing:33.487636px;}
.ws1bc{word-spacing:33.511905px;}
.ws15f{word-spacing:34.085894px;}
.ws17e{word-spacing:35.340754px;}
.ws211{word-spacing:35.458586px;}
.ws1fd{word-spacing:35.663495px;}
.ws1fb{word-spacing:36.464580px;}
.ws1c3{word-spacing:36.703453px;}
.ws235{word-spacing:37.492702px;}
.ws21e{word-spacing:38.308499px;}
.ws1c8{word-spacing:38.437254px;}
.ws1df{word-spacing:40.170816px;}
.ws238{word-spacing:42.860527px;}
.ws1ca{word-spacing:46.148616px;}
.ws205{word-spacing:49.077738px;}
.ws1b4{word-spacing:53.094879px;}
.ws163{word-spacing:55.083851px;}
.ws193{word-spacing:55.093802px;}
.ws11d{word-spacing:55.127272px;}
.ws1af{word-spacing:59.462077px;}
.ws1a{word-spacing:60.568812px;}
.ws189{word-spacing:62.719257px;}
.ws1ad{word-spacing:62.778856px;}
.ws1c7{word-spacing:65.261894px;}
.ws18b{word-spacing:71.028220px;}
.ws194{word-spacing:71.030851px;}
.ws198{word-spacing:71.034689px;}
.ws1ae{word-spacing:71.087758px;}
.ws18f{word-spacing:71.087878px;}
.ws18e{word-spacing:71.087998px;}
.ws18d{word-spacing:71.662336px;}
.ws18a{word-spacing:71.668079px;}
.ws199{word-spacing:71.673822px;}
.ws195{word-spacing:71.674079px;}
.ws237{word-spacing:79.635559px;}
.ws119{word-spacing:86.510781px;}
.ws197{word-spacing:91.552404px;}
.ws191{word-spacing:91.558404px;}
.wsd5{word-spacing:125.426200px;}
.wsd4{word-spacing:127.183629px;}
.ws166{word-spacing:133.164000px;}
.ws162{word-spacing:163.055697px;}
.ws165{word-spacing:163.060647px;}
.ws196{word-spacing:176.849632px;}
.ws190{word-spacing:176.855632px;}
.ws164{word-spacing:191.127919px;}
.ws18c{word-spacing:195.404746px;}
.ws192{word-spacing:203.974492px;}
.ws188{word-spacing:212.283634px;}
.ws11b{word-spacing:262.736266px;}
.ws167{word-spacing:2052.586866px;}
._68{margin-left:-21.338696px;}
._1{margin-left:-10.385183px;}
._5{margin-left:-7.058490px;}
._a{margin-left:-5.217458px;}
._7{margin-left:-4.081583px;}
._2{margin-left:-2.324310px;}
._8{margin-left:-1.023497px;}
._0{width:1.750078px;}
._3{width:2.984274px;}
._26{width:4.306497px;}
._27{width:6.842666px;}
._37{width:13.896264px;}
._10{width:15.401569px;}
._16{width:16.715026px;}
._d{width:18.285036px;}
._6{width:19.399269px;}
._36{width:21.116357px;}
._25{width:22.290282px;}
._17{width:23.708557px;}
._b{width:25.747981px;}
._9{width:26.937227px;}
._15{width:28.856378px;}
._11{width:30.592452px;}
._63{width:31.799846px;}
._18{width:32.937678px;}
._1a{width:34.237653px;}
._f{width:35.670950px;}
._4{width:37.528620px;}
._e{width:39.051430px;}
._1d{width:40.529484px;}
._64{width:42.405249px;}
._39{width:43.544114px;}
._13{width:45.484325px;}
._c{width:47.037896px;}
._28{width:48.445790px;}
._29{width:50.614852px;}
._14{width:52.305033px;}
._12{width:53.604888px;}
._1b{width:55.381294px;}
._38{width:57.207546px;}
._2b{width:58.838204px;}
._57{width:59.881100px;}
._2a{width:60.913782px;}
._1c{width:63.297870px;}
._1e{width:65.755800px;}
._58{width:68.668346px;}
._4d{width:71.202706px;}
._1f{width:72.307832px;}
._60{width:74.184498px;}
._65{width:76.428901px;}
._3c{width:77.891212px;}
._19{width:78.903000px;}
._66{width:79.979021px;}
._5a{width:87.205933px;}
._22{width:88.351824px;}
._5f{width:95.564231px;}
._2c{width:97.085595px;}
._49{width:100.211662px;}
._48{width:101.622600px;}
._41{width:103.475957px;}
._61{width:105.524942px;}
._50{width:106.687364px;}
._21{width:108.126341px;}
._56{width:110.104224px;}
._4a{width:111.605526px;}
._51{width:112.741547px;}
._4e{width:115.066096px;}
._67{width:117.026912px;}
._54{width:126.012263px;}
._43{width:130.037644px;}
._20{width:132.501757px;}
._4f{width:141.412276px;}
._33{width:157.814099px;}
._62{width:175.329647px;}
._5e{width:176.421650px;}
._24{width:184.833576px;}
._42{width:189.104267px;}
._5b{width:192.382376px;}
._23{width:200.435634px;}
._35{width:202.584869px;}
._31{width:206.911372px;}
._5d{width:212.288450px;}
._3b{width:216.065565px;}
._2f{width:238.251560px;}
._46{width:248.916070px;}
._3e{width:252.346605px;}
._45{width:253.427284px;}
._3a{width:267.984774px;}
._3f{width:278.804771px;}
._32{width:283.868967px;}
._44{width:295.901100px;}
._5c{width:306.080132px;}
._40{width:307.287254px;}
._47{width:308.989748px;}
._4c{width:320.434106px;}
._3d{width:329.608860px;}
._59{width:358.053704px;}
._30{width:368.949816px;}
._2e{width:373.433106px;}
._2d{width:385.568100px;}
._34{width:445.427722px;}
._55{width:546.280292px;}
._53{width:554.656700px;}
._52{width:572.418854px;}
._4b{width:793.495241px;}
.fc7{color:rgb(236,0,140);}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(0,104,152);}
.fc1{color:rgb(148,150,153);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:35.868000px;}
.fs9{font-size:41.844000px;}
.fs5{font-size:47.820000px;}
.fsa{font-size:48.000000px;}
.fs2{font-size:48.000300px;}
.fs0{font-size:48.242661px;}
.fs6{font-size:53.796000px;}
.fs1{font-size:59.761202px;}
.fs8{font-size:59.778000px;}
.fs4{font-size:71.730000px;}
.fs3{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y59{bottom:2.526000px;}
.y2{bottom:4.615708px;}
.y1{bottom:38.377917px;}
.y58{bottom:41.879334px;}
.y5a{bottom:42.993625px;}
.y3d{bottom:106.299000px;}
.yea{bottom:110.518500px;}
.y3c{bottom:124.231500px;}
.ye9{bottom:131.949000px;}
.y1e1{bottom:135.517500px;}
.y3b{bottom:142.164000px;}
.ye8{bottom:149.881500px;}
.y1e0{bottom:153.450000px;}
.y3a{bottom:160.096500px;}
.y1af{bottom:161.542500px;}
.ye7{bottom:167.814000px;}
.y1df{bottom:172.099500px;}
.y198{bottom:175.992000px;}
.y57{bottom:178.029000px;}
.y39{bottom:178.030500px;}
.y1ae{bottom:179.476500px;}
.yb2{bottom:183.186000px;}
.ye6{bottom:185.746500px;}
.y1de{bottom:190.032000px;}
.y197{bottom:193.924500px;}
.y23a{bottom:195.849000px;}
.y38{bottom:195.963000px;}
.y207{bottom:196.879500px;}
.y1ad{bottom:197.409000px;}
.y169{bottom:197.499000px;}
.ye5{bottom:203.679000px;}
.y1dd{bottom:207.964500px;}
.yb1{bottom:210.526500px;}
.y196{bottom:211.858500px;}
.y239{bottom:213.781500px;}
.y37{bottom:213.895500px;}
.y139{bottom:213.931500px;}
.y206{bottom:214.812000px;}
.y1ac{bottom:215.341500px;}
.y168{bottom:215.431500px;}
.ye4{bottom:221.611500px;}
.y10c{bottom:225.373500px;}
.y1dc{bottom:225.898500px;}
.yb0{bottom:228.459000px;}
.y195{bottom:229.791000px;}
.y238{bottom:231.714000px;}
.y36{bottom:231.828000px;}
.y138{bottom:231.864000px;}
.y205{bottom:232.744500px;}
.y1ab{bottom:233.274000px;}
.y167{bottom:233.364000px;}
.ye3{bottom:239.545500px;}
.y1db{bottom:243.831000px;}
.y194{bottom:247.723500px;}
.y237{bottom:249.532500px;}
.y35{bottom:249.760500px;}
.y137{bottom:249.796500px;}
.y204{bottom:250.678500px;}
.y1aa{bottom:251.206500px;}
.y166{bottom:251.296500px;}
.y56{bottom:254.521500px;}
.ye2{bottom:257.478000px;}
.yaf{bottom:257.725500px;}
.y1da{bottom:261.763500px;}
.y193{bottom:265.656000px;}
.y236{bottom:267.466500px;}
.y34{bottom:267.693000px;}
.y136{bottom:267.729000px;}
.y1a9{bottom:269.139000px;}
.y165{bottom:269.230500px;}
.y203{bottom:269.527500px;}
.y10b{bottom:271.033500px;}
.y55{bottom:272.454000px;}
.y1d9{bottom:279.696000px;}
.ye1{bottom:280.213500px;}
.y235{bottom:285.399000px;}
.y33{bottom:285.627000px;}
.y135{bottom:285.661500px;}
.y192{bottom:286.446000px;}
.yae{bottom:286.993500px;}
.y1a8{bottom:287.073000px;}
.y164{bottom:287.163000px;}
.y202{bottom:287.460000px;}
.y10a{bottom:288.966000px;}
.y54{bottom:290.386500px;}
.y1d8{bottom:297.628500px;}
.y234{bottom:303.331500px;}
.y32{bottom:303.559500px;}
.y134{bottom:303.595500px;}
.y191{bottom:304.378500px;}
.y1a7{bottom:305.005500px;}
.y163{bottom:305.095500px;}
.y201{bottom:305.392500px;}
.y109{bottom:306.898500px;}
.ye0{bottom:307.200000px;}
.y53{bottom:308.319000px;}
.y1d7{bottom:316.278000px;}
.y233{bottom:321.264000px;}
.y31{bottom:321.492000px;}
.y133{bottom:321.528000px;}
.y190{bottom:322.311000px;}
.y1a6{bottom:322.938000px;}
.y200{bottom:323.325000px;}
.y108{bottom:324.831000px;}
.ydf{bottom:325.132500px;}
.y52{bottom:326.251500px;}
.y1d6{bottom:334.210500px;}
.yad{bottom:335.230500px;}
.y162{bottom:335.539500px;}
.y232{bottom:339.082500px;}
.y30{bottom:339.424500px;}
.y132{bottom:339.460500px;}
.y18f{bottom:340.243500px;}
.y1ff{bottom:342.175500px;}
.y107{bottom:342.763500px;}
.y51{bottom:344.185500px;}
.y1d5{bottom:352.143000px;}
.yac{bottom:353.164500px;}
.y1a5{bottom:353.212500px;}
.yde{bottom:356.673000px;}
.y231{bottom:357.016500px;}
.y84{bottom:357.357000px;}
.y131{bottom:357.393000px;}
.y18e{bottom:358.176000px;}
.y2f{bottom:358.975500px;}
.y1fe{bottom:360.108000px;}
.y106{bottom:360.697500px;}
.y50{bottom:362.118000px;}
.y1d4{bottom:370.077000px;}
.yab{bottom:371.097000px;}
.ydd{bottom:374.605500px;}
.y230{bottom:374.949000px;}
.y83{bottom:375.289500px;}
.y130{bottom:375.361500px;}
.y18d{bottom:376.110000px;}
.y2e{bottom:376.908000px;}
.y1fd{bottom:378.040500px;}
.y105{bottom:379.611000px;}
.y4f{bottom:380.050500px;}
.y262{bottom:385.101000px;}
.y161{bottom:387.132000px;}
.y1d3{bottom:388.009500px;}
.yaa{bottom:389.029500px;}
.ydc{bottom:392.538000px;}
.y22f{bottom:392.881500px;}
.y82{bottom:393.223500px;}
.y12f{bottom:393.294000px;}
.y18c{bottom:394.042500px;}
.y2d{bottom:394.842000px;}
.y1fc{bottom:395.973000px;}
.y104{bottom:397.543500px;}
.y4e{bottom:397.983000px;}
.y1a4{bottom:401.335500px;}
.y261{bottom:403.033500px;}
.y160{bottom:405.066000px;}
.y1d2{bottom:405.942000px;}
.ya9{bottom:406.962000px;}
.ydb{bottom:410.470500px;}
.y22e{bottom:410.814000px;}
.y81{bottom:411.156000px;}
.y12e{bottom:411.226500px;}
.y18b{bottom:411.975000px;}
.y2c{bottom:412.774500px;}
.y1fb{bottom:413.905500px;}
.y103{bottom:415.476000px;}
.y4d{bottom:415.915500px;}
.y1a3{bottom:419.268000px;}
.y260{bottom:420.966000px;}
.y15f{bottom:422.998500px;}
.y1d1{bottom:423.874500px;}
.ya8{bottom:424.894500px;}
.yda{bottom:428.403000px;}
.y22d{bottom:428.632500px;}
.y80{bottom:429.088500px;}
.y12d{bottom:429.159000px;}
.y18a{bottom:429.907500px;}
.y2b{bottom:430.707000px;}
.y1fa{bottom:432.756000px;}
.y102{bottom:433.410000px;}
.y4c{bottom:433.849500px;}
.y1a2{bottom:437.200500px;}
.y25f{bottom:439.729500px;}
.y15e{bottom:440.931000px;}
.y1d0{bottom:441.807000px;}
.ya7{bottom:442.828500px;}
.yd9{bottom:446.337000px;}
.y22c{bottom:446.565000px;}
.y7f{bottom:447.021000px;}
.y12c{bottom:447.093000px;}
.y189{bottom:447.840000px;}
.y2a{bottom:448.639500px;}
.y1f9{bottom:450.688500px;}
.y101{bottom:451.342500px;}
.y4b{bottom:451.782000px;}
.y1a1{bottom:455.133000px;}
.y25e{bottom:457.662000px;}
.y15d{bottom:458.863500px;}
.y1cf{bottom:459.739500px;}
.ya6{bottom:460.761000px;}
.yd8{bottom:464.269500px;}
.y22b{bottom:464.499000px;}
.y12b{bottom:465.025500px;}
.y29{bottom:466.572000px;}
.y1f8{bottom:468.621000px;}
.y100{bottom:469.275000px;}
.y4a{bottom:469.714500px;}
.y1a0{bottom:473.067000px;}
.y25d{bottom:475.594500px;}
.y15c{bottom:476.796000px;}
.y1ce{bottom:477.673500px;}
.y7e{bottom:478.089000px;}
.ya5{bottom:478.693500px;}
.y188{bottom:480.741000px;}
.y22a{bottom:482.317500px;}
.y28{bottom:484.504500px;}
.y1f7{bottom:486.553500px;}
.yd7{bottom:487.155000px;}
.y49{bottom:487.647000px;}
.y19f{bottom:490.999500px;}
.yff{bottom:492.441000px;}
.y12a{bottom:492.675000px;}
.y25c{bottom:493.527000px;}
.y15b{bottom:494.728500px;}
.y1cd{bottom:495.606000px;}
.ya4{bottom:496.626000px;}
.y229{bottom:500.250000px;}
.y27{bottom:502.438500px;}
.yd6{bottom:505.087500px;}
.y1f6{bottom:505.404000px;}
.y48{bottom:505.579500px;}
.y19e{bottom:508.932000px;}
.y25b{bottom:511.459500px;}
.y15a{bottom:512.662500px;}
.y1cc{bottom:513.538500px;}
.ya3{bottom:514.558500px;}
.y228{bottom:518.182500px;}
.yfe{bottom:519.859500px;}
.y26{bottom:520.371000px;}
.yd5{bottom:523.020000px;}
.y1f5{bottom:523.336500px;}
.y19d{bottom:526.864500px;}
.y47{bottom:528.273000px;}
.y25a{bottom:530.223000px;}
.y159{bottom:530.595000px;}
.y7d{bottom:531.460500px;}
.y1cb{bottom:531.471000px;}
.ya2{bottom:532.491000px;}
.y227{bottom:536.115000px;}
.y129{bottom:536.305500px;}
.y187{bottom:536.350500px;}
.y25{bottom:538.303500px;}
.yfd{bottom:538.773000px;}
.yd4{bottom:540.952500px;}
.y1f4{bottom:541.269000px;}
.y19c{bottom:544.797000px;}
.y46{bottom:546.205500px;}
.y259{bottom:548.155500px;}
.y158{bottom:548.527500px;}
.y7c{bottom:549.394500px;}
.y1ca{bottom:549.403500px;}
.ya1{bottom:550.425000px;}
.y226{bottom:554.049000px;}
.y128{bottom:554.238000px;}
.y186{bottom:554.283000px;}
.y24{bottom:556.236000px;}
.yfc{bottom:556.705500px;}
.yd3{bottom:558.885000px;}
.y1f3{bottom:559.201500px;}
.y19b{bottom:562.731000px;}
.y45{bottom:564.138000px;}
.y258{bottom:566.088000px;}
.y157{bottom:566.460000px;}
.y7b{bottom:567.327000px;}
.y1c9{bottom:567.336000px;}
.ya0{bottom:568.357500px;}
.y225{bottom:571.867500px;}
.y127{bottom:572.170500px;}
.y185{bottom:572.215500px;}
.y23{bottom:574.168500px;}
.yfb{bottom:574.639500px;}
.yd2{bottom:576.819000px;}
.y1f2{bottom:578.052000px;}
.y19a{bottom:580.663500px;}
.y44{bottom:582.072000px;}
.y257{bottom:584.022000px;}
.y156{bottom:584.392500px;}
.y7a{bottom:585.259500px;}
.y9f{bottom:587.194500px;}
.y224{bottom:589.800000px;}
.y126{bottom:590.103000px;}
.y184{bottom:590.148000px;}
.y22{bottom:592.102500px;}
.yfa{bottom:592.572000px;}
.yd1{bottom:594.751500px;}
.y1f1{bottom:595.984500px;}
.y1c8{bottom:596.254500px;}
.y199{bottom:598.596000px;}
.y43{bottom:600.004500px;}
.y256{bottom:601.954500px;}
.y155{bottom:602.325000px;}
.y79{bottom:603.192000px;}
.y9e{bottom:605.127000px;}
.y223{bottom:607.732500px;}
.y125{bottom:608.037000px;}
.y21{bottom:610.035000px;}
.yf9{bottom:610.504500px;}
.y183{bottom:610.938000px;}
.yd0{bottom:612.684000px;}
.y1f0{bottom:613.917000px;}
.y42{bottom:617.937000px;}
.y255{bottom:619.887000px;}
.y78{bottom:621.124500px;}
.y154{bottom:621.795000px;}
.y9d{bottom:623.059500px;}
.y222{bottom:625.551000px;}
.y124{bottom:625.969500px;}
.y20{bottom:627.967500px;}
.yf8{bottom:628.437000px;}
.y182{bottom:628.870500px;}
.ycf{bottom:630.616500px;}
.y1ef{bottom:631.849500px;}
.y41{bottom:635.869500px;}
.y254{bottom:637.819500px;}
.y77{bottom:639.057000px;}
.y153{bottom:639.727500px;}
.y9c{bottom:640.992000px;}
.y221{bottom:643.485000px;}
.y1c7{bottom:643.497000px;}
.y123{bottom:643.902000px;}
.y1f{bottom:645.900000px;}
.yf7{bottom:646.369500px;}
.y1ee{bottom:650.700000px;}
.yce{bottom:653.502000px;}
.y40{bottom:653.802000px;}
.y253{bottom:656.583000px;}
.y76{bottom:656.991000px;}
.y152{bottom:657.660000px;}
.y9b{bottom:658.924500px;}
.y220{bottom:661.417500px;}
.y1c6{bottom:661.429500px;}
.y122{bottom:661.834500px;}
.y1e{bottom:663.832500px;}
.yf6{bottom:665.284500px;}
.y1ed{bottom:668.632500px;}
.ycd{bottom:671.434500px;}
.y3f{bottom:671.734500px;}
.y252{bottom:674.515500px;}
.y75{bottom:674.923500px;}
.y151{bottom:675.594000px;}
.y9a{bottom:676.858500px;}
.y21f{bottom:679.350000px;}
.y1c5{bottom:679.362000px;}
.y181{bottom:679.680000px;}
.y121{bottom:679.767000px;}
.yf5{bottom:683.217000px;}
.y1ec{bottom:686.565000px;}
.ycc{bottom:689.368500px;}
.y251{bottom:692.448000px;}
.y74{bottom:692.856000px;}
.y150{bottom:693.526500px;}
.y3e{bottom:694.428000px;}
.y1d{bottom:694.429500px;}
.y99{bottom:694.791000px;}
.y21e{bottom:697.282500px;}
.y1c4{bottom:697.294500px;}
.y180{bottom:697.612500px;}
.y120{bottom:697.735500px;}
.yf4{bottom:701.149500px;}
.y1eb{bottom:704.497500px;}
.ycb{bottom:707.301000px;}
.y250{bottom:710.380500px;}
.y73{bottom:710.788500px;}
.y14f{bottom:711.459000px;}
.y98{bottom:713.628000px;}
.y21d{bottom:715.101000px;}
.y1c3{bottom:715.227000px;}
.y17f{bottom:715.545000px;}
.y11f{bottom:715.668000px;}
.yf3{bottom:719.082000px;}
.y1ea{bottom:723.346500px;}
.yca{bottom:727.645500px;}
.y24f{bottom:728.313000px;}
.y72{bottom:728.721000px;}
.yc9{bottom:729.339000px;}
.y14e{bottom:729.391500px;}
.y97{bottom:731.560500px;}
.y21c{bottom:733.035000px;}
.y1c2{bottom:733.159500px;}
.y17e{bottom:733.477500px;}
.y11e{bottom:733.602000px;}
.yf2{bottom:737.016000px;}
.y1e9{bottom:741.280500px;}
.y24e{bottom:746.247000px;}
.y71{bottom:746.653500px;}
.y14d{bottom:747.324000px;}
.y96{bottom:749.493000px;}
.y21b{bottom:750.967500px;}
.y17d{bottom:751.411500px;}
.y11d{bottom:751.534500px;}
.yc8{bottom:754.555500px;}
.yf1{bottom:755.929500px;}
.y1e8{bottom:759.213000px;}
.y24d{bottom:764.179500px;}
.y14c{bottom:765.256500px;}
.y70{bottom:766.458000px;}
.y95{bottom:767.425500px;}
.y21a{bottom:768.900000px;}
.y17c{bottom:769.344000px;}
.y11c{bottom:769.467000px;}
.y1c1{bottom:772.647000px;}
.yf0{bottom:773.862000px;}
.y19{bottom:774.309000px;}
.yc7{bottom:776.535000px;}
.y24c{bottom:782.941500px;}
.y14b{bottom:783.190500px;}
.y6f{bottom:784.392000px;}
.y1e7{bottom:784.903500px;}
.y94{bottom:785.358000px;}
.y1c{bottom:786.264000px;}
.y219{bottom:786.718500px;}
.y17b{bottom:787.276500px;}
.y11b{bottom:787.399500px;}
.y1c0{bottom:790.579500px;}
.yef{bottom:791.794500px;}
.y18{bottom:792.241500px;}
.yc6{bottom:794.467500px;}
.y1b{bottom:798.219000px;}
.y24b{bottom:800.875500px;}
.y14a{bottom:801.123000px;}
.y6e{bottom:802.324500px;}
.y93{bottom:803.292000px;}
.y218{bottom:804.651000px;}
.y17a{bottom:805.209000px;}
.y11a{bottom:805.368000px;}
.y1bf{bottom:808.512000px;}
.yee{bottom:809.728500px;}
.y1a{bottom:810.174000px;}
.y24a{bottom:818.808000px;}
.y149{bottom:819.055500px;}
.y6d{bottom:820.257000px;}
.y92{bottom:821.224500px;}
.yc5{bottom:821.755500px;}
.y217{bottom:822.585000px;}
.y179{bottom:823.141500px;}
.y119{bottom:823.300500px;}
.y1be{bottom:826.444500px;}
.yed{bottom:827.661000px;}
.y17{bottom:828.106500px;}
.y1e6{bottom:828.574500px;}
.y249{bottom:836.740500px;}
.y148{bottom:836.988000px;}
.y6c{bottom:838.189500px;}
.y91{bottom:839.157000px;}
.yc4{bottom:839.688000px;}
.y216{bottom:840.517500px;}
.y178{bottom:841.074000px;}
.y118{bottom:841.233000px;}
.y1bd{bottom:844.378500px;}
.yec{bottom:845.593500px;}
.y16{bottom:846.039000px;}
.y1e5{bottom:846.507000px;}
.y147{bottom:854.920500px;}
.y248{bottom:855.504000px;}
.y6b{bottom:856.122000px;}
.y90{bottom:857.089500px;}
.yc3{bottom:858.172500px;}
.y215{bottom:858.450000px;}
.y177{bottom:859.008000px;}
.y117{bottom:859.167000px;}
.y1bc{bottom:862.311000px;}
.y15{bottom:863.971500px;}
.y1e4{bottom:864.439500px;}
.y146{bottom:872.853000px;}
.y247{bottom:873.436500px;}
.y6a{bottom:874.056000px;}
.y8f{bottom:875.022000px;}
.yc2{bottom:876.105000px;}
.y214{bottom:876.268500px;}
.y116{bottom:877.099500px;}
.y176{bottom:877.537500px;}
.y1bb{bottom:880.243500px;}
.y14{bottom:881.905500px;}
.y1e3{bottom:882.373500px;}
.y175{bottom:886.504500px;}
.y246{bottom:891.369000px;}
.y69{bottom:891.988500px;}
.y145{bottom:892.323000px;}
.y8e{bottom:892.954500px;}
.yc1{bottom:894.037500px;}
.y213{bottom:894.201000px;}
.y115{bottom:895.032000px;}
.y1ba{bottom:898.774500px;}
.yeb{bottom:899.776500px;}
.y13{bottom:899.838000px;}
.y1e2{bottom:900.306000px;}
.y245{bottom:909.301500px;}
.y68{bottom:909.921000px;}
.y144{bottom:910.255500px;}
.y8d{bottom:910.888500px;}
.yc0{bottom:911.970000px;}
.y212{bottom:912.133500px;}
.y114{bottom:912.964500px;}
.y1b9{bottom:917.304000px;}
.y174{bottom:917.505000px;}
.y12{bottom:917.770500px;}
.y244{bottom:927.234000px;}
.y67{bottom:927.853500px;}
.y143{bottom:928.188000px;}
.y8c{bottom:928.821000px;}
.ybf{bottom:929.902500px;}
.y211{bottom:930.067500px;}
.y113{bottom:930.933000px;}
.y11{bottom:935.703000px;}
.y1b8{bottom:935.835000px;}
.y66{bottom:945.786000px;}
.y243{bottom:945.997500px;}
.y142{bottom:946.122000px;}
.y8b{bottom:946.753500px;}
.ybe{bottom:947.835000px;}
.y210{bottom:947.886000px;}
.y112{bottom:948.865500px;}
.y10{bottom:953.635500px;}
.y1b7{bottom:953.767500px;}
.y173{bottom:956.275500px;}
.y65{bottom:963.718500px;}
.y242{bottom:963.930000px;}
.y141{bottom:964.054500px;}
.y8a{bottom:964.686000px;}
.ybd{bottom:965.769000px;}
.y20f{bottom:965.818500px;}
.yf{bottom:971.568000px;}
.y172{bottom:974.209500px;}
.y1b6{bottom:981.216000px;}
.y64{bottom:981.652500px;}
.y241{bottom:981.862500px;}
.y140{bottom:981.987000px;}
.y89{bottom:982.618500px;}
.ybc{bottom:983.701500px;}
.y20e{bottom:983.751000px;}
.ye{bottom:989.502000px;}
.y171{bottom:992.739000px;}
.y1b5{bottom:999.148500px;}
.y63{bottom:999.585000px;}
.y111{bottom:999.747000px;}
.y240{bottom:999.795000px;}
.y13f{bottom:999.919500px;}
.y88{bottom:1001.455500px;}
.y20d{bottom:1001.571000px;}
.ybb{bottom:1001.634000px;}
.y170{bottom:1001.706000px;}
.yd{bottom:1007.434500px;}
.y1b4{bottom:1017.081000px;}
.y62{bottom:1017.517500px;}
.y110{bottom:1017.679500px;}
.y23f{bottom:1017.729000px;}
.y13e{bottom:1017.852000px;}
.y87{bottom:1019.388000px;}
.y20c{bottom:1019.503500px;}
.yba{bottom:1019.566500px;}
.yc{bottom:1025.367000px;}
.y16f{bottom:1029.801000px;}
.y1b3{bottom:1035.013500px;}
.y61{bottom:1035.450000px;}
.y10f{bottom:1035.612000px;}
.y13d{bottom:1035.784500px;}
.y23e{bottom:1036.491000px;}
.y86{bottom:1037.322000px;}
.y20b{bottom:1037.436000px;}
.y1b2{bottom:1052.947500px;}
.y10e{bottom:1053.544500px;}
.y13c{bottom:1053.718500px;}
.y23d{bottom:1054.423500px;}
.y60{bottom:1055.254500px;}
.y20a{bottom:1055.368500px;}
.ya{bottom:1057.497000px;}
.yb{bottom:1061.715000px;}
.y16e{bottom:1068.571500px;}
.y1b1{bottom:1070.880000px;}
.yb9{bottom:1071.477000px;}
.y13b{bottom:1071.651000px;}
.y23c{bottom:1072.357500px;}
.y5f{bottom:1073.187000px;}
.y209{bottom:1073.301000px;}
.y9{bottom:1076.176500px;}
.y16d{bottom:1086.504000px;}
.y1b0{bottom:1088.812500px;}
.yb8{bottom:1089.409500px;}
.y13a{bottom:1089.583500px;}
.y23b{bottom:1090.290000px;}
.y5e{bottom:1091.119500px;}
.y208{bottom:1091.233500px;}
.y7{bottom:1097.098500px;}
.y8{bottom:1103.605500px;}
.y16c{bottom:1104.436500px;}
.yb7{bottom:1107.343500px;}
.y85{bottom:1109.052000px;}
.y5d{bottom:1109.053500px;}
.y16b{bottom:1122.967500px;}
.yb6{bottom:1125.873000px;}
.y5c{bottom:1126.986000px;}
.y16a{bottom:1131.934500px;}
.yb5{bottom:1134.840000px;}
.y6{bottom:1135.951500px;}
.y5b{bottom:1144.918500px;}
.y10d{bottom:1145.001000px;}
.y5{bottom:1162.851000px;}
.yb4{bottom:1162.935000px;}
.yb3{bottom:1165.888438px;}
.y4{bottom:1165.953811px;}
.y3{bottom:1179.733329px;}
.he{height:13.200074px;}
.h1b{height:23.852220px;}
.hd{height:29.960304px;}
.h9{height:33.665280px;}
.h13{height:33.840211px;}
.ha{height:34.074600px;}
.h4{height:36.000225px;}
.h8{height:38.517936px;}
.h1d{height:41.485932px;}
.h12{height:41.725044px;}
.h11{height:42.792210px;}
.hb{height:42.801048px;}
.h3{height:44.827280px;}
.hc{height:44.833500px;}
.h7{height:45.429000px;}
.h1e{height:47.781048px;}
.h19{height:49.149396px;}
.h1a{height:49.474416px;}
.hf{height:49.898438px;}
.h6{height:51.358680px;}
.h5{height:60.597504px;}
.h17{height:62.703396px;}
.h14{height:80.695500px;}
.h1c{height:80.701500px;}
.h18{height:83.037396px;}
.h15{height:101.673396px;}
.h16{height:101.679396px;}
.h2{height:1195.555378px;}
.h10{height:1262.830100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:13.346985px;}
.w5{width:13.348500px;}
.w2{width:727.996041px;}
.w4{width:892.910172px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.437964px;}
.x12{left:81.000000px;}
.x1{left:82.367775px;}
.x4{left:85.039500px;}
.xd{left:99.984000px;}
.x1b{left:101.677500px;}
.x14{left:106.801500px;}
.x1f{left:108.079500px;}
.x16{left:114.927000px;}
.x13{left:122.058000px;}
.x2{left:125.858878px;}
.x25{left:163.396500px;}
.x22{left:165.883500px;}
.x24{left:175.597500px;}
.x21{left:178.336500px;}
.x1e{left:185.269500px;}
.x15{left:200.035500px;}
.x11{left:208.226652px;}
.x18{left:216.160500px;}
.x19{left:224.862000px;}
.x1d{left:227.785500px;}
.x5{left:234.634500px;}
.x1a{left:236.722500px;}
.x6{left:247.336500px;}
.x2a{left:254.041500px;}
.x7{left:259.122000px;}
.x29{left:260.995500px;}
.x2f{left:267.025500px;}
.x8{left:268.836000px;}
.x20{left:296.248500px;}
.x17{left:336.030000px;}
.x23{left:349.944000px;}
.x30{left:387.136500px;}
.x26{left:389.715000px;}
.x27{left:449.865000px;}
.xe{left:453.928500px;}
.x2d{left:461.400000px;}
.xf{left:468.873000px;}
.x2e{left:484.647000px;}
.x1c{left:509.647500px;}
.x2c{left:526.273500px;}
.x2b{left:659.772000px;}
.xc{left:688.965000px;}
.xa{left:690.340500px;}
.x9{left:694.437000px;}
.xb{left:704.157000px;}
.x28{left:722.916000px;}
.x10{left:798.566986px;}
@media print{
.v4{vertical-align:-46.693333pt;}
.v2{vertical-align:-31.877333pt;}
.v9{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:4.426667pt;}
.v6{vertical-align:6.021333pt;}
.v5{vertical-align:12.048000pt;}
.v8{vertical-align:19.280000pt;}
.v7{vertical-align:30.122667pt;}
.v1{vertical-align:31.877333pt;}
.v3{vertical-align:46.688000pt;}
.ls6{letter-spacing:-0.300471pt;}
.ls4{letter-spacing:-0.079370pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.034016pt;}
.ls1{letter-spacing:0.215432pt;}
.ls0{letter-spacing:0.544250pt;}
.ls2{letter-spacing:0.590670pt;}
.ls8{letter-spacing:0.592488pt;}
.ls9{letter-spacing:0.616472pt;}
.ls3{letter-spacing:0.616589pt;}
.ls10{letter-spacing:2.652304pt;}
.lsf{letter-spacing:2.655169pt;}
.ls11{letter-spacing:2.657637pt;}
.lsb{letter-spacing:3.833105pt;}
.lsd{letter-spacing:6.023919pt;}
.lsc{letter-spacing:21.133360pt;}
.lse{letter-spacing:22.988304pt;}
.lsa{letter-spacing:26.562647pt;}
.ws1{word-spacing:-35.936443pt;}
.ws0{word-spacing:-35.755026pt;}
.wsbb{word-spacing:-14.761181pt;}
.ws6e{word-spacing:-14.495260pt;}
.wse4{word-spacing:-12.050640pt;}
.ws36{word-spacing:-2.699309pt;}
.ws3f{word-spacing:-2.646173pt;}
.wsd0{word-spacing:-2.645960pt;}
.ws16c{word-spacing:-2.539848pt;}
.ws45{word-spacing:-2.433735pt;}
.ws1b1{word-spacing:-2.380387pt;}
.ws19d{word-spacing:-2.221457pt;}
.wsd2{word-spacing:-2.061464pt;}
.ws8c{word-spacing:-2.008541pt;}
.wsc8{word-spacing:-1.902534pt;}
.wscb{word-spacing:-1.902269pt;}
.ws149{word-spacing:-1.849186pt;}
.wsac{word-spacing:-1.636589pt;}
.ws168{word-spacing:-1.636376pt;}
.ws48{word-spacing:-1.530264pt;}
.ws5b{word-spacing:-1.477446pt;}
.ws20f{word-spacing:-1.477181pt;}
.wsfc{word-spacing:-1.476915pt;}
.wsad{word-spacing:-1.424098pt;}
.ws16f{word-spacing:-1.424045pt;}
.ws1c{word-spacing:-1.370803pt;}
.ws39{word-spacing:-1.264637pt;}
.wsd3{word-spacing:-1.211820pt;}
.ws8f{word-spacing:-1.211501pt;}
.ws10e{word-spacing:-1.211288pt;}
.ws112{word-spacing:-1.158524pt;}
.ws223{word-spacing:-1.158365pt;}
.ws1a9{word-spacing:-1.105229pt;}
.wsb9{word-spacing:-1.105176pt;}
.ws6c{word-spacing:-1.037477pt;}
.ws82{word-spacing:-0.945715pt;}
.ws67{word-spacing:-0.907083pt;}
.ws1a8{word-spacing:-0.892897pt;}
.ws219{word-spacing:-0.892685pt;}
.ws6b{word-spacing:-0.890076pt;}
.ws19e{word-spacing:-0.733436pt;}
.ws184{word-spacing:-0.733277pt;}
.wsaf{word-spacing:-0.627270pt;}
.ws65{word-spacing:-0.544250pt;}
.ws54{word-spacing:-0.520627pt;}
.wsb{word-spacing:-0.472910pt;}
.ws68{word-spacing:-0.447872pt;}
.ws6d{word-spacing:-0.413857pt;}
.ws153{word-spacing:-0.361697pt;}
.ws1f0{word-spacing:-0.361325pt;}
.ws1f2{word-spacing:-0.361112pt;}
.ws43{word-spacing:-0.308401pt;}
.ws105{word-spacing:-0.255053pt;}
.wsf4{word-spacing:-0.255000pt;}
.ws1ed{word-spacing:-0.233798pt;}
.ws20{word-spacing:-0.202236pt;}
.ws1ee{word-spacing:-0.201917pt;}
.ws21{word-spacing:-0.201704pt;}
.ws3e{word-spacing:-0.148887pt;}
.ws5f{word-spacing:-0.096123pt;}
.ws136{word-spacing:-0.095645pt;}
.ws5e{word-spacing:-0.095592pt;}
.ws3{word-spacing:-0.076512pt;}
.wsfa{word-spacing:-0.053136pt;}
.wse8{word-spacing:-0.042774pt;}
.ws101{word-spacing:-0.042507pt;}
.ws64{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.039685pt;}
.wsc4{word-spacing:0.116899pt;}
.ws4e{word-spacing:0.170035pt;}
.ws1c5{word-spacing:0.191290pt;}
.ws66{word-spacing:0.260786pt;}
.wsd1{word-spacing:0.276148pt;}
.ws147{word-spacing:0.329549pt;}
.ws2b{word-spacing:0.382314pt;}
.ws187{word-spacing:0.382579pt;}
.ws100{word-spacing:0.435715pt;}
.ws60{word-spacing:0.488957pt;}
.wse7{word-spacing:0.541828pt;}
.ws69{word-spacing:0.634958pt;}
.ws90{word-spacing:0.648259pt;}
.ws171{word-spacing:0.754531pt;}
.ws10f{word-spacing:0.807667pt;}
.ws40{word-spacing:0.807880pt;}
.ws135{word-spacing:0.860697pt;}
.ws12c{word-spacing:0.860803pt;}
.ws227{word-spacing:0.913939pt;}
.ws49{word-spacing:0.914045pt;}
.ws5d{word-spacing:0.966810pt;}
.ws175{word-spacing:1.020158pt;}
.ws12f{word-spacing:1.020211pt;}
.ws161{word-spacing:1.020264pt;}
.wsae{word-spacing:1.073400pt;}
.wsb0{word-spacing:1.073507pt;}
.ws102{word-spacing:1.126271pt;}
.ws2d{word-spacing:1.179619pt;}
.ws103{word-spacing:1.232436pt;}
.wsa1{word-spacing:1.232755pt;}
.wsdd{word-spacing:1.232968pt;}
.ws170{word-spacing:1.285732pt;}
.ws13f{word-spacing:1.392429pt;}
.ws124{word-spacing:1.445246pt;}
.wse{word-spacing:1.493015pt;}
.ws42{word-spacing:1.498435pt;}
.ws1c0{word-spacing:1.572826pt;}
.ws131{word-spacing:1.604176pt;}
.ws2a{word-spacing:1.604707pt;}
.ws120{word-spacing:1.657631pt;}
.wse1{word-spacing:1.710979pt;}
.ws132{word-spacing:1.764115pt;}
.ws73{word-spacing:1.923629pt;}
.wsb7{word-spacing:1.976978pt;}
.wsbc{word-spacing:2.029370pt;}
.ws47{word-spacing:2.029742pt;}
.ws1a5{word-spacing:2.029795pt;}
.ws9c{word-spacing:2.082931pt;}
.ws110{word-spacing:2.135908pt;}
.wsbe{word-spacing:2.189203pt;}
.wsa9{word-spacing:2.242020pt;}
.ws176{word-spacing:2.242711pt;}
.ws5c{word-spacing:2.295369pt;}
.ws1e7{word-spacing:2.316889pt;}
.ws32{word-spacing:2.348664pt;}
.ws13d{word-spacing:2.401482pt;}
.ws70{word-spacing:2.402013pt;}
.ws7e{word-spacing:2.454830pt;}
.ws173{word-spacing:2.507647pt;}
.ws33{word-spacing:2.614291pt;}
.ws14f{word-spacing:2.667108pt;}
.wsc0{word-spacing:2.720404pt;}
.wsd{word-spacing:2.768386pt;}
.ws129{word-spacing:2.773699pt;}
.wsb2{word-spacing:2.826570pt;}
.ws14d{word-spacing:2.880077pt;}
.wsf8{word-spacing:2.932682pt;}
.wsce{word-spacing:2.932842pt;}
.ws30{word-spacing:2.933107pt;}
.ws31{word-spacing:2.933213pt;}
.wsf1{word-spacing:2.933373pt;}
.wsd6{word-spacing:2.986190pt;}
.ws81{word-spacing:2.986243pt;}
.wsba{word-spacing:3.039379pt;}
.wsff{word-spacing:3.039911pt;}
.ws123{word-spacing:3.092675pt;}
.wsc{word-spacing:3.140497pt;}
.ws37{word-spacing:3.145651pt;}
.wsde{word-spacing:3.198840pt;}
.ws1ef{word-spacing:3.251604pt;}
.ws154{word-spacing:3.251817pt;}
.ws10b{word-spacing:3.305059pt;}
.ws1e4{word-spacing:3.326526pt;}
.ws94{word-spacing:3.358301pt;}
.ws1c6{word-spacing:3.464467pt;}
.ws15a{word-spacing:3.517444pt;}
.ws10a{word-spacing:3.517763pt;}
.ws22f{word-spacing:3.520139pt;}
.ws22e{word-spacing:3.538751pt;}
.ws183{word-spacing:3.570580pt;}
.ws1b9{word-spacing:3.570739pt;}
.ws7d{word-spacing:3.623875pt;}
.ws8a{word-spacing:3.676905pt;}
.wsfb{word-spacing:3.677224pt;}
.ws134{word-spacing:3.730041pt;}
.ws57{word-spacing:3.730200pt;}
.ws20d{word-spacing:3.751402pt;}
.ws28{word-spacing:3.782805pt;}
.ws137{word-spacing:3.783336pt;}
.wsfd{word-spacing:3.783868pt;}
.ws1b8{word-spacing:3.804378pt;}
.ws142{word-spacing:3.836419pt;}
.ws22b{word-spacing:3.836685pt;}
.ws6f{word-spacing:3.889502pt;}
.ws77{word-spacing:3.889555pt;}
.ws1aa{word-spacing:3.942266pt;}
.ws160{word-spacing:3.942479pt;}
.ws1d{word-spacing:3.995615pt;}
.wse3{word-spacing:3.995827pt;}
.ws8{word-spacing:4.096732pt;}
.ws52{word-spacing:4.102099pt;}
.ws53{word-spacing:4.102312pt;}
.ws233{word-spacing:4.176118pt;}
.ws38{word-spacing:4.207893pt;}
.ws2e{word-spacing:4.208371pt;}
.ws2f{word-spacing:4.208424pt;}
.ws130{word-spacing:4.261242pt;}
.ws10c{word-spacing:4.314537pt;}
.ws1ba{word-spacing:4.314643pt;}
.wse6{word-spacing:4.314803pt;}
.ws11e{word-spacing:4.353220pt;}
.ws11a{word-spacing:4.359982pt;}
.ws11c{word-spacing:4.361638pt;}
.ws14a{word-spacing:4.367885pt;}
.ws11f{word-spacing:4.374076pt;}
.ws46{word-spacing:4.420703pt;}
.wsaa{word-spacing:4.420915pt;}
.ws20e{word-spacing:4.442223pt;}
.ws91{word-spacing:4.473998pt;}
.wsd8{word-spacing:4.474051pt;}
.ws128{word-spacing:4.580323pt;}
.ws76{word-spacing:4.633459pt;}
.ws51{word-spacing:4.634044pt;}
.ws9{word-spacing:4.787394pt;}
.ws12d{word-spacing:4.792442pt;}
.ws178{word-spacing:4.792867pt;}
.ws1a3{word-spacing:4.845738pt;}
.wsdc{word-spacing:4.846003pt;}
.ws92{word-spacing:4.846269pt;}
.ws1d5{word-spacing:4.899139pt;}
.ws27{word-spacing:4.952116pt;}
.ws26{word-spacing:4.952275pt;}
.ws11{word-spacing:4.999673pt;}
.ws14{word-spacing:5.000098pt;}
.ws111{word-spacing:5.005199pt;}
.ws58{word-spacing:5.005783pt;}
.ws23b{word-spacing:5.111630pt;}
.ws71{word-spacing:5.164713pt;}
.ws203{word-spacing:5.164819pt;}
.ws80{word-spacing:5.164925pt;}
.ws98{word-spacing:5.217477pt;}
.ws202{word-spacing:5.398618pt;}
.wsb4{word-spacing:5.430287pt;}
.ws35{word-spacing:5.483635pt;}
.ws1c9{word-spacing:5.504890pt;}
.wsf6{word-spacing:5.536399pt;}
.ws1a2{word-spacing:5.536824pt;}
.wsf0{word-spacing:5.536984pt;}
.ws22c{word-spacing:5.557813pt;}
.ws59{word-spacing:5.589748pt;}
.wsea{word-spacing:5.590013pt;}
.ws87{word-spacing:5.642831pt;}
.ws159{word-spacing:5.695914pt;}
.wsbf{word-spacing:5.696445pt;}
.ws8b{word-spacing:5.749209pt;}
.ws1d1{word-spacing:5.770570pt;}
.ws19f{word-spacing:5.802026pt;}
.ws22a{word-spacing:5.802451pt;}
.ws1d6{word-spacing:5.827237pt;}
.ws99{word-spacing:5.855587pt;}
.ws182{word-spacing:5.865896pt;}
.ws62{word-spacing:5.908139pt;}
.ws61{word-spacing:5.908723pt;}
.wscc{word-spacing:5.919350pt;}
.wsfe{word-spacing:5.961806pt;}
.ws22{word-spacing:5.961859pt;}
.ws7c{word-spacing:6.014995pt;}
.ws229{word-spacing:6.089545pt;}
.ws44{word-spacing:6.121267pt;}
.wsd9{word-spacing:6.174084pt;}
.ws218{word-spacing:6.174403pt;}
.ws72{word-spacing:6.227539pt;}
.ws121{word-spacing:6.227645pt;}
.ws12b{word-spacing:6.280675pt;}
.ws1ab{word-spacing:6.280941pt;}
.ws79{word-spacing:6.333811pt;}
.wsb5{word-spacing:6.334289pt;}
.ws20c{word-spacing:6.354747pt;}
.ws145{word-spacing:6.386575pt;}
.ws144{word-spacing:6.386947pt;}
.ws55{word-spacing:6.387107pt;}
.ws1d2{word-spacing:6.407989pt;}
.ws174{word-spacing:6.439871pt;}
.ws84{word-spacing:6.546355pt;}
.ws25{word-spacing:6.599332pt;}
.ws104{word-spacing:6.652627pt;}
.ws86{word-spacing:6.705763pt;}
.ws2c{word-spacing:6.758846pt;}
.ws13{word-spacing:6.859964pt;}
.wsf3{word-spacing:6.865277pt;}
.ws172{word-spacing:6.918307pt;}
.ws1db{word-spacing:6.939562pt;}
.ws10{word-spacing:6.966076pt;}
.ws15b{word-spacing:6.971443pt;}
.ws106{word-spacing:7.024579pt;}
.ws15c{word-spacing:7.024739pt;}
.ws155{word-spacing:7.039104pt;}
.wsa2{word-spacing:7.077715pt;}
.ws4{word-spacing:7.102864pt;}
.ws8d{word-spacing:7.130798pt;}
.wsf2{word-spacing:7.131117pt;}
.wsb8{word-spacing:7.183881pt;}
.ws1ec{word-spacing:7.205348pt;}
.wsdb{word-spacing:7.237017pt;}
.ws141{word-spacing:7.237123pt;}
.wsbd{word-spacing:7.237229pt;}
.ws15d{word-spacing:7.343183pt;}
.ws13a{word-spacing:7.343395pt;}
.ws217{word-spacing:7.364650pt;}
.ws9d{word-spacing:7.502803pt;}
.ws16d{word-spacing:7.662317pt;}
.ws56{word-spacing:7.715082pt;}
.ws226{word-spacing:7.715613pt;}
.ws1f3{word-spacing:7.736602pt;}
.ws13b{word-spacing:7.768430pt;}
.ws85{word-spacing:7.821566pt;}
.wsa0{word-spacing:7.821779pt;}
.ws208{word-spacing:7.842714pt;}
.wsd7{word-spacing:7.874543pt;}
.wscd{word-spacing:7.874755pt;}
.ws1f9{word-spacing:7.896010pt;}
.ws14e{word-spacing:7.927732pt;}
.ws4f{word-spacing:7.927891pt;}
.wsc7{word-spacing:8.034376pt;}
.ws107{word-spacing:8.087193pt;}
.ws140{word-spacing:8.087299pt;}
.ws151{word-spacing:8.087352pt;}
.ws83{word-spacing:8.140435pt;}
.ws88{word-spacing:8.193518pt;}
.ws125{word-spacing:8.193571pt;}
.ws126{word-spacing:8.194049pt;}
.ws150{word-spacing:8.246654pt;}
.ws3b{word-spacing:8.246707pt;}
.ws1c1{word-spacing:8.352820pt;}
.ws3a{word-spacing:8.352979pt;}
.ws29{word-spacing:8.459251pt;}
.wsc6{word-spacing:8.512281pt;}
.ws1f5{word-spacing:8.565204pt;}
.ws1e9{word-spacing:8.565523pt;}
.ws34{word-spacing:8.565736pt;}
.ws1bf{word-spacing:8.586778pt;}
.ws1ce{word-spacing:8.606095pt;}
.ws1a0{word-spacing:8.618447pt;}
.ws15{word-spacing:8.668669pt;}
.ws19{word-spacing:8.671799pt;}
.ws17{word-spacing:8.672231pt;}
.ws18{word-spacing:8.673614pt;}
.ws1e1{word-spacing:8.692837pt;}
.ws7a{word-spacing:8.725250pt;}
.ws24{word-spacing:8.778014pt;}
.ws23{word-spacing:8.778067pt;}
.ws1e6{word-spacing:8.788763pt;}
.ws1f6{word-spacing:8.824294pt;}
.ws1e{word-spacing:8.831203pt;}
.ws122{word-spacing:8.831256pt;}
.ws1f{word-spacing:8.831363pt;}
.ws17c{word-spacing:8.937475pt;}
.ws14c{word-spacing:8.990717pt;}
.wsb3{word-spacing:9.043747pt;}
.ws14b{word-spacing:9.096830pt;}
.ws108{word-spacing:9.096936pt;}
.wsa{word-spacing:9.144759pt;}
.ws115{word-spacing:9.149222pt;}
.ws23f{word-spacing:9.202996pt;}
.wsda{word-spacing:9.203102pt;}
.ws50{word-spacing:9.309427pt;}
.ws20a{word-spacing:9.390666pt;}
.ws97{word-spacing:9.415699pt;}
.ws117{word-spacing:9.415912pt;}
.wse9{word-spacing:9.469101pt;}
.wsa6{word-spacing:9.521918pt;}
.ws1a6{word-spacing:9.521971pt;}
.ws1a1{word-spacing:9.522024pt;}
.ws7{word-spacing:9.569794pt;}
.ws19c{word-spacing:9.574310pt;}
.wsef{word-spacing:9.574842pt;}
.ws152{word-spacing:9.628084pt;}
.ws113{word-spacing:9.628137pt;}
.ws114{word-spacing:9.628668pt;}
.ws209{word-spacing:9.734834pt;}
.wsb6{word-spacing:9.787651pt;}
.ws8e{word-spacing:9.840947pt;}
.ws210{word-spacing:9.862042pt;}
.wsa7{word-spacing:9.893923pt;}
.wsa8{word-spacing:9.947059pt;}
.ws4d{word-spacing:9.947112pt;}
.ws63{word-spacing:9.999823pt;}
.ws5a{word-spacing:10.053225pt;}
.ws15e{word-spacing:10.106467pt;}
.wsee{word-spacing:10.106573pt;}
.ws16e{word-spacing:10.159338pt;}
.ws16a{word-spacing:10.159869pt;}
.ws1dd{word-spacing:10.265875pt;}
.ws133{word-spacing:10.318746pt;}
.ws1d8{word-spacing:10.340266pt;}
.ws143{word-spacing:10.425283pt;}
.ws127{word-spacing:10.425496pt;}
.wsed{word-spacing:10.478207pt;}
.wsdf{word-spacing:10.531555pt;}
.ws21c{word-spacing:10.584691pt;}
.ws95{word-spacing:10.584957pt;}
.ws1bd{word-spacing:10.605946pt;}
.ws12e{word-spacing:10.637774pt;}
.wsc1{word-spacing:10.690538pt;}
.ws4b{word-spacing:10.691069pt;}
.ws10d{word-spacing:10.744099pt;}
.ws1e8{word-spacing:10.818490pt;}
.wsab{word-spacing:10.903879pt;}
.wse5{word-spacing:10.905012pt;}
.ws3c{word-spacing:11.062809pt;}
.ws3d{word-spacing:11.063340pt;}
.wsf{word-spacing:11.110472pt;}
.ws12a{word-spacing:11.116051pt;}
.ws9b{word-spacing:11.116104pt;}
.wsc3{word-spacing:11.222270pt;}
.ws13e{word-spacing:11.328967pt;}
.ws74{word-spacing:11.381731pt;}
.ws7f{word-spacing:11.381784pt;}
.wsf7{word-spacing:11.435080pt;}
.wsa3{word-spacing:11.487897pt;}
.ws9a{word-spacing:11.541192pt;}
.wsb1{word-spacing:11.700175pt;}
.ws1a4{word-spacing:11.700653pt;}
.ws78{word-spacing:11.700707pt;}
.ws17a{word-spacing:11.753471pt;}
.ws1c4{word-spacing:11.799124pt;}
.ws1d0{word-spacing:11.801791pt;}
.ws1b6{word-spacing:11.804458pt;}
.ws1b0{word-spacing:11.806819pt;}
.ws139{word-spacing:11.859636pt;}
.wsc5{word-spacing:11.912985pt;}
.ws41{word-spacing:11.966280pt;}
.ws13c{word-spacing:12.019363pt;}
.ws4c{word-spacing:12.072446pt;}
.ws21f{word-spacing:12.178771pt;}
.ws89{word-spacing:12.231907pt;}
.wsca{word-spacing:12.285043pt;}
.ws1dc{word-spacing:12.731279pt;}
.wsf5{word-spacing:12.763108pt;}
.ws7b{word-spacing:12.816403pt;}
.ws185{word-spacing:12.869752pt;}
.ws96{word-spacing:12.922569pt;}
.wsc9{word-spacing:12.975917pt;}
.ws21b{word-spacing:12.997438pt;}
.ws75{word-spacing:13.028947pt;}
.ws146{word-spacing:13.082030pt;}
.ws1e5{word-spacing:13.082083pt;}
.ws16{word-spacing:13.129755pt;}
.ws109{word-spacing:13.134847pt;}
.ws138{word-spacing:13.135219pt;}
.wsc2{word-spacing:13.294308pt;}
.ws1cb{word-spacing:13.294840pt;}
.ws23e{word-spacing:13.347604pt;}
.ws1d9{word-spacing:13.421994pt;}
.ws1da{word-spacing:13.422154pt;}
.ws207{word-spacing:13.475290pt;}
.ws9f{word-spacing:13.613231pt;}
.ws1eb{word-spacing:13.623124pt;}
.ws9e{word-spacing:13.666579pt;}
.ws236{word-spacing:13.772745pt;}
.ws93{word-spacing:13.879336pt;}
.ws23a{word-spacing:13.900378pt;}
.ws116{word-spacing:14.197780pt;}
.ws1ac{word-spacing:14.357241pt;}
.ws21a{word-spacing:14.506128pt;}
.ws19b{word-spacing:14.835571pt;}
.ws169{word-spacing:14.941737pt;}
.ws6{word-spacing:15.004853pt;}
.ws148{word-spacing:15.047903pt;}
.ws222{word-spacing:15.196896pt;}
.ws17f{word-spacing:15.473203pt;}
.wseb{word-spacing:15.526286pt;}
.ws200{word-spacing:15.632452pt;}
.ws1f1{word-spacing:15.887664pt;}
.wsec{word-spacing:16.110835pt;}
.ws158{word-spacing:16.163812pt;}
.ws1b{word-spacing:16.216948pt;}
.ws1a7{word-spacing:16.217107pt;}
.ws5{word-spacing:16.306309pt;}
.ws12{word-spacing:16.475788pt;}
.ws23d{word-spacing:16.822804pt;}
.ws1cd{word-spacing:16.822858pt;}
.ws214{word-spacing:17.003945pt;}
.ws228{word-spacing:17.056709pt;}
.ws19a{word-spacing:17.173236pt;}
.ws234{word-spacing:17.195288pt;}
.ws118{word-spacing:17.226744pt;}
.ws1d7{word-spacing:17.268987pt;}
.ws231{word-spacing:17.375313pt;}
.wse2{word-spacing:17.545507pt;}
.wsa5{word-spacing:17.598271pt;}
.wsa4{word-spacing:17.598537pt;}
.ws1fa{word-spacing:17.598643pt;}
.ws1b5{word-spacing:17.638731pt;}
.ws1f4{word-spacing:17.651779pt;}
.ws1c2{word-spacing:17.864323pt;}
.wse0{word-spacing:17.917459pt;}
.ws1cc{word-spacing:18.044879pt;}
.ws177{word-spacing:18.130003pt;}
.ws239{word-spacing:18.151364pt;}
.ws1b3{word-spacing:18.294597pt;}
.ws216{word-spacing:18.363802pt;}
.wsf9{word-spacing:18.395364pt;}
.ws1d4{word-spacing:18.661363pt;}
.ws1cf{word-spacing:18.916416pt;}
.ws232{word-spacing:18.969499pt;}
.ws1bb{word-spacing:18.969552pt;}
.ws186{word-spacing:18.980179pt;}
.ws20b{word-spacing:19.128960pt;}
.ws230{word-spacing:19.447670pt;}
.ws16b{word-spacing:19.458350pt;}
.ws1d3{word-spacing:19.585930pt;}
.ws17b{word-spacing:19.671107pt;}
.ws221{word-spacing:19.713509pt;}
.ws157{word-spacing:20.254806pt;}
.ws1e3{word-spacing:20.276698pt;}
.wscf{word-spacing:20.297952pt;}
.ws4a{word-spacing:20.627608pt;}
.ws1ff{word-spacing:21.105619pt;}
.ws1de{word-spacing:21.158755pt;}
.ws1fc{word-spacing:21.265027pt;}
.ws225{word-spacing:22.242730pt;}
.ws220{word-spacing:23.114160pt;}
.ws21d{word-spacing:23.136690pt;}
.ws17d{word-spacing:23.178029pt;}
.ws1b7{word-spacing:23.199018pt;}
.ws1ea{word-spacing:23.255269pt;}
.ws1b2{word-spacing:23.443603pt;}
.ws1e2{word-spacing:23.486059pt;}
.ws201{word-spacing:23.539248pt;}
.ws23c{word-spacing:23.539407pt;}
.ws156{word-spacing:23.762472pt;}
.ws1f7{word-spacing:24.336182pt;}
.ws240{word-spacing:24.707868pt;}
.ws1f8{word-spacing:24.708453pt;}
.ws179{word-spacing:24.718814pt;}
.ws1e0{word-spacing:24.844334pt;}
.ws206{word-spacing:24.844811pt;}
.ws2{word-spacing:24.866630pt;}
.ws213{word-spacing:24.931411pt;}
.ws212{word-spacing:26.227983pt;}
.ws1be{word-spacing:26.578627pt;}
.ws1fe{word-spacing:26.971834pt;}
.ws181{word-spacing:27.163070pt;}
.ws180{word-spacing:27.960163pt;}
.ws22d{word-spacing:28.087743pt;}
.ws215{word-spacing:28.640198pt;}
.ws224{word-spacing:29.522255pt;}
.ws204{word-spacing:29.766787pt;}
.ws1bc{word-spacing:29.788360pt;}
.ws15f{word-spacing:30.298572pt;}
.ws17e{word-spacing:31.414003pt;}
.ws211{word-spacing:31.518743pt;}
.ws1fd{word-spacing:31.700884pt;}
.ws1fb{word-spacing:32.412960pt;}
.ws1c3{word-spacing:32.625291pt;}
.ws235{word-spacing:33.326846pt;}
.ws21e{word-spacing:34.051999pt;}
.ws1c8{word-spacing:34.166448pt;}
.ws1df{word-spacing:35.707392pt;}
.ws238{word-spacing:38.098246pt;}
.ws1ca{word-spacing:41.020992pt;}
.ws205{word-spacing:43.624656pt;}
.ws1b4{word-spacing:47.195448pt;}
.ws163{word-spacing:48.963423pt;}
.ws193{word-spacing:48.972268pt;}
.ws11d{word-spacing:49.002019pt;}
.ws1af{word-spacing:52.855180pt;}
.ws1a{word-spacing:53.838944pt;}
.ws189{word-spacing:55.750451pt;}
.ws1ad{word-spacing:55.803427pt;}
.ws1c7{word-spacing:58.010573pt;}
.ws18b{word-spacing:63.136195pt;}
.ws194{word-spacing:63.138534pt;}
.ws198{word-spacing:63.141946pt;}
.ws1ae{word-spacing:63.189119pt;}
.ws18f{word-spacing:63.189225pt;}
.ws18e{word-spacing:63.189331pt;}
.ws18d{word-spacing:63.699854pt;}
.ws18a{word-spacing:63.704959pt;}
.ws199{word-spacing:63.710064pt;}
.ws195{word-spacing:63.710292pt;}
.ws237{word-spacing:70.787163pt;}
.ws119{word-spacing:76.898472pt;}
.ws197{word-spacing:81.379915pt;}
.ws191{word-spacing:81.385248pt;}
.wsd5{word-spacing:111.489955pt;}
.wsd4{word-spacing:113.052115pt;}
.ws166{word-spacing:118.368000pt;}
.ws162{word-spacing:144.938397pt;}
.ws165{word-spacing:144.942797pt;}
.ws196{word-spacing:157.199673pt;}
.ws190{word-spacing:157.205006pt;}
.ws164{word-spacing:169.891483pt;}
.ws18c{word-spacing:173.693107pt;}
.ws192{word-spacing:181.310659pt;}
.ws188{word-spacing:188.696563pt;}
.ws11b{word-spacing:233.543347pt;}
.ws167{word-spacing:1824.521659pt;}
._68{margin-left:-18.967729pt;}
._1{margin-left:-9.231273pt;}
._5{margin-left:-6.274214pt;}
._a{margin-left:-4.637740pt;}
._7{margin-left:-3.628073pt;}
._2{margin-left:-2.066054pt;}
._8{margin-left:-0.909775pt;}
._0{width:1.555625pt;}
._3{width:2.652688pt;}
._26{width:3.827998pt;}
._27{width:6.082370pt;}
._37{width:12.352235pt;}
._10{width:13.690283pt;}
._16{width:14.857801pt;}
._d{width:16.253366pt;}
._6{width:17.243794pt;}
._36{width:18.770095pt;}
._25{width:19.813584pt;}
._17{width:21.074273pt;}
._b{width:22.887095pt;}
._9{width:23.944202pt;}
._15{width:25.650114pt;}
._11{width:27.193290pt;}
._63{width:28.266529pt;}
._18{width:29.277936pt;}
._1a{width:30.433469pt;}
._f{width:31.707511pt;}
._4{width:33.358773pt;}
._e{width:34.712382pt;}
._1d{width:36.026208pt;}
._64{width:37.693555pt;}
._39{width:38.705879pt;}
._13{width:40.430511pt;}
._c{width:41.811463pt;}
._28{width:43.062925pt;}
._29{width:44.990980pt;}
._14{width:46.493362pt;}
._12{width:47.648789pt;}
._1b{width:49.227817pt;}
._38{width:50.851152pt;}
._2b{width:52.300626pt;}
._57{width:53.227644pt;}
._2a{width:54.145584pt;}
._1c{width:56.264774pt;}
._1e{width:58.449600pt;}
._58{width:61.038530pt;}
._4d{width:63.291294pt;}
._1f{width:64.273629pt;}
._60{width:65.941776pt;}
._65{width:67.936801pt;}
._3c{width:69.236633pt;}
._19{width:70.136000pt;}
._66{width:71.092463pt;}
._5a{width:77.516385pt;}
._22{width:78.534955pt;}
._5f{width:84.945983pt;}
._2c{width:86.298307pt;}
._49{width:89.077033pt;}
._48{width:90.331200pt;}
._41{width:91.978629pt;}
._61{width:93.799948pt;}
._50{width:94.833212pt;}
._21{width:96.112303pt;}
._56{width:97.870421pt;}
._4a{width:99.204912pt;}
._51{width:100.214709pt;}
._4e{width:102.280975pt;}
._67{width:104.023922pt;}
._54{width:112.010901pt;}
._43{width:115.589017pt;}
._20{width:117.779340pt;}
._4f{width:125.699801pt;}
._33{width:140.279199pt;}
._62{width:155.848575pt;}
._5e{width:156.819244pt;}
._24{width:164.296512pt;}
._42{width:168.092682pt;}
._5b{width:171.006556pt;}
._23{width:178.165008pt;}
._35{width:180.075439pt;}
._31{width:183.921220pt;}
._5d{width:188.700844pt;}
._3b{width:192.058280pt;}
._2f{width:211.779165pt;}
._46{width:221.258729pt;}
._3e{width:224.308094pt;}
._45{width:225.268697pt;}
._3a{width:238.208688pt;}
._3f{width:247.826463pt;}
._32{width:252.327971pt;}
._44{width:263.023200pt;}
._5c{width:272.071228pt;}
._40{width:273.144226pt;}
._47{width:274.657554pt;}
._4c{width:284.830316pt;}
._3d{width:292.985654pt;}
._59{width:318.269959pt;}
._30{width:327.955392pt;}
._2e{width:331.940539pt;}
._2d{width:342.727200pt;}
._34{width:395.935753pt;}
._55{width:485.582482pt;}
._53{width:493.028178pt;}
._52{width:508.816759pt;}
._4b{width:705.329103pt;}
.fs7{font-size:31.882667pt;}
.fs9{font-size:37.194667pt;}
.fs5{font-size:42.506667pt;}
.fsa{font-size:42.666667pt;}
.fs2{font-size:42.666933pt;}
.fs0{font-size:42.882365pt;}
.fs6{font-size:47.818667pt;}
.fs1{font-size:53.121069pt;}
.fs8{font-size:53.136000pt;}
.fs4{font-size:63.760000pt;}
.fs3{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:2.245333pt;}
.y2{bottom:4.102851pt;}
.y1{bottom:34.113704pt;}
.y58{bottom:37.226074pt;}
.y5a{bottom:38.216555pt;}
.y3d{bottom:94.488000pt;}
.yea{bottom:98.238667pt;}
.y3c{bottom:110.428000pt;}
.ye9{bottom:117.288000pt;}
.y1e1{bottom:120.460000pt;}
.y3b{bottom:126.368000pt;}
.ye8{bottom:133.228000pt;}
.y1e0{bottom:136.400000pt;}
.y3a{bottom:142.308000pt;}
.y1af{bottom:143.593333pt;}
.ye7{bottom:149.168000pt;}
.y1df{bottom:152.977333pt;}
.y198{bottom:156.437333pt;}
.y57{bottom:158.248000pt;}
.y39{bottom:158.249333pt;}
.y1ae{bottom:159.534667pt;}
.yb2{bottom:162.832000pt;}
.ye6{bottom:165.108000pt;}
.y1de{bottom:168.917333pt;}
.y197{bottom:172.377333pt;}
.y23a{bottom:174.088000pt;}
.y38{bottom:174.189333pt;}
.y207{bottom:175.004000pt;}
.y1ad{bottom:175.474667pt;}
.y169{bottom:175.554667pt;}
.ye5{bottom:181.048000pt;}
.y1dd{bottom:184.857333pt;}
.yb1{bottom:187.134667pt;}
.y196{bottom:188.318667pt;}
.y239{bottom:190.028000pt;}
.y37{bottom:190.129333pt;}
.y139{bottom:190.161333pt;}
.y206{bottom:190.944000pt;}
.y1ac{bottom:191.414667pt;}
.y168{bottom:191.494667pt;}
.ye4{bottom:196.988000pt;}
.y10c{bottom:200.332000pt;}
.y1dc{bottom:200.798667pt;}
.yb0{bottom:203.074667pt;}
.y195{bottom:204.258667pt;}
.y238{bottom:205.968000pt;}
.y36{bottom:206.069333pt;}
.y138{bottom:206.101333pt;}
.y205{bottom:206.884000pt;}
.y1ab{bottom:207.354667pt;}
.y167{bottom:207.434667pt;}
.ye3{bottom:212.929333pt;}
.y1db{bottom:216.738667pt;}
.y194{bottom:220.198667pt;}
.y237{bottom:221.806667pt;}
.y35{bottom:222.009333pt;}
.y137{bottom:222.041333pt;}
.y204{bottom:222.825333pt;}
.y1aa{bottom:223.294667pt;}
.y166{bottom:223.374667pt;}
.y56{bottom:226.241333pt;}
.ye2{bottom:228.869333pt;}
.yaf{bottom:229.089333pt;}
.y1da{bottom:232.678667pt;}
.y193{bottom:236.138667pt;}
.y236{bottom:237.748000pt;}
.y34{bottom:237.949333pt;}
.y136{bottom:237.981333pt;}
.y1a9{bottom:239.234667pt;}
.y165{bottom:239.316000pt;}
.y203{bottom:239.580000pt;}
.y10b{bottom:240.918667pt;}
.y55{bottom:242.181333pt;}
.y1d9{bottom:248.618667pt;}
.ye1{bottom:249.078667pt;}
.y235{bottom:253.688000pt;}
.y33{bottom:253.890667pt;}
.y135{bottom:253.921333pt;}
.y192{bottom:254.618667pt;}
.yae{bottom:255.105333pt;}
.y1a8{bottom:255.176000pt;}
.y164{bottom:255.256000pt;}
.y202{bottom:255.520000pt;}
.y10a{bottom:256.858667pt;}
.y54{bottom:258.121333pt;}
.y1d8{bottom:264.558667pt;}
.y234{bottom:269.628000pt;}
.y32{bottom:269.830667pt;}
.y134{bottom:269.862667pt;}
.y191{bottom:270.558667pt;}
.y1a7{bottom:271.116000pt;}
.y163{bottom:271.196000pt;}
.y201{bottom:271.460000pt;}
.y109{bottom:272.798667pt;}
.ye0{bottom:273.066667pt;}
.y53{bottom:274.061333pt;}
.y1d7{bottom:281.136000pt;}
.y233{bottom:285.568000pt;}
.y31{bottom:285.770667pt;}
.y133{bottom:285.802667pt;}
.y190{bottom:286.498667pt;}
.y1a6{bottom:287.056000pt;}
.y200{bottom:287.400000pt;}
.y108{bottom:288.738667pt;}
.ydf{bottom:289.006667pt;}
.y52{bottom:290.001333pt;}
.y1d6{bottom:297.076000pt;}
.yad{bottom:297.982667pt;}
.y162{bottom:298.257333pt;}
.y232{bottom:301.406667pt;}
.y30{bottom:301.710667pt;}
.y132{bottom:301.742667pt;}
.y18f{bottom:302.438667pt;}
.y1ff{bottom:304.156000pt;}
.y107{bottom:304.678667pt;}
.y51{bottom:305.942667pt;}
.y1d5{bottom:313.016000pt;}
.yac{bottom:313.924000pt;}
.y1a5{bottom:313.966667pt;}
.yde{bottom:317.042667pt;}
.y231{bottom:317.348000pt;}
.y84{bottom:317.650667pt;}
.y131{bottom:317.682667pt;}
.y18e{bottom:318.378667pt;}
.y2f{bottom:319.089333pt;}
.y1fe{bottom:320.096000pt;}
.y106{bottom:320.620000pt;}
.y50{bottom:321.882667pt;}
.y1d4{bottom:328.957333pt;}
.yab{bottom:329.864000pt;}
.ydd{bottom:332.982667pt;}
.y230{bottom:333.288000pt;}
.y83{bottom:333.590667pt;}
.y130{bottom:333.654667pt;}
.y18d{bottom:334.320000pt;}
.y2e{bottom:335.029333pt;}
.y1fd{bottom:336.036000pt;}
.y105{bottom:337.432000pt;}
.y4f{bottom:337.822667pt;}
.y262{bottom:342.312000pt;}
.y161{bottom:344.117333pt;}
.y1d3{bottom:344.897333pt;}
.yaa{bottom:345.804000pt;}
.ydc{bottom:348.922667pt;}
.y22f{bottom:349.228000pt;}
.y82{bottom:349.532000pt;}
.y12f{bottom:349.594667pt;}
.y18c{bottom:350.260000pt;}
.y2d{bottom:350.970667pt;}
.y1fc{bottom:351.976000pt;}
.y104{bottom:353.372000pt;}
.y4e{bottom:353.762667pt;}
.y1a4{bottom:356.742667pt;}
.y261{bottom:358.252000pt;}
.y160{bottom:360.058667pt;}
.y1d2{bottom:360.837333pt;}
.ya9{bottom:361.744000pt;}
.ydb{bottom:364.862667pt;}
.y22e{bottom:365.168000pt;}
.y81{bottom:365.472000pt;}
.y12e{bottom:365.534667pt;}
.y18b{bottom:366.200000pt;}
.y2c{bottom:366.910667pt;}
.y1fb{bottom:367.916000pt;}
.y103{bottom:369.312000pt;}
.y4d{bottom:369.702667pt;}
.y1a3{bottom:372.682667pt;}
.y260{bottom:374.192000pt;}
.y15f{bottom:375.998667pt;}
.y1d1{bottom:376.777333pt;}
.ya8{bottom:377.684000pt;}
.yda{bottom:380.802667pt;}
.y22d{bottom:381.006667pt;}
.y80{bottom:381.412000pt;}
.y12d{bottom:381.474667pt;}
.y18a{bottom:382.140000pt;}
.y2b{bottom:382.850667pt;}
.y1fa{bottom:384.672000pt;}
.y102{bottom:385.253333pt;}
.y4c{bottom:385.644000pt;}
.y1a2{bottom:388.622667pt;}
.y25f{bottom:390.870667pt;}
.y15e{bottom:391.938667pt;}
.y1d0{bottom:392.717333pt;}
.ya7{bottom:393.625333pt;}
.yd9{bottom:396.744000pt;}
.y22c{bottom:396.946667pt;}
.y7f{bottom:397.352000pt;}
.y12c{bottom:397.416000pt;}
.y189{bottom:398.080000pt;}
.y2a{bottom:398.790667pt;}
.y1f9{bottom:400.612000pt;}
.y101{bottom:401.193333pt;}
.y4b{bottom:401.584000pt;}
.y1a1{bottom:404.562667pt;}
.y25e{bottom:406.810667pt;}
.y15d{bottom:407.878667pt;}
.y1cf{bottom:408.657333pt;}
.ya6{bottom:409.565333pt;}
.yd8{bottom:412.684000pt;}
.y22b{bottom:412.888000pt;}
.y12b{bottom:413.356000pt;}
.y29{bottom:414.730667pt;}
.y1f8{bottom:416.552000pt;}
.y100{bottom:417.133333pt;}
.y4a{bottom:417.524000pt;}
.y1a0{bottom:420.504000pt;}
.y25d{bottom:422.750667pt;}
.y15c{bottom:423.818667pt;}
.y1ce{bottom:424.598667pt;}
.y7e{bottom:424.968000pt;}
.ya5{bottom:425.505333pt;}
.y188{bottom:427.325333pt;}
.y22a{bottom:428.726667pt;}
.y28{bottom:430.670667pt;}
.y1f7{bottom:432.492000pt;}
.yd7{bottom:433.026667pt;}
.y49{bottom:433.464000pt;}
.y19f{bottom:436.444000pt;}
.yff{bottom:437.725333pt;}
.y12a{bottom:437.933333pt;}
.y25c{bottom:438.690667pt;}
.y15b{bottom:439.758667pt;}
.y1cd{bottom:440.538667pt;}
.ya4{bottom:441.445333pt;}
.y229{bottom:444.666667pt;}
.y27{bottom:446.612000pt;}
.yd6{bottom:448.966667pt;}
.y1f6{bottom:449.248000pt;}
.y48{bottom:449.404000pt;}
.y19e{bottom:452.384000pt;}
.y25b{bottom:454.630667pt;}
.y15a{bottom:455.700000pt;}
.y1cc{bottom:456.478667pt;}
.ya3{bottom:457.385333pt;}
.y228{bottom:460.606667pt;}
.yfe{bottom:462.097333pt;}
.y26{bottom:462.552000pt;}
.yd5{bottom:464.906667pt;}
.y1f5{bottom:465.188000pt;}
.y19d{bottom:468.324000pt;}
.y47{bottom:469.576000pt;}
.y25a{bottom:471.309333pt;}
.y159{bottom:471.640000pt;}
.y7d{bottom:472.409333pt;}
.y1cb{bottom:472.418667pt;}
.ya2{bottom:473.325333pt;}
.y227{bottom:476.546667pt;}
.y129{bottom:476.716000pt;}
.y187{bottom:476.756000pt;}
.y25{bottom:478.492000pt;}
.yfd{bottom:478.909333pt;}
.yd4{bottom:480.846667pt;}
.y1f4{bottom:481.128000pt;}
.y19c{bottom:484.264000pt;}
.y46{bottom:485.516000pt;}
.y259{bottom:487.249333pt;}
.y158{bottom:487.580000pt;}
.y7c{bottom:488.350667pt;}
.y1ca{bottom:488.358667pt;}
.ya1{bottom:489.266667pt;}
.y226{bottom:492.488000pt;}
.y128{bottom:492.656000pt;}
.y186{bottom:492.696000pt;}
.y24{bottom:494.432000pt;}
.yfc{bottom:494.849333pt;}
.yd3{bottom:496.786667pt;}
.y1f3{bottom:497.068000pt;}
.y19b{bottom:500.205333pt;}
.y45{bottom:501.456000pt;}
.y258{bottom:503.189333pt;}
.y157{bottom:503.520000pt;}
.y7b{bottom:504.290667pt;}
.y1c9{bottom:504.298667pt;}
.ya0{bottom:505.206667pt;}
.y225{bottom:508.326667pt;}
.y127{bottom:508.596000pt;}
.y185{bottom:508.636000pt;}
.y23{bottom:510.372000pt;}
.yfb{bottom:510.790667pt;}
.yd2{bottom:512.728000pt;}
.y1f2{bottom:513.824000pt;}
.y19a{bottom:516.145333pt;}
.y44{bottom:517.397333pt;}
.y257{bottom:519.130667pt;}
.y156{bottom:519.460000pt;}
.y7a{bottom:520.230667pt;}
.y9f{bottom:521.950667pt;}
.y224{bottom:524.266667pt;}
.y126{bottom:524.536000pt;}
.y184{bottom:524.576000pt;}
.y22{bottom:526.313333pt;}
.yfa{bottom:526.730667pt;}
.yd1{bottom:528.668000pt;}
.y1f1{bottom:529.764000pt;}
.y1c8{bottom:530.004000pt;}
.y199{bottom:532.085333pt;}
.y43{bottom:533.337333pt;}
.y256{bottom:535.070667pt;}
.y155{bottom:535.400000pt;}
.y79{bottom:536.170667pt;}
.y9e{bottom:537.890667pt;}
.y223{bottom:540.206667pt;}
.y125{bottom:540.477333pt;}
.y21{bottom:542.253333pt;}
.yf9{bottom:542.670667pt;}
.y183{bottom:543.056000pt;}
.yd0{bottom:544.608000pt;}
.y1f0{bottom:545.704000pt;}
.y42{bottom:549.277333pt;}
.y255{bottom:551.010667pt;}
.y78{bottom:552.110667pt;}
.y154{bottom:552.706667pt;}
.y9d{bottom:553.830667pt;}
.y222{bottom:556.045333pt;}
.y124{bottom:556.417333pt;}
.y20{bottom:558.193333pt;}
.yf8{bottom:558.610667pt;}
.y182{bottom:558.996000pt;}
.ycf{bottom:560.548000pt;}
.y1ef{bottom:561.644000pt;}
.y41{bottom:565.217333pt;}
.y254{bottom:566.950667pt;}
.y77{bottom:568.050667pt;}
.y153{bottom:568.646667pt;}
.y9c{bottom:569.770667pt;}
.y221{bottom:571.986667pt;}
.y1c7{bottom:571.997333pt;}
.y123{bottom:572.357333pt;}
.y1f{bottom:574.133333pt;}
.yf7{bottom:574.550667pt;}
.y1ee{bottom:578.400000pt;}
.yce{bottom:580.890667pt;}
.y40{bottom:581.157333pt;}
.y253{bottom:583.629333pt;}
.y76{bottom:583.992000pt;}
.y152{bottom:584.586667pt;}
.y9b{bottom:585.710667pt;}
.y220{bottom:587.926667pt;}
.y1c6{bottom:587.937333pt;}
.y122{bottom:588.297333pt;}
.y1e{bottom:590.073333pt;}
.yf6{bottom:591.364000pt;}
.y1ed{bottom:594.340000pt;}
.ycd{bottom:596.830667pt;}
.y3f{bottom:597.097333pt;}
.y252{bottom:599.569333pt;}
.y75{bottom:599.932000pt;}
.y151{bottom:600.528000pt;}
.y9a{bottom:601.652000pt;}
.y21f{bottom:603.866667pt;}
.y1c5{bottom:603.877333pt;}
.y181{bottom:604.160000pt;}
.y121{bottom:604.237333pt;}
.yf5{bottom:607.304000pt;}
.y1ec{bottom:610.280000pt;}
.ycc{bottom:612.772000pt;}
.y251{bottom:615.509333pt;}
.y74{bottom:615.872000pt;}
.y150{bottom:616.468000pt;}
.y3e{bottom:617.269333pt;}
.y1d{bottom:617.270667pt;}
.y99{bottom:617.592000pt;}
.y21e{bottom:619.806667pt;}
.y1c4{bottom:619.817333pt;}
.y180{bottom:620.100000pt;}
.y120{bottom:620.209333pt;}
.yf4{bottom:623.244000pt;}
.y1eb{bottom:626.220000pt;}
.ycb{bottom:628.712000pt;}
.y250{bottom:631.449333pt;}
.y73{bottom:631.812000pt;}
.y14f{bottom:632.408000pt;}
.y98{bottom:634.336000pt;}
.y21d{bottom:635.645333pt;}
.y1c3{bottom:635.757333pt;}
.y17f{bottom:636.040000pt;}
.y11f{bottom:636.149333pt;}
.yf3{bottom:639.184000pt;}
.y1ea{bottom:642.974667pt;}
.yca{bottom:646.796000pt;}
.y24f{bottom:647.389333pt;}
.y72{bottom:647.752000pt;}
.yc9{bottom:648.301333pt;}
.y14e{bottom:648.348000pt;}
.y97{bottom:650.276000pt;}
.y21c{bottom:651.586667pt;}
.y1c2{bottom:651.697333pt;}
.y17e{bottom:651.980000pt;}
.y11e{bottom:652.090667pt;}
.yf2{bottom:655.125333pt;}
.y1e9{bottom:658.916000pt;}
.y24e{bottom:663.330667pt;}
.y71{bottom:663.692000pt;}
.y14d{bottom:664.288000pt;}
.y96{bottom:666.216000pt;}
.y21b{bottom:667.526667pt;}
.y17d{bottom:667.921333pt;}
.y11d{bottom:668.030667pt;}
.yc8{bottom:670.716000pt;}
.yf1{bottom:671.937333pt;}
.y1e8{bottom:674.856000pt;}
.y24d{bottom:679.270667pt;}
.y14c{bottom:680.228000pt;}
.y70{bottom:681.296000pt;}
.y95{bottom:682.156000pt;}
.y21a{bottom:683.466667pt;}
.y17c{bottom:683.861333pt;}
.y11c{bottom:683.970667pt;}
.y1c1{bottom:686.797333pt;}
.yf0{bottom:687.877333pt;}
.y19{bottom:688.274667pt;}
.yc7{bottom:690.253333pt;}
.y24c{bottom:695.948000pt;}
.y14b{bottom:696.169333pt;}
.y6f{bottom:697.237333pt;}
.y1e7{bottom:697.692000pt;}
.y94{bottom:698.096000pt;}
.y1c{bottom:698.901333pt;}
.y219{bottom:699.305333pt;}
.y17b{bottom:699.801333pt;}
.y11b{bottom:699.910667pt;}
.y1c0{bottom:702.737333pt;}
.yef{bottom:703.817333pt;}
.y18{bottom:704.214667pt;}
.yc6{bottom:706.193333pt;}
.y1b{bottom:709.528000pt;}
.y24b{bottom:711.889333pt;}
.y14a{bottom:712.109333pt;}
.y6e{bottom:713.177333pt;}
.y93{bottom:714.037333pt;}
.y218{bottom:715.245333pt;}
.y17a{bottom:715.741333pt;}
.y11a{bottom:715.882667pt;}
.y1bf{bottom:718.677333pt;}
.yee{bottom:719.758667pt;}
.y1a{bottom:720.154667pt;}
.y24a{bottom:727.829333pt;}
.y149{bottom:728.049333pt;}
.y6d{bottom:729.117333pt;}
.y92{bottom:729.977333pt;}
.yc5{bottom:730.449333pt;}
.y217{bottom:731.186667pt;}
.y179{bottom:731.681333pt;}
.y119{bottom:731.822667pt;}
.y1be{bottom:734.617333pt;}
.yed{bottom:735.698667pt;}
.y17{bottom:736.094667pt;}
.y1e6{bottom:736.510667pt;}
.y249{bottom:743.769333pt;}
.y148{bottom:743.989333pt;}
.y6c{bottom:745.057333pt;}
.y91{bottom:745.917333pt;}
.yc4{bottom:746.389333pt;}
.y216{bottom:747.126667pt;}
.y178{bottom:747.621333pt;}
.y118{bottom:747.762667pt;}
.y1bd{bottom:750.558667pt;}
.yec{bottom:751.638667pt;}
.y16{bottom:752.034667pt;}
.y1e5{bottom:752.450667pt;}
.y147{bottom:759.929333pt;}
.y248{bottom:760.448000pt;}
.y6b{bottom:760.997333pt;}
.y90{bottom:761.857333pt;}
.yc3{bottom:762.820000pt;}
.y215{bottom:763.066667pt;}
.y177{bottom:763.562667pt;}
.y117{bottom:763.704000pt;}
.y1bc{bottom:766.498667pt;}
.y15{bottom:767.974667pt;}
.y1e4{bottom:768.390667pt;}
.y146{bottom:775.869333pt;}
.y247{bottom:776.388000pt;}
.y6a{bottom:776.938667pt;}
.y8f{bottom:777.797333pt;}
.yc2{bottom:778.760000pt;}
.y214{bottom:778.905333pt;}
.y116{bottom:779.644000pt;}
.y176{bottom:780.033333pt;}
.y1bb{bottom:782.438667pt;}
.y14{bottom:783.916000pt;}
.y1e3{bottom:784.332000pt;}
.y175{bottom:788.004000pt;}
.y246{bottom:792.328000pt;}
.y69{bottom:792.878667pt;}
.y145{bottom:793.176000pt;}
.y8e{bottom:793.737333pt;}
.yc1{bottom:794.700000pt;}
.y213{bottom:794.845333pt;}
.y115{bottom:795.584000pt;}
.y1ba{bottom:798.910667pt;}
.yeb{bottom:799.801333pt;}
.y13{bottom:799.856000pt;}
.y1e2{bottom:800.272000pt;}
.y245{bottom:808.268000pt;}
.y68{bottom:808.818667pt;}
.y144{bottom:809.116000pt;}
.y8d{bottom:809.678667pt;}
.yc0{bottom:810.640000pt;}
.y212{bottom:810.785333pt;}
.y114{bottom:811.524000pt;}
.y1b9{bottom:815.381333pt;}
.y174{bottom:815.560000pt;}
.y12{bottom:815.796000pt;}
.y244{bottom:824.208000pt;}
.y67{bottom:824.758667pt;}
.y143{bottom:825.056000pt;}
.y8c{bottom:825.618667pt;}
.ybf{bottom:826.580000pt;}
.y211{bottom:826.726667pt;}
.y113{bottom:827.496000pt;}
.y11{bottom:831.736000pt;}
.y1b8{bottom:831.853333pt;}
.y66{bottom:840.698667pt;}
.y243{bottom:840.886667pt;}
.y142{bottom:840.997333pt;}
.y8b{bottom:841.558667pt;}
.ybe{bottom:842.520000pt;}
.y210{bottom:842.565333pt;}
.y112{bottom:843.436000pt;}
.y10{bottom:847.676000pt;}
.y1b7{bottom:847.793333pt;}
.y173{bottom:850.022667pt;}
.y65{bottom:856.638667pt;}
.y242{bottom:856.826667pt;}
.y141{bottom:856.937333pt;}
.y8a{bottom:857.498667pt;}
.ybd{bottom:858.461333pt;}
.y20f{bottom:858.505333pt;}
.yf{bottom:863.616000pt;}
.y172{bottom:865.964000pt;}
.y1b6{bottom:872.192000pt;}
.y64{bottom:872.580000pt;}
.y241{bottom:872.766667pt;}
.y140{bottom:872.877333pt;}
.y89{bottom:873.438667pt;}
.ybc{bottom:874.401333pt;}
.y20e{bottom:874.445333pt;}
.ye{bottom:879.557333pt;}
.y171{bottom:882.434667pt;}
.y1b5{bottom:888.132000pt;}
.y63{bottom:888.520000pt;}
.y111{bottom:888.664000pt;}
.y240{bottom:888.706667pt;}
.y13f{bottom:888.817333pt;}
.y88{bottom:890.182667pt;}
.y20d{bottom:890.285333pt;}
.ybb{bottom:890.341333pt;}
.y170{bottom:890.405333pt;}
.yd{bottom:895.497333pt;}
.y1b4{bottom:904.072000pt;}
.y62{bottom:904.460000pt;}
.y110{bottom:904.604000pt;}
.y23f{bottom:904.648000pt;}
.y13e{bottom:904.757333pt;}
.y87{bottom:906.122667pt;}
.y20c{bottom:906.225333pt;}
.yba{bottom:906.281333pt;}
.yc{bottom:911.437333pt;}
.y16f{bottom:915.378667pt;}
.y1b3{bottom:920.012000pt;}
.y61{bottom:920.400000pt;}
.y10f{bottom:920.544000pt;}
.y13d{bottom:920.697333pt;}
.y23e{bottom:921.325333pt;}
.y86{bottom:922.064000pt;}
.y20b{bottom:922.165333pt;}
.y1b2{bottom:935.953333pt;}
.y10e{bottom:936.484000pt;}
.y13c{bottom:936.638667pt;}
.y23d{bottom:937.265333pt;}
.y60{bottom:938.004000pt;}
.y20a{bottom:938.105333pt;}
.ya{bottom:939.997333pt;}
.yb{bottom:943.746667pt;}
.y16e{bottom:949.841333pt;}
.y1b1{bottom:951.893333pt;}
.yb9{bottom:952.424000pt;}
.y13b{bottom:952.578667pt;}
.y23c{bottom:953.206667pt;}
.y5f{bottom:953.944000pt;}
.y209{bottom:954.045333pt;}
.y9{bottom:956.601333pt;}
.y16d{bottom:965.781333pt;}
.y1b0{bottom:967.833333pt;}
.yb8{bottom:968.364000pt;}
.y13a{bottom:968.518667pt;}
.y23b{bottom:969.146667pt;}
.y5e{bottom:969.884000pt;}
.y208{bottom:969.985333pt;}
.y7{bottom:975.198667pt;}
.y8{bottom:980.982667pt;}
.y16c{bottom:981.721333pt;}
.yb7{bottom:984.305333pt;}
.y85{bottom:985.824000pt;}
.y5d{bottom:985.825333pt;}
.y16b{bottom:998.193333pt;}
.yb6{bottom:1000.776000pt;}
.y5c{bottom:1001.765333pt;}
.y16a{bottom:1006.164000pt;}
.yb5{bottom:1008.746667pt;}
.y6{bottom:1009.734667pt;}
.y5b{bottom:1017.705333pt;}
.y10d{bottom:1017.778667pt;}
.y5{bottom:1033.645333pt;}
.yb4{bottom:1033.720000pt;}
.yb3{bottom:1036.345278pt;}
.y4{bottom:1036.403388pt;}
.y3{bottom:1048.651848pt;}
.he{height:11.733399pt;}
.h1b{height:21.201973pt;}
.hd{height:26.631381pt;}
.h9{height:29.924693pt;}
.h13{height:30.080188pt;}
.ha{height:30.288533pt;}
.h4{height:32.000200pt;}
.h8{height:34.238165pt;}
.h1d{height:36.876384pt;}
.h12{height:37.088928pt;}
.h11{height:38.037520pt;}
.hb{height:38.045376pt;}
.h3{height:39.846471pt;}
.hc{height:39.852000pt;}
.h7{height:40.381333pt;}
.h1e{height:42.472043pt;}
.h19{height:43.688352pt;}
.h1a{height:43.977259pt;}
.hf{height:44.354167pt;}
.h6{height:45.652160pt;}
.h5{height:53.864448pt;}
.h17{height:55.736352pt;}
.h14{height:71.729333pt;}
.h1c{height:71.734667pt;}
.h18{height:73.811019pt;}
.h15{height:90.376352pt;}
.h16{height:90.381685pt;}
.h2{height:1062.715892pt;}
.h10{height:1122.515645pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:11.863987pt;}
.w5{width:11.865333pt;}
.w2{width:647.107592pt;}
.w4{width:793.697931pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.167079pt;}
.x12{left:72.000000pt;}
.x1{left:73.215800pt;}
.x4{left:75.590667pt;}
.xd{left:88.874667pt;}
.x1b{left:90.380000pt;}
.x14{left:94.934667pt;}
.x1f{left:96.070667pt;}
.x16{left:102.157333pt;}
.x13{left:108.496000pt;}
.x2{left:111.874558pt;}
.x25{left:145.241333pt;}
.x22{left:147.452000pt;}
.x24{left:156.086667pt;}
.x21{left:158.521333pt;}
.x1e{left:164.684000pt;}
.x15{left:177.809333pt;}
.x11{left:185.090357pt;}
.x18{left:192.142667pt;}
.x19{left:199.877333pt;}
.x1d{left:202.476000pt;}
.x5{left:208.564000pt;}
.x1a{left:210.420000pt;}
.x6{left:219.854667pt;}
.x2a{left:225.814667pt;}
.x7{left:230.330667pt;}
.x29{left:231.996000pt;}
.x2f{left:237.356000pt;}
.x8{left:238.965333pt;}
.x20{left:263.332000pt;}
.x17{left:298.693333pt;}
.x23{left:311.061333pt;}
.x30{left:344.121333pt;}
.x26{left:346.413333pt;}
.x27{left:399.880000pt;}
.xe{left:403.492000pt;}
.x2d{left:410.133333pt;}
.xf{left:416.776000pt;}
.x2e{left:430.797333pt;}
.x1c{left:453.020000pt;}
.x2c{left:467.798667pt;}
.x2b{left:586.464000pt;}
.xc{left:612.413333pt;}
.xa{left:613.636000pt;}
.x9{left:617.277333pt;}
.xb{left:625.917333pt;}
.x28{left:642.592000pt;}
.x10{left:709.837321pt;}
}




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