
    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_e1c74e3c18fd019b65fec505.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;font-style:normal;font-weight: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_9ec0b5911a3e5257b7cb1caa.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_9cf49233cbcaa9516818e11d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a11c9fd5b8935e66c5f66b18.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920000;font-style:normal;font-weight: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_c7a119762f4cd899000acea2.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_f9cb9b29546c3e44b626e80a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3921b8470e95b635a7d792b8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;font-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_6a56b9791726efca4c41a3cc.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_390c5fde95067622f8fd8c72.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_1c5055ec5ed0dd180e755b93.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_f9985abd1e05fbf22c43ff80.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.700000;font-style:normal;font-weight: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_ae55eb03cbe2d95f5203b72d.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_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.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_745033452a59f1608561cf7c.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_bd499c67ad5c8c61c879a70d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.700000;font-style:normal;font-weight: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_de970e8c2c26fdfac557499c.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_cb6988f74c2ec8bb4c599ed7.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.700000;font-style:normal;font-weight: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_116ce3be7451bcc4c2bcac0a.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_4dcc2ca3f5eb9fc8526c980e.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.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_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_ccd220cc63be5761113206f1.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.700000;font-style:normal;font-weight: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_b183b0e45636e3c7f5d304ce.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_d94379453a0dd7064b1a7516.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_3a7227130df89500dbdd2f9a.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.482000;font-style:normal;font-weight: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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_cb6988f74c2ec8bb4c599ed7.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.700000;font-style:normal;font-weight: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_116ce3be7451bcc4c2bcac0a.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_ccd220cc63be5761113206f1.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.700000;font-style:normal;font-weight: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_b183b0e45636e3c7f5d304ce.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.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_885967f949a0b2e7c06f704b.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_9a0f61dd791e9d7652750341.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_04b18a737c09018346bf5db7.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_cb6988f74c2ec8bb4c599ed7.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.700000;font-style:normal;font-weight: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_116ce3be7451bcc4c2bcac0a.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_d9c8d1fa623a55cefade0a04.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_f4aa579db0083866c1b2be37.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_7586dab5326343ae8e8d69d6.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.916000;font-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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.980000px;}
