
    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_12bbad53102166c5be8c814a.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_246acea95177de4df2282721.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_be2a904d3f044f140759f46e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ae707a4cdefde8464c16d90c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_19f70f1ff74e3eb0b35aa589.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_f6fb43e7ff2b87f4dd1d4120.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ca725b1bc167cc4245676fc7.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_0fdf99a233debeadbaea615b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_38bc82b6f8703aadfdbfb58a.woff2')format("woff");}.fff{font-family:fff;line-height:0.896000;font-style:normal;font-weight: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_01b8d0b6ea1f57735ed96dda.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6ed39fe7f67629a6a2d43d7f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.460000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_c4b721e1ba7e4eabe6d79c0d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f19418e958e4aee9605e9733.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.685000;font-style:normal;font-weight: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_6dfe56c9c8bfc268d8a61923.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.888000;font-style:normal;font-weight: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_b59d1bdb411312b383a75f6f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.917000;font-style:normal;font-weight: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_0af2448edd81c4f32f9f9955.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.898000;font-style:normal;font-weight: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_15fc2abd01a90d6554cc966f.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_5877d2062364492c9f54105e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.461000;font-style:normal;font-weight: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_59475ab7f00896cbbf84340d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.685000;font-style:normal;font-weight: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_33664ff1f108ad26c9c5fbb3.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_6fbc8f8012df0c6744609ef7.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.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_04b18a737c09018346bf5db7.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_f705982473d332a7837dba9d.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_a588f83571e38a659d93db0c.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_3c057167c5ce93ff202a79b0.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_b6c1801928bb1dbfb437924a.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.400000;font-style:normal;font-weight: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_df80be8c104732535e586be8.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_dc375843b5aa335ae28852c6.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_eddcfd4de49f0f8258f2990e.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_5db7e8e28d338b8b8bfceffe.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_935398fd8a91b592ac5dde96.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.665000;font-style:normal;font-weight: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_a6975018f7f94570deaec5b0.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.725000;font-style:normal;font-weight: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_c064b95232ce61ad322390d3.woff2')format("woff");}.ff2e{font-family:ff2e;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: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_f705982473d332a7837dba9d.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_a588f83571e38a659d93db0c.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_6c56cb614cee827fe2f8ad8a.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.916000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_40d52a80a5ef831e2e002d87.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.688000;font-style:normal;font-weight: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_929fa1c03e5d0cca07d05ad6.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.703235;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_4fd5b7174859ac32b4f7e30a.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.907715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_b14a5f697f7b9b4c457e0885.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_ad0a8bb2f08f04ac720f0bd6.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_745033452a59f1608561cf7c.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_eddcfd4de49f0f8258f2990e.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_5db7e8e28d338b8b8bfceffe.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.819000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_4683939cb63dee7545c3916e.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.708000;font-style:normal;font-weight: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_a8e751f3f26bae5eafb9790a.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_885967f949a0b2e7c06f704b.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_9a0f61dd791e9d7652750341.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_04b18a737c09018346bf5db7.woff2')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_f705982473d332a7837dba9d.woff2')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_a588f83571e38a659d93db0c.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_a6dedea9346e505e3b8d6df6.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v9{vertical-align:-16.878000px;}
