
    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_bc61d91788e2c5cc523046bd.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_72d822393cac199afee0cf5c.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_26c431a300b48784acd20e5b.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_1db76cb6d1fce298f8aad9a8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bfb7ab285c2c4e783926c377.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dbe784a8d72cc29214f746b4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f2ba04089cceef4c95f8f66a.woff2')format("woff");}.ffc{font-family:ffc;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;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f693c5bba88c9ec11c05f495.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4e8e4b88663a74ab4507e4d5.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_377bf389cf920209cc9720a6.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_d19720e3c2098a59ca4dc7bf.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_7ab048d501475260c582f8a3.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_909b5f6a99f719fadf7adde6.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_5bf4291f562fb01868866d74.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_48884eb657e19c328051fe88.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_9cd0b92fd2488f0b1eb5e74c.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_0415dee430944acb0d9ade0f.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.921000;font-style:normal;font-weight: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_9bde27fb1d9cb728ffcca886.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_d21c931a1f1881197da20612.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_5f41a73a597d3cad750da62a.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.704000;font-style:normal;font-weight: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_505e46ac909c9547fe0ca81c.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_8dc926e1363205f1e26ac8ba.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.907715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_909b5f6a99f719fadf7adde6.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_5bf4291f562fb01868866d74.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.819000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.907715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_48884eb657e19c328051fe88.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_9cd0b92fd2488f0b1eb5e74c.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.716000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_cf379769edbba1eac185122e.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_32c355806f20707f34e60add.woff2')format("woff");}.ff36{font-family:ff36;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;}