.v2{vertical-align:15.108000px;}
.v1{vertical-align:40.440000px;}
.ls8{letter-spacing:-0.338030px;}
.ls6{letter-spacing:-0.089291px;}
.ls7{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.038268px;}
.ls5{letter-spacing:0.094215px;}
.ls4{letter-spacing:0.094827px;}
.ls1{letter-spacing:0.242361px;}
.ls0{letter-spacing:0.612281px;}
.ls2{letter-spacing:0.666417px;}
.ls3{letter-spacing:0.694290px;}
.ls15{letter-spacing:8.296768px;}
.ls11{letter-spacing:13.276672px;}
.ls10{letter-spacing:13.282672px;}
.ls16{letter-spacing:20.452672px;}
.lsa{letter-spacing:24.090534px;}
.lsd{letter-spacing:24.097672px;}
.lsb{letter-spacing:24.138756px;}
.lsc{letter-spacing:24.157672px;}
.ls13{letter-spacing:107.014672px;}
.ls14{letter-spacing:110.950672px;}
.lse{letter-spacing:112.787367px;}
.ls12{letter-spacing:150.080336px;}
.lsf{letter-spacing:194.188672px;}
.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;}
}
.ws0{word-spacing:-48.485022px;}
.ws1{word-spacing:-48.000300px;}
.ws160{word-spacing:-16.606328px;}
.wsd4{word-spacing:-14.065560px;}
.ws146{word-spacing:-3.336941px;}
.ws10e{word-spacing:-2.976705px;}
.ws209{word-spacing:-2.917166px;}
.ws13d{word-spacing:-2.857388px;}
.ws16e{word-spacing:-2.798507px;}
.ws1a3{word-spacing:-2.677935px;}
.ws168{word-spacing:-2.618276px;}
.ws165{word-spacing:-2.558498px;}
.ws1f3{word-spacing:-2.438942px;}
.ws169{word-spacing:-2.438584px;}
.wsc8{word-spacing:-2.369829px;}
.wsc7{word-spacing:-2.362118px;}
.ws208{word-spacing:-2.319147px;}
.wsfe{word-spacing:-2.259728px;}
.ws32{word-spacing:-2.140351px;}
.ws113{word-spacing:-2.139754px;}
.ws103{word-spacing:-1.960898px;}
.ws1f9{word-spacing:-1.900940px;}
.ws55{word-spacing:-1.781504px;}
.ws127{word-spacing:-1.721547px;}
.wsc2{word-spacing:-1.661828px;}
.ws20{word-spacing:-1.602110px;}
.wsc3{word-spacing:-1.482494px;}
.ws185{word-spacing:-1.422716px;}
.ws1f{word-spacing:-1.243323px;}
.ws68{word-spacing:-1.183903px;}
.ws122{word-spacing:-1.183306px;}
.ws62{word-spacing:-1.167161px;}
.ws195{word-spacing:-1.123946px;}
.wsee{word-spacing:-1.064048px;}
.ws7e{word-spacing:-1.063929px;}
.ws5d{word-spacing:-1.020469px;}
.ws61{word-spacing:-1.001335px;}
.ws155{word-spacing:-0.944552px;}
.ws16c{word-spacing:-0.884714px;}
.wsf4{word-spacing:-0.765158px;}
.ws16b{word-spacing:-0.765099px;}
.ws11b{word-spacing:-0.645722px;}
.wseb{word-spacing:-0.645602px;}
.ws5b{word-spacing:-0.612281px;}
.ws136{word-spacing:-0.585824px;}
.wsf1{word-spacing:-0.585705px;}
.ws5e{word-spacing:-0.503856px;}
.ws207{word-spacing:-0.466268px;}
.ws63{word-spacing:-0.465589px;}
.ws3c{word-spacing:-0.406909px;}
.ws94{word-spacing:-0.346294px;}
.ws13c{word-spacing:-0.286934px;}
.ws13a{word-spacing:-0.226917px;}
.ws12d{word-spacing:-0.167498px;}
.wsfc{word-spacing:-0.107541px;}
.wse8{word-spacing:-0.107481px;}
.ws148{word-spacing:-0.059778px;}
.ws79{word-spacing:-0.047822px;}
.ws5{word-spacing:-0.047820px;}
.ws158{word-spacing:-0.047524px;}
.ws5a{word-spacing:0.000000px;}
.ws199{word-spacing:0.011956px;}
.ws60{word-spacing:0.044646px;}
.ws42{word-spacing:0.071255px;}
.wsaa{word-spacing:0.071853px;}
.ws135{word-spacing:0.131512px;}
.ws15f{word-spacing:0.250649px;}
.ws5c{word-spacing:0.293385px;}
.ws39{word-spacing:0.430103px;}
.wsdc{word-spacing:0.465915px;}
.ws12f{word-spacing:0.490060px;}
.ws17e{word-spacing:0.549479px;}
.ws78{word-spacing:0.549539px;}
.ws77{word-spacing:0.549958px;}
.ws106{word-spacing:0.669454px;}
.ws190{word-spacing:0.669514px;}
.ws95{word-spacing:0.669573px;}
.ws5f{word-spacing:0.714328px;}
.ws91{word-spacing:0.788890px;}
.ws3d{word-spacing:0.788950px;}
.ws1a7{word-spacing:0.848848px;}
.wsd5{word-spacing:0.870971px;}
.ws8b{word-spacing:0.908386px;}
.ws189{word-spacing:0.908865px;}
.ws16a{word-spacing:0.968404px;}
.ws107{word-spacing:1.027703px;}
.ws16d{word-spacing:1.028301px;}
.wse9{word-spacing:1.028361px;}
.ws125{word-spacing:1.207097px;}
.ws1e4{word-spacing:1.207575px;}
.wsa2{word-spacing:1.267054px;}
.ws187{word-spacing:1.267174px;}
.wsa1{word-spacing:1.267294px;}
.wsac{word-spacing:1.327072px;}
.wsed{word-spacing:1.386610px;}
.ws128{word-spacing:1.505868px;}
.wsfb{word-spacing:1.506585px;}
.ws130{word-spacing:1.566184px;}
.ws10c{word-spacing:1.625902px;}
.ws11{word-spacing:1.679642px;}
.wsb3{word-spacing:1.685859px;}
.ws104{word-spacing:1.745876px;}
.wsb4{word-spacing:1.805296px;}
.ws6b{word-spacing:1.864655px;}
.ws2b{word-spacing:1.865253px;}
.wsdf{word-spacing:1.883307px;}
.ws87{word-spacing:1.924672px;}
.ws81{word-spacing:1.924792px;}
.ws10b{word-spacing:1.924852px;}
.ws90{word-spacing:2.044049px;}
.ws59{word-spacing:2.104066px;}
.wscd{word-spacing:2.136365px;}
.ws6e{word-spacing:2.163964px;}
.ws188{word-spacing:2.164083px;}
.ws198{word-spacing:2.223502px;}
.ws177{word-spacing:2.223622px;}
.ws10f{word-spacing:2.282862px;}
.wsad{word-spacing:2.343298px;}
.wsbc{word-spacing:2.343477px;}
.ws43{word-spacing:2.343656px;}
.ws25{word-spacing:2.402896px;}
.wsd0{word-spacing:2.440258px;}
.wsca{word-spacing:2.592205px;}
.ws14b{word-spacing:2.642188px;}
.wsdb{word-spacing:2.693367px;}
.wsef{word-spacing:2.701846px;}
.ws111{word-spacing:2.701966px;}
.ws7c{word-spacing:2.761684px;}
.ws1df{word-spacing:2.761744px;}
.wscc{word-spacing:2.794479px;}
.wsc9{word-spacing:2.794986px;}
.ws119{word-spacing:2.821522px;}
.wsd9{word-spacing:2.845820px;}
.wsc5{word-spacing:2.855739px;}
.ws22{word-spacing:2.881060px;}
.ws1ed{word-spacing:2.941078px;}
.ws142{word-spacing:3.000856px;}
.wsbb{word-spacing:3.180070px;}
.ws1f2{word-spacing:3.239968px;}
.wsbe{word-spacing:3.299267px;}
.ws44{word-spacing:3.299447px;}
.ws64{word-spacing:3.299746px;}
.ws9a{word-spacing:3.299865px;}
.ws29{word-spacing:3.300044px;}
.wse2{word-spacing:3.359284px;}
.ws33{word-spacing:3.359464px;}
.wsf3{word-spacing:3.359524px;}
.ws15a{word-spacing:3.419302px;}
.ws24{word-spacing:3.478661px;}
.ws10d{word-spacing:3.478900px;}
.ws1c7{word-spacing:3.479259px;}
.ws12{word-spacing:3.533059px;}
.ws4a{word-spacing:3.538678px;}
.ws100{word-spacing:3.538858px;}
.ws176{word-spacing:3.598636px;}
.ws129{word-spacing:3.598695px;}
.ws93{word-spacing:3.658055px;}
.ws98{word-spacing:3.658294px;}
.ws6d{word-spacing:3.658414px;}
.wsde{word-spacing:3.706209px;}
.wsa{word-spacing:3.712214px;}
.ws18f{word-spacing:3.777970px;}
.ws139{word-spacing:3.801701px;}
.ws116{word-spacing:3.801881px;}
.wscb{word-spacing:3.857649px;}
.ws11e{word-spacing:3.861659px;}
.ws14d{word-spacing:3.897466px;}
.ws12c{word-spacing:3.956885px;}
.ws36{word-spacing:3.957124px;}
.ws54{word-spacing:3.957483px;}
.ws124{word-spacing:4.017082px;}
.wsf2{word-spacing:4.076860px;}
.ws6{word-spacing:4.130660px;}
.ws11c{word-spacing:4.136638px;}
.ws1e1{word-spacing:4.196296px;}
.ws19d{word-spacing:4.196475px;}
.ws9{word-spacing:4.250156px;}
.wsd7{word-spacing:4.313995px;}
.wsc0{word-spacing:4.315673px;}
.ws1ca{word-spacing:4.315972px;}
.ws1e7{word-spacing:4.375690px;}
.wsdd{word-spacing:4.415664px;}
.ws137{word-spacing:4.435528px;}
.wsf6{word-spacing:4.495066px;}
.ws156{word-spacing:4.495306px;}
.ws1b2{word-spacing:4.554486px;}
.ws115{word-spacing:4.555681px;}
.ws19b{word-spacing:4.614862px;}
.wsa9{word-spacing:4.615101px;}
.ws3f{word-spacing:4.674460px;}
.ws108{word-spacing:4.733880px;}
.ws3b{word-spacing:4.734119px;}
.ws6c{word-spacing:4.734418px;}
.ws38{word-spacing:4.734716px;}
.wscf{word-spacing:4.769886px;}
.ws11a{word-spacing:4.794196px;}
.ws17d{word-spacing:4.794494px;}
.ws71{word-spacing:4.853854px;}
.ws70{word-spacing:4.853974px;}
.ws4f{word-spacing:4.854153px;}
.ws134{word-spacing:4.854452px;}
.wsc1{word-spacing:4.913752px;}
.ws192{word-spacing:4.973290px;}
.ws84{word-spacing:4.973530px;}
.ws14e{word-spacing:4.973888px;}
.ws28{word-spacing:5.033248px;}
.ws1ac{word-spacing:5.033308px;}
.wsfa{word-spacing:5.092667px;}
.ws83{word-spacing:5.092966px;}
.ws133{word-spacing:5.093086px;}
.ws121{word-spacing:5.212701px;}
.wsd1{word-spacing:5.225219px;}
.ws13b{word-spacing:5.272061px;}
.ws86{word-spacing:5.331480px;}
.wsea{word-spacing:5.332078px;}
.ws1bf{word-spacing:5.332198px;}
.ws85{word-spacing:5.332377px;}
.wsb1{word-spacing:5.392095px;}
.ws196{word-spacing:5.451455px;}
.ws41{word-spacing:5.511472px;}
.wsf0{word-spacing:5.511532px;}
.wsb7{word-spacing:5.570891px;}
.wsaf{word-spacing:5.571310px;}
.ws56{word-spacing:5.571788px;}
.ws16{word-spacing:5.625110px;}
.ws13{word-spacing:5.625229px;}
.ws4c{word-spacing:5.630848px;}
.wsb{word-spacing:5.684888px;}
.ws1a2{word-spacing:5.690866px;}
.wsba{word-spacing:5.810900px;}
.ws2e{word-spacing:5.869662px;}
.ws7a{word-spacing:5.870259px;}
.ws18c{word-spacing:5.870558px;}
.ws19e{word-spacing:5.929679px;}
.ws114{word-spacing:5.929978px;}
.ws49{word-spacing:5.930276px;}
.ws17f{word-spacing:5.989696px;}
.wsbf{word-spacing:6.049055px;}
.ws182{word-spacing:6.049653px;}
.wsd6{word-spacing:6.086114px;}
.ws172{word-spacing:6.109312px;}
.ws4d{word-spacing:6.169388px;}
.ws8c{word-spacing:6.228748px;}
.wsb5{word-spacing:6.348483px;}
.ws40{word-spacing:6.408202px;}
.ws10{word-spacing:6.462002px;}
.ws2c{word-spacing:6.467621px;}
.wsf{word-spacing:6.521840px;}
.ws131{word-spacing:6.587296px;}
.ws1a4{word-spacing:6.587595px;}
.ws14f{word-spacing:6.599133px;}
.ws112{word-spacing:6.599491px;}
.ws152{word-spacing:6.647254px;}
.wsab{word-spacing:6.659150px;}
.wsff{word-spacing:6.659269px;}
.ws102{word-spacing:6.706673px;}
.wsae{word-spacing:6.766989px;}
.ws184{word-spacing:6.826050px;}
.ws47{word-spacing:6.886426px;}
.ws167{word-spacing:6.886665px;}
.ws175{word-spacing:6.946084px;}
.wsce{word-spacing:6.997287px;}
.ws109{word-spacing:7.005503px;}
.ws46{word-spacing:7.065461px;}
.ws170{word-spacing:7.066058px;}
.ws34{word-spacing:7.125478px;}
.ws120{word-spacing:7.125538px;}
.ws4e{word-spacing:7.245213px;}
.wsa0{word-spacing:7.304274px;}
.ws9f{word-spacing:7.304872px;}
.ws52{word-spacing:7.424248px;}
.wsc{word-spacing:7.478646px;}
.ws7d{word-spacing:7.484026px;}
.ws138{word-spacing:7.484863px;}
.ws8e{word-spacing:7.543685px;}
.ws8d{word-spacing:7.544043px;}
.ws150{word-spacing:7.663061px;}
.ws51{word-spacing:7.723078px;}
.ws141{word-spacing:7.723318px;}
.wse7{word-spacing:7.783096px;}
.ws2d{word-spacing:7.842455px;}
.ws3e{word-spacing:7.843053px;}
.ws14c{word-spacing:7.902472px;}
.ws1b6{word-spacing:7.902652px;}
.ws164{word-spacing:7.918992px;}
.ws1e9{word-spacing:7.961892px;}
.ws6f{word-spacing:7.962250px;}
.ws1aa{word-spacing:7.962430px;}
.ws3{word-spacing:7.990722px;}
.ws45{word-spacing:7.990937px;}
.ws193{word-spacing:8.022506px;}
.ws67{word-spacing:8.081687px;}
.ws15d{word-spacing:8.081866px;}
.ws66{word-spacing:8.081986px;}
.ws15e{word-spacing:8.141644px;}
.ws166{word-spacing:8.141764px;}
.ws191{word-spacing:8.201302px;}
.ws13f{word-spacing:8.249364px;}
.ws105{word-spacing:8.261320px;}
.ws30{word-spacing:8.261858px;}
.ws8f{word-spacing:8.321098px;}
.ws6a{word-spacing:8.380696px;}
.ws69{word-spacing:8.380876px;}
.ws26{word-spacing:8.440474px;}
.ws1a6{word-spacing:8.440654px;}
.ws12e{word-spacing:8.500073px;}
.ws202{word-spacing:8.500432px;}
.ws2f{word-spacing:8.500671px;}
.ws17b{word-spacing:8.560090px;}
.ws12a{word-spacing:8.620107px;}
.ws10a{word-spacing:8.739902px;}
.ws126{word-spacing:8.799501px;}
.ws180{word-spacing:8.858860px;}
.wsf9{word-spacing:8.859100px;}
.ws23{word-spacing:8.918698px;}
.ws1d{word-spacing:8.918878px;}
.wsd3{word-spacing:8.972187px;}
.wse6{word-spacing:8.978297px;}
.wsb9{word-spacing:8.978656px;}
.ws159{word-spacing:9.038254px;}
.ws76{word-spacing:9.038434px;}
.ws206{word-spacing:9.097674px;}
.wsb0{word-spacing:9.158288px;}
.wsa4{word-spacing:9.217050px;}
.ws1e{word-spacing:9.217768px;}
.ws194{word-spacing:9.218306px;}
.wsa3{word-spacing:9.277546px;}
.ws18a{word-spacing:9.277665px;}
.ws18e{word-spacing:9.337324px;}
.wsf7{word-spacing:9.397102px;}
.ws12b{word-spacing:9.456880px;}
.ws35{word-spacing:9.516299px;}
.wse{word-spacing:9.630236px;}
.ws132{word-spacing:9.636214px;}
.ws1a0{word-spacing:9.636453px;}
.ws1f8{word-spacing:9.695992px;}
.wsa8{word-spacing:9.755770px;}
.ws1b{word-spacing:9.755774px;}
.ws17a{word-spacing:9.755889px;}
.ws19{word-spacing:9.756260px;}
.ws1a{word-spacing:9.757816px;}
.ws17{word-spacing:9.758252px;}
.wsf5{word-spacing:9.815548px;}
.ws92{word-spacing:9.815727px;}
.ws1e2{word-spacing:9.884251px;}
.wsb2{word-spacing:9.935104px;}
.ws157{word-spacing:9.935283px;}
.ws178{word-spacing:9.994702px;}
.ws179{word-spacing:10.054660px;}
.ws88{word-spacing:10.114557px;}
.ws1a8{word-spacing:10.114677px;}
.wsa5{word-spacing:10.173917px;}
.ws31{word-spacing:10.174096px;}
.ws140{word-spacing:10.174216px;}
.ws7f{word-spacing:10.174574px;}
.wsd2{word-spacing:10.238087px;}
.ws7b{word-spacing:10.293473px;}
.wsfd{word-spacing:10.293772px;}
.ws21{word-spacing:10.413328px;}
.ws18b{word-spacing:10.413507px;}
.ws197{word-spacing:10.472866px;}
.wsbd{word-spacing:10.473345px;}
.ws186{word-spacing:10.532884px;}
.wsec{word-spacing:10.592662px;}
.ws57{word-spacing:10.592781px;}
.ws58{word-spacing:10.592901px;}
.ws181{word-spacing:10.652738px;}
.ws74{word-spacing:10.712218px;}
.ws75{word-spacing:10.772294px;}
.ws65{word-spacing:10.831654px;}
.wsb6{word-spacing:10.951688px;}
.ws171{word-spacing:11.071005px;}
.ws4b{word-spacing:11.189904px;}
.ws1a9{word-spacing:11.250459px;}
.ws1a5{word-spacing:11.429255px;}
.ws15{word-spacing:11.543670px;}
.ws82{word-spacing:11.549229px;}
.ws99{word-spacing:11.608708px;}
.wse4{word-spacing:11.728444px;}
.ws123{word-spacing:11.728623px;}
.ws183{word-spacing:11.788102px;}
.ws1ab{word-spacing:11.907778px;}
.ws11d{word-spacing:11.908017px;}
.ws19a{word-spacing:11.967496px;}
.ws53{word-spacing:11.968034px;}
.wsb8{word-spacing:12.027453px;}
.ws16f{word-spacing:12.086872px;}
.ws118{word-spacing:12.087112px;}
.ws73{word-spacing:12.206668px;}
.ws14a{word-spacing:12.266266px;}
.ws15c{word-spacing:12.505677px;}
.ws3a{word-spacing:12.565037px;}
.wse3{word-spacing:12.565096px;}
.ws11f{word-spacing:12.685071px;}
.wsd{word-spacing:12.918265px;}
.ws173{word-spacing:12.983901px;}
.ws1d7{word-spacing:13.043560px;}
.ws101{word-spacing:13.103278px;}
.ws147{word-spacing:13.197617px;}
.ws8{word-spacing:13.216916px;}
.ws1d2{word-spacing:13.277015px;}
.ws1ad{word-spacing:13.280015px;}
.ws110{word-spacing:13.521784px;}
.wsd8{word-spacing:13.528709px;}
.ws1b4{word-spacing:13.581502px;}
.ws151{word-spacing:13.760896px;}
.ws7{word-spacing:13.874653px;}
.ws174{word-spacing:13.880452px;}
.ws117{word-spacing:13.940230px;}
.wsa7{word-spacing:13.999709px;}
.ws72{word-spacing:14.000306px;}
.wsa6{word-spacing:14.119564px;}
.ws1a1{word-spacing:14.597907px;}
.ws18{word-spacing:14.770974px;}
.ws17c{word-spacing:14.777301px;}
.ws89{word-spacing:15.255525px;}
.ws8a{word-spacing:15.314944px;}
.ws1fd{word-spacing:15.315124px;}
.ws1ee{word-spacing:15.374902px;}
.ws20a{word-spacing:15.602058px;}
.ws1d9{word-spacing:15.614014px;}
.ws27{word-spacing:15.793706px;}
.ws153{word-spacing:15.853066px;}
.wse5{word-spacing:16.091879px;}
.wsf8{word-spacing:16.211853px;}
.ws1bc{word-spacing:16.510684px;}
.ws143{word-spacing:16.521617px;}
.ws145{word-spacing:16.561557px;}
.ws37{word-spacing:16.749616px;}
.ws97{word-spacing:16.750094px;}
.ws19f{word-spacing:17.168301px;}
.ws1b0{word-spacing:17.276021px;}
.ws1c6{word-spacing:17.335441px;}
.ws1f5{word-spacing:17.514834px;}
.wsda{word-spacing:17.528736px;}
.ws2a{word-spacing:17.586508px;}
.ws1b9{word-spacing:17.586688px;}
.ws144{word-spacing:17.732106px;}
.ws1f4{word-spacing:17.754126px;}
.ws4{word-spacing:18.398609px;}
.ws154{word-spacing:18.602256px;}
.ws13e{word-spacing:18.655489px;}
.ws1da{word-spacing:19.318834px;}
.ws1e5{word-spacing:19.368072px;}
.ws48{word-spacing:20.695084px;}
.ws1de{word-spacing:20.862522px;}
.ws1dd{word-spacing:20.922240px;}
.ws204{word-spacing:21.101634px;}
.ws1fb{word-spacing:21.221190px;}
.ws1ce{word-spacing:21.280968px;}
.ws1fa{word-spacing:21.340447px;}
.ws1c2{word-spacing:21.340746px;}
.ws19c{word-spacing:21.651472px;}
.ws1cb{word-spacing:21.998304px;}
.ws1c9{word-spacing:22.058082px;}
.ws1ec{word-spacing:22.177698px;}
.ws1ea{word-spacing:22.203044px;}
.ws203{word-spacing:22.356972px;}
.ws1c0{word-spacing:22.416750px;}
.ws1c1{word-spacing:22.655623px;}
.ws1f1{word-spacing:22.715640px;}
.ws50{word-spacing:23.205282px;}
.ws1c4{word-spacing:23.313420px;}
.ws1e6{word-spacing:23.672088px;}
.ws1b1{word-spacing:24.150312px;}
.ws1e3{word-spacing:24.329646px;}
.ws1e0{word-spacing:24.389603px;}
.ws205{word-spacing:24.449023px;}
.ws1d1{word-spacing:24.461098px;}
.ws1cf{word-spacing:24.759928px;}
.ws1eb{word-spacing:25.107238px;}
.ws1be{word-spacing:25.166538px;}
.ws1d8{word-spacing:25.405411px;}
.ws1cc{word-spacing:25.584984px;}
.ws1c5{word-spacing:26.421876px;}
.ws14{word-spacing:26.989261px;}
.ws1e8{word-spacing:27.258768px;}
.ws2{word-spacing:28.060518px;}
.ws1bd{word-spacing:28.334533px;}
.ws1b5{word-spacing:28.514106px;}
.ws200{word-spacing:28.932851px;}
.ws1f6{word-spacing:29.231621px;}
.ws1d6{word-spacing:29.551422px;}
.ws1b7{word-spacing:29.769444px;}
.ws1fc{word-spacing:30.427002px;}
.ws80{word-spacing:30.618471px;}
.ws1b3{word-spacing:30.725892px;}
.ws1bb{word-spacing:31.024423px;}
.ws1ff{word-spacing:31.144338px;}
.ws1fe{word-spacing:32.339898px;}
.ws1af{word-spacing:32.399676px;}
.ws1cd{word-spacing:32.698446px;}
.ws1d5{word-spacing:33.607311px;}
.ws1d4{word-spacing:33.906082px;}
.ws1c3{word-spacing:34.850574px;}
.ws1f0{word-spacing:35.806663px;}
.ws1c8{word-spacing:36.046134px;}
.ws1db{word-spacing:36.105912px;}
.ws1b8{word-spacing:37.480806px;}
.ws1dc{word-spacing:37.720456px;}
.ws1ef{word-spacing:37.839474px;}
.ws163{word-spacing:38.927434px;}
.ws1d0{word-spacing:41.009772px;}
.ws1ba{word-spacing:41.359694px;}
.ws201{word-spacing:41.971304px;}
.ws1f7{word-spacing:45.419815px;}
.wse1{word-spacing:46.679219px;}
.wsc4{word-spacing:46.682272px;}
.ws1ae{word-spacing:49.555962px;}
.ws18d{word-spacing:50.476543px;}
.ws96{word-spacing:50.476782px;}
.ws161{word-spacing:50.942572px;}
.ws162{word-spacing:52.915486px;}
.ws1d3{word-spacing:54.637212px;}
.wsc6{word-spacing:57.376195px;}
.ws1c{word-spacing:60.568812px;}
.wse0{word-spacing:73.405824px;}
.ws149{word-spacing:182.348106px;}
.ws15b{word-spacing:345.708130px;}
.ws9c{word-spacing:404.529682px;}
.ws9e{word-spacing:407.159914px;}
.ws9d{word-spacing:427.603990px;}
.ws9b{word-spacing:433.701346px;}
._5a{margin-left:-7.732564px;}
._16{margin-left:-6.695076px;}
._4{margin-left:-5.120104px;}
._11{margin-left:-3.908446px;}
._1{margin-left:-2.409870px;}
._6{margin-left:-1.216245px;}
._0{width:1.750078px;}
._3f{width:3.604152px;}
._49{width:5.737864px;}
._48{width:7.171682px;}
._13{width:12.992250px;}
._b{width:14.305154px;}
._35{width:15.900672px;}
._17{width:17.595753px;}
._1d{width:19.011638px;}
._20{width:20.822450px;}
._e{width:22.059816px;}
._59{width:23.451726px;}
._c{width:24.927426px;}
._7{width:26.739456px;}
._9{width:28.276032px;}
._3{width:29.310209px;}
._f{width:30.906063px;}
._8{width:32.386514px;}
._1b{width:33.972654px;}
._10{width:36.046493px;}
._58{width:37.344734px;}
._15{width:39.094573px;}
._d{width:40.847602px;}
._47{width:42.084571px;}
._a{width:43.238304px;}
._1f{width:44.374026px;}
._1e{width:46.328650px;}
._14{width:47.464270px;}
._5{width:49.316432px;}
._56{width:50.411006px;}
._2{width:52.247249px;}
._57{width:55.517246px;}
._40{width:56.568857px;}
._5d{width:58.246529px;}
._1a{width:59.320439px;}
._31{width:60.961140px;}
._60{width:62.228659px;}
._1c{width:65.755800px;}
._41{width:68.744700px;}
._46{width:70.841195px;}
._18{width:72.530002px;}
._5f{width:74.365248px;}
._12{width:78.902857px;}
._23{width:84.704748px;}
._2d{width:87.492240px;}
._5b{width:90.503414px;}
._55{width:97.856586px;}
._45{width:99.948637px;}
._3d{width:110.276371px;}
._24{width:112.808223px;}
._5e{width:116.515226px;}
._5c{width:117.615157px;}
._53{width:121.708307px;}
._54{width:125.832690px;}
._30{width:128.352034px;}
._51{width:130.196245px;}
._42{width:133.185384px;}
._2e{width:135.491242px;}
._44{width:170.266733px;}
._32{width:192.451850px;}
._2c{width:202.882136px;}
._34{width:212.228382px;}
._37{width:214.638252px;}
._43{width:230.982192px;}
._36{width:237.260836px;}
._38{width:239.671212px;}
._19{width:246.264556px;}
._2f{width:266.962168px;}
._27{width:276.501419px;}
._50{width:282.529877px;}
._3e{width:283.756791px;}
._21{width:287.768602px;}
._28{width:301.488106px;}
._2a{width:305.847518px;}
._2b{width:308.961172px;}
._22{width:326.662866px;}
._33{width:334.413862px;}
._26{width:352.449368px;}
._4e{width:356.037768px;}
._29{width:358.273256px;}
._25{width:365.360119px;}
._4c{width:367.335810px;}
._3a{width:385.025787px;}
._3c{width:387.699154px;}
._4f{width:394.392870px;}
._39{width:396.985057px;}
._3b{width:398.741962px;}
._52{width:402.400473px;}
._4d{width:416.114658px;}
._4b{width:498.634672px;}
._4a{width:508.288819px;}
.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;}
.fsb{font-size:50.631966px;}
.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;}
.y56{bottom:2.526000px;}
.y2{bottom:4.615708px;}
.y1{bottom:38.377917px;}
.y55{bottom:41.879334px;}
.y57{bottom:42.993625px;}
.y194{bottom:80.787000px;}
.y193{bottom:98.719500px;}
.y3d{bottom:106.299000px;}
.y192{bottom:116.652000px;}
.y3c{bottom:124.231500px;}
.y1b1{bottom:124.317000px;}
.y191{bottom:134.586000px;}
.y3b{bottom:142.164000px;}
.y1b0{bottom:142.249500px;}
.y190{bottom:152.518500px;}
.y165{bottom:152.700000px;}
.y3a{bottom:160.096500px;}
.y1dd{bottom:160.098000px;}
.y1af{bottom:160.182000px;}
.y239{bottom:160.824000px;}
.yef{bottom:162.627822px;}
.y18f{bottom:170.451000px;}
.y8c{bottom:170.821500px;}
.yee{bottom:177.816649px;}
.y54{bottom:178.029000px;}
.y39{bottom:178.030500px;}
.y1ae{bottom:178.116000px;}
.y238{bottom:178.758000px;}
.yeb{bottom:185.288400px;}
.y18e{bottom:188.383500px;}
.yed{bottom:193.006748px;}
.y164{bottom:194.067000px;}
.y38{bottom:195.963000px;}
.y237{bottom:196.690500px;}
.y8b{bottom:199.477500px;}
.y117{bottom:205.705500px;}
.y1ad{bottom:205.858500px;}
.y18d{bottom:206.316000px;}
.y139{bottom:206.461500px;}
.yec{bottom:208.195575px;}
.y163{bottom:211.999500px;}
.y37{bottom:213.895500px;}
.y236{bottom:215.350500px;}
.yea{bottom:223.890061px;}
.y18c{bottom:224.250000px;}
.y162{bottom:229.933500px;}
.y53{bottom:231.828000px;}
.y235{bottom:233.283000px;}
.y1ac{bottom:233.601000px;}
.y36{bottom:235.350000px;}
.ye9{bottom:239.078889px;}
.y18b{bottom:242.182500px;}
.yba{bottom:243.735000px;}
.y8a{bottom:245.976000px;}
.y116{bottom:246.417000px;}
.y138{bottom:247.720500px;}
.y161{bottom:247.866000px;}
.y52{bottom:249.760500px;}
.y234{bottom:251.215500px;}
.y35{bottom:253.282500px;}
.ye8{bottom:254.268987px;}
.y18a{bottom:260.115000px;}
.y89{bottom:263.908500px;}
.y115{bottom:264.349500px;}
.y137{bottom:265.653000px;}
.y160{bottom:265.798500px;}
.y51{bottom:267.693000px;}
.y1dc{bottom:267.694500px;}
.y233{bottom:269.149500px;}
.ye7{bottom:269.457814px;}
.y34{bottom:271.215000px;}
.y189{bottom:278.047500px;}
.y1cd{bottom:279.177000px;}
.y88{bottom:281.841000px;}
.y114{bottom:282.282000px;}
.y136{bottom:283.585500px;}
.y15f{bottom:283.731000px;}
.ye6{bottom:284.646642px;}
.y50{bottom:285.627000px;}
.y1ab{bottom:286.822500px;}
.y232{bottom:287.082000px;}
.y33{bottom:289.147500px;}
.yb9{bottom:290.616000px;}
.y188{bottom:295.980000px;}
.y87{bottom:299.773500px;}
.ye5{bottom:299.835469px;}
.y113{bottom:300.214500px;}
.y135{bottom:301.518000px;}
.y15e{bottom:301.663500px;}
.y4f{bottom:303.559500px;}
.y1aa{bottom:304.755000px;}
.y231{bottom:305.014500px;}
.y32{bottom:307.081500px;}
.yb8{bottom:308.548500px;}
.ye4{bottom:315.024297px;}
.y187{bottom:315.655500px;}
.y86{bottom:317.706000px;}
.y112{bottom:318.147000px;}
.y134{bottom:319.450500px;}
.y15d{bottom:319.597500px;}
.y4e{bottom:321.492000px;}
.y230{bottom:322.947000px;}
.y1cc{bottom:324.852000px;}
.y31{bottom:325.014000px;}
.yb7{bottom:326.481000px;}
.ye3{bottom:330.213124px;}
.y186{bottom:333.588000px;}
.y85{bottom:335.640000px;}
.y111{bottom:336.079500px;}
.y133{bottom:337.384500px;}
.y4d{bottom:339.424500px;}
.y22f{bottom:341.607000px;}
.y1cb{bottom:342.784500px;}
.y30{bottom:342.946500px;}
.yb6{bottom:344.413500px;}
.ye2{bottom:345.403222px;}
.y15c{bottom:348.066000px;}
.y185{bottom:351.522000px;}
.y84{bottom:354.148500px;}
.y132{bottom:355.317000px;}
.y4c{bottom:357.357000px;}
.y22e{bottom:359.541000px;}
.ye1{bottom:360.592050px;}
.y1ca{bottom:360.717000px;}
.y2f{bottom:360.879000px;}
.yb5{bottom:362.346000px;}
.y110{bottom:363.754500px;}
.y184{bottom:369.454500px;}
.y83{bottom:372.081000px;}
.y131{bottom:373.249500px;}
.y4b{bottom:375.289500px;}
.ye0{bottom:375.780877px;}
.y22d{bottom:377.473500px;}
.y1c9{bottom:378.649500px;}
.y2e{bottom:378.811500px;}
.yb4{bottom:380.280000px;}
.y1db{bottom:385.912500px;}
.y183{bottom:387.387000px;}
.y15b{bottom:389.433000px;}
.y82{bottom:390.013500px;}
.ydf{bottom:390.969705px;}
.y130{bottom:391.182000px;}
.y4a{bottom:393.223500px;}
.y22c{bottom:395.406000px;}
.y1c8{bottom:396.583500px;}
.y2d{bottom:396.744000px;}
.yb3{bottom:398.212500px;}
.y182{bottom:405.319500px;}
.yde{bottom:406.158532px;}
.y15a{bottom:407.365500px;}
.y10f{bottom:407.455500px;}
.y81{bottom:407.946000px;}
.y12f{bottom:409.114500px;}
.y49{bottom:411.156000px;}
.y22b{bottom:414.066000px;}
.y1c7{bottom:414.516000px;}
.yb2{bottom:416.145000px;}
.y2c{bottom:418.198500px;}
.ydd{bottom:421.348631px;}
.y181{bottom:423.252000px;}
.y159{bottom:425.298000px;}
.y10e{bottom:425.388000px;}
.y80{bottom:425.880000px;}
.y202{bottom:429.088500px;}
.y22a{bottom:431.998500px;}
.y1c6{bottom:432.448500px;}
.yb1{bottom:435.289500px;}
.y2b{bottom:436.131000px;}
.ydc{bottom:436.537458px;}
.y12e{bottom:437.545500px;}
.y48{bottom:440.302500px;}
.y158{bottom:443.230500px;}
.y10d{bottom:443.320500px;}
.y1da{bottom:443.566500px;}
.y7f{bottom:443.812500px;}
.y201{bottom:447.021000px;}
.y1c5{bottom:450.381000px;}
.y229{bottom:450.660000px;}
.ydb{bottom:451.726285px;}
.yb0{bottom:453.222000px;}
.y2a{bottom:454.065000px;}
.y180{bottom:454.080000px;}
.y25e{bottom:456.831000px;}
.y157{bottom:461.163000px;}
.y10c{bottom:461.253000px;}
.y1d9{bottom:461.499000px;}
.y7e{bottom:461.745000px;}
.y200{bottom:464.953500px;}
.yda{bottom:466.915113px;}
.y1c4{bottom:468.313500px;}
.y228{bottom:468.592500px;}
.yaf{bottom:471.154500px;}
.y29{bottom:471.997500px;}
.y25d{bottom:474.765000px;}
.y12d{bottom:478.806000px;}
.y156{bottom:479.097000px;}
.y10b{bottom:479.187000px;}
.y7d{bottom:479.677500px;}
.yd9{bottom:482.103940px;}
.y1a9{bottom:482.292000px;}
.y1ff{bottom:482.886000px;}
.y1c3{bottom:486.247500px;}
.y227{bottom:486.525000px;}
.y47{bottom:488.202000px;}
.y28{bottom:489.930000px;}
.yae{bottom:490.299000px;}
.y25c{bottom:492.697500px;}
.y12c{bottom:496.738500px;}
.y155{bottom:497.029500px;}
.y10a{bottom:497.167500px;}
.yd8{bottom:497.292768px;}
.y7c{bottom:497.610000px;}
.y1a8{bottom:500.224500px;}
.y1fe{bottom:500.820000px;}
.y17f{bottom:503.779500px;}
.y1c2{bottom:504.180000px;}
.y226{bottom:505.185000px;}
.y46{bottom:506.134500px;}
.y27{bottom:507.862500px;}
.yad{bottom:508.231500px;}
.y25b{bottom:510.630000px;}
.yd7{bottom:512.482866px;}
.y12b{bottom:514.671000px;}
.y154{bottom:514.962000px;}
.y109{bottom:515.101500px;}
.y7b{bottom:515.544000px;}
.y1fd{bottom:518.752500px;}
.y17e{bottom:521.712000px;}
.y1c1{bottom:522.112500px;}
.y225{bottom:523.117500px;}
.y45{bottom:524.067000px;}
.y26{bottom:525.795000px;}
.yac{bottom:526.165500px;}
.yd6{bottom:527.671693px;}
.y25a{bottom:529.393500px;}
.y12a{bottom:532.603500px;}
.y153{bottom:532.894500px;}
.y108{bottom:533.034000px;}
.y7a{bottom:533.476500px;}
.y1fc{bottom:536.685000px;}
.y17d{bottom:539.646000px;}
.y1c0{bottom:541.029000px;}
.y224{bottom:541.050000px;}
.y44{bottom:541.999500px;}
.yd5{bottom:542.860521px;}
.y25{bottom:543.727500px;}
.yab{bottom:544.098000px;}
.y259{bottom:547.326000px;}
.y152{bottom:550.827000px;}
.y107{bottom:550.966500px;}
.y79{bottom:551.985000px;}
.y17c{bottom:557.578500px;}
.yd4{bottom:558.049348px;}
.y1bf{bottom:558.961500px;}
.y223{bottom:558.984000px;}
.y43{bottom:559.933500px;}
.y129{bottom:561.034500px;}
.y24{bottom:561.661500px;}
.yaa{bottom:562.030500px;}
.y1fb{bottom:564.624000px;}
.y258{bottom:565.258500px;}
.y106{bottom:568.899000px;}
.y78{bottom:569.917500px;}
.yd3{bottom:573.238176px;}
.y17b{bottom:575.511000px;}
.y1be{bottom:576.895500px;}
.y222{bottom:576.916500px;}
.y42{bottom:577.866000px;}
.y151{bottom:579.297000px;}
.y23{bottom:579.594000px;}
.ya9{bottom:579.963000px;}
.y257{bottom:583.191000px;}
.y105{bottom:586.831500px;}
.y77{bottom:587.850000px;}
.yd2{bottom:588.427003px;}
.y17a{bottom:593.443500px;}
.y1bd{bottom:594.828000px;}
.y221{bottom:595.576500px;}
.y41{bottom:595.798500px;}
.y22{bottom:597.526500px;}
.ya8{bottom:597.895500px;}
.y256{bottom:601.954500px;}
.yd1{bottom:603.617101px;}
.y128{bottom:603.903000px;}
.y104{bottom:604.764000px;}
.y76{bottom:605.784000px;}
.y1fa{bottom:609.075000px;}
.y179{bottom:611.376000px;}
.y220{bottom:613.509000px;}
.y40{bottom:613.731000px;}
.y21{bottom:615.459000px;}
.ya7{bottom:615.828000px;}
.yd0{bottom:618.805929px;}
.y255{bottom:619.887000px;}
.y150{bottom:620.662500px;}
.y127{bottom:621.835500px;}
.y103{bottom:622.698000px;}
.y75{bottom:623.716500px;}
.y1bc{bottom:624.243000px;}
.y1f9{bottom:627.007500px;}
.y178{bottom:629.308500px;}
.y21f{bottom:631.441500px;}
.y3f{bottom:631.663500px;}
.y20{bottom:633.391500px;}
.ya6{bottom:633.762000px;}
.ycf{bottom:633.994756px;}
.y254{bottom:637.819500px;}
.y14f{bottom:638.596500px;}
.y126{bottom:639.768000px;}
.y102{bottom:640.630500px;}
.y74{bottom:641.649000px;}
.y1f8{bottom:644.940000px;}
.y1d8{bottom:646.122000px;}
.y177{bottom:647.242500px;}
.yce{bottom:649.183584px;}
.y21e{bottom:649.375500px;}
.y3e{bottom:649.596000px;}
.ya5{bottom:651.694500px;}
.y253{bottom:655.752000px;}
.y14e{bottom:656.529000px;}
.y125{bottom:657.700500px;}
.y101{bottom:658.563000px;}
.y73{bottom:659.581500px;}
.y1f7{bottom:662.874000px;}
.y1d7{bottom:664.054500px;}
.ycd{bottom:664.372411px;}
.y21d{bottom:667.308000px;}
.y1f{bottom:667.530000px;}
.ya4{bottom:669.627000px;}
.y1bb{bottom:669.919500px;}
.y252{bottom:673.684500px;}
.y14d{bottom:674.461500px;}
.y124{bottom:676.089000px;}
.y100{bottom:676.545000px;}
.y72{bottom:677.514000px;}
.y1a7{bottom:677.653500px;}
.ycc{bottom:679.561239px;}
.y176{bottom:680.449500px;}
.y1f6{bottom:680.806500px;}
.y21c{bottom:685.968000px;}
.ya3{bottom:687.559500px;}
.y1ba{bottom:687.852000px;}
.y175{bottom:690.700500px;}
.y14c{bottom:692.394000px;}
.y251{bottom:692.448000px;}
.y123{bottom:694.021500px;}
.yff{bottom:694.477500px;}
.ycb{bottom:694.751337px;}
.y71{bottom:695.446500px;}
.y1a6{bottom:695.586000px;}
.y1f5{bottom:698.739000px;}
.y21b{bottom:703.900500px;}
.ya2{bottom:705.492000px;}
.y1b9{bottom:705.784500px;}
.yca{bottom:709.940164px;}
.y14b{bottom:710.326500px;}
.y250{bottom:710.380500px;}
.y122{bottom:711.954000px;}
.yfe{bottom:712.410000px;}
.y70{bottom:713.380500px;}
.y1f4{bottom:716.671500px;}
.y174{bottom:718.410000px;}
.y21a{bottom:721.833000px;}
.ya1{bottom:723.426000px;}
.y1b8{bottom:723.717000px;}
.yc9{bottom:725.128992px;}
.y14a{bottom:728.259000px;}
.y24f{bottom:728.313000px;}
.y173{bottom:728.661000px;}
.y121{bottom:729.886500px;}
.yfd{bottom:730.342500px;}
.y6f{bottom:731.313000px;}
.y1f3{bottom:734.604000px;}
.y219{bottom:739.767000px;}
.yc8{bottom:740.317819px;}
.y1b7{bottom:741.649500px;}
.y149{bottom:746.193000px;}
.y24e{bottom:746.247000px;}
.y1b{bottom:747.409500px;}
.y120{bottom:747.820500px;}
.yfc{bottom:748.275000px;}
.y6e{bottom:749.245500px;}
.y1f2{bottom:752.536500px;}
.ya0{bottom:753.264000px;}
.yc7{bottom:755.506647px;}
.y172{bottom:756.205500px;}
.y218{bottom:758.427000px;}
.y1e{bottom:759.364500px;}
.y1b6{bottom:759.582000px;}
.y148{bottom:764.125500px;}
.y24d{bottom:764.179500px;}
.y1a{bottom:765.342000px;}
.y11f{bottom:765.753000px;}
.yfb{bottom:766.207500px;}
.y171{bottom:766.456500px;}
.y6d{bottom:767.178000px;}
.y1f1{bottom:770.470500px;}
.yc6{bottom:770.696745px;}
.y1d{bottom:771.319500px;}
.y217{bottom:776.359500px;}
.y1b5{bottom:777.516000px;}
.y147{bottom:782.058000px;}
.y24c{bottom:782.112000px;}
.y1c{bottom:783.274500px;}
.y11e{bottom:783.685500px;}
.yfa{bottom:784.141500px;}
.y6c{bottom:785.110500px;}
.yc5{bottom:785.885572px;}
.y1f0{bottom:788.593500px;}
.y216{bottom:794.292000px;}
.y1b4{bottom:795.448500px;}
.y146{bottom:799.990500px;}
.y9f{bottom:800.145000px;}
.y24b{bottom:800.875500px;}
.yc4{bottom:801.074400px;}
.y19{bottom:801.207000px;}
.y11d{bottom:801.618000px;}
.yf9{bottom:802.074000px;}
.y6b{bottom:803.043000px;}
.y1ef{bottom:806.526000px;}
.y170{bottom:806.701500px;}
.y215{bottom:812.224500px;}
.y1b3{bottom:813.381000px;}
.yc3{bottom:816.263227px;}
.y145{bottom:817.923000px;}
.y9e{bottom:818.079000px;}
.y24a{bottom:818.808000px;}
.y18{bottom:819.139500px;}
.y11c{bottom:819.550500px;}
.yf8{bottom:820.006500px;}
.y6a{bottom:820.977000px;}
.y1ee{bottom:824.458500px;}
.y16f{bottom:824.635500px;}
.y214{bottom:830.157000px;}
.y1b2{bottom:831.313500px;}
.yc2{bottom:831.452055px;}
.y144{bottom:835.857000px;}
.y9d{bottom:836.011500px;}
.y249{bottom:836.740500px;}
.y17{bottom:837.073500px;}
.y11b{bottom:837.483000px;}
.yf7{bottom:837.939000px;}
.y69{bottom:838.909500px;}
.y1ed{bottom:842.391000px;}
.y16e{bottom:842.568000px;}
.yc1{bottom:846.640883px;}
.y213{bottom:848.091000px;}
.y1d6{bottom:848.677500px;}
.y9c{bottom:853.944000px;}
.y16{bottom:855.006000px;}
.y11a{bottom:855.417000px;}
.y248{bottom:855.504000px;}
.yf6{bottom:855.871500px;}
.y68{bottom:856.842000px;}
.y1ec{bottom:860.323500px;}
.y16d{bottom:860.500500px;}
.yc0{bottom:861.830981px;}
.y1d5{bottom:866.611500px;}
.y212{bottom:866.751000px;}
.y9b{bottom:871.876500px;}
.y15{bottom:872.938500px;}
.y119{bottom:873.349500px;}
.y247{bottom:873.436500px;}
.y1a5{bottom:873.619500px;}
.yf5{bottom:873.805500px;}
.y67{bottom:874.774500px;}
.ybf{bottom:877.048050px;}
.y1eb{bottom:878.257500px;}
.y16c{bottom:878.433000px;}
.y211{bottom:884.683500px;}
.y143{bottom:887.617500px;}
.y9a{bottom:889.809000px;}
.y14{bottom:890.871000px;}
.y118{bottom:891.282000px;}
.y246{bottom:891.369000px;}
.y1a4{bottom:891.552000px;}
.yf4{bottom:891.738000px;}
.y66{bottom:892.707000px;}
.ybe{bottom:892.743150px;}
.y1ea{bottom:896.190000px;}
.y16b{bottom:896.365500px;}
.y1a1{bottom:900.369000px;}
.y210{bottom:902.616000px;}
.y142{bottom:905.550000px;}
.y99{bottom:907.741500px;}
.y13{bottom:908.803500px;}
.y245{bottom:909.301500px;}
.y1a3{bottom:909.484500px;}
.yf3{bottom:909.670500px;}
.y65{bottom:910.639500px;}
.ybd{bottom:912.766500px;}
.y1e9{bottom:914.122500px;}
.y20f{bottom:920.548500px;}
.y141{bottom:923.482500px;}
.y98{bottom:925.675500px;}
.y12{bottom:926.736000px;}
.y244{bottom:927.234000px;}
.y1a2{bottom:927.417000px;}
.yf2{bottom:927.603000px;}
.y64{bottom:928.573500px;}
.y16a{bottom:930.403500px;}
.y1e8{bottom:932.055000px;}
.y20e{bottom:939.210000px;}
.ybc{bottom:940.192500px;}
.y169{bottom:940.654500px;}
.y140{bottom:941.415000px;}
.y97{bottom:943.608000px;}
.y11{bottom:944.670000px;}
.y243{bottom:945.166500px;}
.yf1{bottom:945.535500px;}
.y1a0{bottom:945.948000px;}
.y63{bottom:946.506000px;}
.y20d{bottom:957.142500px;}
.y13f{bottom:959.946000px;}
.y1e7{bottom:959.994000px;}
.y96{bottom:961.540500px;}
.y10{bottom:962.602500px;}
.y19f{bottom:963.880500px;}
.y242{bottom:963.930000px;}
.y62{bottom:964.438500px;}
.y20c{bottom:975.075000px;}
.y13e{bottom:977.878500px;}
.y95{bottom:979.473000px;}
.yf{bottom:980.535000px;}
.y19e{bottom:981.813000px;}
.y241{bottom:981.862500px;}
.y168{bottom:981.897000px;}
.y61{bottom:982.947000px;}
.y20b{bottom:993.007500px;}
.y94{bottom:997.405500px;}
.yf0{bottom:997.756500px;}
.ye{bottom:998.467500px;}
.y19d{bottom:999.747000px;}
.y240{bottom:999.795000px;}
.y167{bottom:999.829500px;}
.y13d{bottom:999.912000px;}
.y60{bottom:1000.879500px;}
.y1e6{bottom:1001.457000px;}
.y20a{bottom:1010.940000px;}
.yd{bottom:1016.400000px;}
.y19c{bottom:1017.679500px;}
.y23f{bottom:1017.729000px;}
.y166{bottom:1017.762000px;}
.y13c{bottom:1017.844500px;}
.y5f{bottom:1018.813500px;}
.y1e5{bottom:1019.389500px;}
.y209{bottom:1029.601500px;}
.yc{bottom:1034.332500px;}
.y19b{bottom:1035.612000px;}
.y23e{bottom:1035.661500px;}
.y5e{bottom:1036.746000px;}
.y1d4{bottom:1036.800000px;}
.y1e4{bottom:1037.322000px;}
.y208{bottom:1047.534000px;}
.y93{bottom:1050.639000px;}
.yb{bottom:1052.266500px;}
.y19a{bottom:1053.544500px;}
.y23d{bottom:1054.423500px;}
.y5d{bottom:1054.678500px;}
.y1d3{bottom:1054.732500px;}
.y1e3{bottom:1055.254500px;}
.y207{bottom:1065.466500px;}
.y92{bottom:1068.571500px;}
.y199{bottom:1071.477000px;}
.y23c{bottom:1072.357500px;}
.y5c{bottom:1072.611000px;}
.y1d2{bottom:1072.666500px;}
.y1e2{bottom:1073.187000px;}
.y206{bottom:1083.399000px;}
.y9{bottom:1084.395000px;}
.y91{bottom:1086.504000px;}
.ya{bottom:1088.614500px;}
.y198{bottom:1089.409500px;}
.y23b{bottom:1090.290000px;}
.y5b{bottom:1090.543500px;}
.y1d1{bottom:1090.599000px;}
.y1e1{bottom:1091.119500px;}
.y205{bottom:1101.331500px;}
.y8{bottom:1103.076000px;}
.y90{bottom:1104.436500px;}
.y197{bottom:1107.343500px;}
.y23a{bottom:1108.222500px;}
.y5a{bottom:1108.477500px;}
.y1d0{bottom:1108.531500px;}
.y1e0{bottom:1109.053500px;}
.y204{bottom:1119.265500px;}
.y13b{bottom:1122.370500px;}
.y8f{bottom:1122.967500px;}
.y6{bottom:1123.996500px;}
.y196{bottom:1125.276000px;}
.y59{bottom:1126.410000px;}
.y1cf{bottom:1126.464000px;}
.y1df{bottom:1126.986000px;}
.y7{bottom:1130.505000px;}
.y203{bottom:1137.198000px;}
.y8e{bottom:1140.900000px;}
.y195{bottom:1143.805500px;}
.y58{bottom:1144.342500px;}
.y1ce{bottom:1144.396500px;}
.y1de{bottom:1144.918500px;}
.y5{bottom:1162.851000px;}
.y8d{bottom:1162.933500px;}
.y13a{bottom:1162.935000px;}
.ybb{bottom:1165.888438px;}
.y4{bottom:1166.003240px;}
.y3{bottom:1179.782758px;}
.he{height:13.200074px;}
.hc{height:29.960304px;}
.ha{height:34.074600px;}
.h9{height:34.191300px;}
.h12{height:34.368215px;}
.h4{height:36.000225px;}
.h8{height:37.926180px;}
.h13{height:37.973975px;}
.h14{height:41.844600px;}
.h11{height:42.792210px;}
.hb{height:42.801048px;}
.h3{height:44.824091px;}
.hd{height:44.833500px;}
.h7{height:45.429000px;}
.h19{height:47.781048px;}
.hf{height:49.898438px;}
.h6{height:51.358680px;}
.h18{height:57.909048px;}
.h5{height:61.544340px;}
.h17{height:82.583490px;}
.h15{height:85.273500px;}
.h16{height:85.837500px;}
.h2{height:1195.555378px;}
.h10{height:1262.830100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:20.022000px;}
.w2{width:727.996041px;}
.w4{width:892.910172px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:2.111095px;}
.x12{left:81.000000px;}
.x1{left:82.367775px;}
.x4{left:85.039500px;}
.x24{left:92.511000px;}
.x19{left:94.006500px;}
.xb{left:99.984000px;}
.x25{left:115.758000px;}
.x2{left:125.858878px;}
.x15{left:132.990750px;}
.x1a{left:156.927000px;}
.x7{left:188.175000px;}
.xe{left:208.226652px;}
.x13{left:217.917000px;}
.x18{left:231.990000px;}
.x23{left:239.983500px;}
.x14{left:245.274000px;}
.x17{left:279.105000px;}
.x22{left:318.831000px;}
.x5{left:335.352000px;}
.x6{left:348.054000px;}
.x16{left:363.739994px;}
.xc{left:453.928500px;}
.xf{left:461.184000px;}
.x11{left:468.873000px;}
.x26{left:484.647000px;}
.x28{left:502.612500px;}
.x1b{left:508.749000px;}
.x1d{left:516.534000px;}
.x20{left:521.142000px;}
.x10{left:525.816000px;}
.x1f{left:540.163500px;}
.x1c{left:589.242000px;}
.x1e{left:599.869500px;}
.x21{left:625.606500px;}
.x9{left:664.932000px;}
.x8{left:676.783500px;}
.xa{left:679.366500px;}
.x27{left:693.459000px;}
.xd{left:791.891968px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.426667pt;}
.v2{vertical-align:13.429333pt;}
.v1{vertical-align:35.946667pt;}
.ls8{letter-spacing:-0.300471pt;}
.ls6{letter-spacing:-0.079370pt;}
.ls7{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.034016pt;}
.ls5{letter-spacing:0.083746pt;}
.ls4{letter-spacing:0.084291pt;}
.ls1{letter-spacing:0.215432pt;}
.ls0{letter-spacing:0.544250pt;}
.ls2{letter-spacing:0.592371pt;}
.ls3{letter-spacing:0.617146pt;}
.ls15{letter-spacing:7.374905pt;}
.ls11{letter-spacing:11.801486pt;}
.ls10{letter-spacing:11.806819pt;}
.ls16{letter-spacing:18.180153pt;}
.lsa{letter-spacing:21.413808pt;}
.lsd{letter-spacing:21.420153pt;}
.lsb{letter-spacing:21.456672pt;}
.lsc{letter-spacing:21.473486pt;}
.ls13{letter-spacing:95.124153pt;}
.ls14{letter-spacing:98.622819pt;}
.lse{letter-spacing:100.255437pt;}
.ls12{letter-spacing:133.404743pt;}
.lsf{letter-spacing:172.612153pt;}
.ws0{word-spacing:-43.097798pt;}
.ws1{word-spacing:-42.666933pt;}
.ws160{word-spacing:-14.761181pt;}
.wsd4{word-spacing:-12.502720pt;}
.ws146{word-spacing:-2.966170pt;}
.ws10e{word-spacing:-2.645960pt;}
.ws209{word-spacing:-2.593037pt;}
.ws13d{word-spacing:-2.539901pt;}
.ws16e{word-spacing:-2.487562pt;}
.ws1a3{word-spacing:-2.380387pt;}
.ws168{word-spacing:-2.327357pt;}
.ws165{word-spacing:-2.274221pt;}
.ws1f3{word-spacing:-2.167949pt;}
.ws169{word-spacing:-2.167630pt;}
.wsc8{word-spacing:-2.106515pt;}
.wsc7{word-spacing:-2.099661pt;}
.ws208{word-spacing:-2.061464pt;}
.wsfe{word-spacing:-2.008647pt;}
.ws32{word-spacing:-1.902534pt;}
.ws113{word-spacing:-1.902003pt;}
.ws103{word-spacing:-1.743020pt;}
.ws1f9{word-spacing:-1.689725pt;}
.ws55{word-spacing:-1.583559pt;}
.ws127{word-spacing:-1.530264pt;}
.wsc2{word-spacing:-1.477181pt;}
.ws20{word-spacing:-1.424098pt;}
.wsc3{word-spacing:-1.317773pt;}
.ws185{word-spacing:-1.264637pt;}
.ws1f{word-spacing:-1.105176pt;}
.ws68{word-spacing:-1.052358pt;}
.ws122{word-spacing:-1.051827pt;}
.ws62{word-spacing:-1.037477pt;}
.ws195{word-spacing:-0.999063pt;}
.wsee{word-spacing:-0.945821pt;}
.ws7e{word-spacing:-0.945715pt;}
.ws5d{word-spacing:-0.907083pt;}
.ws61{word-spacing:-0.890076pt;}
.ws155{word-spacing:-0.839602pt;}
.ws16c{word-spacing:-0.786413pt;}
.wsf4{word-spacing:-0.680141pt;}
.ws16b{word-spacing:-0.680088pt;}
.ws11b{word-spacing:-0.573975pt;}
.wseb{word-spacing:-0.573869pt;}
.ws5b{word-spacing:-0.544250pt;}
.ws136{word-spacing:-0.520733pt;}
.wsf1{word-spacing:-0.520627pt;}
.ws5e{word-spacing:-0.447872pt;}
.ws207{word-spacing:-0.414461pt;}
.ws63{word-spacing:-0.413857pt;}
.ws3c{word-spacing:-0.361697pt;}
.ws94{word-spacing:-0.307817pt;}
.ws13c{word-spacing:-0.255053pt;}
.ws13a{word-spacing:-0.201704pt;}
.ws12d{word-spacing:-0.148887pt;}
.wsfc{word-spacing:-0.095592pt;}
.wse8{word-spacing:-0.095539pt;}
.ws148{word-spacing:-0.053136pt;}
.ws79{word-spacing:-0.042509pt;}
.ws5{word-spacing:-0.042507pt;}
.ws158{word-spacing:-0.042243pt;}
.ws5a{word-spacing:0.000000pt;}
.ws199{word-spacing:0.010627pt;}
.ws60{word-spacing:0.039685pt;}
.ws42{word-spacing:0.063338pt;}
.wsaa{word-spacing:0.063869pt;}
.ws135{word-spacing:0.116899pt;}
.ws15f{word-spacing:0.222799pt;}
.ws5c{word-spacing:0.260786pt;}
.ws39{word-spacing:0.382314pt;}
.wsdc{word-spacing:0.414147pt;}
.ws12f{word-spacing:0.435609pt;}
.ws17e{word-spacing:0.488426pt;}
.ws78{word-spacing:0.488479pt;}
.ws77{word-spacing:0.488851pt;}
.ws106{word-spacing:0.595070pt;}
.ws190{word-spacing:0.595123pt;}
.ws95{word-spacing:0.595176pt;}
.ws5f{word-spacing:0.634958pt;}
.ws91{word-spacing:0.701236pt;}
.ws3d{word-spacing:0.701289pt;}
.ws1a7{word-spacing:0.754531pt;}
.wsd5{word-spacing:0.774197pt;}
.ws8b{word-spacing:0.807455pt;}
.ws189{word-spacing:0.807880pt;}
.ws16a{word-spacing:0.860803pt;}
.ws107{word-spacing:0.913514pt;}
.ws16d{word-spacing:0.914045pt;}
.wse9{word-spacing:0.914099pt;}
.ws125{word-spacing:1.072975pt;}
.ws1e4{word-spacing:1.073400pt;}
.wsa2{word-spacing:1.126271pt;}
.ws187{word-spacing:1.126377pt;}
.wsa1{word-spacing:1.126483pt;}
.wsac{word-spacing:1.179619pt;}
.wsed{word-spacing:1.232543pt;}
.ws128{word-spacing:1.338549pt;}
.wsfb{word-spacing:1.339187pt;}
.ws130{word-spacing:1.392163pt;}
.ws10c{word-spacing:1.445246pt;}
.ws11{word-spacing:1.493015pt;}
.wsb3{word-spacing:1.498541pt;}
.ws104{word-spacing:1.551890pt;}
.wsb4{word-spacing:1.604707pt;}
.ws6b{word-spacing:1.657471pt;}
.ws2b{word-spacing:1.658003pt;}
.wsdf{word-spacing:1.674050pt;}
.ws87{word-spacing:1.710820pt;}
.ws81{word-spacing:1.710926pt;}
.ws10b{word-spacing:1.710979pt;}
.ws90{word-spacing:1.816932pt;}
.ws59{word-spacing:1.870281pt;}
.wscd{word-spacing:1.898991pt;}
.ws6e{word-spacing:1.923523pt;}
.ws188{word-spacing:1.923629pt;}
.ws198{word-spacing:1.976447pt;}
.ws177{word-spacing:1.976553pt;}
.ws10f{word-spacing:2.029211pt;}
.wsad{word-spacing:2.082931pt;}
.wsbc{word-spacing:2.083091pt;}
.ws43{word-spacing:2.083250pt;}
.ws25{word-spacing:2.135908pt;}
.wsd0{word-spacing:2.169118pt;}
.wsca{word-spacing:2.304182pt;}
.ws14b{word-spacing:2.348611pt;}
.wsdb{word-spacing:2.394104pt;}
.wsef{word-spacing:2.401641pt;}
.ws111{word-spacing:2.401747pt;}
.ws7c{word-spacing:2.454830pt;}
.ws1df{word-spacing:2.454883pt;}
.wscc{word-spacing:2.483982pt;}
.wsc9{word-spacing:2.484432pt;}
.ws119{word-spacing:2.508019pt;}
.wsd9{word-spacing:2.529618pt;}
.wsc5{word-spacing:2.538435pt;}
.ws22{word-spacing:2.560943pt;}
.ws1ed{word-spacing:2.614291pt;}
.ws142{word-spacing:2.667427pt;}
.wsbb{word-spacing:2.826729pt;}
.ws1f2{word-spacing:2.879971pt;}
.wsbe{word-spacing:2.932682pt;}
.ws44{word-spacing:2.932842pt;}
.ws64{word-spacing:2.933107pt;}
.ws9a{word-spacing:2.933213pt;}
.ws29{word-spacing:2.933373pt;}
.wse2{word-spacing:2.986031pt;}
.ws33{word-spacing:2.986190pt;}
.wsf3{word-spacing:2.986243pt;}
.ws15a{word-spacing:3.039379pt;}
.ws24{word-spacing:3.092143pt;}
.ws10d{word-spacing:3.092356pt;}
.ws1c7{word-spacing:3.092675pt;}
.ws12{word-spacing:3.140497pt;}
.ws4a{word-spacing:3.145492pt;}
.ws100{word-spacing:3.145651pt;}
.ws176{word-spacing:3.198787pt;}
.ws129{word-spacing:3.198840pt;}
.ws93{word-spacing:3.251604pt;}
.ws98{word-spacing:3.251817pt;}
.ws6d{word-spacing:3.251923pt;}
.wsde{word-spacing:3.294408pt;}
.wsa{word-spacing:3.299746pt;}
.ws18f{word-spacing:3.358195pt;}
.ws139{word-spacing:3.379290pt;}
.ws116{word-spacing:3.379450pt;}
.wscb{word-spacing:3.429022pt;}
.ws11e{word-spacing:3.432586pt;}
.ws14d{word-spacing:3.464414pt;}
.ws12c{word-spacing:3.517231pt;}
.ws36{word-spacing:3.517444pt;}
.ws54{word-spacing:3.517763pt;}
.ws124{word-spacing:3.570739pt;}
.wsf2{word-spacing:3.623875pt;}
.ws6{word-spacing:3.671698pt;}
.ws11c{word-spacing:3.677011pt;}
.ws1e1{word-spacing:3.730041pt;}
.ws19d{word-spacing:3.730200pt;}
.ws9{word-spacing:3.777916pt;}
.wsd7{word-spacing:3.834663pt;}
.wsc0{word-spacing:3.836154pt;}
.ws1ca{word-spacing:3.836419pt;}
.ws1e7{word-spacing:3.889502pt;}
.wsdd{word-spacing:3.925035pt;}
.ws137{word-spacing:3.942691pt;}
.wsf6{word-spacing:3.995615pt;}
.ws156{word-spacing:3.995827pt;}
.ws1b2{word-spacing:4.048432pt;}
.ws115{word-spacing:4.049495pt;}
.ws19b{word-spacing:4.102099pt;}
.wsa9{word-spacing:4.102312pt;}
.ws3f{word-spacing:4.155076pt;}
.ws108{word-spacing:4.207893pt;}
.ws3b{word-spacing:4.208106pt;}
.ws6c{word-spacing:4.208371pt;}
.ws38{word-spacing:4.208637pt;}
.wscf{word-spacing:4.239898pt;}
.ws11a{word-spacing:4.261507pt;}
.ws17d{word-spacing:4.261773pt;}
.ws71{word-spacing:4.314537pt;}
.ws70{word-spacing:4.314643pt;}
.ws4f{word-spacing:4.314803pt;}
.ws134{word-spacing:4.315068pt;}
.wsc1{word-spacing:4.367779pt;}
.ws192{word-spacing:4.420703pt;}
.ws84{word-spacing:4.420915pt;}
.ws14e{word-spacing:4.421234pt;}
.ws28{word-spacing:4.473998pt;}
.ws1ac{word-spacing:4.474051pt;}
.wsfa{word-spacing:4.526815pt;}
.ws83{word-spacing:4.527081pt;}
.ws133{word-spacing:4.527187pt;}
.ws121{word-spacing:4.633512pt;}
.wsd1{word-spacing:4.644639pt;}
.ws13b{word-spacing:4.686276pt;}
.ws86{word-spacing:4.739094pt;}
.wsea{word-spacing:4.739625pt;}
.ws1bf{word-spacing:4.739731pt;}
.ws85{word-spacing:4.739891pt;}
.wsb1{word-spacing:4.792973pt;}
.ws196{word-spacing:4.845738pt;}
.ws41{word-spacing:4.899086pt;}
.wsf0{word-spacing:4.899139pt;}
.wsb7{word-spacing:4.951903pt;}
.wsaf{word-spacing:4.952275pt;}
.ws56{word-spacing:4.952700pt;}
.ws16{word-spacing:5.000098pt;}
.ws13{word-spacing:5.000204pt;}
.ws4c{word-spacing:5.005199pt;}
.wsb{word-spacing:5.053234pt;}
.ws1a2{word-spacing:5.058547pt;}
.wsba{word-spacing:5.165244pt;}
.ws2e{word-spacing:5.217477pt;}
.ws7a{word-spacing:5.218008pt;}
.ws18c{word-spacing:5.218274pt;}
.ws19e{word-spacing:5.270826pt;}
.ws114{word-spacing:5.271091pt;}
.ws49{word-spacing:5.271357pt;}
.ws17f{word-spacing:5.324174pt;}
.wsbf{word-spacing:5.376938pt;}
.ws182{word-spacing:5.377469pt;}
.wsd6{word-spacing:5.409879pt;}
.ws172{word-spacing:5.430499pt;}
.ws4d{word-spacing:5.483901pt;}
.ws8c{word-spacing:5.536665pt;}
.wsb5{word-spacing:5.643096pt;}
.ws40{word-spacing:5.696179pt;}
.ws10{word-spacing:5.744002pt;}
.ws2c{word-spacing:5.748996pt;}
.wsf{word-spacing:5.797191pt;}
.ws131{word-spacing:5.855375pt;}
.ws1a4{word-spacing:5.855640pt;}
.ws14f{word-spacing:5.865896pt;}
.ws112{word-spacing:5.866214pt;}
.ws152{word-spacing:5.908670pt;}
.wsab{word-spacing:5.919244pt;}
.wsff{word-spacing:5.919350pt;}
.ws102{word-spacing:5.961487pt;}
.wsae{word-spacing:6.015101pt;}
.ws184{word-spacing:6.067600pt;}
.ws47{word-spacing:6.121267pt;}
.ws167{word-spacing:6.121480pt;}
.ws175{word-spacing:6.174297pt;}
.wsce{word-spacing:6.219811pt;}
.ws109{word-spacing:6.227114pt;}
.ws46{word-spacing:6.280410pt;}
.ws170{word-spacing:6.280941pt;}
.ws34{word-spacing:6.333758pt;}
.ws120{word-spacing:6.333811pt;}
.ws4e{word-spacing:6.440189pt;}
.wsa0{word-spacing:6.492688pt;}
.ws9f{word-spacing:6.493219pt;}
.ws52{word-spacing:6.599332pt;}
.wsc{word-spacing:6.647686pt;}
.ws7d{word-spacing:6.652468pt;}
.ws138{word-spacing:6.653212pt;}
.ws8e{word-spacing:6.705498pt;}
.ws8d{word-spacing:6.705816pt;}
.ws150{word-spacing:6.811610pt;}
.ws51{word-spacing:6.864959pt;}
.ws141{word-spacing:6.865171pt;}
.wse7{word-spacing:6.918307pt;}
.ws2d{word-spacing:6.971071pt;}
.ws3e{word-spacing:6.971603pt;}
.ws14c{word-spacing:7.024420pt;}
.ws1b6{word-spacing:7.024579pt;}
.ws164{word-spacing:7.039104pt;}
.ws1e9{word-spacing:7.077237pt;}
.ws6f{word-spacing:7.077556pt;}
.ws1aa{word-spacing:7.077715pt;}
.ws3{word-spacing:7.102864pt;}
.ws45{word-spacing:7.103055pt;}
.ws193{word-spacing:7.131117pt;}
.ws67{word-spacing:7.183722pt;}
.ws15d{word-spacing:7.183881pt;}
.ws66{word-spacing:7.183987pt;}
.ws15e{word-spacing:7.237017pt;}
.ws166{word-spacing:7.237123pt;}
.ws191{word-spacing:7.290047pt;}
.ws13f{word-spacing:7.332768pt;}
.ws105{word-spacing:7.343395pt;}
.ws30{word-spacing:7.343873pt;}
.ws8f{word-spacing:7.396531pt;}
.ws6a{word-spacing:7.449508pt;}
.ws69{word-spacing:7.449667pt;}
.ws26{word-spacing:7.502644pt;}
.ws1a6{word-spacing:7.502803pt;}
.ws12e{word-spacing:7.555620pt;}
.ws202{word-spacing:7.555939pt;}
.ws2f{word-spacing:7.556152pt;}
.ws17b{word-spacing:7.608969pt;}
.ws12a{word-spacing:7.662317pt;}
.ws10a{word-spacing:7.768802pt;}
.ws126{word-spacing:7.821779pt;}
.ws180{word-spacing:7.874543pt;}
.wsf9{word-spacing:7.874755pt;}
.ws23{word-spacing:7.927732pt;}
.ws1d{word-spacing:7.927891pt;}
.wsd3{word-spacing:7.975277pt;}
.wse6{word-spacing:7.980708pt;}
.wsb9{word-spacing:7.981027pt;}
.ws159{word-spacing:8.034004pt;}
.ws76{word-spacing:8.034163pt;}
.ws206{word-spacing:8.086821pt;}
.wsb0{word-spacing:8.140701pt;}
.wsa4{word-spacing:8.192934pt;}
.ws1e{word-spacing:8.193571pt;}
.ws194{word-spacing:8.194049pt;}
.wsa3{word-spacing:8.246707pt;}
.ws18a{word-spacing:8.246813pt;}
.ws18e{word-spacing:8.299843pt;}
.wsf7{word-spacing:8.352979pt;}
.ws12b{word-spacing:8.406115pt;}
.ws35{word-spacing:8.458932pt;}
.wse{word-spacing:8.560210pt;}
.ws132{word-spacing:8.565523pt;}
.ws1a0{word-spacing:8.565736pt;}
.ws1f8{word-spacing:8.618659pt;}
.wsa8{word-spacing:8.671795pt;}
.ws1b{word-spacing:8.671799pt;}
.ws17a{word-spacing:8.671901pt;}
.ws19{word-spacing:8.672231pt;}
.ws1a{word-spacing:8.673614pt;}
.ws17{word-spacing:8.674002pt;}
.wsf5{word-spacing:8.724931pt;}
.ws92{word-spacing:8.725091pt;}
.ws1e2{word-spacing:8.786001pt;}
.wsb2{word-spacing:8.831203pt;}
.ws157{word-spacing:8.831363pt;}
.ws178{word-spacing:8.884180pt;}
.ws179{word-spacing:8.937475pt;}
.ws88{word-spacing:8.990717pt;}
.ws1a8{word-spacing:8.990824pt;}
.wsa5{word-spacing:9.043482pt;}
.ws31{word-spacing:9.043641pt;}
.ws140{word-spacing:9.043747pt;}
.ws7f{word-spacing:9.044066pt;}
.wsd2{word-spacing:9.100522pt;}
.ws7b{word-spacing:9.149754pt;}
.wsfd{word-spacing:9.150019pt;}
.ws21{word-spacing:9.256291pt;}
.ws18b{word-spacing:9.256451pt;}
.ws197{word-spacing:9.309215pt;}
.wsbd{word-spacing:9.309640pt;}
.ws186{word-spacing:9.362563pt;}
.wsec{word-spacing:9.415699pt;}
.ws57{word-spacing:9.415805pt;}
.ws58{word-spacing:9.415912pt;}
.ws181{word-spacing:9.469101pt;}
.ws74{word-spacing:9.521971pt;}
.ws75{word-spacing:9.575373pt;}
.ws65{word-spacing:9.628137pt;}
.wsb6{word-spacing:9.734834pt;}
.ws171{word-spacing:9.840893pt;}
.ws4b{word-spacing:9.946581pt;}
.ws1a9{word-spacing:10.000408pt;}
.ws1a5{word-spacing:10.159338pt;}
.ws15{word-spacing:10.261040pt;}
.ws82{word-spacing:10.265981pt;}
.ws99{word-spacing:10.318852pt;}
.wse4{word-spacing:10.425283pt;}
.ws123{word-spacing:10.425443pt;}
.ws183{word-spacing:10.478313pt;}
.ws1ab{word-spacing:10.584691pt;}
.ws11d{word-spacing:10.584904pt;}
.ws19a{word-spacing:10.637774pt;}
.ws53{word-spacing:10.638252pt;}
.wsb8{word-spacing:10.691069pt;}
.ws16f{word-spacing:10.743887pt;}
.ws118{word-spacing:10.744099pt;}
.ws73{word-spacing:10.850371pt;}
.ws14a{word-spacing:10.903348pt;}
.ws15c{word-spacing:11.116157pt;}
.ws3a{word-spacing:11.168922pt;}
.wse3{word-spacing:11.168975pt;}
.ws11f{word-spacing:11.275619pt;}
.wsd{word-spacing:11.482902pt;}
.ws173{word-spacing:11.541245pt;}
.ws1d7{word-spacing:11.594275pt;}
.ws101{word-spacing:11.647358pt;}
.ws147{word-spacing:11.731215pt;}
.ws8{word-spacing:11.748370pt;}
.ws1d2{word-spacing:11.801791pt;}
.ws1ad{word-spacing:11.804458pt;}
.ws110{word-spacing:12.019363pt;}
.wsd8{word-spacing:12.025519pt;}
.ws1b4{word-spacing:12.072446pt;}
.ws151{word-spacing:12.231907pt;}
.ws7{word-spacing:12.333025pt;}
.ws174{word-spacing:12.338179pt;}
.ws117{word-spacing:12.391315pt;}
.wsa7{word-spacing:12.444186pt;}
.ws72{word-spacing:12.444717pt;}
.wsa6{word-spacing:12.550723pt;}
.ws1a1{word-spacing:12.975917pt;}
.ws18{word-spacing:13.129755pt;}
.ws17c{word-spacing:13.135379pt;}
.ws89{word-spacing:13.560467pt;}
.ws8a{word-spacing:13.613284pt;}
.ws1fd{word-spacing:13.613443pt;}
.ws1ee{word-spacing:13.666579pt;}
.ws20a{word-spacing:13.868496pt;}
.ws1d9{word-spacing:13.879123pt;}
.ws27{word-spacing:14.038850pt;}
.ws153{word-spacing:14.091614pt;}
.wse5{word-spacing:14.303892pt;}
.wsf8{word-spacing:14.410536pt;}
.ws1bc{word-spacing:14.676163pt;}
.ws143{word-spacing:14.685882pt;}
.ws145{word-spacing:14.721384pt;}
.ws37{word-spacing:14.888548pt;}
.ws97{word-spacing:14.888973pt;}
.ws19f{word-spacing:15.260712pt;}
.ws1b0{word-spacing:15.356463pt;}
.ws1c6{word-spacing:15.409281pt;}
.ws1f5{word-spacing:15.568742pt;}
.wsda{word-spacing:15.581099pt;}
.ws2a{word-spacing:15.632452pt;}
.ws1b9{word-spacing:15.632611pt;}
.ws144{word-spacing:15.761872pt;}
.ws1f4{word-spacing:15.781445pt;}
.ws4{word-spacing:16.354319pt;}
.ws154{word-spacing:16.535339pt;}
.ws13e{word-spacing:16.582657pt;}
.ws1da{word-spacing:17.172297pt;}
.ws1e5{word-spacing:17.216064pt;}
.ws48{word-spacing:18.395630pt;}
.ws1de{word-spacing:18.544464pt;}
.ws1dd{word-spacing:18.597547pt;}
.ws204{word-spacing:18.757008pt;}
.ws1fb{word-spacing:18.863280pt;}
.ws1ce{word-spacing:18.916416pt;}
.ws1fa{word-spacing:18.969286pt;}
.ws1c2{word-spacing:18.969552pt;}
.ws19c{word-spacing:19.245753pt;}
.ws1cb{word-spacing:19.554048pt;}
.ws1c9{word-spacing:19.607184pt;}
.ws1ec{word-spacing:19.713509pt;}
.ws1ea{word-spacing:19.736039pt;}
.ws203{word-spacing:19.872864pt;}
.ws1c0{word-spacing:19.926000pt;}
.ws1c1{word-spacing:20.138331pt;}
.ws1f1{word-spacing:20.191680pt;}
.ws50{word-spacing:20.626917pt;}
.ws1c4{word-spacing:20.723040pt;}
.ws1e6{word-spacing:21.041856pt;}
.ws1b1{word-spacing:21.466944pt;}
.ws1e3{word-spacing:21.626352pt;}
.ws1e0{word-spacing:21.679647pt;}
.ws205{word-spacing:21.732465pt;}
.ws1d1{word-spacing:21.743198pt;}
.ws1cf{word-spacing:22.008825pt;}
.ws1eb{word-spacing:22.317545pt;}
.ws1be{word-spacing:22.370256pt;}
.ws1d8{word-spacing:22.582587pt;}
.ws1cc{word-spacing:22.742208pt;}
.ws1c5{word-spacing:23.486112pt;}
.ws14{word-spacing:23.990454pt;}
.ws1e8{word-spacing:24.230016pt;}
.ws2{word-spacing:24.942682pt;}
.ws1bd{word-spacing:25.186251pt;}
.ws1b5{word-spacing:25.345872pt;}
.ws200{word-spacing:25.718090pt;}
.ws1f6{word-spacing:25.983663pt;}
.ws1d6{word-spacing:26.267931pt;}
.ws1b7{word-spacing:26.461728pt;}
.ws1fc{word-spacing:27.046224pt;}
.ws80{word-spacing:27.216419pt;}
.ws1b3{word-spacing:27.311904pt;}
.ws1bb{word-spacing:27.577265pt;}
.ws1ff{word-spacing:27.683856pt;}
.ws1fe{word-spacing:28.746576pt;}
.ws1af{word-spacing:28.799712pt;}
.ws1cd{word-spacing:29.065286pt;}
.ws1d5{word-spacing:29.873165pt;}
.ws1d4{word-spacing:30.138739pt;}
.ws1c3{word-spacing:30.978288pt;}
.ws1f0{word-spacing:31.828145pt;}
.ws1c8{word-spacing:32.041008pt;}
.ws1db{word-spacing:32.094144pt;}
.ws1b8{word-spacing:33.316272pt;}
.ws1dc{word-spacing:33.529294pt;}
.ws1ef{word-spacing:33.635088pt;}
.ws163{word-spacing:34.602163pt;}
.ws1d0{word-spacing:36.453131pt;}
.ws1ba{word-spacing:36.764172pt;}
.ws201{word-spacing:37.307826pt;}
.ws1f7{word-spacing:40.373169pt;}
.wse1{word-spacing:41.492639pt;}
.wsc4{word-spacing:41.495353pt;}
.ws1ae{word-spacing:44.049744pt;}
.ws18d{word-spacing:44.868038pt;}
.ws96{word-spacing:44.868251pt;}
.ws161{word-spacing:45.282287pt;}
.ws162{word-spacing:47.035987pt;}
.ws1d3{word-spacing:48.566410pt;}
.wsc6{word-spacing:51.001062pt;}
.ws1c{word-spacing:53.838944pt;}
.wse0{word-spacing:65.249621pt;}
.ws149{word-spacing:162.087205pt;}
.ws15b{word-spacing:307.296115pt;}
.ws9c{word-spacing:359.581939pt;}
.ws9e{word-spacing:361.919923pt;}
.ws9d{word-spacing:380.092435pt;}
.ws9b{word-spacing:385.512307pt;}
._5a{margin-left:-6.873391pt;}
._16{margin-left:-5.951179pt;}
._4{margin-left:-4.551203pt;}
._11{margin-left:-3.474174pt;}
._1{margin-left:-2.142106pt;}
._6{margin-left:-1.081106pt;}
._0{width:1.555625pt;}
._3f{width:3.203691pt;}
._49{width:5.100323pt;}
._48{width:6.374829pt;}
._13{width:11.548666pt;}
._b{width:12.715692pt;}
._35{width:14.133931pt;}
._17{width:15.640670pt;}
._1d{width:16.899234pt;}
._20{width:18.508845pt;}
._e{width:19.608725pt;}
._59{width:20.845978pt;}
._c{width:22.157712pt;}
._7{width:23.768405pt;}
._9{width:25.134251pt;}
._3{width:26.053519pt;}
._f{width:27.472056pt;}
._8{width:28.788013pt;}
._1b{width:30.197914pt;}
._10{width:32.041327pt;}
._58{width:33.195319pt;}
._15{width:34.750731pt;}
._d{width:36.308980pt;}
._47{width:37.408508pt;}
._a{width:38.434048pt;}
._1f{width:39.443578pt;}
._1e{width:41.181022pt;}
._14{width:42.190462pt;}
._5{width:43.836828pt;}
._56{width:44.809783pt;}
._2{width:46.442000pt;}
._57{width:49.348663pt;}
._40{width:50.283429pt;}
._5d{width:51.774692pt;}
._1a{width:52.729279pt;}
._31{width:54.187680pt;}
._60{width:55.314363pt;}
._1c{width:58.449600pt;}
._41{width:61.106400pt;}
._46{width:62.969952pt;}
._18{width:64.471113pt;}
._5f{width:66.102443pt;}
._12{width:70.135872pt;}
._23{width:75.293109pt;}
._2d{width:77.770880pt;}
._5b{width:80.447479pt;}
._55{width:86.983632pt;}
._45{width:88.843233pt;}
._3d{width:98.023441pt;}
._24{width:100.273976pt;}
._5e{width:103.569090pt;}
._5c{width:104.546806pt;}
._53{width:108.185162pt;}
._54{width:111.851280pt;}
._30{width:114.090697pt;}
._51{width:115.729995pt;}
._42{width:118.387008pt;}
._2e{width:120.436660pt;}
._44{width:151.348207pt;}
._32{width:171.068311pt;}
._2c{width:180.339676pt;}
._34{width:188.647451pt;}
._37{width:190.789558pt;}
._43{width:205.317504pt;}
._36{width:210.898521pt;}
._38{width:213.041077pt;}
._19{width:218.901827pt;}
._2f{width:237.299705pt;}
._27{width:245.779039pt;}
._50{width:251.137668pt;}
._3e{width:252.228259pt;}
._21{width:255.794312pt;}
._28{width:267.989427pt;}
._2a{width:271.864461pt;}
._2b{width:274.632153pt;}
._22{width:290.366992pt;}
._33{width:297.256766pt;}
._26{width:313.288327pt;}
._4e{width:316.478016pt;}
._29{width:318.465116pt;}
._25{width:324.764550pt;}
._4c{width:326.520720pt;}
._3a{width:342.245144pt;}
._3c{width:344.621471pt;}
._4f{width:350.571440pt;}
._39{width:352.875606pt;}
._3b{width:354.437300pt;}
._52{width:357.689310pt;}
._4d{width:369.879696pt;}
._4b{width:443.230819pt;}
._4a{width:451.812283pt;}
.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;}
.fsb{font-size:45.006192pt;}
.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;}
.y56{bottom:2.245333pt;}
.y2{bottom:4.102851pt;}
.y1{bottom:34.113704pt;}
.y55{bottom:37.226074pt;}
.y57{bottom:38.216555pt;}
.y194{bottom:71.810667pt;}
.y193{bottom:87.750667pt;}
.y3d{bottom:94.488000pt;}
.y192{bottom:103.690667pt;}
.y3c{bottom:110.428000pt;}
.y1b1{bottom:110.504000pt;}
.y191{bottom:119.632000pt;}
.y3b{bottom:126.368000pt;}
.y1b0{bottom:126.444000pt;}
.y190{bottom:135.572000pt;}
.y165{bottom:135.733333pt;}
.y3a{bottom:142.308000pt;}
.y1dd{bottom:142.309333pt;}
.y1af{bottom:142.384000pt;}
.y239{bottom:142.954667pt;}
.yef{bottom:144.558064pt;}
.y18f{bottom:151.512000pt;}
.y8c{bottom:151.841333pt;}
.yee{bottom:158.059244pt;}
.y54{bottom:158.248000pt;}
.y39{bottom:158.249333pt;}
.y1ae{bottom:158.325333pt;}
.y238{bottom:158.896000pt;}
.yeb{bottom:164.700800pt;}
.y18e{bottom:167.452000pt;}
.yed{bottom:171.561553pt;}
.y164{bottom:172.504000pt;}
.y38{bottom:174.189333pt;}
.y237{bottom:174.836000pt;}
.y8b{bottom:177.313333pt;}
.y117{bottom:182.849333pt;}
.y1ad{bottom:182.985333pt;}
.y18d{bottom:183.392000pt;}
.y139{bottom:183.521333pt;}
.yec{bottom:185.062733pt;}
.y163{bottom:188.444000pt;}
.y37{bottom:190.129333pt;}
.y236{bottom:191.422667pt;}
.yea{bottom:199.013388pt;}
.y18c{bottom:199.333333pt;}
.y162{bottom:204.385333pt;}
.y53{bottom:206.069333pt;}
.y235{bottom:207.362667pt;}
.y1ac{bottom:207.645333pt;}
.y36{bottom:209.200000pt;}
.ye9{bottom:212.514568pt;}
.y18b{bottom:215.273333pt;}
.yba{bottom:216.653333pt;}
.y8a{bottom:218.645333pt;}
.y116{bottom:219.037333pt;}
.y138{bottom:220.196000pt;}
.y161{bottom:220.325333pt;}
.y52{bottom:222.009333pt;}
.y234{bottom:223.302667pt;}
.y35{bottom:225.140000pt;}
.ye8{bottom:226.016877pt;}
.y18a{bottom:231.213333pt;}
.y89{bottom:234.585333pt;}
.y115{bottom:234.977333pt;}
.y137{bottom:236.136000pt;}
.y160{bottom:236.265333pt;}
.y51{bottom:237.949333pt;}
.y1dc{bottom:237.950667pt;}
.y233{bottom:239.244000pt;}
.ye7{bottom:239.518057pt;}
.y34{bottom:241.080000pt;}
.y189{bottom:247.153333pt;}
.y1cd{bottom:248.157333pt;}
.y88{bottom:250.525333pt;}
.y114{bottom:250.917333pt;}
.y136{bottom:252.076000pt;}
.y15f{bottom:252.205333pt;}
.ye6{bottom:253.019237pt;}
.y50{bottom:253.890667pt;}
.y1ab{bottom:254.953333pt;}
.y232{bottom:255.184000pt;}
.y33{bottom:257.020000pt;}
.yb9{bottom:258.325333pt;}
.y188{bottom:263.093333pt;}
.y87{bottom:266.465333pt;}
.ye5{bottom:266.520417pt;}
.y113{bottom:266.857333pt;}
.y135{bottom:268.016000pt;}
.y15e{bottom:268.145333pt;}
.y4f{bottom:269.830667pt;}
.y1aa{bottom:270.893333pt;}
.y231{bottom:271.124000pt;}
.y32{bottom:272.961333pt;}
.yb8{bottom:274.265333pt;}
.ye4{bottom:280.021597pt;}
.y187{bottom:280.582667pt;}
.y86{bottom:282.405333pt;}
.y112{bottom:282.797333pt;}
.y134{bottom:283.956000pt;}
.y15d{bottom:284.086667pt;}
.y4e{bottom:285.770667pt;}
.y230{bottom:287.064000pt;}
.y1cc{bottom:288.757333pt;}
.y31{bottom:288.901333pt;}
.yb7{bottom:290.205333pt;}
.ye3{bottom:293.522777pt;}
.y186{bottom:296.522667pt;}
.y85{bottom:298.346667pt;}
.y111{bottom:298.737333pt;}
.y133{bottom:299.897333pt;}
.y4d{bottom:301.710667pt;}
.y22f{bottom:303.650667pt;}
.y1cb{bottom:304.697333pt;}
.y30{bottom:304.841333pt;}
.yb6{bottom:306.145333pt;}
.ye2{bottom:307.025087pt;}
.y15c{bottom:309.392000pt;}
.y185{bottom:312.464000pt;}
.y84{bottom:314.798667pt;}
.y132{bottom:315.837333pt;}
.y4c{bottom:317.650667pt;}
.y22e{bottom:319.592000pt;}
.ye1{bottom:320.526267pt;}
.y1ca{bottom:320.637333pt;}
.y2f{bottom:320.781333pt;}
.yb5{bottom:322.085333pt;}
.y110{bottom:323.337333pt;}
.y184{bottom:328.404000pt;}
.y83{bottom:330.738667pt;}
.y131{bottom:331.777333pt;}
.y4b{bottom:333.590667pt;}
.ye0{bottom:334.027447pt;}
.y22d{bottom:335.532000pt;}
.y1c9{bottom:336.577333pt;}
.y2e{bottom:336.721333pt;}
.yb4{bottom:338.026667pt;}
.y1db{bottom:343.033333pt;}
.y183{bottom:344.344000pt;}
.y15b{bottom:346.162667pt;}
.y82{bottom:346.678667pt;}
.ydf{bottom:347.528627pt;}
.y130{bottom:347.717333pt;}
.y4a{bottom:349.532000pt;}
.y22c{bottom:351.472000pt;}
.y1c8{bottom:352.518667pt;}
.y2d{bottom:352.661333pt;}
.yb3{bottom:353.966667pt;}
.y182{bottom:360.284000pt;}
.yde{bottom:361.029807pt;}
.y15a{bottom:362.102667pt;}
.y10f{bottom:362.182667pt;}
.y81{bottom:362.618667pt;}
.y12f{bottom:363.657333pt;}
.y49{bottom:365.472000pt;}
.y22b{bottom:368.058667pt;}
.y1c7{bottom:368.458667pt;}
.yb2{bottom:369.906667pt;}
.y2c{bottom:371.732000pt;}
.ydd{bottom:374.532116pt;}
.y181{bottom:376.224000pt;}
.y159{bottom:378.042667pt;}
.y10e{bottom:378.122667pt;}
.y80{bottom:378.560000pt;}
.y202{bottom:381.412000pt;}
.y22a{bottom:383.998667pt;}
.y1c6{bottom:384.398667pt;}
.yb1{bottom:386.924000pt;}
.y2b{bottom:387.672000pt;}
.ydc{bottom:388.033296pt;}
.y12e{bottom:388.929333pt;}
.y48{bottom:391.380000pt;}
.y158{bottom:393.982667pt;}
.y10d{bottom:394.062667pt;}
.y1da{bottom:394.281333pt;}
.y7f{bottom:394.500000pt;}
.y201{bottom:397.352000pt;}
.y1c5{bottom:400.338667pt;}
.y229{bottom:400.586667pt;}
.ydb{bottom:401.534476pt;}
.yb0{bottom:402.864000pt;}
.y2a{bottom:403.613333pt;}
.y180{bottom:403.626667pt;}
.y25e{bottom:406.072000pt;}
.y157{bottom:409.922667pt;}
.y10c{bottom:410.002667pt;}
.y1d9{bottom:410.221333pt;}
.y7e{bottom:410.440000pt;}
.y200{bottom:413.292000pt;}
.yda{bottom:415.035656pt;}
.y1c4{bottom:416.278667pt;}
.y228{bottom:416.526667pt;}
.yaf{bottom:418.804000pt;}
.y29{bottom:419.553333pt;}
.y25d{bottom:422.013333pt;}
.y12d{bottom:425.605333pt;}
.y156{bottom:425.864000pt;}
.y10b{bottom:425.944000pt;}
.y7d{bottom:426.380000pt;}
.yd9{bottom:428.536836pt;}
.y1a9{bottom:428.704000pt;}
.y1ff{bottom:429.232000pt;}
.y1c3{bottom:432.220000pt;}
.y227{bottom:432.466667pt;}
.y47{bottom:433.957333pt;}
.y28{bottom:435.493333pt;}
.yae{bottom:435.821333pt;}
.y25c{bottom:437.953333pt;}
.y12c{bottom:441.545333pt;}
.y155{bottom:441.804000pt;}
.y10a{bottom:441.926667pt;}
.yd8{bottom:442.038016pt;}
.y7c{bottom:442.320000pt;}
.y1a8{bottom:444.644000pt;}
.y1fe{bottom:445.173333pt;}
.y17f{bottom:447.804000pt;}
.y1c2{bottom:448.160000pt;}
.y226{bottom:449.053333pt;}
.y46{bottom:449.897333pt;}
.y27{bottom:451.433333pt;}
.yad{bottom:451.761333pt;}
.y25b{bottom:453.893333pt;}
.yd7{bottom:455.540325pt;}
.y12b{bottom:457.485333pt;}
.y154{bottom:457.744000pt;}
.y109{bottom:457.868000pt;}
.y7b{bottom:458.261333pt;}
.y1fd{bottom:461.113333pt;}
.y17e{bottom:463.744000pt;}
.y1c1{bottom:464.100000pt;}
.y225{bottom:464.993333pt;}
.y45{bottom:465.837333pt;}
.y26{bottom:467.373333pt;}
.yac{bottom:467.702667pt;}
.yd6{bottom:469.041505pt;}
.y25a{bottom:470.572000pt;}
.y12a{bottom:473.425333pt;}
.y153{bottom:473.684000pt;}
.y108{bottom:473.808000pt;}
.y7a{bottom:474.201333pt;}
.y1fc{bottom:477.053333pt;}
.y17d{bottom:479.685333pt;}
.y1c0{bottom:480.914667pt;}
.y224{bottom:480.933333pt;}
.y44{bottom:481.777333pt;}
.yd5{bottom:482.542685pt;}
.y25{bottom:483.313333pt;}
.yab{bottom:483.642667pt;}
.y259{bottom:486.512000pt;}
.y152{bottom:489.624000pt;}
.y107{bottom:489.748000pt;}
.y79{bottom:490.653333pt;}
.y17c{bottom:495.625333pt;}
.yd4{bottom:496.043865pt;}
.y1bf{bottom:496.854667pt;}
.y223{bottom:496.874667pt;}
.y43{bottom:497.718667pt;}
.y129{bottom:498.697333pt;}
.y24{bottom:499.254667pt;}
.yaa{bottom:499.582667pt;}
.y1fb{bottom:501.888000pt;}
.y258{bottom:502.452000pt;}
.y106{bottom:505.688000pt;}
.y78{bottom:506.593333pt;}
.yd3{bottom:509.545045pt;}
.y17b{bottom:511.565333pt;}
.y1be{bottom:512.796000pt;}
.y222{bottom:512.814667pt;}
.y42{bottom:513.658667pt;}
.y151{bottom:514.930667pt;}
.y23{bottom:515.194667pt;}
.ya9{bottom:515.522667pt;}
.y257{bottom:518.392000pt;}
.y105{bottom:521.628000pt;}
.y77{bottom:522.533333pt;}
.yd2{bottom:523.046225pt;}
.y17a{bottom:527.505333pt;}
.y1bd{bottom:528.736000pt;}
.y221{bottom:529.401333pt;}
.y41{bottom:529.598667pt;}
.y22{bottom:531.134667pt;}
.ya8{bottom:531.462667pt;}
.y256{bottom:535.070667pt;}
.yd1{bottom:536.548535pt;}
.y128{bottom:536.802667pt;}
.y104{bottom:537.568000pt;}
.y76{bottom:538.474667pt;}
.y1fa{bottom:541.400000pt;}
.y179{bottom:543.445333pt;}
.y220{bottom:545.341333pt;}
.y40{bottom:545.538667pt;}
.y21{bottom:547.074667pt;}
.ya7{bottom:547.402667pt;}
.yd0{bottom:550.049715pt;}
.y255{bottom:551.010667pt;}
.y150{bottom:551.700000pt;}
.y127{bottom:552.742667pt;}
.y103{bottom:553.509333pt;}
.y75{bottom:554.414667pt;}
.y1bc{bottom:554.882667pt;}
.y1f9{bottom:557.340000pt;}
.y178{bottom:559.385333pt;}
.y21f{bottom:561.281333pt;}
.y3f{bottom:561.478667pt;}
.y20{bottom:563.014667pt;}
.ya6{bottom:563.344000pt;}
.ycf{bottom:563.550895pt;}
.y254{bottom:566.950667pt;}
.y14f{bottom:567.641333pt;}
.y126{bottom:568.682667pt;}
.y102{bottom:569.449333pt;}
.y74{bottom:570.354667pt;}
.y1f8{bottom:573.280000pt;}
.y1d8{bottom:574.330667pt;}
.y177{bottom:575.326667pt;}
.yce{bottom:577.052075pt;}
.y21e{bottom:577.222667pt;}
.y3e{bottom:577.418667pt;}
.ya5{bottom:579.284000pt;}
.y253{bottom:582.890667pt;}
.y14e{bottom:583.581333pt;}
.y125{bottom:584.622667pt;}
.y101{bottom:585.389333pt;}
.y73{bottom:586.294667pt;}
.y1f7{bottom:589.221333pt;}
.y1d7{bottom:590.270667pt;}
.ycd{bottom:590.553255pt;}
.y21d{bottom:593.162667pt;}
.y1f{bottom:593.360000pt;}
.ya4{bottom:595.224000pt;}
.y1bb{bottom:595.484000pt;}
.y252{bottom:598.830667pt;}
.y14d{bottom:599.521333pt;}
.y124{bottom:600.968000pt;}
.y100{bottom:601.373333pt;}
.y72{bottom:602.234667pt;}
.y1a7{bottom:602.358667pt;}
.ycc{bottom:604.054435pt;}
.y176{bottom:604.844000pt;}
.y1f6{bottom:605.161333pt;}
.y21c{bottom:609.749333pt;}
.ya3{bottom:611.164000pt;}
.y1ba{bottom:611.424000pt;}
.y175{bottom:613.956000pt;}
.y14c{bottom:615.461333pt;}
.y251{bottom:615.509333pt;}
.y123{bottom:616.908000pt;}
.yff{bottom:617.313333pt;}
.ycb{bottom:617.556744pt;}
.y71{bottom:618.174667pt;}
.y1a6{bottom:618.298667pt;}
.y1f5{bottom:621.101333pt;}
.y21b{bottom:625.689333pt;}
.ya2{bottom:627.104000pt;}
.y1b9{bottom:627.364000pt;}
.yca{bottom:631.057924pt;}
.y14b{bottom:631.401333pt;}
.y250{bottom:631.449333pt;}
.y122{bottom:632.848000pt;}
.yfe{bottom:633.253333pt;}
.y70{bottom:634.116000pt;}
.y1f4{bottom:637.041333pt;}
.y174{bottom:638.586667pt;}
.y21a{bottom:641.629333pt;}
.ya1{bottom:643.045333pt;}
.y1b8{bottom:643.304000pt;}
.yc9{bottom:644.559104pt;}
.y14a{bottom:647.341333pt;}
.y24f{bottom:647.389333pt;}
.y173{bottom:647.698667pt;}
.y121{bottom:648.788000pt;}
.yfd{bottom:649.193333pt;}
.y6f{bottom:650.056000pt;}
.y1f3{bottom:652.981333pt;}
.y219{bottom:657.570667pt;}
.yc8{bottom:658.060284pt;}
.y1b7{bottom:659.244000pt;}
.y149{bottom:663.282667pt;}
.y24e{bottom:663.330667pt;}
.y1b{bottom:664.364000pt;}
.y120{bottom:664.729333pt;}
.yfc{bottom:665.133333pt;}
.y6e{bottom:665.996000pt;}
.y1f2{bottom:668.921333pt;}
.ya0{bottom:669.568000pt;}
.yc7{bottom:671.561464pt;}
.y172{bottom:672.182667pt;}
.y218{bottom:674.157333pt;}
.y1e{bottom:674.990667pt;}
.y1b6{bottom:675.184000pt;}
.y148{bottom:679.222667pt;}
.y24d{bottom:679.270667pt;}
.y1a{bottom:680.304000pt;}
.y11f{bottom:680.669333pt;}
.yfb{bottom:681.073333pt;}
.y171{bottom:681.294667pt;}
.y6d{bottom:681.936000pt;}
.y1f1{bottom:684.862667pt;}
.yc6{bottom:685.063773pt;}
.y1d{bottom:685.617333pt;}
.y217{bottom:690.097333pt;}
.y1b5{bottom:691.125333pt;}
.y147{bottom:695.162667pt;}
.y24c{bottom:695.210667pt;}
.y1c{bottom:696.244000pt;}
.y11e{bottom:696.609333pt;}
.yfa{bottom:697.014667pt;}
.y6c{bottom:697.876000pt;}
.yc5{bottom:698.564953pt;}
.y1f0{bottom:700.972000pt;}
.y216{bottom:706.037333pt;}
.y1b4{bottom:707.065333pt;}
.y146{bottom:711.102667pt;}
.y9f{bottom:711.240000pt;}
.y24b{bottom:711.889333pt;}
.yc4{bottom:712.066133pt;}
.y19{bottom:712.184000pt;}
.y11d{bottom:712.549333pt;}
.yf9{bottom:712.954667pt;}
.y6b{bottom:713.816000pt;}
.y1ef{bottom:716.912000pt;}
.y170{bottom:717.068000pt;}
.y215{bottom:721.977333pt;}
.y1b3{bottom:723.005333pt;}
.yc3{bottom:725.567313pt;}
.y145{bottom:727.042667pt;}
.y9e{bottom:727.181333pt;}
.y24a{bottom:727.829333pt;}
.y18{bottom:728.124000pt;}
.y11c{bottom:728.489333pt;}
.yf8{bottom:728.894667pt;}
.y6a{bottom:729.757333pt;}
.y1ee{bottom:732.852000pt;}
.y16f{bottom:733.009333pt;}
.y214{bottom:737.917333pt;}
.y1b2{bottom:738.945333pt;}
.yc2{bottom:739.068493pt;}
.y144{bottom:742.984000pt;}
.y9d{bottom:743.121333pt;}
.y249{bottom:743.769333pt;}
.y17{bottom:744.065333pt;}
.y11b{bottom:744.429333pt;}
.yf7{bottom:744.834667pt;}
.y69{bottom:745.697333pt;}
.y1ed{bottom:748.792000pt;}
.y16e{bottom:748.949333pt;}
.yc1{bottom:752.569673pt;}
.y213{bottom:753.858667pt;}
.y1d6{bottom:754.380000pt;}
.y9c{bottom:759.061333pt;}
.y16{bottom:760.005333pt;}
.y11a{bottom:760.370667pt;}
.y248{bottom:760.448000pt;}
.yf6{bottom:760.774667pt;}
.y68{bottom:761.637333pt;}
.y1ec{bottom:764.732000pt;}
.y16d{bottom:764.889333pt;}
.yc0{bottom:766.071983pt;}
.y1d5{bottom:770.321333pt;}
.y212{bottom:770.445333pt;}
.y9b{bottom:775.001333pt;}
.y15{bottom:775.945333pt;}
.y119{bottom:776.310667pt;}
.y247{bottom:776.388000pt;}
.y1a5{bottom:776.550667pt;}
.yf5{bottom:776.716000pt;}
.y67{bottom:777.577333pt;}
.ybf{bottom:779.598267pt;}
.y1eb{bottom:780.673333pt;}
.y16c{bottom:780.829333pt;}
.y211{bottom:786.385333pt;}
.y143{bottom:788.993333pt;}
.y9a{bottom:790.941333pt;}
.y14{bottom:791.885333pt;}
.y118{bottom:792.250667pt;}
.y246{bottom:792.328000pt;}
.y1a4{bottom:792.490667pt;}
.yf4{bottom:792.656000pt;}
.y66{bottom:793.517333pt;}
.ybe{bottom:793.549467pt;}
.y1ea{bottom:796.613333pt;}
.y16b{bottom:796.769333pt;}
.y1a1{bottom:800.328000pt;}
.y210{bottom:802.325333pt;}
.y142{bottom:804.933333pt;}
.y99{bottom:806.881333pt;}
.y13{bottom:807.825333pt;}
.y245{bottom:808.268000pt;}
.y1a3{bottom:808.430667pt;}
.yf3{bottom:808.596000pt;}
.y65{bottom:809.457333pt;}
.ybd{bottom:811.348000pt;}
.y1e9{bottom:812.553333pt;}
.y20f{bottom:818.265333pt;}
.y141{bottom:820.873333pt;}
.y98{bottom:822.822667pt;}
.y12{bottom:823.765333pt;}
.y244{bottom:824.208000pt;}
.y1a2{bottom:824.370667pt;}
.yf2{bottom:824.536000pt;}
.y64{bottom:825.398667pt;}
.y16a{bottom:827.025333pt;}
.y1e8{bottom:828.493333pt;}
.y20e{bottom:834.853333pt;}
.ybc{bottom:835.726667pt;}
.y169{bottom:836.137333pt;}
.y140{bottom:836.813333pt;}
.y97{bottom:838.762667pt;}
.y11{bottom:839.706667pt;}
.y243{bottom:840.148000pt;}
.yf1{bottom:840.476000pt;}
.y1a0{bottom:840.842667pt;}
.y63{bottom:841.338667pt;}
.y20d{bottom:850.793333pt;}
.y13f{bottom:853.285333pt;}
.y1e7{bottom:853.328000pt;}
.y96{bottom:854.702667pt;}
.y10{bottom:855.646667pt;}
.y19f{bottom:856.782667pt;}
.y242{bottom:856.826667pt;}
.y62{bottom:857.278667pt;}
.y20c{bottom:866.733333pt;}
.y13e{bottom:869.225333pt;}
.y95{bottom:870.642667pt;}
.yf{bottom:871.586667pt;}
.y19e{bottom:872.722667pt;}
.y241{bottom:872.766667pt;}
.y168{bottom:872.797333pt;}
.y61{bottom:873.730667pt;}
.y20b{bottom:882.673333pt;}
.y94{bottom:886.582667pt;}
.yf0{bottom:886.894667pt;}
.ye{bottom:887.526667pt;}
.y19d{bottom:888.664000pt;}
.y240{bottom:888.706667pt;}
.y167{bottom:888.737333pt;}
.y13d{bottom:888.810667pt;}
.y60{bottom:889.670667pt;}
.y1e6{bottom:890.184000pt;}
.y20a{bottom:898.613333pt;}
.yd{bottom:903.466667pt;}
.y19c{bottom:904.604000pt;}
.y23f{bottom:904.648000pt;}
.y166{bottom:904.677333pt;}
.y13c{bottom:904.750667pt;}
.y5f{bottom:905.612000pt;}
.y1e5{bottom:906.124000pt;}
.y209{bottom:915.201333pt;}
.yc{bottom:919.406667pt;}
.y19b{bottom:920.544000pt;}
.y23e{bottom:920.588000pt;}
.y5e{bottom:921.552000pt;}
.y1d4{bottom:921.600000pt;}
.y1e4{bottom:922.064000pt;}
.y208{bottom:931.141333pt;}
.y93{bottom:933.901333pt;}
.yb{bottom:935.348000pt;}
.y19a{bottom:936.484000pt;}
.y23d{bottom:937.265333pt;}
.y5d{bottom:937.492000pt;}
.y1d3{bottom:937.540000pt;}
.y1e3{bottom:938.004000pt;}
.y207{bottom:947.081333pt;}
.y92{bottom:949.841333pt;}
.y199{bottom:952.424000pt;}
.y23c{bottom:953.206667pt;}
.y5c{bottom:953.432000pt;}
.y1d2{bottom:953.481333pt;}
.y1e2{bottom:953.944000pt;}
.y206{bottom:963.021333pt;}
.y9{bottom:963.906667pt;}
.y91{bottom:965.781333pt;}
.ya{bottom:967.657333pt;}
.y198{bottom:968.364000pt;}
.y23b{bottom:969.146667pt;}
.y5b{bottom:969.372000pt;}
.y1d1{bottom:969.421333pt;}
.y1e1{bottom:969.884000pt;}
.y205{bottom:978.961333pt;}
.y8{bottom:980.512000pt;}
.y90{bottom:981.721333pt;}
.y197{bottom:984.305333pt;}
.y23a{bottom:985.086667pt;}
.y5a{bottom:985.313333pt;}
.y1d0{bottom:985.361333pt;}
.y1e0{bottom:985.825333pt;}
.y204{bottom:994.902667pt;}
.y13b{bottom:997.662667pt;}
.y8f{bottom:998.193333pt;}
.y6{bottom:999.108000pt;}
.y196{bottom:1000.245333pt;}
.y59{bottom:1001.253333pt;}
.y1cf{bottom:1001.301333pt;}
.y1df{bottom:1001.765333pt;}
.y7{bottom:1004.893333pt;}
.y203{bottom:1010.842667pt;}
.y8e{bottom:1014.133333pt;}
.y195{bottom:1016.716000pt;}
.y58{bottom:1017.193333pt;}
.y1ce{bottom:1017.241333pt;}
.y1de{bottom:1017.705333pt;}
.y5{bottom:1033.645333pt;}
.y8d{bottom:1033.718667pt;}
.y13a{bottom:1033.720000pt;}
.ybb{bottom:1036.345278pt;}
.y4{bottom:1036.447325pt;}
.y3{bottom:1048.695785pt;}
.he{height:11.733399pt;}
.hc{height:26.631381pt;}
.ha{height:30.288533pt;}
.h9{height:30.392267pt;}
.h12{height:30.549524pt;}
.h4{height:32.000200pt;}
.h8{height:33.712160pt;}
.h13{height:33.754644pt;}
.h14{height:37.195200pt;}
.h11{height:38.037520pt;}
.hb{height:38.045376pt;}
.h3{height:39.843636pt;}
.hd{height:39.852000pt;}
.h7{height:40.381333pt;}
.h19{height:42.472043pt;}
.hf{height:44.354167pt;}
.h6{height:45.652160pt;}
.h18{height:51.474709pt;}
.h5{height:54.706080pt;}
.h17{height:73.407547pt;}
.h15{height:75.798667pt;}
.h16{height:76.300000pt;}
.h2{height:1062.715892pt;}
.h10{height:1122.515645pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:17.797333pt;}
.w2{width:647.107592pt;}
.w4{width:793.697931pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.876529pt;}
.x12{left:72.000000pt;}
.x1{left:73.215800pt;}
.x4{left:75.590667pt;}
.x24{left:82.232000pt;}
.x19{left:83.561333pt;}
.xb{left:88.874667pt;}
.x25{left:102.896000pt;}
.x2{left:111.874558pt;}
.x15{left:118.214000pt;}
.x1a{left:139.490667pt;}
.x7{left:167.266667pt;}
.xe{left:185.090357pt;}
.x13{left:193.704000pt;}
.x18{left:206.213333pt;}
.x23{left:213.318667pt;}
.x14{left:218.021333pt;}
.x17{left:248.093333pt;}
.x22{left:283.405333pt;}
.x5{left:298.090667pt;}
.x6{left:309.381333pt;}
.x16{left:323.324439pt;}
.xc{left:403.492000pt;}
.xf{left:409.941333pt;}
.x11{left:416.776000pt;}
.x26{left:430.797333pt;}
.x28{left:446.766667pt;}
.x1b{left:452.221333pt;}
.x1d{left:459.141333pt;}
.x20{left:463.237333pt;}
.x10{left:467.392000pt;}
.x1f{left:480.145333pt;}
.x1c{left:523.770667pt;}
.x1e{left:533.217333pt;}
.x21{left:556.094667pt;}
.x9{left:591.050667pt;}
.x8{left:601.585333pt;}
.xa{left:603.881333pt;}
.x27{left:616.408000pt;}
.xd{left:703.903971pt;}
}




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