.va{vertical-align:-14.940000px;}
.v7{vertical-align:-8.964000px;}
.v4{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:8.970000px;}
.v3{vertical-align:11.958000px;}
.ve{vertical-align:20.616000px;}
.v6{vertical-align:21.690000px;}
.vd{vertical-align:23.532000px;}
.vc{vertical-align:24.678000px;}
.v1{vertical-align:26.034000px;}
.v8{vertical-align:40.440000px;}
.v5{vertical-align:42.342000px;}
.ls19{letter-spacing:-0.338030px;}
.ls17{letter-spacing:-0.089291px;}
.ls18{letter-spacing:0.000000px;}
.ls7f{letter-spacing:0.000873px;}
.ls9{letter-spacing:0.000986px;}
.ls3e{letter-spacing:0.001244px;}
.ls13{letter-spacing:0.001582px;}
.ls94{letter-spacing:0.001591px;}
.ls2d{letter-spacing:0.002164px;}
.ls6f{letter-spacing:0.002298px;}
.lsaa{letter-spacing:0.002394px;}
.ls53{letter-spacing:0.003580px;}
.ls1f{letter-spacing:0.004479px;}
.ls7d{letter-spacing:0.005603px;}
.ls1a{letter-spacing:0.038268px;}
.ls5{letter-spacing:0.094215px;}
.ls4{letter-spacing:0.094827px;}
.lsa7{letter-spacing:0.180000px;}
.ls54{letter-spacing:0.241763px;}
.ls1{letter-spacing:0.242361px;}
.ls0{letter-spacing:0.612281px;}
.ls2{letter-spacing:0.666417px;}
.ls3{letter-spacing:0.694290px;}
.ls2c{letter-spacing:0.931672px;}
.ls47{letter-spacing:1.006139px;}
.ls23{letter-spacing:1.012139px;}
.ls99{letter-spacing:1.176245px;}
.lsc0{letter-spacing:1.655341px;}
.ls3f{letter-spacing:1.658734px;}
.ls1c{letter-spacing:1.659794px;}
.ls4e{letter-spacing:2.207807px;}
.ls84{letter-spacing:2.210143px;}
.ls8f{letter-spacing:2.213807px;}
.ls48{letter-spacing:2.414341px;}
.lsc{letter-spacing:2.419292px;}
.ls24{letter-spacing:2.420341px;}
.ls2e{letter-spacing:2.983842px;}
.lsc2{letter-spacing:2.984737px;}
.ls6d{letter-spacing:2.987065px;}
.ls6{letter-spacing:2.987332px;}
.ls80{letter-spacing:2.987588px;}
.ls86{letter-spacing:2.988655px;}
.ls31{letter-spacing:2.989842px;}
.lsca{letter-spacing:2.990737px;}
.ls15{letter-spacing:3.421420px;}
.lsa{letter-spacing:4.023529px;}
.ls11{letter-spacing:4.275520px;}
.ls8d{letter-spacing:4.277942px;}
.ls46{letter-spacing:4.683927px;}
.ls73{letter-spacing:4.689927px;}
.lsb{letter-spacing:4.753055px;}
.ls40{letter-spacing:6.169566px;}
.ls41{letter-spacing:6.175672px;}
.lse{letter-spacing:6.432691px;}
.lsc5{letter-spacing:6.442672px;}
.ls5e{letter-spacing:6.508377px;}
.ls1b{letter-spacing:6.514377px;}
.ls5c{letter-spacing:6.516809px;}
.ls2b{letter-spacing:7.444369px;}
.lsa8{letter-spacing:7.940394px;}
.lsa9{letter-spacing:7.946394px;}
.lsb8{letter-spacing:8.277820px;}
.ls6e{letter-spacing:8.296768px;}
.lsc1{letter-spacing:8.301737px;}
.ls82{letter-spacing:8.302768px;}
.lsc4{letter-spacing:9.440737px;}
.ls72{letter-spacing:9.764563px;}
.ls92{letter-spacing:9.770563px;}
.lsb0{letter-spacing:9.952672px;}
.ls8b{letter-spacing:9.958672px;}
.lsd{letter-spacing:9.960707px;}
.ls7b{letter-spacing:9.961672px;}
.ls39{letter-spacing:11.964559px;}
.ls3a{letter-spacing:11.965672px;}
.ls42{letter-spacing:12.688377px;}
.ls6c{letter-spacing:13.274894px;}
.ls81{letter-spacing:13.276672px;}
.ls25{letter-spacing:13.278559px;}
.ls26{letter-spacing:13.279672px;}
.ls6b{letter-spacing:13.280894px;}
.ls83{letter-spacing:13.282672px;}
.ls66{letter-spacing:13.285672px;}
.ls65{letter-spacing:14.937794px;}
.ls28{letter-spacing:15.678559px;}
.ls29{letter-spacing:15.679672px;}
.lsa4{letter-spacing:16.197000px;}
.ls5b{letter-spacing:16.273842px;}
.ls59{letter-spacing:16.428402px;}
.lsb4{letter-spacing:16.596559px;}
.ls85{letter-spacing:16.598336px;}
.ls35{letter-spacing:16.600007px;}
.ls77{letter-spacing:16.600479px;}
.ls69{letter-spacing:16.600672px;}
.ls34{letter-spacing:16.601916px;}
.ls74{letter-spacing:16.602000px;}
.lsb1{letter-spacing:16.602559px;}
.ls67{letter-spacing:16.606672px;}
.ls10{letter-spacing:17.234298px;}
.ls93{letter-spacing:17.778245px;}
.ls64{letter-spacing:18.261794px;}
.ls8a{letter-spacing:18.262166px;}
.lsa2{letter-spacing:18.291000px;}
.ls55{letter-spacing:18.379358px;}
.ls56{letter-spacing:18.397672px;}
.ls3b{letter-spacing:18.484377px;}
.ls68{letter-spacing:18.487573px;}
.ls16{letter-spacing:18.644298px;}
.lsb3{letter-spacing:18.804559px;}
.ls8c{letter-spacing:18.815807px;}
.ls4f{letter-spacing:18.828559px;}
.ls50{letter-spacing:18.835672px;}
.ls4c{letter-spacing:18.897794px;}
.lsbd{letter-spacing:19.054500px;}
.ls36{letter-spacing:19.267244px;}
.ls37{letter-spacing:19.394230px;}
.ls30{letter-spacing:19.498007px;}
.ls32{letter-spacing:19.499916px;}
.ls33{letter-spacing:19.504007px;}
.ls2f{letter-spacing:19.505916px;}
.ls88{letter-spacing:19.590655px;}
.ls79{letter-spacing:19.591842px;}
.ls27{letter-spacing:19.798377px;}
.ls95{letter-spacing:19.831763px;}
.lsad{letter-spacing:19.862230px;}
.lsb7{letter-spacing:19.905000px;}
.ls43{letter-spacing:19.916230px;}
.ls7a{letter-spacing:19.920000px;}
.ls76{letter-spacing:19.920559px;}
.ls87{letter-spacing:19.922336px;}
.lsc3{letter-spacing:19.922916px;}
.ls97{letter-spacing:19.924479px;}
.ls71{letter-spacing:19.926000px;}
.lsac{letter-spacing:19.927244px;}
.ls7{letter-spacing:19.931933px;}
.ls8{letter-spacing:19.972672px;}
.ls7c{letter-spacing:20.023420px;}
.ls5f{letter-spacing:20.156336px;}
.ls5d{letter-spacing:20.158672px;}
.ls60{letter-spacing:20.161672px;}
.ls6a{letter-spacing:20.455672px;}
.ls98{letter-spacing:21.096245px;}
.ls1d{letter-spacing:21.160479px;}
.ls1e{letter-spacing:21.160672px;}
.ls70{letter-spacing:21.285927px;}
.ls91{letter-spacing:21.291927px;}
.ls75{letter-spacing:21.381000px;}
.ls78{letter-spacing:21.387000px;}
.ls57{letter-spacing:21.391842px;}
.lsaf{letter-spacing:21.513794px;}
.ls9c{letter-spacing:21.574672px;}
.ls9e{letter-spacing:21.580672px;}
.ls9d{letter-spacing:21.582559px;}
.ls22{letter-spacing:21.585794px;}
.ls9b{letter-spacing:21.589244px;}
.ls7e{letter-spacing:22.010341px;}
.ls90{letter-spacing:22.133807px;}
.ls5a{letter-spacing:22.136734px;}
.ls45{letter-spacing:22.139807px;}
.ls2a{letter-spacing:22.198377px;}
.ls14{letter-spacing:22.640341px;}
.ls12{letter-spacing:22.646341px;}
.lsbe{letter-spacing:22.893000px;}
.ls96{letter-spacing:22.908655px;}
.lsb5{letter-spacing:23.116377px;}
.lsa0{letter-spacing:23.648734px;}
.ls52{letter-spacing:23.791244px;}
.lsbb{letter-spacing:24.076500px;}
.ls21{letter-spacing:24.153794px;}
.lsb9{letter-spacing:24.160500px;}
.ls20{letter-spacing:24.201794px;}
.lsa5{letter-spacing:24.296394px;}
.lsa6{letter-spacing:24.302394px;}
.lsba{letter-spacing:24.588387px;}
.ls89{letter-spacing:24.609927px;}
.lsa3{letter-spacing:24.687000px;}
.ls3d{letter-spacing:25.078672px;}
.lsb2{letter-spacing:25.324377px;}
.ls8e{letter-spacing:25.334341px;}
.ls51{letter-spacing:25.348377px;}
.ls38{letter-spacing:25.780377px;}
.lsc8{letter-spacing:26.052144px;}
.lsae{letter-spacing:26.374377px;}
.ls44{letter-spacing:26.440377px;}
.lsc7{letter-spacing:26.642737px;}
.ls3c{letter-spacing:26.745794px;}
.lsbc{letter-spacing:27.072387px;}
.ls62{letter-spacing:27.492559px;}
.ls9f{letter-spacing:28.096377px;}
.ls4d{letter-spacing:28.827794px;}
.ls58{letter-spacing:29.401244px;}
.lsb6{letter-spacing:29.589000px;}
.ls49{letter-spacing:29.717807px;}
.lsa1{letter-spacing:29.875244px;}
.ls4b{letter-spacing:30.485807px;}
.ls4a{letter-spacing:31.131927px;}
.ls63{letter-spacing:31.864377px;}
.lsc6{letter-spacing:31.953737px;}
.lsc9{letter-spacing:32.517737px;}
.ls61{letter-spacing:37.432377px;}
.lscb{letter-spacing:127.099244px;}
.lsbf{letter-spacing:169.774160px;}
.lsab{letter-spacing:169.792136px;}
.lsf{letter-spacing:209.396641px;}
.ls9a{letter-spacing:253.453244px;}
.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;}
.ws14d{word-spacing:-43.159716px;}
.ws143{word-spacing:-38.396657px;}
.ws9d{word-spacing:-37.118657px;}
.ws1e{word-spacing:-16.606328px;}
.wsb6{word-spacing:-3.335612px;}
.ws89{word-spacing:-3.216176px;}
.ws34{word-spacing:-3.216116px;}
.ws1d6{word-spacing:-3.096500px;}
.ws12a{word-spacing:-2.976705px;}
.ws118{word-spacing:-2.917346px;}
.ws116{word-spacing:-2.917166px;}
.wsb1{word-spacing:-2.857388px;}
.wsaf{word-spacing:-2.856000px;}
.ws1a3{word-spacing:-2.618516px;}
.ws95{word-spacing:-2.498541px;}
.wse6{word-spacing:-2.319147px;}
.ws1d7{word-spacing:-2.080334px;}
.ws12d{word-spacing:-2.020317px;}
.ws172{word-spacing:-1.967090px;}
.ws173{word-spacing:-1.960898px;}
.ws3b{word-spacing:-1.602110px;}
.ws129{word-spacing:-1.542751px;}
.ws128{word-spacing:-1.542153px;}
.ws1d5{word-spacing:-1.482734px;}
.ws185{word-spacing:-1.362699px;}
.ws65{word-spacing:-1.303340px;}
.ws1e8{word-spacing:-1.243323px;}
.ws61{word-spacing:-1.167161px;}
.ws46{word-spacing:-1.123946px;}
.ws5c{word-spacing:-1.020469px;}
.ws60{word-spacing:-1.001335px;}
.ws41{word-spacing:-0.944552px;}
.ws106{word-spacing:-0.885133px;}
.ws98{word-spacing:-0.705739px;}
.ws97{word-spacing:-0.705679px;}
.ws1ae{word-spacing:-0.705082px;}
.ws5a{word-spacing:-0.612281px;}
.ws40{word-spacing:-0.526345px;}
.ws5d{word-spacing:-0.503856px;}
.ws62{word-spacing:-0.465589px;}
.ws39{word-spacing:-0.406311px;}
.ws7{word-spacing:-0.233134px;}
.wse7{word-spacing:-0.227515px;}
.wsf6{word-spacing:-0.227156px;}
.wsc1{word-spacing:-0.226917px;}
.ws1b5{word-spacing:-0.198000px;}
.ws1b3{word-spacing:-0.180000px;}
.ws37{word-spacing:-0.167498px;}
.ws1a8{word-spacing:-0.108138px;}
.ws1a7{word-spacing:-0.106328px;}
.ws25{word-spacing:-0.059778px;}
.ws12f{word-spacing:-0.047820px;}
.ws21{word-spacing:-0.041844px;}
.wsad{word-spacing:-0.018941px;}
.ws59{word-spacing:0.000000px;}
.ws1f{word-spacing:0.011956px;}
.ws5f{word-spacing:0.044646px;}
.ws194{word-spacing:0.131870px;}
.ws19a{word-spacing:0.191290px;}
.ws196{word-spacing:0.251247px;}
.ws5b{word-spacing:0.293385px;}
.ws48{word-spacing:0.310666px;}
.ws177{word-spacing:0.310726px;}
.wsd3{word-spacing:0.370683px;}
.ws84{word-spacing:0.370743px;}
.ws88{word-spacing:0.430103px;}
.ws1df{word-spacing:0.442357px;}
.wsb0{word-spacing:0.442596px;}
.ws20a{word-spacing:0.490180px;}
.ws28{word-spacing:0.609496px;}
.wsdc{word-spacing:0.609736px;}
.ws24{word-spacing:0.610094px;}
.ws27{word-spacing:0.617358px;}
.ws26{word-spacing:0.643023px;}
.ws5e{word-spacing:0.714328px;}
.ws8c{word-spacing:0.848250px;}
.ws57{word-spacing:0.848848px;}
.ws8b{word-spacing:0.848967px;}
.ws2f{word-spacing:0.908267px;}
.ws122{word-spacing:0.968284px;}
.ws121{word-spacing:0.968404px;}
.wse5{word-spacing:1.027703px;}
.ws1cd{word-spacing:1.028182px;}
.wsc0{word-spacing:1.028301px;}
.ws94{word-spacing:1.028361px;}
.ws7d{word-spacing:1.087661px;}
.ws7c{word-spacing:1.087780px;}
.ws1d1{word-spacing:1.207157px;}
.ws80{word-spacing:1.267054px;}
.ws29{word-spacing:1.327072px;}
.ws1d4{word-spacing:1.386491px;}
.ws15d{word-spacing:1.386610px;}
.ws64{word-spacing:1.386850px;}
.ws9a{word-spacing:1.446448px;}
.wsbf{word-spacing:1.446568px;}
.ws1d2{word-spacing:1.506406px;}
.ws3e{word-spacing:1.506465px;}
.ws6d{word-spacing:1.626500px;}
.ws16b{word-spacing:1.685381px;}
.ws16a{word-spacing:1.685979px;}
.ws83{word-spacing:1.804698px;}
.ws197{word-spacing:1.805296px;}
.ws1d3{word-spacing:1.865074px;}
.wscb{word-spacing:1.984809px;}
.ws2a{word-spacing:2.014160px;}
.ws2b{word-spacing:2.044049px;}
.ws1f4{word-spacing:2.056543px;}
.ws45{word-spacing:2.104066px;}
.wsd4{word-spacing:2.163964px;}
.ws12b{word-spacing:2.164083px;}
.ws17f{word-spacing:2.223622px;}
.ws1e1{word-spacing:2.295475px;}
.ws1d0{word-spacing:2.343477px;}
.ws192{word-spacing:2.402896px;}
.ws1eb{word-spacing:2.414852px;}
.wsca{word-spacing:2.462854px;}
.ws20e{word-spacing:2.522452px;}
.wsbd{word-spacing:2.624873px;}
.wsbb{word-spacing:2.642486px;}
.wsbc{word-spacing:2.651358px;}
.wsba{word-spacing:2.659414px;}
.ws127{word-spacing:2.701667px;}
.ws3f{word-spacing:2.702264px;}
.ws4b{word-spacing:2.761684px;}
.ws12{word-spacing:2.815544px;}
.ws6f{word-spacing:2.821522px;}
.ws1d9{word-spacing:2.821701px;}
.ws70{word-spacing:2.881060px;}
.wsf5{word-spacing:2.941078px;}
.wsf4{word-spacing:2.941257px;}
.ws36{word-spacing:3.000497px;}
.ws1e2{word-spacing:3.072470px;}
.ws77{word-spacing:3.179891px;}
.ws79{word-spacing:3.180070px;}
.ws133{word-spacing:3.189503px;}
.ws17d{word-spacing:3.205381px;}
.ws134{word-spacing:3.239848px;}
.ws178{word-spacing:3.239968px;}
.ws179{word-spacing:3.245358px;}
.ws1c4{word-spacing:3.254248px;}
.ws153{word-spacing:3.265605px;}
.ws136{word-spacing:3.267280px;}
.ws137{word-spacing:3.271180px;}
.ws14c{word-spacing:3.277183px;}
.ws158{word-spacing:3.280565px;}
.ws154{word-spacing:3.285435px;}
.wsa9{word-spacing:3.285599px;}
.ws14f{word-spacing:3.292703px;}
.ws157{word-spacing:3.293593px;}
.ws1af{word-spacing:3.295631px;}
.ws1a2{word-spacing:3.299228px;}
.ws2c{word-spacing:3.299267px;}
.ws1d{word-spacing:3.299447px;}
.ws68{word-spacing:3.299746px;}
.ws2d{word-spacing:3.299865px;}
.ws1ea{word-spacing:3.299937px;}
.ws20{word-spacing:3.300044px;}
.ws33{word-spacing:3.300463px;}
.ws135{word-spacing:3.309193px;}
.wsd2{word-spacing:3.311358px;}
.wse4{word-spacing:3.312515px;}
.ws123{word-spacing:3.312686px;}
.wsb5{word-spacing:3.313351px;}
.ws150{word-spacing:3.313821px;}
.ws1a6{word-spacing:3.317614px;}
.ws156{word-spacing:3.318686px;}
.ws14a{word-spacing:3.319414px;}
.ws3c{word-spacing:3.322339px;}
.ws155{word-spacing:3.338204px;}
.ws31{word-spacing:3.359284px;}
.ws7e{word-spacing:3.359464px;}
.ws131{word-spacing:3.359524px;}
.ws58{word-spacing:3.419302px;}
.wsc3{word-spacing:3.479498px;}
.ws171{word-spacing:3.539276px;}
.ws2e{word-spacing:3.598695px;}
.ws71{word-spacing:3.658055px;}
.wsc5{word-spacing:3.670139px;}
.ws44{word-spacing:3.718072px;}
.wsc6{word-spacing:3.718311px;}
.wsc4{word-spacing:3.778268px;}
.ws176{word-spacing:3.837449px;}
.wsf8{word-spacing:3.837688px;}
.wsf7{word-spacing:3.897107px;}
.ws195{word-spacing:3.957483px;}
.wsab{word-spacing:4.016902px;}
.ws7a{word-spacing:4.136279px;}
.ws1fc{word-spacing:4.136518px;}
.ws1ad{word-spacing:4.315673px;}
.ws91{word-spacing:4.375690px;}
.ws1ce{word-spacing:4.375750px;}
.ws69{word-spacing:4.435049px;}
.ws119{word-spacing:4.456623px;}
.ws72{word-spacing:4.495306px;}
.ws73{word-spacing:4.511520px;}
.ws43{word-spacing:4.554486px;}
.ws15b{word-spacing:4.555084px;}
.ws15c{word-spacing:4.555323px;}
.ws22{word-spacing:4.583614px;}
.ws23{word-spacing:4.614503px;}
.wsac{word-spacing:4.853854px;}
.ws17e{word-spacing:4.965343px;}
.ws18e{word-spacing:4.973290px;}
.wsb3{word-spacing:5.030455px;}
.wsb4{word-spacing:5.032949px;}
.ws30{word-spacing:5.033248px;}
.ws4a{word-spacing:5.152684px;}
.ws205{word-spacing:5.272360px;}
.ws20d{word-spacing:5.344153px;}
.ws167{word-spacing:5.391736px;}
.ws166{word-spacing:5.392334px;}
.ws126{word-spacing:5.451455px;}
.ws1fa{word-spacing:5.523368px;}
.ws10{word-spacing:5.625110px;}
.ws6c{word-spacing:5.630848px;}
.ws92{word-spacing:5.631506px;}
.ws9f{word-spacing:5.734007px;}
.wsa1{word-spacing:5.750584px;}
.ws1cc{word-spacing:5.810302px;}
.ws66{word-spacing:5.810900px;}
.wsa7{word-spacing:5.869662px;}
.wsa6{word-spacing:5.869960px;}
.ws35{word-spacing:5.929679px;}
.wsa3{word-spacing:5.929978px;}
.ws78{word-spacing:5.941814px;}
.ws9b{word-spacing:6.049354px;}
.ws1c6{word-spacing:6.049653px;}
.ws208{word-spacing:6.061549px;}
.ws1f5{word-spacing:6.061788px;}
.ws149{word-spacing:6.102480px;}
.wsed{word-spacing:6.109670px;}
.ws1e5{word-spacing:6.121207px;}
.ws1dc{word-spacing:6.121267px;}
.ws3d{word-spacing:6.168492px;}
.wsc7{word-spacing:6.169388px;}
.ws3a{word-spacing:6.217857px;}
.ws8a{word-spacing:6.228449px;}
.ws108{word-spacing:6.228987px;}
.ws109{word-spacing:6.229107px;}
.ws85{word-spacing:6.261036px;}
.ws165{word-spacing:6.288466px;}
.ws164{word-spacing:6.288765px;}
.ws67{word-spacing:6.289064px;}
.ws1bc{word-spacing:6.312000px;}
.ws1ba{word-spacing:6.336000px;}
.ws193{word-spacing:6.348483px;}
.ws1bd{word-spacing:6.372000px;}
.ws1bb{word-spacing:6.396000px;}
.ws1c1{word-spacing:6.402174px;}
.wse9{word-spacing:6.407903px;}
.wsd0{word-spacing:6.408500px;}
.ws4c{word-spacing:6.467860px;}
.wscf{word-spacing:6.467980px;}
.ws9{word-spacing:6.521840px;}
.ws105{word-spacing:6.527578px;}
.wsc8{word-spacing:6.587595px;}
.ws120{word-spacing:6.647015px;}
.wseb{word-spacing:6.647254px;}
.ws1f2{word-spacing:6.647612px;}
.ws198{word-spacing:6.706673px;}
.wsc2{word-spacing:6.707032px;}
.wsae{word-spacing:6.886426px;}
.ws1fb{word-spacing:6.898202px;}
.ws42{word-spacing:6.946682px;}
.wscd{word-spacing:7.005802px;}
.ws1a9{word-spacing:7.005982px;}
.ws1aa{word-spacing:7.037358px;}
.ws56{word-spacing:7.065461px;}
.ws1d8{word-spacing:7.125538px;}
.ws96{word-spacing:7.185196px;}
.wse1{word-spacing:7.185316px;}
.wsa8{word-spacing:7.185495px;}
.ws8{word-spacing:7.238638px;}
.wsa5{word-spacing:7.244854px;}
.ws49{word-spacing:7.245452px;}
.wsb2{word-spacing:7.364291px;}
.ws18f{word-spacing:7.413422px;}
.wsb9{word-spacing:7.424248px;}
.ws4d{word-spacing:7.424906px;}
.ws190{word-spacing:7.435808px;}
.wsee{word-spacing:7.484206px;}
.ws191{word-spacing:7.484265px;}
.ws18b{word-spacing:7.534850px;}
.ws18c{word-spacing:7.543685px;}
.wsc9{word-spacing:7.544282px;}
.ws1f6{word-spacing:7.555820px;}
.wse3{word-spacing:7.603463px;}
.wse0{word-spacing:7.620686px;}
.ws1c5{word-spacing:7.663540px;}
.ws206{word-spacing:7.723437px;}
.ws90{word-spacing:7.902233px;}
.ws18d{word-spacing:7.902472px;}
.wsea{word-spacing:7.902652px;}
.ws86{word-spacing:8.012752px;}
.ws20b{word-spacing:8.019312px;}
.ws16c{word-spacing:8.063909px;}
.ws16f{word-spacing:8.072418px;}
.ws170{word-spacing:8.081687px;}
.ws1c2{word-spacing:8.081866px;}
.ws16d{word-spacing:8.082284px;}
.ws16e{word-spacing:8.082427px;}
.wse8{word-spacing:8.201302px;}
.wsce{word-spacing:8.201661px;}
.ws1c9{word-spacing:8.261320px;}
.wse{word-spacing:8.315060px;}
.ws15a{word-spacing:8.321098px;}
.ws1c7{word-spacing:8.380696px;}
.wsbe{word-spacing:8.381294px;}
.ws1f1{word-spacing:8.440654px;}
.wsd1{word-spacing:8.500432px;}
.ws1f8{word-spacing:8.500491px;}
.ws19c{word-spacing:8.500671px;}
.ws1b7{word-spacing:8.520000px;}
.ws1b9{word-spacing:8.550000px;}
.ws87{word-spacing:8.560090px;}
.ws1b6{word-spacing:8.610000px;}
.ws113{word-spacing:8.619808px;}
.ws115{word-spacing:8.619988px;}
.ws1fe{word-spacing:8.691960px;}
.ws174{word-spacing:8.708936px;}
.ws55{word-spacing:8.739484px;}
.ws11e{word-spacing:8.739544px;}
.ws11f{word-spacing:8.739902px;}
.ws10e{word-spacing:8.849614px;}
.ws110{word-spacing:8.858860px;}
.ws19e{word-spacing:8.859279px;}
.ws19b{word-spacing:8.918878px;}
.ws38{word-spacing:9.038254px;}
.ws1cb{word-spacing:9.157990px;}
.ws81{word-spacing:9.158109px;}
.ws184{word-spacing:9.158679px;}
.ws107{word-spacing:9.217708px;}
.ws1ab{word-spacing:9.397102px;}
.wsf{word-spacing:9.450902px;}
.ws1ac{word-spacing:9.456939px;}
.ws1c3{word-spacing:9.576316px;}
.ws101{word-spacing:9.576436px;}
.ws32{word-spacing:9.635855px;}
.ws1b4{word-spacing:9.744000px;}
.ws8d{word-spacing:9.755710px;}
.ws6b{word-spacing:9.815249px;}
.wsd9{word-spacing:9.815548px;}
.wsd8{word-spacing:9.828686px;}
.ws140{word-spacing:9.863430px;}
.wse2{word-spacing:9.922849px;}
.wsf2{word-spacing:9.923028px;}
.ws13f{word-spacing:9.923148px;}
.wsb7{word-spacing:9.923447px;}
.ws1ec{word-spacing:9.927759px;}
.ws4f{word-spacing:9.934685px;}
.ws1da{word-spacing:9.935104px;}
.wsa2{word-spacing:9.935163px;}
.ws111{word-spacing:9.952694px;}
.wsb8{word-spacing:9.956595px;}
.ws52{word-spacing:9.995300px;}
.ws202{word-spacing:10.054660px;}
.ws1c{word-spacing:10.114438px;}
.ws8f{word-spacing:10.114557px;}
.ws6a{word-spacing:10.114677px;}
.ws1cf{word-spacing:10.173917px;}
.ws1a1{word-spacing:10.174096px;}
.wsb{word-spacing:10.407230px;}
.ws4e{word-spacing:10.413507px;}
.ws20c{word-spacing:10.425164px;}
.ws186{word-spacing:10.473345px;}
.wsde{word-spacing:10.519753px;}
.ws1b{word-spacing:10.532884px;}
.wsdd{word-spacing:10.558007px;}
.ws63{word-spacing:10.592662px;}
.wsec{word-spacing:10.652260px;}
.wsef{word-spacing:10.712277px;}
.ws93{word-spacing:10.772175px;}
.ws210{word-spacing:10.784131px;}
.wsd{word-spacing:10.825437px;}
.ws11c{word-spacing:10.880465px;}
.wsd6{word-spacing:10.888877px;}
.wsd7{word-spacing:10.891073px;}
.ws11d{word-spacing:10.891552px;}
.ws1f7{word-spacing:10.903388px;}
.wsf0{word-spacing:10.983442px;}
.ws54{word-spacing:11.011108px;}
.wsf3{word-spacing:11.011586px;}
.ws103{word-spacing:11.071065px;}
.ws163{word-spacing:11.131082px;}
.wsaa{word-spacing:11.190382px;}
.wsa{word-spacing:11.363618px;}
.wsf9{word-spacing:11.369895px;}
.ws102{word-spacing:11.489212px;}
.ws19f{word-spacing:11.489272px;}
.ws8e{word-spacing:11.549289px;}
.wsdf{word-spacing:11.608888px;}
.ws1a5{word-spacing:11.668606px;}
.wsdb{word-spacing:11.668666px;}
.ws207{word-spacing:11.859836px;}
.ws47{word-spacing:11.908076px;}
.ws104{word-spacing:12.086872px;}
.ws53{word-spacing:12.206907px;}
.ws1db{word-spacing:12.218743px;}
.ws6e{word-spacing:12.326224px;}
.ws7b{word-spacing:12.386300px;}
.wsc{word-spacing:12.678854px;}
.wsf1{word-spacing:12.804448px;}
.ws1c8{word-spacing:12.804507px;}
.ws181{word-spacing:12.924482px;}
.ws182{word-spacing:12.982873px;}
.ws183{word-spacing:12.983841px;}
.ws125{word-spacing:12.983901px;}
.ws17c{word-spacing:13.163116px;}
.wsa4{word-spacing:13.163295px;}
.ws17a{word-spacing:13.164859px;}
.ws1dd{word-spacing:13.274015px;}
.ws200{word-spacing:13.277015px;}
.ws99{word-spacing:13.278343px;}
.ws169{word-spacing:13.282672px;}
.ws168{word-spacing:13.292679px;}
.ws12c{word-spacing:13.342689px;}
.ws74{word-spacing:13.521485px;}
.ws117{word-spacing:13.629497px;}
.ws1e4{word-spacing:13.653295px;}
.wsda{word-spacing:13.740216px;}
.ws7f{word-spacing:13.880272px;}
.ws1ee{word-spacing:14.119085px;}
.ws11b{word-spacing:14.298539px;}
.wsd5{word-spacing:14.298898px;}
.wscc{word-spacing:14.418454px;}
.ws1e9{word-spacing:14.478471px;}
.ws188{word-spacing:14.726228px;}
.ws14{word-spacing:14.770974px;}
.ws1ff{word-spacing:15.506174px;}
.ws1ef{word-spacing:15.984936px;}
.ws189{word-spacing:16.068054px;}
.ws18a{word-spacing:16.068138px;}
.ws1a0{word-spacing:16.092238px;}
.ws14e{word-spacing:16.498429px;}
.ws142{word-spacing:16.499027px;}
.ws146{word-spacing:16.558506px;}
.ws12e{word-spacing:16.880317px;}
.ws6{word-spacing:16.880460px;}
.ws10b{word-spacing:17.168242px;}
.ws203{word-spacing:17.228438px;}
.ws1de{word-spacing:17.335620px;}
.ws1e7{word-spacing:17.694348px;}
.ws1f0{word-spacing:17.917136px;}
.ws5{word-spacing:18.344597px;}
.ws1ca{word-spacing:18.483477px;}
.ws1c0{word-spacing:18.497356px;}
.ws1bf{word-spacing:18.517991px;}
.ws180{word-spacing:18.543076px;}
.ws145{word-spacing:18.648828px;}
.ws187{word-spacing:18.770762px;}
.ws1f3{word-spacing:18.889609px;}
.ws1e0{word-spacing:19.009583px;}
.ws13a{word-spacing:19.539146px;}
.ws1b8{word-spacing:19.608000px;}
.ws130{word-spacing:19.823143px;}
.ws147{word-spacing:19.856467px;}
.ws13b{word-spacing:19.859022px;}
.ws13d{word-spacing:19.865022px;}
.ws10d{word-spacing:20.079258px;}
.ws209{word-spacing:20.085408px;}
.ws17{word-spacing:20.403257px;}
.ws13{word-spacing:20.405735px;}
.ws15{word-spacing:20.409743px;}
.ws16{word-spacing:20.411298px;}
.ws9c{word-spacing:21.101873px;}
.ws1ed{word-spacing:21.221250px;}
.ws13e{word-spacing:21.323150px;}
.ws13c{word-spacing:21.329150px;}
.ws199{word-spacing:21.400524px;}
.ws1f9{word-spacing:21.998304px;}
.wsa0{word-spacing:22.259048px;}
.ws139{word-spacing:22.857146px;}
.ws144{word-spacing:22.857390px;}
.ws152{word-spacing:22.863146px;}
.ws1a{word-spacing:23.146042px;}
.ws10c{word-spacing:23.347585px;}
.ws82{word-spacing:23.981281px;}
.ws11a{word-spacing:24.053623px;}
.ws159{word-spacing:24.339989px;}
.ws148{word-spacing:24.345989px;}
.ws76{word-spacing:24.568818px;}
.ws50{word-spacing:24.688434px;}
.ws204{word-spacing:25.106401px;}
.ws14b{word-spacing:25.297893px;}
.ws9e{word-spacing:25.593264px;}
.ws1fd{word-spacing:26.122866px;}
.ws4{word-spacing:26.181450px;}
.ws3{word-spacing:26.253180px;}
.ws124{word-spacing:26.253252px;}
.ws141{word-spacing:26.381140px;}
.ws138{word-spacing:26.494979px;}
.ws132{word-spacing:26.498729px;}
.ws151{word-spacing:26.500979px;}
.ws11{word-spacing:27.220740px;}
.ws2{word-spacing:27.974700px;}
.ws19d{word-spacing:28.061623px;}
.ws112{word-spacing:28.177363px;}
.ws10f{word-spacing:28.398940px;}
.ws114{word-spacing:28.423794px;}
.ws20f{word-spacing:29.231024px;}
.ws1a4{word-spacing:31.217623px;}
.ws51{word-spacing:31.802016px;}
.ws17b{word-spacing:32.717623px;}
.ws1e3{word-spacing:33.296167px;}
.ws75{word-spacing:33.497695px;}
.ws1e6{word-spacing:33.774391px;}
.ws10a{word-spacing:36.744810px;}
.ws19{word-spacing:44.555438px;}
.ws201{word-spacing:52.903769px;}
.ws162{word-spacing:55.120672px;}
.ws1b1{word-spacing:55.126672px;}
.ws161{word-spacing:55.127272px;}
.ws1b0{word-spacing:71.673822px;}
.ws1b2{word-spacing:73.120450px;}
.ws18{word-spacing:78.831270px;}
.ws1be{word-spacing:79.982964px;}
.ws160{word-spacing:85.016272px;}
.wsfb{word-spacing:103.178336px;}
.ws15f{word-spacing:114.898672px;}
.wsfa{word-spacing:119.735633px;}
.ws100{word-spacing:128.223810px;}
.wsfd{word-spacing:141.673860px;}
.wsff{word-spacing:171.216451px;}
.ws175{word-spacing:175.627764px;}
.wsfc{word-spacing:180.064351px;}
.wsfe{word-spacing:184.221515px;}
.ws15e{word-spacing:205.516764px;}
._1f{margin-left:-19.249848px;}
._2d{margin-left:-8.748016px;}
._35{margin-left:-7.651584px;}
._22{margin-left:-6.632070px;}
._4{margin-left:-5.344931px;}
._2{margin-left:-4.337065px;}
._1{margin-left:-2.324052px;}
._3{margin-left:-1.032087px;}
._0{width:1.750078px;}
._c{width:3.229208px;}
._18{width:4.413133px;}
._26{width:6.475776px;}
._28{width:7.495059px;}
._17{width:15.302989px;}
._13{width:16.320350px;}
._1b{width:17.559517px;}
._1d{width:19.691469px;}
._24{width:20.947108px;}
._33{width:22.116185px;}
._19{width:23.129245px;}
._f{width:24.927605px;}
._10{width:25.944070px;}
._b{width:27.251896px;}
._7{width:28.753218px;}
._d{width:29.889000px;}
._14{width:30.926670px;}
._5{width:32.043565px;}
._11{width:33.682588px;}
._9{width:35.201952px;}
._20{width:36.856417px;}
._a{width:38.489742px;}
._34{width:39.619546px;}
._6{width:40.692302px;}
._1c{width:41.844480px;}
._27{width:42.859474px;}
._e{width:43.937428px;}
._3d{width:45.132151px;}
._21{width:46.208215px;}
._8{width:47.702844px;}
._23{width:48.720026px;}
._12{width:49.735774px;}
._3c{width:50.854354px;}
._16{width:52.058451px;}
._25{width:53.434900px;}
._1a{width:56.308200px;}
._3e{width:57.742932px;}
._1e{width:59.726674px;}
._3f{width:61.443392px;}
._3b{width:72.040583px;}
._15{width:78.902857px;}
._36{width:89.726778px;}
._2b{width:101.613000px;}
._3a{width:102.698305px;}
._39{width:104.013720px;}
._38{width:107.779734px;}
._40{width:113.538260px;}
._30{width:130.203000px;}
._2f{width:160.089000px;}
._2a{width:161.407200px;}
._2e{width:180.033361px;}
._31{width:204.560316px;}
._32{width:239.829336px;}
._37{width:248.323244px;}
._29{width:269.718336px;}
._2c{width:294.233916px;}
.fc7{color:rgb(236,0,140);}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(0,104,152);}
.fc1{color:rgb(148,150,153);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:29.886000px;}
.fs6{font-size:35.868000px;}
.fs9{font-size:41.844000px;}
.fs5{font-size:47.820000px;}
.fsb{font-size:48.000000px;}
.fs2{font-size:48.000300px;}
.fs0{font-size:48.242661px;}
.fs7{font-size:53.796000px;}
.fs1{font-size:59.761202px;}
.fs8{font-size:59.778000px;}
.fs4{font-size:71.730000px;}
.fs3{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y59{bottom:2.526000px;}
.y2{bottom:4.615708px;}
.y1{bottom:38.377917px;}
.y58{bottom:41.879334px;}
.y5a{bottom:42.993625px;}
.y38{bottom:106.299000px;}
.y19e{bottom:111.679500px;}
.y10e{bottom:120.496500px;}
.y37{bottom:124.231500px;}
.y19d{bottom:129.612000px;}
.y10d{bottom:138.912000px;}
.y57{bottom:142.164000px;}
.y13f{bottom:145.440000px;}
.y19c{bottom:147.544500px;}
.y36{bottom:152.896500px;}
.y10c{bottom:159.621000px;}
.y56{bottom:160.096500px;}
.y17c{bottom:160.098000px;}
.y19b{bottom:165.477000px;}
.y13e{bottom:174.862500px;}
.y10b{bottom:177.555000px;}
.ya7{bottom:178.029000px;}
.y55{bottom:178.030500px;}
.y35{bottom:182.716500px;}
.y19a{bottom:184.008000px;}
.y13d{bottom:192.795000px;}
.y10a{bottom:195.487500px;}
.y54{bottom:195.963000px;}
.y34{bottom:200.649000px;}
.y199{bottom:205.444500px;}
.y109{bottom:213.420000px;}
.y53{bottom:213.895500px;}
.y13c{bottom:214.297500px;}
.y198{bottom:223.377000px;}
.y33{bottom:230.467500px;}
.y108{bottom:231.723000px;}
.y52{bottom:231.828000px;}
.y13b{bottom:232.230000px;}
.y13a{bottom:247.987500px;}
.y32{bottom:248.401500px;}
.yd3{bottom:248.673000px;}
.yd4{bottom:249.015000px;}
.y107{bottom:249.655500px;}
.y51{bottom:249.760500px;}
.y17b{bottom:262.540500px;}
.yd5{bottom:266.647500px;}
.y106{bottom:267.588000px;}
.y50{bottom:267.693000px;}
.y81{bottom:267.694500px;}
.y197{bottom:273.123000px;}
.y31{bottom:277.066500px;}
.y139{bottom:277.411500px;}
.yd2{bottom:280.843500px;}
.yd1{bottom:285.327000px;}
.y105{bottom:285.522000px;}
.ya6{bottom:285.625500px;}
.y4f{bottom:285.627000px;}
.y196{bottom:291.057000px;}
.y138{bottom:295.344000px;}
.y104{bottom:303.454500px;}
.y4e{bottom:303.559500px;}
.y30{bottom:305.731500px;}
.y195{bottom:308.989500px;}
.yd0{bottom:309.406500px;}
.y137{bottom:313.276500px;}
.y103{bottom:321.387000px;}
.y4d{bottom:321.492000px;}
.y194{bottom:326.922000px;}
.y136{bottom:329.034000px;}
.y80{bottom:333.597000px;}
.y2f{bottom:334.395000px;}
.ycf{bottom:338.893500px;}
.y102{bottom:339.319500px;}
.y4c{bottom:339.424500px;}
.y193{bottom:345.901500px;}
.y135{bottom:346.966500px;}
.y7f{bottom:351.531000px;}
.y2e{bottom:352.329000px;}
.yce{bottom:356.826000px;}
.y101{bottom:357.252000px;}
.y4b{bottom:357.357000px;}
.y192{bottom:363.834000px;}
.y134{bottom:364.899000px;}
.y1e2{bottom:374.059500px;}
.y100{bottom:375.184500px;}
.y4a{bottom:375.289500px;}
.y165{bottom:375.291000px;}
.y1b7{bottom:376.707000px;}
.y2d{bottom:380.994000px;}
.y7e{bottom:381.619500px;}
.y133{bottom:382.833000px;}
.ycd{bottom:386.313000px;}
.y1e1{bottom:391.992000px;}
.ya5{bottom:393.222000px;}
.y49{bottom:393.223500px;}
.y1b6{bottom:394.641000px;}
.y191{bottom:396.859500px;}
.y2c{bottom:398.926500px;}
.y7d{bottom:399.552000px;}
.y132{bottom:400.765500px;}
.yff{bottom:403.458000px;}
.ycc{bottom:404.245500px;}
.y1e0{bottom:410.754000px;}
.y48{bottom:411.156000px;}
.y1b5{bottom:412.573500px;}
.y7c{bottom:417.484500px;}
.y131{bottom:418.698000px;}
.ya4{bottom:421.785000px;}
.y1df{bottom:428.688000px;}
.y2b{bottom:428.745000px;}
.y47{bottom:429.088500px;}
.y1b4{bottom:430.506000px;}
.y190{bottom:430.933500px;}
.ycb{bottom:433.732500px;}
.y130{bottom:434.455500px;}
.ya3{bottom:439.717500px;}
.y1de{bottom:446.620500px;}
.y2a{bottom:446.679000px;}
.y46{bottom:447.021000px;}
.y7b{bottom:447.573000px;}
.y1b3{bottom:448.438500px;}
.yfe{bottom:448.866000px;}
.yca{bottom:451.666500px;}
.y12f{bottom:452.388000px;}
.y163{bottom:452.868000px;}
.y1dd{bottom:464.553000px;}
.y29{bottom:464.611500px;}
.y45{bottom:464.953500px;}
.y7a{bottom:465.505500px;}
.y1b2{bottom:466.371000px;}
.yfd{bottom:466.798500px;}
.y164{bottom:466.806000px;}
.ya2{bottom:468.280500px;}
.y12e{bottom:470.320500px;}
.y160{bottom:470.500500px;}
.y1dc{bottom:482.485500px;}
.y28{bottom:482.544000px;}
.y44{bottom:482.886000px;}
.y17a{bottom:482.887500px;}
.y79{bottom:483.438000px;}
.yc9{bottom:483.541500px;}
.y1b1{bottom:484.303500px;}
.y162{bottom:484.698000px;}
.yfc{bottom:484.731000px;}
.ya1{bottom:486.213000px;}
.y12d{bottom:488.254500px;}
.y161{bottom:489.180000px;}
.y27{bottom:500.476500px;}
.y43{bottom:500.820000px;}
.y18f{bottom:500.871000px;}
.y1db{bottom:501.249000px;}
.y78{bottom:501.370500px;}
.yc8{bottom:501.474000px;}
.y1b0{bottom:502.237500px;}
.yfb{bottom:503.034000px;}
.ya0{bottom:504.147000px;}
.y12c{bottom:506.187000px;}
.y26{bottom:518.409000px;}
.y42{bottom:518.752500px;}
.y18e{bottom:518.803500px;}
.y1da{bottom:519.181500px;}
.y77{bottom:519.304500px;}
.yc7{bottom:519.406500px;}
.y1af{bottom:520.170000px;}
.yfa{bottom:520.966500px;}
.y9f{bottom:522.079500px;}
.y12b{bottom:524.119500px;}
.y41{bottom:536.685000px;}
.y18d{bottom:536.737500px;}
.y1d9{bottom:537.114000px;}
.yc6{bottom:537.339000px;}
.y1ae{bottom:538.102500px;}
.y12a{bottom:542.052000px;}
.y25{bottom:542.685000px;}
.yf8{bottom:544.782000px;}
.y9c{bottom:546.409500px;}
.y9d{bottom:546.751500px;}
.y15f{bottom:548.746500px;}
.y76{bottom:549.393000px;}
.yf9{bottom:552.505500px;}
.y24{bottom:553.270500px;}
.y40{bottom:554.617500px;}
.y179{bottom:554.986500px;}
.y1d8{bottom:555.046500px;}
.yc5{bottom:555.271500px;}
.y1ad{bottom:556.035000px;}
.y129{bottom:559.984500px;}
.yf5{bottom:562.755000px;}
.y9e{bottom:564.384000px;}
.y15e{bottom:566.679000px;}
.y75{bottom:567.325500px;}
.y18c{bottom:569.763000px;}
.y3f{bottom:572.550000px;}
.y178{bottom:572.920500px;}
.yc4{bottom:573.204000px;}
.y1d7{bottom:573.810000px;}
.y1ac{bottom:573.967500px;}
.yf7{bottom:576.952500px;}
.y128{bottom:577.917000px;}
.y9b{bottom:578.580000px;}
.yf6{bottom:581.436000px;}
.y9a{bottom:583.063500px;}
.y15d{bottom:584.613000px;}
.y18b{bottom:587.695500px;}
.y23{bottom:589.135500px;}
.y3e{bottom:590.484000px;}
.yc3{bottom:591.138000px;}
.y1d6{bottom:591.742500px;}
.y1ab{bottom:591.900000px;}
.y127{bottom:595.851000px;}
.y74{bottom:597.363000px;}
.y15c{bottom:602.545500px;}
.y18a{bottom:605.629500px;}
.y22{bottom:607.069500px;}
.y3d{bottom:608.416500px;}
.yc2{bottom:609.070500px;}
.y1d5{bottom:609.675000px;}
.y1aa{bottom:609.834000px;}
.y99{bottom:611.133000px;}
.yf2{bottom:613.420500px;}
.yf3{bottom:613.762500px;}
.y126{bottom:613.783500px;}
.y73{bottom:615.295500px;}
.y15b{bottom:621.075000px;}
.y189{bottom:623.562000px;}
.y21{bottom:625.002000px;}
.y3c{bottom:626.349000px;}
.yc1{bottom:627.003000px;}
.y1d4{bottom:627.607500px;}
.y98{bottom:629.065500px;}
.yf4{bottom:631.393500px;}
.y125{bottom:631.716000px;}
.y72{bottom:633.229500px;}
.y1a9{bottom:640.054500px;}
.y188{bottom:641.494500px;}
.y20{bottom:642.934500px;}
.y15a{bottom:643.342500px;}
.y3b{bottom:644.281500px;}
.yc0{bottom:644.935500px;}
.yf1{bottom:645.591000px;}
.y1d3{bottom:646.371000px;}
.y97{bottom:646.998000px;}
.yf0{bottom:650.074500px;}
.y71{bottom:651.162000px;}
.y124{bottom:652.173000px;}
.y187{bottom:659.427000px;}
.y1f{bottom:660.867000px;}
.y159{bottom:661.275000px;}
.y3a{bottom:662.214000px;}
.ybf{bottom:662.868000px;}
.y1d2{bottom:664.303500px;}
.y96{bottom:664.932000px;}
.yef{bottom:676.012500px;}
.y186{bottom:677.359500px;}
.y1e{bottom:678.799500px;}
.y70{bottom:678.838500px;}
.y158{bottom:679.207500px;}
.ybe{bottom:680.800500px;}
.y1d1{bottom:682.236000px;}
.y95{bottom:682.864500px;}
.y39{bottom:688.450500px;}
.yee{bottom:693.945000px;}
.y185{bottom:695.292000px;}
.y157{bottom:697.140000px;}
.ybd{bottom:698.734500px;}
.y6f{bottom:699.760500px;}
.y94{bottom:700.797000px;}
.y1d0{bottom:700.999500px;}
.y1d{bottom:706.384500px;}
.yed{bottom:711.877500px;}
.y184{bottom:713.226000px;}
.y1a8{bottom:714.849000px;}
.y156{bottom:715.072500px;}
.ybc{bottom:716.667000px;}
.y93{bottom:718.729500px;}
.y1cf{bottom:718.932000px;}
.yec{bottom:729.810000px;}
.y183{bottom:732.204000px;}
.y1a7{bottom:732.781500px;}
.ybb{bottom:734.599500px;}
.y92{bottom:736.662000px;}
.y1ce{bottom:736.864500px;}
.y6e{bottom:743.467500px;}
.y123{bottom:747.406500px;}
.yeb{bottom:748.114500px;}
.y182{bottom:750.136500px;}
.yba{bottom:752.532000px;}
.y91{bottom:754.594500px;}
.y1cd{bottom:755.628000px;}
.y6d{bottom:761.400000px;}
.y155{bottom:762.352500px;}
.yea{bottom:766.047000px;}
.y181{bottom:768.070500px;}
.yb9{bottom:770.464500px;}
.y90{bottom:772.528500px;}
.y1cc{bottom:773.560500px;}
.y6c{bottom:779.334000px;}
.y122{bottom:782.574000px;}
.ye9{bottom:783.979500px;}
.y154{bottom:786.031500px;}
.y19{bottom:786.264000px;}
.yb8{bottom:788.397000px;}
.y8f{bottom:790.461000px;}
.y1cb{bottom:791.493000px;}
.y177{bottom:796.828500px;}
.y6b{bottom:797.266500px;}
.y1c{bottom:798.219000px;}
.y121{bottom:800.506500px;}
.ye8{bottom:801.912000px;}
.y153{bottom:803.964000px;}
.y18{bottom:804.196500px;}
.yb7{bottom:806.331000px;}
.y8e{bottom:808.393500px;}
.y1b{bottom:810.174000px;}
.y1ca{bottom:810.256500px;}
.y176{bottom:814.761000px;}
.y6a{bottom:815.199000px;}
.ye7{bottom:819.844500px;}
.y1a{bottom:822.129000px;}
.y180{bottom:822.382500px;}
.yb6{bottom:824.263500px;}
.y152{bottom:826.296000px;}
.y1c9{bottom:828.189000px;}
.y120{bottom:828.825000px;}
.y175{bottom:832.695000px;}
.y69{bottom:833.131500px;}
.ye6{bottom:838.147500px;}
.y17{bottom:840.061500px;}
.y17f{bottom:840.316500px;}
.y8d{bottom:840.396000px;}
.y11f{bottom:840.639000px;}
.yb5{bottom:842.196000px;}
.y1c8{bottom:846.952500px;}
.y151{bottom:849.975000px;}
.y174{bottom:850.627500px;}
.y68{bottom:851.064000px;}
.ye5{bottom:856.081500px;}
.y16{bottom:857.994000px;}
.y11e{bottom:864.316500px;}
.y1c7{bottom:864.885000px;}
.y150{bottom:867.907500px;}
.y8c{bottom:869.934000px;}
.ye4{bottom:874.384500px;}
.y15{bottom:875.928000px;}
.yb2{bottom:876.973500px;}
.yb3{bottom:877.315500px;}
.y67{bottom:881.103000px;}
.y11d{bottom:882.250500px;}
.y1c6{bottom:882.817500px;}
.y14f{bottom:885.840000px;}
.y8b{bottom:887.866500px;}
.ye3{bottom:892.317000px;}
.y14{bottom:893.860500px;}
.yb4{bottom:894.948000px;}
.y173{bottom:900.082500px;}
.y11c{bottom:900.183000px;}
.y1c5{bottom:900.750000px;}
.y8a{bottom:905.799000px;}
.y14e{bottom:907.342500px;}
.yb1{bottom:909.144000px;}
.ye2{bottom:910.249500px;}
.y66{bottom:911.191500px;}
.y13{bottom:911.793000px;}
.yb0{bottom:913.627500px;}
.y172{bottom:918.015000px;}
.y11b{bottom:918.115500px;}
.y1c4{bottom:918.684000px;}
.y89{bottom:923.731500px;}
.y14d{bottom:925.275000px;}
.ye1{bottom:928.182000px;}
.y65{bottom:929.124000px;}
.y12{bottom:929.725500px;}
.y171{bottom:935.949000px;}
.y11a{bottom:936.048000px;}
.y1c3{bottom:937.446000px;}
.yaf{bottom:937.707000px;}
.y14c{bottom:941.032500px;}
.ye0{bottom:946.114500px;}
.y11{bottom:947.658000px;}
.y119{bottom:951.805500px;}
.y170{bottom:953.881500px;}
.y1c2{bottom:955.378500px;}
.y88{bottom:955.734000px;}
.y14b{bottom:958.966500px;}
.y64{bottom:959.212500px;}
.y1a6{bottom:962.325000px;}
.ydf{bottom:964.048500px;}
.y10{bottom:965.590500px;}
.yae{bottom:967.194000px;}
.y118{bottom:969.738000px;}
.y16f{bottom:972.411000px;}
.y1c1{bottom:973.312500px;}
.y87{bottom:973.666500px;}
.y14a{bottom:976.899000px;}
.y63{bottom:977.145000px;}
.y1a5{bottom:980.257500px;}
.yde{bottom:981.981000px;}
.yf{bottom:983.524500px;}
.yad{bottom:985.126500px;}
.y117{bottom:987.672000px;}
.y1c0{bottom:991.245000px;}
.y86{bottom:991.600500px;}
.y16e{bottom:993.847500px;}
.y149{bottom:994.831500px;}
.y1a4{bottom:998.190000px;}
.ydd{bottom:999.913500px;}
.ye{bottom:1001.457000px;}
.y116{bottom:1005.604500px;}
.y62{bottom:1007.233500px;}
.y1bf{bottom:1009.177500px;}
.y16d{bottom:1011.780000px;}
.y148{bottom:1012.764000px;}
.yac{bottom:1014.613500px;}
.ydc{bottom:1018.216500px;}
.yd{bottom:1019.389500px;}
.y85{bottom:1020.787500px;}
.y115{bottom:1023.537000px;}
.y61{bottom:1025.166000px;}
.y1be{bottom:1027.941000px;}
.y147{bottom:1030.696500px;}
.yab{bottom:1032.546000px;}
.ydb{bottom:1036.149000px;}
.y114{bottom:1041.469500px;}
.y1bd{bottom:1045.873500px;}
.y146{bottom:1048.629000px;}
.y84{bottom:1050.327000px;}
.y16c{bottom:1050.406500px;}
.y1a3{bottom:1051.236000px;}
.yb{bottom:1051.519500px;}
.y60{bottom:1055.205000px;}
.yc{bottom:1055.737500px;}
.y113{bottom:1059.402000px;}
.yaa{bottom:1062.034500px;}
.y1bc{bottom:1064.635500px;}
.y145{bottom:1066.563000px;}
.y16b{bottom:1068.339000px;}
.y1a2{bottom:1069.170000px;}
.y5f{bottom:1073.187000px;}
.ya{bottom:1075.912500px;}
.y112{bottom:1077.334500px;}
.y83{bottom:1079.865000px;}
.ya9{bottom:1079.967000px;}
.y1bb{bottom:1082.569500px;}
.y144{bottom:1084.495500px;}
.y16a{bottom:1086.271500px;}
.yda{bottom:1087.102500px;}
.y5e{bottom:1091.119500px;}
.y9{bottom:1092.351000px;}
.y111{bottom:1095.268500px;}
.y1ba{bottom:1100.502000px;}
.y143{bottom:1102.428000px;}
.y17e{bottom:1104.204000px;}
.y169{bottom:1104.802500px;}
.yd9{bottom:1105.035000px;}
.y8{bottom:1108.789500px;}
.y82{bottom:1109.052000px;}
.y5d{bottom:1109.053500px;}
.y110{bottom:1113.201000px;}
.y1b9{bottom:1119.264000px;}
.y142{bottom:1120.360500px;}
.y17d{bottom:1122.735000px;}
.yd8{bottom:1122.967500px;}
.y1a1{bottom:1123.566000px;}
.y6{bottom:1123.996500px;}
.y168{bottom:1126.239000px;}
.y5c{bottom:1126.986000px;}
.y7{bottom:1130.505000px;}
.y10f{bottom:1133.658000px;}
.y1b8{bottom:1137.198000px;}
.y141{bottom:1138.293000px;}
.yd7{bottom:1141.497000px;}
.y167{bottom:1144.171500px;}
.y5b{bottom:1144.918500px;}
.y1a0{bottom:1145.001000px;}
.y140{bottom:1158.750000px;}
.y166{bottom:1162.104000px;}
.y5{bottom:1162.851000px;}
.yd6{bottom:1162.933500px;}
.y19f{bottom:1162.935000px;}
.ya8{bottom:1165.888438px;}
.y4{bottom:1166.003240px;}
.y3{bottom:1179.782758px;}
.h16{height:0.000000px;}
.h11{height:13.200074px;}
.h1b{height:23.852220px;}
.h8{height:25.251072px;}
.h15{height:29.834772px;}
.hc{height:29.960304px;}
.h1c{height:33.187080px;}
.h9{height:33.665280px;}
.ha{height:34.074600px;}
.h18{height:34.368215px;}
.h4{height:36.000225px;}
.h14{height:42.792210px;}
.hb{height:42.801048px;}
.h3{height:44.824091px;}
.he{height:44.833500px;}
.h7{height:45.429000px;}
.h12{height:49.898438px;}
.h17{height:51.148176px;}
.h1e{height:51.154176px;}
.hd{height:51.358680px;}
.h10{height:51.524772px;}
.h19{height:51.530772px;}
.h1f{height:53.366772px;}
.h1d{height:54.136176px;}
.h6{height:59.699280px;}
.h5{height:60.683580px;}
.h20{height:65.449500px;}
.h1a{height:85.273500px;}
.hf{height:87.175500px;}
.h2{height:1195.555378px;}
.h13{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;}
.x20{left:81.000000px;}
.x1{left:82.367775px;}
.x4{left:85.039500px;}
.x43{left:92.511000px;}
.x10{left:95.830500px;}
.xd{left:99.982500px;}
.x59{left:106.515000px;}
.x5b{left:108.297000px;}
.x11{left:114.925500px;}
.x46{left:122.997000px;}
.x2{left:125.858878px;}
.x57{left:128.176500px;}
.x58{left:135.486000px;}
.x47{left:146.011500px;}
.x44{left:153.241500px;}
.xf{left:156.484500px;}
.x45{left:166.317000px;}
.x48{left:169.024500px;}
.x29{left:173.010000px;}
.x4a{left:176.496000px;}
.x28{left:179.151000px;}
.x49{left:192.037500px;}
.x21{left:197.263500px;}
.x2a{left:198.276000px;}
.x4b{left:199.510500px;}
.x7{left:203.629500px;}
.x17{left:208.226652px;}
.x8{left:213.343500px;}
.x23{left:221.415000px;}
.x24{left:222.528000px;}
.x22{left:226.914000px;}
.xe{left:231.037500px;}
.x26{left:245.491500px;}
.x25{left:251.238000px;}
.x27{left:269.568000px;}
.x5{left:300.017724px;}
.x6{left:312.720000px;}
.x15{left:453.927000px;}
.x4c{left:461.400000px;}
.x12{left:464.719500px;}
.x14{left:468.871500px;}
.x42{left:470.566500px;}
.x13{left:483.814500px;}
.x4f{left:491.886000px;}
.x5a{left:497.065500px;}
.x52{left:499.359000px;}
.x53{left:500.640000px;}
.x2e{left:512.551500px;}
.x50{left:514.900500px;}
.x2b{left:519.498000px;}
.x4d{left:522.130500px;}
.x3e{left:529.801500px;}
.x4e{left:535.207500px;}
.x30{left:536.703000px;}
.x31{left:538.011000px;}
.x2f{left:544.194000px;}
.x51{left:545.385000px;}
.x2c{left:547.383000px;}
.x2d{left:548.419500px;}
.x19{left:551.208000px;}
.x18{left:557.349000px;}
.x33{left:560.779500px;}
.x32{left:566.526000px;}
.x3f{left:569.232000px;}
.x1b{left:575.359500px;}
.x1c{left:576.474000px;}
.x1a{left:580.860000px;}
.x34{left:584.856000px;}
.x54{left:586.468500px;}
.x40{left:593.383500px;}
.x1e{left:599.436000px;}
.x1d{left:605.182500px;}
.x36{left:612.328500px;}
.x35{left:618.469500px;}
.x1f{left:623.512500px;}
.x38{left:636.480000px;}
.x39{left:637.788000px;}
.x55{left:641.758500px;}
.x37{left:643.969500px;}
.x3a{left:660.556500px;}
.xc{left:664.176000px;}
.xa{left:665.550000px;}
.x9{left:667.213500px;}
.x56{left:668.629500px;}
.xb{left:679.366500px;}
.x41{left:684.834000px;}
.x3c{left:693.343500px;}
.x3b{left:699.484500px;}
.x3d{left:717.496500px;}
.x16{left:791.891968px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v9{vertical-align:-15.002667pt;}
.va{vertical-align:-13.280000pt;}
.v7{vertical-align:-7.968000pt;}
.v4{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:7.973333pt;}
.v3{vertical-align:10.629333pt;}
.ve{vertical-align:18.325333pt;}
.v6{vertical-align:19.280000pt;}
.vd{vertical-align:20.917333pt;}
.vc{vertical-align:21.936000pt;}
.v1{vertical-align:23.141333pt;}
.v8{vertical-align:35.946667pt;}
.v5{vertical-align:37.637333pt;}
.ls19{letter-spacing:-0.300471pt;}
.ls17{letter-spacing:-0.079370pt;}
.ls18{letter-spacing:0.000000pt;}
.ls7f{letter-spacing:0.000776pt;}
.ls9{letter-spacing:0.000877pt;}
.ls3e{letter-spacing:0.001106pt;}
.ls13{letter-spacing:0.001406pt;}
.ls94{letter-spacing:0.001414pt;}
.ls2d{letter-spacing:0.001924pt;}
.ls6f{letter-spacing:0.002043pt;}
.lsaa{letter-spacing:0.002128pt;}
.ls53{letter-spacing:0.003182pt;}
.ls1f{letter-spacing:0.003981pt;}
.ls7d{letter-spacing:0.004981pt;}
.ls1a{letter-spacing:0.034016pt;}
.ls5{letter-spacing:0.083746pt;}
.ls4{letter-spacing:0.084291pt;}
.lsa7{letter-spacing:0.160000pt;}
.ls54{letter-spacing:0.214900pt;}
.ls1{letter-spacing:0.215432pt;}
.ls0{letter-spacing:0.544250pt;}
.ls2{letter-spacing:0.592371pt;}
.ls3{letter-spacing:0.617146pt;}
.ls2c{letter-spacing:0.828153pt;}
.ls47{letter-spacing:0.894346pt;}
.ls23{letter-spacing:0.899679pt;}
.ls99{letter-spacing:1.045551pt;}
.lsc0{letter-spacing:1.471414pt;}
.ls3f{letter-spacing:1.474430pt;}
.ls1c{letter-spacing:1.475372pt;}
.ls4e{letter-spacing:1.962495pt;}
.ls84{letter-spacing:1.964572pt;}
.ls8f{letter-spacing:1.967829pt;}
.ls48{letter-spacing:2.146081pt;}
.lsc{letter-spacing:2.150482pt;}
.ls24{letter-spacing:2.151414pt;}
.ls2e{letter-spacing:2.652304pt;}
.lsc2{letter-spacing:2.653100pt;}
.ls6d{letter-spacing:2.655169pt;}
.ls6{letter-spacing:2.655406pt;}
.ls80{letter-spacing:2.655634pt;}
.ls86{letter-spacing:2.656582pt;}
.ls31{letter-spacing:2.657637pt;}
.lsca{letter-spacing:2.658433pt;}
.ls15{letter-spacing:3.041262pt;}
.lsa{letter-spacing:3.576470pt;}
.ls11{letter-spacing:3.800462pt;}
.ls8d{letter-spacing:3.802615pt;}
.ls46{letter-spacing:4.163491pt;}
.ls73{letter-spacing:4.168824pt;}
.lsb{letter-spacing:4.224938pt;}
.ls40{letter-spacing:5.484059pt;}
.ls41{letter-spacing:5.489486pt;}
.lse{letter-spacing:5.717948pt;}
.lsc5{letter-spacing:5.726819pt;}
.ls5e{letter-spacing:5.785224pt;}
.ls1b{letter-spacing:5.790557pt;}
.ls5c{letter-spacing:5.792719pt;}
.ls2b{letter-spacing:6.617217pt;}
.lsa8{letter-spacing:7.058128pt;}
.lsa9{letter-spacing:7.063461pt;}
.lsb8{letter-spacing:7.358062pt;}
.ls6e{letter-spacing:7.374905pt;}
.lsc1{letter-spacing:7.379322pt;}
.ls82{letter-spacing:7.380238pt;}
.lsc4{letter-spacing:8.391766pt;}
.ls72{letter-spacing:8.679611pt;}
.ls92{letter-spacing:8.684945pt;}
.lsb0{letter-spacing:8.846819pt;}
.ls8b{letter-spacing:8.852153pt;}
.lsd{letter-spacing:8.853962pt;}
.ls7b{letter-spacing:8.854819pt;}
.ls39{letter-spacing:10.635163pt;}
.ls3a{letter-spacing:10.636153pt;}
.ls42{letter-spacing:11.278557pt;}
.ls6c{letter-spacing:11.799906pt;}
.ls81{letter-spacing:11.801486pt;}
.ls25{letter-spacing:11.803163pt;}
.ls26{letter-spacing:11.804153pt;}
.ls6b{letter-spacing:11.805239pt;}
.ls83{letter-spacing:11.806819pt;}
.ls66{letter-spacing:11.809486pt;}
.ls65{letter-spacing:13.278039pt;}
.ls28{letter-spacing:13.936497pt;}
.ls29{letter-spacing:13.937486pt;}
.lsa4{letter-spacing:14.397333pt;}
.ls5b{letter-spacing:14.465637pt;}
.ls59{letter-spacing:14.603024pt;}
.lsb4{letter-spacing:14.752497pt;}
.ls85{letter-spacing:14.754076pt;}
.ls35{letter-spacing:14.755562pt;}
.ls77{letter-spacing:14.755981pt;}
.ls69{letter-spacing:14.756153pt;}
.ls34{letter-spacing:14.757259pt;}
.ls74{letter-spacing:14.757333pt;}
.lsb1{letter-spacing:14.757830pt;}
.ls67{letter-spacing:14.761486pt;}
.ls10{letter-spacing:15.319376pt;}
.ls93{letter-spacing:15.802884pt;}
.ls64{letter-spacing:16.232706pt;}
.ls8a{letter-spacing:16.233037pt;}
.lsa2{letter-spacing:16.258667pt;}
.ls55{letter-spacing:16.337207pt;}
.ls56{letter-spacing:16.353486pt;}
.ls3b{letter-spacing:16.430557pt;}
.ls68{letter-spacing:16.433398pt;}
.ls16{letter-spacing:16.572709pt;}
.lsb3{letter-spacing:16.715163pt;}
.ls8c{letter-spacing:16.725162pt;}
.ls4f{letter-spacing:16.736497pt;}
.ls50{letter-spacing:16.742819pt;}
.ls4c{letter-spacing:16.798039pt;}
.lsbd{letter-spacing:16.937333pt;}
.ls36{letter-spacing:17.126439pt;}
.ls37{letter-spacing:17.239316pt;}
.ls30{letter-spacing:17.331562pt;}
.ls32{letter-spacing:17.333259pt;}
.ls33{letter-spacing:17.336895pt;}
.ls2f{letter-spacing:17.338592pt;}
.ls88{letter-spacing:17.413916pt;}
.ls79{letter-spacing:17.414971pt;}
.ls27{letter-spacing:17.598557pt;}
.ls95{letter-spacing:17.628234pt;}
.lsad{letter-spacing:17.655316pt;}
.lsb7{letter-spacing:17.693333pt;}
.ls43{letter-spacing:17.703316pt;}
.ls7a{letter-spacing:17.706667pt;}
.ls76{letter-spacing:17.707163pt;}
.ls87{letter-spacing:17.708743pt;}
.lsc3{letter-spacing:17.709259pt;}
.ls97{letter-spacing:17.710648pt;}
.ls71{letter-spacing:17.712000pt;}
.lsac{letter-spacing:17.713106pt;}
.ls7{letter-spacing:17.717274pt;}
.ls8{letter-spacing:17.753486pt;}
.ls7c{letter-spacing:17.798595pt;}
.ls5f{letter-spacing:17.916743pt;}
.ls5d{letter-spacing:17.918819pt;}
.ls60{letter-spacing:17.921486pt;}
.ls6a{letter-spacing:18.182819pt;}
.ls98{letter-spacing:18.752218pt;}
.ls1d{letter-spacing:18.809315pt;}
.ls1e{letter-spacing:18.809486pt;}
.ls70{letter-spacing:18.920824pt;}
.ls91{letter-spacing:18.926157pt;}
.ls75{letter-spacing:19.005333pt;}
.ls78{letter-spacing:19.010667pt;}
.ls57{letter-spacing:19.014971pt;}
.lsaf{letter-spacing:19.123372pt;}
.ls9c{letter-spacing:19.177486pt;}
.ls9e{letter-spacing:19.182819pt;}
.ls9d{letter-spacing:19.184497pt;}
.ls22{letter-spacing:19.187372pt;}
.ls9b{letter-spacing:19.190439pt;}
.ls7e{letter-spacing:19.564748pt;}
.ls90{letter-spacing:19.674495pt;}
.ls5a{letter-spacing:19.677097pt;}
.ls45{letter-spacing:19.679829pt;}
.ls2a{letter-spacing:19.731891pt;}
.ls14{letter-spacing:20.124748pt;}
.ls12{letter-spacing:20.130081pt;}
.lsbe{letter-spacing:20.349333pt;}
.ls96{letter-spacing:20.363249pt;}
.lsb5{letter-spacing:20.547891pt;}
.lsa0{letter-spacing:21.021097pt;}
.ls52{letter-spacing:21.147773pt;}
.lsbb{letter-spacing:21.401333pt;}
.ls21{letter-spacing:21.470039pt;}
.lsb9{letter-spacing:21.476000pt;}
.ls20{letter-spacing:21.512706pt;}
.lsa5{letter-spacing:21.596795pt;}
.lsa6{letter-spacing:21.602128pt;}
.lsba{letter-spacing:21.856344pt;}
.ls89{letter-spacing:21.875491pt;}
.lsa3{letter-spacing:21.944000pt;}
.ls3d{letter-spacing:22.292153pt;}
.lsb2{letter-spacing:22.510557pt;}
.ls8e{letter-spacing:22.519414pt;}
.ls51{letter-spacing:22.531891pt;}
.ls38{letter-spacing:22.915891pt;}
.lsc8{letter-spacing:23.157461pt;}
.lsae{letter-spacing:23.443891pt;}
.ls44{letter-spacing:23.502557pt;}
.lsc7{letter-spacing:23.682433pt;}
.ls3c{letter-spacing:23.774039pt;}
.lsbc{letter-spacing:24.064344pt;}
.ls62{letter-spacing:24.437830pt;}
.ls9f{letter-spacing:24.974557pt;}
.ls4d{letter-spacing:25.624706pt;}
.ls58{letter-spacing:26.134439pt;}
.lsb6{letter-spacing:26.301333pt;}
.ls49{letter-spacing:26.415829pt;}
.lsa1{letter-spacing:26.555773pt;}
.ls4b{letter-spacing:27.098495pt;}
.ls4a{letter-spacing:27.672824pt;}
.ls63{letter-spacing:28.323891pt;}
.lsc6{letter-spacing:28.403322pt;}
.lsc9{letter-spacing:28.904655pt;}
.ls61{letter-spacing:33.273224pt;}
.lscb{letter-spacing:112.977106pt;}
.lsbf{letter-spacing:150.910365pt;}
.lsab{letter-spacing:150.926343pt;}
.lsf{letter-spacing:186.130348pt;}
.ls9a{letter-spacing:225.291773pt;}
.ws0{word-spacing:-43.097798pt;}
.ws1{word-spacing:-42.666933pt;}
.ws14d{word-spacing:-38.364192pt;}
.ws143{word-spacing:-34.130362pt;}
.ws9d{word-spacing:-32.994362pt;}
.ws1e{word-spacing:-14.761181pt;}
.wsb6{word-spacing:-2.964989pt;}
.ws89{word-spacing:-2.858823pt;}
.ws34{word-spacing:-2.858770pt;}
.ws1d6{word-spacing:-2.752445pt;}
.ws12a{word-spacing:-2.645960pt;}
.ws118{word-spacing:-2.593196pt;}
.ws116{word-spacing:-2.593037pt;}
.wsb1{word-spacing:-2.539901pt;}
.wsaf{word-spacing:-2.538667pt;}
.ws1a3{word-spacing:-2.327569pt;}
.ws95{word-spacing:-2.220925pt;}
.wse6{word-spacing:-2.061464pt;}
.ws1d7{word-spacing:-1.849186pt;}
.ws12d{word-spacing:-1.795837pt;}
.ws172{word-spacing:-1.748525pt;}
.ws173{word-spacing:-1.743020pt;}
.ws3b{word-spacing:-1.424098pt;}
.ws129{word-spacing:-1.371334pt;}
.ws128{word-spacing:-1.370803pt;}
.ws1d5{word-spacing:-1.317985pt;}
.ws185{word-spacing:-1.211288pt;}
.ws65{word-spacing:-1.158524pt;}
.ws1e8{word-spacing:-1.105176pt;}
.ws61{word-spacing:-1.037477pt;}
.ws46{word-spacing:-0.999063pt;}
.ws5c{word-spacing:-0.907083pt;}
.ws60{word-spacing:-0.890076pt;}
.ws41{word-spacing:-0.839602pt;}
.ws106{word-spacing:-0.786785pt;}
.ws98{word-spacing:-0.627324pt;}
.ws97{word-spacing:-0.627270pt;}
.ws1ae{word-spacing:-0.626739pt;}
.ws5a{word-spacing:-0.544250pt;}
.ws40{word-spacing:-0.467862pt;}
.ws5d{word-spacing:-0.447872pt;}
.ws62{word-spacing:-0.413857pt;}
.ws39{word-spacing:-0.361165pt;}
.ws7{word-spacing:-0.207230pt;}
.wse7{word-spacing:-0.202236pt;}
.wsf6{word-spacing:-0.201917pt;}
.wsc1{word-spacing:-0.201704pt;}
.ws1b5{word-spacing:-0.176000pt;}
.ws1b3{word-spacing:-0.160000pt;}
.ws37{word-spacing:-0.148887pt;}
.ws1a8{word-spacing:-0.096123pt;}
.ws1a7{word-spacing:-0.094514pt;}
.ws25{word-spacing:-0.053136pt;}
.ws12f{word-spacing:-0.042507pt;}
.ws21{word-spacing:-0.037195pt;}
.wsad{word-spacing:-0.016836pt;}
.ws59{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.010627pt;}
.ws5f{word-spacing:0.039685pt;}
.ws194{word-spacing:0.117218pt;}
.ws19a{word-spacing:0.170035pt;}
.ws196{word-spacing:0.223331pt;}
.ws5b{word-spacing:0.260786pt;}
.ws48{word-spacing:0.276148pt;}
.ws177{word-spacing:0.276201pt;}
.wsd3{word-spacing:0.329496pt;}
.ws84{word-spacing:0.329549pt;}
.ws88{word-spacing:0.382314pt;}
.ws1df{word-spacing:0.393206pt;}
.wsb0{word-spacing:0.393419pt;}
.ws20a{word-spacing:0.435715pt;}
.ws28{word-spacing:0.541775pt;}
.wsdc{word-spacing:0.541987pt;}
.ws24{word-spacing:0.542306pt;}
.ws27{word-spacing:0.548763pt;}
.ws26{word-spacing:0.571576pt;}
.ws5e{word-spacing:0.634958pt;}
.ws8c{word-spacing:0.754000pt;}
.ws57{word-spacing:0.754531pt;}
.ws8b{word-spacing:0.754637pt;}
.ws2f{word-spacing:0.807348pt;}
.ws122{word-spacing:0.860697pt;}
.ws121{word-spacing:0.860803pt;}
.wse5{word-spacing:0.913514pt;}
.ws1cd{word-spacing:0.913939pt;}
.wsc0{word-spacing:0.914045pt;}
.ws94{word-spacing:0.914099pt;}
.ws7d{word-spacing:0.966810pt;}
.ws7c{word-spacing:0.966916pt;}
.ws1d1{word-spacing:1.073028pt;}
.ws80{word-spacing:1.126271pt;}
.ws29{word-spacing:1.179619pt;}
.ws1d4{word-spacing:1.232436pt;}
.ws15d{word-spacing:1.232543pt;}
.ws64{word-spacing:1.232755pt;}
.ws9a{word-spacing:1.285732pt;}
.wsbf{word-spacing:1.285838pt;}
.ws1d2{word-spacing:1.339027pt;}
.ws3e{word-spacing:1.339080pt;}
.ws6d{word-spacing:1.445777pt;}
.ws16b{word-spacing:1.498116pt;}
.ws16a{word-spacing:1.498648pt;}
.ws83{word-spacing:1.604176pt;}
.ws197{word-spacing:1.604707pt;}
.ws1d3{word-spacing:1.657843pt;}
.wscb{word-spacing:1.764275pt;}
.ws2a{word-spacing:1.790364pt;}
.ws2b{word-spacing:1.816932pt;}
.ws1f4{word-spacing:1.828038pt;}
.ws45{word-spacing:1.870281pt;}
.wsd4{word-spacing:1.923523pt;}
.ws12b{word-spacing:1.923629pt;}
.ws17f{word-spacing:1.976553pt;}
.ws1e1{word-spacing:2.040422pt;}
.ws1d0{word-spacing:2.083091pt;}
.ws192{word-spacing:2.135908pt;}
.ws1eb{word-spacing:2.146535pt;}
.wsca{word-spacing:2.189203pt;}
.ws20e{word-spacing:2.242180pt;}
.wsbd{word-spacing:2.333221pt;}
.wsbb{word-spacing:2.348877pt;}
.wsbc{word-spacing:2.356763pt;}
.wsba{word-spacing:2.363924pt;}
.ws127{word-spacing:2.401482pt;}
.ws3f{word-spacing:2.402013pt;}
.ws4b{word-spacing:2.454830pt;}
.ws12{word-spacing:2.502706pt;}
.ws6f{word-spacing:2.508019pt;}
.ws1d9{word-spacing:2.508179pt;}
.ws70{word-spacing:2.560943pt;}
.wsf5{word-spacing:2.614291pt;}
.wsf4{word-spacing:2.614451pt;}
.ws36{word-spacing:2.667108pt;}
.ws1e2{word-spacing:2.731084pt;}
.ws77{word-spacing:2.826570pt;}
.ws79{word-spacing:2.826729pt;}
.ws133{word-spacing:2.835114pt;}
.ws17d{word-spacing:2.849227pt;}
.ws134{word-spacing:2.879865pt;}
.ws178{word-spacing:2.879971pt;}
.ws179{word-spacing:2.884763pt;}
.ws1c4{word-spacing:2.892665pt;}
.ws153{word-spacing:2.902760pt;}
.ws136{word-spacing:2.904249pt;}
.ws137{word-spacing:2.907715pt;}
.ws14c{word-spacing:2.913051pt;}
.ws158{word-spacing:2.916058pt;}
.ws154{word-spacing:2.920386pt;}
.wsa9{word-spacing:2.920533pt;}
.ws14f{word-spacing:2.926847pt;}
.ws157{word-spacing:2.927638pt;}
.ws1af{word-spacing:2.929450pt;}
.ws1a2{word-spacing:2.932647pt;}
.ws2c{word-spacing:2.932682pt;}
.ws1d{word-spacing:2.932842pt;}
.ws68{word-spacing:2.933107pt;}
.ws2d{word-spacing:2.933213pt;}
.ws1ea{word-spacing:2.933277pt;}
.ws20{word-spacing:2.933373pt;}
.ws33{word-spacing:2.933745pt;}
.ws135{word-spacing:2.941505pt;}
.wsd2{word-spacing:2.943429pt;}
.wse4{word-spacing:2.944458pt;}
.ws123{word-spacing:2.944610pt;}
.wsb5{word-spacing:2.945201pt;}
.ws150{word-spacing:2.945619pt;}
.ws1a6{word-spacing:2.948990pt;}
.ws156{word-spacing:2.949943pt;}
.ws14a{word-spacing:2.950590pt;}
.ws3c{word-spacing:2.953190pt;}
.ws155{word-spacing:2.967293pt;}
.ws31{word-spacing:2.986031pt;}
.ws7e{word-spacing:2.986190pt;}
.ws131{word-spacing:2.986243pt;}
.ws58{word-spacing:3.039379pt;}
.wsc3{word-spacing:3.092887pt;}
.ws171{word-spacing:3.146023pt;}
.ws2e{word-spacing:3.198840pt;}
.ws71{word-spacing:3.251604pt;}
.wsc5{word-spacing:3.262346pt;}
.ws44{word-spacing:3.304953pt;}
.wsc6{word-spacing:3.305165pt;}
.wsc4{word-spacing:3.358461pt;}
.ws176{word-spacing:3.411066pt;}
.wsf8{word-spacing:3.411278pt;}
.wsf7{word-spacing:3.464095pt;}
.ws195{word-spacing:3.517763pt;}
.wsab{word-spacing:3.570580pt;}
.ws7a{word-spacing:3.676692pt;}
.ws1fc{word-spacing:3.676905pt;}
.ws1ad{word-spacing:3.836154pt;}
.ws91{word-spacing:3.889502pt;}
.ws1ce{word-spacing:3.889555pt;}
.ws69{word-spacing:3.942266pt;}
.ws119{word-spacing:3.961442pt;}
.ws72{word-spacing:3.995827pt;}
.ws73{word-spacing:4.010240pt;}
.ws43{word-spacing:4.048432pt;}
.ws15b{word-spacing:4.048963pt;}
.ws15c{word-spacing:4.049176pt;}
.ws22{word-spacing:4.074324pt;}
.ws23{word-spacing:4.101780pt;}
.wsac{word-spacing:4.314537pt;}
.ws17e{word-spacing:4.413638pt;}
.ws18e{word-spacing:4.420703pt;}
.wsb3{word-spacing:4.471515pt;}
.wsb4{word-spacing:4.473732pt;}
.ws30{word-spacing:4.473998pt;}
.ws4a{word-spacing:4.580164pt;}
.ws205{word-spacing:4.686542pt;}
.ws20d{word-spacing:4.750358pt;}
.ws167{word-spacing:4.792655pt;}
.ws166{word-spacing:4.793186pt;}
.ws126{word-spacing:4.845738pt;}
.ws1fa{word-spacing:4.909660pt;}
.ws10{word-spacing:5.000098pt;}
.ws6c{word-spacing:5.005199pt;}
.ws92{word-spacing:5.005783pt;}
.ws9f{word-spacing:5.096895pt;}
.wsa1{word-spacing:5.111630pt;}
.ws1cc{word-spacing:5.164713pt;}
.ws66{word-spacing:5.165244pt;}
.wsa7{word-spacing:5.217477pt;}
.wsa6{word-spacing:5.217743pt;}
.ws35{word-spacing:5.270826pt;}
.wsa3{word-spacing:5.271091pt;}
.ws78{word-spacing:5.281612pt;}
.ws9b{word-spacing:5.377204pt;}
.ws1c6{word-spacing:5.377469pt;}
.ws208{word-spacing:5.388044pt;}
.ws1f5{word-spacing:5.388256pt;}
.ws149{word-spacing:5.424427pt;}
.wsed{word-spacing:5.430818pt;}
.ws1e5{word-spacing:5.441073pt;}
.ws1dc{word-spacing:5.441126pt;}
.ws3d{word-spacing:5.483104pt;}
.wsc7{word-spacing:5.483901pt;}
.ws3a{word-spacing:5.526984pt;}
.ws8a{word-spacing:5.536399pt;}
.ws108{word-spacing:5.536877pt;}
.ws109{word-spacing:5.536984pt;}
.ws85{word-spacing:5.565365pt;}
.ws165{word-spacing:5.589748pt;}
.ws164{word-spacing:5.590013pt;}
.ws67{word-spacing:5.590279pt;}
.ws1bc{word-spacing:5.610667pt;}
.ws1ba{word-spacing:5.632000pt;}
.ws193{word-spacing:5.643096pt;}
.ws1bd{word-spacing:5.664000pt;}
.ws1bb{word-spacing:5.685333pt;}
.ws1c1{word-spacing:5.690821pt;}
.wse9{word-spacing:5.695914pt;}
.wsd0{word-spacing:5.696445pt;}
.ws4c{word-spacing:5.749209pt;}
.wscf{word-spacing:5.749315pt;}
.ws9{word-spacing:5.797191pt;}
.ws105{word-spacing:5.802292pt;}
.wsc8{word-spacing:5.855640pt;}
.ws120{word-spacing:5.908458pt;}
.wseb{word-spacing:5.908670pt;}
.ws1f2{word-spacing:5.908989pt;}
.ws198{word-spacing:5.961487pt;}
.wsc2{word-spacing:5.961806pt;}
.wsae{word-spacing:6.121267pt;}
.ws1fb{word-spacing:6.131735pt;}
.ws42{word-spacing:6.174828pt;}
.wscd{word-spacing:6.227380pt;}
.ws1a9{word-spacing:6.227539pt;}
.ws1aa{word-spacing:6.255429pt;}
.ws56{word-spacing:6.280410pt;}
.ws1d8{word-spacing:6.333811pt;}
.ws96{word-spacing:6.386841pt;}
.wse1{word-spacing:6.386947pt;}
.wsa8{word-spacing:6.387107pt;}
.ws8{word-spacing:6.434345pt;}
.wsa5{word-spacing:6.439871pt;}
.ws49{word-spacing:6.440402pt;}
.wsb2{word-spacing:6.546036pt;}
.ws18f{word-spacing:6.589708pt;}
.wsb9{word-spacing:6.599332pt;}
.ws4d{word-spacing:6.599916pt;}
.ws190{word-spacing:6.609607pt;}
.wsee{word-spacing:6.652627pt;}
.ws191{word-spacing:6.652680pt;}
.ws18b{word-spacing:6.697645pt;}
.ws18c{word-spacing:6.705498pt;}
.wsc9{word-spacing:6.706029pt;}
.ws1f6{word-spacing:6.716284pt;}
.wse3{word-spacing:6.758634pt;}
.wse0{word-spacing:6.773943pt;}
.ws1c5{word-spacing:6.812035pt;}
.ws206{word-spacing:6.865277pt;}
.ws90{word-spacing:7.024207pt;}
.ws18d{word-spacing:7.024420pt;}
.wsea{word-spacing:7.024579pt;}
.ws86{word-spacing:7.122446pt;}
.ws20b{word-spacing:7.128277pt;}
.ws16c{word-spacing:7.167919pt;}
.ws16f{word-spacing:7.175482pt;}
.ws170{word-spacing:7.183722pt;}
.ws1c2{word-spacing:7.183881pt;}
.ws16d{word-spacing:7.184253pt;}
.ws16e{word-spacing:7.184379pt;}
.wse8{word-spacing:7.290047pt;}
.wsce{word-spacing:7.290365pt;}
.ws1c9{word-spacing:7.343395pt;}
.wse{word-spacing:7.391164pt;}
.ws15a{word-spacing:7.396531pt;}
.ws1c7{word-spacing:7.449508pt;}
.wsbe{word-spacing:7.450039pt;}
.ws1f1{word-spacing:7.502803pt;}
.wsd1{word-spacing:7.555939pt;}
.ws1f8{word-spacing:7.555992pt;}
.ws19c{word-spacing:7.556152pt;}
.ws1b7{word-spacing:7.573333pt;}
.ws1b9{word-spacing:7.600000pt;}
.ws87{word-spacing:7.608969pt;}
.ws1b6{word-spacing:7.653333pt;}
.ws113{word-spacing:7.662052pt;}
.ws115{word-spacing:7.662211pt;}
.ws1fe{word-spacing:7.726187pt;}
.ws174{word-spacing:7.741277pt;}
.ws55{word-spacing:7.768430pt;}
.ws11e{word-spacing:7.768483pt;}
.ws11f{word-spacing:7.768802pt;}
.ws10e{word-spacing:7.866324pt;}
.ws110{word-spacing:7.874543pt;}
.ws19e{word-spacing:7.874915pt;}
.ws19b{word-spacing:7.927891pt;}
.ws38{word-spacing:8.034004pt;}
.ws1cb{word-spacing:8.140435pt;}
.ws81{word-spacing:8.140541pt;}
.ws184{word-spacing:8.141048pt;}
.ws107{word-spacing:8.193518pt;}
.ws1ab{word-spacing:8.352979pt;}
.wsf{word-spacing:8.400802pt;}
.ws1ac{word-spacing:8.406168pt;}
.ws1c3{word-spacing:8.512281pt;}
.ws101{word-spacing:8.512387pt;}
.ws32{word-spacing:8.565204pt;}
.ws1b4{word-spacing:8.661333pt;}
.ws8d{word-spacing:8.671742pt;}
.ws6b{word-spacing:8.724666pt;}
.wsd9{word-spacing:8.724931pt;}
.wsd8{word-spacing:8.736610pt;}
.ws140{word-spacing:8.767493pt;}
.wse2{word-spacing:8.820310pt;}
.wsf2{word-spacing:8.820470pt;}
.ws13f{word-spacing:8.820576pt;}
.wsb7{word-spacing:8.820842pt;}
.ws1ec{word-spacing:8.824675pt;}
.ws4f{word-spacing:8.830831pt;}
.ws1da{word-spacing:8.831203pt;}
.wsa2{word-spacing:8.831256pt;}
.ws111{word-spacing:8.846839pt;}
.wsb8{word-spacing:8.850307pt;}
.ws52{word-spacing:8.884711pt;}
.ws202{word-spacing:8.937475pt;}
.ws1c{word-spacing:8.990611pt;}
.ws8f{word-spacing:8.990717pt;}
.ws6a{word-spacing:8.990824pt;}
.ws1cf{word-spacing:9.043482pt;}
.ws1a1{word-spacing:9.043641pt;}
.wsb{word-spacing:9.250871pt;}
.ws4e{word-spacing:9.256451pt;}
.ws20c{word-spacing:9.266812pt;}
.ws186{word-spacing:9.309640pt;}
.wsde{word-spacing:9.350892pt;}
.ws1b{word-spacing:9.362563pt;}
.wsdd{word-spacing:9.384895pt;}
.ws63{word-spacing:9.415699pt;}
.wsec{word-spacing:9.468676pt;}
.wsef{word-spacing:9.522024pt;}
.ws93{word-spacing:9.575267pt;}
.ws210{word-spacing:9.585894pt;}
.wsd{word-spacing:9.622611pt;}
.ws11c{word-spacing:9.671524pt;}
.wsd6{word-spacing:9.679002pt;}
.wsd7{word-spacing:9.680954pt;}
.ws11d{word-spacing:9.681379pt;}
.ws1f7{word-spacing:9.691900pt;}
.wsf0{word-spacing:9.763060pt;}
.ws54{word-spacing:9.787651pt;}
.wsf3{word-spacing:9.788076pt;}
.ws103{word-spacing:9.840947pt;}
.ws163{word-spacing:9.894295pt;}
.wsaa{word-spacing:9.947006pt;}
.wsa{word-spacing:10.100994pt;}
.wsf9{word-spacing:10.106573pt;}
.ws102{word-spacing:10.212633pt;}
.ws19f{word-spacing:10.212686pt;}
.ws8e{word-spacing:10.266035pt;}
.wsdf{word-spacing:10.319011pt;}
.ws1a5{word-spacing:10.372094pt;}
.wsdb{word-spacing:10.372147pt;}
.ws207{word-spacing:10.542076pt;}
.ws47{word-spacing:10.584957pt;}
.ws104{word-spacing:10.743887pt;}
.ws53{word-spacing:10.850584pt;}
.ws1db{word-spacing:10.861105pt;}
.ws6e{word-spacing:10.956643pt;}
.ws7b{word-spacing:11.010045pt;}
.wsc{word-spacing:11.270092pt;}
.wsf1{word-spacing:11.381731pt;}
.ws1c8{word-spacing:11.381784pt;}
.ws181{word-spacing:11.488428pt;}
.ws182{word-spacing:11.540332pt;}
.ws183{word-spacing:11.541192pt;}
.ws125{word-spacing:11.541245pt;}
.ws17c{word-spacing:11.700547pt;}
.wsa4{word-spacing:11.700707pt;}
.ws17a{word-spacing:11.702097pt;}
.ws1dd{word-spacing:11.799124pt;}
.ws200{word-spacing:11.801791pt;}
.ws99{word-spacing:11.802972pt;}
.ws169{word-spacing:11.806819pt;}
.ws168{word-spacing:11.815715pt;}
.ws12c{word-spacing:11.860168pt;}
.ws74{word-spacing:12.019098pt;}
.ws117{word-spacing:12.115108pt;}
.ws1e4{word-spacing:12.136262pt;}
.wsda{word-spacing:12.213525pt;}
.ws7f{word-spacing:12.338020pt;}
.ws1ee{word-spacing:12.550298pt;}
.ws11b{word-spacing:12.709812pt;}
.wsd5{word-spacing:12.710131pt;}
.wscc{word-spacing:12.816403pt;}
.ws1e9{word-spacing:12.869752pt;}
.ws188{word-spacing:13.089981pt;}
.ws14{word-spacing:13.129755pt;}
.ws1ff{word-spacing:13.783266pt;}
.ws1ef{word-spacing:14.208832pt;}
.ws189{word-spacing:14.282715pt;}
.ws18a{word-spacing:14.282789pt;}
.ws1a0{word-spacing:14.304211pt;}
.ws14e{word-spacing:14.665270pt;}
.ws142{word-spacing:14.665802pt;}
.ws146{word-spacing:14.718672pt;}
.ws12e{word-spacing:15.004726pt;}
.ws6{word-spacing:15.004853pt;}
.ws10b{word-spacing:15.260659pt;}
.ws203{word-spacing:15.314167pt;}
.ws1de{word-spacing:15.409440pt;}
.ws1e7{word-spacing:15.728309pt;}
.ws1f0{word-spacing:15.926343pt;}
.ws5{word-spacing:16.306309pt;}
.ws1ca{word-spacing:16.429757pt;}
.ws1c0{word-spacing:16.442094pt;}
.ws1bf{word-spacing:16.460436pt;}
.ws180{word-spacing:16.482734pt;}
.ws145{word-spacing:16.576736pt;}
.ws187{word-spacing:16.685122pt;}
.ws1f3{word-spacing:16.790763pt;}
.ws1e0{word-spacing:16.897407pt;}
.ws13a{word-spacing:17.368130pt;}
.ws1b8{word-spacing:17.429333pt;}
.ws130{word-spacing:17.620572pt;}
.ws147{word-spacing:17.650193pt;}
.ws13b{word-spacing:17.652464pt;}
.ws13d{word-spacing:17.657797pt;}
.ws10d{word-spacing:17.848229pt;}
.ws209{word-spacing:17.853696pt;}
.ws17{word-spacing:18.136228pt;}
.ws13{word-spacing:18.138431pt;}
.ws15{word-spacing:18.141994pt;}
.ws16{word-spacing:18.143376pt;}
.ws9c{word-spacing:18.757221pt;}
.ws1ed{word-spacing:18.863333pt;}
.ws13e{word-spacing:18.953911pt;}
.ws13c{word-spacing:18.959245pt;}
.ws199{word-spacing:19.022688pt;}
.ws1f9{word-spacing:19.554048pt;}
.wsa0{word-spacing:19.785820pt;}
.ws139{word-spacing:20.317463pt;}
.ws144{word-spacing:20.317680pt;}
.ws152{word-spacing:20.322797pt;}
.ws1a{word-spacing:20.574259pt;}
.ws10c{word-spacing:20.753409pt;}
.ws82{word-spacing:21.316695pt;}
.ws11a{word-spacing:21.380998pt;}
.ws159{word-spacing:21.635546pt;}
.ws148{word-spacing:21.640879pt;}
.ws76{word-spacing:21.838949pt;}
.ws50{word-spacing:21.945274pt;}
.ws204{word-spacing:22.316801pt;}
.ws14b{word-spacing:22.487016pt;}
.ws9e{word-spacing:22.749568pt;}
.ws1fd{word-spacing:23.220326pt;}
.ws4{word-spacing:23.272400pt;}
.ws3{word-spacing:23.336160pt;}
.ws124{word-spacing:23.336224pt;}
.ws141{word-spacing:23.449902pt;}
.ws138{word-spacing:23.551092pt;}
.ws132{word-spacing:23.554426pt;}
.ws151{word-spacing:23.556426pt;}
.ws11{word-spacing:24.196213pt;}
.ws2{word-spacing:24.866400pt;}
.ws19d{word-spacing:24.943665pt;}
.ws112{word-spacing:25.046545pt;}
.ws10f{word-spacing:25.243502pt;}
.ws114{word-spacing:25.265595pt;}
.ws20f{word-spacing:25.983132pt;}
.ws1a4{word-spacing:27.748998pt;}
.ws51{word-spacing:28.268458pt;}
.ws17b{word-spacing:29.082332pt;}
.ws1e3{word-spacing:29.596593pt;}
.ws75{word-spacing:29.775729pt;}
.ws1e6{word-spacing:30.021681pt;}
.ws10a{word-spacing:32.662053pt;}
.ws19{word-spacing:39.604834pt;}
.ws201{word-spacing:47.025573pt;}
.ws162{word-spacing:48.996153pt;}
.ws1b1{word-spacing:49.001486pt;}
.ws161{word-spacing:49.002019pt;}
.ws1b0{word-spacing:63.710064pt;}
.ws1b2{word-spacing:64.995955pt;}
.ws18{word-spacing:70.072240pt;}
.ws1be{word-spacing:71.095968pt;}
.ws160{word-spacing:75.570019pt;}
.wsfb{word-spacing:91.714076pt;}
.ws15f{word-spacing:102.132153pt;}
.wsfa{word-spacing:106.431674pt;}
.ws100{word-spacing:113.976720pt;}
.wsfd{word-spacing:125.932320pt;}
.wsff{word-spacing:152.192401pt;}
.ws175{word-spacing:156.113568pt;}
.wsfc{word-spacing:160.057201pt;}
.wsfe{word-spacing:163.752458pt;}
.ws15e{word-spacing:182.681568pt;}
._1f{margin-left:-17.110976pt;}
._2d{margin-left:-7.776014pt;}
._35{margin-left:-6.801408pt;}
._22{margin-left:-5.895174pt;}
._4{margin-left:-4.751050pt;}
._2{margin-left:-3.855169pt;}
._1{margin-left:-2.065824pt;}
._3{margin-left:-0.917411pt;}
._0{width:1.555625pt;}
._c{width:2.870407pt;}
._18{width:3.922785pt;}
._26{width:5.756245pt;}
._28{width:6.662275pt;}
._17{width:13.602657pt;}
._13{width:14.506978pt;}
._1b{width:15.608459pt;}
._1d{width:17.503528pt;}
._24{width:18.619652pt;}
._33{width:19.658831pt;}
._19{width:20.559329pt;}
._f{width:22.157871pt;}
._10{width:23.061396pt;}
._b{width:24.223908pt;}
._7{width:25.558416pt;}
._d{width:26.568000pt;}
._14{width:27.490374pt;}
._5{width:28.483169pt;}
._11{width:29.940078pt;}
._9{width:31.290624pt;}
._20{width:32.761259pt;}
._a{width:34.213104pt;}
._34{width:35.217374pt;}
._6{width:36.170935pt;}
._1c{width:37.195094pt;}
._27{width:38.097310pt;}
._e{width:39.055491pt;}
._3d{width:40.117467pt;}
._21{width:41.073969pt;}
._8{width:42.402528pt;}
._23{width:43.306690pt;}
._12{width:44.209577pt;}
._3c{width:45.203870pt;}
._16{width:46.274179pt;}
._25{width:47.497688pt;}
._1a{width:50.051733pt;}
._3e{width:51.327050pt;}
._1e{width:53.090377pt;}
._3f{width:54.616349pt;}
._3b{width:64.036074pt;}
._15{width:70.135872pt;}
._36{width:79.757136pt;}
._2b{width:90.322667pt;}
._3a{width:91.287382pt;}
._39{width:92.456640pt;}
._38{width:95.804208pt;}
._40{width:100.922898pt;}
._30{width:115.736000pt;}
._2f{width:142.301333pt;}
._2a{width:143.473067pt;}
._2e{width:160.029654pt;}
._31{width:181.831392pt;}
._32{width:213.181632pt;}
._37{width:220.731773pt;}
._29{width:239.749632pt;}
._2c{width:261.541259pt;}
.fsa{font-size:26.565333pt;}
.fs6{font-size:31.882667pt;}
.fs9{font-size:37.194667pt;}
.fs5{font-size:42.506667pt;}
.fsb{font-size:42.666667pt;}
.fs2{font-size:42.666933pt;}
.fs0{font-size:42.882365pt;}
.fs7{font-size:47.818667pt;}
.fs1{font-size:53.121069pt;}
.fs8{font-size:53.136000pt;}
.fs4{font-size:63.760000pt;}
.fs3{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:2.245333pt;}
.y2{bottom:4.102851pt;}
.y1{bottom:34.113704pt;}
.y58{bottom:37.226074pt;}
.y5a{bottom:38.216555pt;}
.y38{bottom:94.488000pt;}
.y19e{bottom:99.270667pt;}
.y10e{bottom:107.108000pt;}
.y37{bottom:110.428000pt;}
.y19d{bottom:115.210667pt;}
.y10d{bottom:123.477333pt;}
.y57{bottom:126.368000pt;}
.y13f{bottom:129.280000pt;}
.y19c{bottom:131.150667pt;}
.y36{bottom:135.908000pt;}
.y10c{bottom:141.885333pt;}
.y56{bottom:142.308000pt;}
.y17c{bottom:142.309333pt;}
.y19b{bottom:147.090667pt;}
.y13e{bottom:155.433333pt;}
.y10b{bottom:157.826667pt;}
.ya7{bottom:158.248000pt;}
.y55{bottom:158.249333pt;}
.y35{bottom:162.414667pt;}
.y19a{bottom:163.562667pt;}
.y13d{bottom:171.373333pt;}
.y10a{bottom:173.766667pt;}
.y54{bottom:174.189333pt;}
.y34{bottom:178.354667pt;}
.y199{bottom:182.617333pt;}
.y109{bottom:189.706667pt;}
.y53{bottom:190.129333pt;}
.y13c{bottom:190.486667pt;}
.y198{bottom:198.557333pt;}
.y33{bottom:204.860000pt;}
.y108{bottom:205.976000pt;}
.y52{bottom:206.069333pt;}
.y13b{bottom:206.426667pt;}
.y13a{bottom:220.433333pt;}
.y32{bottom:220.801333pt;}
.yd3{bottom:221.042667pt;}
.yd4{bottom:221.346667pt;}
.y107{bottom:221.916000pt;}
.y51{bottom:222.009333pt;}
.y17b{bottom:233.369333pt;}
.yd5{bottom:237.020000pt;}
.y106{bottom:237.856000pt;}
.y50{bottom:237.949333pt;}
.y81{bottom:237.950667pt;}
.y197{bottom:242.776000pt;}
.y31{bottom:246.281333pt;}
.y139{bottom:246.588000pt;}
.yd2{bottom:249.638667pt;}
.yd1{bottom:253.624000pt;}
.y105{bottom:253.797333pt;}
.ya6{bottom:253.889333pt;}
.y4f{bottom:253.890667pt;}
.y196{bottom:258.717333pt;}
.y138{bottom:262.528000pt;}
.y104{bottom:269.737333pt;}
.y4e{bottom:269.830667pt;}
.y30{bottom:271.761333pt;}
.y195{bottom:274.657333pt;}
.yd0{bottom:275.028000pt;}
.y137{bottom:278.468000pt;}
.y103{bottom:285.677333pt;}
.y4d{bottom:285.770667pt;}
.y194{bottom:290.597333pt;}
.y136{bottom:292.474667pt;}
.y80{bottom:296.530667pt;}
.y2f{bottom:297.240000pt;}
.ycf{bottom:301.238667pt;}
.y102{bottom:301.617333pt;}
.y4c{bottom:301.710667pt;}
.y193{bottom:307.468000pt;}
.y135{bottom:308.414667pt;}
.y7f{bottom:312.472000pt;}
.y2e{bottom:313.181333pt;}
.yce{bottom:317.178667pt;}
.y101{bottom:317.557333pt;}
.y4b{bottom:317.650667pt;}
.y192{bottom:323.408000pt;}
.y134{bottom:324.354667pt;}
.y1e2{bottom:332.497333pt;}
.y100{bottom:333.497333pt;}
.y4a{bottom:333.590667pt;}
.y165{bottom:333.592000pt;}
.y1b7{bottom:334.850667pt;}
.y2d{bottom:338.661333pt;}
.y7e{bottom:339.217333pt;}
.y133{bottom:340.296000pt;}
.ycd{bottom:343.389333pt;}
.y1e1{bottom:348.437333pt;}
.ya5{bottom:349.530667pt;}
.y49{bottom:349.532000pt;}
.y1b6{bottom:350.792000pt;}
.y191{bottom:352.764000pt;}
.y2c{bottom:354.601333pt;}
.y7d{bottom:355.157333pt;}
.y132{bottom:356.236000pt;}
.yff{bottom:358.629333pt;}
.ycc{bottom:359.329333pt;}
.y1e0{bottom:365.114667pt;}
.y48{bottom:365.472000pt;}
.y1b5{bottom:366.732000pt;}
.y7c{bottom:371.097333pt;}
.y131{bottom:372.176000pt;}
.ya4{bottom:374.920000pt;}
.y1df{bottom:381.056000pt;}
.y2b{bottom:381.106667pt;}
.y47{bottom:381.412000pt;}
.y1b4{bottom:382.672000pt;}
.y190{bottom:383.052000pt;}
.ycb{bottom:385.540000pt;}
.y130{bottom:386.182667pt;}
.ya3{bottom:390.860000pt;}
.y1de{bottom:396.996000pt;}
.y2a{bottom:397.048000pt;}
.y46{bottom:397.352000pt;}
.y7b{bottom:397.842667pt;}
.y1b3{bottom:398.612000pt;}
.yfe{bottom:398.992000pt;}
.yca{bottom:401.481333pt;}
.y12f{bottom:402.122667pt;}
.y163{bottom:402.549333pt;}
.y1dd{bottom:412.936000pt;}
.y29{bottom:412.988000pt;}
.y45{bottom:413.292000pt;}
.y7a{bottom:413.782667pt;}
.y1b2{bottom:414.552000pt;}
.yfd{bottom:414.932000pt;}
.y164{bottom:414.938667pt;}
.ya2{bottom:416.249333pt;}
.y12e{bottom:418.062667pt;}
.y160{bottom:418.222667pt;}
.y1dc{bottom:428.876000pt;}
.y28{bottom:428.928000pt;}
.y44{bottom:429.232000pt;}
.y17a{bottom:429.233333pt;}
.y79{bottom:429.722667pt;}
.yc9{bottom:429.814667pt;}
.y1b1{bottom:430.492000pt;}
.y162{bottom:430.842667pt;}
.yfc{bottom:430.872000pt;}
.ya1{bottom:432.189333pt;}
.y12d{bottom:434.004000pt;}
.y161{bottom:434.826667pt;}
.y27{bottom:444.868000pt;}
.y43{bottom:445.173333pt;}
.y18f{bottom:445.218667pt;}
.y1db{bottom:445.554667pt;}
.y78{bottom:445.662667pt;}
.yc8{bottom:445.754667pt;}
.y1b0{bottom:446.433333pt;}
.yfb{bottom:447.141333pt;}
.ya0{bottom:448.130667pt;}
.y12c{bottom:449.944000pt;}
.y26{bottom:460.808000pt;}
.y42{bottom:461.113333pt;}
.y18e{bottom:461.158667pt;}
.y1da{bottom:461.494667pt;}
.y77{bottom:461.604000pt;}
.yc7{bottom:461.694667pt;}
.y1af{bottom:462.373333pt;}
.yfa{bottom:463.081333pt;}
.y9f{bottom:464.070667pt;}
.y12b{bottom:465.884000pt;}
.y41{bottom:477.053333pt;}
.y18d{bottom:477.100000pt;}
.y1d9{bottom:477.434667pt;}
.yc6{bottom:477.634667pt;}
.y1ae{bottom:478.313333pt;}
.y12a{bottom:481.824000pt;}
.y25{bottom:482.386667pt;}
.yf8{bottom:484.250667pt;}
.y9c{bottom:485.697333pt;}
.y9d{bottom:486.001333pt;}
.y15f{bottom:487.774667pt;}
.y76{bottom:488.349333pt;}
.yf9{bottom:491.116000pt;}
.y24{bottom:491.796000pt;}
.y40{bottom:492.993333pt;}
.y179{bottom:493.321333pt;}
.y1d8{bottom:493.374667pt;}
.yc5{bottom:493.574667pt;}
.y1ad{bottom:494.253333pt;}
.y129{bottom:497.764000pt;}
.yf5{bottom:500.226667pt;}
.y9e{bottom:501.674667pt;}
.y15e{bottom:503.714667pt;}
.y75{bottom:504.289333pt;}
.y18c{bottom:506.456000pt;}
.y3f{bottom:508.933333pt;}
.y178{bottom:509.262667pt;}
.yc4{bottom:509.514667pt;}
.y1d7{bottom:510.053333pt;}
.y1ac{bottom:510.193333pt;}
.yf7{bottom:512.846667pt;}
.y128{bottom:513.704000pt;}
.y9b{bottom:514.293333pt;}
.yf6{bottom:516.832000pt;}
.y9a{bottom:518.278667pt;}
.y15d{bottom:519.656000pt;}
.y18b{bottom:522.396000pt;}
.y23{bottom:523.676000pt;}
.y3e{bottom:524.874667pt;}
.yc3{bottom:525.456000pt;}
.y1d6{bottom:525.993333pt;}
.y1ab{bottom:526.133333pt;}
.y127{bottom:529.645333pt;}
.y74{bottom:530.989333pt;}
.y15c{bottom:535.596000pt;}
.y18a{bottom:538.337333pt;}
.y22{bottom:539.617333pt;}
.y3d{bottom:540.814667pt;}
.yc2{bottom:541.396000pt;}
.y1d5{bottom:541.933333pt;}
.y1aa{bottom:542.074667pt;}
.y99{bottom:543.229333pt;}
.yf2{bottom:545.262667pt;}
.yf3{bottom:545.566667pt;}
.y126{bottom:545.585333pt;}
.y73{bottom:546.929333pt;}
.y15b{bottom:552.066667pt;}
.y189{bottom:554.277333pt;}
.y21{bottom:555.557333pt;}
.y3c{bottom:556.754667pt;}
.yc1{bottom:557.336000pt;}
.y1d4{bottom:557.873333pt;}
.y98{bottom:559.169333pt;}
.yf4{bottom:561.238667pt;}
.y125{bottom:561.525333pt;}
.y72{bottom:562.870667pt;}
.y1a9{bottom:568.937333pt;}
.y188{bottom:570.217333pt;}
.y20{bottom:571.497333pt;}
.y15a{bottom:571.860000pt;}
.y3b{bottom:572.694667pt;}
.yc0{bottom:573.276000pt;}
.yf1{bottom:573.858667pt;}
.y1d3{bottom:574.552000pt;}
.y97{bottom:575.109333pt;}
.yf0{bottom:577.844000pt;}
.y71{bottom:578.810667pt;}
.y124{bottom:579.709333pt;}
.y187{bottom:586.157333pt;}
.y1f{bottom:587.437333pt;}
.y159{bottom:587.800000pt;}
.y3a{bottom:588.634667pt;}
.ybf{bottom:589.216000pt;}
.y1d2{bottom:590.492000pt;}
.y96{bottom:591.050667pt;}
.yef{bottom:600.900000pt;}
.y186{bottom:602.097333pt;}
.y1e{bottom:603.377333pt;}
.y70{bottom:603.412000pt;}
.y158{bottom:603.740000pt;}
.ybe{bottom:605.156000pt;}
.y1d1{bottom:606.432000pt;}
.y95{bottom:606.990667pt;}
.y39{bottom:611.956000pt;}
.yee{bottom:616.840000pt;}
.y185{bottom:618.037333pt;}
.y157{bottom:619.680000pt;}
.ybd{bottom:621.097333pt;}
.y6f{bottom:622.009333pt;}
.y94{bottom:622.930667pt;}
.y1d0{bottom:623.110667pt;}
.y1d{bottom:627.897333pt;}
.yed{bottom:632.780000pt;}
.y184{bottom:633.978667pt;}
.y1a8{bottom:635.421333pt;}
.y156{bottom:635.620000pt;}
.ybc{bottom:637.037333pt;}
.y93{bottom:638.870667pt;}
.y1cf{bottom:639.050667pt;}
.yec{bottom:648.720000pt;}
.y183{bottom:650.848000pt;}
.y1a7{bottom:651.361333pt;}
.ybb{bottom:652.977333pt;}
.y92{bottom:654.810667pt;}
.y1ce{bottom:654.990667pt;}
.y6e{bottom:660.860000pt;}
.y123{bottom:664.361333pt;}
.yeb{bottom:664.990667pt;}
.y182{bottom:666.788000pt;}
.yba{bottom:668.917333pt;}
.y91{bottom:670.750667pt;}
.y1cd{bottom:671.669333pt;}
.y6d{bottom:676.800000pt;}
.y155{bottom:677.646667pt;}
.yea{bottom:680.930667pt;}
.y181{bottom:682.729333pt;}
.yb9{bottom:684.857333pt;}
.y90{bottom:686.692000pt;}
.y1cc{bottom:687.609333pt;}
.y6c{bottom:692.741333pt;}
.y122{bottom:695.621333pt;}
.ye9{bottom:696.870667pt;}
.y154{bottom:698.694667pt;}
.y19{bottom:698.901333pt;}
.yb8{bottom:700.797333pt;}
.y8f{bottom:702.632000pt;}
.y1cb{bottom:703.549333pt;}
.y177{bottom:708.292000pt;}
.y6b{bottom:708.681333pt;}
.y1c{bottom:709.528000pt;}
.y121{bottom:711.561333pt;}
.ye8{bottom:712.810667pt;}
.y153{bottom:714.634667pt;}
.y18{bottom:714.841333pt;}
.yb7{bottom:716.738667pt;}
.y8e{bottom:718.572000pt;}
.y1b{bottom:720.154667pt;}
.y1ca{bottom:720.228000pt;}
.y176{bottom:724.232000pt;}
.y6a{bottom:724.621333pt;}
.ye7{bottom:728.750667pt;}
.y1a{bottom:730.781333pt;}
.y180{bottom:731.006667pt;}
.yb6{bottom:732.678667pt;}
.y152{bottom:734.485333pt;}
.y1c9{bottom:736.168000pt;}
.y120{bottom:736.733333pt;}
.y175{bottom:740.173333pt;}
.y69{bottom:740.561333pt;}
.ye6{bottom:745.020000pt;}
.y17{bottom:746.721333pt;}
.y17f{bottom:746.948000pt;}
.y8d{bottom:747.018667pt;}
.y11f{bottom:747.234667pt;}
.yb5{bottom:748.618667pt;}
.y1c8{bottom:752.846667pt;}
.y151{bottom:755.533333pt;}
.y174{bottom:756.113333pt;}
.y68{bottom:756.501333pt;}
.ye5{bottom:760.961333pt;}
.y16{bottom:762.661333pt;}
.y11e{bottom:768.281333pt;}
.y1c7{bottom:768.786667pt;}
.y150{bottom:771.473333pt;}
.y8c{bottom:773.274667pt;}
.ye4{bottom:777.230667pt;}
.y15{bottom:778.602667pt;}
.yb2{bottom:779.532000pt;}
.yb3{bottom:779.836000pt;}
.y67{bottom:783.202667pt;}
.y11d{bottom:784.222667pt;}
.y1c6{bottom:784.726667pt;}
.y14f{bottom:787.413333pt;}
.y8b{bottom:789.214667pt;}
.ye3{bottom:793.170667pt;}
.y14{bottom:794.542667pt;}
.yb4{bottom:795.509333pt;}
.y173{bottom:800.073333pt;}
.y11c{bottom:800.162667pt;}
.y1c5{bottom:800.666667pt;}
.y8a{bottom:805.154667pt;}
.y14e{bottom:806.526667pt;}
.yb1{bottom:808.128000pt;}
.ye2{bottom:809.110667pt;}
.y66{bottom:809.948000pt;}
.y13{bottom:810.482667pt;}
.yb0{bottom:812.113333pt;}
.y172{bottom:816.013333pt;}
.y11b{bottom:816.102667pt;}
.y1c4{bottom:816.608000pt;}
.y89{bottom:821.094667pt;}
.y14d{bottom:822.466667pt;}
.ye1{bottom:825.050667pt;}
.y65{bottom:825.888000pt;}
.y12{bottom:826.422667pt;}
.y171{bottom:831.954667pt;}
.y11a{bottom:832.042667pt;}
.y1c3{bottom:833.285333pt;}
.yaf{bottom:833.517333pt;}
.y14c{bottom:836.473333pt;}
.ye0{bottom:840.990667pt;}
.y11{bottom:842.362667pt;}
.y119{bottom:846.049333pt;}
.y170{bottom:847.894667pt;}
.y1c2{bottom:849.225333pt;}
.y88{bottom:849.541333pt;}
.y14b{bottom:852.414667pt;}
.y64{bottom:852.633333pt;}
.y1a6{bottom:855.400000pt;}
.ydf{bottom:856.932000pt;}
.y10{bottom:858.302667pt;}
.yae{bottom:859.728000pt;}
.y118{bottom:861.989333pt;}
.y16f{bottom:864.365333pt;}
.y1c1{bottom:865.166667pt;}
.y87{bottom:865.481333pt;}
.y14a{bottom:868.354667pt;}
.y63{bottom:868.573333pt;}
.y1a5{bottom:871.340000pt;}
.yde{bottom:872.872000pt;}
.yf{bottom:874.244000pt;}
.yad{bottom:875.668000pt;}
.y117{bottom:877.930667pt;}
.y1c0{bottom:881.106667pt;}
.y86{bottom:881.422667pt;}
.y16e{bottom:883.420000pt;}
.y149{bottom:884.294667pt;}
.y1a4{bottom:887.280000pt;}
.ydd{bottom:888.812000pt;}
.ye{bottom:890.184000pt;}
.y116{bottom:893.870667pt;}
.y62{bottom:895.318667pt;}
.y1bf{bottom:897.046667pt;}
.y16d{bottom:899.360000pt;}
.y148{bottom:900.234667pt;}
.yac{bottom:901.878667pt;}
.ydc{bottom:905.081333pt;}
.yd{bottom:906.124000pt;}
.y85{bottom:907.366667pt;}
.y115{bottom:909.810667pt;}
.y61{bottom:911.258667pt;}
.y1be{bottom:913.725333pt;}
.y147{bottom:916.174667pt;}
.yab{bottom:917.818667pt;}
.ydb{bottom:921.021333pt;}
.y114{bottom:925.750667pt;}
.y1bd{bottom:929.665333pt;}
.y146{bottom:932.114667pt;}
.y84{bottom:933.624000pt;}
.y16c{bottom:933.694667pt;}
.y1a3{bottom:934.432000pt;}
.yb{bottom:934.684000pt;}
.y60{bottom:937.960000pt;}
.yc{bottom:938.433333pt;}
.y113{bottom:941.690667pt;}
.yaa{bottom:944.030667pt;}
.y1bc{bottom:946.342667pt;}
.y145{bottom:948.056000pt;}
.y16b{bottom:949.634667pt;}
.y1a2{bottom:950.373333pt;}
.y5f{bottom:953.944000pt;}
.ya{bottom:956.366667pt;}
.y112{bottom:957.630667pt;}
.y83{bottom:959.880000pt;}
.ya9{bottom:959.970667pt;}
.y1bb{bottom:962.284000pt;}
.y144{bottom:963.996000pt;}
.y16a{bottom:965.574667pt;}
.yda{bottom:966.313333pt;}
.y5e{bottom:969.884000pt;}
.y9{bottom:970.978667pt;}
.y111{bottom:973.572000pt;}
.y1ba{bottom:978.224000pt;}
.y143{bottom:979.936000pt;}
.y17e{bottom:981.514667pt;}
.y169{bottom:982.046667pt;}
.yd9{bottom:982.253333pt;}
.y8{bottom:985.590667pt;}
.y82{bottom:985.824000pt;}
.y5d{bottom:985.825333pt;}
.y110{bottom:989.512000pt;}
.y1b9{bottom:994.901333pt;}
.y142{bottom:995.876000pt;}
.y17d{bottom:997.986667pt;}
.yd8{bottom:998.193333pt;}
.y1a1{bottom:998.725333pt;}
.y6{bottom:999.108000pt;}
.y168{bottom:1001.101333pt;}
.y5c{bottom:1001.765333pt;}
.y7{bottom:1004.893333pt;}
.y10f{bottom:1007.696000pt;}
.y1b8{bottom:1010.842667pt;}
.y141{bottom:1011.816000pt;}
.yd7{bottom:1014.664000pt;}
.y167{bottom:1017.041333pt;}
.y5b{bottom:1017.705333pt;}
.y1a0{bottom:1017.778667pt;}
.y140{bottom:1030.000000pt;}
.y166{bottom:1032.981333pt;}
.y5{bottom:1033.645333pt;}
.yd6{bottom:1033.718667pt;}
.y19f{bottom:1033.720000pt;}
.ya8{bottom:1036.345278pt;}
.y4{bottom:1036.447325pt;}
.y3{bottom:1048.695785pt;}
.h16{height:0.000000pt;}
.h11{height:11.733399pt;}
.h1b{height:21.201973pt;}
.h8{height:22.445397pt;}
.h15{height:26.519797pt;}
.hc{height:26.631381pt;}
.h1c{height:29.499627pt;}
.h9{height:29.924693pt;}
.ha{height:30.288533pt;}
.h18{height:30.549524pt;}
.h4{height:32.000200pt;}
.h14{height:38.037520pt;}
.hb{height:38.045376pt;}
.h3{height:39.843636pt;}
.he{height:39.852000pt;}
.h7{height:40.381333pt;}
.h12{height:44.354167pt;}
.h17{height:45.465045pt;}
.h1e{height:45.470379pt;}
.hd{height:45.652160pt;}
.h10{height:45.799797pt;}
.h19{height:45.805131pt;}
.h1f{height:47.437131pt;}
.h1d{height:48.121045pt;}
.h6{height:53.066027pt;}
.h5{height:53.940960pt;}
.h20{height:58.177333pt;}
.h1a{height:75.798667pt;}
.hf{height:77.489333pt;}
.h2{height:1062.715892pt;}
.h13{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;}
.x20{left:72.000000pt;}
.x1{left:73.215800pt;}
.x4{left:75.590667pt;}
.x43{left:82.232000pt;}
.x10{left:85.182667pt;}
.xd{left:88.873333pt;}
.x59{left:94.680000pt;}
.x5b{left:96.264000pt;}
.x11{left:102.156000pt;}
.x46{left:109.330667pt;}
.x2{left:111.874558pt;}
.x57{left:113.934667pt;}
.x58{left:120.432000pt;}
.x47{left:129.788000pt;}
.x44{left:136.214667pt;}
.xf{left:139.097333pt;}
.x45{left:147.837333pt;}
.x48{left:150.244000pt;}
.x29{left:153.786667pt;}
.x4a{left:156.885333pt;}
.x28{left:159.245333pt;}
.x49{left:170.700000pt;}
.x21{left:175.345333pt;}
.x2a{left:176.245333pt;}
.x4b{left:177.342667pt;}
.x7{left:181.004000pt;}
.x17{left:185.090357pt;}
.x8{left:189.638667pt;}
.x23{left:196.813333pt;}
.x24{left:197.802667pt;}
.x22{left:201.701333pt;}
.xe{left:205.366667pt;}
.x26{left:218.214667pt;}
.x25{left:223.322667pt;}
.x27{left:239.616000pt;}
.x5{left:266.682421pt;}
.x6{left:277.973333pt;}
.x15{left:403.490667pt;}
.x4c{left:410.133333pt;}
.x12{left:413.084000pt;}
.x14{left:416.774667pt;}
.x42{left:418.281333pt;}
.x13{left:430.057333pt;}
.x4f{left:437.232000pt;}
.x5a{left:441.836000pt;}
.x52{left:443.874667pt;}
.x53{left:445.013333pt;}
.x2e{left:455.601333pt;}
.x50{left:457.689333pt;}
.x2b{left:461.776000pt;}
.x4d{left:464.116000pt;}
.x3e{left:470.934667pt;}
.x4e{left:475.740000pt;}
.x30{left:477.069333pt;}
.x31{left:478.232000pt;}
.x2f{left:483.728000pt;}
.x51{left:484.786667pt;}
.x2c{left:486.562667pt;}
.x2d{left:487.484000pt;}
.x19{left:489.962667pt;}
.x18{left:495.421333pt;}
.x33{left:498.470667pt;}
.x32{left:503.578667pt;}
.x3f{left:505.984000pt;}
.x1b{left:511.430667pt;}
.x1c{left:512.421333pt;}
.x1a{left:516.320000pt;}
.x34{left:519.872000pt;}
.x54{left:521.305333pt;}
.x40{left:527.452000pt;}
.x1e{left:532.832000pt;}
.x1d{left:537.940000pt;}
.x36{left:544.292000pt;}
.x35{left:549.750667pt;}
.x1f{left:554.233333pt;}
.x38{left:565.760000pt;}
.x39{left:566.922667pt;}
.x55{left:570.452000pt;}
.x37{left:572.417333pt;}
.x3a{left:587.161333pt;}
.xc{left:590.378667pt;}
.xa{left:591.600000pt;}
.x9{left:593.078667pt;}
.x56{left:594.337333pt;}
.xb{left:603.881333pt;}
.x41{left:608.741333pt;}
.x3c{left:616.305333pt;}
.x3b{left:621.764000pt;}
.x3d{left:637.774667pt;}
.x16{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; }
  