
    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_5b40fb166b1b0d625f3c27f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight: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_b964d5d5c8e57bcd48c06861.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight: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_647801e184b1997c8925ec95.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight: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_1097487c814569cec942c06b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight: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_aad6201784fdf89f907f813e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight: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_5b2ed1eaecf65f18b8eaa5ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight: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_0dd5cd9561176b99ad5a84a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight: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_24f752202ef5d6da9fe97af6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight: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_9fc5c75f83681d60a8358900.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight: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_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_788043edf95ed0b16fdc77e0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_206967e34e751e6115b18659.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight: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_c894ca2e3d5a06677e276b74.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight: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_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight: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_3463f599a9201df052a51ce6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight: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_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight: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_3ab962ba1edf9525bc177c1a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight: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_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight: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_2653b44e7745492516689d34.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight: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_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938477;font-style:normal;font-weight: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_70b9efe4577e9446321190c8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938477;font-style:normal;font-weight: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_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.938477;font-style:normal;font-weight: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_47bbbeec9b9a4abb4fbad900.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.938477;font-style:normal;font-weight: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_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938477;font-style:normal;font-weight: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_2653b44e7745492516689d34.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;font-style:normal;font-weight: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_5062b52a303b0f2c9a87597a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;font-style:normal;font-weight: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_af010b8190b3ca5ff9192725.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;font-style:normal;font-weight: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_5062b52a303b0f2c9a87597a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;font-style:normal;font-weight: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_f01c705f09d6ab8511304fa3.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;font-style:normal;font-weight: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_5062b52a303b0f2c9a87597a.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938477;font-style:normal;font-weight: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_92fad7042adca5f6ba476ecb.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938477;font-style:normal;font-weight: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_2c60bcafa994f0d0c13ecf22.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.938477;font-style:normal;font-weight: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_485e9f0a1301f799a436e492.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.938477;font-style:normal;font-weight: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_5062b52a303b0f2c9a87597a.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.938477;font-style:normal;font-weight: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_61969f600711fd64d4e15da4.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938477;font-style:normal;font-weight: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_aa7e3beb0e2eb3a2b0fd8c6c.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.938477;font-style:normal;font-weight: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_9e1003bd219d94b49b93cfe2.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.938477;font-style:normal;font-weight: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_aa7e3beb0e2eb3a2b0fd8c6c.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.938477;font-style:normal;font-weight: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_d4de943d31e99e2fa8b15e0a.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.938477;font-style:normal;font-weight: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_515cb3f137c9eed2cb97ff6d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938477;font-style:normal;font-weight: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_9f290ad4dc124f4998b60d03.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.938477;font-style:normal;font-weight: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_fd5fa4b5aca5634a0aef01c0.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.938477;font-style:normal;font-weight: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_2a31dbe6c1fcaf47b5722a2c.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.938965;font-style:normal;font-weight: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_90a568c5a268df06f3588d1d.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.938477;font-style:normal;font-weight: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_05b2d59f356d0ea94db25678.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.938477;font-style:normal;font-weight: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_3ee4daf4c7e7ae369ddb36a4.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.938965;font-style:normal;font-weight: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_2a5a885de208af61a8846459.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.938965;font-style:normal;font-weight: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_3cabd3bbff9c99c4effb86c5.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938965;font-style:normal;font-weight: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_50f37474908e447ae21b4e77.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.812500;font-style:normal;font-weight: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_ea98675a3b3778f7bc8989ee.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_d4d9ac695e9053bab7db4f38.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.938477;font-style:normal;font-weight: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_186cca72f796923561527349.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.827148;font-style:normal;font-weight: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_a576a1c70bb89533cf6aa448.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.810000;font-style:normal;font-weight: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_d4c588eed30c0123e3846172.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.938477;font-style:normal;font-weight: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_7b94fc161e0b91744ed1996a.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.938477;font-style:normal;font-weight: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_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.938477;font-style:normal;font-weight: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_c894ca2e3d5a06677e276b74.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.938477;font-style:normal;font-weight: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_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.938477;font-style:normal;font-weight: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_70b9efe4577e9446321190c8.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.938477;font-style:normal;font-weight: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_c7313a0528bdcf6a476aab62.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.938477;font-style:normal;font-weight: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_4502be81a9ab54e9a5947a58.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.938477;font-style:normal;font-weight: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_5062b52a303b0f2c9a87597a.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.938477;font-style:normal;font-weight: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_af010b8190b3ca5ff9192725.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.938477;font-style:normal;font-weight: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_aa7e3beb0e2eb3a2b0fd8c6c.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.938477;font-style:normal;font-weight: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_9e1003bd219d94b49b93cfe2.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.938477;font-style:normal;font-weight: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_80d7446d0616d663d4a95ed4.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.938477;font-style:normal;font-weight: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_2843b5bf90beb62b94ffa43c.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_2c60bcafa994f0d0c13ecf22.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_2e4350c134dfd97476053163.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_2c60bcafa994f0d0c13ecf22.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_0b65e9e20524a0d2adbae367.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_61cf5cbe72a46104d8ce6a67.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_e14805d0d9dccf98bc78d30b.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_748709d119346c538e50f9a0.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_0e23fe9f49330dee496d039b.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_4bb9adbe544e8d3530c6ac6d.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_5d561abf42f578e081f470dd.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_264933cacf18a32360bb8c5d.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_abcd2559cf576c5ba3ee9cd2.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_9bba971e6395d0d91aa3f181.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_3aa2c5b23840ba9c8c83fc17.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_9bba971e6395d0d91aa3f181.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_4990758a6e10dad193cf96e3.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_32dd62c7b9fb74d34f76da00.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_959166dd926e254eb71e553f.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_9d66aa6b70a6f83911c720bb.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_9cfb5b79fc7d364113f9d3a2.woff2')format("woff");}.ff59{font-family:ff59;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a;src:url('chunks/assets/font_9bba971e6395d0d91aa3f181.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_0c73582692409f67f0e2205e.woff2')format("woff");}.ff5b{font-family:ff5b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c;src:url('chunks/assets/font_7234ee101dd3ad28ed74fcb8.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_2594e8e922e6995e22be4a4f.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_9bba971e6395d0d91aa3f181.woff2')format("woff");}.ff5e{font-family:ff5e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f;src:url('chunks/assets/font_83014ab22fa743337a6cca23.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_526327ebdd2c5d06ec0d6d7c.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_d7d8febb2251f43b22691cc6.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_bf3a64cb429a107467435f27.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_20c31821e0fc77a6cd05fafe.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_9bba971e6395d0d91aa3f181.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65;src:url('chunks/assets/font_3bcdf206d2d61e786a2cce3d.woff2')format("woff");}.ff65{font-family:ff65;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66;src:url('chunks/assets/font_9bba971e6395d0d91aa3f181.woff2')format("woff");}.ff66{font-family:ff66;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67;src:url('chunks/assets/font_bb1dc4761aa811a8dd84fb5c.woff2')format("woff");}.ff67{font-family:ff67;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68;src:url('chunks/assets/font_9bba971e6395d0d91aa3f181.woff2')format("woff");}.ff68{font-family:ff68;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69;src:url('chunks/assets/font_f3e1cb284400078d6e77b96d.woff2')format("woff");}.ff69{font-family:ff69;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a;src:url('chunks/assets/font_c7b840a6e0c27e5458ccbce7.woff2')format("woff");}.ff6a{font-family:ff6a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b;src:url('chunks/assets/font_5125f266f356d53ab9b410bf.woff2')format("woff");}.ff6b{font-family:ff6b;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c;src:url('chunks/assets/font_6bae5d8befa28ac54fb47b6f.woff2')format("woff");}.ff6c{font-family:ff6c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d;src:url('chunks/assets/font_7ef530d913cb8db5ecc8f53c.woff2')format("woff");}.ff6d{font-family:ff6d;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e;src:url('chunks/assets/font_0884778fb7c0ebad505a6431.woff2')format("woff");}.ff6e{font-family:ff6e;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f;src:url('chunks/assets/font_43c1e76aacf13d97b6756879.woff2')format("woff");}.ff6f{font-family:ff6f;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70;src:url('chunks/assets/font_0ac3d38469604db8e1991c6c.woff2')format("woff");}.ff70{font-family:ff70;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71;src:url('chunks/assets/font_b001ef75d8ce04ec4c20c8f0.woff2')format("woff");}.ff71{font-family:ff71;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72;src:url('chunks/assets/font_c7a4c618fc14d65fc27296fe.woff2')format("woff");}.ff72{font-family:ff72;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff73;src:url('chunks/assets/font_c3619cba8199e1d4820afeb5.woff2')format("woff");}.ff73{font-family:ff73;line-height:0.812500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74;src:url('chunks/assets/font_8f227885719887db8ea9155c.woff2')format("woff");}.ff74{font-family:ff74;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:ff75;src:url('chunks/assets/font_22f90c19338d5842310305ea.woff2')format("woff");}.ff75{font-family:ff75;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff76;src:url('chunks/assets/font_186cca72f796923561527349.woff2')format("woff");}.ff76{font-family:ff76;line-height:0.827148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff77;src:url('chunks/assets/font_e34c2ae5acc016bb268566e8.woff2')format("woff");}.ff77{font-family:ff77;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff78;src:url('chunks/assets/font_b41731a54eb6f31a1326df3d.woff2')format("woff");}.ff78{font-family:ff78;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff79;src:url('chunks/assets/font_a938eb4868a2c02441ec959b.woff2')format("woff");}.ff79{font-family:ff79;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7a;src:url('chunks/assets/font_2a5a885de208af61a8846459.woff2')format("woff");}.ff7a{font-family:ff7a;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7b;src:url('chunks/assets/font_4e29699c4b96d75adb22551b.woff2')format("woff");}.ff7b{font-family:ff7b;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7c;src:url('chunks/assets/font_6ef8abcc7d0e921c0c028296.woff2')format("woff");}.ff7c{font-family:ff7c;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7d;src:url('chunks/assets/font_012a843e0151f375e22ec430.woff2')format("woff");}.ff7d{font-family:ff7d;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7e;src:url('chunks/assets/font_2e1e4ca2b6e3f490a7b03b57.woff2')format("woff");}.ff7e{font-family:ff7e;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v5{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.620000px;}
.v4{vertical-align:2.940000px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.v6{vertical-align:46.364386px;}
.ls5e{letter-spacing:-1.665000px;}
.lsb{letter-spacing:-0.780000px;}
.ls5d{letter-spacing:-0.360000px;}
.ls94{letter-spacing:-0.336000px;}
.ls65{letter-spacing:-0.300000px;}
.ls95{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.240000px;}
.ls80{letter-spacing:-0.192000px;}
.ls7f{letter-spacing:-0.144000px;}
.ls2f{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.090000px;}
.ls2e{letter-spacing:-0.060000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004140px;}
.ls81{letter-spacing:0.048000px;}
.ls13{letter-spacing:0.060000px;}
.ls30{letter-spacing:0.104940px;}
.ls11{letter-spacing:0.120000px;}
.ls89{letter-spacing:0.144000px;}
.ls31{letter-spacing:0.174900px;}
.ls29{letter-spacing:0.180000px;}
.ls55{letter-spacing:0.192000px;}
.lse{letter-spacing:0.240000px;}
.ls82{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.300000px;}
.ls79{letter-spacing:0.336000px;}
.lsd{letter-spacing:0.360000px;}
.ls8f{letter-spacing:0.384000px;}
.ls32{letter-spacing:0.420000px;}
.ls6e{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.480000px;}
.ls7d{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.540000px;}
.ls56{letter-spacing:0.559680px;}
.ls70{letter-spacing:0.576000px;}
.ls21{letter-spacing:0.600000px;}
.ls6d{letter-spacing:0.624000px;}
.ls1b{letter-spacing:0.660000px;}
.ls60{letter-spacing:0.664620px;}
.ls7a{letter-spacing:0.672000px;}
.ls7{letter-spacing:0.720000px;}
.ls84{letter-spacing:0.768000px;}
.ls17{letter-spacing:0.780000px;}
.ls77{letter-spacing:0.816000px;}
.ls10{letter-spacing:0.840000px;}
.ls8b{letter-spacing:0.864000px;}
.ls2d{letter-spacing:0.900000px;}
.ls83{letter-spacing:0.912000px;}
.ls12{letter-spacing:0.960000px;}
.ls28{letter-spacing:1.020000px;}
.ls7b{letter-spacing:1.056000px;}
.ls3a{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.140000px;}
.ls8e{letter-spacing:1.152000px;}
.ls1a{letter-spacing:1.200000px;}
.ls8d{letter-spacing:1.248000px;}
.ls3b{letter-spacing:1.260000px;}
.ls88{letter-spacing:1.296000px;}
.ls1f{letter-spacing:1.320000px;}
.ls7e{letter-spacing:1.344000px;}
.ls16{letter-spacing:1.380000px;}
.ls78{letter-spacing:1.392000px;}
.ls5{letter-spacing:1.440000px;}
.ls92{letter-spacing:1.488000px;}
.ls4{letter-spacing:1.500000px;}
.ls74{letter-spacing:1.536000px;}
.ls36{letter-spacing:1.560000px;}
.ls73{letter-spacing:1.584000px;}
.ls33{letter-spacing:1.620000px;}
.ls85{letter-spacing:1.632000px;}
.ls37{letter-spacing:1.680000px;}
.ls2b{letter-spacing:1.740000px;}
.ls5f{letter-spacing:1.776000px;}
.ls4c{letter-spacing:1.800000px;}
.ls86{letter-spacing:1.824000px;}
.ls1c{letter-spacing:1.860000px;}
.ls3{letter-spacing:1.920000px;}
.ls72{letter-spacing:1.968000px;}
.ls39{letter-spacing:1.980000px;}
.ls41{letter-spacing:2.040000px;}
.ls1{letter-spacing:2.100000px;}
.ls9{letter-spacing:2.160000px;}
.ls4d{letter-spacing:2.220000px;}
.ls8a{letter-spacing:2.256000px;}
.ls25{letter-spacing:2.280000px;}
.ls90{letter-spacing:2.304000px;}
.ls18{letter-spacing:2.340000px;}
.ls75{letter-spacing:2.352000px;}
.ls22{letter-spacing:2.400000px;}
.ls15{letter-spacing:2.460000px;}
.ls8c{letter-spacing:2.496000px;}
.ls1d{letter-spacing:2.520000px;}
.ls46{letter-spacing:2.580000px;}
.ls76{letter-spacing:2.592000px;}
.lsf{letter-spacing:2.640000px;}
.ls91{letter-spacing:2.688000px;}
.ls5c{letter-spacing:2.700000px;}
.ls52{letter-spacing:2.760000px;}
.ls19{letter-spacing:2.820000px;}
.ls20{letter-spacing:2.880000px;}
.ls6f{letter-spacing:2.928000px;}
.ls34{letter-spacing:2.940000px;}
.ls3d{letter-spacing:3.000000px;}
.ls8{letter-spacing:3.060000px;}
.ls7c{letter-spacing:3.072000px;}
.ls4b{letter-spacing:3.120000px;}
.ls51{letter-spacing:3.180000px;}
.ls27{letter-spacing:3.240000px;}
.ls42{letter-spacing:3.300000px;}
.ls71{letter-spacing:3.408000px;}
.ls26{letter-spacing:3.420000px;}
.ls23{letter-spacing:3.480000px;}
.ls4a{letter-spacing:3.600000px;}
.ls3e{letter-spacing:3.660000px;}
.ls93{letter-spacing:3.696000px;}
.ls5b{letter-spacing:3.720000px;}
.ls43{letter-spacing:3.780000px;}
.ls50{letter-spacing:3.840000px;}
.ls44{letter-spacing:3.900000px;}
.ls47{letter-spacing:4.140000px;}
.ls66{letter-spacing:4.200000px;}
.ls4e{letter-spacing:4.260000px;}
.ls87{letter-spacing:4.320000px;}
.ls68{letter-spacing:4.380000px;}
.ls3f{letter-spacing:4.440000px;}
.ls38{letter-spacing:4.500000px;}
.ls35{letter-spacing:4.620000px;}
.ls5a{letter-spacing:4.680000px;}
.ls2a{letter-spacing:4.740000px;}
.ls40{letter-spacing:4.800000px;}
.ls69{letter-spacing:4.980000px;}
.ls49{letter-spacing:5.040000px;}
.ls67{letter-spacing:5.280000px;}
.ls54{letter-spacing:5.340000px;}
.ls3c{letter-spacing:5.400000px;}
.ls59{letter-spacing:5.520000px;}
.ls45{letter-spacing:5.580000px;}
.ls53{letter-spacing:5.700000px;}
.ls6a{letter-spacing:5.760000px;}
.ls2{letter-spacing:5.880000px;}
.ls48{letter-spacing:5.940000px;}
.ls4f{letter-spacing:6.360000px;}
.ls6b{letter-spacing:6.480000px;}
.ls58{letter-spacing:6.540000px;}
.ls57{letter-spacing:6.780000px;}
.ls6c{letter-spacing:7.620000px;}
.ls61{letter-spacing:114.687168px;}
.ls64{letter-spacing:225.667982px;}
.ls62{letter-spacing:724.137576px;}
.ls63{letter-spacing:1360.861152px;}
.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;}
}
.ws80{word-spacing:-60.000000px;}
.ws94{word-spacing:-41.360400px;}
.ws68{word-spacing:-40.794600px;}
.wsb7{word-spacing:-22.440000px;}
.ws37{word-spacing:-20.580000px;}
.ws35{word-spacing:-20.400000px;}
.ws48{word-spacing:-20.040000px;}
.ws7e{word-spacing:-19.680000px;}
.ws31{word-spacing:-19.500000px;}
.wsac{word-spacing:-19.200000px;}
.wsea{word-spacing:-19.140000px;}
.wsab{word-spacing:-18.900000px;}
.ws6b{word-spacing:-18.840000px;}
.ws36{word-spacing:-18.780000px;}
.ws4d{word-spacing:-18.240000px;}
.ws6f{word-spacing:-18.180000px;}
.ws4b{word-spacing:-18.060000px;}
.wsb8{word-spacing:-18.000000px;}
.ws69{word-spacing:-17.940000px;}
.ws4e{word-spacing:-17.460000px;}
.ws32{word-spacing:-17.400000px;}
.wsad{word-spacing:-17.340000px;}
.wsaa{word-spacing:-17.280000px;}
.ws4c{word-spacing:-17.220000px;}
.wsa9{word-spacing:-17.040000px;}
.ws51{word-spacing:-16.860000px;}
.ws7c{word-spacing:-16.800000px;}
.ws49{word-spacing:-16.740000px;}
.ws1{word-spacing:-16.680000px;}
.ws7d{word-spacing:-16.620000px;}
.ws10{word-spacing:-16.500000px;}
.ws6a{word-spacing:-16.440000px;}
.ws33{word-spacing:-16.380000px;}
.wsaf{word-spacing:-16.320000px;}
.wsa4{word-spacing:-16.260000px;}
.ws13{word-spacing:-16.140000px;}
.ws50{word-spacing:-16.020000px;}
.ws6d{word-spacing:-15.960000px;}
.ws7b{word-spacing:-15.900000px;}
.ws4f{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.780000px;}
.ws47{word-spacing:-15.720000px;}
.wsa6{word-spacing:-15.660000px;}
.ws6c{word-spacing:-15.600000px;}
.ws4a{word-spacing:-15.540000px;}
.wse{word-spacing:-15.480000px;}
.ws70{word-spacing:-15.420000px;}
.wsc{word-spacing:-15.360000px;}
.wseb{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.180000px;}
.wsae{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.060000px;}
.ws34{word-spacing:-15.000000px;}
.ws11{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.880000px;}
.wsa3{word-spacing:-14.760000px;}
.wsa5{word-spacing:-14.640000px;}
.wscd{word-spacing:-14.592000px;}
.wscb{word-spacing:-13.920000px;}
.wsce{word-spacing:-13.776000px;}
.wsbb{word-spacing:-13.584000px;}
.wsbc{word-spacing:-13.536000px;}
.ws7f{word-spacing:-13.500000px;}
.wscc{word-spacing:-13.392000px;}
.ws3{word-spacing:-13.344000px;}
.wsd4{word-spacing:-13.248000px;}
.wsd3{word-spacing:-13.152000px;}
.wsba{word-spacing:-12.576000px;}
.wsbd{word-spacing:-12.528000px;}
.ws2{word-spacing:-12.510000px;}
.wsd0{word-spacing:-12.336000px;}
.wsd1{word-spacing:-12.288000px;}
.ws71{word-spacing:-12.192000px;}
.wsb9{word-spacing:-12.000000px;}
.wsd2{word-spacing:-11.856000px;}
.wscf{word-spacing:-11.760000px;}
.ws0{word-spacing:-10.210662px;}
.ws9a{word-spacing:-9.409620px;}
.ws6e{word-spacing:-9.304680px;}
.ws17{word-spacing:-8.919900px;}
.ws15{word-spacing:-8.849940px;}
.ws16{word-spacing:-8.745000px;}
.ws8{word-spacing:-5.880000px;}
.ws3f{word-spacing:-5.400000px;}
.ws8a{word-spacing:-4.800000px;}
.ws8d{word-spacing:-4.740000px;}
.wsb5{word-spacing:-4.200000px;}
.ws53{word-spacing:-4.140000px;}
.ws46{word-spacing:-3.960000px;}
.wsb4{word-spacing:-3.900000px;}
.ws44{word-spacing:-3.780000px;}
.ws57{word-spacing:-3.480000px;}
.ws5e{word-spacing:-3.240000px;}
.ws76{word-spacing:-3.180000px;}
.ws5a{word-spacing:-3.120000px;}
.ws43{word-spacing:-2.940000px;}
.ws5{word-spacing:-2.886000px;}
.wsc1{word-spacing:-2.700000px;}
.wse2{word-spacing:-2.688000px;}
.wsd6{word-spacing:-2.592000px;}
.ws5f{word-spacing:-2.460000px;}
.wsb1{word-spacing:-2.280000px;}
.ws2c{word-spacing:-2.220000px;}
.ws38{word-spacing:-2.100000px;}
.wsb0{word-spacing:-2.040000px;}
.ws54{word-spacing:-1.980000px;}
.wsdf{word-spacing:-1.920000px;}
.ws1a{word-spacing:-1.860000px;}
.ws89{word-spacing:-1.800000px;}
.ws58{word-spacing:-1.740000px;}
.ws8b{word-spacing:-1.620000px;}
.ws99{word-spacing:-1.591964px;}
.wsc5{word-spacing:-1.584000px;}
.ws98{word-spacing:-1.550071px;}
.wse9{word-spacing:-1.536000px;}
.ws66{word-spacing:-1.500000px;}
.ws75{word-spacing:-1.440000px;}
.ws3c{word-spacing:-1.380000px;}
.ws26{word-spacing:-1.320000px;}
.wse3{word-spacing:-1.248000px;}
.ws65{word-spacing:-1.200000px;}
.ws24{word-spacing:-1.140000px;}
.ws3a{word-spacing:-1.080000px;}
.ws61{word-spacing:-1.020000px;}
.ws74{word-spacing:-0.960000px;}
.ws88{word-spacing:-0.900000px;}
.wse0{word-spacing:-0.864000px;}
.ws45{word-spacing:-0.840000px;}
.ws5b{word-spacing:-0.780000px;}
.ws55{word-spacing:-0.720000px;}
.wse7{word-spacing:-0.672000px;}
.ws29{word-spacing:-0.600000px;}
.ws59{word-spacing:-0.540000px;}
.wsd7{word-spacing:-0.480000px;}
.ws77{word-spacing:-0.420000px;}
.wsbe{word-spacing:-0.360000px;}
.ws2a{word-spacing:-0.300000px;}
.ws28{word-spacing:-0.240000px;}
.ws79{word-spacing:-0.192000px;}
.ws73{word-spacing:-0.180000px;}
.wsb2{word-spacing:-0.120000px;}
.ws3b{word-spacing:-0.060000px;}
.wse6{word-spacing:-0.048000px;}
.ws93{word-spacing:-0.041894px;}
.ws67{word-spacing:-0.040795px;}
.ws4{word-spacing:0.000000px;}
.wsa2{word-spacing:0.048000px;}
.ws25{word-spacing:0.060000px;}
.ws6{word-spacing:0.090000px;}
.ws1f{word-spacing:0.120000px;}
.ws78{word-spacing:0.144000px;}
.wsa7{word-spacing:0.180000px;}
.ws1d{word-spacing:0.240000px;}
.wsb{word-spacing:0.300000px;}
.ws91{word-spacing:0.360000px;}
.ws42{word-spacing:0.420000px;}
.ws97{word-spacing:0.432000px;}
.ws62{word-spacing:0.540000px;}
.ws2e{word-spacing:0.600000px;}
.ws9d{word-spacing:0.660000px;}
.ws2f{word-spacing:0.780000px;}
.ws19{word-spacing:0.840000px;}
.ws30{word-spacing:0.900000px;}
.wsd9{word-spacing:0.912000px;}
.ws8f{word-spacing:0.960000px;}
.ws8e{word-spacing:1.140000px;}
.wsdd{word-spacing:1.152000px;}
.ws1c{word-spacing:1.200000px;}
.wsc8{word-spacing:1.248000px;}
.ws2d{word-spacing:1.320000px;}
.ws21{word-spacing:1.560000px;}
.ws60{word-spacing:1.620000px;}
.wsec{word-spacing:1.740000px;}
.ws95{word-spacing:1.776000px;}
.ws5d{word-spacing:1.800000px;}
.ws2b{word-spacing:1.860000px;}
.wsa{word-spacing:1.980000px;}
.wsda{word-spacing:2.016000px;}
.wsa0{word-spacing:2.100000px;}
.ws39{word-spacing:2.160000px;}
.wse8{word-spacing:2.208000px;}
.ws22{word-spacing:2.220000px;}
.wsed{word-spacing:2.280000px;}
.wse4{word-spacing:2.352000px;}
.ws9b{word-spacing:2.400000px;}
.ws90{word-spacing:2.460000px;}
.wsb3{word-spacing:2.520000px;}
.wsbf{word-spacing:2.640000px;}
.ws96{word-spacing:2.736000px;}
.wsd5{word-spacing:2.784000px;}
.ws5c{word-spacing:2.820000px;}
.wsc6{word-spacing:2.832000px;}
.wsc7{word-spacing:2.928000px;}
.ws92{word-spacing:2.940000px;}
.wsc4{word-spacing:2.976000px;}
.ws1e{word-spacing:3.000000px;}
.ws27{word-spacing:3.060000px;}
.ws8c{word-spacing:3.120000px;}
.wsd8{word-spacing:3.168000px;}
.ws40{word-spacing:3.180000px;}
.wsc2{word-spacing:3.216000px;}
.wsb6{word-spacing:3.240000px;}
.wsc9{word-spacing:3.264000px;}
.ws3e{word-spacing:3.300000px;}
.wsdb{word-spacing:3.312000px;}
.wsde{word-spacing:3.360000px;}
.ws9c{word-spacing:3.420000px;}
.wsca{word-spacing:3.456000px;}
.ws20{word-spacing:3.480000px;}
.wse1{word-spacing:3.504000px;}
.wsdc{word-spacing:3.648000px;}
.ws41{word-spacing:3.660000px;}
.wsa1{word-spacing:3.780000px;}
.wse5{word-spacing:3.792000px;}
.ws64{word-spacing:3.840000px;}
.ws9e{word-spacing:3.900000px;}
.wsc3{word-spacing:3.936000px;}
.ws18{word-spacing:3.960000px;}
.ws7a{word-spacing:3.984000px;}
.ws3d{word-spacing:4.080000px;}
.wsa8{word-spacing:4.260000px;}
.ws72{word-spacing:4.320000px;}
.ws63{word-spacing:4.380000px;}
.ws56{word-spacing:4.440000px;}
.ws1b{word-spacing:4.560000px;}
.ws23{word-spacing:4.680000px;}
.ws9f{word-spacing:4.740000px;}
.ws9{word-spacing:4.920000px;}
.ws7{word-spacing:4.980000px;}
.wsc0{word-spacing:5.520000px;}
.ws87{word-spacing:15.075000px;}
.ws86{word-spacing:26.100000px;}
.ws85{word-spacing:37.440000px;}
.ws82{word-spacing:71.325000px;}
.ws81{word-spacing:75.465000px;}
.ws84{word-spacing:119.970000px;}
.ws83{word-spacing:182.430000px;}
.ws52{word-spacing:953.280000px;}
._c{margin-left:-2898.096000px;}
._10{margin-left:-2874.288000px;}
._30{margin-left:-9.984000px;}
._5{margin-left:-7.611600px;}
._9{margin-left:-6.600000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.020000px;}
._7{width:1.020000px;}
._a{width:2.940000px;}
._e{width:4.020000px;}
._b{width:5.160000px;}
._8{width:6.780000px;}
._d{width:7.800000px;}
._f{width:8.820000px;}
._6{width:10.800000px;}
._2e{width:19.770000px;}
._27{width:26.325000px;}
._2b{width:33.375000px;}
._25{width:44.415000px;}
._2a{width:46.215000px;}
._23{width:57.465000px;}
._3{width:59.483628px;}
._13{width:65.856000px;}
._1e{width:71.325000px;}
._29{width:79.965000px;}
._2c{width:81.435000px;}
._21{width:83.385000px;}
._24{width:89.955000px;}
._26{width:92.475000px;}
._20{width:93.825000px;}
._1f{width:105.075000px;}
._28{width:119.760000px;}
._1d{width:136.260000px;}
._22{width:182.430000px;}
._18{width:185.280000px;}
._2f{width:208.665000px;}
._1c{width:253.710000px;}
._2d{width:284.940000px;}
._19{width:461.808000px;}
._14{width:484.512000px;}
._17{width:493.920000px;}
._15{width:524.496000px;}
._1b{width:593.232000px;}
._11{width:690.968400px;}
._12{width:723.696000px;}
._16{width:744.480000px;}
._1a{width:786.384000px;}
.fca{color:rgb(155,155,156);}
.fc7{color:rgb(198,187,25);}
.fc6{color:rgb(240,130,26);}
.fc9{color:transparent;}
.fc5{color:rgb(231,33,26);}
.fcb{color:rgb(231,35,26);}
.fc4{color:rgb(191,26,32);}
.fc3{color:rgb(81,80,80);}
.fc2{color:rgb(4,0,0);}
.fc8{color:rgb(175,175,175);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fsb{font-size:40.794600px;}
.fs11{font-size:41.360400px;}
.fs10{font-size:41.893800px;}
.fs0{font-size:42.000000px;}
.fsc{font-size:42.193200px;}
.fs6{font-size:45.000000px;}
.fse{font-size:47.878800px;}
.fs9{font-size:48.000000px;}
.fsf{font-size:53.863800px;}
.fsd{font-size:54.000000px;}
.fs12{font-size:58.275600px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs14{font-size:66.924000px;}
.fs13{font-size:69.931200px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y137{bottom:3.310800px;}
.y13d{bottom:3.312300px;}
.y1aa{bottom:3.400800px;}
.y119{bottom:3.838800px;}
.y11b{bottom:3.838950px;}
.y12f{bottom:3.839250px;}
.y11f{bottom:3.839400px;}
.y121{bottom:3.839550px;}
.y117{bottom:3.839850px;}
.y123{bottom:3.840000px;}
.y12a{bottom:3.840450px;}
.y11d{bottom:3.840600px;}
.y128{bottom:3.840900px;}
.y178{bottom:3.940800px;}
.y190{bottom:3.942300px;}
.y18c{bottom:3.942450px;}
.y182{bottom:3.942600px;}
.y17a{bottom:3.942750px;}
.y197{bottom:3.942900px;}
.y18e{bottom:3.943050px;}
.y184{bottom:3.943350px;}
.y17c{bottom:3.943650px;}
.y188{bottom:3.943950px;}
.y17e{bottom:3.944250px;}
.y195{bottom:3.944400px;}
.y192{bottom:3.944550px;}
.y18a{bottom:3.944700px;}
.y180{bottom:3.944850px;}
.y139{bottom:3.969900px;}
.y133{bottom:3.970500px;}
.y131{bottom:3.970950px;}
.y13b{bottom:3.971250px;}
.y135{bottom:3.971550px;}
.y1a5{bottom:4.450350px;}
.y1a8{bottom:5.068950px;}
.y1{bottom:46.264950px;}
.y2b{bottom:47.777250px;}
.y1ae{bottom:83.106000px;}
.y14c{bottom:83.484000px;}
.y1ab{bottom:83.649150px;}
.y61{bottom:83.770350px;}
.yd0{bottom:83.912100px;}
.y1be{bottom:83.920350px;}
.y9c{bottom:83.922600px;}
.y20{bottom:87.915150px;}
.y228{bottom:89.263500px;}
.y114{bottom:90.843750px;}
.y16d{bottom:91.242000px;}
.y1b6{bottom:94.079550px;}
.y1ad{bottom:98.850000px;}
.y14b{bottom:99.228000px;}
.y60{bottom:101.770350px;}
.y1ea{bottom:101.772600px;}
.y68{bottom:101.920350px;}
.y9b{bottom:101.922600px;}
.ycf{bottom:101.937600px;}
.y1f{bottom:102.911400px;}
.y227{bottom:104.263500px;}
.y16c{bottom:106.744500px;}
.y113{bottom:107.091750px;}
.y14a{bottom:114.972000px;}
.y1e{bottom:117.904800px;}
.y226{bottom:119.263500px;}
.y1e9{bottom:119.367600px;}
.y1ac{bottom:119.368350px;}
.y5f{bottom:119.770350px;}
.y1d1{bottom:119.912100px;}
.y67{bottom:119.920350px;}
.y9a{bottom:119.922600px;}
.yce{bottom:119.937600px;}
.y16b{bottom:122.247000px;}
.y112{bottom:123.339750px;}
.y149{bottom:130.728000px;}
.y1b1{bottom:133.060231px;}
.y225{bottom:134.263500px;}
.y16a{bottom:137.749500px;}
.y5e{bottom:137.770350px;}
.y1d0{bottom:137.912100px;}
.y66{bottom:137.920350px;}
.y99{bottom:137.922600px;}
.ycd{bottom:137.937600px;}
.y111{bottom:139.587750px;}
.y266{bottom:140.263500px;}
.y1b3{bottom:141.873735px;}
.y172{bottom:144.653550px;}
.y148{bottom:146.472000px;}
.y224{bottom:149.263500px;}
.y169{bottom:153.252000px;}
.y265{bottom:155.263500px;}
.y5d{bottom:155.770350px;}
.y1e8{bottom:155.772600px;}
.y110{bottom:155.835750px;}
.y1cf{bottom:155.912100px;}
.y65{bottom:155.920350px;}
.y98{bottom:155.922600px;}
.ycc{bottom:155.937600px;}
.y171{bottom:160.397550px;}
.y223{bottom:164.263500px;}
.y168{bottom:168.745950px;}
.y264{bottom:170.263500px;}
.y5c{bottom:173.770350px;}
.y1e7{bottom:173.772600px;}
.y1ce{bottom:173.912100px;}
.y1bd{bottom:173.920350px;}
.y97{bottom:173.922600px;}
.ycb{bottom:173.937600px;}
.y170{bottom:176.141550px;}
.y116{bottom:176.338500px;}
.y222{bottom:179.263500px;}
.y140{bottom:179.312122px;}
.y167{bottom:184.248450px;}
.y263{bottom:185.263500px;}
.y10f{bottom:187.347750px;}
.y26{bottom:188.867100px;}
.y1e6{bottom:191.367600px;}
.y64{bottom:191.515350px;}
.y5b{bottom:191.770350px;}
.y16f{bottom:191.885550px;}
.y13f{bottom:191.897256px;}
.y1cd{bottom:191.912100px;}
.y1bc{bottom:191.920350px;}
.y96{bottom:191.922600px;}
.yca{bottom:191.937600px;}
.y221{bottom:194.263500px;}
.y166{bottom:199.750950px;}
.y262{bottom:200.263500px;}
.y118{bottom:203.856000px;}
.y13e{bottom:204.411000px;}
.y25{bottom:206.867100px;}
.y16e{bottom:207.629550px;}
.y220{bottom:209.263500px;}
.y5a{bottom:209.770350px;}
.y1cc{bottom:209.912100px;}
.y1bb{bottom:209.920350px;}
.y95{bottom:209.922600px;}
.yc9{bottom:209.937600px;}
.y165{bottom:215.253450px;}
.y261{bottom:215.263500px;}
.y10e{bottom:222.242100px;}
.y21f{bottom:224.263500px;}
.y24{bottom:224.867100px;}
.y59{bottom:227.770350px;}
.y1e5{bottom:227.772600px;}
.y1cb{bottom:227.912100px;}
.y1ba{bottom:227.920350px;}
.y94{bottom:227.922600px;}
.yc8{bottom:227.937600px;}
.y146{bottom:228.276892px;}
.y260{bottom:230.263500px;}
.y164{bottom:230.755950px;}
.y11a{bottom:231.372000px;}
.y21e{bottom:239.263500px;}
.y145{bottom:240.667792px;}
.y23{bottom:242.867100px;}
.y1a4{bottom:243.069000px;}
.y134{bottom:245.002500px;}
.y25f{bottom:245.263500px;}
.y58{bottom:245.770350px;}
.y1e4{bottom:245.772600px;}
.y1ca{bottom:245.912100px;}
.y1b9{bottom:245.920350px;}
.y93{bottom:245.922600px;}
.yc7{bottom:245.937600px;}
.y163{bottom:246.258450px;}
.y1a6{bottom:247.726050px;}
.y144{bottom:253.057342px;}
.y21d{bottom:254.263500px;}
.y11c{bottom:258.891000px;}
.y25e{bottom:260.263500px;}
.y22{bottom:260.867100px;}
.y162{bottom:261.760950px;}
.y57{bottom:263.770350px;}
.y1e3{bottom:263.772600px;}
.y10d{bottom:263.912100px;}
.ye3{bottom:263.920350px;}
.y92{bottom:263.922600px;}
.yc6{bottom:263.937600px;}
.y1a3{bottom:264.466607px;}
.y143{bottom:265.446892px;}
.y1a7{bottom:267.399000px;}
.y21c{bottom:269.263500px;}
.y25d{bottom:275.263500px;}
.y161{bottom:277.263450px;}
.y142{bottom:277.831081px;}
.y28{bottom:278.867100px;}
.y1a2{bottom:281.341650px;}
.y56{bottom:281.770350px;}
.y1e2{bottom:281.772600px;}
.y10c{bottom:281.912100px;}
.ye2{bottom:281.920350px;}
.y91{bottom:281.922600px;}
.yc5{bottom:281.937600px;}
.y21b{bottom:284.263500px;}
.y11e{bottom:286.407000px;}
.y141{bottom:290.242838px;}
.y25c{bottom:290.263500px;}
.y160{bottom:292.765950px;}
.y21{bottom:296.462100px;}
.y27{bottom:296.867100px;}
.y21a{bottom:299.263500px;}
.y55{bottom:299.770350px;}
.y1e1{bottom:299.772600px;}
.y10b{bottom:299.912100px;}
.ye1{bottom:299.920350px;}
.y90{bottom:299.922600px;}
.yc4{bottom:299.937600px;}
.y25b{bottom:305.263500px;}
.y15f{bottom:308.268450px;}
.y177{bottom:310.344000px;}
.y120{bottom:313.926000px;}
.y219{bottom:314.263500px;}
.y1e0{bottom:317.367600px;}
.y54{bottom:317.770350px;}
.y10a{bottom:317.912100px;}
.ye0{bottom:317.920350px;}
.y8f{bottom:317.922600px;}
.y25a{bottom:320.263500px;}
.y15e{bottom:323.770950px;}
.y218{bottom:329.263500px;}
.y259{bottom:335.263500px;}
.yc3{bottom:335.532600px;}
.y53{bottom:335.770350px;}
.y109{bottom:335.912100px;}
.ydf{bottom:335.920350px;}
.y8e{bottom:335.922600px;}
.y1b0{bottom:336.664920px;}
.y179{bottom:337.057500px;}
.y174{bottom:338.934798px;}
.y122{bottom:341.440500px;}
.y132{bottom:341.452500px;}
.y217{bottom:344.263500px;}
.y258{bottom:350.263500px;}
.y1b8{bottom:353.515350px;}
.y52{bottom:353.770350px;}
.y1df{bottom:353.772600px;}
.y108{bottom:353.912100px;}
.yde{bottom:353.920350px;}
.y8d{bottom:353.922600px;}
.y15d{bottom:354.910950px;}
.y216{bottom:359.263500px;}
.y17b{bottom:363.769500px;}
.y257{bottom:365.263500px;}
.y1b2{bottom:366.320100px;}
.y124{bottom:368.961000px;}
.y1d{bottom:371.164200px;}
.y1de{bottom:371.367600px;}
.y51{bottom:371.770350px;}
.y269{bottom:371.772600px;}
.yc2{bottom:371.787600px;}
.y107{bottom:371.912100px;}
.ydd{bottom:371.920350px;}
.y8c{bottom:371.922600px;}
.y215{bottom:374.263500px;}
.y256{bottom:380.263500px;}
.y138{bottom:382.588500px;}
.y214{bottom:389.263500px;}
.y15c{bottom:389.560350px;}
.y50{bottom:389.770350px;}
.y268{bottom:389.772600px;}
.yc1{bottom:389.787600px;}
.y106{bottom:389.912100px;}
.ydc{bottom:389.920350px;}
.y8b{bottom:389.922600px;}
.y17d{bottom:390.483000px;}
.y255{bottom:395.263500px;}
.y125{bottom:396.477000px;}
.y1c{bottom:398.509200px;}
.y213{bottom:404.263500px;}
.y4f{bottom:407.770350px;}
.y1dd{bottom:407.772600px;}
.yc0{bottom:407.787600px;}
.y173{bottom:407.868300px;}
.y105{bottom:407.912100px;}
.ydb{bottom:407.920350px;}
.y8a{bottom:407.922600px;}
.y254{bottom:410.263500px;}
.y1b{bottom:416.509200px;}
.y17f{bottom:417.198000px;}
.y175{bottom:417.725250px;}
.y212{bottom:419.263500px;}
.y126{bottom:423.993000px;}
.y253{bottom:425.263500px;}
.y4e{bottom:425.770350px;}
.y1dc{bottom:425.772600px;}
.ybf{bottom:425.787600px;}
.y104{bottom:425.912100px;}
.yda{bottom:425.920350px;}
.y89{bottom:425.922600px;}
.y211{bottom:434.263500px;}
.y1a{bottom:434.509200px;}
.y15a{bottom:435.370350px;}
.y252{bottom:440.263500px;}
.y4d{bottom:443.770350px;}
.y1db{bottom:443.772600px;}
.ybe{bottom:443.787600px;}
.y103{bottom:443.912100px;}
.y181{bottom:443.914500px;}
.yd9{bottom:443.920350px;}
.y88{bottom:443.922600px;}
.y210{bottom:449.263500px;}
.y127{bottom:451.510500px;}
.y19{bottom:452.509200px;}
.y251{bottom:455.263500px;}
.y4c{bottom:461.770350px;}
.y1da{bottom:461.772600px;}
.ybd{bottom:461.787600px;}
.y102{bottom:461.912100px;}
.y87{bottom:461.922600px;}
.y20f{bottom:464.263500px;}
.y159{bottom:470.211000px;}
.y250{bottom:470.263500px;}
.y18{bottom:470.509200px;}
.y183{bottom:470.626500px;}
.y130{bottom:478.896000px;}
.y129{bottom:479.026500px;}
.y20e{bottom:479.263500px;}
.y1d9{bottom:479.367600px;}
.yd8{bottom:479.515350px;}
.y4b{bottom:479.770350px;}
.y267{bottom:479.772600px;}
.ybc{bottom:479.787600px;}
.y101{bottom:479.912100px;}
.y86{bottom:479.922600px;}
.y24f{bottom:485.263500px;}
.y158{bottom:485.817000px;}
.y17{bottom:488.509200px;}
.y20d{bottom:494.263500px;}
.y185{bottom:497.337000px;}
.y4a{bottom:497.770350px;}
.ybb{bottom:497.787600px;}
.y100{bottom:497.912100px;}
.y85{bottom:497.922600px;}
.y13c{bottom:499.621500px;}
.y136{bottom:499.755000px;}
.y157{bottom:500.185350px;}
.y24e{bottom:500.263500px;}
.y16{bottom:506.509200px;}
.y12b{bottom:506.545500px;}
.y20c{bottom:509.263500px;}
.y24d{bottom:515.263500px;}
.yd7{bottom:515.380350px;}
.y49{bottom:515.770350px;}
.y1d8{bottom:515.772600px;}
.y156{bottom:515.785350px;}
.yba{bottom:515.787600px;}
.yff{bottom:515.912100px;}
.y84{bottom:515.922600px;}
.y186{bottom:524.055000px;}
.y20b{bottom:524.263500px;}
.y15{bottom:524.509200px;}
.y24c{bottom:530.263500px;}
.y155{bottom:533.380350px;}
.y48{bottom:533.770350px;}
.y1d7{bottom:533.772600px;}
.yb9{bottom:533.787600px;}
.yfe{bottom:533.912100px;}
.y83{bottom:533.922600px;}
.y12c{bottom:534.063000px;}
.y20a{bottom:539.263500px;}
.y14{bottom:542.509200px;}
.y24b{bottom:545.263500px;}
.y187{bottom:550.765500px;}
.y47{bottom:551.770350px;}
.y1d6{bottom:551.772600px;}
.yb8{bottom:551.787600px;}
.y1c9{bottom:551.912100px;}
.y82{bottom:551.922600px;}
.yfd{bottom:551.935350px;}
.y209{bottom:554.263500px;}
.y24a{bottom:560.263500px;}
.y13{bottom:560.509200px;}
.y12d{bottom:561.580500px;}
.y208{bottom:569.263500px;}
.y154{bottom:569.635350px;}
.y46{bottom:569.770350px;}
.y1d5{bottom:569.772600px;}
.yb7{bottom:569.787600px;}
.y1c8{bottom:569.912100px;}
.yd6{bottom:569.920350px;}
.yfc{bottom:569.935350px;}
.y13a{bottom:575.070000px;}
.y249{bottom:575.263500px;}
.y189{bottom:577.480500px;}
.y12{bottom:578.509200px;}
.y207{bottom:584.263500px;}
.y81{bottom:587.517600px;}
.y153{bottom:587.635350px;}
.y45{bottom:587.770350px;}
.y1d4{bottom:587.772600px;}
.yb6{bottom:587.787600px;}
.y1c7{bottom:587.912100px;}
.yd5{bottom:587.920350px;}
.yfb{bottom:587.935350px;}
.y12e{bottom:589.096500px;}
.y248{bottom:590.263500px;}
.y11{bottom:596.509200px;}
.y206{bottom:599.263500px;}
.y18b{bottom:604.197000px;}
.y247{bottom:605.263500px;}
.y152{bottom:605.635350px;}
.y44{bottom:605.770350px;}
.y1d3{bottom:605.772600px;}
.yb5{bottom:605.787600px;}
.y1c6{bottom:605.912100px;}
.yd4{bottom:605.920350px;}
.yfa{bottom:605.935350px;}
.y205{bottom:614.263500px;}
.y10{bottom:614.509200px;}
.y1af{bottom:615.952650px;}
.y246{bottom:620.263500px;}
.y151{bottom:623.635350px;}
.y43{bottom:623.770350px;}
.y80{bottom:623.772600px;}
.yb4{bottom:623.787600px;}
.y1c5{bottom:623.912100px;}
.yd3{bottom:623.920350px;}
.yf9{bottom:623.935350px;}
.y204{bottom:629.263500px;}
.y18d{bottom:630.909000px;}
.y245{bottom:635.263500px;}
.y63{bottom:641.365350px;}
.y150{bottom:641.635350px;}
.y42{bottom:641.770350px;}
.y7f{bottom:641.772600px;}
.yb3{bottom:641.787600px;}
.yd2{bottom:641.920350px;}
.yf8{bottom:641.935350px;}
.y203{bottom:644.263500px;}
.y244{bottom:650.263500px;}
.y18f{bottom:657.622500px;}
.y202{bottom:659.263500px;}
.y1d2{bottom:659.367600px;}
.y14f{bottom:659.635350px;}
.yf{bottom:659.667300px;}
.y41{bottom:659.770350px;}
.y7e{bottom:659.772600px;}
.yb2{bottom:659.787600px;}
.yf7{bottom:659.935350px;}
.y243{bottom:665.263500px;}
.ye{bottom:672.118050px;}
.y201{bottom:674.263500px;}
.y62{bottom:677.230350px;}
.yd1{bottom:677.515350px;}
.y40{bottom:677.770350px;}
.y7d{bottom:677.772600px;}
.yb1{bottom:677.787600px;}
.yf6{bottom:677.935350px;}
.y242{bottom:680.263500px;}
.y191{bottom:684.334500px;}
.y200{bottom:689.263500px;}
.y14e{bottom:695.230350px;}
.y241{bottom:695.263500px;}
.y3f{bottom:695.770350px;}
.y7c{bottom:695.772600px;}
.yb0{bottom:695.787600px;}
.yf5{bottom:695.935350px;}
.yd{bottom:703.833600px;}
.y1ff{bottom:704.263500px;}
.y240{bottom:710.263500px;}
.y193{bottom:711.051000px;}
.y3e{bottom:713.770350px;}
.y7b{bottom:713.772600px;}
.yaf{bottom:713.787600px;}
.yf4{bottom:713.935350px;}
.y1fe{bottom:719.263500px;}
.yc{bottom:722.758950px;}
.y23f{bottom:725.263500px;}
.yb{bottom:730.833600px;}
.y3d{bottom:731.770350px;}
.y7a{bottom:731.772600px;}
.yae{bottom:731.787600px;}
.yf3{bottom:731.935350px;}
.y1fd{bottom:734.263500px;}
.y194{bottom:737.763000px;}
.y23e{bottom:740.263500px;}
.y1a9{bottom:746.568000px;}
.y1fc{bottom:749.263500px;}
.ya{bottom:749.758950px;}
.y3c{bottom:749.770350px;}
.y79{bottom:749.772600px;}
.yad{bottom:749.787600px;}
.yf2{bottom:749.935350px;}
.y23d{bottom:755.263500px;}
.y1fb{bottom:764.263500px;}
.y196{bottom:764.478000px;}
.y1b5{bottom:767.365350px;}
.y3b{bottom:767.770350px;}
.y78{bottom:767.772600px;}
.yac{bottom:767.787600px;}
.yf1{bottom:767.935350px;}
.y23c{bottom:770.263500px;}
.y9{bottom:778.480800px;}
.y1fa{bottom:779.263500px;}
.y23b{bottom:785.263500px;}
.y3a{bottom:785.770350px;}
.y77{bottom:785.772600px;}
.yab{bottom:785.787600px;}
.yf0{bottom:785.935350px;}
.y198{bottom:791.191500px;}
.y1f9{bottom:794.263500px;}
.y23a{bottom:800.263500px;}
.y1b4{bottom:803.230350px;}
.y1c4{bottom:803.530350px;}
.y39{bottom:803.770350px;}
.y76{bottom:803.772600px;}
.yaa{bottom:803.787600px;}
.yef{bottom:803.935350px;}
.y1f8{bottom:809.263500px;}
.y239{bottom:815.263500px;}
.y199{bottom:817.906500px;}
.y38{bottom:821.770350px;}
.y75{bottom:821.772600px;}
.ya9{bottom:821.787600px;}
.yee{bottom:821.935350px;}
.y1f7{bottom:824.263500px;}
.y8{bottom:824.622000px;}
.y238{bottom:830.263500px;}
.y1f6{bottom:839.263500px;}
.y37{bottom:839.770350px;}
.y74{bottom:839.772600px;}
.y1c3{bottom:839.785350px;}
.ya8{bottom:839.787600px;}
.yed{bottom:839.935350px;}
.y19a{bottom:844.618500px;}
.y237{bottom:845.263500px;}
.y1f5{bottom:854.263500px;}
.y36{bottom:857.770350px;}
.y73{bottom:857.772600px;}
.y1c2{bottom:857.785350px;}
.ya7{bottom:857.787600px;}
.yec{bottom:857.935350px;}
.y236{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.y1f4{bottom:869.263500px;}
.y19b{bottom:871.333500px;}
.y235{bottom:875.263500px;}
.y35{bottom:875.770350px;}
.y72{bottom:875.772600px;}
.y1c1{bottom:875.785350px;}
.ya6{bottom:875.787600px;}
.y1f3{bottom:884.263500px;}
.y234{bottom:890.263500px;}
.yeb{bottom:893.530350px;}
.y34{bottom:893.770350px;}
.y71{bottom:893.772600px;}
.y1c0{bottom:893.785350px;}
.ya5{bottom:893.787600px;}
.y6{bottom:897.543600px;}
.y19c{bottom:898.048500px;}
.y1f2{bottom:899.263500px;}
.y233{bottom:905.263500px;}
.y33{bottom:911.770350px;}
.y70{bottom:911.772600px;}
.y1bf{bottom:911.785350px;}
.ya4{bottom:911.787600px;}
.y1f1{bottom:914.263500px;}
.y232{bottom:920.263500px;}
.y19d{bottom:924.763500px;}
.y1f0{bottom:929.263500px;}
.y32{bottom:929.770350px;}
.y6f{bottom:929.772600px;}
.yea{bottom:929.785350px;}
.ya3{bottom:929.787600px;}
.y5{bottom:934.004400px;}
.y231{bottom:935.263500px;}
.y1ef{bottom:944.263500px;}
.y31{bottom:947.770350px;}
.y6e{bottom:947.772600px;}
.ye9{bottom:947.785350px;}
.ya2{bottom:947.787600px;}
.y230{bottom:950.263500px;}
.y19e{bottom:951.474000px;}
.y1ee{bottom:959.263500px;}
.y22f{bottom:965.263500px;}
.y30{bottom:965.770350px;}
.y6d{bottom:965.772600px;}
.ye8{bottom:965.785350px;}
.ya1{bottom:965.787600px;}
.y4{bottom:970.465200px;}
.y1ed{bottom:974.263500px;}
.y19f{bottom:978.189000px;}
.y22e{bottom:980.263500px;}
.y2f{bottom:983.770350px;}
.y6c{bottom:983.772600px;}
.ye7{bottom:983.785350px;}
.ya0{bottom:983.787600px;}
.y1ec{bottom:989.263500px;}
.y22d{bottom:995.263500px;}
.y2e{bottom:1001.770350px;}
.y6b{bottom:1001.772600px;}
.ye6{bottom:1001.785350px;}
.y9f{bottom:1001.787600px;}
.y1eb{bottom:1004.263500px;}
.y1a0{bottom:1004.902500px;}
.y3{bottom:1006.926000px;}
.y22c{bottom:1010.263500px;}
.y2d{bottom:1019.770350px;}
.ye5{bottom:1019.785350px;}
.y9e{bottom:1019.787600px;}
.y176{bottom:1023.404850px;}
.y22b{bottom:1025.263500px;}
.y1a1{bottom:1031.616000px;}
.y15b{bottom:1037.035350px;}
.y147{bottom:1037.365350px;}
.y6a{bottom:1037.367600px;}
.y2c{bottom:1037.770350px;}
.ye4{bottom:1037.785350px;}
.y9d{bottom:1037.787600px;}
.y22a{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1b7{bottom:1132.415550px;}
.y69{bottom:1132.418700px;}
.y229{bottom:1132.423500px;}
.y14d{bottom:1132.428000px;}
.y115{bottom:1132.431750px;}
.y2a{bottom:1136.092500px;}
.y29{bottom:1150.492500px;}
.h1b{height:12.063000px;}
.h1d{height:12.064500px;}
.h32{height:12.388500px;}
.h17{height:12.588000px;}
.h15{height:12.589500px;}
.h29{height:12.925500px;}
.h2b{height:12.928500px;}
.h18{height:13.020000px;}
.h1a{height:13.021500px;}
.h31{height:16.623000px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h16{height:29.699584px;}
.h1c{height:29.719504px;}
.h2c{height:30.131698px;}
.h2a{height:30.499832px;}
.h33{height:30.520288px;}
.h2{height:30.597656px;}
.h19{height:30.717803px;}
.h20{height:31.074012px;}
.h25{height:31.267090px;}
.h26{height:31.301290px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.hc{height:32.816576px;}
.h21{height:33.328125px;}
.h14{height:33.351562px;}
.h2f{height:33.867867px;}
.h27{height:34.857076px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h1e{height:35.042561px;}
.h30{height:35.487223px;}
.h2d{height:35.528584px;}
.h1f{height:35.817659px;}
.h22{height:37.520508px;}
.h28{height:39.214319px;}
.h34{height:39.495377px;}
.h12{height:41.660156px;}
.hf{height:41.689453px;}
.he{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.718034px;}
.h9{height:43.740234px;}
.h24{height:44.100000px;}
.h37{height:45.356695px;}
.h23{height:47.040000px;}
.h36{height:47.394778px;}
.h13{height:52.567951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h35{height:92.850058px;}
.h2e{height:807.168000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w11{width:19.849350px;}
.w10{width:19.849500px;}
.w2f{width:20.383500px;}
.w30{width:20.384250px;}
.wf{width:26.395500px;}
.we{width:26.397000px;}
.w2e{width:86.785500px;}
.wa{width:121.642500px;}
.w2a{width:126.510000px;}
.w1b{width:143.385000px;}
.w2{width:144.504000px;}
.w1c{width:148.428000px;}
.w6{width:148.456500px;}
.w4{width:151.296000px;}
.w13{width:152.460000px;}
.w7{width:154.140000px;}
.w12{width:155.374500px;}
.w1a{width:155.512500px;}
.w5{width:158.103000px;}
.w3{width:158.104500px;}
.w14{width:158.296500px;}
.w24{width:160.636500px;}
.w29{width:161.781000px;}
.wb{width:166.047000px;}
.w17{width:167.376000px;}
.w9{width:175.129500px;}
.w8{width:175.692000px;}
.w2c{width:178.096500px;}
.w15{width:180.429000px;}
.w22{width:184.497000px;}
.w20{width:186.843000px;}
.w27{width:186.985500px;}
.w21{width:192.205500px;}
.w2b{width:192.655500px;}
.w23{width:192.807000px;}
.w28{width:192.808500px;}
.w26{width:193.386000px;}
.w19{width:194.919000px;}
.w1f{width:195.765000px;}
.w1e{width:201.526500px;}
.w25{width:205.488000px;}
.w1d{width:213.205500px;}
.wc{width:219.712500px;}
.w16{width:222.727500px;}
.wd{width:225.384000px;}
.w18{width:235.678500px;}
.w2d{width:718.582500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:6.902250px;}
.xa{left:76.535400px;}
.x15{left:78.661350px;}
.x2a{left:92.878500px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x45{left:104.697750px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x26{left:114.515250px;}
.x28{left:124.025400px;}
.x3{left:125.439150px;}
.x6{left:131.816400px;}
.x29{left:144.365400px;}
.x48{left:186.403500px;}
.x50{left:190.132500px;}
.x4d{left:198.875400px;}
.x27{left:202.910400px;}
.x2b{left:204.672000px;}
.x14{left:211.100400px;}
.x5{left:212.876400px;}
.x23{left:284.460000px;}
.x43{left:290.452500px;}
.x1b{left:307.222500px;}
.x19{left:311.524500px;}
.x1a{left:313.335000px;}
.x18{left:315.859500px;}
.x44{left:318.757500px;}
.x17{left:320.310000px;}
.x16{left:322.188000px;}
.x4a{left:338.237400px;}
.x3d{left:343.126500px;}
.x30{left:347.613000px;}
.x31{left:352.867500px;}
.x36{left:360.651000px;}
.x4b{left:362.590940px;}
.x3e{left:364.359000px;}
.x42{left:368.247000px;}
.x40{left:375.231000px;}
.x33{left:389.823000px;}
.x3f{left:396.159000px;}
.x32{left:397.965000px;}
.x34{left:411.489000px;}
.x41{left:415.834500px;}
.x37{left:421.971000px;}
.x35{left:423.172500px;}
.x39{left:430.267500px;}
.x3b{left:449.679000px;}
.x9{left:455.041500px;}
.xd{left:457.100400px;}
.x22{left:469.767000px;}
.x11{left:478.360350px;}
.x7{left:480.476400px;}
.x24{left:481.747500px;}
.x38{left:487.668000px;}
.xc{left:491.120400px;}
.x51{left:503.863050px;}
.x3c{left:508.767000px;}
.x12{left:512.380350px;}
.x1f{left:519.423000px;}
.xe{left:525.305400px;}
.x20{left:532.456500px;}
.x47{left:538.303500px;}
.x1e{left:556.677000px;}
.x1c{left:570.952500px;}
.x1d{left:574.873500px;}
.x3a{left:603.172500px;}
.x2c{left:648.086100px;}
.x2d{left:660.797921px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x4c{left:713.153700px;}
.x4e{left:721.715400px;}
.x49{left:727.293450px;}
.xf{left:728.391600px;}
.x2f{left:741.404550px;}
.x4f{left:743.868150px;}
.x13{left:749.651400px;}
.x21{left:763.747500px;}
.x25{left:765.238500px;}
.x2e{left:795.372750px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v5{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.440000pt;}
.v4{vertical-align:2.613333pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.v6{vertical-align:41.212787pt;}
.ls5e{letter-spacing:-1.480000pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls5d{letter-spacing:-0.320000pt;}
.ls94{letter-spacing:-0.298667pt;}
.ls65{letter-spacing:-0.266667pt;}
.ls95{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.213333pt;}
.ls80{letter-spacing:-0.170667pt;}
.ls7f{letter-spacing:-0.128000pt;}
.ls2f{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.080000pt;}
.ls2e{letter-spacing:-0.053333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003680pt;}
.ls81{letter-spacing:0.042667pt;}
.ls13{letter-spacing:0.053333pt;}
.ls30{letter-spacing:0.093280pt;}
.ls11{letter-spacing:0.106667pt;}
.ls89{letter-spacing:0.128000pt;}
.ls31{letter-spacing:0.155467pt;}
.ls29{letter-spacing:0.160000pt;}
.ls55{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.213333pt;}
.ls82{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.266667pt;}
.ls79{letter-spacing:0.298667pt;}
.lsd{letter-spacing:0.320000pt;}
.ls8f{letter-spacing:0.341333pt;}
.ls32{letter-spacing:0.373333pt;}
.ls6e{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls7d{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.480000pt;}
.ls56{letter-spacing:0.497493pt;}
.ls70{letter-spacing:0.512000pt;}
.ls21{letter-spacing:0.533333pt;}
.ls6d{letter-spacing:0.554667pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls60{letter-spacing:0.590773pt;}
.ls7a{letter-spacing:0.597333pt;}
.ls7{letter-spacing:0.640000pt;}
.ls84{letter-spacing:0.682667pt;}
.ls17{letter-spacing:0.693333pt;}
.ls77{letter-spacing:0.725333pt;}
.ls10{letter-spacing:0.746667pt;}
.ls8b{letter-spacing:0.768000pt;}
.ls2d{letter-spacing:0.800000pt;}
.ls83{letter-spacing:0.810667pt;}
.ls12{letter-spacing:0.853333pt;}
.ls28{letter-spacing:0.906667pt;}
.ls7b{letter-spacing:0.938667pt;}
.ls3a{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.013333pt;}
.ls8e{letter-spacing:1.024000pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls8d{letter-spacing:1.109333pt;}
.ls3b{letter-spacing:1.120000pt;}
.ls88{letter-spacing:1.152000pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls7e{letter-spacing:1.194667pt;}
.ls16{letter-spacing:1.226667pt;}
.ls78{letter-spacing:1.237333pt;}
.ls5{letter-spacing:1.280000pt;}
.ls92{letter-spacing:1.322667pt;}
.ls4{letter-spacing:1.333333pt;}
.ls74{letter-spacing:1.365333pt;}
.ls36{letter-spacing:1.386667pt;}
.ls73{letter-spacing:1.408000pt;}
.ls33{letter-spacing:1.440000pt;}
.ls85{letter-spacing:1.450667pt;}
.ls37{letter-spacing:1.493333pt;}
.ls2b{letter-spacing:1.546667pt;}
.ls5f{letter-spacing:1.578667pt;}
.ls4c{letter-spacing:1.600000pt;}
.ls86{letter-spacing:1.621333pt;}
.ls1c{letter-spacing:1.653333pt;}
.ls3{letter-spacing:1.706667pt;}
.ls72{letter-spacing:1.749333pt;}
.ls39{letter-spacing:1.760000pt;}
.ls41{letter-spacing:1.813333pt;}
.ls1{letter-spacing:1.866667pt;}
.ls9{letter-spacing:1.920000pt;}
.ls4d{letter-spacing:1.973333pt;}
.ls8a{letter-spacing:2.005333pt;}
.ls25{letter-spacing:2.026667pt;}
.ls90{letter-spacing:2.048000pt;}
.ls18{letter-spacing:2.080000pt;}
.ls75{letter-spacing:2.090667pt;}
.ls22{letter-spacing:2.133333pt;}
.ls15{letter-spacing:2.186667pt;}
.ls8c{letter-spacing:2.218667pt;}
.ls1d{letter-spacing:2.240000pt;}
.ls46{letter-spacing:2.293333pt;}
.ls76{letter-spacing:2.304000pt;}
.lsf{letter-spacing:2.346667pt;}
.ls91{letter-spacing:2.389333pt;}
.ls5c{letter-spacing:2.400000pt;}
.ls52{letter-spacing:2.453333pt;}
.ls19{letter-spacing:2.506667pt;}
.ls20{letter-spacing:2.560000pt;}
.ls6f{letter-spacing:2.602667pt;}
.ls34{letter-spacing:2.613333pt;}
.ls3d{letter-spacing:2.666667pt;}
.ls8{letter-spacing:2.720000pt;}
.ls7c{letter-spacing:2.730667pt;}
.ls4b{letter-spacing:2.773333pt;}
.ls51{letter-spacing:2.826667pt;}
.ls27{letter-spacing:2.880000pt;}
.ls42{letter-spacing:2.933333pt;}
.ls71{letter-spacing:3.029333pt;}
.ls26{letter-spacing:3.040000pt;}
.ls23{letter-spacing:3.093333pt;}
.ls4a{letter-spacing:3.200000pt;}
.ls3e{letter-spacing:3.253333pt;}
.ls93{letter-spacing:3.285333pt;}
.ls5b{letter-spacing:3.306667pt;}
.ls43{letter-spacing:3.360000pt;}
.ls50{letter-spacing:3.413333pt;}
.ls44{letter-spacing:3.466667pt;}
.ls47{letter-spacing:3.680000pt;}
.ls66{letter-spacing:3.733333pt;}
.ls4e{letter-spacing:3.786667pt;}
.ls87{letter-spacing:3.840000pt;}
.ls68{letter-spacing:3.893333pt;}
.ls3f{letter-spacing:3.946667pt;}
.ls38{letter-spacing:4.000000pt;}
.ls35{letter-spacing:4.106667pt;}
.ls5a{letter-spacing:4.160000pt;}
.ls2a{letter-spacing:4.213333pt;}
.ls40{letter-spacing:4.266667pt;}
.ls69{letter-spacing:4.426667pt;}
.ls49{letter-spacing:4.480000pt;}
.ls67{letter-spacing:4.693333pt;}
.ls54{letter-spacing:4.746667pt;}
.ls3c{letter-spacing:4.800000pt;}
.ls59{letter-spacing:4.906667pt;}
.ls45{letter-spacing:4.960000pt;}
.ls53{letter-spacing:5.066667pt;}
.ls6a{letter-spacing:5.120000pt;}
.ls2{letter-spacing:5.226667pt;}
.ls48{letter-spacing:5.280000pt;}
.ls4f{letter-spacing:5.653333pt;}
.ls6b{letter-spacing:5.760000pt;}
.ls58{letter-spacing:5.813333pt;}
.ls57{letter-spacing:6.026667pt;}
.ls6c{letter-spacing:6.773333pt;}
.ls61{letter-spacing:101.944149pt;}
.ls64{letter-spacing:200.593762pt;}
.ls62{letter-spacing:643.677845pt;}
.ls63{letter-spacing:1209.654357pt;}
.ws80{word-spacing:-53.333333pt;}
.ws94{word-spacing:-36.764800pt;}
.ws68{word-spacing:-36.261867pt;}
.wsb7{word-spacing:-19.946667pt;}
.ws37{word-spacing:-18.293333pt;}
.ws35{word-spacing:-18.133333pt;}
.ws48{word-spacing:-17.813333pt;}
.ws7e{word-spacing:-17.493333pt;}
.ws31{word-spacing:-17.333333pt;}
.wsac{word-spacing:-17.066667pt;}
.wsea{word-spacing:-17.013333pt;}
.wsab{word-spacing:-16.800000pt;}
.ws6b{word-spacing:-16.746667pt;}
.ws36{word-spacing:-16.693333pt;}
.ws4d{word-spacing:-16.213333pt;}
.ws6f{word-spacing:-16.160000pt;}
.ws4b{word-spacing:-16.053333pt;}
.wsb8{word-spacing:-16.000000pt;}
.ws69{word-spacing:-15.946667pt;}
.ws4e{word-spacing:-15.520000pt;}
.ws32{word-spacing:-15.466667pt;}
.wsad{word-spacing:-15.413333pt;}
.wsaa{word-spacing:-15.360000pt;}
.ws4c{word-spacing:-15.306667pt;}
.wsa9{word-spacing:-15.146667pt;}
.ws51{word-spacing:-14.986667pt;}
.ws7c{word-spacing:-14.933333pt;}
.ws49{word-spacing:-14.880000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws7d{word-spacing:-14.773333pt;}
.ws10{word-spacing:-14.666667pt;}
.ws6a{word-spacing:-14.613333pt;}
.ws33{word-spacing:-14.560000pt;}
.wsaf{word-spacing:-14.506667pt;}
.wsa4{word-spacing:-14.453333pt;}
.ws13{word-spacing:-14.346667pt;}
.ws50{word-spacing:-14.240000pt;}
.ws6d{word-spacing:-14.186667pt;}
.ws7b{word-spacing:-14.133333pt;}
.ws4f{word-spacing:-14.080000pt;}
.wsf{word-spacing:-14.026667pt;}
.ws47{word-spacing:-13.973333pt;}
.wsa6{word-spacing:-13.920000pt;}
.ws6c{word-spacing:-13.866667pt;}
.ws4a{word-spacing:-13.813333pt;}
.wse{word-spacing:-13.760000pt;}
.ws70{word-spacing:-13.706667pt;}
.wsc{word-spacing:-13.653333pt;}
.wseb{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.493333pt;}
.wsae{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.386667pt;}
.ws34{word-spacing:-13.333333pt;}
.ws11{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.226667pt;}
.wsa3{word-spacing:-13.120000pt;}
.wsa5{word-spacing:-13.013333pt;}
.wscd{word-spacing:-12.970667pt;}
.wscb{word-spacing:-12.373333pt;}
.wsce{word-spacing:-12.245333pt;}
.wsbb{word-spacing:-12.074667pt;}
.wsbc{word-spacing:-12.032000pt;}
.ws7f{word-spacing:-12.000000pt;}
.wscc{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.861333pt;}
.wsd4{word-spacing:-11.776000pt;}
.wsd3{word-spacing:-11.690667pt;}
.wsba{word-spacing:-11.178667pt;}
.wsbd{word-spacing:-11.136000pt;}
.ws2{word-spacing:-11.120000pt;}
.wsd0{word-spacing:-10.965333pt;}
.wsd1{word-spacing:-10.922667pt;}
.ws71{word-spacing:-10.837333pt;}
.wsb9{word-spacing:-10.666667pt;}
.wsd2{word-spacing:-10.538667pt;}
.wscf{word-spacing:-10.453333pt;}
.ws0{word-spacing:-9.076144pt;}
.ws9a{word-spacing:-8.364107pt;}
.ws6e{word-spacing:-8.270827pt;}
.ws17{word-spacing:-7.928800pt;}
.ws15{word-spacing:-7.866613pt;}
.ws16{word-spacing:-7.773333pt;}
.ws8{word-spacing:-5.226667pt;}
.ws3f{word-spacing:-4.800000pt;}
.ws8a{word-spacing:-4.266667pt;}
.ws8d{word-spacing:-4.213333pt;}
.wsb5{word-spacing:-3.733333pt;}
.ws53{word-spacing:-3.680000pt;}
.ws46{word-spacing:-3.520000pt;}
.wsb4{word-spacing:-3.466667pt;}
.ws44{word-spacing:-3.360000pt;}
.ws57{word-spacing:-3.093333pt;}
.ws5e{word-spacing:-2.880000pt;}
.ws76{word-spacing:-2.826667pt;}
.ws5a{word-spacing:-2.773333pt;}
.ws43{word-spacing:-2.613333pt;}
.ws5{word-spacing:-2.565333pt;}
.wsc1{word-spacing:-2.400000pt;}
.wse2{word-spacing:-2.389333pt;}
.wsd6{word-spacing:-2.304000pt;}
.ws5f{word-spacing:-2.186667pt;}
.wsb1{word-spacing:-2.026667pt;}
.ws2c{word-spacing:-1.973333pt;}
.ws38{word-spacing:-1.866667pt;}
.wsb0{word-spacing:-1.813333pt;}
.ws54{word-spacing:-1.760000pt;}
.wsdf{word-spacing:-1.706667pt;}
.ws1a{word-spacing:-1.653333pt;}
.ws89{word-spacing:-1.600000pt;}
.ws58{word-spacing:-1.546667pt;}
.ws8b{word-spacing:-1.440000pt;}
.ws99{word-spacing:-1.415079pt;}
.wsc5{word-spacing:-1.408000pt;}
.ws98{word-spacing:-1.377841pt;}
.wse9{word-spacing:-1.365333pt;}
.ws66{word-spacing:-1.333333pt;}
.ws75{word-spacing:-1.280000pt;}
.ws3c{word-spacing:-1.226667pt;}
.ws26{word-spacing:-1.173333pt;}
.wse3{word-spacing:-1.109333pt;}
.ws65{word-spacing:-1.066667pt;}
.ws24{word-spacing:-1.013333pt;}
.ws3a{word-spacing:-0.960000pt;}
.ws61{word-spacing:-0.906667pt;}
.ws74{word-spacing:-0.853333pt;}
.ws88{word-spacing:-0.800000pt;}
.wse0{word-spacing:-0.768000pt;}
.ws45{word-spacing:-0.746667pt;}
.ws5b{word-spacing:-0.693333pt;}
.ws55{word-spacing:-0.640000pt;}
.wse7{word-spacing:-0.597333pt;}
.ws29{word-spacing:-0.533333pt;}
.ws59{word-spacing:-0.480000pt;}
.wsd7{word-spacing:-0.426667pt;}
.ws77{word-spacing:-0.373333pt;}
.wsbe{word-spacing:-0.320000pt;}
.ws2a{word-spacing:-0.266667pt;}
.ws28{word-spacing:-0.213333pt;}
.ws79{word-spacing:-0.170667pt;}
.ws73{word-spacing:-0.160000pt;}
.wsb2{word-spacing:-0.106667pt;}
.ws3b{word-spacing:-0.053333pt;}
.wse6{word-spacing:-0.042667pt;}
.ws93{word-spacing:-0.037239pt;}
.ws67{word-spacing:-0.036262pt;}
.ws4{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.042667pt;}
.ws25{word-spacing:0.053333pt;}
.ws6{word-spacing:0.080000pt;}
.ws1f{word-spacing:0.106667pt;}
.ws78{word-spacing:0.128000pt;}
.wsa7{word-spacing:0.160000pt;}
.ws1d{word-spacing:0.213333pt;}
.wsb{word-spacing:0.266667pt;}
.ws91{word-spacing:0.320000pt;}
.ws42{word-spacing:0.373333pt;}
.ws97{word-spacing:0.384000pt;}
.ws62{word-spacing:0.480000pt;}
.ws2e{word-spacing:0.533333pt;}
.ws9d{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.693333pt;}
.ws19{word-spacing:0.746667pt;}
.ws30{word-spacing:0.800000pt;}
.wsd9{word-spacing:0.810667pt;}
.ws8f{word-spacing:0.853333pt;}
.ws8e{word-spacing:1.013333pt;}
.wsdd{word-spacing:1.024000pt;}
.ws1c{word-spacing:1.066667pt;}
.wsc8{word-spacing:1.109333pt;}
.ws2d{word-spacing:1.173333pt;}
.ws21{word-spacing:1.386667pt;}
.ws60{word-spacing:1.440000pt;}
.wsec{word-spacing:1.546667pt;}
.ws95{word-spacing:1.578667pt;}
.ws5d{word-spacing:1.600000pt;}
.ws2b{word-spacing:1.653333pt;}
.wsa{word-spacing:1.760000pt;}
.wsda{word-spacing:1.792000pt;}
.wsa0{word-spacing:1.866667pt;}
.ws39{word-spacing:1.920000pt;}
.wse8{word-spacing:1.962667pt;}
.ws22{word-spacing:1.973333pt;}
.wsed{word-spacing:2.026667pt;}
.wse4{word-spacing:2.090667pt;}
.ws9b{word-spacing:2.133333pt;}
.ws90{word-spacing:2.186667pt;}
.wsb3{word-spacing:2.240000pt;}
.wsbf{word-spacing:2.346667pt;}
.ws96{word-spacing:2.432000pt;}
.wsd5{word-spacing:2.474667pt;}
.ws5c{word-spacing:2.506667pt;}
.wsc6{word-spacing:2.517333pt;}
.wsc7{word-spacing:2.602667pt;}
.ws92{word-spacing:2.613333pt;}
.wsc4{word-spacing:2.645333pt;}
.ws1e{word-spacing:2.666667pt;}
.ws27{word-spacing:2.720000pt;}
.ws8c{word-spacing:2.773333pt;}
.wsd8{word-spacing:2.816000pt;}
.ws40{word-spacing:2.826667pt;}
.wsc2{word-spacing:2.858667pt;}
.wsb6{word-spacing:2.880000pt;}
.wsc9{word-spacing:2.901333pt;}
.ws3e{word-spacing:2.933333pt;}
.wsdb{word-spacing:2.944000pt;}
.wsde{word-spacing:2.986667pt;}
.ws9c{word-spacing:3.040000pt;}
.wsca{word-spacing:3.072000pt;}
.ws20{word-spacing:3.093333pt;}
.wse1{word-spacing:3.114667pt;}
.wsdc{word-spacing:3.242667pt;}
.ws41{word-spacing:3.253333pt;}
.wsa1{word-spacing:3.360000pt;}
.wse5{word-spacing:3.370667pt;}
.ws64{word-spacing:3.413333pt;}
.ws9e{word-spacing:3.466667pt;}
.wsc3{word-spacing:3.498667pt;}
.ws18{word-spacing:3.520000pt;}
.ws7a{word-spacing:3.541333pt;}
.ws3d{word-spacing:3.626667pt;}
.wsa8{word-spacing:3.786667pt;}
.ws72{word-spacing:3.840000pt;}
.ws63{word-spacing:3.893333pt;}
.ws56{word-spacing:3.946667pt;}
.ws1b{word-spacing:4.053333pt;}
.ws23{word-spacing:4.160000pt;}
.ws9f{word-spacing:4.213333pt;}
.ws9{word-spacing:4.373333pt;}
.ws7{word-spacing:4.426667pt;}
.wsc0{word-spacing:4.906667pt;}
.ws87{word-spacing:13.400000pt;}
.ws86{word-spacing:23.200000pt;}
.ws85{word-spacing:33.280000pt;}
.ws82{word-spacing:63.400000pt;}
.ws81{word-spacing:67.080000pt;}
.ws84{word-spacing:106.640000pt;}
.ws83{word-spacing:162.160000pt;}
.ws52{word-spacing:847.360000pt;}
._c{margin-left:-2576.085333pt;}
._10{margin-left:-2554.922667pt;}
._30{margin-left:-8.874667pt;}
._5{margin-left:-6.765867pt;}
._9{margin-left:-5.866667pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.906667pt;}
._7{width:0.906667pt;}
._a{width:2.613333pt;}
._e{width:3.573333pt;}
._b{width:4.586667pt;}
._8{width:6.026667pt;}
._d{width:6.933333pt;}
._f{width:7.840000pt;}
._6{width:9.600000pt;}
._2e{width:17.573333pt;}
._27{width:23.400000pt;}
._2b{width:29.666667pt;}
._25{width:39.480000pt;}
._2a{width:41.080000pt;}
._23{width:51.080000pt;}
._3{width:52.874336pt;}
._13{width:58.538667pt;}
._1e{width:63.400000pt;}
._29{width:71.080000pt;}
._2c{width:72.386667pt;}
._21{width:74.120000pt;}
._24{width:79.960000pt;}
._26{width:82.200000pt;}
._20{width:83.400000pt;}
._1f{width:93.400000pt;}
._28{width:106.453333pt;}
._1d{width:121.120000pt;}
._22{width:162.160000pt;}
._18{width:164.693333pt;}
._2f{width:185.480000pt;}
._1c{width:225.520000pt;}
._2d{width:253.280000pt;}
._19{width:410.496000pt;}
._14{width:430.677333pt;}
._17{width:439.040000pt;}
._15{width:466.218667pt;}
._1b{width:527.317333pt;}
._11{width:614.194133pt;}
._12{width:643.285333pt;}
._16{width:661.760000pt;}
._1a{width:699.008000pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fsb{font-size:36.261867pt;}
.fs11{font-size:36.764800pt;}
.fs10{font-size:37.238933pt;}
.fs0{font-size:37.333333pt;}
.fsc{font-size:37.505067pt;}
.fs6{font-size:40.000000pt;}
.fse{font-size:42.558933pt;}
.fs9{font-size:42.666667pt;}
.fsf{font-size:47.878933pt;}
.fsd{font-size:48.000000pt;}
.fs12{font-size:51.800533pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs14{font-size:59.488000pt;}
.fs13{font-size:62.161067pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y137{bottom:2.942933pt;}
.y13d{bottom:2.944267pt;}
.y1aa{bottom:3.022933pt;}
.y119{bottom:3.412267pt;}
.y11b{bottom:3.412400pt;}
.y12f{bottom:3.412667pt;}
.y11f{bottom:3.412800pt;}
.y121{bottom:3.412933pt;}
.y117{bottom:3.413200pt;}
.y123{bottom:3.413333pt;}
.y12a{bottom:3.413733pt;}
.y11d{bottom:3.413867pt;}
.y128{bottom:3.414133pt;}
.y178{bottom:3.502933pt;}
.y190{bottom:3.504267pt;}
.y18c{bottom:3.504400pt;}
.y182{bottom:3.504533pt;}
.y17a{bottom:3.504667pt;}
.y197{bottom:3.504800pt;}
.y18e{bottom:3.504933pt;}
.y184{bottom:3.505200pt;}
.y17c{bottom:3.505467pt;}
.y188{bottom:3.505733pt;}
.y17e{bottom:3.506000pt;}
.y195{bottom:3.506133pt;}
.y192{bottom:3.506267pt;}
.y18a{bottom:3.506400pt;}
.y180{bottom:3.506533pt;}
.y139{bottom:3.528800pt;}
.y133{bottom:3.529333pt;}
.y131{bottom:3.529733pt;}
.y13b{bottom:3.530000pt;}
.y135{bottom:3.530267pt;}
.y1a5{bottom:3.955867pt;}
.y1a8{bottom:4.505733pt;}
.y1{bottom:41.124400pt;}
.y2b{bottom:42.468667pt;}
.y1ae{bottom:73.872000pt;}
.y14c{bottom:74.208000pt;}
.y1ab{bottom:74.354800pt;}
.y61{bottom:74.462533pt;}
.yd0{bottom:74.588533pt;}
.y1be{bottom:74.595867pt;}
.y9c{bottom:74.597867pt;}
.y20{bottom:78.146800pt;}
.y228{bottom:79.345333pt;}
.y114{bottom:80.750000pt;}
.y16d{bottom:81.104000pt;}
.y1b6{bottom:83.626267pt;}
.y1ad{bottom:87.866667pt;}
.y14b{bottom:88.202667pt;}
.y60{bottom:90.462533pt;}
.y1ea{bottom:90.464533pt;}
.y68{bottom:90.595867pt;}
.y9b{bottom:90.597867pt;}
.ycf{bottom:90.611200pt;}
.y1f{bottom:91.476800pt;}
.y227{bottom:92.678667pt;}
.y16c{bottom:94.884000pt;}
.y113{bottom:95.192667pt;}
.y14a{bottom:102.197333pt;}
.y1e{bottom:104.804267pt;}
.y226{bottom:106.012000pt;}
.y1e9{bottom:106.104533pt;}
.y1ac{bottom:106.105200pt;}
.y5f{bottom:106.462533pt;}
.y1d1{bottom:106.588533pt;}
.y67{bottom:106.595867pt;}
.y9a{bottom:106.597867pt;}
.yce{bottom:106.611200pt;}
.y16b{bottom:108.664000pt;}
.y112{bottom:109.635333pt;}
.y149{bottom:116.202667pt;}
.y1b1{bottom:118.275761pt;}
.y225{bottom:119.345333pt;}
.y16a{bottom:122.444000pt;}
.y5e{bottom:122.462533pt;}
.y1d0{bottom:122.588533pt;}
.y66{bottom:122.595867pt;}
.y99{bottom:122.597867pt;}
.ycd{bottom:122.611200pt;}
.y111{bottom:124.078000pt;}
.y266{bottom:124.678667pt;}
.y1b3{bottom:126.109987pt;}
.y172{bottom:128.580933pt;}
.y148{bottom:130.197333pt;}
.y224{bottom:132.678667pt;}
.y169{bottom:136.224000pt;}
.y265{bottom:138.012000pt;}
.y5d{bottom:138.462533pt;}
.y1e8{bottom:138.464533pt;}
.y110{bottom:138.520667pt;}
.y1cf{bottom:138.588533pt;}
.y65{bottom:138.595867pt;}
.y98{bottom:138.597867pt;}
.ycc{bottom:138.611200pt;}
.y171{bottom:142.575600pt;}
.y223{bottom:146.012000pt;}
.y168{bottom:149.996400pt;}
.y264{bottom:151.345333pt;}
.y5c{bottom:154.462533pt;}
.y1e7{bottom:154.464533pt;}
.y1ce{bottom:154.588533pt;}
.y1bd{bottom:154.595867pt;}
.y97{bottom:154.597867pt;}
.ycb{bottom:154.611200pt;}
.y170{bottom:156.570267pt;}
.y116{bottom:156.745333pt;}
.y222{bottom:159.345333pt;}
.y140{bottom:159.388553pt;}
.y167{bottom:163.776400pt;}
.y263{bottom:164.678667pt;}
.y10f{bottom:166.531333pt;}
.y26{bottom:167.881867pt;}
.y1e6{bottom:170.104533pt;}
.y64{bottom:170.235867pt;}
.y5b{bottom:170.462533pt;}
.y16f{bottom:170.564933pt;}
.y13f{bottom:170.575339pt;}
.y1cd{bottom:170.588533pt;}
.y1bc{bottom:170.595867pt;}
.y96{bottom:170.597867pt;}
.yca{bottom:170.611200pt;}
.y221{bottom:172.678667pt;}
.y166{bottom:177.556400pt;}
.y262{bottom:178.012000pt;}
.y118{bottom:181.205333pt;}
.y13e{bottom:181.698667pt;}
.y25{bottom:183.881867pt;}
.y16e{bottom:184.559600pt;}
.y220{bottom:186.012000pt;}
.y5a{bottom:186.462533pt;}
.y1cc{bottom:186.588533pt;}
.y1bb{bottom:186.595867pt;}
.y95{bottom:186.597867pt;}
.yc9{bottom:186.611200pt;}
.y165{bottom:191.336400pt;}
.y261{bottom:191.345333pt;}
.y10e{bottom:197.548533pt;}
.y21f{bottom:199.345333pt;}
.y24{bottom:199.881867pt;}
.y59{bottom:202.462533pt;}
.y1e5{bottom:202.464533pt;}
.y1cb{bottom:202.588533pt;}
.y1ba{bottom:202.595867pt;}
.y94{bottom:202.597867pt;}
.yc8{bottom:202.611200pt;}
.y146{bottom:202.912793pt;}
.y260{bottom:204.678667pt;}
.y164{bottom:205.116400pt;}
.y11a{bottom:205.664000pt;}
.y21e{bottom:212.678667pt;}
.y145{bottom:213.926926pt;}
.y23{bottom:215.881867pt;}
.y1a4{bottom:216.061333pt;}
.y134{bottom:217.780000pt;}
.y25f{bottom:218.012000pt;}
.y58{bottom:218.462533pt;}
.y1e4{bottom:218.464533pt;}
.y1ca{bottom:218.588533pt;}
.y1b9{bottom:218.595867pt;}
.y93{bottom:218.597867pt;}
.yc7{bottom:218.611200pt;}
.y163{bottom:218.896400pt;}
.y1a6{bottom:220.200933pt;}
.y144{bottom:224.939859pt;}
.y21d{bottom:226.012000pt;}
.y11c{bottom:230.125333pt;}
.y25e{bottom:231.345333pt;}
.y22{bottom:231.881867pt;}
.y162{bottom:232.676400pt;}
.y57{bottom:234.462533pt;}
.y1e3{bottom:234.464533pt;}
.y10d{bottom:234.588533pt;}
.ye3{bottom:234.595867pt;}
.y92{bottom:234.597867pt;}
.yc6{bottom:234.611200pt;}
.y1a3{bottom:235.081428pt;}
.y143{bottom:235.952793pt;}
.y1a7{bottom:237.688000pt;}
.y21c{bottom:239.345333pt;}
.y25d{bottom:244.678667pt;}
.y161{bottom:246.456400pt;}
.y142{bottom:246.960961pt;}
.y28{bottom:247.881867pt;}
.y1a2{bottom:250.081467pt;}
.y56{bottom:250.462533pt;}
.y1e2{bottom:250.464533pt;}
.y10c{bottom:250.588533pt;}
.ye2{bottom:250.595867pt;}
.y91{bottom:250.597867pt;}
.yc5{bottom:250.611200pt;}
.y21b{bottom:252.678667pt;}
.y11e{bottom:254.584000pt;}
.y141{bottom:257.993634pt;}
.y25c{bottom:258.012000pt;}
.y160{bottom:260.236400pt;}
.y21{bottom:263.521867pt;}
.y27{bottom:263.881867pt;}
.y21a{bottom:266.012000pt;}
.y55{bottom:266.462533pt;}
.y1e1{bottom:266.464533pt;}
.y10b{bottom:266.588533pt;}
.ye1{bottom:266.595867pt;}
.y90{bottom:266.597867pt;}
.yc4{bottom:266.611200pt;}
.y25b{bottom:271.345333pt;}
.y15f{bottom:274.016400pt;}
.y177{bottom:275.861333pt;}
.y120{bottom:279.045333pt;}
.y219{bottom:279.345333pt;}
.y1e0{bottom:282.104533pt;}
.y54{bottom:282.462533pt;}
.y10a{bottom:282.588533pt;}
.ye0{bottom:282.595867pt;}
.y8f{bottom:282.597867pt;}
.y25a{bottom:284.678667pt;}
.y15e{bottom:287.796400pt;}
.y218{bottom:292.678667pt;}
.y259{bottom:298.012000pt;}
.yc3{bottom:298.251200pt;}
.y53{bottom:298.462533pt;}
.y109{bottom:298.588533pt;}
.ydf{bottom:298.595867pt;}
.y8e{bottom:298.597867pt;}
.y1b0{bottom:299.257707pt;}
.y179{bottom:299.606667pt;}
.y174{bottom:301.275376pt;}
.y122{bottom:303.502667pt;}
.y132{bottom:303.513333pt;}
.y217{bottom:306.012000pt;}
.y258{bottom:311.345333pt;}
.y1b8{bottom:314.235867pt;}
.y52{bottom:314.462533pt;}
.y1df{bottom:314.464533pt;}
.y108{bottom:314.588533pt;}
.yde{bottom:314.595867pt;}
.y8d{bottom:314.597867pt;}
.y15d{bottom:315.476400pt;}
.y216{bottom:319.345333pt;}
.y17b{bottom:323.350667pt;}
.y257{bottom:324.678667pt;}
.y1b2{bottom:325.617867pt;}
.y124{bottom:327.965333pt;}
.y1d{bottom:329.923733pt;}
.y1de{bottom:330.104533pt;}
.y51{bottom:330.462533pt;}
.y269{bottom:330.464533pt;}
.yc2{bottom:330.477867pt;}
.y107{bottom:330.588533pt;}
.ydd{bottom:330.595867pt;}
.y8c{bottom:330.597867pt;}
.y215{bottom:332.678667pt;}
.y256{bottom:338.012000pt;}
.y138{bottom:340.078667pt;}
.y214{bottom:346.012000pt;}
.y15c{bottom:346.275867pt;}
.y50{bottom:346.462533pt;}
.y268{bottom:346.464533pt;}
.yc1{bottom:346.477867pt;}
.y106{bottom:346.588533pt;}
.ydc{bottom:346.595867pt;}
.y8b{bottom:346.597867pt;}
.y17d{bottom:347.096000pt;}
.y255{bottom:351.345333pt;}
.y125{bottom:352.424000pt;}
.y1c{bottom:354.230400pt;}
.y213{bottom:359.345333pt;}
.y4f{bottom:362.462533pt;}
.y1dd{bottom:362.464533pt;}
.yc0{bottom:362.477867pt;}
.y173{bottom:362.549600pt;}
.y105{bottom:362.588533pt;}
.ydb{bottom:362.595867pt;}
.y8a{bottom:362.597867pt;}
.y254{bottom:364.678667pt;}
.y1b{bottom:370.230400pt;}
.y17f{bottom:370.842667pt;}
.y175{bottom:371.311333pt;}
.y212{bottom:372.678667pt;}
.y126{bottom:376.882667pt;}
.y253{bottom:378.012000pt;}
.y4e{bottom:378.462533pt;}
.y1dc{bottom:378.464533pt;}
.ybf{bottom:378.477867pt;}
.y104{bottom:378.588533pt;}
.yda{bottom:378.595867pt;}
.y89{bottom:378.597867pt;}
.y211{bottom:386.012000pt;}
.y1a{bottom:386.230400pt;}
.y15a{bottom:386.995867pt;}
.y252{bottom:391.345333pt;}
.y4d{bottom:394.462533pt;}
.y1db{bottom:394.464533pt;}
.ybe{bottom:394.477867pt;}
.y103{bottom:394.588533pt;}
.y181{bottom:394.590667pt;}
.yd9{bottom:394.595867pt;}
.y88{bottom:394.597867pt;}
.y210{bottom:399.345333pt;}
.y127{bottom:401.342667pt;}
.y19{bottom:402.230400pt;}
.y251{bottom:404.678667pt;}
.y4c{bottom:410.462533pt;}
.y1da{bottom:410.464533pt;}
.ybd{bottom:410.477867pt;}
.y102{bottom:410.588533pt;}
.y87{bottom:410.597867pt;}
.y20f{bottom:412.678667pt;}
.y159{bottom:417.965333pt;}
.y250{bottom:418.012000pt;}
.y18{bottom:418.230400pt;}
.y183{bottom:418.334667pt;}
.y130{bottom:425.685333pt;}
.y129{bottom:425.801333pt;}
.y20e{bottom:426.012000pt;}
.y1d9{bottom:426.104533pt;}
.yd8{bottom:426.235867pt;}
.y4b{bottom:426.462533pt;}
.y267{bottom:426.464533pt;}
.ybc{bottom:426.477867pt;}
.y101{bottom:426.588533pt;}
.y86{bottom:426.597867pt;}
.y24f{bottom:431.345333pt;}
.y158{bottom:431.837333pt;}
.y17{bottom:434.230400pt;}
.y20d{bottom:439.345333pt;}
.y185{bottom:442.077333pt;}
.y4a{bottom:442.462533pt;}
.ybb{bottom:442.477867pt;}
.y100{bottom:442.588533pt;}
.y85{bottom:442.597867pt;}
.y13c{bottom:444.108000pt;}
.y136{bottom:444.226667pt;}
.y157{bottom:444.609200pt;}
.y24e{bottom:444.678667pt;}
.y16{bottom:450.230400pt;}
.y12b{bottom:450.262667pt;}
.y20c{bottom:452.678667pt;}
.y24d{bottom:458.012000pt;}
.yd7{bottom:458.115867pt;}
.y49{bottom:458.462533pt;}
.y1d8{bottom:458.464533pt;}
.y156{bottom:458.475867pt;}
.yba{bottom:458.477867pt;}
.yff{bottom:458.588533pt;}
.y84{bottom:458.597867pt;}
.y186{bottom:465.826667pt;}
.y20b{bottom:466.012000pt;}
.y15{bottom:466.230400pt;}
.y24c{bottom:471.345333pt;}
.y155{bottom:474.115867pt;}
.y48{bottom:474.462533pt;}
.y1d7{bottom:474.464533pt;}
.yb9{bottom:474.477867pt;}
.yfe{bottom:474.588533pt;}
.y83{bottom:474.597867pt;}
.y12c{bottom:474.722667pt;}
.y20a{bottom:479.345333pt;}
.y14{bottom:482.230400pt;}
.y24b{bottom:484.678667pt;}
.y187{bottom:489.569333pt;}
.y47{bottom:490.462533pt;}
.y1d6{bottom:490.464533pt;}
.yb8{bottom:490.477867pt;}
.y1c9{bottom:490.588533pt;}
.y82{bottom:490.597867pt;}
.yfd{bottom:490.609200pt;}
.y209{bottom:492.678667pt;}
.y24a{bottom:498.012000pt;}
.y13{bottom:498.230400pt;}
.y12d{bottom:499.182667pt;}
.y208{bottom:506.012000pt;}
.y154{bottom:506.342533pt;}
.y46{bottom:506.462533pt;}
.y1d5{bottom:506.464533pt;}
.yb7{bottom:506.477867pt;}
.y1c8{bottom:506.588533pt;}
.yd6{bottom:506.595867pt;}
.yfc{bottom:506.609200pt;}
.y13a{bottom:511.173333pt;}
.y249{bottom:511.345333pt;}
.y189{bottom:513.316000pt;}
.y12{bottom:514.230400pt;}
.y207{bottom:519.345333pt;}
.y81{bottom:522.237867pt;}
.y153{bottom:522.342533pt;}
.y45{bottom:522.462533pt;}
.y1d4{bottom:522.464533pt;}
.yb6{bottom:522.477867pt;}
.y1c7{bottom:522.588533pt;}
.yd5{bottom:522.595867pt;}
.yfb{bottom:522.609200pt;}
.y12e{bottom:523.641333pt;}
.y248{bottom:524.678667pt;}
.y11{bottom:530.230400pt;}
.y206{bottom:532.678667pt;}
.y18b{bottom:537.064000pt;}
.y247{bottom:538.012000pt;}
.y152{bottom:538.342533pt;}
.y44{bottom:538.462533pt;}
.y1d3{bottom:538.464533pt;}
.yb5{bottom:538.477867pt;}
.y1c6{bottom:538.588533pt;}
.yd4{bottom:538.595867pt;}
.yfa{bottom:538.609200pt;}
.y205{bottom:546.012000pt;}
.y10{bottom:546.230400pt;}
.y1af{bottom:547.513467pt;}
.y246{bottom:551.345333pt;}
.y151{bottom:554.342533pt;}
.y43{bottom:554.462533pt;}
.y80{bottom:554.464533pt;}
.yb4{bottom:554.477867pt;}
.y1c5{bottom:554.588533pt;}
.yd3{bottom:554.595867pt;}
.yf9{bottom:554.609200pt;}
.y204{bottom:559.345333pt;}
.y18d{bottom:560.808000pt;}
.y245{bottom:564.678667pt;}
.y63{bottom:570.102533pt;}
.y150{bottom:570.342533pt;}
.y42{bottom:570.462533pt;}
.y7f{bottom:570.464533pt;}
.yb3{bottom:570.477867pt;}
.yd2{bottom:570.595867pt;}
.yf8{bottom:570.609200pt;}
.y203{bottom:572.678667pt;}
.y244{bottom:578.012000pt;}
.y18f{bottom:584.553333pt;}
.y202{bottom:586.012000pt;}
.y1d2{bottom:586.104533pt;}
.y14f{bottom:586.342533pt;}
.yf{bottom:586.370933pt;}
.y41{bottom:586.462533pt;}
.y7e{bottom:586.464533pt;}
.yb2{bottom:586.477867pt;}
.yf7{bottom:586.609200pt;}
.y243{bottom:591.345333pt;}
.ye{bottom:597.438267pt;}
.y201{bottom:599.345333pt;}
.y62{bottom:601.982533pt;}
.yd1{bottom:602.235867pt;}
.y40{bottom:602.462533pt;}
.y7d{bottom:602.464533pt;}
.yb1{bottom:602.477867pt;}
.yf6{bottom:602.609200pt;}
.y242{bottom:604.678667pt;}
.y191{bottom:608.297333pt;}
.y200{bottom:612.678667pt;}
.y14e{bottom:617.982533pt;}
.y241{bottom:618.012000pt;}
.y3f{bottom:618.462533pt;}
.y7c{bottom:618.464533pt;}
.yb0{bottom:618.477867pt;}
.yf5{bottom:618.609200pt;}
.yd{bottom:625.629867pt;}
.y1ff{bottom:626.012000pt;}
.y240{bottom:631.345333pt;}
.y193{bottom:632.045333pt;}
.y3e{bottom:634.462533pt;}
.y7b{bottom:634.464533pt;}
.yaf{bottom:634.477867pt;}
.yf4{bottom:634.609200pt;}
.y1fe{bottom:639.345333pt;}
.yc{bottom:642.452400pt;}
.y23f{bottom:644.678667pt;}
.yb{bottom:649.629867pt;}
.y3d{bottom:650.462533pt;}
.y7a{bottom:650.464533pt;}
.yae{bottom:650.477867pt;}
.yf3{bottom:650.609200pt;}
.y1fd{bottom:652.678667pt;}
.y194{bottom:655.789333pt;}
.y23e{bottom:658.012000pt;}
.y1a9{bottom:663.616000pt;}
.y1fc{bottom:666.012000pt;}
.ya{bottom:666.452400pt;}
.y3c{bottom:666.462533pt;}
.y79{bottom:666.464533pt;}
.yad{bottom:666.477867pt;}
.yf2{bottom:666.609200pt;}
.y23d{bottom:671.345333pt;}
.y1fb{bottom:679.345333pt;}
.y196{bottom:679.536000pt;}
.y1b5{bottom:682.102533pt;}
.y3b{bottom:682.462533pt;}
.y78{bottom:682.464533pt;}
.yac{bottom:682.477867pt;}
.yf1{bottom:682.609200pt;}
.y23c{bottom:684.678667pt;}
.y9{bottom:691.982933pt;}
.y1fa{bottom:692.678667pt;}
.y23b{bottom:698.012000pt;}
.y3a{bottom:698.462533pt;}
.y77{bottom:698.464533pt;}
.yab{bottom:698.477867pt;}
.yf0{bottom:698.609200pt;}
.y198{bottom:703.281333pt;}
.y1f9{bottom:706.012000pt;}
.y23a{bottom:711.345333pt;}
.y1b4{bottom:713.982533pt;}
.y1c4{bottom:714.249200pt;}
.y39{bottom:714.462533pt;}
.y76{bottom:714.464533pt;}
.yaa{bottom:714.477867pt;}
.yef{bottom:714.609200pt;}
.y1f8{bottom:719.345333pt;}
.y239{bottom:724.678667pt;}
.y199{bottom:727.028000pt;}
.y38{bottom:730.462533pt;}
.y75{bottom:730.464533pt;}
.ya9{bottom:730.477867pt;}
.yee{bottom:730.609200pt;}
.y1f7{bottom:732.678667pt;}
.y8{bottom:732.997333pt;}
.y238{bottom:738.012000pt;}
.y1f6{bottom:746.012000pt;}
.y37{bottom:746.462533pt;}
.y74{bottom:746.464533pt;}
.y1c3{bottom:746.475867pt;}
.ya8{bottom:746.477867pt;}
.yed{bottom:746.609200pt;}
.y19a{bottom:750.772000pt;}
.y237{bottom:751.345333pt;}
.y1f5{bottom:759.345333pt;}
.y36{bottom:762.462533pt;}
.y73{bottom:762.464533pt;}
.y1c2{bottom:762.475867pt;}
.ya7{bottom:762.477867pt;}
.yec{bottom:762.609200pt;}
.y236{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.y1f4{bottom:772.678667pt;}
.y19b{bottom:774.518667pt;}
.y235{bottom:778.012000pt;}
.y35{bottom:778.462533pt;}
.y72{bottom:778.464533pt;}
.y1c1{bottom:778.475867pt;}
.ya6{bottom:778.477867pt;}
.y1f3{bottom:786.012000pt;}
.y234{bottom:791.345333pt;}
.yeb{bottom:794.249200pt;}
.y34{bottom:794.462533pt;}
.y71{bottom:794.464533pt;}
.y1c0{bottom:794.475867pt;}
.ya5{bottom:794.477867pt;}
.y6{bottom:797.816533pt;}
.y19c{bottom:798.265333pt;}
.y1f2{bottom:799.345333pt;}
.y233{bottom:804.678667pt;}
.y33{bottom:810.462533pt;}
.y70{bottom:810.464533pt;}
.y1bf{bottom:810.475867pt;}
.ya4{bottom:810.477867pt;}
.y1f1{bottom:812.678667pt;}
.y232{bottom:818.012000pt;}
.y19d{bottom:822.012000pt;}
.y1f0{bottom:826.012000pt;}
.y32{bottom:826.462533pt;}
.y6f{bottom:826.464533pt;}
.yea{bottom:826.475867pt;}
.ya3{bottom:826.477867pt;}
.y5{bottom:830.226133pt;}
.y231{bottom:831.345333pt;}
.y1ef{bottom:839.345333pt;}
.y31{bottom:842.462533pt;}
.y6e{bottom:842.464533pt;}
.ye9{bottom:842.475867pt;}
.ya2{bottom:842.477867pt;}
.y230{bottom:844.678667pt;}
.y19e{bottom:845.754667pt;}
.y1ee{bottom:852.678667pt;}
.y22f{bottom:858.012000pt;}
.y30{bottom:858.462533pt;}
.y6d{bottom:858.464533pt;}
.ye8{bottom:858.475867pt;}
.ya1{bottom:858.477867pt;}
.y4{bottom:862.635733pt;}
.y1ed{bottom:866.012000pt;}
.y19f{bottom:869.501333pt;}
.y22e{bottom:871.345333pt;}
.y2f{bottom:874.462533pt;}
.y6c{bottom:874.464533pt;}
.ye7{bottom:874.475867pt;}
.ya0{bottom:874.477867pt;}
.y1ec{bottom:879.345333pt;}
.y22d{bottom:884.678667pt;}
.y2e{bottom:890.462533pt;}
.y6b{bottom:890.464533pt;}
.ye6{bottom:890.475867pt;}
.y9f{bottom:890.477867pt;}
.y1eb{bottom:892.678667pt;}
.y1a0{bottom:893.246667pt;}
.y3{bottom:895.045333pt;}
.y22c{bottom:898.012000pt;}
.y2d{bottom:906.462533pt;}
.ye5{bottom:906.475867pt;}
.y9e{bottom:906.477867pt;}
.y176{bottom:909.693200pt;}
.y22b{bottom:911.345333pt;}
.y1a1{bottom:916.992000pt;}
.y15b{bottom:921.809200pt;}
.y147{bottom:922.102533pt;}
.y6a{bottom:922.104533pt;}
.y2c{bottom:922.462533pt;}
.ye4{bottom:922.475867pt;}
.y9d{bottom:922.477867pt;}
.y22a{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1b7{bottom:1006.591600pt;}
.y69{bottom:1006.594400pt;}
.y229{bottom:1006.598667pt;}
.y14d{bottom:1006.602667pt;}
.y115{bottom:1006.606000pt;}
.y2a{bottom:1009.860000pt;}
.y29{bottom:1022.660000pt;}
.h1b{height:10.722667pt;}
.h1d{height:10.724000pt;}
.h32{height:11.012000pt;}
.h17{height:11.189333pt;}
.h15{height:11.190667pt;}
.h29{height:11.489333pt;}
.h2b{height:11.492000pt;}
.h18{height:11.573333pt;}
.h1a{height:11.574667pt;}
.h31{height:14.776000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h16{height:26.399630pt;}
.h1c{height:26.417336pt;}
.h2c{height:26.783731pt;}
.h2a{height:27.110962pt;}
.h33{height:27.129145pt;}
.h2{height:27.197917pt;}
.h19{height:27.304714pt;}
.h20{height:27.621344pt;}
.h25{height:27.792969pt;}
.h26{height:27.823369pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.hc{height:29.170290pt;}
.h21{height:29.625000pt;}
.h14{height:29.645833pt;}
.h2f{height:30.104770pt;}
.h27{height:30.984067pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h1e{height:31.148943pt;}
.h30{height:31.544198pt;}
.h2d{height:31.580963pt;}
.h1f{height:31.837919pt;}
.h22{height:33.351562pt;}
.h28{height:34.857173pt;}
.h34{height:35.107002pt;}
.h12{height:37.031250pt;}
.hf{height:37.057292pt;}
.he{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.860475pt;}
.h9{height:38.880208pt;}
.h24{height:39.200000pt;}
.h37{height:40.317062pt;}
.h23{height:41.813333pt;}
.h36{height:42.128692pt;}
.h13{height:46.727068pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h35{height:82.533385pt;}
.h2e{height:717.482667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w11{width:17.643867pt;}
.w10{width:17.644000pt;}
.w2f{width:18.118667pt;}
.w30{width:18.119333pt;}
.wf{width:23.462667pt;}
.we{width:23.464000pt;}
.w2e{width:77.142667pt;}
.wa{width:108.126667pt;}
.w2a{width:112.453333pt;}
.w1b{width:127.453333pt;}
.w2{width:128.448000pt;}
.w1c{width:131.936000pt;}
.w6{width:131.961333pt;}
.w4{width:134.485333pt;}
.w13{width:135.520000pt;}
.w7{width:137.013333pt;}
.w12{width:138.110667pt;}
.w1a{width:138.233333pt;}
.w5{width:140.536000pt;}
.w3{width:140.537333pt;}
.w14{width:140.708000pt;}
.w24{width:142.788000pt;}
.w29{width:143.805333pt;}
.wb{width:147.597333pt;}
.w17{width:148.778667pt;}
.w9{width:155.670667pt;}
.w8{width:156.170667pt;}
.w2c{width:158.308000pt;}
.w15{width:160.381333pt;}
.w22{width:163.997333pt;}
.w20{width:166.082667pt;}
.w27{width:166.209333pt;}
.w21{width:170.849333pt;}
.w2b{width:171.249333pt;}
.w23{width:171.384000pt;}
.w28{width:171.385333pt;}
.w26{width:171.898667pt;}
.w19{width:173.261333pt;}
.w1f{width:174.013333pt;}
.w1e{width:179.134667pt;}
.w25{width:182.656000pt;}
.w1d{width:189.516000pt;}
.wc{width:195.300000pt;}
.w16{width:197.980000pt;}
.wd{width:200.341333pt;}
.w18{width:209.492000pt;}
.w2d{width:638.740000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:6.135333pt;}
.xa{left:68.031467pt;}
.x15{left:69.921200pt;}
.x2a{left:82.558667pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x45{left:93.064667pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x26{left:101.791333pt;}
.x28{left:110.244800pt;}
.x3{left:111.501467pt;}
.x6{left:117.170133pt;}
.x29{left:128.324800pt;}
.x48{left:165.692000pt;}
.x50{left:169.006667pt;}
.x4d{left:176.778133pt;}
.x27{left:180.364800pt;}
.x2b{left:181.930667pt;}
.x14{left:187.644800pt;}
.x5{left:189.223467pt;}
.x23{left:252.853333pt;}
.x43{left:258.180000pt;}
.x1b{left:273.086667pt;}
.x19{left:276.910667pt;}
.x1a{left:278.520000pt;}
.x18{left:280.764000pt;}
.x44{left:283.340000pt;}
.x17{left:284.720000pt;}
.x16{left:286.389333pt;}
.x4a{left:300.655467pt;}
.x3d{left:305.001333pt;}
.x30{left:308.989333pt;}
.x31{left:313.660000pt;}
.x36{left:320.578667pt;}
.x4b{left:322.303058pt;}
.x3e{left:323.874667pt;}
.x42{left:327.330667pt;}
.x40{left:333.538667pt;}
.x33{left:346.509333pt;}
.x3f{left:352.141333pt;}
.x32{left:353.746667pt;}
.x34{left:365.768000pt;}
.x41{left:369.630667pt;}
.x37{left:375.085333pt;}
.x35{left:376.153333pt;}
.x39{left:382.460000pt;}
.x3b{left:399.714667pt;}
.x9{left:404.481333pt;}
.xd{left:406.311467pt;}
.x22{left:417.570667pt;}
.x11{left:425.209200pt;}
.x7{left:427.090133pt;}
.x24{left:428.220000pt;}
.x38{left:433.482667pt;}
.xc{left:436.551467pt;}
.x51{left:447.878267pt;}
.x3c{left:452.237333pt;}
.x12{left:455.449200pt;}
.x1f{left:461.709333pt;}
.xe{left:466.938133pt;}
.x20{left:473.294667pt;}
.x47{left:478.492000pt;}
.x1e{left:494.824000pt;}
.x1c{left:507.513333pt;}
.x1d{left:510.998667pt;}
.x3a{left:536.153333pt;}
.x2c{left:576.076533pt;}
.x2d{left:587.375930pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x4c{left:633.914400pt;}
.x4e{left:641.524800pt;}
.x49{left:646.483067pt;}
.xf{left:647.459200pt;}
.x2f{left:659.026267pt;}
.x4f{left:661.216133pt;}
.x13{left:666.356800pt;}
.x21{left:678.886667pt;}
.x25{left:680.212000pt;}
.x2e{left:706.998000pt;}
}




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