@font-face{font-family:ff37;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.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_745033452a59f1608561cf7c.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_909b5f6a99f719fadf7adde6.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_5bf4291f562fb01868866d74.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_3b3b5030937ac6d83f64e302.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_ad41b9abb811fd8a6f7c861f.woff2')format("woff");}.ff42{font-family:ff42;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:4.980000px;}
.v7{vertical-align:8.970000px;}
.v9{vertical-align:15.108000px;}
.v6{vertical-align:17.934000px;}
.v1{vertical-align:26.028000px;}
.v5{vertical-align:30.054000px;}
.v4{vertical-align:44.832000px;}
.lsd{letter-spacing:-0.338030px;}
.lsb{letter-spacing:-0.089291px;}
.lsc{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.002663px;}
.ls1f{letter-spacing:0.004993px;}
.lse{letter-spacing:0.038268px;}
.ls5{letter-spacing:0.094215px;}
.ls4{letter-spacing:0.094827px;}
.ls23{letter-spacing:0.102896px;}
.ls1{letter-spacing:0.242361px;}
.ls0{letter-spacing:0.612281px;}
.ls2{letter-spacing:0.666417px;}
.ls3{letter-spacing:0.694290px;}
.ls20{letter-spacing:1.006139px;}
.ls1c{letter-spacing:2.983842px;}
.ls6{letter-spacing:2.985234px;}
.ls7{letter-spacing:2.987332px;}
.ls1d{letter-spacing:5.919944px;}
.ls1e{letter-spacing:14.055000px;}
.ls17{letter-spacing:16.137283px;}
.ls1b{letter-spacing:16.600672px;}
.ls18{letter-spacing:17.243992px;}
.lsa{letter-spacing:17.407672px;}
.ls8{letter-spacing:17.436829px;}
.ls9{letter-spacing:17.467672px;}
.ls25{letter-spacing:19.237257px;}
.ls24{letter-spacing:19.915672px;}
.ls22{letter-spacing:20.602139px;}
.ls10{letter-spacing:20.713742px;}
.ls1a{letter-spacing:20.882663px;}
.ls16{letter-spacing:20.968388px;}
.ls26{letter-spacing:21.744169px;}
.ls13{letter-spacing:22.063672px;}
.ls11{letter-spacing:22.093008px;}
.ls12{letter-spacing:22.123672px;}
.ls15{letter-spacing:22.663672px;}
.ls14{letter-spacing:22.677343px;}
.lsf{letter-spacing:25.564021px;}
.ls19{letter-spacing:41.392500px;}
.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;}
.ws23e{word-spacing:-19.093093px;}
.ws8{word-spacing:-18.334188px;}
.ws7b{word-spacing:-16.606328px;}
.ws17c{word-spacing:-15.306053px;}
.ws15b{word-spacing:-15.279257px;}
.ws1b9{word-spacing:-14.743098px;}
.ws129{word-spacing:-14.060578px;}
.ws10{word-spacing:-12.122370px;}
.ws101{word-spacing:-3.276133px;}
.ws136{word-spacing:-3.275834px;}
.ws81{word-spacing:-3.275536px;}
.ws233{word-spacing:-2.917346px;}
.ws2c1{word-spacing:-2.797610px;}
.ws109{word-spacing:-2.797312px;}
.ws135{word-spacing:-2.737952px;}
.wsad{word-spacing:-2.617978px;}
.ws153{word-spacing:-2.558498px;}
.ws150{word-spacing:-2.555593px;}
.ws163{word-spacing:-2.498541px;}
.wsac{word-spacing:-2.438524px;}
.ws1d4{word-spacing:-2.319147px;}
.ws1af{word-spacing:-2.199771px;}
.ws159{word-spacing:-2.080334px;}
.ws82{word-spacing:-1.960898px;}
.ws15e{word-spacing:-1.960718px;}
.ws190{word-spacing:-1.781504px;}
.ws118{word-spacing:-1.662127px;}
.wsa3{word-spacing:-1.602110px;}
.ws27b{word-spacing:-1.577900px;}
.ws247{word-spacing:-1.518481px;}
.wsdb{word-spacing:-1.482734px;}
.wsda{word-spacing:-1.482494px;}
.ws1e5{word-spacing:-1.458464px;}
.wsae{word-spacing:-1.422716px;}
.ws179{word-spacing:-1.303340px;}
.ws146{word-spacing:-1.243323px;}
.ws263{word-spacing:-1.183903px;}
.ws251{word-spacing:-1.183604px;}
.ws57{word-spacing:-1.167161px;}
.ws2c7{word-spacing:-1.123946px;}
.ws1a9{word-spacing:-1.123886px;}
.ws1da{word-spacing:-1.063929px;}
.ws52{word-spacing:-1.020469px;}
.ws7d{word-spacing:-1.004510px;}
.ws198{word-spacing:-1.003912px;}
.ws56{word-spacing:-1.001335px;}
.ws6a{word-spacing:-0.944552px;}
.ws134{word-spacing:-0.944492px;}
.wsf4{word-spacing:-0.884535px;}
.wsbd{word-spacing:-0.884475px;}
.ws62{word-spacing:-0.645662px;}
.ws50{word-spacing:-0.612281px;}
.ws1dc{word-spacing:-0.586303px;}
.ws1a5{word-spacing:-0.585705px;}
.ws274{word-spacing:-0.562093px;}
.ws19a{word-spacing:-0.525748px;}
.ws6c{word-spacing:-0.525688px;}
.ws53{word-spacing:-0.503856px;}
.wsee{word-spacing:-0.466328px;}
.ws1ac{word-spacing:-0.466268px;}
.wsed{word-spacing:-0.465730px;}
.ws58{word-spacing:-0.465589px;}
.ws166{word-spacing:-0.286934px;}
.ws6b{word-spacing:-0.286875px;}
.wsf2{word-spacing:-0.227515px;}
.ws24e{word-spacing:-0.227156px;}
.ws2cf{word-spacing:-0.203126px;}
.wse6{word-spacing:-0.167498px;}
.ws2bd{word-spacing:-0.108079px;}
.wse3{word-spacing:-0.107541px;}
.ws151{word-spacing:-0.059778px;}
.wsf{word-spacing:-0.053796px;}
.ws1b4{word-spacing:-0.053071px;}
.ws4f{word-spacing:0.000000px;}
.wsd1{word-spacing:0.011956px;}
.ws55{word-spacing:0.044646px;}
.ws1de{word-spacing:0.071853px;}
.ws71{word-spacing:0.071913px;}
.ws185{word-spacing:0.120994px;}
.ws12{word-spacing:0.125594px;}
.ws196{word-spacing:0.131272px;}
.wsbe{word-spacing:0.131332px;}
.ws2c5{word-spacing:0.155423px;}
.ws1ed{word-spacing:0.191290px;}
.ws1a0{word-spacing:0.251247px;}
.ws51{word-spacing:0.293385px;}
.ws234{word-spacing:0.382519px;}
.ws2ad{word-spacing:0.391058px;}
.ws164{word-spacing:0.405022px;}
.ws191{word-spacing:0.430103px;}
.ws1e8{word-spacing:0.430402px;}
.ws266{word-spacing:0.430700px;}
.ws2bc{word-spacing:0.490180px;}
.ws17d{word-spacing:0.507006px;}
.ws24d{word-spacing:0.514091px;}
.ws25e{word-spacing:0.514330px;}
.ws17b{word-spacing:0.517884px;}
.ws10b{word-spacing:0.550077px;}
.ws10c{word-spacing:0.609496px;}
.wsb2{word-spacing:0.609556px;}
.wse9{word-spacing:0.610094px;}
.ws15{word-spacing:0.663237px;}
.wsf1{word-spacing:0.669454px;}
.ws140{word-spacing:0.669514px;}
.ws2b1{word-spacing:0.693126px;}
.ws54{word-spacing:0.714328px;}
.ws83{word-spacing:0.729590px;}
.ws237{word-spacing:0.788950px;}
.ws44{word-spacing:0.848848px;}
.ws212{word-spacing:0.848967px;}
.ws69{word-spacing:0.908267px;}
.wsaf{word-spacing:0.908386px;}
.ws18d{word-spacing:0.908626px;}
.ws21d{word-spacing:0.968404px;}
.ws10e{word-spacing:1.028301px;}
.ws279{word-spacing:1.087661px;}
.wsd0{word-spacing:1.088258px;}
.wsb4{word-spacing:1.147678px;}
.ws21b{word-spacing:1.147738px;}
.ws162{word-spacing:1.207097px;}
.ws161{word-spacing:1.207575px;}
.ws137{word-spacing:1.207814px;}
.wsb8{word-spacing:1.267054px;}
.ws17{word-spacing:1.380812px;}
.ws2cb{word-spacing:1.386491px;}
.ws2cc{word-spacing:1.386610px;}
.ws100{word-spacing:1.387089px;}
.ws211{word-spacing:1.410940px;}
.ws130{word-spacing:1.446448px;}
.ws2ca{word-spacing:1.470718px;}
.ws13a{word-spacing:1.505868px;}
.wsdc{word-spacing:1.506465px;}
.ws2d7{word-spacing:1.506585px;}
.ws12f{word-spacing:1.566184px;}
.ws23b{word-spacing:1.625902px;}
.ws235{word-spacing:1.637738px;}
.ws2a1{word-spacing:1.649873px;}
.ws1a3{word-spacing:1.685859px;}
.ws23a{word-spacing:1.709711px;}
.ws5e{word-spacing:1.745398px;}
.ws1d8{word-spacing:1.745518px;}
.ws75{word-spacing:1.865432px;}
.ws76{word-spacing:1.924672px;}
.ws245{word-spacing:1.924792px;}
.ws252{word-spacing:1.936807px;}
.ws19c{word-spacing:1.984630px;}
.ws156{word-spacing:1.984689px;}
.ws2d6{word-spacing:1.984809px;}
.ws264{word-spacing:1.996645px;}
.ws8d{word-spacing:2.044049px;}
.ws2a3{word-spacing:2.044408px;}
.ws4c{word-spacing:2.044706px;}
.ws79{word-spacing:2.104066px;}
.wscf{word-spacing:2.164083px;}
.wsa4{word-spacing:2.164203px;}
.ws2a6{word-spacing:2.175919px;}
.ws145{word-spacing:2.223502px;}
.ws19b{word-spacing:2.283460px;}
.ws70{word-spacing:2.343058px;}
.ws1fc{word-spacing:2.343477px;}
.wsbf{word-spacing:2.402896px;}
.ws250{word-spacing:2.427106px;}
.wsd9{word-spacing:2.462854px;}
.ws15a{word-spacing:2.463033px;}
.ws23{word-spacing:2.516714px;}
.ws7f{word-spacing:2.581812px;}
.ws138{word-spacing:2.582290px;}
.ws80{word-spacing:2.582469px;}
.ws27c{word-spacing:2.582888px;}
.wsc1{word-spacing:2.642247px;}
.ws21e{word-spacing:2.701667px;}
.ws91{word-spacing:2.761684px;}
.ws265{word-spacing:2.773520px;}
.ws165{word-spacing:2.773699px;}
.ws12c{word-spacing:2.793490px;}
.ws12b{word-spacing:2.793996px;}
.ws104{word-spacing:2.821103px;}
.ws1a4{word-spacing:2.821701px;}
.ws24f{word-spacing:2.833477px;}
.ws12d{word-spacing:2.844306px;}
.ws12e{word-spacing:2.844812px;}
.ws243{word-spacing:2.845612px;}
.ws12a{word-spacing:2.847605px;}
.ws177{word-spacing:2.881060px;}
.ws1e1{word-spacing:2.905211px;}
.ws1cf{word-spacing:2.929090px;}
.ws1be{word-spacing:2.929620px;}
.ws123{word-spacing:2.941078px;}
.ws2be{word-spacing:2.953033px;}
.ws64{word-spacing:3.000497px;}
.wsd8{word-spacing:3.000856px;}
.wse4{word-spacing:3.060454px;}
.ws6e{word-spacing:3.060634px;}
.ws1d6{word-spacing:3.120053px;}
.ws188{word-spacing:3.120412px;}
.ws6f{word-spacing:3.120651px;}
.ws297{word-spacing:3.144084px;}
.ws296{word-spacing:3.144383px;}
.ws23c{word-spacing:3.180070px;}
.ws24a{word-spacing:3.180190px;}
.ws132{word-spacing:3.239489px;}
.ws201{word-spacing:3.239968px;}
.ws259{word-spacing:3.258947px;}
.ws108{word-spacing:3.299267px;}
.ws8f{word-spacing:3.299447px;}
.ws3d{word-spacing:3.299746px;}
.ws4e{word-spacing:3.299865px;}
.wsbc{word-spacing:3.300044px;}
.ws16b{word-spacing:3.311358px;}
.ws110{word-spacing:3.359284px;}
.ws157{word-spacing:3.359524px;}
.ws4d{word-spacing:3.419302px;}
.ws2ae{word-spacing:3.431138px;}
.ws1e9{word-spacing:3.431257px;}
.ws2bb{word-spacing:3.442914px;}
.ws8a{word-spacing:3.478661px;}
.wsbb{word-spacing:3.478900px;}
.wsba{word-spacing:3.538678px;}
.ws42{word-spacing:3.538858px;}
.ws21a{word-spacing:3.550574px;}
.ws285{word-spacing:3.598695px;}
.ws86{word-spacing:3.598875px;}
.ws94{word-spacing:3.599293px;}
.ws1c1{word-spacing:3.619436px;}
.ws292{word-spacing:3.658055px;}
.ws97{word-spacing:3.658294px;}
.ws96{word-spacing:3.658892px;}
.ws93{word-spacing:3.718072px;}
.ws199{word-spacing:3.718192px;}
.ws77{word-spacing:3.718311px;}
.ws16c{word-spacing:3.718670px;}
.ws1c0{word-spacing:3.725472px;}
.ws1ee{word-spacing:3.789925px;}
.wsf5{word-spacing:3.837449px;}
.wsfe{word-spacing:3.897466px;}
.ws27e{word-spacing:3.921138px;}
.ws1a{word-spacing:3.951266px;}
.ws1fa{word-spacing:3.956885px;}
.ws1e4{word-spacing:3.968721px;}
.wsa7{word-spacing:4.016902px;}
.wsa6{word-spacing:4.017082px;}
.ws27a{word-spacing:4.029336px;}
.ws84{word-spacing:4.076501px;}
.wsb5{word-spacing:4.076860px;}
.ws171{word-spacing:4.112761px;}
.ws78{word-spacing:4.136518px;}
.ws173{word-spacing:4.136638px;}
.ws85{word-spacing:4.137116px;}
.ws19{word-spacing:4.190617px;}
.ws106{word-spacing:4.196296px;}
.ws73{word-spacing:4.196475px;}
.ws2b{word-spacing:4.205155px;}
.wsdf{word-spacing:4.256194px;}
.ws1dd{word-spacing:4.256253px;}
.ws72{word-spacing:4.256492px;}
.ws49{word-spacing:4.315673px;}
.ws99{word-spacing:4.315912px;}
.ws30{word-spacing:4.315972px;}
.ws18{word-spacing:4.369413px;}
.ws269{word-spacing:4.375690px;}
.ws2e2{word-spacing:4.399661px;}
.wscd{word-spacing:4.435288px;}
.ws1e2{word-spacing:4.435707px;}
.ws272{word-spacing:4.447543px;}
.ws2d8{word-spacing:4.447722px;}
.ws29a{word-spacing:4.459678px;}
.wsa8{word-spacing:4.495066px;}
.ws117{word-spacing:4.495664px;}
.ws1ae{word-spacing:4.555084px;}
.ws17a{word-spacing:4.555323px;}
.wseb{word-spacing:4.614503px;}
.ws1e3{word-spacing:4.614862px;}
.ws11a{word-spacing:4.615101px;}
.ws257{word-spacing:4.638773px;}
.ws167{word-spacing:4.674460px;}
.wsb7{word-spacing:4.734716px;}
.ws15d{word-spacing:4.756111px;}
.ws16d{word-spacing:4.793897px;}
.ws200{word-spacing:4.794196px;}
.ws11{word-spacing:4.805432px;}
.ws246{word-spacing:4.805733px;}
.ws1ef{word-spacing:4.925169px;}
.ws59{word-spacing:4.973290px;}
.ws1fb{word-spacing:4.985485px;}
.ws1a2{word-spacing:5.033308px;}
.wsc6{word-spacing:5.092667px;}
.ws3b{word-spacing:5.092966px;}
.ws11e{word-spacing:5.093265px;}
.ws26d{word-spacing:5.116937px;}
.ws29b{word-spacing:5.152684px;}
.ws6d{word-spacing:5.152923px;}
.ws192{word-spacing:5.153282px;}
.ws68{word-spacing:5.212104px;}
.wsc4{word-spacing:5.212701px;}
.ws67{word-spacing:5.272061px;}
.ws226{word-spacing:5.272420px;}
.wsf3{word-spacing:5.332078px;}
.ws2a2{word-spacing:5.362499px;}
.ws20{word-spacing:5.385818px;}
.ws7c{word-spacing:5.391497px;}
.ws13c{word-spacing:5.392095px;}
.wsab{word-spacing:5.451754px;}
.ws92{word-spacing:5.511173px;}
.wsff{word-spacing:5.511472px;}
.ws21f{word-spacing:5.523547px;}
.ws8c{word-spacing:5.570891px;}
.ws2c0{word-spacing:5.572087px;}
.ws26{word-spacing:5.624632px;}
.ws29{word-spacing:5.624811px;}
.ws74{word-spacing:5.630848px;}
.ws9f{word-spacing:5.631147px;}
.ws268{word-spacing:5.655118px;}
.ws1f{word-spacing:5.684649px;}
.ws1a8{word-spacing:5.690268px;}
.wsa5{word-spacing:5.690866px;}
.ws1bf{word-spacing:5.742697px;}
.ws13{word-spacing:5.744666px;}
.wsb1{word-spacing:5.750883px;}
.ws21{word-spacing:5.804025px;}
.ws1d5{word-spacing:5.810422px;}
.wsb3{word-spacing:5.810541px;}
.ws36{word-spacing:5.810900px;}
.ws8e{word-spacing:5.869662px;}
.wsd2{word-spacing:5.869960px;}
.ws1a7{word-spacing:5.870259px;}
.ws2aa{word-spacing:5.882155px;}
.ws20f{word-spacing:5.882753px;}
.ws220{word-spacing:5.893931px;}
.ws2bf{word-spacing:5.894290px;}
.ws23d{word-spacing:5.941575px;}
.ws287{word-spacing:5.953889px;}
.ws158{word-spacing:5.989995px;}
.ws202{word-spacing:6.001711px;}
.ws22{word-spacing:6.043436px;}
.ws205{word-spacing:6.049534px;}
.ws98{word-spacing:6.049653px;}
.ws227{word-spacing:6.060951px;}
.ws25a{word-spacing:6.061489px;}
.ws295{word-spacing:6.061549px;}
.wscb{word-spacing:6.109072px;}
.ws133{word-spacing:6.109312px;}
.ws126{word-spacing:6.109670px;}
.ws270{word-spacing:6.120968px;}
.ws2d2{word-spacing:6.121207px;}
.ws203{word-spacing:6.121267px;}
.ws26c{word-spacing:6.121566px;}
.ws267{word-spacing:6.133342px;}
.ws89{word-spacing:6.168791px;}
.wse8{word-spacing:6.169090px;}
.ws2cd{word-spacing:6.180926px;}
.ws219{word-spacing:6.181045px;}
.ws18c{word-spacing:6.228449px;}
.wsde{word-spacing:6.229107px;}
.ws2da{word-spacing:6.312497px;}
.ws115{word-spacing:6.347886px;}
.ws286{word-spacing:6.360319px;}
.ws204{word-spacing:6.372514px;}
.wsca{word-spacing:6.407903px;}
.wsfa{word-spacing:6.408500px;}
.wsc8{word-spacing:6.467621px;}
.wsc9{word-spacing:6.467860px;}
.ws15f{word-spacing:6.467980px;}
.ws2b7{word-spacing:6.527578px;}
.ws176{word-spacing:6.527758px;}
.ws275{word-spacing:6.527877px;}
.ws24{word-spacing:6.581020px;}
.ws61{word-spacing:6.586699px;}
.ws144{word-spacing:6.587536px;}
.ws141{word-spacing:6.599730px;}
.ws5f{word-spacing:6.646656px;}
.ws18e{word-spacing:6.647254px;}
.ws28c{word-spacing:6.647852px;}
.ws122{word-spacing:6.659150px;}
.ws13b{word-spacing:6.659269px;}
.wsf6{word-spacing:6.659747px;}
.wsea{word-spacing:6.707271px;}
.ws46{word-spacing:6.766690px;}
.ws48{word-spacing:6.767288px;}
.ws232{word-spacing:6.826707px;}
.ws11b{word-spacing:6.886067px;}
.ws1c{word-spacing:6.940465px;}
.ws221{word-spacing:6.946443px;}
.ws143{word-spacing:7.005982px;}
.wsec{word-spacing:7.065461px;}
.ws1ad{word-spacing:7.065760px;}
.ws102{word-spacing:7.066058px;}
.ws26a{word-spacing:7.077954px;}
.ws25c{word-spacing:7.089671px;}
.ws10a{word-spacing:7.125478px;}
.wsd4{word-spacing:7.184897px;}
.wsd5{word-spacing:7.185196px;}
.ws148{word-spacing:7.185316px;}
.ws178{word-spacing:7.185495px;}
.wsd6{word-spacing:7.185854px;}
.ws3c{word-spacing:7.244854px;}
.wsd3{word-spacing:7.245094px;}
.wsc5{word-spacing:7.245452px;}
.ws37{word-spacing:7.304872px;}
.wsb9{word-spacing:7.305230px;}
.ws2c6{word-spacing:7.328783px;}
.ws28{word-spacing:7.358612px;}
.ws18a{word-spacing:7.364291px;}
.ws2a4{word-spacing:7.364650px;}
.wsc3{word-spacing:7.364889px;}
.ws1d{word-spacing:7.418031px;}
.ws174{word-spacing:7.483668px;}
.ws218{word-spacing:7.484206px;}
.ws16e{word-spacing:7.496161px;}
.ws1a1{word-spacing:7.543984px;}
.ws10f{word-spacing:7.544282px;}
.ws262{word-spacing:7.603702px;}
.ws65{word-spacing:7.663061px;}
.ws254{word-spacing:7.663420px;}
.wsf9{word-spacing:7.663659px;}
.ws193{word-spacing:7.723318px;}
.ws7a{word-spacing:7.723437px;}
.ws125{word-spacing:7.723676px;}
.ws114{word-spacing:7.783096px;}
.ws1e{word-spacing:7.836537px;}
.ws113{word-spacing:7.842455px;}
.ws1a6{word-spacing:7.843053px;}
.wsfd{word-spacing:7.902472px;}
.wsa9{word-spacing:7.903070px;}
.ws7{word-spacing:7.918777px;}
.ws9{word-spacing:7.918992px;}
.ws2c9{word-spacing:7.974086px;}
.ws5{word-spacing:7.990220px;}
.ws4{word-spacing:7.990722px;}
.ws6{word-spacing:7.990937px;}
.ws155{word-spacing:8.021670px;}
.ws25d{word-spacing:8.034163px;}
.ws2af{word-spacing:8.034343px;}
.ws261{word-spacing:8.045999px;}
.wsf0{word-spacing:8.081866px;}
.ws189{word-spacing:8.141644px;}
.ws258{word-spacing:8.165675px;}
.ws2b8{word-spacing:8.201302px;}
.ws88{word-spacing:8.201661px;}
.ws2b3{word-spacing:8.213497px;}
.ws63{word-spacing:8.261260px;}
.ws18b{word-spacing:8.321098px;}
.ws103{word-spacing:8.321277px;}
.ws169{word-spacing:8.380696px;}
.ws139{word-spacing:8.440654px;}
.ws8b{word-spacing:8.500491px;}
.ws25b{word-spacing:8.505344px;}
.ws2e3{word-spacing:8.524821px;}
.wsaa{word-spacing:8.560688px;}
.ws11f{word-spacing:8.620107px;}
.ws16{word-spacing:8.673549px;}
.ws13e{word-spacing:8.679467px;}
.ws284{word-spacing:8.680064px;}
.ws197{word-spacing:8.739544px;}
.wsd7{word-spacing:8.798903px;}
.ws25f{word-spacing:8.799262px;}
.ws1aa{word-spacing:8.799501px;}
.ws209{word-spacing:8.917896px;}
.ws5b{word-spacing:8.918698px;}
.ws5a{word-spacing:8.918878px;}
.ws239{word-spacing:8.930534px;}
.ws217{word-spacing:8.943088px;}
.ws18f{word-spacing:8.978297px;}
.ws34{word-spacing:8.978895px;}
.ws2b4{word-spacing:8.990133px;}
.ws1bd{word-spacing:9.033093px;}
.wsdd{word-spacing:9.038852px;}
.wsb6{word-spacing:9.097674px;}
.ws95{word-spacing:9.098092px;}
.ws194{word-spacing:9.098212px;}
.ws10d{word-spacing:9.098271px;}
.ws1fd{word-spacing:9.121943px;}
.ws25{word-spacing:9.152072px;}
.ws124{word-spacing:9.158288px;}
.ws231{word-spacing:9.181901px;}
.ws187{word-spacing:9.217708px;}
.ws1d7{word-spacing:9.217768px;}
.wsc2{word-spacing:9.277486px;}
.ws230{word-spacing:9.277546px;}
.ws2d5{word-spacing:9.301218px;}
.ws120{word-spacing:9.337084px;}
.ws175{word-spacing:9.337682px;}
.ws14a{word-spacing:9.397102px;}
.ws2ba{word-spacing:9.457059px;}
.ws2dc{word-spacing:9.493299px;}
.ws14{word-spacing:9.510560px;}
.ws2a0{word-spacing:9.516478px;}
.ws16a{word-spacing:9.530924px;}
.ws2d0{word-spacing:9.564151px;}
.wsce{word-spacing:9.575898px;}
.ws147{word-spacing:9.576436px;}
.ws4a{word-spacing:9.576495px;}
.ws1d9{word-spacing:9.635735px;}
.ws87{word-spacing:9.636333px;}
.ws33{word-spacing:9.636453px;}
.ws16f{word-spacing:9.648169px;}
.wsfc{word-spacing:9.695872px;}
.ws2e{word-spacing:9.749774px;}
.ws2d{word-spacing:9.751816px;}
.ws2a{word-spacing:9.752252px;}
.ws2c{word-spacing:9.756260px;}
.ws14e{word-spacing:9.849617px;}
.ws152{word-spacing:9.863370px;}
.ws14c{word-spacing:9.863609px;}
.ws290{word-spacing:9.883694px;}
.ws14d{word-spacing:9.922431px;}
.ws1ff{word-spacing:9.935163px;}
.ws2a5{word-spacing:9.994104px;}
.ws240{word-spacing:9.995300px;}
.ws225{word-spacing:10.018793px;}
.ws2b2{word-spacing:10.114557px;}
.ws26e{word-spacing:10.114677px;}
.ws271{word-spacing:10.138289px;}
.ws3a{word-spacing:10.174096px;}
.ws2c2{word-spacing:10.185526px;}
.ws1ea{word-spacing:10.185932px;}
.ws39{word-spacing:10.233994px;}
.ws288{word-spacing:10.234053px;}
.ws253{word-spacing:10.257725px;}
.ws241{word-spacing:10.293951px;}
.ws19e{word-spacing:10.294070px;}
.ws1c3{word-spacing:10.306211px;}
.wscc{word-spacing:10.352892px;}
.ws1f3{word-spacing:10.362043px;}
.ws19f{word-spacing:10.412849px;}
.ws11d{word-spacing:10.413507px;}
.ws26f{word-spacing:10.424745px;}
.ws2d1{word-spacing:10.425164px;}
.ws222{word-spacing:10.472866px;}
.ws1f2{word-spacing:10.473106px;}
.ws14f{word-spacing:10.473345px;}
.ws1b{word-spacing:10.527025px;}
.ws23f{word-spacing:10.556496px;}
.ws2b9{word-spacing:10.604617px;}
.ws2ac{word-spacing:10.712218px;}
.ws278{word-spacing:10.712277px;}
.ws195{word-spacing:10.771697px;}
.ws20e{word-spacing:10.772175px;}
.ws3f{word-spacing:10.831654px;}
.ws2a9{word-spacing:10.831774px;}
.ws168{word-spacing:10.850924px;}
.wsb0{word-spacing:10.891552px;}
.wsc0{word-spacing:10.951569px;}
.ws7e{word-spacing:11.011108px;}
.ws15c{word-spacing:11.012984px;}
.ws142{word-spacing:11.130484px;}
.ws1d3{word-spacing:11.130664px;}
.ws29c{word-spacing:11.154694px;}
.ws1f9{word-spacing:11.190501px;}
.ws2ab{word-spacing:11.274131px;}
.ws5c{word-spacing:11.309818px;}
.wsc7{word-spacing:11.309878px;}
.ws20d{word-spacing:11.334148px;}
.wsf8{word-spacing:11.369895px;}
.ws2a8{word-spacing:11.393687px;}
.ws2df{word-spacing:11.429195px;}
.ws1db{word-spacing:11.429255px;}
.ws4b{word-spacing:11.429852px;}
.ws21c{word-spacing:11.453465px;}
.ws32{word-spacing:11.489272px;}
.ws2e1{word-spacing:11.561005px;}
.ws1b1{word-spacing:11.668666px;}
.ws19d{word-spacing:11.728025px;}
.ws29d{word-spacing:11.728444px;}
.ws2dd{word-spacing:11.800416px;}
.ws1f5{word-spacing:11.835351px;}
.wse7{word-spacing:11.847462px;}
.ws66{word-spacing:11.848059px;}
.ws213{word-spacing:11.907479px;}
.ws277{word-spacing:11.908076px;}
.ws28a{word-spacing:11.967496px;}
.ws236{word-spacing:12.111142px;}
.ws112{word-spacing:12.146890px;}
.ws2c4{word-spacing:12.158128px;}
.ws9e{word-spacing:12.326224px;}
.wsfb{word-spacing:12.326283px;}
.ws28d{word-spacing:12.338179px;}
.ws1e7{word-spacing:12.386002px;}
.ws289{word-spacing:12.457556px;}
.ws2c3{word-spacing:12.457735px;}
.ws13f{word-spacing:12.505020px;}
.ws248{word-spacing:12.505558px;}
.ws90{word-spacing:12.505617px;}
.ws242{word-spacing:12.517453px;}
.ws276{word-spacing:12.529289px;}
.ws280{word-spacing:12.565694px;}
.ws1b3{word-spacing:12.625054px;}
.ws1f4{word-spacing:12.637069px;}
.ws244{word-spacing:12.684473px;}
.ws105{word-spacing:12.685071px;}
.ws160{word-spacing:12.686924px;}
.ws22e{word-spacing:12.708803px;}
.ws1b0{word-spacing:12.744430px;}
.ws116{word-spacing:12.804507px;}
.ws1b2{word-spacing:12.864226px;}
.ws1f0{word-spacing:12.876361px;}
.ws1f1{word-spacing:12.888137px;}
.ws154{word-spacing:12.906810px;}
.ws1e6{word-spacing:12.947915px;}
.wse0{word-spacing:13.043858px;}
.ws1ab{word-spacing:13.103278px;}
.ws1ec{word-spacing:13.163235px;}
.ws11c{word-spacing:13.163295px;}
.ws9b{word-spacing:13.222654px;}
.ws1f6{word-spacing:13.274015px;}
.ws210{word-spacing:13.277015px;}
.ws1df{word-spacing:13.280015px;}
.ws26b{word-spacing:13.353927px;}
.wsa2{word-spacing:13.402048px;}
.ws13d{word-spacing:13.462065px;}
.ws119{word-spacing:13.521485px;}
.ws2e4{word-spacing:13.533919px;}
.ws206{word-spacing:13.581562px;}
.ws224{word-spacing:13.653295px;}
.ws45{word-spacing:13.700878px;}
.ws3e{word-spacing:13.701118px;}
.ws294{word-spacing:13.713073px;}
.ws1c4{word-spacing:13.755820px;}
.ws1eb{word-spacing:13.845123px;}
.ws31{word-spacing:13.880272px;}
.ws2d4{word-spacing:13.904004px;}
.ws2d3{word-spacing:13.904602px;}
.wsf7{word-spacing:13.940289px;}
.ws107{word-spacing:13.999709px;}
.ws2de{word-spacing:14.143415px;}
.ws299{word-spacing:14.179102px;}
.ws24b{word-spacing:14.251075px;}
.ws41{word-spacing:14.358496px;}
.ws28e{word-spacing:14.370332px;}
.ws24c{word-spacing:14.418454px;}
.ws20c{word-spacing:14.477873px;}
.ws20a{word-spacing:14.478232px;}
.ws180{word-spacing:14.501741px;}
.ws17f{word-spacing:14.515241px;}
.wse1{word-spacing:14.537890px;}
.ws131{word-spacing:14.537950px;}
.ws43{word-spacing:14.717344px;}
.ws1f8{word-spacing:14.777122px;}
.ws281{word-spacing:14.777301px;}
.ws38{word-spacing:14.896678px;}
.ws172{word-spacing:14.908222px;}
.ws9c{word-spacing:14.956097px;}
.wsa0{word-spacing:15.016712px;}
.ws238{word-spacing:15.027950px;}
.ws216{word-spacing:15.159103px;}
.ws2db{word-spacing:15.255525px;}
.ws9d{word-spacing:15.314944px;}
.ws255{word-spacing:15.315124px;}
.ws1d0{word-spacing:15.401284px;}
.ws1f7{word-spacing:15.517891px;}
.ws207{word-spacing:15.566131px;}
.ws111{word-spacing:15.673672px;}
.wsef{word-spacing:15.733689px;}
.ws2c8{word-spacing:15.954514px;}
.ws35{word-spacing:15.972502px;}
.ws9a{word-spacing:15.972562px;}
.ws28f{word-spacing:15.996593px;}
.ws184{word-spacing:16.044082px;}
.wsa1{word-spacing:16.151956px;}
.ws20b{word-spacing:16.343305px;}
.wse2{word-spacing:16.390709px;}
.ws1d2{word-spacing:16.515614px;}
.ws282{word-spacing:16.641956px;}
.ws27{word-spacing:16.957142px;}
.ws283{word-spacing:17.013118px;}
.ws2b6{word-spacing:17.044499px;}
.ws2b5{word-spacing:17.072597px;}
.ws256{word-spacing:17.180137px;}
.ws182{word-spacing:17.201017px;}
.wse5{word-spacing:17.347695px;}
.ws17e{word-spacing:17.363465px;}
.ws181{word-spacing:17.366364px;}
.ws2a7{word-spacing:17.431325px;}
.ws298{word-spacing:17.431564px;}
.ws5d{word-spacing:17.586508px;}
.ws2b0{word-spacing:17.849711px;}
.ws1cb{word-spacing:18.001811px;}
.ws2ce{word-spacing:18.029523px;}
.ws1e0{word-spacing:18.148601px;}
.ws1c2{word-spacing:18.160546px;}
.ws14b{word-spacing:18.184707px;}
.wsc{word-spacing:18.344382px;}
.wsa{word-spacing:18.344597px;}
.wsb{word-spacing:18.398017px;}
.wsd{word-spacing:18.398393px;}
.wse{word-spacing:18.398609px;}
.ws121{word-spacing:18.841667px;}
.ws22b{word-spacing:18.901804px;}
.ws27d{word-spacing:19.033136px;}
.ws1b7{word-spacing:19.848414px;}
.ws60{word-spacing:19.918687px;}
.ws1b6{word-spacing:20.273459px;}
.ws47{word-spacing:20.396254px;}
.ws1ca{word-spacing:20.814357px;}
.ws40{word-spacing:20.874478px;}
.ws149{word-spacing:21.472078px;}
.ws170{word-spacing:21.531498px;}
.ws29f{word-spacing:22.548262px;}
.ws208{word-spacing:22.572173px;}
.ws215{word-spacing:22.918885px;}
.ws1bc{word-spacing:23.042592px;}
.ws291{word-spacing:23.110175px;}
.ws249{word-spacing:23.624266px;}
.ws228{word-spacing:23.827511px;}
.ws2d9{word-spacing:23.947306px;}
.ws1bb{word-spacing:24.901083px;}
.ws273{word-spacing:25.680629px;}
.ws22f{word-spacing:26.971834px;}
.ws1fe{word-spacing:27.106499px;}
.ws186{word-spacing:27.394308px;}
.ws1d1{word-spacing:27.447849px;}
.ws2e0{word-spacing:27.683186px;}
.ws22a{word-spacing:27.689229px;}
.ws3{word-spacing:27.974097px;}
.ws2{word-spacing:28.060518px;}
.ws28b{word-spacing:28.489896px;}
.ws22d{word-spacing:28.538137px;}
.ws29e{word-spacing:28.729307px;}
.ws260{word-spacing:31.598711px;}
.ws1ba{word-spacing:31.799823px;}
.ws183{word-spacing:33.124106px;}
.ws223{word-spacing:34.263343px;}
.ws293{word-spacing:34.510930px;}
.ws27f{word-spacing:34.900982px;}
.ws1c6{word-spacing:37.903296px;}
.ws1c9{word-spacing:39.389440px;}
.ws1c7{word-spacing:39.601459px;}
.ws1c5{word-spacing:39.972743px;}
.ws1ce{word-spacing:49.631807px;}
.ws128{word-spacing:56.235409px;}
.ws2f{word-spacing:60.568812px;}
.ws1b5{word-spacing:63.692785px;}
.ws214{word-spacing:64.334081px;}
.ws1c8{word-spacing:70.860755px;}
.ws229{word-spacing:79.981896px;}
.ws22c{word-spacing:82.562125px;}
.ws1cc{word-spacing:84.871262px;}
.ws1cd{word-spacing:111.831284px;}
.ws1b8{word-spacing:150.170482px;}
.ws127{word-spacing:305.322633px;}
._3b{margin-left:-31.801836px;}
._2{margin-left:-7.143792px;}
._18{margin-left:-5.839494px;}
._5{margin-left:-4.356015px;}
._1{margin-left:-2.409870px;}
._6{margin-left:-1.205143px;}
._0{width:1.750078px;}
._3{width:2.842488px;}
._2d{width:4.263884px;}
._1b{width:15.652025px;}
._8{width:16.757666px;}
._1e{width:18.154203px;}
._7{width:19.409513px;}
._d{width:20.740394px;}
._15{width:21.997766px;}
._13{width:23.105294px;}
._1f{width:24.221061px;}
._a{width:25.863090px;}
._4{width:27.275290px;}
._11{width:28.573884px;}
._33{width:29.907130px;}
._17{width:31.323792px;}
._c{width:32.839382px;}
._f{width:34.372350px;}
._9{width:36.364013px;}
._1d{width:38.377536px;}
._1a{width:39.675598px;}
._b{width:41.333105px;}
._2e{width:42.621714px;}
._16{width:44.178475px;}
._e{width:45.670153px;}
._12{width:47.463971px;}
._2f{width:48.773997px;}
._1c{width:50.214678px;}
._39{width:51.305613px;}
._37{width:52.648410px;}
._21{width:53.680823px;}
._22{width:55.158638px;}
._2c{width:56.609407px;}
._34{width:57.788691px;}
._14{width:59.778000px;}
._10{width:61.272450px;}
._36{width:62.339832px;}
._31{width:64.397328px;}
._20{width:65.755800px;}
._30{width:69.490861px;}
._38{width:71.061594px;}
._29{width:73.133756px;}
._19{width:78.902857px;}
._35{width:82.118276px;}
._24{width:83.430958px;}
._3a{width:84.610283px;}
._27{width:95.204489px;}
._28{width:96.249298px;}
._2a{width:97.434968px;}
._2b{width:111.350922px;}
._26{width:112.799581px;}
._25{width:115.162447px;}
._32{width:164.944383px;}
._23{width:179.125549px;}
.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);}
.fs6{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.614033px;}
.fsd{font-size:53.070908px;}
.fs7{font-size:53.796000px;}
.fsc{font-size:55.097383px;}
.fs1{font-size:59.761202px;}
.fs8{font-size:59.778000px;}
.fs4{font-size:71.730000px;}
.fs3{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:2.526000px;}
.y2{bottom:4.615708px;}
.y1{bottom:38.377917px;}
.y4c{bottom:41.879334px;}
.y4e{bottom:42.993625px;}
.yb0{bottom:106.297500px;}
.y3d{bottom:106.299000px;}
.y3c{bottom:124.231500px;}
.y4b{bottom:130.294500px;}
.y3b{bottom:142.164000px;}
.y1f7{bottom:142.914000px;}
.y4a{bottom:148.227000px;}
.y24c{bottom:159.982500px;}
.y80{bottom:160.096500px;}
.y3a{bottom:160.098000px;}
.y17d{bottom:160.542000px;}
.y1f6{bottom:160.846500px;}
.y1df{bottom:164.553000px;}
.y49{bottom:166.159500px;}
.y24b{bottom:177.915000px;}
.y22c{bottom:177.916500px;}
.y7f{bottom:178.029000px;}
.y39{bottom:178.030500px;}
.y17c{bottom:178.474500px;}
.y1f5{bottom:178.779000px;}
.y280{bottom:180.675000px;}
.y1de{bottom:182.487000px;}
.y48{bottom:184.092000px;}
.y2b3{bottom:195.838500px;}
.y22b{bottom:195.849000px;}
.yaf{bottom:195.961500px;}
.y38{bottom:195.963000px;}
.y14a{bottom:196.203000px;}
.y17b{bottom:196.407000px;}
.y1f4{bottom:197.461500px;}
.y27f{bottom:198.607500px;}
.y1dd{bottom:200.419500px;}
.y47{bottom:202.024500px;}
.y2b2{bottom:213.771000px;}
.y22a{bottom:213.781500px;}
.y37{bottom:213.895500px;}
.y149{bottom:214.135500px;}
.y17a{bottom:214.341000px;}
.y1f3{bottom:215.394000px;}
.y27e{bottom:216.540000px;}
.y1dc{bottom:218.352000px;}
.y46{bottom:219.958500px;}
.y148{bottom:227.584500px;}
.y24a{bottom:231.600000px;}
.y2b1{bottom:231.705000px;}
.y229{bottom:231.714000px;}
.y36{bottom:231.828000px;}
.y147{bottom:232.068000px;}
.y179{bottom:232.273500px;}
.y1f2{bottom:233.326500px;}
.y27d{bottom:234.472500px;}
.y1db{bottom:236.284500px;}
.y45{bottom:237.891000px;}
.yfe{bottom:242.640000px;}
.y1a2{bottom:243.048000px;}
.y228{bottom:249.532500px;}
.y2b0{bottom:249.637500px;}
.y35{bottom:249.760500px;}
.y146{bottom:250.000500px;}
.y178{bottom:250.206000px;}
.y1f1{bottom:251.260500px;}
.y27c{bottom:252.406500px;}
.y1da{bottom:254.217000px;}
.y44{bottom:255.823500px;}
.y2af{bottom:267.447000px;}
.y249{bottom:267.465000px;}
.y227{bottom:267.466500px;}
.yae{bottom:267.693000px;}
.y34{bottom:267.694500px;}
.y145{bottom:267.933000px;}
.y177{bottom:268.138500px;}
.y1f0{bottom:269.193000px;}
.y27b{bottom:270.339000px;}
.yfd{bottom:271.386000px;}
.y43{bottom:273.756000px;}
.y7e{bottom:277.345500px;}
.y132{bottom:279.793500px;}
.y1d9{bottom:281.433000px;}
.y1a1{bottom:282.459000px;}
.y2ae{bottom:285.379500px;}
.y226{bottom:285.399000px;}
.yad{bottom:285.625500px;}
.y33{bottom:285.627000px;}
.y144{bottom:285.867000px;}
.y176{bottom:286.071000px;}
.y1ef{bottom:287.875500px;}
.y27a{bottom:288.271500px;}
.y42{bottom:291.688500px;}
.y1a0{bottom:300.391500px;}
.y225{bottom:303.217500px;}
.y2ad{bottom:303.312000px;}
.yac{bottom:303.558000px;}
.y32{bottom:303.559500px;}
.y143{bottom:303.799500px;}
.y175{bottom:304.003500px;}
.y1ee{bottom:305.808000px;}
.y279{bottom:308.848500px;}
.y41{bottom:309.621000px;}
.yfc{bottom:318.138000px;}
.y19f{bottom:318.325500px;}
.y7d{bottom:320.011500px;}
.y224{bottom:321.150000px;}
.y2ac{bottom:321.244500px;}
.y31{bottom:321.492000px;}
.y142{bottom:321.732000px;}
.y174{bottom:321.937500px;}
.y1ed{bottom:323.740500px;}
.y1d8{bottom:325.989000px;}
.y278{bottom:326.782500px;}
.y131{bottom:327.225000px;}
.y40{bottom:327.555000px;}
.yfb{bottom:336.072000px;}
.y19e{bottom:336.258000px;}
.y7c{bottom:337.944000px;}
.y223{bottom:339.082500px;}
.y2ab{bottom:339.177000px;}
.y30{bottom:339.424500px;}
.y141{bottom:339.664500px;}
.y173{bottom:339.870000px;}
.y1ec{bottom:341.673000px;}
.y1d7{bottom:343.921500px;}
.y277{bottom:344.715000px;}
.y130{bottom:345.157500px;}
.y3f{bottom:345.487500px;}
.yfa{bottom:354.004500px;}
.y19d{bottom:354.190500px;}
.y7b{bottom:355.876500px;}
.y248{bottom:356.901000px;}
.y2aa{bottom:356.986500px;}
.y222{bottom:357.016500px;}
.yab{bottom:357.357000px;}
.y140{bottom:357.597000px;}
.y172{bottom:357.802500px;}
.y1eb{bottom:359.605500px;}
.y1d6{bottom:361.854000px;}
.y276{bottom:362.647500px;}
.y12f{bottom:363.091500px;}
.y3e{bottom:363.420000px;}
.yf9{bottom:371.937000px;}
.y19c{bottom:372.123000px;}
.y7a{bottom:373.810500px;}
.y247{bottom:374.835000px;}
.y2a9{bottom:374.919000px;}
.y221{bottom:374.949000px;}
.yaa{bottom:375.289500px;}
.y13f{bottom:375.529500px;}
.y1ea{bottom:378.288000px;}
.y1d5{bottom:379.788000px;}
.y12e{bottom:381.024000px;}
.y2f{bottom:381.352500px;}
.y275{bottom:383.226000px;}
.yd3{bottom:385.347000px;}
.y171{bottom:386.214000px;}
.y19b{bottom:390.055500px;}
.yf8{bottom:390.493500px;}
.y79{bottom:391.743000px;}
.y220{bottom:392.767500px;}
.y2a8{bottom:392.853000px;}
.ya9{bottom:393.222000px;}
.y13e{bottom:393.463500px;}
.y1e9{bottom:396.220500px;}
.y1d4{bottom:397.720500px;}
.y12d{bottom:398.956500px;}
.y274{bottom:401.158500px;}
.y19a{bottom:407.989500px;}
.yf7{bottom:408.426000px;}
.y78{bottom:409.675500px;}
.y21f{bottom:410.700000px;}
.y2a7{bottom:410.785500px;}
.ya8{bottom:411.154500px;}
.y13d{bottom:411.396000px;}
.y1e8{bottom:414.153000px;}
.y1d3{bottom:415.653000px;}
.y12c{bottom:416.889000px;}
.y273{bottom:419.091000px;}
.y170{bottom:423.237201px;}
.y199{bottom:425.922000px;}
.yf6{bottom:426.360000px;}
.yd2{bottom:426.954000px;}
.y77{bottom:427.608000px;}
.y246{bottom:428.518500px;}
.y21e{bottom:428.632500px;}
.y2a6{bottom:428.718000px;}
.ya7{bottom:429.088500px;}
.y1e7{bottom:432.087000px;}
.y1d2{bottom:433.585500px;}
.y12b{bottom:434.821500px;}
.y13c{bottom:439.426500px;}
.y272{bottom:439.668000px;}
.y16f{bottom:439.765587px;}
.y198{bottom:443.854500px;}
.yf5{bottom:444.292500px;}
.yd1{bottom:444.888000px;}
.y76{bottom:445.540500px;}
.y245{bottom:446.451000px;}
.y2a5{bottom:446.527500px;}
.y21d{bottom:446.565000px;}
.ya6{bottom:447.021000px;}
.y1e6{bottom:450.768000px;}
.y1d1{bottom:451.518000px;}
.y12a{bottom:452.755500px;}
.y16e{bottom:456.295354px;}
.y271{bottom:457.602000px;}
.y2b{bottom:461.232000px;}
.y197{bottom:461.787000px;}
.yf4{bottom:462.225000px;}
.yd0{bottom:462.820500px;}
.y75{bottom:463.473000px;}
.y244{bottom:464.383500px;}
.y2a4{bottom:464.460000px;}
.y21c{bottom:464.499000px;}
.ya5{bottom:464.953500px;}
.y1e5{bottom:468.702000px;}
.y1d0{bottom:469.450500px;}
.y129{bottom:472.003500px;}
.y16d{bottom:472.823740px;}
.y2e{bottom:473.187000px;}
.y270{bottom:475.534500px;}
.y2a{bottom:479.164500px;}
.y196{bottom:479.719500px;}
.yf3{bottom:480.157500px;}
.ycf{bottom:480.753000px;}
.y13b{bottom:481.153500px;}
.y74{bottom:481.407000px;}
.y21b{bottom:482.317500px;}
.y2a3{bottom:482.392500px;}
.y2d{bottom:485.142000px;}
.y1e4{bottom:486.634500px;}
.y1cf{bottom:487.384500px;}
.ya4{bottom:488.370000px;}
.y16c{bottom:489.352125px;}
.y128{bottom:489.936000px;}
.y26f{bottom:496.111500px;}
.y2c{bottom:497.097000px;}
.y195{bottom:497.652000px;}
.yf2{bottom:498.090000px;}
.yce{bottom:498.685500px;}
.y13a{bottom:499.086000px;}
.y73{bottom:499.339500px;}
.y21a{bottom:500.250000px;}
.y2a2{bottom:500.325000px;}
.y1e3{bottom:504.567000px;}
.y1ce{bottom:505.317000px;}
.y16b{bottom:505.880510px;}
.ya3{bottom:506.302500px;}
.y127{bottom:507.868500px;}
.y26e{bottom:514.044000px;}
.y29{bottom:515.031000px;}
.y194{bottom:515.586000px;}
.yf1{bottom:516.022500px;}
.ycd{bottom:516.618000px;}
.y139{bottom:517.018500px;}
.y72{bottom:517.272000px;}
.y219{bottom:518.182500px;}
.y2a1{bottom:518.259000px;}
.y16a{bottom:522.408895px;}
.y1e2{bottom:522.499500px;}
.y1cd{bottom:523.249500px;}
.ya2{bottom:524.236500px;}
.y126{bottom:525.801000px;}
.y26d{bottom:531.978000px;}
.y28{bottom:532.963500px;}
.y193{bottom:533.518500px;}
.yf0{bottom:533.956500px;}
.ycc{bottom:534.550500px;}
.y138{bottom:534.951000px;}
.y71{bottom:535.204500px;}
.y243{bottom:536.001000px;}
.y2a0{bottom:536.068500px;}
.y218{bottom:536.115000px;}
.y169{bottom:538.937281px;}
.y1e1{bottom:540.432000px;}
.y1cc{bottom:541.182000px;}
.ya1{bottom:542.169000px;}
.y125{bottom:543.733500px;}
.y26c{bottom:549.910500px;}
.y27{bottom:550.896000px;}
.y192{bottom:551.451000px;}
.yef{bottom:551.889000px;}
.ycb{bottom:552.702000px;}
.y137{bottom:552.883500px;}
.y70{bottom:553.137000px;}
.y242{bottom:553.933500px;}
.y29f{bottom:554.001000px;}
.y217{bottom:554.049000px;}
.y168{bottom:555.467048px;}
.y1cb{bottom:559.114500px;}
.ya0{bottom:560.101500px;}
.y124{bottom:561.667500px;}
.y26{bottom:568.828500px;}
.yee{bottom:569.821500px;}
.y191{bottom:570.226500px;}
.y26b{bottom:570.487500px;}
.yca{bottom:570.634500px;}
.y136{bottom:570.817500px;}
.y6f{bottom:571.069500px;}
.y216{bottom:571.867500px;}
.y29e{bottom:571.933500px;}
.y167{bottom:571.995434px;}
.y1e0{bottom:577.047000px;}
.y1ca{bottom:577.048500px;}
.y9f{bottom:578.034000px;}
.y123{bottom:579.600000px;}
.y25{bottom:586.761000px;}
.yed{bottom:587.754000px;}
.y190{bottom:588.159000px;}
.y26a{bottom:588.420000px;}
.y166{bottom:588.523819px;}
.yc9{bottom:588.567000px;}
.y135{bottom:588.750000px;}
.y6e{bottom:589.003500px;}
.y215{bottom:589.800000px;}
.y29d{bottom:589.866000px;}
.y1c9{bottom:594.981000px;}
.y9e{bottom:595.966500px;}
.y122{bottom:597.532500px;}
.y24{bottom:604.693500px;}
.y165{bottom:605.052204px;}
.yec{bottom:605.686500px;}
.y18f{bottom:606.093000px;}
.y269{bottom:606.354000px;}
.yc8{bottom:606.499500px;}
.y134{bottom:606.682500px;}
.y6d{bottom:606.936000px;}
.y29c{bottom:607.675500px;}
.y214{bottom:607.732500px;}
.y9d{bottom:613.899000px;}
.y121{bottom:616.780500px;}
.y163{bottom:621.580589px;}
.y161{bottom:621.581077px;}
.y23{bottom:622.627500px;}
.yeb{bottom:623.619000px;}
.y18e{bottom:624.025500px;}
.y268{bottom:624.286500px;}
.yc7{bottom:624.433500px;}
.y133{bottom:624.615000px;}
.y6c{bottom:624.868500px;}
.y241{bottom:625.551000px;}
.y29b{bottom:625.608000px;}
.y213{bottom:625.665000px;}
.y9c{bottom:631.833000px;}
.y1c8{bottom:632.345074px;}
.y120{bottom:634.713000px;}
.y160{bottom:638.102550px;}
.y164{bottom:638.108975px;}
.y162{bottom:638.109463px;}
.y22{bottom:640.560000px;}
.yea{bottom:641.553000px;}
.y18d{bottom:641.958000px;}
.y267{bottom:642.219000px;}
.yc6{bottom:642.366000px;}
.y6b{bottom:642.801000px;}
.y240{bottom:643.483500px;}
.y29a{bottom:643.540500px;}
.y212{bottom:643.599000px;}
.y1c7{bottom:648.266879px;}
.y9b{bottom:649.765500px;}
.y11f{bottom:652.645500px;}
.y15d{bottom:655.182265px;}
.y15e{bottom:655.188997px;}
.y21{bottom:658.492500px;}
.ye9{bottom:659.485500px;}
.y18c{bottom:659.890500px;}
.yc5{bottom:660.298500px;}
.y6a{bottom:660.733500px;}
.y23f{bottom:661.417500px;}
.y299{bottom:661.474500px;}
.y211{bottom:661.531500px;}
.y266{bottom:662.796000px;}
.y1c6{bottom:664.187352px;}
.y9a{bottom:667.698000px;}
.y15c{bottom:671.710650px;}
.y15f{bottom:671.717383px;}
.y20{bottom:676.425000px;}
.ye8{bottom:677.418000px;}
.y18b{bottom:677.823000px;}
.yc4{bottom:678.231000px;}
.y69{bottom:678.666000px;}
.y210{bottom:679.350000px;}
.y298{bottom:679.407000px;}
.y1c5{bottom:680.107826px;}
.y265{bottom:680.730000px;}
.y99{bottom:685.630500px;}
.y11e{bottom:689.758008px;}
.y15b{bottom:689.809500px;}
.y1f{bottom:694.357500px;}
.ye7{bottom:695.350500px;}
.y18a{bottom:695.755500px;}
.y1c4{bottom:696.028299px;}
.yc3{bottom:696.163500px;}
.y68{bottom:696.600000px;}
.y23e{bottom:697.168500px;}
.y297{bottom:697.216500px;}
.y20f{bottom:697.282500px;}
.y264{bottom:698.662500px;}
.y98{bottom:703.563000px;}
.y11d{bottom:704.941456px;}
.y1c3{bottom:711.948773px;}
.y1e{bottom:712.290000px;}
.ye6{bottom:713.283000px;}
.y15a{bottom:713.643000px;}
.y189{bottom:713.689500px;}
.yc2{bottom:714.096000px;}
.y67{bottom:714.532500px;}
.y23d{bottom:715.101000px;}
.y296{bottom:715.149000px;}
.y20e{bottom:715.215000px;}
.y263{bottom:716.595000px;}
.y11c{bottom:720.124903px;}
.y97{bottom:721.495500px;}
.y1c2{bottom:727.870578px;}
.y1d{bottom:730.224000px;}
.ye5{bottom:731.217000px;}
.y159{bottom:731.575500px;}
.y188{bottom:731.622000px;}
.yc1{bottom:732.030000px;}
.y66{bottom:732.465000px;}
.y23c{bottom:733.033500px;}
.y20d{bottom:733.035000px;}
.y295{bottom:733.081500px;}
.y262{bottom:734.527500px;}
.y11b{bottom:735.308351px;}
.y96{bottom:739.429500px;}
.y1c1{bottom:743.791051px;}
.y1c{bottom:748.156500px;}
.ye4{bottom:749.149500px;}
.y158{bottom:749.508000px;}
.y187{bottom:749.554500px;}
.yc0{bottom:749.962500px;}
.y65{bottom:750.397500px;}
.y11a{bottom:750.491799px;}
.y23b{bottom:750.853500px;}
.y20c{bottom:750.967500px;}
.y294{bottom:751.014000px;}
.y261{bottom:755.106000px;}
.y95{bottom:757.362000px;}
.y1c0{bottom:759.711525px;}
.y119{bottom:765.676517px;}
.y1b{bottom:766.089000px;}
.ye3{bottom:767.082000px;}
.y157{bottom:767.440500px;}
.y186{bottom:767.487000px;}
.ybf{bottom:767.895000px;}
.y64{bottom:768.330000px;}
.y23a{bottom:768.786000px;}
.y293{bottom:768.823500px;}
.y20b{bottom:768.900000px;}
.y260{bottom:773.038500px;}
.y1bf{bottom:775.631998px;}
.y94{bottom:780.778500px;}
.y118{bottom:780.859964px;}
.y1a{bottom:784.021500px;}
.ye2{bottom:785.014500px;}
.y156{bottom:785.373000px;}
.y185{bottom:785.419500px;}
.ybe{bottom:785.827500px;}
.y63{bottom:786.264000px;}
.y239{bottom:786.718500px;}
.y292{bottom:786.756000px;}
.y20a{bottom:786.832500px;}
.y25f{bottom:790.971000px;}
.y1be{bottom:791.552472px;}
.y117{bottom:796.043412px;}
.y93{bottom:798.711000px;}
.y19{bottom:801.954000px;}
.y155{bottom:803.307000px;}
.y184{bottom:803.352000px;}
.ye1{bottom:803.571000px;}
.ybd{bottom:803.977500px;}
.y62{bottom:804.196500px;}
.y238{bottom:804.651000px;}
.y291{bottom:804.688500px;}
.y209{bottom:804.765000px;}
.y1bd{bottom:807.472945px;}
.y116{bottom:811.226860px;}
.y25e{bottom:811.548000px;}
.y92{bottom:816.643500px;}
.y18{bottom:819.888000px;}
.y183{bottom:821.286000px;}
.ye0{bottom:821.503500px;}
.y154{bottom:821.683500px;}
.ybc{bottom:821.911500px;}
.y61{bottom:822.129000px;}
.y237{bottom:822.583500px;}
.y208{bottom:822.585000px;}
.y290{bottom:822.622500px;}
.y1bc{bottom:823.394751px;}
.y115{bottom:826.410308px;}
.y25d{bottom:829.482000px;}
.y91{bottom:834.577500px;}
.y17{bottom:837.820500px;}
.y182{bottom:839.218500px;}
.y1bb{bottom:839.315224px;}
.ydf{bottom:839.437500px;}
.y153{bottom:839.617500px;}
.ybb{bottom:839.844000px;}
.y60{bottom:840.061500px;}
.y236{bottom:840.516000px;}
.y207{bottom:840.517500px;}
.y28f{bottom:840.555000px;}
.y114{bottom:841.593755px;}
.y25c{bottom:847.414500px;}
.y90{bottom:852.510000px;}
.y1ba{bottom:855.235698px;}
.y16{bottom:855.753000px;}
.y113{bottom:856.778473px;}
.y181{bottom:857.151000px;}
.yde{bottom:857.370000px;}
.y152{bottom:857.550000px;}
.yba{bottom:857.776500px;}
.y5f{bottom:857.994000px;}
.y235{bottom:858.336000px;}
.y28e{bottom:858.364500px;}
.y206{bottom:858.450000px;}
.y25b{bottom:865.347000px;}
.y8f{bottom:870.442500px;}
.y1b9{bottom:871.156171px;}
.y112{bottom:871.961921px;}
.y15{bottom:873.685500px;}
.y180{bottom:875.083500px;}
.ydd{bottom:875.302500px;}
.y151{bottom:875.482500px;}
.yb9{bottom:875.709000px;}
.y5e{bottom:875.926500px;}
.y234{bottom:876.268500px;}
.y28d{bottom:876.297000px;}
.y205{bottom:876.382500px;}
.y25a{bottom:883.279500px;}
.y1b8{bottom:887.076645px;}
.y111{bottom:887.145369px;}
.y8e{bottom:888.375000px;}
.y14{bottom:891.618000px;}
.y17f{bottom:893.016000px;}
.ydc{bottom:893.235000px;}
.y150{bottom:893.415000px;}
.yb8{bottom:893.641500px;}
.y5d{bottom:893.860500px;}
.y204{bottom:894.201000px;}
.y28c{bottom:894.229500px;}
.y110{bottom:902.328816px;}
.y1b7{bottom:902.998450px;}
.y259{bottom:903.858000px;}
.y8d{bottom:906.307500px;}
.y17e{bottom:910.950000px;}
.ydb{bottom:911.167500px;}
.y14f{bottom:911.347500px;}
.yb7{bottom:911.575500px;}
.y5c{bottom:911.793000px;}
.y233{bottom:912.133500px;}
.y203{bottom:912.135000px;}
.y28b{bottom:912.162000px;}
.y10f{bottom:917.512264px;}
.y1b5{bottom:918.918923px;}
.y258{bottom:921.790500px;}
.y13{bottom:923.748000px;}
.y8c{bottom:924.240000px;}
.yda{bottom:929.101500px;}
.y14e{bottom:929.280000px;}
.yb6{bottom:929.508000px;}
.y5b{bottom:929.725500px;}
.y28a{bottom:929.971500px;}
.y232{bottom:930.066000px;}
.y202{bottom:930.067500px;}
.y10e{bottom:932.696982px;}
.y1b4{bottom:934.839397px;}
.y11{bottom:937.944000px;}
.y257{bottom:939.723000px;}
.y12{bottom:942.163500px;}
.y8b{bottom:942.174000px;}
.yd9{bottom:947.034000px;}
.y14d{bottom:947.214000px;}
.yb5{bottom:947.440500px;}
.y5a{bottom:947.658000px;}
.y10d{bottom:947.880430px;}
.y231{bottom:947.886000px;}
.y289{bottom:947.904000px;}
.y201{bottom:948.000000px;}
.y1b3{bottom:950.759870px;}
.y8a{bottom:960.106500px;}
.y256{bottom:960.301500px;}
.y10{bottom:962.338500px;}
.y10c{bottom:963.063877px;}
.yd8{bottom:964.966500px;}
.y14c{bottom:965.146500px;}
.yb4{bottom:965.373000px;}
.y59{bottom:965.590500px;}
.y230{bottom:965.818500px;}
.y288{bottom:965.838000px;}
.y200{bottom:965.932500px;}
.y1b2{bottom:966.680344px;}
.yf{bottom:973.063500px;}
.y89{bottom:978.039000px;}
.y255{bottom:978.234000px;}
.y10b{bottom:978.247325px;}
.y1b6{bottom:982.600817px;}
.y1b1{bottom:982.602149px;}
.yd7{bottom:982.899000px;}
.y14b{bottom:983.079000px;}
.yb3{bottom:983.305500px;}
.y58{bottom:983.523000px;}
.y1ff{bottom:983.751000px;}
.y287{bottom:983.770500px;}
.y10a{bottom:993.430773px;}
.ye{bottom:995.215500px;}
.y88{bottom:995.971500px;}
.y254{bottom:996.166500px;}
.y1b0{bottom:998.522623px;}
.yd6{bottom:1000.831500px;}
.yb2{bottom:1001.238000px;}
.y57{bottom:1001.457000px;}
.y286{bottom:1001.580000px;}
.y1fe{bottom:1001.683500px;}
.yd{bottom:1005.939000px;}
.y109{bottom:1008.614221px;}
.y87{bottom:1013.904000px;}
.y253{bottom:1014.099000px;}
.y1af{bottom:1014.443096px;}
.yd5{bottom:1019.388000px;}
.y56{bottom:1019.389500px;}
.y285{bottom:1019.512500px;}
.y22f{bottom:1019.616000px;}
.y1fd{bottom:1019.617500px;}
.y108{bottom:1023.798939px;}
.yc{bottom:1028.091000px;}
.y1ae{bottom:1030.363570px;}
.y86{bottom:1031.838000px;}
.y252{bottom:1032.031500px;}
.y55{bottom:1037.322000px;}
.y22e{bottom:1037.436000px;}
.y284{bottom:1037.445000px;}
.y1fc{bottom:1037.550000px;}
.y107{bottom:1038.982386px;}
.yb{bottom:1044.529500px;}
.y1ad{bottom:1046.284043px;}
.y85{bottom:1049.770500px;}
.y251{bottom:1052.610000px;}
.y106{bottom:1054.165834px;}
.y54{bottom:1055.254500px;}
.y22d{bottom:1055.368500px;}
.y283{bottom:1055.377500px;}
.y1fb{bottom:1055.482500px;}
.ya{bottom:1060.968000px;}
.y1ac{bottom:1062.204517px;}
.y84{bottom:1067.703000px;}
.y105{bottom:1069.349282px;}
.y250{bottom:1070.542500px;}
.y53{bottom:1073.187000px;}
.y1fa{bottom:1073.301000px;}
.y282{bottom:1073.310000px;}
.y9{bottom:1076.176500px;}
.y1aa{bottom:1078.126322px;}
.y104{bottom:1084.532730px;}
.y83{bottom:1085.635500px;}
.y24f{bottom:1088.475000px;}
.y52{bottom:1091.119500px;}
.y1f9{bottom:1091.233500px;}
.y281{bottom:1091.244000px;}
.y1a9{bottom:1094.046795px;}
.y7{bottom:1097.098500px;}
.y103{bottom:1099.716177px;}
.y82{bottom:1103.568000px;}
.y8{bottom:1103.605500px;}
.y24e{bottom:1106.407500px;}
.yd4{bottom:1109.052000px;}
.y51{bottom:1109.053500px;}
.y1f8{bottom:1109.167500px;}
.y1ab{bottom:1109.967269px;}
.y1a8{bottom:1110.001500px;}
.y102{bottom:1114.900895px;}
.y81{bottom:1121.500500px;}
.y24d{bottom:1124.340000px;}
.y1a6{bottom:1126.419091px;}
.y1a4{bottom:1126.454326px;}
.y50{bottom:1126.986000px;}
.y101{bottom:1130.131050px;}
.y6{bottom:1135.951500px;}
.y1a7{bottom:1142.339564px;}
.y1a5{bottom:1142.340176px;}
.y1a3{bottom:1142.374800px;}
.y4f{bottom:1144.918500px;}
.y100{bottom:1145.820750px;}
.y5{bottom:1162.851000px;}
.yff{bottom:1162.935000px;}
.yb1{bottom:1165.888438px;}
.y4{bottom:1166.003240px;}
.y3{bottom:1179.782758px;}
.h10{height:13.200074px;}
.h8{height:25.645620px;}
.he{height:29.960304px;}
.hb{height:34.074600px;}
.ha{height:34.191300px;}
.h14{height:34.368215px;}
.h4{height:36.000225px;}
.h1a{height:37.149636px;}
.h15{height:37.960524px;}
.h9{height:38.517936px;}
.h1b{height:39.803181px;}
.h18{height:41.323037px;}
.h19{height:41.350688px;}
.h13{height:42.792210px;}
.hc{height:42.801048px;}
.h3{height:44.824091px;}
.hd{height:44.833500px;}
.h7{height:45.429000px;}
.h1c{height:47.781048px;}
.h1d{height:47.787048px;}
.h11{height:49.898438px;}
.hf{height:51.358680px;}
.h1e{height:57.909048px;}
.h16{height:59.093736px;}
.h6{height:60.219300px;}
.h5{height:60.683580px;}
.h17{height:62.767500px;}
.h2{height:1195.555378px;}
.h12{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;}
.x20{left:92.511000px;}
.x1d{left:97.422000px;}
.x11{left:99.984000px;}
.x18{left:101.434350px;}
.x14{left:104.068500px;}
.x21{left:115.758000px;}
.x2{left:125.858878px;}
.x1e{left:154.864880px;}
.x19{left:176.748761px;}
.x17{left:191.173500px;}
.x26{left:195.400500px;}
.x10{left:208.226652px;}
.x24{left:233.352000px;}
.x15{left:243.845923px;}
.x7{left:265.618500px;}
.x8{left:275.332500px;}
.x5{left:279.417612px;}
.x6{left:292.120500px;}
.x25{left:312.013500px;}
.x1c{left:339.711000px;}
.x13{left:351.085500px;}
.x1a{left:389.229648px;}
.x1b{left:399.025015px;}
.xe{left:453.928500px;}
.x23{left:461.400000px;}
.xd{left:468.873000px;}
.x22{left:484.647000px;}
.x1f{left:531.043324px;}
.xa{left:662.589000px;}
.xc{left:664.176000px;}
.xb{left:676.407000px;}
.x9{left:681.568500px;}
.x27{left:688.209000px;}
.x16{left:697.693500px;}
.xf{left:791.891968px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:4.426667pt;}
.v7{vertical-align:7.973333pt;}
.v9{vertical-align:13.429333pt;}
.v6{vertical-align:15.941333pt;}
.v1{vertical-align:23.136000pt;}
.v5{vertical-align:26.714667pt;}
.v4{vertical-align:39.850667pt;}
.lsd{letter-spacing:-0.300471pt;}
.lsb{letter-spacing:-0.079370pt;}
.lsc{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.002367pt;}
.ls1f{letter-spacing:0.004438pt;}
.lse{letter-spacing:0.034016pt;}
.ls5{letter-spacing:0.083746pt;}
.ls4{letter-spacing:0.084291pt;}
.ls23{letter-spacing:0.091463pt;}
.ls1{letter-spacing:0.215432pt;}
.ls0{letter-spacing:0.544250pt;}
.ls2{letter-spacing:0.592371pt;}
.ls3{letter-spacing:0.617146pt;}
.ls20{letter-spacing:0.894346pt;}
.ls1c{letter-spacing:2.652304pt;}
.ls6{letter-spacing:2.653541pt;}
.ls7{letter-spacing:2.655406pt;}
.ls1d{letter-spacing:5.262173pt;}
.ls1e{letter-spacing:12.493333pt;}
.ls17{letter-spacing:14.344252pt;}
.ls1b{letter-spacing:14.756153pt;}
.ls18{letter-spacing:15.327993pt;}
.lsa{letter-spacing:15.473486pt;}
.ls8{letter-spacing:15.499404pt;}
.ls9{letter-spacing:15.526819pt;}
.ls25{letter-spacing:17.099784pt;}
.ls24{letter-spacing:17.702819pt;}
.ls22{letter-spacing:18.313012pt;}
.ls10{letter-spacing:18.412215pt;}
.ls1a{letter-spacing:18.562367pt;}
.ls16{letter-spacing:18.638567pt;}
.ls26{letter-spacing:19.328150pt;}
.ls13{letter-spacing:19.612153pt;}
.ls11{letter-spacing:19.638229pt;}
.ls12{letter-spacing:19.665486pt;}
.ls15{letter-spacing:20.145486pt;}
.ls14{letter-spacing:20.157638pt;}
.lsf{letter-spacing:22.723574pt;}
.ls19{letter-spacing:36.793333pt;}
.ws0{word-spacing:-43.097798pt;}
.ws1{word-spacing:-42.666933pt;}
.ws23e{word-spacing:-16.971638pt;}
.ws8{word-spacing:-16.297056pt;}
.ws7b{word-spacing:-14.761181pt;}
.ws17c{word-spacing:-13.605380pt;}
.ws15b{word-spacing:-13.581562pt;}
.ws1b9{word-spacing:-13.104976pt;}
.ws129{word-spacing:-12.498292pt;}
.ws10{word-spacing:-10.775440pt;}
.ws101{word-spacing:-2.912118pt;}
.ws136{word-spacing:-2.911853pt;}
.ws81{word-spacing:-2.911587pt;}
.ws233{word-spacing:-2.593196pt;}
.ws2c1{word-spacing:-2.486765pt;}
.ws109{word-spacing:-2.486499pt;}
.ws135{word-spacing:-2.433735pt;}
.wsad{word-spacing:-2.327091pt;}
.ws153{word-spacing:-2.274221pt;}
.ws150{word-spacing:-2.271638pt;}
.ws163{word-spacing:-2.220925pt;}
.wsac{word-spacing:-2.167577pt;}
.ws1d4{word-spacing:-2.061464pt;}
.ws1af{word-spacing:-1.955352pt;}
.ws159{word-spacing:-1.849186pt;}
.ws82{word-spacing:-1.743020pt;}
.ws15e{word-spacing:-1.742861pt;}
.ws190{word-spacing:-1.583559pt;}
.ws118{word-spacing:-1.477446pt;}
.wsa3{word-spacing:-1.424098pt;}
.ws27b{word-spacing:-1.402578pt;}
.ws247{word-spacing:-1.349761pt;}
.wsdb{word-spacing:-1.317985pt;}
.wsda{word-spacing:-1.317773pt;}
.ws1e5{word-spacing:-1.296412pt;}
.wsae{word-spacing:-1.264637pt;}
.ws179{word-spacing:-1.158524pt;}
.ws146{word-spacing:-1.105176pt;}
.ws263{word-spacing:-1.052358pt;}
.ws251{word-spacing:-1.052093pt;}
.ws57{word-spacing:-1.037477pt;}
.ws2c7{word-spacing:-0.999063pt;}
.ws1a9{word-spacing:-0.999010pt;}
.ws1da{word-spacing:-0.945715pt;}
.ws52{word-spacing:-0.907083pt;}
.ws7d{word-spacing:-0.892897pt;}
.ws198{word-spacing:-0.892366pt;}
.ws56{word-spacing:-0.890076pt;}
.ws6a{word-spacing:-0.839602pt;}
.ws134{word-spacing:-0.839549pt;}
.wsf4{word-spacing:-0.786253pt;}
.wsbd{word-spacing:-0.786200pt;}
.ws62{word-spacing:-0.573922pt;}
.ws50{word-spacing:-0.544250pt;}
.ws1dc{word-spacing:-0.521158pt;}
.ws1a5{word-spacing:-0.520627pt;}
.ws274{word-spacing:-0.499638pt;}
.ws19a{word-spacing:-0.467331pt;}
.ws6c{word-spacing:-0.467278pt;}
.ws53{word-spacing:-0.447872pt;}
.wsee{word-spacing:-0.414514pt;}
.ws1ac{word-spacing:-0.414461pt;}
.wsed{word-spacing:-0.413983pt;}
.ws58{word-spacing:-0.413857pt;}
.ws166{word-spacing:-0.255053pt;}
.ws6b{word-spacing:-0.255000pt;}
.wsf2{word-spacing:-0.202236pt;}
.ws24e{word-spacing:-0.201917pt;}
.ws2cf{word-spacing:-0.180556pt;}
.wse6{word-spacing:-0.148887pt;}
.ws2bd{word-spacing:-0.096070pt;}
.wse3{word-spacing:-0.095592pt;}
.ws151{word-spacing:-0.053136pt;}
.wsf{word-spacing:-0.047819pt;}
.ws1b4{word-spacing:-0.047174pt;}
.ws4f{word-spacing:0.000000pt;}
.wsd1{word-spacing:0.010627pt;}
.ws55{word-spacing:0.039685pt;}
.ws1de{word-spacing:0.063869pt;}
.ws71{word-spacing:0.063923pt;}
.ws185{word-spacing:0.107550pt;}
.ws12{word-spacing:0.111639pt;}
.ws196{word-spacing:0.116687pt;}
.wsbe{word-spacing:0.116740pt;}
.ws2c5{word-spacing:0.138154pt;}
.ws1ed{word-spacing:0.170035pt;}
.ws1a0{word-spacing:0.223331pt;}
.ws51{word-spacing:0.260786pt;}
.ws234{word-spacing:0.340017pt;}
.ws2ad{word-spacing:0.347607pt;}
.ws164{word-spacing:0.360020pt;}
.ws191{word-spacing:0.382314pt;}
.ws1e8{word-spacing:0.382579pt;}
.ws266{word-spacing:0.382845pt;}
.ws2bc{word-spacing:0.435715pt;}
.ws17d{word-spacing:0.450672pt;}
.ws24d{word-spacing:0.456970pt;}
.ws25e{word-spacing:0.457182pt;}
.ws17b{word-spacing:0.460341pt;}
.ws10b{word-spacing:0.488957pt;}
.ws10c{word-spacing:0.541775pt;}
.wsb2{word-spacing:0.541828pt;}
.wse9{word-spacing:0.542306pt;}
.ws15{word-spacing:0.589544pt;}
.wsf1{word-spacing:0.595070pt;}
.ws140{word-spacing:0.595123pt;}
.ws2b1{word-spacing:0.616112pt;}
.ws54{word-spacing:0.634958pt;}
.ws83{word-spacing:0.648525pt;}
.ws237{word-spacing:0.701289pt;}
.ws44{word-spacing:0.754531pt;}
.ws212{word-spacing:0.754637pt;}
.ws69{word-spacing:0.807348pt;}
.wsaf{word-spacing:0.807455pt;}
.ws18d{word-spacing:0.807667pt;}
.ws21d{word-spacing:0.860803pt;}
.ws10e{word-spacing:0.914045pt;}
.ws279{word-spacing:0.966810pt;}
.wsd0{word-spacing:0.967341pt;}
.wsb4{word-spacing:1.020158pt;}
.ws21b{word-spacing:1.020211pt;}
.ws162{word-spacing:1.072975pt;}
.ws161{word-spacing:1.073400pt;}
.ws137{word-spacing:1.073613pt;}
.wsb8{word-spacing:1.126271pt;}
.ws17{word-spacing:1.227388pt;}
.ws2cb{word-spacing:1.232436pt;}
.ws2cc{word-spacing:1.232543pt;}
.ws100{word-spacing:1.232968pt;}
.ws211{word-spacing:1.254169pt;}
.ws130{word-spacing:1.285732pt;}
.ws2ca{word-spacing:1.307305pt;}
.ws13a{word-spacing:1.338549pt;}
.wsdc{word-spacing:1.339080pt;}
.ws2d7{word-spacing:1.339187pt;}
.ws12f{word-spacing:1.392163pt;}
.ws23b{word-spacing:1.445246pt;}
.ws235{word-spacing:1.455767pt;}
.ws2a1{word-spacing:1.466554pt;}
.ws1a3{word-spacing:1.498541pt;}
.ws23a{word-spacing:1.519743pt;}
.ws5e{word-spacing:1.551465pt;}
.ws1d8{word-spacing:1.551571pt;}
.ws75{word-spacing:1.658162pt;}
.ws76{word-spacing:1.710820pt;}
.ws245{word-spacing:1.710926pt;}
.ws252{word-spacing:1.721606pt;}
.ws19c{word-spacing:1.764115pt;}
.ws156{word-spacing:1.764168pt;}
.ws2d6{word-spacing:1.764275pt;}
.ws264{word-spacing:1.774796pt;}
.ws8d{word-spacing:1.816932pt;}
.ws2a3{word-spacing:1.817251pt;}
.ws4c{word-spacing:1.817517pt;}
.ws79{word-spacing:1.870281pt;}
.wscf{word-spacing:1.923629pt;}
.wsa4{word-spacing:1.923736pt;}
.ws2a6{word-spacing:1.934150pt;}
.ws145{word-spacing:1.976447pt;}
.ws19b{word-spacing:2.029742pt;}
.ws70{word-spacing:2.082719pt;}
.ws1fc{word-spacing:2.083091pt;}
.wsbf{word-spacing:2.135908pt;}
.ws250{word-spacing:2.157428pt;}
.wsd9{word-spacing:2.189203pt;}
.ws15a{word-spacing:2.189363pt;}
.ws23{word-spacing:2.237079pt;}
.ws7f{word-spacing:2.294944pt;}
.ws138{word-spacing:2.295369pt;}
.ws80{word-spacing:2.295528pt;}
.ws27c{word-spacing:2.295900pt;}
.wsc1{word-spacing:2.348664pt;}
.ws21e{word-spacing:2.401482pt;}
.ws91{word-spacing:2.454830pt;}
.ws265{word-spacing:2.465351pt;}
.ws165{word-spacing:2.465510pt;}
.ws12c{word-spacing:2.483102pt;}
.ws12b{word-spacing:2.483552pt;}
.ws104{word-spacing:2.507647pt;}
.ws1a4{word-spacing:2.508179pt;}
.ws24f{word-spacing:2.518646pt;}
.ws12d{word-spacing:2.528272pt;}
.ws12e{word-spacing:2.528722pt;}
.ws243{word-spacing:2.529433pt;}
.ws12a{word-spacing:2.531205pt;}
.ws177{word-spacing:2.560943pt;}
.ws1e1{word-spacing:2.582410pt;}
.ws1cf{word-spacing:2.603635pt;}
.ws1be{word-spacing:2.604107pt;}
.ws123{word-spacing:2.614291pt;}
.ws2be{word-spacing:2.624918pt;}
.ws64{word-spacing:2.667108pt;}
.wsd8{word-spacing:2.667427pt;}
.wse4{word-spacing:2.720404pt;}
.ws6e{word-spacing:2.720563pt;}
.ws1d6{word-spacing:2.773380pt;}
.ws188{word-spacing:2.773699pt;}
.ws6f{word-spacing:2.773912pt;}
.ws297{word-spacing:2.794741pt;}
.ws296{word-spacing:2.795007pt;}
.ws23c{word-spacing:2.826729pt;}
.ws24a{word-spacing:2.826835pt;}
.ws132{word-spacing:2.879546pt;}
.ws201{word-spacing:2.879971pt;}
.ws259{word-spacing:2.896842pt;}
.ws108{word-spacing:2.932682pt;}
.ws8f{word-spacing:2.932842pt;}
.ws3d{word-spacing:2.933107pt;}
.ws4e{word-spacing:2.933213pt;}
.wsbc{word-spacing:2.933373pt;}
.ws16b{word-spacing:2.943429pt;}
.ws110{word-spacing:2.986031pt;}
.ws157{word-spacing:2.986243pt;}
.ws4d{word-spacing:3.039379pt;}
.ws2ae{word-spacing:3.049900pt;}
.ws1e9{word-spacing:3.050006pt;}
.ws2bb{word-spacing:3.060368pt;}
.ws8a{word-spacing:3.092143pt;}
.wsbb{word-spacing:3.092356pt;}
.wsba{word-spacing:3.145492pt;}
.ws42{word-spacing:3.145651pt;}
.ws21a{word-spacing:3.156066pt;}
.ws285{word-spacing:3.198840pt;}
.ws86{word-spacing:3.199000pt;}
.ws94{word-spacing:3.199372pt;}
.ws1c1{word-spacing:3.217276pt;}
.ws292{word-spacing:3.251604pt;}
.ws97{word-spacing:3.251817pt;}
.ws96{word-spacing:3.252348pt;}
.ws93{word-spacing:3.304953pt;}
.ws199{word-spacing:3.305059pt;}
.ws77{word-spacing:3.305165pt;}
.ws16c{word-spacing:3.305484pt;}
.ws1c0{word-spacing:3.311530pt;}
.ws1ee{word-spacing:3.368822pt;}
.wsf5{word-spacing:3.411066pt;}
.wsfe{word-spacing:3.464414pt;}
.ws27e{word-spacing:3.485456pt;}
.ws1a{word-spacing:3.512236pt;}
.ws1fa{word-spacing:3.517231pt;}
.ws1e4{word-spacing:3.527752pt;}
.wsa7{word-spacing:3.570580pt;}
.wsa6{word-spacing:3.570739pt;}
.ws27a{word-spacing:3.581632pt;}
.ws84{word-spacing:3.623556pt;}
.wsb5{word-spacing:3.623875pt;}
.ws171{word-spacing:3.655787pt;}
.ws78{word-spacing:3.676905pt;}
.ws173{word-spacing:3.677011pt;}
.ws85{word-spacing:3.677436pt;}
.ws19{word-spacing:3.724993pt;}
.ws106{word-spacing:3.730041pt;}
.ws73{word-spacing:3.730200pt;}
.ws2b{word-spacing:3.737915pt;}
.wsdf{word-spacing:3.783283pt;}
.ws1dd{word-spacing:3.783336pt;}
.ws72{word-spacing:3.783549pt;}
.ws49{word-spacing:3.836154pt;}
.ws99{word-spacing:3.836366pt;}
.ws30{word-spacing:3.836419pt;}
.ws18{word-spacing:3.883923pt;}
.ws269{word-spacing:3.889502pt;}
.ws2e2{word-spacing:3.910810pt;}
.wscd{word-spacing:3.942479pt;}
.ws1e2{word-spacing:3.942851pt;}
.ws272{word-spacing:3.953372pt;}
.ws2d8{word-spacing:3.953531pt;}
.ws29a{word-spacing:3.964158pt;}
.wsa8{word-spacing:3.995615pt;}
.ws117{word-spacing:3.996146pt;}
.ws1ae{word-spacing:4.048963pt;}
.ws17a{word-spacing:4.049176pt;}
.wseb{word-spacing:4.101780pt;}
.ws1e3{word-spacing:4.102099pt;}
.ws11a{word-spacing:4.102312pt;}
.ws257{word-spacing:4.123354pt;}
.ws167{word-spacing:4.155076pt;}
.wsb7{word-spacing:4.208637pt;}
.ws15d{word-spacing:4.227654pt;}
.ws16d{word-spacing:4.261242pt;}
.ws200{word-spacing:4.261507pt;}
.ws11{word-spacing:4.271495pt;}
.ws246{word-spacing:4.271762pt;}
.ws1ef{word-spacing:4.377928pt;}
.ws59{word-spacing:4.420703pt;}
.ws1fb{word-spacing:4.431542pt;}
.ws1a2{word-spacing:4.474051pt;}
.wsc6{word-spacing:4.526815pt;}
.ws3b{word-spacing:4.527081pt;}
.ws11e{word-spacing:4.527347pt;}
.ws26d{word-spacing:4.548388pt;}
.ws29b{word-spacing:4.580164pt;}
.ws6d{word-spacing:4.580376pt;}
.ws192{word-spacing:4.580695pt;}
.ws68{word-spacing:4.632981pt;}
.wsc4{word-spacing:4.633512pt;}
.ws67{word-spacing:4.686276pt;}
.ws226{word-spacing:4.686595pt;}
.wsf3{word-spacing:4.739625pt;}
.ws2a2{word-spacing:4.766666pt;}
.ws20{word-spacing:4.787394pt;}
.ws7c{word-spacing:4.792442pt;}
.ws13c{word-spacing:4.792973pt;}
.wsab{word-spacing:4.846003pt;}
.ws92{word-spacing:4.898820pt;}
.wsff{word-spacing:4.899086pt;}
.ws21f{word-spacing:4.909820pt;}
.ws8c{word-spacing:4.951903pt;}
.ws2c0{word-spacing:4.952966pt;}
.ws26{word-spacing:4.999673pt;}
.ws29{word-spacing:4.999832pt;}
.ws74{word-spacing:5.005199pt;}
.ws9f{word-spacing:5.005464pt;}
.ws268{word-spacing:5.026772pt;}
.ws1f{word-spacing:5.053021pt;}
.ws1a8{word-spacing:5.058016pt;}
.wsa5{word-spacing:5.058547pt;}
.ws1bf{word-spacing:5.104619pt;}
.ws13{word-spacing:5.106370pt;}
.wsb1{word-spacing:5.111896pt;}
.ws21{word-spacing:5.159134pt;}
.ws1d5{word-spacing:5.164819pt;}
.wsb3{word-spacing:5.164925pt;}
.ws36{word-spacing:5.165244pt;}
.ws8e{word-spacing:5.217477pt;}
.wsd2{word-spacing:5.217743pt;}
.ws1a7{word-spacing:5.218008pt;}
.ws2aa{word-spacing:5.228582pt;}
.ws20f{word-spacing:5.229114pt;}
.ws220{word-spacing:5.239050pt;}
.ws2bf{word-spacing:5.239369pt;}
.ws23d{word-spacing:5.281400pt;}
.ws287{word-spacing:5.292346pt;}
.ws158{word-spacing:5.324440pt;}
.ws202{word-spacing:5.334854pt;}
.ws22{word-spacing:5.371943pt;}
.ws205{word-spacing:5.377363pt;}
.ws98{word-spacing:5.377469pt;}
.ws227{word-spacing:5.387512pt;}
.ws25a{word-spacing:5.387990pt;}
.ws295{word-spacing:5.388044pt;}
.wscb{word-spacing:5.430287pt;}
.ws133{word-spacing:5.430499pt;}
.ws126{word-spacing:5.430818pt;}
.ws270{word-spacing:5.440861pt;}
.ws2d2{word-spacing:5.441073pt;}
.ws203{word-spacing:5.441126pt;}
.ws26c{word-spacing:5.441392pt;}
.ws267{word-spacing:5.451860pt;}
.ws89{word-spacing:5.483370pt;}
.wse8{word-spacing:5.483635pt;}
.ws2cd{word-spacing:5.494156pt;}
.ws219{word-spacing:5.494262pt;}
.ws18c{word-spacing:5.536399pt;}
.wsde{word-spacing:5.536984pt;}
.ws2da{word-spacing:5.611108pt;}
.ws115{word-spacing:5.642565pt;}
.ws286{word-spacing:5.653617pt;}
.ws204{word-spacing:5.664457pt;}
.wsca{word-spacing:5.695914pt;}
.wsfa{word-spacing:5.696445pt;}
.wsc8{word-spacing:5.748996pt;}
.wsc9{word-spacing:5.749209pt;}
.ws15f{word-spacing:5.749315pt;}
.ws2b7{word-spacing:5.802292pt;}
.ws176{word-spacing:5.802451pt;}
.ws275{word-spacing:5.802557pt;}
.ws24{word-spacing:5.849795pt;}
.ws61{word-spacing:5.854843pt;}
.ws144{word-spacing:5.855587pt;}
.ws141{word-spacing:5.866427pt;}
.ws5f{word-spacing:5.908139pt;}
.ws18e{word-spacing:5.908670pt;}
.ws28c{word-spacing:5.909201pt;}
.ws122{word-spacing:5.919244pt;}
.ws13b{word-spacing:5.919350pt;}
.wsf6{word-spacing:5.919775pt;}
.wsea{word-spacing:5.962019pt;}
.ws46{word-spacing:6.014836pt;}
.ws48{word-spacing:6.015367pt;}
.ws232{word-spacing:6.068184pt;}
.ws11b{word-spacing:6.120948pt;}
.ws1c{word-spacing:6.169302pt;}
.ws221{word-spacing:6.174616pt;}
.ws143{word-spacing:6.227539pt;}
.wsec{word-spacing:6.280410pt;}
.ws1ad{word-spacing:6.280675pt;}
.ws102{word-spacing:6.280941pt;}
.ws26a{word-spacing:6.291515pt;}
.ws25c{word-spacing:6.301930pt;}
.ws10a{word-spacing:6.333758pt;}
.wsd4{word-spacing:6.386575pt;}
.wsd5{word-spacing:6.386841pt;}
.ws148{word-spacing:6.386947pt;}
.ws178{word-spacing:6.387107pt;}
.wsd6{word-spacing:6.387425pt;}
.ws3c{word-spacing:6.439871pt;}
.wsd3{word-spacing:6.440083pt;}
.wsc5{word-spacing:6.440402pt;}
.ws37{word-spacing:6.493219pt;}
.wsb9{word-spacing:6.493538pt;}
.ws2c6{word-spacing:6.514474pt;}
.ws28{word-spacing:6.540988pt;}
.ws18a{word-spacing:6.546036pt;}
.ws2a4{word-spacing:6.546355pt;}
.wsc3{word-spacing:6.546568pt;}
.ws1d{word-spacing:6.593806pt;}
.ws174{word-spacing:6.652149pt;}
.ws218{word-spacing:6.652627pt;}
.ws16e{word-spacing:6.663254pt;}
.ws1a1{word-spacing:6.705763pt;}
.ws10f{word-spacing:6.706029pt;}
.ws262{word-spacing:6.758846pt;}
.ws65{word-spacing:6.811610pt;}
.ws254{word-spacing:6.811929pt;}
.wsf9{word-spacing:6.812141pt;}
.ws193{word-spacing:6.865171pt;}
.ws7a{word-spacing:6.865277pt;}
.ws125{word-spacing:6.865490pt;}
.ws114{word-spacing:6.918307pt;}
.ws1e{word-spacing:6.965811pt;}
.ws113{word-spacing:6.971071pt;}
.ws1a6{word-spacing:6.971603pt;}
.wsfd{word-spacing:7.024420pt;}
.wsa9{word-spacing:7.024951pt;}
.ws7{word-spacing:7.038913pt;}
.ws9{word-spacing:7.039104pt;}
.ws2c9{word-spacing:7.088077pt;}
.ws5{word-spacing:7.102418pt;}
.ws4{word-spacing:7.102864pt;}
.ws6{word-spacing:7.103055pt;}
.ws155{word-spacing:7.130373pt;}
.ws25d{word-spacing:7.141478pt;}
.ws2af{word-spacing:7.141638pt;}
.ws261{word-spacing:7.151999pt;}
.wsf0{word-spacing:7.183881pt;}
.ws189{word-spacing:7.237017pt;}
.ws258{word-spacing:7.258378pt;}
.ws2b8{word-spacing:7.290047pt;}
.ws88{word-spacing:7.290365pt;}
.ws2b3{word-spacing:7.300886pt;}
.ws63{word-spacing:7.343342pt;}
.ws18b{word-spacing:7.396531pt;}
.ws103{word-spacing:7.396691pt;}
.ws169{word-spacing:7.449508pt;}
.ws139{word-spacing:7.502803pt;}
.ws8b{word-spacing:7.555992pt;}
.ws25b{word-spacing:7.560306pt;}
.ws2e3{word-spacing:7.577619pt;}
.wsaa{word-spacing:7.609500pt;}
.ws11f{word-spacing:7.662317pt;}
.ws16{word-spacing:7.709821pt;}
.ws13e{word-spacing:7.715082pt;}
.ws284{word-spacing:7.715613pt;}
.ws197{word-spacing:7.768483pt;}
.wsd7{word-spacing:7.821247pt;}
.ws25f{word-spacing:7.821566pt;}
.ws1aa{word-spacing:7.821779pt;}
.ws209{word-spacing:7.927019pt;}
.ws5b{word-spacing:7.927732pt;}
.ws5a{word-spacing:7.927891pt;}
.ws239{word-spacing:7.938253pt;}
.ws217{word-spacing:7.949411pt;}
.ws18f{word-spacing:7.980708pt;}
.ws34{word-spacing:7.981240pt;}
.ws2b4{word-spacing:7.991229pt;}
.ws1bd{word-spacing:8.029416pt;}
.wsdd{word-spacing:8.034535pt;}
.wsb6{word-spacing:8.086821pt;}
.ws95{word-spacing:8.087193pt;}
.ws194{word-spacing:8.087299pt;}
.ws10d{word-spacing:8.087352pt;}
.ws1fd{word-spacing:8.108394pt;}
.ws25{word-spacing:8.135175pt;}
.ws124{word-spacing:8.140701pt;}
.ws231{word-spacing:8.161690pt;}
.ws187{word-spacing:8.193518pt;}
.ws1d7{word-spacing:8.193571pt;}
.wsc2{word-spacing:8.246654pt;}
.ws230{word-spacing:8.246707pt;}
.ws2d5{word-spacing:8.267749pt;}
.ws120{word-spacing:8.299631pt;}
.ws175{word-spacing:8.300162pt;}
.ws14a{word-spacing:8.352979pt;}
.ws2ba{word-spacing:8.406275pt;}
.ws2dc{word-spacing:8.438488pt;}
.ws14{word-spacing:8.453831pt;}
.ws2a0{word-spacing:8.459092pt;}
.ws16a{word-spacing:8.471933pt;}
.ws2d0{word-spacing:8.501468pt;}
.wsce{word-spacing:8.511909pt;}
.ws147{word-spacing:8.512387pt;}
.ws4a{word-spacing:8.512440pt;}
.ws1d9{word-spacing:8.565098pt;}
.ws87{word-spacing:8.565629pt;}
.ws33{word-spacing:8.565736pt;}
.ws16f{word-spacing:8.576150pt;}
.wsfc{word-spacing:8.618553pt;}
.ws2e{word-spacing:8.666466pt;}
.ws2d{word-spacing:8.668281pt;}
.ws2a{word-spacing:8.668669pt;}
.ws2c{word-spacing:8.672231pt;}
.ws14e{word-spacing:8.755215pt;}
.ws152{word-spacing:8.767440pt;}
.ws14c{word-spacing:8.767653pt;}
.ws290{word-spacing:8.785506pt;}
.ws14d{word-spacing:8.819938pt;}
.ws1ff{word-spacing:8.831256pt;}
.ws2a5{word-spacing:8.883648pt;}
.ws240{word-spacing:8.884711pt;}
.ws225{word-spacing:8.905594pt;}
.ws2b2{word-spacing:8.990717pt;}
.ws26e{word-spacing:8.990824pt;}
.ws271{word-spacing:9.011812pt;}
.ws3a{word-spacing:9.043641pt;}
.ws2c2{word-spacing:9.053801pt;}
.ws1ea{word-spacing:9.054162pt;}
.ws39{word-spacing:9.096883pt;}
.ws288{word-spacing:9.096936pt;}
.ws253{word-spacing:9.117978pt;}
.ws241{word-spacing:9.150179pt;}
.ws19e{word-spacing:9.150285pt;}
.ws1c3{word-spacing:9.161077pt;}
.wscc{word-spacing:9.202571pt;}
.ws1f3{word-spacing:9.210705pt;}
.ws19f{word-spacing:9.255866pt;}
.ws11d{word-spacing:9.256451pt;}
.ws26f{word-spacing:9.266440pt;}
.ws2d1{word-spacing:9.266812pt;}
.ws222{word-spacing:9.309215pt;}
.ws1f2{word-spacing:9.309427pt;}
.ws14f{word-spacing:9.309640pt;}
.ws1b{word-spacing:9.357356pt;}
.ws23f{word-spacing:9.383552pt;}
.ws2b9{word-spacing:9.426326pt;}
.ws2ac{word-spacing:9.521971pt;}
.ws278{word-spacing:9.522024pt;}
.ws195{word-spacing:9.574842pt;}
.ws20e{word-spacing:9.575267pt;}
.ws3f{word-spacing:9.628137pt;}
.ws2a9{word-spacing:9.628243pt;}
.ws168{word-spacing:9.645266pt;}
.wsb0{word-spacing:9.681379pt;}
.wsc0{word-spacing:9.734728pt;}
.ws7e{word-spacing:9.787651pt;}
.ws15c{word-spacing:9.789319pt;}
.ws142{word-spacing:9.893764pt;}
.ws1d3{word-spacing:9.893923pt;}
.ws29c{word-spacing:9.915284pt;}
.ws1f9{word-spacing:9.947112pt;}
.ws2ab{word-spacing:10.021450pt;}
.ws5c{word-spacing:10.053172pt;}
.wsc7{word-spacing:10.053225pt;}
.ws20d{word-spacing:10.074798pt;}
.wsf8{word-spacing:10.106573pt;}
.ws2a8{word-spacing:10.127722pt;}
.ws2df{word-spacing:10.159284pt;}
.ws1db{word-spacing:10.159338pt;}
.ws4b{word-spacing:10.159869pt;}
.ws21c{word-spacing:10.180858pt;}
.ws32{word-spacing:10.212686pt;}
.ws2e1{word-spacing:10.276449pt;}
.ws1b1{word-spacing:10.372147pt;}
.ws19d{word-spacing:10.424911pt;}
.ws29d{word-spacing:10.425283pt;}
.ws2dd{word-spacing:10.489259pt;}
.ws1f5{word-spacing:10.520312pt;}
.wse7{word-spacing:10.531077pt;}
.ws66{word-spacing:10.531608pt;}
.ws213{word-spacing:10.584426pt;}
.ws277{word-spacing:10.584957pt;}
.ws28a{word-spacing:10.637774pt;}
.ws236{word-spacing:10.765460pt;}
.ws112{word-spacing:10.797235pt;}
.ws2c4{word-spacing:10.807225pt;}
.ws9e{word-spacing:10.956643pt;}
.wsfb{word-spacing:10.956696pt;}
.ws28d{word-spacing:10.967270pt;}
.ws1e7{word-spacing:11.009779pt;}
.ws289{word-spacing:11.073383pt;}
.ws2c3{word-spacing:11.073542pt;}
.ws13f{word-spacing:11.115573pt;}
.ws248{word-spacing:11.116051pt;}
.ws90{word-spacing:11.116104pt;}
.ws242{word-spacing:11.126625pt;}
.ws276{word-spacing:11.137146pt;}
.ws280{word-spacing:11.169506pt;}
.ws1b3{word-spacing:11.222270pt;}
.ws1f4{word-spacing:11.232950pt;}
.ws244{word-spacing:11.275087pt;}
.ws105{word-spacing:11.275619pt;}
.ws160{word-spacing:11.277266pt;}
.ws22e{word-spacing:11.296714pt;}
.ws1b0{word-spacing:11.328383pt;}
.ws116{word-spacing:11.381784pt;}
.ws1b2{word-spacing:11.434867pt;}
.ws1f0{word-spacing:11.445654pt;}
.ws1f1{word-spacing:11.456122pt;}
.ws154{word-spacing:11.472720pt;}
.ws1e6{word-spacing:11.509258pt;}
.wse0{word-spacing:11.594541pt;}
.ws1ab{word-spacing:11.647358pt;}
.ws1ec{word-spacing:11.700653pt;}
.ws11c{word-spacing:11.700707pt;}
.ws9b{word-spacing:11.753471pt;}
.ws1f6{word-spacing:11.799124pt;}
.ws210{word-spacing:11.801791pt;}
.ws1df{word-spacing:11.804458pt;}
.ws26b{word-spacing:11.870157pt;}
.wsa2{word-spacing:11.912932pt;}
.ws13d{word-spacing:11.966280pt;}
.ws119{word-spacing:12.019098pt;}
.ws2e4{word-spacing:12.030150pt;}
.ws206{word-spacing:12.072499pt;}
.ws224{word-spacing:12.136262pt;}
.ws45{word-spacing:12.178559pt;}
.ws3e{word-spacing:12.178771pt;}
.ws294{word-spacing:12.189398pt;}
.ws1c4{word-spacing:12.227396pt;}
.ws1eb{word-spacing:12.306776pt;}
.ws31{word-spacing:12.338020pt;}
.ws2d4{word-spacing:12.359115pt;}
.ws2d3{word-spacing:12.359646pt;}
.wsf7{word-spacing:12.391368pt;}
.ws107{word-spacing:12.444186pt;}
.ws2de{word-spacing:12.571924pt;}
.ws299{word-spacing:12.603647pt;}
.ws24b{word-spacing:12.667622pt;}
.ws41{word-spacing:12.763108pt;}
.ws28e{word-spacing:12.773629pt;}
.ws24c{word-spacing:12.816403pt;}
.ws20c{word-spacing:12.869220pt;}
.ws20a{word-spacing:12.869539pt;}
.ws180{word-spacing:12.890437pt;}
.ws17f{word-spacing:12.902436pt;}
.wse1{word-spacing:12.922569pt;}
.ws131{word-spacing:12.922622pt;}
.ws43{word-spacing:13.082083pt;}
.ws1f8{word-spacing:13.135219pt;}
.ws281{word-spacing:13.135379pt;}
.ws38{word-spacing:13.241491pt;}
.ws172{word-spacing:13.251753pt;}
.ws9c{word-spacing:13.294308pt;}
.wsa0{word-spacing:13.348188pt;}
.ws238{word-spacing:13.358178pt;}
.ws216{word-spacing:13.474758pt;}
.ws2db{word-spacing:13.560467pt;}
.ws9d{word-spacing:13.613284pt;}
.ws255{word-spacing:13.613443pt;}
.ws1d0{word-spacing:13.690030pt;}
.ws1f7{word-spacing:13.793681pt;}
.ws207{word-spacing:13.836561pt;}
.ws111{word-spacing:13.932153pt;}
.wsef{word-spacing:13.985501pt;}
.ws2c8{word-spacing:14.181790pt;}
.ws35{word-spacing:14.197780pt;}
.ws9a{word-spacing:14.197833pt;}
.ws28f{word-spacing:14.219194pt;}
.ws184{word-spacing:14.261407pt;}
.wsa1{word-spacing:14.357294pt;}
.ws20b{word-spacing:14.527382pt;}
.wse2{word-spacing:14.569519pt;}
.ws1d2{word-spacing:14.680545pt;}
.ws282{word-spacing:14.792850pt;}
.ws27{word-spacing:15.073015pt;}
.ws283{word-spacing:15.122771pt;}
.ws2b6{word-spacing:15.150666pt;}
.ws2b5{word-spacing:15.175642pt;}
.ws256{word-spacing:15.271233pt;}
.ws182{word-spacing:15.289793pt;}
.wse5{word-spacing:15.420173pt;}
.ws17e{word-spacing:15.434191pt;}
.ws181{word-spacing:15.436768pt;}
.ws2a7{word-spacing:15.494511pt;}
.ws298{word-spacing:15.494723pt;}
.ws5d{word-spacing:15.632452pt;}
.ws2b0{word-spacing:15.866410pt;}
.ws1cb{word-spacing:16.001610pt;}
.ws2ce{word-spacing:16.026243pt;}
.ws1e0{word-spacing:16.132090pt;}
.ws1c2{word-spacing:16.142708pt;}
.ws14b{word-spacing:16.164184pt;}
.wsc{word-spacing:16.306118pt;}
.wsa{word-spacing:16.306309pt;}
.wsb{word-spacing:16.353793pt;}
.wsd{word-spacing:16.354127pt;}
.wse{word-spacing:16.354319pt;}
.ws121{word-spacing:16.748148pt;}
.ws22b{word-spacing:16.801603pt;}
.ws27d{word-spacing:16.918343pt;}
.ws1b7{word-spacing:17.643034pt;}
.ws60{word-spacing:17.705500pt;}
.ws1b6{word-spacing:18.020852pt;}
.ws47{word-spacing:18.130003pt;}
.ws1ca{word-spacing:18.501651pt;}
.ws40{word-spacing:18.555091pt;}
.ws149{word-spacing:19.086292pt;}
.ws170{word-spacing:19.139109pt;}
.ws29f{word-spacing:20.042899pt;}
.ws208{word-spacing:20.064154pt;}
.ws215{word-spacing:20.372342pt;}
.ws1bc{word-spacing:20.482304pt;}
.ws291{word-spacing:20.542378pt;}
.ws249{word-spacing:20.999347pt;}
.ws228{word-spacing:21.180010pt;}
.ws2d9{word-spacing:21.286494pt;}
.ws1bb{word-spacing:22.134296pt;}
.ws273{word-spacing:22.827226pt;}
.ws22f{word-spacing:23.974963pt;}
.ws1fe{word-spacing:24.094666pt;}
.ws186{word-spacing:24.350496pt;}
.ws1d1{word-spacing:24.398088pt;}
.ws2e0{word-spacing:24.607277pt;}
.ws22a{word-spacing:24.612648pt;}
.ws3{word-spacing:24.865864pt;}
.ws2{word-spacing:24.942682pt;}
.ws28b{word-spacing:25.324352pt;}
.ws22d{word-spacing:25.367233pt;}
.ws29e{word-spacing:25.537162pt;}
.ws260{word-spacing:28.087743pt;}
.ws1ba{word-spacing:28.266509pt;}
.ws183{word-spacing:29.443649pt;}
.ws223{word-spacing:30.456305pt;}
.ws293{word-spacing:30.676382pt;}
.ws27f{word-spacing:31.023095pt;}
.ws1c6{word-spacing:33.691819pt;}
.ws1c9{word-spacing:35.012836pt;}
.ws1c7{word-spacing:35.201297pt;}
.ws1c5{word-spacing:35.531327pt;}
.ws1ce{word-spacing:44.117162pt;}
.ws128{word-spacing:49.987030pt;}
.ws2f{word-spacing:53.838944pt;}
.ws1b5{word-spacing:56.615809pt;}
.ws214{word-spacing:57.185850pt;}
.ws1c8{word-spacing:62.987337pt;}
.ws229{word-spacing:71.095019pt;}
.ws22c{word-spacing:73.388556pt;}
.ws1cc{word-spacing:75.441122pt;}
.ws1cd{word-spacing:99.405585pt;}
.ws1b8{word-spacing:133.484873pt;}
.ws127{word-spacing:271.397896pt;}
._3b{margin-left:-28.268299pt;}
._2{margin-left:-6.350037pt;}
._18{margin-left:-5.190662pt;}
._5{margin-left:-3.872014pt;}
._1{margin-left:-2.142106pt;}
._6{margin-left:-1.071239pt;}
._0{width:1.555625pt;}
._3{width:2.526656pt;}
._2d{width:3.790120pt;}
._1b{width:13.912911pt;}
._8{width:14.895703pt;}
._1e{width:16.137069pt;}
._7{width:17.252901pt;}
._d{width:18.435906pt;}
._15{width:19.553570pt;}
._13{width:20.538039pt;}
._1f{width:21.529832pt;}
._a{width:22.989413pt;}
._4{width:24.244702pt;}
._11{width:25.399008pt;}
._33{width:26.584115pt;}
._17{width:27.843370pt;}
._c{width:29.190562pt;}
._f{width:30.553200pt;}
._9{width:32.323567pt;}
._1d{width:34.113365pt;}
._1a{width:35.267198pt;}
._b{width:36.740538pt;}
._2e{width:37.885968pt;}
._16{width:39.269755pt;}
._e{width:40.595691pt;}
._12{width:42.190197pt;}
._2f{width:43.354664pt;}
._1c{width:44.635269pt;}
._39{width:45.604989pt;}
._37{width:46.798587pt;}
._21{width:47.716287pt;}
._22{width:49.029900pt;}
._2c{width:50.319473pt;}
._34{width:51.367725pt;}
._14{width:53.136000pt;}
._10{width:54.464400pt;}
._36{width:55.413184pt;}
._31{width:57.242069pt;}
._20{width:58.449600pt;}
._30{width:61.769654pt;}
._38{width:63.165861pt;}
._29{width:65.007783pt;}
._19{width:70.135872pt;}
._35{width:72.994023pt;}
._24{width:74.160852pt;}
._3a{width:75.209141pt;}
._27{width:84.626213pt;}
._28{width:85.554932pt;}
._2a{width:86.608861pt;}
._2b{width:98.978598pt;}
._26{width:100.266294pt;}
._25{width:102.366620pt;}
._32{width:146.617230pt;}
._23{width:159.222710pt;}
.fs6{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:44.990251pt;}
.fsd{font-size:47.174141pt;}
.fs7{font-size:47.818667pt;}
.fsc{font-size:48.975451pt;}
.fs1{font-size:53.121069pt;}
.fs8{font-size:53.136000pt;}
.fs4{font-size:63.760000pt;}
.fs3{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:2.245333pt;}
.y2{bottom:4.102851pt;}
.y1{bottom:34.113704pt;}
.y4c{bottom:37.226074pt;}
.y4e{bottom:38.216555pt;}
.yb0{bottom:94.486667pt;}
.y3d{bottom:94.488000pt;}
.y3c{bottom:110.428000pt;}
.y4b{bottom:115.817333pt;}
.y3b{bottom:126.368000pt;}
.y1f7{bottom:127.034667pt;}
.y4a{bottom:131.757333pt;}
.y24c{bottom:142.206667pt;}
.y80{bottom:142.308000pt;}
.y3a{bottom:142.309333pt;}
.y17d{bottom:142.704000pt;}
.y1f6{bottom:142.974667pt;}
.y1df{bottom:146.269333pt;}
.y49{bottom:147.697333pt;}
.y24b{bottom:158.146667pt;}
.y22c{bottom:158.148000pt;}
.y7f{bottom:158.248000pt;}
.y39{bottom:158.249333pt;}
.y17c{bottom:158.644000pt;}
.y1f5{bottom:158.914667pt;}
.y280{bottom:160.600000pt;}
.y1de{bottom:162.210667pt;}
.y48{bottom:163.637333pt;}
.y2b3{bottom:174.078667pt;}
.y22b{bottom:174.088000pt;}
.yaf{bottom:174.188000pt;}
.y38{bottom:174.189333pt;}
.y14a{bottom:174.402667pt;}
.y17b{bottom:174.584000pt;}
.y1f4{bottom:175.521333pt;}
.y27f{bottom:176.540000pt;}
.y1dd{bottom:178.150667pt;}
.y47{bottom:179.577333pt;}
.y2b2{bottom:190.018667pt;}
.y22a{bottom:190.028000pt;}
.y37{bottom:190.129333pt;}
.y149{bottom:190.342667pt;}
.y17a{bottom:190.525333pt;}
.y1f3{bottom:191.461333pt;}
.y27e{bottom:192.480000pt;}
.y1dc{bottom:194.090667pt;}
.y46{bottom:195.518667pt;}
.y148{bottom:202.297333pt;}
.y24a{bottom:205.866667pt;}
.y2b1{bottom:205.960000pt;}
.y229{bottom:205.968000pt;}
.y36{bottom:206.069333pt;}
.y147{bottom:206.282667pt;}
.y179{bottom:206.465333pt;}
.y1f2{bottom:207.401333pt;}
.y27d{bottom:208.420000pt;}
.y1db{bottom:210.030667pt;}
.y45{bottom:211.458667pt;}
.yfe{bottom:215.680000pt;}
.y1a2{bottom:216.042667pt;}
.y228{bottom:221.806667pt;}
.y2b0{bottom:221.900000pt;}
.y35{bottom:222.009333pt;}
.y146{bottom:222.222667pt;}
.y178{bottom:222.405333pt;}
.y1f1{bottom:223.342667pt;}
.y27c{bottom:224.361333pt;}
.y1da{bottom:225.970667pt;}
.y44{bottom:227.398667pt;}
.y2af{bottom:237.730667pt;}
.y249{bottom:237.746667pt;}
.y227{bottom:237.748000pt;}
.yae{bottom:237.949333pt;}
.y34{bottom:237.950667pt;}
.y145{bottom:238.162667pt;}
.y177{bottom:238.345333pt;}
.y1f0{bottom:239.282667pt;}
.y27b{bottom:240.301333pt;}
.yfd{bottom:241.232000pt;}
.y43{bottom:243.338667pt;}
.y7e{bottom:246.529333pt;}
.y132{bottom:248.705333pt;}
.y1d9{bottom:250.162667pt;}
.y1a1{bottom:251.074667pt;}
.y2ae{bottom:253.670667pt;}
.y226{bottom:253.688000pt;}
.yad{bottom:253.889333pt;}
.y33{bottom:253.890667pt;}
.y144{bottom:254.104000pt;}
.y176{bottom:254.285333pt;}
.y1ef{bottom:255.889333pt;}
.y27a{bottom:256.241333pt;}
.y42{bottom:259.278667pt;}
.y1a0{bottom:267.014667pt;}
.y225{bottom:269.526667pt;}
.y2ad{bottom:269.610667pt;}
.yac{bottom:269.829333pt;}
.y32{bottom:269.830667pt;}
.y143{bottom:270.044000pt;}
.y175{bottom:270.225333pt;}
.y1ee{bottom:271.829333pt;}
.y279{bottom:274.532000pt;}
.y41{bottom:275.218667pt;}
.yfc{bottom:282.789333pt;}
.y19f{bottom:282.956000pt;}
.y7d{bottom:284.454667pt;}
.y224{bottom:285.466667pt;}
.y2ac{bottom:285.550667pt;}
.y31{bottom:285.770667pt;}
.y142{bottom:285.984000pt;}
.y174{bottom:286.166667pt;}
.y1ed{bottom:287.769333pt;}
.y1d8{bottom:289.768000pt;}
.y278{bottom:290.473333pt;}
.y131{bottom:290.866667pt;}
.y40{bottom:291.160000pt;}
.yfb{bottom:298.730667pt;}
.y19e{bottom:298.896000pt;}
.y7c{bottom:300.394667pt;}
.y223{bottom:301.406667pt;}
.y2ab{bottom:301.490667pt;}
.y30{bottom:301.710667pt;}
.y141{bottom:301.924000pt;}
.y173{bottom:302.106667pt;}
.y1ec{bottom:303.709333pt;}
.y1d7{bottom:305.708000pt;}
.y277{bottom:306.413333pt;}
.y130{bottom:306.806667pt;}
.y3f{bottom:307.100000pt;}
.yfa{bottom:314.670667pt;}
.y19d{bottom:314.836000pt;}
.y7b{bottom:316.334667pt;}
.y248{bottom:317.245333pt;}
.y2aa{bottom:317.321333pt;}
.y222{bottom:317.348000pt;}
.yab{bottom:317.650667pt;}
.y140{bottom:317.864000pt;}
.y172{bottom:318.046667pt;}
.y1eb{bottom:319.649333pt;}
.y1d6{bottom:321.648000pt;}
.y276{bottom:322.353333pt;}
.y12f{bottom:322.748000pt;}
.y3e{bottom:323.040000pt;}
.yf9{bottom:330.610667pt;}
.y19c{bottom:330.776000pt;}
.y7a{bottom:332.276000pt;}
.y247{bottom:333.186667pt;}
.y2a9{bottom:333.261333pt;}
.y221{bottom:333.288000pt;}
.yaa{bottom:333.590667pt;}
.y13f{bottom:333.804000pt;}
.y1ea{bottom:336.256000pt;}
.y1d5{bottom:337.589333pt;}
.y12e{bottom:338.688000pt;}
.y2f{bottom:338.980000pt;}
.y275{bottom:340.645333pt;}
.yd3{bottom:342.530667pt;}
.y171{bottom:343.301333pt;}
.y19b{bottom:346.716000pt;}
.yf8{bottom:347.105333pt;}
.y79{bottom:348.216000pt;}
.y220{bottom:349.126667pt;}
.y2a8{bottom:349.202667pt;}
.ya9{bottom:349.530667pt;}
.y13e{bottom:349.745333pt;}
.y1e9{bottom:352.196000pt;}
.y1d4{bottom:353.529333pt;}
.y12d{bottom:354.628000pt;}
.y274{bottom:356.585333pt;}
.y19a{bottom:362.657333pt;}
.yf7{bottom:363.045333pt;}
.y78{bottom:364.156000pt;}
.y21f{bottom:365.066667pt;}
.y2a7{bottom:365.142667pt;}
.ya8{bottom:365.470667pt;}
.y13d{bottom:365.685333pt;}
.y1e8{bottom:368.136000pt;}
.y1d3{bottom:369.469333pt;}
.y12c{bottom:370.568000pt;}
.y273{bottom:372.525333pt;}
.y170{bottom:376.210846pt;}
.y199{bottom:378.597333pt;}
.yf6{bottom:378.986667pt;}
.yd2{bottom:379.514667pt;}
.y77{bottom:380.096000pt;}
.y246{bottom:380.905333pt;}
.y21e{bottom:381.006667pt;}
.y2a6{bottom:381.082667pt;}
.ya7{bottom:381.412000pt;}
.y1e7{bottom:384.077333pt;}
.y1d2{bottom:385.409333pt;}
.y12b{bottom:386.508000pt;}
.y13c{bottom:390.601333pt;}
.y272{bottom:390.816000pt;}
.y16f{bottom:390.902744pt;}
.y198{bottom:394.537333pt;}
.yf5{bottom:394.926667pt;}
.yd1{bottom:395.456000pt;}
.y76{bottom:396.036000pt;}
.y245{bottom:396.845333pt;}
.y2a5{bottom:396.913333pt;}
.y21d{bottom:396.946667pt;}
.ya6{bottom:397.352000pt;}
.y1e6{bottom:400.682667pt;}
.y1d1{bottom:401.349333pt;}
.y12a{bottom:402.449333pt;}
.y16e{bottom:405.595871pt;}
.y271{bottom:406.757333pt;}
.y2b{bottom:409.984000pt;}
.y197{bottom:410.477333pt;}
.yf4{bottom:410.866667pt;}
.yd0{bottom:411.396000pt;}
.y75{bottom:411.976000pt;}
.y244{bottom:412.785333pt;}
.y2a4{bottom:412.853333pt;}
.y21c{bottom:412.888000pt;}
.ya5{bottom:413.292000pt;}
.y1e5{bottom:416.624000pt;}
.y1d0{bottom:417.289333pt;}
.y129{bottom:419.558667pt;}
.y16d{bottom:420.287769pt;}
.y2e{bottom:420.610667pt;}
.y270{bottom:422.697333pt;}
.y2a{bottom:425.924000pt;}
.y196{bottom:426.417333pt;}
.yf3{bottom:426.806667pt;}
.ycf{bottom:427.336000pt;}
.y13b{bottom:427.692000pt;}
.y74{bottom:427.917333pt;}
.y21b{bottom:428.726667pt;}
.y2a3{bottom:428.793333pt;}
.y2d{bottom:431.237333pt;}
.y1e4{bottom:432.564000pt;}
.y1cf{bottom:433.230667pt;}
.ya4{bottom:434.106667pt;}
.y16c{bottom:434.979667pt;}
.y128{bottom:435.498667pt;}
.y26f{bottom:440.988000pt;}
.y2c{bottom:441.864000pt;}
.y195{bottom:442.357333pt;}
.yf2{bottom:442.746667pt;}
.yce{bottom:443.276000pt;}
.y13a{bottom:443.632000pt;}
.y73{bottom:443.857333pt;}
.y21a{bottom:444.666667pt;}
.y2a2{bottom:444.733333pt;}
.y1e3{bottom:448.504000pt;}
.y1ce{bottom:449.170667pt;}
.y16b{bottom:449.671565pt;}
.ya3{bottom:450.046667pt;}
.y127{bottom:451.438667pt;}
.y26e{bottom:456.928000pt;}
.y29{bottom:457.805333pt;}
.y194{bottom:458.298667pt;}
.yf1{bottom:458.686667pt;}
.ycd{bottom:459.216000pt;}
.y139{bottom:459.572000pt;}
.y72{bottom:459.797333pt;}
.y219{bottom:460.606667pt;}
.y2a1{bottom:460.674667pt;}
.y16a{bottom:464.363463pt;}
.y1e2{bottom:464.444000pt;}
.y1cd{bottom:465.110667pt;}
.ya2{bottom:465.988000pt;}
.y126{bottom:467.378667pt;}
.y26d{bottom:472.869333pt;}
.y28{bottom:473.745333pt;}
.y193{bottom:474.238667pt;}
.yf0{bottom:474.628000pt;}
.ycc{bottom:475.156000pt;}
.y138{bottom:475.512000pt;}
.y71{bottom:475.737333pt;}
.y243{bottom:476.445333pt;}
.y2a0{bottom:476.505333pt;}
.y218{bottom:476.546667pt;}
.y169{bottom:479.055361pt;}
.y1e1{bottom:480.384000pt;}
.y1cc{bottom:481.050667pt;}
.ya1{bottom:481.928000pt;}
.y125{bottom:483.318667pt;}
.y26c{bottom:488.809333pt;}
.y27{bottom:489.685333pt;}
.y192{bottom:490.178667pt;}
.yef{bottom:490.568000pt;}
.ycb{bottom:491.290667pt;}
.y137{bottom:491.452000pt;}
.y70{bottom:491.677333pt;}
.y242{bottom:492.385333pt;}
.y29f{bottom:492.445333pt;}
.y217{bottom:492.488000pt;}
.y168{bottom:493.748487pt;}
.y1cb{bottom:496.990667pt;}
.ya0{bottom:497.868000pt;}
.y124{bottom:499.260000pt;}
.y26{bottom:505.625333pt;}
.yee{bottom:506.508000pt;}
.y191{bottom:506.868000pt;}
.y26b{bottom:507.100000pt;}
.yca{bottom:507.230667pt;}
.y136{bottom:507.393333pt;}
.y6f{bottom:507.617333pt;}
.y216{bottom:508.326667pt;}
.y29e{bottom:508.385333pt;}
.y167{bottom:508.440385pt;}
.y1e0{bottom:512.930667pt;}
.y1ca{bottom:512.932000pt;}
.y9f{bottom:513.808000pt;}
.y123{bottom:515.200000pt;}
.y25{bottom:521.565333pt;}
.yed{bottom:522.448000pt;}
.y190{bottom:522.808000pt;}
.y26a{bottom:523.040000pt;}
.y166{bottom:523.132283pt;}
.yc9{bottom:523.170667pt;}
.y135{bottom:523.333333pt;}
.y6e{bottom:523.558667pt;}
.y215{bottom:524.266667pt;}
.y29d{bottom:524.325333pt;}
.y1c9{bottom:528.872000pt;}
.y9e{bottom:529.748000pt;}
.y122{bottom:531.140000pt;}
.y24{bottom:537.505333pt;}
.y165{bottom:537.824181pt;}
.yec{bottom:538.388000pt;}
.y18f{bottom:538.749333pt;}
.y269{bottom:538.981333pt;}
.yc8{bottom:539.110667pt;}
.y134{bottom:539.273333pt;}
.y6d{bottom:539.498667pt;}
.y29c{bottom:540.156000pt;}
.y214{bottom:540.206667pt;}
.y9d{bottom:545.688000pt;}
.y121{bottom:548.249333pt;}
.y163{bottom:552.516079pt;}
.y161{bottom:552.516513pt;}
.y23{bottom:553.446667pt;}
.yeb{bottom:554.328000pt;}
.y18e{bottom:554.689333pt;}
.y268{bottom:554.921333pt;}
.yc7{bottom:555.052000pt;}
.y133{bottom:555.213333pt;}
.y6c{bottom:555.438667pt;}
.y241{bottom:556.045333pt;}
.y29b{bottom:556.096000pt;}
.y213{bottom:556.146667pt;}
.y9c{bottom:561.629333pt;}
.y1c8{bottom:562.084510pt;}
.y120{bottom:564.189333pt;}
.y160{bottom:567.202267pt;}
.y164{bottom:567.207977pt;}
.y162{bottom:567.208411pt;}
.y22{bottom:569.386667pt;}
.yea{bottom:570.269333pt;}
.y18d{bottom:570.629333pt;}
.y267{bottom:570.861333pt;}
.yc6{bottom:570.992000pt;}
.y6b{bottom:571.378667pt;}
.y240{bottom:571.985333pt;}
.y29a{bottom:572.036000pt;}
.y212{bottom:572.088000pt;}
.y1c7{bottom:576.237226pt;}
.y9b{bottom:577.569333pt;}
.y11f{bottom:580.129333pt;}
.y15d{bottom:582.384235pt;}
.y15e{bottom:582.390220pt;}
.y21{bottom:585.326667pt;}
.ye9{bottom:586.209333pt;}
.y18c{bottom:586.569333pt;}
.yc5{bottom:586.932000pt;}
.y6a{bottom:587.318667pt;}
.y23f{bottom:587.926667pt;}
.y299{bottom:587.977333pt;}
.y211{bottom:588.028000pt;}
.y266{bottom:589.152000pt;}
.y1c6{bottom:590.388758pt;}
.y9a{bottom:593.509333pt;}
.y15c{bottom:597.076133pt;}
.y15f{bottom:597.082118pt;}
.y20{bottom:601.266667pt;}
.ye8{bottom:602.149333pt;}
.y18b{bottom:602.509333pt;}
.yc4{bottom:602.872000pt;}
.y69{bottom:603.258667pt;}
.y210{bottom:603.866667pt;}
.y298{bottom:603.917333pt;}
.y1c5{bottom:604.540290pt;}
.y265{bottom:605.093333pt;}
.y99{bottom:609.449333pt;}
.y11e{bottom:613.118229pt;}
.y15b{bottom:613.164000pt;}
.y1f{bottom:617.206667pt;}
.ye7{bottom:618.089333pt;}
.y18a{bottom:618.449333pt;}
.y1c4{bottom:618.691822pt;}
.yc3{bottom:618.812000pt;}
.y68{bottom:619.200000pt;}
.y23e{bottom:619.705333pt;}
.y297{bottom:619.748000pt;}
.y20f{bottom:619.806667pt;}
.y264{bottom:621.033333pt;}
.y98{bottom:625.389333pt;}
.y11d{bottom:626.614627pt;}
.y1c3{bottom:632.843354pt;}
.y1e{bottom:633.146667pt;}
.ye6{bottom:634.029333pt;}
.y15a{bottom:634.349333pt;}
.y189{bottom:634.390667pt;}
.yc2{bottom:634.752000pt;}
.y67{bottom:635.140000pt;}
.y23d{bottom:635.645333pt;}
.y296{bottom:635.688000pt;}
.y20e{bottom:635.746667pt;}
.y263{bottom:636.973333pt;}
.y11c{bottom:640.111025pt;}
.y97{bottom:641.329333pt;}
.y1c2{bottom:646.996069pt;}
.y1d{bottom:649.088000pt;}
.ye5{bottom:649.970667pt;}
.y159{bottom:650.289333pt;}
.y188{bottom:650.330667pt;}
.yc1{bottom:650.693333pt;}
.y66{bottom:651.080000pt;}
.y23c{bottom:651.585333pt;}
.y20d{bottom:651.586667pt;}
.y295{bottom:651.628000pt;}
.y262{bottom:652.913333pt;}
.y11b{bottom:653.607423pt;}
.y96{bottom:657.270667pt;}
.y1c1{bottom:661.147601pt;}
.y1c{bottom:665.028000pt;}
.ye4{bottom:665.910667pt;}
.y158{bottom:666.229333pt;}
.y187{bottom:666.270667pt;}
.yc0{bottom:666.633333pt;}
.y65{bottom:667.020000pt;}
.y11a{bottom:667.103821pt;}
.y23b{bottom:667.425333pt;}
.y20c{bottom:667.526667pt;}
.y294{bottom:667.568000pt;}
.y261{bottom:671.205333pt;}
.y95{bottom:673.210667pt;}
.y1c0{bottom:675.299133pt;}
.y119{bottom:680.601348pt;}
.y1b{bottom:680.968000pt;}
.ye3{bottom:681.850667pt;}
.y157{bottom:682.169333pt;}
.y186{bottom:682.210667pt;}
.ybf{bottom:682.573333pt;}
.y64{bottom:682.960000pt;}
.y23a{bottom:683.365333pt;}
.y293{bottom:683.398667pt;}
.y20b{bottom:683.466667pt;}
.y260{bottom:687.145333pt;}
.y1bf{bottom:689.450665pt;}
.y94{bottom:694.025333pt;}
.y118{bottom:694.097746pt;}
.y1a{bottom:696.908000pt;}
.ye2{bottom:697.790667pt;}
.y156{bottom:698.109333pt;}
.y185{bottom:698.150667pt;}
.ybe{bottom:698.513333pt;}
.y63{bottom:698.901333pt;}
.y239{bottom:699.305333pt;}
.y292{bottom:699.338667pt;}
.y20a{bottom:699.406667pt;}
.y25f{bottom:703.085333pt;}
.y1be{bottom:703.602197pt;}
.y117{bottom:707.594144pt;}
.y93{bottom:709.965333pt;}
.y19{bottom:712.848000pt;}
.y155{bottom:714.050667pt;}
.y184{bottom:714.090667pt;}
.ye1{bottom:714.285333pt;}
.ybd{bottom:714.646667pt;}
.y62{bottom:714.841333pt;}
.y238{bottom:715.245333pt;}
.y291{bottom:715.278667pt;}
.y209{bottom:715.346667pt;}
.y1bd{bottom:717.753729pt;}
.y116{bottom:721.090542pt;}
.y25e{bottom:721.376000pt;}
.y92{bottom:725.905333pt;}
.y18{bottom:728.789333pt;}
.y183{bottom:730.032000pt;}
.ye0{bottom:730.225333pt;}
.y154{bottom:730.385333pt;}
.ybc{bottom:730.588000pt;}
.y61{bottom:730.781333pt;}
.y237{bottom:731.185333pt;}
.y208{bottom:731.186667pt;}
.y290{bottom:731.220000pt;}
.y1bc{bottom:731.906445pt;}
.y115{bottom:734.586940pt;}
.y25d{bottom:737.317333pt;}
.y91{bottom:741.846667pt;}
.y17{bottom:744.729333pt;}
.y182{bottom:745.972000pt;}
.y1bb{bottom:746.057977pt;}
.ydf{bottom:746.166667pt;}
.y153{bottom:746.326667pt;}
.ybb{bottom:746.528000pt;}
.y60{bottom:746.721333pt;}
.y236{bottom:747.125333pt;}
.y207{bottom:747.126667pt;}
.y28f{bottom:747.160000pt;}
.y114{bottom:748.083338pt;}
.y25c{bottom:753.257333pt;}
.y90{bottom:757.786667pt;}
.y1ba{bottom:760.209509pt;}
.y16{bottom:760.669333pt;}
.y113{bottom:761.580865pt;}
.y181{bottom:761.912000pt;}
.yde{bottom:762.106667pt;}
.y152{bottom:762.266667pt;}
.yba{bottom:762.468000pt;}
.y5f{bottom:762.661333pt;}
.y235{bottom:762.965333pt;}
.y28e{bottom:762.990667pt;}
.y206{bottom:763.066667pt;}
.y25b{bottom:769.197333pt;}
.y8f{bottom:773.726667pt;}
.y1b9{bottom:774.361041pt;}
.y112{bottom:775.077263pt;}
.y15{bottom:776.609333pt;}
.y180{bottom:777.852000pt;}
.ydd{bottom:778.046667pt;}
.y151{bottom:778.206667pt;}
.yb9{bottom:778.408000pt;}
.y5e{bottom:778.601333pt;}
.y234{bottom:778.905333pt;}
.y28d{bottom:778.930667pt;}
.y205{bottom:779.006667pt;}
.y25a{bottom:785.137333pt;}
.y1b8{bottom:788.512573pt;}
.y111{bottom:788.573661pt;}
.y8e{bottom:789.666667pt;}
.y14{bottom:792.549333pt;}
.y17f{bottom:793.792000pt;}
.ydc{bottom:793.986667pt;}
.y150{bottom:794.146667pt;}
.yb8{bottom:794.348000pt;}
.y5d{bottom:794.542667pt;}
.y204{bottom:794.845333pt;}
.y28c{bottom:794.870667pt;}
.y110{bottom:802.070059pt;}
.y1b7{bottom:802.665289pt;}
.y259{bottom:803.429333pt;}
.y8d{bottom:805.606667pt;}
.y17e{bottom:809.733333pt;}
.ydb{bottom:809.926667pt;}
.y14f{bottom:810.086667pt;}
.yb7{bottom:810.289333pt;}
.y5c{bottom:810.482667pt;}
.y233{bottom:810.785333pt;}
.y203{bottom:810.786667pt;}
.y28b{bottom:810.810667pt;}
.y10f{bottom:815.566457pt;}
.y1b5{bottom:816.816821pt;}
.y258{bottom:819.369333pt;}
.y13{bottom:821.109333pt;}
.y8c{bottom:821.546667pt;}
.yda{bottom:825.868000pt;}
.y14e{bottom:826.026667pt;}
.yb6{bottom:826.229333pt;}
.y5b{bottom:826.422667pt;}
.y28a{bottom:826.641333pt;}
.y232{bottom:826.725333pt;}
.y202{bottom:826.726667pt;}
.y10e{bottom:829.063984pt;}
.y1b4{bottom:830.968353pt;}
.y11{bottom:833.728000pt;}
.y257{bottom:835.309333pt;}
.y12{bottom:837.478667pt;}
.y8b{bottom:837.488000pt;}
.yd9{bottom:841.808000pt;}
.y14d{bottom:841.968000pt;}
.yb5{bottom:842.169333pt;}
.y5a{bottom:842.362667pt;}
.y10d{bottom:842.560382pt;}
.y231{bottom:842.565333pt;}
.y289{bottom:842.581333pt;}
.y201{bottom:842.666667pt;}
.y1b3{bottom:845.119885pt;}
.y8a{bottom:853.428000pt;}
.y256{bottom:853.601333pt;}
.y10{bottom:855.412000pt;}
.y10c{bottom:856.056780pt;}
.yd8{bottom:857.748000pt;}
.y14c{bottom:857.908000pt;}
.yb4{bottom:858.109333pt;}
.y59{bottom:858.302667pt;}
.y230{bottom:858.505333pt;}
.y288{bottom:858.522667pt;}
.y200{bottom:858.606667pt;}
.y1b2{bottom:859.271417pt;}
.yf{bottom:864.945333pt;}
.y89{bottom:869.368000pt;}
.y255{bottom:869.541333pt;}
.y10b{bottom:869.553178pt;}
.y1b6{bottom:873.422949pt;}
.y1b1{bottom:873.424133pt;}
.yd7{bottom:873.688000pt;}
.y14b{bottom:873.848000pt;}
.yb3{bottom:874.049333pt;}
.y58{bottom:874.242667pt;}
.y1ff{bottom:874.445333pt;}
.y287{bottom:874.462667pt;}
.y10a{bottom:883.049576pt;}
.ye{bottom:884.636000pt;}
.y88{bottom:885.308000pt;}
.y254{bottom:885.481333pt;}
.y1b0{bottom:887.575665pt;}
.yd6{bottom:889.628000pt;}
.yb2{bottom:889.989333pt;}
.y57{bottom:890.184000pt;}
.y286{bottom:890.293333pt;}
.y1fe{bottom:890.385333pt;}
.yd{bottom:894.168000pt;}
.y109{bottom:896.545974pt;}
.y87{bottom:901.248000pt;}
.y253{bottom:901.421333pt;}
.y1af{bottom:901.727197pt;}
.yd5{bottom:906.122667pt;}
.y56{bottom:906.124000pt;}
.y285{bottom:906.233333pt;}
.y22f{bottom:906.325333pt;}
.y1fd{bottom:906.326667pt;}
.y108{bottom:910.043501pt;}
.yc{bottom:913.858667pt;}
.y1ae{bottom:915.878729pt;}
.y86{bottom:917.189333pt;}
.y252{bottom:917.361333pt;}
.y55{bottom:922.064000pt;}
.y22e{bottom:922.165333pt;}
.y284{bottom:922.173333pt;}
.y1fc{bottom:922.266667pt;}
.y107{bottom:923.539899pt;}
.yb{bottom:928.470667pt;}
.y1ad{bottom:930.030261pt;}
.y85{bottom:933.129333pt;}
.y251{bottom:935.653333pt;}
.y106{bottom:937.036297pt;}
.y54{bottom:938.004000pt;}
.y22d{bottom:938.105333pt;}
.y283{bottom:938.113333pt;}
.y1fb{bottom:938.206667pt;}
.ya{bottom:943.082667pt;}
.y1ac{bottom:944.181793pt;}
.y84{bottom:949.069333pt;}
.y105{bottom:950.532695pt;}
.y250{bottom:951.593333pt;}
.y53{bottom:953.944000pt;}
.y1fa{bottom:954.045333pt;}
.y282{bottom:954.053333pt;}
.y9{bottom:956.601333pt;}
.y1aa{bottom:958.334508pt;}
.y104{bottom:964.029093pt;}
.y83{bottom:965.009333pt;}
.y24f{bottom:967.533333pt;}
.y52{bottom:969.884000pt;}
.y1f9{bottom:969.985333pt;}
.y281{bottom:969.994667pt;}
.y1a9{bottom:972.486040pt;}
.y7{bottom:975.198667pt;}
.y103{bottom:977.525491pt;}
.y82{bottom:980.949333pt;}
.y8{bottom:980.982667pt;}
.y24e{bottom:983.473333pt;}
.yd4{bottom:985.824000pt;}
.y51{bottom:985.825333pt;}
.y1f8{bottom:985.926667pt;}
.y1ab{bottom:986.637572pt;}
.y1a8{bottom:986.668000pt;}
.y102{bottom:991.023018pt;}
.y81{bottom:996.889333pt;}
.y24d{bottom:999.413333pt;}
.y1a6{bottom:1001.261414pt;}
.y1a4{bottom:1001.292735pt;}
.y50{bottom:1001.765333pt;}
.y101{bottom:1004.560933pt;}
.y6{bottom:1009.734667pt;}
.y1a7{bottom:1015.412946pt;}
.y1a5{bottom:1015.413490pt;}
.y1a3{bottom:1015.444267pt;}
.y4f{bottom:1017.705333pt;}
.y100{bottom:1018.507333pt;}
.y5{bottom:1033.645333pt;}
.yff{bottom:1033.720000pt;}
.yb1{bottom:1036.345278pt;}
.y4{bottom:1036.447325pt;}
.y3{bottom:1048.695785pt;}
.h10{height:11.733399pt;}
.h8{height:22.796107pt;}
.he{height:26.631381pt;}
.hb{height:30.288533pt;}
.ha{height:30.392267pt;}
.h14{height:30.549524pt;}
.h4{height:32.000200pt;}
.h1a{height:33.021899pt;}
.h15{height:33.742688pt;}
.h9{height:34.238165pt;}
.h1b{height:35.380606pt;}
.h18{height:36.731588pt;}
.h19{height:36.756167pt;}
.h13{height:38.037520pt;}
.hc{height:38.045376pt;}
.h3{height:39.843636pt;}
.hd{height:39.852000pt;}
.h7{height:40.381333pt;}
.h1c{height:42.472043pt;}
.h1d{height:42.477376pt;}
.h11{height:44.354167pt;}
.hf{height:45.652160pt;}
.h1e{height:51.474709pt;}
.h16{height:52.527765pt;}
.h6{height:53.528267pt;}
.h5{height:53.940960pt;}
.h17{height:55.793333pt;}
.h2{height:1062.715892pt;}
.h12{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;}
.x20{left:82.232000pt;}
.x1d{left:86.597333pt;}
.x11{left:88.874667pt;}
.x18{left:90.163867pt;}
.x14{left:92.505333pt;}
.x21{left:102.896000pt;}
.x2{left:111.874558pt;}
.x1e{left:137.657671pt;}
.x19{left:157.110010pt;}
.x17{left:169.932000pt;}
.x26{left:173.689333pt;}
.x10{left:185.090357pt;}
.x24{left:207.424000pt;}
.x15{left:216.751932pt;}
.x7{left:236.105333pt;}
.x8{left:244.740000pt;}
.x5{left:248.371211pt;}
.x6{left:259.662667pt;}
.x25{left:277.345333pt;}
.x1c{left:301.965333pt;}
.x13{left:312.076000pt;}
.x1a{left:345.981909pt;}
.x1b{left:354.688902pt;}
.xe{left:403.492000pt;}
.x23{left:410.133333pt;}
.xd{left:416.776000pt;}
.x22{left:430.797333pt;}
.x1f{left:472.038510pt;}
.xa{left:588.968000pt;}
.xc{left:590.378667pt;}
.xb{left:601.250667pt;}
.x9{left:605.838667pt;}
.x27{left:611.741333pt;}
.x16{left:620.172000pt;}
.xf{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; }
  