
    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_866824b83bce0c1abd613c68.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.221000;font-style:normal;font-weight: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_5a9dd16bf0fa4636358660d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722656;font-style:normal;font-weight: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_604dd3097cd4d18a63ab161d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.201000;font-style:normal;font-weight: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_866824b83bce0c1abd613c68.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.221000;font-style:normal;font-weight: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_d780587bc5ae97029c74bb7f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.988000;font-style:normal;font-weight: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_cb9f00c631ba5740c66f5769.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.136000;font-style:normal;font-weight: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_96b153c64dfb8bcaf6974754.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.747000;font-style:normal;font-weight: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_2d7d4d6302ecef048b2ecd74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;font-style:normal;font-weight: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_7eba8da356e866266708c4ce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940000;font-style:normal;font-weight: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_ddf8c3247f2a8f329ab929f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.201000;font-style:normal;font-weight: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_b4a566139dd8e5ba2bfff785.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.201000;font-style:normal;font-weight: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_b6cf3fd14ef97fb5cabd3006.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;font-style:normal;font-weight: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_c558076034195ea1e6de5c2d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.136000;font-style:normal;font-weight: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_0945cb1e7990dfedb497ce0a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.271000;font-style:normal;font-weight: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_c3f150aba59beaec21d6fc4e.woff2')format("woff");}.fff{font-family:fff;line-height:1.255000;font-style:normal;font-weight: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_a0d47e9287774cc602e667ad.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.271000;font-style:normal;font-weight: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_9087767868273ac03ab4f9d4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.999000;font-style:normal;font-weight: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_f5fa734cd2300cac7a72f283.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.136000;font-style:normal;font-weight: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_22b6958a68d9f3eb667b5be7.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.175000;font-style:normal;font-weight: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_34a59ff43a129899f0c3acfc.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.255000;font-style:normal;font-weight: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_0e9f0f66dff26ab7d1426607.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.233000;font-style:normal;font-weight: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_f02f25838830ac65b264d830.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.926000;font-style:normal;font-weight: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_9ff109522c7ba011eaddcb68.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.895095;font-style:normal;font-weight: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_49548a49ed21066cdfc5b012.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.999000;font-style:normal;font-weight: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_a4b21b457e3568f4b3b3b7fe.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.271000;font-style:normal;font-weight: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_ee3e2cfe1d04cfb70182af23.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.255000;font-style:normal;font-weight: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_49548a49ed21066cdfc5b012.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.999000;font-style:normal;font-weight: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_a4b21b457e3568f4b3b3b7fe.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.271000;font-style:normal;font-weight: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_cbb5785d0459c8314618ba2c.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.120000;font-style:normal;font-weight: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_c4b70265a1fe1b5af80ff81e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.667480;font-style:normal;font-weight: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_a6f4d71c24db0e1c681f49f6.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.979000;font-style:normal;font-weight: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_8ca0f03244ef06069c55153c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.931000;font-style:normal;font-weight: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_49548a49ed21066cdfc5b012.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.999000;font-style:normal;font-weight: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_a4b21b457e3568f4b3b3b7fe.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.271000;font-style:normal;font-weight: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_ee3e2cfe1d04cfb70182af23.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.255000;font-style:normal;font-weight: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_b5b2ea9d3953a0df49ee8ae6.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.979000;font-style:normal;font-weight: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_33b0f1c5ed43a52d9ccfef78.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.747000;font-style:normal;font-weight: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_49548a49ed21066cdfc5b012.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.999000;font-style:normal;font-weight: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_a4b21b457e3568f4b3b3b7fe.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.271000;font-style:normal;font-weight: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_b5b2ea9d3953a0df49ee8ae6.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.979000;font-style:normal;font-weight: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_8ca0f03244ef06069c55153c.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.931000;font-style:normal;font-weight: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_a6f4d71c24db0e1c681f49f6.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.979000;font-style:normal;font-weight: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_a948249d13116c66f9d68d59.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.120000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m37{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);}
.m38{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.246123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246123,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247437,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247562,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247910,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248454,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248458,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248593,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248611,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248626,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248992,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249013,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249034,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249195,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249229,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249363,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249469,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249516,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249819,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249906,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m84{transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250219,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250758,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250776,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251056,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251123,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251417,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251652,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251871,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252108,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252312,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252931,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.253014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253014,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.253421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253421,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.253468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253468,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.253484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253484,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.255988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255988,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.256079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256079,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.256564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256564,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.256776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256776,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.257669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257669,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.257679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257679,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.258005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258005,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.258295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258295,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.258550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258550,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.258617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258617,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.258669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258669,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258705,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.258798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258798,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.259329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259329,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.259338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259338,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.260393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260393,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.260783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260783,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.260864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260864,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.260986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260986,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.261276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261276,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.261333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261333,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.261381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261381,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.261579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261579,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.261619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261619,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.261748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261748,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.261755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261755,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.262169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262169,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.262260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262260,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.263602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263602,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.263626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263626,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.264160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264160,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.264488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264488,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.269466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269466,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269550,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.270508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270508,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.272797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272797,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-12.036000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.583800px;}
.v4{vertical-align:11.532000px;}
.v3{vertical-align:15.072000px;}
.ls0{letter-spacing:-31.680000px;}
.ls4b{letter-spacing:-2.993640px;}
.ls4d{letter-spacing:-1.784670px;}
.ls45{letter-spacing:-1.596000px;}
.ls4a{letter-spacing:-0.921120px;}
.ls18{letter-spacing:-0.756000px;}
.ls43{letter-spacing:-0.630000px;}
.ls48{letter-spacing:-0.624000px;}
.ls20{letter-spacing:-0.570000px;}
.ls1b{letter-spacing:-0.567000px;}
.ls27{letter-spacing:-0.504000px;}
.ls1d{letter-spacing:-0.441000px;}
.ls1f{letter-spacing:-0.378000px;}
.ls50{letter-spacing:-0.345420px;}
.ls47{letter-spacing:-0.342000px;}
.ls17{letter-spacing:-0.315000px;}
.ls19{letter-spacing:-0.252000px;}
.ls4e{letter-spacing:-0.230280px;}
.ls5{letter-spacing:-0.228000px;}
.ls1a{letter-spacing:-0.189000px;}
.ls51{letter-spacing:-0.172710px;}
.ls46{letter-spacing:-0.171000px;}
.ls1c{letter-spacing:-0.126000px;}
.ls5a{letter-spacing:-0.115140px;}
.ls49{letter-spacing:-0.114000px;}
.ls2c{letter-spacing:-0.063000px;}
.ls4f{letter-spacing:-0.057570px;}
.ls44{letter-spacing:-0.057000px;}
.ls1{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.000120px;}
.ls34{letter-spacing:0.000150px;}
.ls37{letter-spacing:0.000180px;}
.ls40{letter-spacing:0.000270px;}
.ls2e{letter-spacing:0.016800px;}
.ls2{letter-spacing:0.018600px;}
.ls3a{letter-spacing:0.026700px;}
.ls30{letter-spacing:0.057000px;}
.ls3d{letter-spacing:0.057570px;}
.lsc{letter-spacing:0.063000px;}
.ls4{letter-spacing:0.068400px;}
.ls12{letter-spacing:0.094500px;}
.ls9{letter-spacing:0.115140px;}
.ls8{letter-spacing:0.126000px;}
.ls2f{letter-spacing:0.171000px;}
.ls36{letter-spacing:0.172710px;}
.lsb{letter-spacing:0.189000px;}
.ls6{letter-spacing:0.228000px;}
.ls39{letter-spacing:0.230280px;}
.ls32{letter-spacing:0.232242px;}
.ls3f{letter-spacing:0.241796px;}
.ls11{letter-spacing:0.252000px;}
.ls10{letter-spacing:0.283500px;}
.ls4c{letter-spacing:0.287850px;}
.ls15{letter-spacing:0.315000px;}
.lse{letter-spacing:0.378000px;}
.ls38{letter-spacing:0.402990px;}
.lsa{letter-spacing:0.441000px;}
.ls52{letter-spacing:0.456000px;}
.ls16{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.567000px;}
.ls53{letter-spacing:0.568575px;}
.ls33{letter-spacing:0.570000px;}
.ls2d{letter-spacing:0.630000px;}
.ls25{letter-spacing:0.661500px;}
.ls35{letter-spacing:0.686070px;}
.ls26{letter-spacing:0.756000px;}
.ls31{letter-spacing:0.782977px;}
.ls42{letter-spacing:0.805980px;}
.lsf{letter-spacing:0.819000px;}
.ls2a{letter-spacing:0.850500px;}
.ls7{letter-spacing:0.882000px;}
.ls1e{letter-spacing:1.008000px;}
.ls58{letter-spacing:1.026000px;}
.ls59{letter-spacing:1.026174px;}
.ls13{letter-spacing:1.071000px;}
.ls57{letter-spacing:1.140000px;}
.ls54{letter-spacing:1.245834px;}
.ls29{letter-spacing:1.260000px;}
.ls56{letter-spacing:1.710000px;}
.ls55{letter-spacing:1.724110px;}
.ls3b{letter-spacing:2.667210px;}
.ls3{letter-spacing:3.072000px;}
.ls3e{letter-spacing:3.782349px;}
.ls41{letter-spacing:4.012629px;}
.lsd{letter-spacing:4.032000px;}
.ls2b{letter-spacing:4.347000px;}
.ls21{letter-spacing:150.144000px;}
.ls23{letter-spacing:153.312000px;}
.ls22{letter-spacing:156.480000px;}
.ls24{letter-spacing:1293.120000px;}
.ls28{letter-spacing:1368.351832px;}
.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;}
}
.ws9d{word-spacing:-1368.351832px;}
.ws97{word-spacing:-1293.120000px;}
.ws0{word-spacing:-142.560000px;}
.ws2{word-spacing:-102.000000px;}
.ws67{word-spacing:-57.000000px;}
.ws20{word-spacing:-16.632000px;}
.ws22{word-spacing:-16.191000px;}
.wsa0{word-spacing:-16.065000px;}
.ws26{word-spacing:-16.002000px;}
.ws23{word-spacing:-15.939000px;}
.ws1{word-spacing:-15.840000px;}
.ws24{word-spacing:-15.750000px;}
.ws9f{word-spacing:-15.624000px;}
.ws27{word-spacing:-15.435000px;}
.wsf4{word-spacing:-15.390000px;}
.ws28{word-spacing:-15.183000px;}
.ws25{word-spacing:-14.994000px;}
.wsf2{word-spacing:-14.820000px;}
.ws21{word-spacing:-14.507640px;}
.wsb7{word-spacing:-14.392500px;}
.wsb8{word-spacing:-14.334930px;}
.wsac{word-spacing:-14.250000px;}
.wsad{word-spacing:-14.022000px;}
.wsb6{word-spacing:-13.471380px;}
.ws9{word-spacing:-13.344000px;}
.wsb4{word-spacing:-12.720000px;}
.wsae{word-spacing:-12.654000px;}
.wsa{word-spacing:-12.000000px;}
.ws65{word-spacing:-11.812500px;}
.wsf3{word-spacing:-11.713500px;}
.ws4{word-spacing:-11.676000px;}
.wsf1{word-spacing:-11.256075px;}
.ws7{word-spacing:-11.088000px;}
.wsba{word-spacing:-11.036246px;}
.ws6{word-spacing:-11.004000px;}
.wsb5{word-spacing:-10.794450px;}
.ws66{word-spacing:-10.687500px;}
.wsb9{word-spacing:-10.074750px;}
.ws14{word-spacing:-10.008000px;}
.ws8{word-spacing:-9.340800px;}
.wsb{word-spacing:-9.000000px;}
.ws5{word-spacing:-8.757000px;}
.wsc{word-spacing:-6.426000px;}
.ws44{word-spacing:-3.969000px;}
.ws4a{word-spacing:-3.906000px;}
.ws72{word-spacing:-3.843000px;}
.ws7c{word-spacing:-3.654000px;}
.wsce{word-spacing:-3.626910px;}
.ws1e{word-spacing:-3.591000px;}
.wsdd{word-spacing:-3.569340px;}
.ws70{word-spacing:-3.534000px;}
.wsaa{word-spacing:-3.465000px;}
.wsda{word-spacing:-3.454200px;}
.ws7b{word-spacing:-3.402000px;}
.ws99{word-spacing:-3.339000px;}
.wsf9{word-spacing:-3.306000px;}
.wsa1{word-spacing:-3.276000px;}
.ws3d{word-spacing:-3.087000px;}
.ws32{word-spacing:-3.078000px;}
.wsa3{word-spacing:-3.024000px;}
.ws7a{word-spacing:-2.961000px;}
.ws43{word-spacing:-2.898000px;}
.wsfb{word-spacing:-2.850000px;}
.ws1b{word-spacing:-2.736000px;}
.wsbc{word-spacing:-2.646000px;}
.wsc9{word-spacing:-2.622000px;}
.wsd9{word-spacing:-2.590650px;}
.ws5b{word-spacing:-2.583000px;}
.ws48{word-spacing:-2.520000px;}
.ws41{word-spacing:-2.394000px;}
.ws4f{word-spacing:-2.331000px;}
.ws79{word-spacing:-2.142000px;}
.ws73{word-spacing:-2.016000px;}
.wse9{word-spacing:-2.014950px;}
.ws50{word-spacing:-1.953000px;}
.ws3f{word-spacing:-1.890000px;}
.ws2e{word-spacing:-1.881000px;}
.ws17{word-spacing:-1.824000px;}
.ws57{word-spacing:-1.764000px;}
.ws4b{word-spacing:-1.701000px;}
.ws5a{word-spacing:-1.638000px;}
.wsa7{word-spacing:-1.575000px;}
.wscf{word-spacing:-1.554390px;}
.ws5f{word-spacing:-1.512000px;}
.wsc5{word-spacing:-1.482000px;}
.wsa8{word-spacing:-1.449000px;}
.wsd1{word-spacing:-1.381680px;}
.wse3{word-spacing:-1.324110px;}
.ws62{word-spacing:-1.260000px;}
.wsfc{word-spacing:-1.140000px;}
.ws61{word-spacing:-1.134000px;}
.ws4e{word-spacing:-1.071000px;}
.ws100{word-spacing:-1.026000px;}
.ws60{word-spacing:-1.008000px;}
.wsf5{word-spacing:-0.978690px;}
.ws2d{word-spacing:-0.969000px;}
.wse6{word-spacing:-0.921120px;}
.ws29{word-spacing:-0.912000px;}
.ws9b{word-spacing:-0.882000px;}
.wse4{word-spacing:-0.863550px;}
.ws49{word-spacing:-0.819000px;}
.wsf0{word-spacing:-0.805980px;}
.wsc4{word-spacing:-0.798000px;}
.ws40{word-spacing:-0.756000px;}
.wsfd{word-spacing:-0.741000px;}
.ws54{word-spacing:-0.693000px;}
.wsd3{word-spacing:-0.690840px;}
.wsa9{word-spacing:-0.630000px;}
.wsfe{word-spacing:-0.570000px;}
.ws2a{word-spacing:-0.513000px;}
.ws3a{word-spacing:-0.504000px;}
.ws39{word-spacing:-0.441000px;}
.wsc2{word-spacing:-0.399000px;}
.ws58{word-spacing:-0.378000px;}
.wscd{word-spacing:-0.345420px;}
.ws4c{word-spacing:-0.315000px;}
.wsd6{word-spacing:-0.287850px;}
.ws4d{word-spacing:-0.252000px;}
.ws9e{word-spacing:-0.210000px;}
.ws3c{word-spacing:-0.189000px;}
.ws16{word-spacing:-0.168000px;}
.ws36{word-spacing:-0.126000px;}
.wsee{word-spacing:-0.115140px;}
.ws3e{word-spacing:-0.063000px;}
.wsec{word-spacing:-0.057570px;}
.wsc3{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.ws6d{word-spacing:0.063000px;}
.ws19{word-spacing:0.171000px;}
.ws34{word-spacing:0.189000px;}
.wsd7{word-spacing:0.230280px;}
.ws56{word-spacing:0.252000px;}
.ws45{word-spacing:0.315000px;}
.ws1d{word-spacing:0.342000px;}
.wsde{word-spacing:0.345420px;}
.wsd8{word-spacing:0.402990px;}
.ws77{word-spacing:0.441000px;}
.ws5c{word-spacing:0.504000px;}
.ws71{word-spacing:0.513000px;}
.ws47{word-spacing:0.567000px;}
.ws6f{word-spacing:0.570000px;}
.wsbb{word-spacing:0.630000px;}
.ws2c{word-spacing:0.684000px;}
.wsd2{word-spacing:0.690840px;}
.wscc{word-spacing:0.805980px;}
.ws6e{word-spacing:0.819000px;}
.wse8{word-spacing:0.863550px;}
.wsca{word-spacing:0.912000px;}
.wsd0{word-spacing:0.921120px;}
.ws18{word-spacing:0.969000px;}
.ws55{word-spacing:1.008000px;}
.wsc8{word-spacing:1.026000px;}
.ws74{word-spacing:1.071000px;}
.ws30{word-spacing:1.083000px;}
.wsc0{word-spacing:1.140000px;}
.wsf6{word-spacing:1.151400px;}
.wsa4{word-spacing:1.197000px;}
.ws63{word-spacing:1.260000px;}
.wse7{word-spacing:1.266540px;}
.ws33{word-spacing:1.386000px;}
.ws46{word-spacing:1.449000px;}
.wsdb{word-spacing:1.496820px;}
.ws53{word-spacing:1.512000px;}
.ws3b{word-spacing:1.575000px;}
.ws9a{word-spacing:1.638000px;}
.ws1a{word-spacing:1.653000px;}
.wse1{word-spacing:1.669530px;}
.ws11{word-spacing:1.680000px;}
.ws9c{word-spacing:1.701000px;}
.wse2{word-spacing:1.727100px;}
.wsab{word-spacing:1.764000px;}
.wsbf{word-spacing:1.827000px;}
.wse0{word-spacing:1.842240px;}
.wscb{word-spacing:1.881000px;}
.wsbd{word-spacing:1.890000px;}
.ws64{word-spacing:1.953000px;}
.wsfa{word-spacing:1.995000px;}
.wsdc{word-spacing:2.014950px;}
.ws15{word-spacing:2.016000px;}
.wsff{word-spacing:2.052000px;}
.ws5d{word-spacing:2.079000px;}
.ws1c{word-spacing:2.109000px;}
.ws52{word-spacing:2.142000px;}
.ws31{word-spacing:2.166000px;}
.wsdf{word-spacing:2.187660px;}
.ws75{word-spacing:2.205000px;}
.wsc6{word-spacing:2.223000px;}
.wsed{word-spacing:2.302800px;}
.wsc1{word-spacing:2.337000px;}
.wsf{word-spacing:2.352000px;}
.wsf7{word-spacing:2.360370px;}
.wsea{word-spacing:2.417940px;}
.wsa5{word-spacing:2.520000px;}
.ws6c{word-spacing:2.583000px;}
.wsa2{word-spacing:2.646000px;}
.ws78{word-spacing:2.709000px;}
.wse5{word-spacing:2.763360px;}
.wsa6{word-spacing:2.835000px;}
.ws2b{word-spacing:2.850000px;}
.ws76{word-spacing:3.024000px;}
.wsd{word-spacing:3.072000px;}
.ws5e{word-spacing:3.087000px;}
.wsc7{word-spacing:3.306000px;}
.ws59{word-spacing:3.339000px;}
.wsef{word-spacing:3.511770px;}
.ws2f{word-spacing:3.534000px;}
.wsd4{word-spacing:3.569340px;}
.wsf8{word-spacing:3.591000px;}
.wseb{word-spacing:3.626910px;}
.wsbe{word-spacing:3.654000px;}
.ws51{word-spacing:3.780000px;}
.ws42{word-spacing:3.843000px;}
.ws35{word-spacing:3.906000px;}
.ws38{word-spacing:3.969000px;}
.ws37{word-spacing:4.032000px;}
.ws12{word-spacing:4.080000px;}
.wsd5{word-spacing:5.641860px;}
.wse{word-spacing:6.576000px;}
.ws13{word-spacing:8.832000px;}
.ws10{word-spacing:9.792000px;}
.wsb3{word-spacing:10.704000px;}
.wsb2{word-spacing:12.000000px;}
.wsb1{word-spacing:13.680000px;}
.ws94{word-spacing:24.000000px;}
.ws83{word-spacing:30.000000px;}
.ws93{word-spacing:35.712000px;}
.ws7d{word-spacing:39.312000px;}
.ws82{word-spacing:43.392000px;}
.ws81{word-spacing:49.728000px;}
.wsb0{word-spacing:50.544000px;}
.ws8f{word-spacing:50.688000px;}
.ws86{word-spacing:56.688000px;}
.ws85{word-spacing:70.080000px;}
.ws91{word-spacing:73.248000px;}
.ws84{word-spacing:76.416000px;}
.ws90{word-spacing:77.376000px;}
.ws8d{word-spacing:83.376000px;}
.ws8a{word-spacing:85.248000px;}
.ws7e{word-spacing:89.760000px;}
.wsaf{word-spacing:92.832000px;}
.ws92{word-spacing:94.080000px;}
.ws8b{word-spacing:96.768000px;}
.ws7f{word-spacing:98.592000px;}
.ws8e{word-spacing:99.936000px;}
.ws89{word-spacing:103.104000px;}
.ws88{word-spacing:110.112000px;}
.ws8c{word-spacing:111.936000px;}
.ws95{word-spacing:120.768000px;}
.ws87{word-spacing:125.280000px;}
.ws96{word-spacing:139.968000px;}
.ws68{word-spacing:241.122000px;}
.ws69{word-spacing:250.782000px;}
.ws80{word-spacing:273.552000px;}
.ws6a{word-spacing:343.140000px;}
.ws6b{word-spacing:1780.512000px;}
.ws1f{word-spacing:2387.072400px;}
.ws98{word-spacing:2826.109775px;}
._12{margin-left:-545.832000px;}
._11{margin-left:-534.408000px;}
._10{margin-left:-524.832000px;}
._13{margin-left:-485.730000px;}
._7{margin-left:-35.109000px;}
._9{margin-left:-21.746400px;}
._c{margin-left:-16.680000px;}
._d{margin-left:-14.178000px;}
._49{margin-left:-10.577040px;}
._41{margin-left:-9.514050px;}
._0{margin-left:-8.052000px;}
._2{margin-left:-6.534000px;}
._6{margin-left:-4.906200px;}
._5{margin-left:-3.692400px;}
._4{margin-left:-2.172000px;}
._8{margin-left:-1.033200px;}
._1{width:1.254000px;}
._3{width:2.478000px;}
._a{width:4.236000px;}
._4a{width:5.721329px;}
._47{width:25.344000px;}
._45{width:27.024000px;}
._48{width:39.792000px;}
._44{width:49.632000px;}
._15{width:59.088000px;}
._43{width:63.888000px;}
._37{width:65.856000px;}
._24{width:70.032000px;}
._16{width:73.632000px;}
._38{width:76.320000px;}
._1b{width:83.424000px;}
._2f{width:86.592000px;}
._1d{width:89.760000px;}
._14{width:96.288000px;}
._18{width:98.592000px;}
._3f{width:104.806200px;}
._30{width:107.424000px;}
._27{width:110.112000px;}
._29{width:113.136000px;}
._31{width:116.139600px;}
._25{width:117.360000px;}
._42{width:118.896000px;}
._3a{width:119.904000px;}
._22{width:123.456000px;}
._26{width:125.280000px;}
._33{width:126.624000px;}
._1a{width:129.792000px;}
._2e{width:133.200000px;}
._32{width:134.256000px;}
._39{width:145.680000px;}
._3b{width:147.456000px;}
._3d{width:157.200000px;}
._35{width:169.728000px;}
._2c{width:202.128000px;}
._2d{width:213.648000px;}
._23{width:239.868000px;}
._34{width:249.648000px;}
._1f{width:252.720000px;}
._21{width:271.392000px;}
._3e{width:274.560000px;}
._1c{width:289.152000px;}
._28{width:294.972000px;}
._20{width:309.648000px;}
._2a{width:320.352000px;}
._36{width:327.792000px;}
._3c{width:332.352000px;}
._1e{width:353.184000px;}
._2b{width:355.920000px;}
._40{width:358.272000px;}
._17{width:362.112000px;}
._b{width:383.520000px;}
._19{width:398.122200px;}
._46{width:435.264000px;}
._e{width:1052.832000px;}
._f{width:1112.454000px;}
.fc4{color:rgb(4,6,6);}
.fc3{color:rgb(35,80,169);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(42,51,108);}
.fs6{font-size:31.500000px;}
.fs8{font-size:33.600000px;}
.fs9{font-size:36.000000px;}
.fs15{font-size:40.299000px;}
.fs5{font-size:42.000000px;}
.fs11{font-size:42.750000px;}
.fs14{font-size:43.177800px;}
.fs10{font-size:47.250000px;}
.fs13{font-size:47.759400px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fsf{font-size:57.570000px;}
.fs1{font-size:60.000000px;}
.fs12{font-size:60.044400px;}
.fse{font-size:63.000000px;}
.fs4{font-size:84.000000px;}
.fsc{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs3{font-size:132.000000px;}
.fs0{font-size:660.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:42.519750px;}
.y67{bottom:53.145300px;}
.y3b{bottom:53.318100px;}
.y3a{bottom:53.318250px;}
.y2{bottom:60.519750px;}
.y38{bottom:126.028350px;}
.ye7{bottom:126.038550px;}
.y9d{bottom:126.042900px;}
.yb5{bottom:126.045900px;}
.y14f{bottom:126.046050px;}
.ycb{bottom:126.047400px;}
.y154{bottom:126.047550px;}
.y1bb{bottom:126.361500px;}
.y144{bottom:132.025500px;}
.y11c{bottom:133.688850px;}
.y37{bottom:138.028350px;}
.y1ba{bottom:141.243450px;}
.y207{bottom:141.280050px;}
.ye6{bottom:143.977800px;}
.y9c{bottom:143.982150px;}
.yb4{bottom:143.985150px;}
.y14e{bottom:143.985300px;}
.y143{bottom:145.573500px;}
.y66{bottom:148.811400px;}
.y49{bottom:148.818900px;}
.y36{bottom:150.028350px;}
.y11b{bottom:153.884850px;}
.y1b9{bottom:156.125400px;}
.y206{bottom:156.531900px;}
.y142{bottom:159.121500px;}
.y65{bottom:160.812900px;}
.yb3{bottom:161.916900px;}
.ye5{bottom:161.917050px;}
.y9b{bottom:161.921400px;}
.yca{bottom:161.922900px;}
.y14d{bottom:161.923050px;}
.y35{bottom:162.028350px;}
.y48{bottom:165.318900px;}
.y11a{bottom:170.360850px;}
.y1b8{bottom:171.007200px;}
.y205{bottom:171.783450px;}
.y141{bottom:172.669500px;}
.y64{bottom:172.814400px;}
.y34{bottom:174.028350px;}
.y16f{bottom:179.851800px;}
.yb2{bottom:179.856150px;}
.y9a{bottom:179.860650px;}
.y14c{bottom:179.860800px;}
.y47{bottom:181.808400px;}
.y63{bottom:184.815900px;}
.y119{bottom:185.408850px;}
.y1b7{bottom:185.889150px;}
.y33{bottom:186.022650px;}
.y39{bottom:186.028350px;}
.y204{bottom:187.035150px;}
.y140{bottom:187.069500px;}
.y62{bottom:196.817400px;}
.y16e{bottom:197.791050px;}
.yb1{bottom:197.795400px;}
.ye4{bottom:197.795550px;}
.y99{bottom:197.798400px;}
.y14b{bottom:197.798550px;}
.y46{bottom:198.309900px;}
.y118{bottom:199.808850px;}
.y1b6{bottom:200.771100px;}
.y13f{bottom:201.469500px;}
.y203{bottom:202.286850px;}
.y61{bottom:208.818900px;}
.yc9{bottom:209.069100px;}
.y45{bottom:214.811400px;}
.y1b5{bottom:215.652900px;}
.y16d{bottom:215.730300px;}
.yb0{bottom:215.734650px;}
.ye3{bottom:215.734800px;}
.y98{bottom:215.736150px;}
.y14a{bottom:215.736300px;}
.y117{bottom:215.804850px;}
.y13e{bottom:215.869500px;}
.y202{bottom:217.538700px;}
.yc8{bottom:223.946100px;}
.y13d{bottom:229.417500px;}
.y116{bottom:230.204850px;}
.y1b4{bottom:230.534850px;}
.y44{bottom:231.312900px;}
.y201{bottom:232.790250px;}
.y153{bottom:233.665800px;}
.y16c{bottom:233.669550px;}
.y97{bottom:233.670900px;}
.yaf{bottom:233.673900px;}
.ye2{bottom:233.674050px;}
.y28{bottom:237.914100px;}
.yc7{bottom:238.827900px;}
.y115{bottom:243.752850px;}
.y13c{bottom:243.817500px;}
.y1b3{bottom:245.426550px;}
.y43{bottom:247.814400px;}
.y200{bottom:248.041950px;}
.y27{bottom:250.514100px;}
.y152{bottom:251.605050px;}
.y16b{bottom:251.608800px;}
.y96{bottom:251.610150px;}
.yae{bottom:251.611650px;}
.yc6{bottom:253.709850px;}
.y114{bottom:258.152850px;}
.y13b{bottom:258.217500px;}
.y1b2{bottom:260.303550px;}
.y1ff{bottom:263.293650px;}
.y42{bottom:264.315900px;}
.yc5{bottom:268.591800px;}
.y151{bottom:269.544300px;}
.y16a{bottom:269.548050px;}
.y95{bottom:269.549400px;}
.ye1{bottom:269.549550px;}
.y26{bottom:271.619100px;}
.y113{bottom:271.700850px;}
.y13a{bottom:272.617500px;}
.y1b1{bottom:275.180550px;}
.y1fe{bottom:278.545500px;}
.y41{bottom:280.817400px;}
.yc4{bottom:283.473600px;}
.y25{bottom:283.620600px;}
.y112{bottom:286.100850px;}
.y139{bottom:286.165500px;}
.y15f{bottom:287.485800px;}
.y94{bottom:287.487150px;}
.ye0{bottom:287.487300px;}
.y1b0{bottom:290.062350px;}
.y1fd{bottom:293.797050px;}
.y24{bottom:295.622100px;}
.y40{bottom:297.318900px;}
.y111{bottom:300.356850px;}
.y1af{bottom:304.949100px;}
.y138{bottom:305.293500px;}
.ydf{bottom:305.417550px;}
.y150{bottom:305.422800px;}
.yad{bottom:305.423400px;}
.y93{bottom:305.424900px;}
.y149{bottom:305.425050px;}
.y23{bottom:307.623600px;}
.y1fc{bottom:309.048750px;}
.yc3{bottom:310.261050px;}
.y110{bottom:313.904850px;}
.y1ae{bottom:319.826100px;}
.yde{bottom:323.356800px;}
.y169{bottom:323.358300px;}
.y92{bottom:323.361150px;}
.yac{bottom:323.362650px;}
.y15e{bottom:323.362800px;}
.y1fb{bottom:324.300450px;}
.y137{bottom:324.421500px;}
.y10f{bottom:327.992850px;}
.y146{bottom:329.009400px;}
.y3f{bottom:331.460700px;}
.y22{bottom:332.382600px;}
.y1ad{bottom:334.708050px;}
.y1fa{bottom:339.547800px;}
.yc2{bottom:341.295900px;}
.ydd{bottom:341.296050px;}
.y168{bottom:341.297550px;}
.y91{bottom:341.300400px;}
.y15d{bottom:341.300550px;}
.y10e{bottom:341.540850px;}
.y3e{bottom:342.706200px;}
.y136{bottom:343.549500px;}
.y21{bottom:344.982600px;}
.y1ac{bottom:349.589850px;}
.y3d{bottom:353.951700px;}
.y1f9{bottom:354.803850px;}
.y10d{bottom:356.324850px;}
.ydc{bottom:359.235300px;}
.y167{bottom:359.236800px;}
.y90{bottom:359.238150px;}
.y15c{bottom:359.238300px;}
.y135{bottom:362.674500px;}
.y134{bottom:362.680350px;}
.y1ab{bottom:364.471800px;}
.y158{bottom:364.486050px;}
.y20{bottom:366.087600px;}
.y10c{bottom:369.872850px;}
.y1f8{bottom:370.051200px;}
.y133{bottom:376.228350px;}
.yc1{bottom:377.174400px;}
.ydb{bottom:377.174550px;}
.y8f{bottom:377.175900px;}
.y15b{bottom:377.176050px;}
.y157{bottom:377.243550px;}
.y1f{bottom:378.687600px;}
.y1aa{bottom:379.353750px;}
.y10b{bottom:384.164850px;}
.y1f7{bottom:385.307250px;}
.y3c{bottom:386.459700px;}
.y132{bottom:389.776350px;}
.y1a9{bottom:394.240500px;}
.yc0{bottom:395.110650px;}
.y8e{bottom:395.113650px;}
.yda{bottom:395.113800px;}
.y10a{bottom:397.712850px;}
.y1f6{bottom:400.554600px;}
.y131{bottom:403.324350px;}
.y176{bottom:404.062500px;}
.y1a8{bottom:409.117500px;}
.y109{bottom:411.260850px;}
.y166{bottom:413.044050px;}
.y15a{bottom:413.048550px;}
.y8d{bottom:413.051400px;}
.yd9{bottom:413.051550px;}
.y1f5{bottom:415.806300px;}
.y130{bottom:416.881050px;}
.y1a7{bottom:424.009200px;}
.y108{bottom:424.808850px;}
.y12f{bottom:430.849050px;}
.y165{bottom:430.983300px;}
.yab{bottom:430.986150px;}
.yd8{bottom:430.987800px;}
.y8c{bottom:430.989150px;}
.y1f4{bottom:431.058000px;}
.y1a6{bottom:438.886200px;}
.y107{bottom:439.208850px;}
.y12d{bottom:444.397050px;}
.y1f3{bottom:446.314050px;}
.y164{bottom:448.922550px;}
.yaa{bottom:448.925400px;}
.y8b{bottom:448.926900px;}
.yd7{bottom:448.927050px;}
.y106{bottom:452.756850px;}
.y1a5{bottom:453.763200px;}
.y12e{bottom:458.797050px;}
.y12c{bottom:458.799000px;}
.y1f2{bottom:461.565750px;}
.y8a{bottom:466.858650px;}
.y163{bottom:466.861800px;}
.ya9{bottom:466.864650px;}
.yd6{bottom:466.864800px;}
.y105{bottom:467.156850px;}
.y12a{bottom:472.347000px;}
.y1f1{bottom:476.817450px;}
.y104{bottom:481.556850px;}
.y89{bottom:484.797900px;}
.y1a4{bottom:484.798050px;}
.ybf{bottom:484.800900px;}
.y162{bottom:484.801050px;}
.ya8{bottom:484.802400px;}
.yd5{bottom:484.802550px;}
.y12b{bottom:486.747000px;}
.y129{bottom:486.748950px;}
.y1f0{bottom:492.069150px;}
.y5d{bottom:492.386850px;}
.y103{bottom:495.104850px;}
.y32{bottom:498.306450px;}
.y128{bottom:500.298900px;}
.y88{bottom:502.737150px;}
.ya7{bottom:502.740150px;}
.yd4{bottom:502.740300px;}
.y171{bottom:502.767450px;}
.y1ef{bottom:507.320850px;}
.y102{bottom:508.652850px;}
.y127{bottom:513.854100px;}
.y31{bottom:514.554450px;}
.y87{bottom:520.676400px;}
.y159{bottom:520.676550px;}
.ya6{bottom:520.677900px;}
.yd3{bottom:520.678050px;}
.y161{bottom:520.679550px;}
.y1ee{bottom:522.568200px;}
.y101{bottom:523.052850px;}
.y30{bottom:526.554450px;}
.y126{bottom:527.402100px;}
.y5c{bottom:529.900200px;}
.y100{bottom:537.452850px;}
.y1ed{bottom:537.824250px;}
.y86{bottom:538.615650px;}
.yd2{bottom:538.615800px;}
.y160{bottom:538.618800px;}
.y125{bottom:541.802100px;}
.yb{bottom:545.398050px;}
.y5b{bottom:546.398700px;}
.yff{bottom:551.000850px;}
.y1ec{bottom:553.062900px;}
.y2f{bottom:555.562500px;}
.y124{bottom:556.202100px;}
.y85{bottom:556.553400px;}
.yd1{bottom:556.553550px;}
.y5a{bottom:562.898700px;}
.yfe{bottom:564.548850px;}
.y1eb{bottom:568.318950px;}
.ya{bottom:570.598050px;}
.y123{bottom:570.602100px;}
.y2e{bottom:571.810500px;}
.ya5{bottom:574.486650px;}
.y1a3{bottom:574.489800px;}
.y84{bottom:574.491150px;}
.yd0{bottom:574.491300px;}
.yfd{bottom:578.948850px;}
.y1ea{bottom:583.575000px;}
.y122{bottom:584.150100px;}
.y83{bottom:592.422900px;}
.ya4{bottom:592.425900px;}
.ybe{bottom:592.428900px;}
.ycf{bottom:592.429050px;}
.yfc{bottom:592.496850px;}
.y59{bottom:594.789900px;}
.y9{bottom:595.798050px;}
.y194{bottom:596.215950px;}
.y121{bottom:598.550100px;}
.y1e9{bottom:598.831050px;}
.y2d{bottom:600.818250px;}
.y82{bottom:610.362150px;}
.ybd{bottom:610.363650px;}
.ya3{bottom:610.365150px;}
.yce{bottom:610.365300px;}
.y1a2{bottom:610.366800px;}
.y58{bottom:611.288400px;}
.yfb{bottom:612.428850px;}
.y120{bottom:612.950100px;}
.y1e8{bottom:614.082750px;}
.y2c{bottom:617.070300px;}
.y8{bottom:620.998050px;}
.y57{bottom:627.788400px;}
.y81{bottom:628.301400px;}
.ybc{bottom:628.302900px;}
.ya2{bottom:628.304400px;}
.ycd{bottom:628.304550px;}
.y170{bottom:629.079000px;}
.y1e7{bottom:629.334450px;}
.yfa{bottom:632.636850px;}
.y11f{bottom:633.062100px;}
.y2b{bottom:633.326250px;}
.y193{bottom:638.665650px;}
.y1e6{bottom:644.586150px;}
.y80{bottom:646.240650px;}
.ya1{bottom:646.242150px;}
.ycc{bottom:646.242300px;}
.yf9{bottom:647.036850px;}
.y11e{bottom:647.462100px;}
.y2a{bottom:649.578300px;}
.y56{bottom:659.679750px;}
.y1e5{bottom:659.833500px;}
.yf8{bottom:661.436850px;}
.y11d{bottom:661.862100px;}
.y1a1{bottom:664.178550px;}
.y7f{bottom:664.179900px;}
.y29{bottom:665.826300px;}
.y156{bottom:674.079803px;}
.y1e4{bottom:675.089550px;}
.y55{bottom:676.178250px;}
.y7e{bottom:682.117650px;}
.y1a0{bottom:682.117800px;}
.y183{bottom:684.089513px;}
.y192{bottom:687.074476px;}
.y1e3{bottom:690.341250px;}
.y54{bottom:692.678250px;}
.y7d{bottom:700.055400px;}
.y19f{bottom:700.055550px;}
.ye8{bottom:705.078900px;}
.y1e2{bottom:705.592950px;}
.y182{bottom:710.213905px;}
.y148{bottom:711.156300px;}
.y7c{bottom:717.993150px;}
.y19e{bottom:717.993300px;}
.y1e1{bottom:720.844650px;}
.y53{bottom:724.569450px;}
.y19d{bottom:735.923550px;}
.y7b{bottom:735.930900px;}
.y1e0{bottom:736.096350px;}
.y181{bottom:738.296432px;}
.y52{bottom:741.067950px;}
.y1df{bottom:751.348050px;}
.y7a{bottom:753.868650px;}
.y51{bottom:757.565850px;}
.y147{bottom:758.117400px;}
.yee{bottom:760.312800px;}
.y180{bottom:760.313515px;}
.y187{bottom:765.161095px;}
.y1de{bottom:766.599750px;}
.ya0{bottom:771.806400px;}
.y79{bottom:771.806550px;}
.y7{bottom:772.073400px;}
.y50{bottom:774.575850px;}
.y1dd{bottom:781.847100px;}
.y17f{bottom:784.754388px;}
.y145{bottom:789.615000px;}
.y78{bottom:789.739650px;}
.y19c{bottom:789.741300px;}
.y9f{bottom:789.744150px;}
.y1dc{bottom:797.103150px;}
.y4f{bottom:806.468550px;}
.y77{bottom:807.678900px;}
.y19b{bottom:807.680550px;}
.y9e{bottom:807.682050px;}
.y191{bottom:808.096795px;}
.y17e{bottom:808.108735px;}
.y6{bottom:811.673400px;}
.y1db{bottom:812.354850px;}
.yf3{bottom:821.605800px;}
.y4e{bottom:822.967050px;}
.y19a{bottom:825.619800px;}
.y1da{bottom:827.606550px;}
.y1e{bottom:829.326600px;}
.y188{bottom:829.791503px;}
.y17d{bottom:833.349578px;}
.y4d{bottom:839.465550px;}
.y1d{bottom:842.084100px;}
.y1d9{bottom:842.858250px;}
.y76{bottom:843.557400px;}
.y199{bottom:843.557550px;}
.y226{bottom:844.749600px;}
.y5{bottom:851.273400px;}
.y4c{bottom:855.961350px;}
.y1d8{bottom:858.110100px;}
.y17c{bottom:858.829218px;}
.y225{bottom:859.626600px;}
.y198{bottom:861.495300px;}
.y1c{bottom:865.587450px;}
.y4b{bottom:872.971350px;}
.y1d7{bottom:873.361650px;}
.y224{bottom:874.503600px;}
.y1b{bottom:878.187450px;}
.y197{bottom:879.433050px;}
.y189{bottom:880.535865px;}
.y18d{bottom:884.189459px;}
.y186{bottom:888.356467px;}
.y1d6{bottom:888.613350px;}
.y4a{bottom:889.981350px;}
.y1a{bottom:890.787450px;}
.y196{bottom:897.370800px;}
.yec{bottom:898.490700px;}
.y190{bottom:901.729099px;}
.y19{bottom:903.387450px;}
.y1d5{bottom:903.865050px;}
.y17b{bottom:907.328889px;}
.yeb{bottom:910.070700px;}
.yf2{bottom:911.668350px;}
.y195{bottom:915.308550px;}
.y18{bottom:915.987450px;}
.y1d4{bottom:919.112550px;}
.yea{bottom:924.470700px;}
.y17{bottom:928.587450px;}
.y17a{bottom:932.605551px;}
.y75{bottom:933.743100px;}
.yba{bottom:933.938850px;}
.y1d3{bottom:934.368600px;}
.y215{bottom:936.902700px;}
.yf5{bottom:937.969800px;}
.y223{bottom:938.288100px;}
.y16{bottom:941.187450px;}
.yb9{bottom:945.940350px;}
.y1d2{bottom:949.615800px;}
.y74{bottom:950.244600px;}
.y214{bottom:951.784650px;}
.y222{bottom:953.165100px;}
.y15{bottom:953.787450px;}
.y18c{bottom:954.837552px;}
.yb8{bottom:957.941850px;}
.y179{bottom:957.977732px;}
.yf6{bottom:960.973800px;}
.y1d1{bottom:964.871850px;}
.y14{bottom:966.387450px;}
.y213{bottom:966.666450px;}
.y73{bottom:966.746100px;}
.y221{bottom:968.046900px;}
.y1c6{bottom:969.357300px;}
.y1c5{bottom:969.362100px;}
.yb7{bottom:969.943350px;}
.yed{bottom:972.830700px;}
.y18f{bottom:978.466515px;}
.y13{bottom:978.987450px;}
.y1d0{bottom:980.123550px;}
.y212{bottom:981.548400px;}
.y178{bottom:981.738034px;}
.yb6{bottom:981.944850px;}
.y220{bottom:982.928700px;}
.y1c4{bottom:982.970100px;}
.y72{bottom:983.247600px;}
.y18b{bottom:984.687177px;}
.y60{bottom:989.007750px;}
.y12{bottom:991.587450px;}
.y1cf{bottom:995.370900px;}
.yf4{bottom:995.473800px;}
.y211{bottom:996.430350px;}
.y1c3{bottom:997.370100px;}
.y21f{bottom:997.815600px;}
.y71{bottom:999.747600px;}
.y18e{bottom:1008.292260px;}
.y177{bottom:1008.304200px;}
.y11{bottom:1008.439950px;}
.y1ce{bottom:1010.626950px;}
.y1c2{bottom:1010.978100px;}
.y210{bottom:1011.312150px;}
.yf0{bottom:1012.027350px;}
.y21e{bottom:1012.692600px;}
.y70{bottom:1016.241600px;}
.y5f{bottom:1019.007750px;}
.y1c1{bottom:1024.586100px;}
.y1cd{bottom:1025.880750px;}
.y20f{bottom:1026.352710px;}
.y21d{bottom:1027.574400px;}
.y6f{bottom:1032.743100px;}
.y175{bottom:1033.144394px;}
.y10{bottom:1033.795950px;}
.y4{bottom:1036.057950px;}
.y1c0{bottom:1038.194100px;}
.y1cc{bottom:1041.128250px;}
.y20e{bottom:1041.378480px;}
.y21c{bottom:1042.456350px;}
.y5e{bottom:1049.007750px;}
.y6e{bottom:1049.244600px;}
.y1bf{bottom:1051.802100px;}
.yf1{bottom:1055.087850px;}
.ye9{bottom:1055.198700px;}
.y1cb{bottom:1056.233250px;}
.y174{bottom:1056.331583px;}
.y20d{bottom:1056.404250px;}
.y21b{bottom:1057.352850px;}
.yf{bottom:1059.151800px;}
.y6d{bottom:1065.746100px;}
.y185{bottom:1065.758758px;}
.y1ca{bottom:1071.336150px;}
.y20c{bottom:1071.435000px;}
.y1be{bottom:1071.794100px;}
.y21a{bottom:1072.229850px;}
.y18a{bottom:1074.164413px;}
.y173{bottom:1079.865027px;}
.y6c{bottom:1082.247600px;}
.ye{bottom:1084.507800px;}
.yf7{bottom:1085.101800px;}
.y1{bottom:1086.378000px;}
.y1c9{bottom:1086.438900px;}
.y20b{bottom:1086.480540px;}
.y219{bottom:1087.106850px;}
.y6b{bottom:1098.744600px;}
.y20a{bottom:1101.506310px;}
.y1c8{bottom:1101.541800px;}
.y218{bottom:1101.983850px;}
.y172{bottom:1103.541750px;}
.y184{bottom:1114.998700px;}
.y6a{bottom:1115.246100px;}
.y209{bottom:1116.532080px;}
.y1c7{bottom:1116.644700px;}
.y217{bottom:1116.865950px;}
.yd{bottom:1118.367000px;}
.y1bd{bottom:1119.325350px;}
.y155{bottom:1121.500650px;}
.yef{bottom:1123.403250px;}
.y208{bottom:1131.557850px;}
.y216{bottom:1131.742950px;}
.y69{bottom:1131.747600px;}
.y1bc{bottom:1132.082850px;}
.yc{bottom:1135.219500px;}
.y68{bottom:1202.244000px;}
.ybb{bottom:1202.244150px;}
.hf{height:28.296000px;}
.ha{height:30.702000px;}
.h22{height:32.340000px;}
.h8{height:33.012000px;}
.h10{height:33.372000px;}
.h23{height:34.656000px;}
.h24{height:35.088000px;}
.h1e{height:36.380250px;}
.h31{height:36.744308px;}
.h2a{height:36.774738px;}
.h20{height:36.960000px;}
.h25{height:37.728000px;}
.h7{height:38.934000px;}
.h15{height:40.086000px;}
.h9{height:40.782000px;}
.h13{height:43.860000px;}
.hd{height:44.016000px;}
.hc{height:44.038800px;}
.hb{height:44.496000px;}
.h27{height:46.200000px;}
.h28{height:46.234188px;}
.h14{height:47.277000px;}
.h17{height:48.222000px;}
.h1d{height:48.507000px;}
.h30{height:48.992070px;}
.h18{height:49.518000px;}
.h11{height:50.901000px;}
.h21{height:52.032000px;}
.h2c{height:52.249200px;}
.h12{height:52.269000px;}
.h19{height:52.293000px;}
.h2d{height:52.783290px;}
.h2e{height:52.791690px;}
.h2f{height:52.809090px;}
.h1f{height:53.613000px;}
.he{height:55.020000px;}
.h2b{height:56.259000px;}
.h1a{height:57.771000px;}
.h1b{height:57.783000px;}
.h1c{height:57.795000px;}
.h3{height:58.260000px;}
.h16{height:70.176000px;}
.h6{height:81.564000px;}
.h4{height:99.042000px;}
.h5{height:128.172000px;}
.h26{height:352.438500px;}
.h29{height:513.000000px;}
.h2{height:640.860000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:744.094500px;}
.w2{width:744.120000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:40.818900px;}
.x2{left:42.519750px;}
.x57{left:73.440000px;}
.xb{left:75.153600px;}
.x59{left:76.837950px;}
.x5c{left:81.129150px;}
.x36{left:82.282650px;}
.x30{left:83.475900px;}
.x31{left:87.217650px;}
.x5b{left:88.634700px;}
.x74{left:91.416450px;}
.xc{left:96.413400px;}
.xd{left:109.169400px;}
.x5a{left:114.923850px;}
.x10{left:116.929200px;}
.x3b{left:127.950300px;}
.x29{left:129.685050px;}
.x58{left:132.015750px;}
.x37{left:133.407150px;}
.x6e{left:135.978029px;}
.x3a{left:141.432150px;}
.x43{left:154.540200px;}
.x35{left:156.343650px;}
.x2c{left:157.406700px;}
.x39{left:159.749400px;}
.x42{left:162.658350px;}
.x2e{left:163.981200px;}
.x2a{left:170.825700px;}
.x33{left:174.096150px;}
.x49{left:178.933200px;}
.x3d{left:181.934250px;}
.x3c{left:184.771800px;}
.x6{left:187.517100px;}
.x41{left:189.103950px;}
.x2f{left:190.549200px;}
.x2d{left:194.801700px;}
.x4a{left:209.196900px;}
.x4{left:211.079100px;}
.x34{left:217.390650px;}
.x2b{left:221.356200px;}
.x75{left:226.235550px;}
.x4e{left:228.885450px;}
.x79{left:234.306600px;}
.x11{left:236.439150px;}
.x12{left:241.443150px;}
.x7a{left:246.684750px;}
.x6c{left:249.406604px;}
.x76{left:254.680500px;}
.x7b{left:258.671400px;}
.x6b{left:259.853973px;}
.x4b{left:262.488900px;}
.x3e{left:265.022250px;}
.x45{left:273.971100px;}
.x14{left:275.317800px;}
.x1d{left:276.522450px;}
.x20{left:280.080300px;}
.x77{left:291.751800px;}
.x7c{left:299.303850px;}
.x6d{left:302.097162px;}
.x4c{left:307.485450px;}
.xa{left:312.981600px;}
.x23{left:316.697850px;}
.x7{left:320.079600px;}
.x7d{left:333.639450px;}
.x5{left:334.763100px;}
.x1e{left:336.587700px;}
.x47{left:347.317200px;}
.x4d{left:357.861450px;}
.x9{left:366.741600px;}
.x78{left:373.328100px;}
.x28{left:376.732200px;}
.x13{left:380.454300px;}
.x71{left:382.022518px;}
.x6f{left:391.240082px;}
.x72{left:395.419029px;}
.x7e{left:402.903300px;}
.x7f{left:406.807050px;}
.x70{left:408.134970px;}
.x8{left:414.348600px;}
.x5d{left:415.870800px;}
.x26{left:424.968450px;}
.x65{left:429.244625px;}
.x62{left:436.635392px;}
.x66{left:442.533678px;}
.x44{left:444.518700px;}
.x63{left:450.366219px;}
.xe{left:457.092150px;}
.x48{left:461.437200px;}
.x60{left:463.033006px;}
.x24{left:465.439350px;}
.x54{left:466.449450px;}
.x73{left:467.977498px;}
.x32{left:469.842600px;}
.xa1{left:471.047100px;}
.x68{left:473.242972px;}
.x80{left:474.264600px;}
.x64{left:478.341288px;}
.x5f{left:479.832375px;}
.x94{left:482.215350px;}
.x5e{left:483.450150px;}
.x85{left:487.623450px;}
.x9e{left:492.446850px;}
.x95{left:495.692700px;}
.x9b{left:499.019700px;}
.x19{left:502.040400px;}
.x21{left:511.747800px;}
.x6a{left:519.390492px;}
.x67{left:524.238071px;}
.x81{left:525.768450px;}
.x8f{left:532.461300px;}
.x9c{left:534.798600px;}
.x9f{left:536.932050px;}
.x86{left:537.935250px;}
.x69{left:541.025500px;}
.x27{left:549.255450px;}
.x1a{left:554.187900px;}
.x38{left:555.959850px;}
.x18{left:557.604900px;}
.x90{left:564.306900px;}
.x87{left:568.129050px;}
.x82{left:573.278850px;}
.x96{left:574.875600px;}
.x88{left:578.480400px;}
.x40{left:590.006250px;}
.x4f{left:591.696750px;}
.x61{left:596.328450px;}
.x89{left:598.620150px;}
.x55{left:608.361450px;}
.x91{left:610.289100px;}
.x53{left:615.021450px;}
.x15{left:617.986500px;}
.x83{left:622.695300px;}
.x22{left:626.010900px;}
.x9d{left:629.274450px;}
.x1f{left:632.431500px;}
.x25{left:634.906200px;}
.xa0{left:636.410550px;}
.x16{left:640.231500px;}
.x17{left:642.151500px;}
.x50{left:644.988750px;}
.xa4{left:647.918700px;}
.x8a{left:650.415600px;}
.x97{left:652.287300px;}
.x92{left:653.661000px;}
.xa2{left:655.756200px;}
.xa3{left:660.615450px;}
.x1c{left:661.995750px;}
.x3f{left:664.010250px;}
.x8b{left:665.569950px;}
.x46{left:672.668700px;}
.x3{left:687.756000px;}
.x51{left:689.985450px;}
.x1b{left:692.655750px;}
.x84{left:701.632200px;}
.x98{left:704.212500px;}
.x8c{left:711.527550px;}
.x93{left:721.475850px;}
.x99{left:737.811600px;}
.x52{left:740.361450px;}
.x8d{left:754.345050px;}
.x56{left:780.467400px;}
.xf{left:794.302350px;}
.x9a{left:813.900150px;}
.x8e{left:818.503950px;}
@media print{
.v1{vertical-align:-10.698667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.518933pt;}
.v4{vertical-align:10.250667pt;}
.v3{vertical-align:13.397333pt;}
.ls0{letter-spacing:-28.160000pt;}
.ls4b{letter-spacing:-2.661013pt;}
.ls4d{letter-spacing:-1.586373pt;}
.ls45{letter-spacing:-1.418667pt;}
.ls4a{letter-spacing:-0.818773pt;}
.ls18{letter-spacing:-0.672000pt;}
.ls43{letter-spacing:-0.560000pt;}
.ls48{letter-spacing:-0.554667pt;}
.ls20{letter-spacing:-0.506667pt;}
.ls1b{letter-spacing:-0.504000pt;}
.ls27{letter-spacing:-0.448000pt;}
.ls1d{letter-spacing:-0.392000pt;}
.ls1f{letter-spacing:-0.336000pt;}
.ls50{letter-spacing:-0.307040pt;}
.ls47{letter-spacing:-0.304000pt;}
.ls17{letter-spacing:-0.280000pt;}
.ls19{letter-spacing:-0.224000pt;}
.ls4e{letter-spacing:-0.204693pt;}
.ls5{letter-spacing:-0.202667pt;}
.ls1a{letter-spacing:-0.168000pt;}
.ls51{letter-spacing:-0.153520pt;}
.ls46{letter-spacing:-0.152000pt;}
.ls1c{letter-spacing:-0.112000pt;}
.ls5a{letter-spacing:-0.102347pt;}
.ls49{letter-spacing:-0.101333pt;}
.ls2c{letter-spacing:-0.056000pt;}
.ls4f{letter-spacing:-0.051173pt;}
.ls44{letter-spacing:-0.050667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.000107pt;}
.ls34{letter-spacing:0.000133pt;}
.ls37{letter-spacing:0.000160pt;}
.ls40{letter-spacing:0.000240pt;}
.ls2e{letter-spacing:0.014933pt;}
.ls2{letter-spacing:0.016533pt;}
.ls3a{letter-spacing:0.023733pt;}
.ls30{letter-spacing:0.050667pt;}
.ls3d{letter-spacing:0.051173pt;}
.lsc{letter-spacing:0.056000pt;}
.ls4{letter-spacing:0.060800pt;}
.ls12{letter-spacing:0.084000pt;}
.ls9{letter-spacing:0.102347pt;}
.ls8{letter-spacing:0.112000pt;}
.ls2f{letter-spacing:0.152000pt;}
.ls36{letter-spacing:0.153520pt;}
.lsb{letter-spacing:0.168000pt;}
.ls6{letter-spacing:0.202667pt;}
.ls39{letter-spacing:0.204693pt;}
.ls32{letter-spacing:0.206437pt;}
.ls3f{letter-spacing:0.214929pt;}
.ls11{letter-spacing:0.224000pt;}
.ls10{letter-spacing:0.252000pt;}
.ls4c{letter-spacing:0.255867pt;}
.ls15{letter-spacing:0.280000pt;}
.lse{letter-spacing:0.336000pt;}
.ls38{letter-spacing:0.358213pt;}
.lsa{letter-spacing:0.392000pt;}
.ls52{letter-spacing:0.405333pt;}
.ls16{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.504000pt;}
.ls53{letter-spacing:0.505400pt;}
.ls33{letter-spacing:0.506667pt;}
.ls2d{letter-spacing:0.560000pt;}
.ls25{letter-spacing:0.588000pt;}
.ls35{letter-spacing:0.609840pt;}
.ls26{letter-spacing:0.672000pt;}
.ls31{letter-spacing:0.695979pt;}
.ls42{letter-spacing:0.716427pt;}
.lsf{letter-spacing:0.728000pt;}
.ls2a{letter-spacing:0.756000pt;}
.ls7{letter-spacing:0.784000pt;}
.ls1e{letter-spacing:0.896000pt;}
.ls58{letter-spacing:0.912000pt;}
.ls59{letter-spacing:0.912155pt;}
.ls13{letter-spacing:0.952000pt;}
.ls57{letter-spacing:1.013333pt;}
.ls54{letter-spacing:1.107408pt;}
.ls29{letter-spacing:1.120000pt;}
.ls56{letter-spacing:1.520000pt;}
.ls55{letter-spacing:1.532543pt;}
.ls3b{letter-spacing:2.370853pt;}
.ls3{letter-spacing:2.730667pt;}
.ls3e{letter-spacing:3.362088pt;}
.ls41{letter-spacing:3.566781pt;}
.lsd{letter-spacing:3.584000pt;}
.ls2b{letter-spacing:3.864000pt;}
.ls21{letter-spacing:133.461333pt;}
.ls23{letter-spacing:136.277333pt;}
.ls22{letter-spacing:139.093333pt;}
.ls24{letter-spacing:1149.440000pt;}
.ls28{letter-spacing:1216.312739pt;}
.ws9d{word-spacing:-1216.312739pt;}
.ws97{word-spacing:-1149.440000pt;}
.ws0{word-spacing:-126.720000pt;}
.ws2{word-spacing:-90.666667pt;}
.ws67{word-spacing:-50.666667pt;}
.ws20{word-spacing:-14.784000pt;}
.ws22{word-spacing:-14.392000pt;}
.wsa0{word-spacing:-14.280000pt;}
.ws26{word-spacing:-14.224000pt;}
.ws23{word-spacing:-14.168000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws24{word-spacing:-14.000000pt;}
.ws9f{word-spacing:-13.888000pt;}
.ws27{word-spacing:-13.720000pt;}
.wsf4{word-spacing:-13.680000pt;}
.ws28{word-spacing:-13.496000pt;}
.ws25{word-spacing:-13.328000pt;}
.wsf2{word-spacing:-13.173333pt;}
.ws21{word-spacing:-12.895680pt;}
.wsb7{word-spacing:-12.793333pt;}
.wsb8{word-spacing:-12.742160pt;}
.wsac{word-spacing:-12.666667pt;}
.wsad{word-spacing:-12.464000pt;}
.wsb6{word-spacing:-11.974560pt;}
.ws9{word-spacing:-11.861333pt;}
.wsb4{word-spacing:-11.306667pt;}
.wsae{word-spacing:-11.248000pt;}
.wsa{word-spacing:-10.666667pt;}
.ws65{word-spacing:-10.500000pt;}
.wsf3{word-spacing:-10.412000pt;}
.ws4{word-spacing:-10.378667pt;}
.wsf1{word-spacing:-10.005400pt;}
.ws7{word-spacing:-9.856000pt;}
.wsba{word-spacing:-9.809996pt;}
.ws6{word-spacing:-9.781333pt;}
.wsb5{word-spacing:-9.595067pt;}
.ws66{word-spacing:-9.500000pt;}
.wsb9{word-spacing:-8.955333pt;}
.ws14{word-spacing:-8.896000pt;}
.ws8{word-spacing:-8.302933pt;}
.wsb{word-spacing:-8.000000pt;}
.ws5{word-spacing:-7.784000pt;}
.wsc{word-spacing:-5.712000pt;}
.ws44{word-spacing:-3.528000pt;}
.ws4a{word-spacing:-3.472000pt;}
.ws72{word-spacing:-3.416000pt;}
.ws7c{word-spacing:-3.248000pt;}
.wsce{word-spacing:-3.223920pt;}
.ws1e{word-spacing:-3.192000pt;}
.wsdd{word-spacing:-3.172747pt;}
.ws70{word-spacing:-3.141333pt;}
.wsaa{word-spacing:-3.080000pt;}
.wsda{word-spacing:-3.070400pt;}
.ws7b{word-spacing:-3.024000pt;}
.ws99{word-spacing:-2.968000pt;}
.wsf9{word-spacing:-2.938667pt;}
.wsa1{word-spacing:-2.912000pt;}
.ws3d{word-spacing:-2.744000pt;}
.ws32{word-spacing:-2.736000pt;}
.wsa3{word-spacing:-2.688000pt;}
.ws7a{word-spacing:-2.632000pt;}
.ws43{word-spacing:-2.576000pt;}
.wsfb{word-spacing:-2.533333pt;}
.ws1b{word-spacing:-2.432000pt;}
.wsbc{word-spacing:-2.352000pt;}
.wsc9{word-spacing:-2.330667pt;}
.wsd9{word-spacing:-2.302800pt;}
.ws5b{word-spacing:-2.296000pt;}
.ws48{word-spacing:-2.240000pt;}
.ws41{word-spacing:-2.128000pt;}
.ws4f{word-spacing:-2.072000pt;}
.ws79{word-spacing:-1.904000pt;}
.ws73{word-spacing:-1.792000pt;}
.wse9{word-spacing:-1.791067pt;}
.ws50{word-spacing:-1.736000pt;}
.ws3f{word-spacing:-1.680000pt;}
.ws2e{word-spacing:-1.672000pt;}
.ws17{word-spacing:-1.621333pt;}
.ws57{word-spacing:-1.568000pt;}
.ws4b{word-spacing:-1.512000pt;}
.ws5a{word-spacing:-1.456000pt;}
.wsa7{word-spacing:-1.400000pt;}
.wscf{word-spacing:-1.381680pt;}
.ws5f{word-spacing:-1.344000pt;}
.wsc5{word-spacing:-1.317333pt;}
.wsa8{word-spacing:-1.288000pt;}
.wsd1{word-spacing:-1.228160pt;}
.wse3{word-spacing:-1.176987pt;}
.ws62{word-spacing:-1.120000pt;}
.wsfc{word-spacing:-1.013333pt;}
.ws61{word-spacing:-1.008000pt;}
.ws4e{word-spacing:-0.952000pt;}
.ws100{word-spacing:-0.912000pt;}
.ws60{word-spacing:-0.896000pt;}
.wsf5{word-spacing:-0.869947pt;}
.ws2d{word-spacing:-0.861333pt;}
.wse6{word-spacing:-0.818773pt;}
.ws29{word-spacing:-0.810667pt;}
.ws9b{word-spacing:-0.784000pt;}
.wse4{word-spacing:-0.767600pt;}
.ws49{word-spacing:-0.728000pt;}
.wsf0{word-spacing:-0.716427pt;}
.wsc4{word-spacing:-0.709333pt;}
.ws40{word-spacing:-0.672000pt;}
.wsfd{word-spacing:-0.658667pt;}
.ws54{word-spacing:-0.616000pt;}
.wsd3{word-spacing:-0.614080pt;}
.wsa9{word-spacing:-0.560000pt;}
.wsfe{word-spacing:-0.506667pt;}
.ws2a{word-spacing:-0.456000pt;}
.ws3a{word-spacing:-0.448000pt;}
.ws39{word-spacing:-0.392000pt;}
.wsc2{word-spacing:-0.354667pt;}
.ws58{word-spacing:-0.336000pt;}
.wscd{word-spacing:-0.307040pt;}
.ws4c{word-spacing:-0.280000pt;}
.wsd6{word-spacing:-0.255867pt;}
.ws4d{word-spacing:-0.224000pt;}
.ws9e{word-spacing:-0.186667pt;}
.ws3c{word-spacing:-0.168000pt;}
.ws16{word-spacing:-0.149333pt;}
.ws36{word-spacing:-0.112000pt;}
.wsee{word-spacing:-0.102347pt;}
.ws3e{word-spacing:-0.056000pt;}
.wsec{word-spacing:-0.051173pt;}
.wsc3{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.056000pt;}
.ws19{word-spacing:0.152000pt;}
.ws34{word-spacing:0.168000pt;}
.wsd7{word-spacing:0.204693pt;}
.ws56{word-spacing:0.224000pt;}
.ws45{word-spacing:0.280000pt;}
.ws1d{word-spacing:0.304000pt;}
.wsde{word-spacing:0.307040pt;}
.wsd8{word-spacing:0.358213pt;}
.ws77{word-spacing:0.392000pt;}
.ws5c{word-spacing:0.448000pt;}
.ws71{word-spacing:0.456000pt;}
.ws47{word-spacing:0.504000pt;}
.ws6f{word-spacing:0.506667pt;}
.wsbb{word-spacing:0.560000pt;}
.ws2c{word-spacing:0.608000pt;}
.wsd2{word-spacing:0.614080pt;}
.wscc{word-spacing:0.716427pt;}
.ws6e{word-spacing:0.728000pt;}
.wse8{word-spacing:0.767600pt;}
.wsca{word-spacing:0.810667pt;}
.wsd0{word-spacing:0.818773pt;}
.ws18{word-spacing:0.861333pt;}
.ws55{word-spacing:0.896000pt;}
.wsc8{word-spacing:0.912000pt;}
.ws74{word-spacing:0.952000pt;}
.ws30{word-spacing:0.962667pt;}
.wsc0{word-spacing:1.013333pt;}
.wsf6{word-spacing:1.023467pt;}
.wsa4{word-spacing:1.064000pt;}
.ws63{word-spacing:1.120000pt;}
.wse7{word-spacing:1.125813pt;}
.ws33{word-spacing:1.232000pt;}
.ws46{word-spacing:1.288000pt;}
.wsdb{word-spacing:1.330507pt;}
.ws53{word-spacing:1.344000pt;}
.ws3b{word-spacing:1.400000pt;}
.ws9a{word-spacing:1.456000pt;}
.ws1a{word-spacing:1.469333pt;}
.wse1{word-spacing:1.484027pt;}
.ws11{word-spacing:1.493333pt;}
.ws9c{word-spacing:1.512000pt;}
.wse2{word-spacing:1.535200pt;}
.wsab{word-spacing:1.568000pt;}
.wsbf{word-spacing:1.624000pt;}
.wse0{word-spacing:1.637547pt;}
.wscb{word-spacing:1.672000pt;}
.wsbd{word-spacing:1.680000pt;}
.ws64{word-spacing:1.736000pt;}
.wsfa{word-spacing:1.773333pt;}
.wsdc{word-spacing:1.791067pt;}
.ws15{word-spacing:1.792000pt;}
.wsff{word-spacing:1.824000pt;}
.ws5d{word-spacing:1.848000pt;}
.ws1c{word-spacing:1.874667pt;}
.ws52{word-spacing:1.904000pt;}
.ws31{word-spacing:1.925333pt;}
.wsdf{word-spacing:1.944587pt;}
.ws75{word-spacing:1.960000pt;}
.wsc6{word-spacing:1.976000pt;}
.wsed{word-spacing:2.046933pt;}
.wsc1{word-spacing:2.077333pt;}
.wsf{word-spacing:2.090667pt;}
.wsf7{word-spacing:2.098107pt;}
.wsea{word-spacing:2.149280pt;}
.wsa5{word-spacing:2.240000pt;}
.ws6c{word-spacing:2.296000pt;}
.wsa2{word-spacing:2.352000pt;}
.ws78{word-spacing:2.408000pt;}
.wse5{word-spacing:2.456320pt;}
.wsa6{word-spacing:2.520000pt;}
.ws2b{word-spacing:2.533333pt;}
.ws76{word-spacing:2.688000pt;}
.wsd{word-spacing:2.730667pt;}
.ws5e{word-spacing:2.744000pt;}
.wsc7{word-spacing:2.938667pt;}
.ws59{word-spacing:2.968000pt;}
.wsef{word-spacing:3.121573pt;}
.ws2f{word-spacing:3.141333pt;}
.wsd4{word-spacing:3.172747pt;}
.wsf8{word-spacing:3.192000pt;}
.wseb{word-spacing:3.223920pt;}
.wsbe{word-spacing:3.248000pt;}
.ws51{word-spacing:3.360000pt;}
.ws42{word-spacing:3.416000pt;}
.ws35{word-spacing:3.472000pt;}
.ws38{word-spacing:3.528000pt;}
.ws37{word-spacing:3.584000pt;}
.ws12{word-spacing:3.626667pt;}
.wsd5{word-spacing:5.014987pt;}
.wse{word-spacing:5.845333pt;}
.ws13{word-spacing:7.850667pt;}
.ws10{word-spacing:8.704000pt;}
.wsb3{word-spacing:9.514667pt;}
.wsb2{word-spacing:10.666667pt;}
.wsb1{word-spacing:12.160000pt;}
.ws94{word-spacing:21.333333pt;}
.ws83{word-spacing:26.666667pt;}
.ws93{word-spacing:31.744000pt;}
.ws7d{word-spacing:34.944000pt;}
.ws82{word-spacing:38.570667pt;}
.ws81{word-spacing:44.202667pt;}
.wsb0{word-spacing:44.928000pt;}
.ws8f{word-spacing:45.056000pt;}
.ws86{word-spacing:50.389333pt;}
.ws85{word-spacing:62.293333pt;}
.ws91{word-spacing:65.109333pt;}
.ws84{word-spacing:67.925333pt;}
.ws90{word-spacing:68.778667pt;}
.ws8d{word-spacing:74.112000pt;}
.ws8a{word-spacing:75.776000pt;}
.ws7e{word-spacing:79.786667pt;}
.wsaf{word-spacing:82.517333pt;}
.ws92{word-spacing:83.626667pt;}
.ws8b{word-spacing:86.016000pt;}
.ws7f{word-spacing:87.637333pt;}
.ws8e{word-spacing:88.832000pt;}
.ws89{word-spacing:91.648000pt;}
.ws88{word-spacing:97.877333pt;}
.ws8c{word-spacing:99.498667pt;}
.ws95{word-spacing:107.349333pt;}
.ws87{word-spacing:111.360000pt;}
.ws96{word-spacing:124.416000pt;}
.ws68{word-spacing:214.330667pt;}
.ws69{word-spacing:222.917333pt;}
.ws80{word-spacing:243.157333pt;}
.ws6a{word-spacing:305.013333pt;}
.ws6b{word-spacing:1582.677333pt;}
.ws1f{word-spacing:2121.842133pt;}
.ws98{word-spacing:2512.097578pt;}
._12{margin-left:-485.184000pt;}
._11{margin-left:-475.029333pt;}
._10{margin-left:-466.517333pt;}
._13{margin-left:-431.760000pt;}
._7{margin-left:-31.208000pt;}
._9{margin-left:-19.330133pt;}
._c{margin-left:-14.826667pt;}
._d{margin-left:-12.602667pt;}
._49{margin-left:-9.401813pt;}
._41{margin-left:-8.456933pt;}
._0{margin-left:-7.157333pt;}
._2{margin-left:-5.808000pt;}
._6{margin-left:-4.361067pt;}
._5{margin-left:-3.282133pt;}
._4{margin-left:-1.930667pt;}
._8{margin-left:-0.918400pt;}
._1{width:1.114667pt;}
._3{width:2.202667pt;}
._a{width:3.765333pt;}
._4a{width:5.085625pt;}
._47{width:22.528000pt;}
._45{width:24.021333pt;}
._48{width:35.370667pt;}
._44{width:44.117333pt;}
._15{width:52.522667pt;}
._43{width:56.789333pt;}
._37{width:58.538667pt;}
._24{width:62.250667pt;}
._16{width:65.450667pt;}
._38{width:67.840000pt;}
._1b{width:74.154667pt;}
._2f{width:76.970667pt;}
._1d{width:79.786667pt;}
._14{width:85.589333pt;}
._18{width:87.637333pt;}
._3f{width:93.161067pt;}
._30{width:95.488000pt;}
._27{width:97.877333pt;}
._29{width:100.565333pt;}
._31{width:103.235200pt;}
._25{width:104.320000pt;}
._42{width:105.685333pt;}
._3a{width:106.581333pt;}
._22{width:109.738667pt;}
._26{width:111.360000pt;}
._33{width:112.554667pt;}
._1a{width:115.370667pt;}
._2e{width:118.400000pt;}
._32{width:119.338667pt;}
._39{width:129.493333pt;}
._3b{width:131.072000pt;}
._3d{width:139.733333pt;}
._35{width:150.869333pt;}
._2c{width:179.669333pt;}
._2d{width:189.909333pt;}
._23{width:213.216000pt;}
._34{width:221.909333pt;}
._1f{width:224.640000pt;}
._21{width:241.237333pt;}
._3e{width:244.053333pt;}
._1c{width:257.024000pt;}
._28{width:262.197333pt;}
._20{width:275.242667pt;}
._2a{width:284.757333pt;}
._36{width:291.370667pt;}
._3c{width:295.424000pt;}
._1e{width:313.941333pt;}
._2b{width:316.373333pt;}
._40{width:318.464000pt;}
._17{width:321.877333pt;}
._b{width:340.906667pt;}
._19{width:353.886400pt;}
._46{width:386.901333pt;}
._e{width:935.850667pt;}
._f{width:988.848000pt;}
.fs6{font-size:28.000000pt;}
.fs8{font-size:29.866667pt;}
.fs9{font-size:32.000000pt;}
.fs15{font-size:35.821333pt;}
.fs5{font-size:37.333333pt;}
.fs11{font-size:38.000000pt;}
.fs14{font-size:38.380267pt;}
.fs10{font-size:42.000000pt;}
.fs13{font-size:42.452800pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fsf{font-size:51.173333pt;}
.fs1{font-size:53.333333pt;}
.fs12{font-size:53.372800pt;}
.fse{font-size:56.000000pt;}
.fs4{font-size:74.666667pt;}
.fsc{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs3{font-size:117.333333pt;}
.fs0{font-size:586.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:37.795333pt;}
.y67{bottom:47.240267pt;}
.y3b{bottom:47.393867pt;}
.y3a{bottom:47.394000pt;}
.y2{bottom:53.795333pt;}
.y38{bottom:112.025200pt;}
.ye7{bottom:112.034267pt;}
.y9d{bottom:112.038133pt;}
.yb5{bottom:112.040800pt;}
.y14f{bottom:112.040933pt;}
.ycb{bottom:112.042133pt;}
.y154{bottom:112.042267pt;}
.y1bb{bottom:112.321333pt;}
.y144{bottom:117.356000pt;}
.y11c{bottom:118.834533pt;}
.y37{bottom:122.691867pt;}
.y1ba{bottom:125.549733pt;}
.y207{bottom:125.582267pt;}
.ye6{bottom:127.980267pt;}
.y9c{bottom:127.984133pt;}
.yb4{bottom:127.986800pt;}
.y14e{bottom:127.986933pt;}
.y143{bottom:129.398667pt;}
.y66{bottom:132.276800pt;}
.y49{bottom:132.283467pt;}
.y36{bottom:133.358533pt;}
.y11b{bottom:136.786533pt;}
.y1b9{bottom:138.778133pt;}
.y206{bottom:139.139467pt;}
.y142{bottom:141.441333pt;}
.y65{bottom:142.944800pt;}
.yb3{bottom:143.926133pt;}
.ye5{bottom:143.926267pt;}
.y9b{bottom:143.930133pt;}
.yca{bottom:143.931467pt;}
.y14d{bottom:143.931600pt;}
.y35{bottom:144.025200pt;}
.y48{bottom:146.950133pt;}
.y11a{bottom:151.431867pt;}
.y1b8{bottom:152.006400pt;}
.y205{bottom:152.696400pt;}
.y141{bottom:153.484000pt;}
.y64{bottom:153.612800pt;}
.y34{bottom:154.691867pt;}
.y16f{bottom:159.868267pt;}
.yb2{bottom:159.872133pt;}
.y9a{bottom:159.876133pt;}
.y14c{bottom:159.876267pt;}
.y47{bottom:161.607467pt;}
.y63{bottom:164.280800pt;}
.y119{bottom:164.807867pt;}
.y1b7{bottom:165.234800pt;}
.y33{bottom:165.353467pt;}
.y39{bottom:165.358533pt;}
.y204{bottom:166.253467pt;}
.y140{bottom:166.284000pt;}
.y62{bottom:174.948800pt;}
.y16e{bottom:175.814267pt;}
.yb1{bottom:175.818133pt;}
.ye4{bottom:175.818267pt;}
.y99{bottom:175.820800pt;}
.y14b{bottom:175.820933pt;}
.y46{bottom:176.275467pt;}
.y118{bottom:177.607867pt;}
.y1b6{bottom:178.463200pt;}
.y13f{bottom:179.084000pt;}
.y203{bottom:179.810533pt;}
.y61{bottom:185.616800pt;}
.yc9{bottom:185.839200pt;}
.y45{bottom:190.943467pt;}
.y1b5{bottom:191.691467pt;}
.y16d{bottom:191.760267pt;}
.yb0{bottom:191.764133pt;}
.ye3{bottom:191.764267pt;}
.y98{bottom:191.765467pt;}
.y14a{bottom:191.765600pt;}
.y117{bottom:191.826533pt;}
.y13e{bottom:191.884000pt;}
.y202{bottom:193.367733pt;}
.yc8{bottom:199.063200pt;}
.y13d{bottom:203.926667pt;}
.y116{bottom:204.626533pt;}
.y1b4{bottom:204.919867pt;}
.y44{bottom:205.611467pt;}
.y201{bottom:206.924667pt;}
.y153{bottom:207.702933pt;}
.y16c{bottom:207.706267pt;}
.y97{bottom:207.707467pt;}
.yaf{bottom:207.710133pt;}
.ye2{bottom:207.710267pt;}
.y28{bottom:211.479200pt;}
.yc7{bottom:212.291467pt;}
.y115{bottom:216.669200pt;}
.y13c{bottom:216.726667pt;}
.y1b3{bottom:218.156933pt;}
.y43{bottom:220.279467pt;}
.y200{bottom:220.481733pt;}
.y27{bottom:222.679200pt;}
.y152{bottom:223.648933pt;}
.y16b{bottom:223.652267pt;}
.y96{bottom:223.653467pt;}
.yae{bottom:223.654800pt;}
.yc6{bottom:225.519867pt;}
.y114{bottom:229.469200pt;}
.y13b{bottom:229.526667pt;}
.y1b2{bottom:231.380933pt;}
.y1ff{bottom:234.038800pt;}
.y42{bottom:234.947467pt;}
.yc5{bottom:238.748267pt;}
.y151{bottom:239.594933pt;}
.y16a{bottom:239.598267pt;}
.y95{bottom:239.599467pt;}
.ye1{bottom:239.599600pt;}
.y26{bottom:241.439200pt;}
.y113{bottom:241.511867pt;}
.y13a{bottom:242.326667pt;}
.y1b1{bottom:244.604933pt;}
.y1fe{bottom:247.596000pt;}
.y41{bottom:249.615467pt;}
.yc4{bottom:251.976533pt;}
.y25{bottom:252.107200pt;}
.y112{bottom:254.311867pt;}
.y139{bottom:254.369333pt;}
.y15f{bottom:255.542933pt;}
.y94{bottom:255.544133pt;}
.ye0{bottom:255.544267pt;}
.y1b0{bottom:257.833200pt;}
.y1fd{bottom:261.152933pt;}
.y24{bottom:262.775200pt;}
.y40{bottom:264.283467pt;}
.y111{bottom:266.983867pt;}
.y1af{bottom:271.065867pt;}
.y138{bottom:271.372000pt;}
.ydf{bottom:271.482267pt;}
.y150{bottom:271.486933pt;}
.yad{bottom:271.487467pt;}
.y93{bottom:271.488800pt;}
.y149{bottom:271.488933pt;}
.y23{bottom:273.443200pt;}
.y1fc{bottom:274.710000pt;}
.yc3{bottom:275.787600pt;}
.y110{bottom:279.026533pt;}
.y1ae{bottom:284.289867pt;}
.yde{bottom:287.428267pt;}
.y169{bottom:287.429600pt;}
.y92{bottom:287.432133pt;}
.yac{bottom:287.433467pt;}
.y15e{bottom:287.433600pt;}
.y1fb{bottom:288.267067pt;}
.y137{bottom:288.374667pt;}
.y10f{bottom:291.549200pt;}
.y146{bottom:292.452800pt;}
.y3f{bottom:294.631733pt;}
.y22{bottom:295.451200pt;}
.y1ad{bottom:297.518267pt;}
.y1fa{bottom:301.820267pt;}
.yc2{bottom:303.374133pt;}
.ydd{bottom:303.374267pt;}
.y168{bottom:303.375600pt;}
.y91{bottom:303.378133pt;}
.y15d{bottom:303.378267pt;}
.y10e{bottom:303.591867pt;}
.y3e{bottom:304.627733pt;}
.y136{bottom:305.377333pt;}
.y21{bottom:306.651200pt;}
.y1ac{bottom:310.746533pt;}
.y3d{bottom:314.623733pt;}
.y1f9{bottom:315.381200pt;}
.y10d{bottom:316.733200pt;}
.ydc{bottom:319.320267pt;}
.y167{bottom:319.321600pt;}
.y90{bottom:319.322800pt;}
.y15c{bottom:319.322933pt;}
.y135{bottom:322.377333pt;}
.y134{bottom:322.382533pt;}
.y1ab{bottom:323.974933pt;}
.y158{bottom:323.987600pt;}
.y20{bottom:325.411200pt;}
.y10c{bottom:328.775867pt;}
.y1f8{bottom:328.934400pt;}
.y133{bottom:334.425200pt;}
.yc1{bottom:335.266133pt;}
.ydb{bottom:335.266267pt;}
.y8f{bottom:335.267467pt;}
.y15b{bottom:335.267600pt;}
.y157{bottom:335.327600pt;}
.y1f{bottom:336.611200pt;}
.y1aa{bottom:337.203333pt;}
.y10b{bottom:341.479867pt;}
.y1f7{bottom:342.495333pt;}
.y3c{bottom:343.519733pt;}
.y132{bottom:346.467867pt;}
.y1a9{bottom:350.436000pt;}
.yc0{bottom:351.209467pt;}
.y8e{bottom:351.212133pt;}
.yda{bottom:351.212267pt;}
.y10a{bottom:353.522533pt;}
.y1f6{bottom:356.048533pt;}
.y131{bottom:358.510533pt;}
.y176{bottom:359.166667pt;}
.y1a8{bottom:363.660000pt;}
.y109{bottom:365.565200pt;}
.y166{bottom:367.150267pt;}
.y15a{bottom:367.154267pt;}
.y8d{bottom:367.156800pt;}
.yd9{bottom:367.156933pt;}
.y1f5{bottom:369.605600pt;}
.y130{bottom:370.560933pt;}
.y1a7{bottom:376.897067pt;}
.y108{bottom:377.607867pt;}
.y12f{bottom:382.976933pt;}
.y165{bottom:383.096267pt;}
.yab{bottom:383.098800pt;}
.yd8{bottom:383.100267pt;}
.y8c{bottom:383.101467pt;}
.y1f4{bottom:383.162667pt;}
.y1a6{bottom:390.121067pt;}
.y107{bottom:390.407867pt;}
.y12d{bottom:395.019600pt;}
.y1f3{bottom:396.723600pt;}
.y164{bottom:399.042267pt;}
.yaa{bottom:399.044800pt;}
.y8b{bottom:399.046133pt;}
.yd7{bottom:399.046267pt;}
.y106{bottom:402.450533pt;}
.y1a5{bottom:403.345067pt;}
.y12e{bottom:407.819600pt;}
.y12c{bottom:407.821333pt;}
.y1f2{bottom:410.280667pt;}
.y8a{bottom:414.985467pt;}
.y163{bottom:414.988267pt;}
.ya9{bottom:414.990800pt;}
.yd6{bottom:414.990933pt;}
.y105{bottom:415.250533pt;}
.y12a{bottom:419.864000pt;}
.y1f1{bottom:423.837733pt;}
.y104{bottom:428.050533pt;}
.y89{bottom:430.931467pt;}
.y1a4{bottom:430.931600pt;}
.ybf{bottom:430.934133pt;}
.y162{bottom:430.934267pt;}
.ya8{bottom:430.935467pt;}
.yd5{bottom:430.935600pt;}
.y12b{bottom:432.664000pt;}
.y129{bottom:432.665733pt;}
.y1f0{bottom:437.394800pt;}
.y5d{bottom:437.677200pt;}
.y103{bottom:440.093200pt;}
.y32{bottom:442.939067pt;}
.y128{bottom:444.710133pt;}
.y88{bottom:446.877467pt;}
.ya7{bottom:446.880133pt;}
.yd4{bottom:446.880267pt;}
.y171{bottom:446.904400pt;}
.y1ef{bottom:450.951867pt;}
.y102{bottom:452.135867pt;}
.y127{bottom:456.759200pt;}
.y31{bottom:457.381733pt;}
.y87{bottom:462.823467pt;}
.y159{bottom:462.823600pt;}
.ya6{bottom:462.824800pt;}
.yd3{bottom:462.824933pt;}
.y161{bottom:462.826267pt;}
.y1ee{bottom:464.505067pt;}
.y101{bottom:464.935867pt;}
.y30{bottom:468.048400pt;}
.y126{bottom:468.801867pt;}
.y5c{bottom:471.022400pt;}
.y100{bottom:477.735867pt;}
.y1ed{bottom:478.066000pt;}
.y86{bottom:478.769467pt;}
.yd2{bottom:478.769600pt;}
.y160{bottom:478.772267pt;}
.y125{bottom:481.601867pt;}
.yb{bottom:484.798267pt;}
.y5b{bottom:485.687733pt;}
.yff{bottom:489.778533pt;}
.y1ec{bottom:491.611467pt;}
.y2f{bottom:493.833333pt;}
.y124{bottom:494.401867pt;}
.y85{bottom:494.714133pt;}
.yd1{bottom:494.714267pt;}
.y5a{bottom:500.354400pt;}
.yfe{bottom:501.821200pt;}
.y1eb{bottom:505.172400pt;}
.ya{bottom:507.198267pt;}
.y123{bottom:507.201867pt;}
.y2e{bottom:508.276000pt;}
.ya5{bottom:510.654800pt;}
.y1a3{bottom:510.657600pt;}
.y84{bottom:510.658800pt;}
.yd0{bottom:510.658933pt;}
.yfd{bottom:514.621200pt;}
.y1ea{bottom:518.733333pt;}
.y122{bottom:519.244533pt;}
.y83{bottom:526.598133pt;}
.ya4{bottom:526.600800pt;}
.ybe{bottom:526.603467pt;}
.ycf{bottom:526.603600pt;}
.yfc{bottom:526.663867pt;}
.y59{bottom:528.702133pt;}
.y9{bottom:529.598267pt;}
.y194{bottom:529.969733pt;}
.y121{bottom:532.044533pt;}
.y1e9{bottom:532.294267pt;}
.y2d{bottom:534.060667pt;}
.y82{bottom:542.544133pt;}
.ybd{bottom:542.545467pt;}
.ya3{bottom:542.546800pt;}
.yce{bottom:542.546933pt;}
.y1a2{bottom:542.548267pt;}
.y58{bottom:543.367467pt;}
.yfb{bottom:544.381200pt;}
.y120{bottom:544.844533pt;}
.y1e8{bottom:545.851333pt;}
.y2c{bottom:548.506933pt;}
.y8{bottom:551.998267pt;}
.y57{bottom:558.034133pt;}
.y81{bottom:558.490133pt;}
.ybc{bottom:558.491467pt;}
.ya2{bottom:558.492800pt;}
.ycd{bottom:558.492933pt;}
.y170{bottom:559.181333pt;}
.y1e7{bottom:559.408400pt;}
.yfa{bottom:562.343867pt;}
.y11f{bottom:562.721867pt;}
.y2b{bottom:562.956667pt;}
.y193{bottom:567.702800pt;}
.y1e6{bottom:572.965467pt;}
.y80{bottom:574.436133pt;}
.ya1{bottom:574.437467pt;}
.ycc{bottom:574.437600pt;}
.yf9{bottom:575.143867pt;}
.y11e{bottom:575.521867pt;}
.y2a{bottom:577.402933pt;}
.y56{bottom:586.382000pt;}
.y1e5{bottom:586.518667pt;}
.yf8{bottom:587.943867pt;}
.y11d{bottom:588.321867pt;}
.y1a1{bottom:590.380933pt;}
.y7f{bottom:590.382133pt;}
.y29{bottom:591.845600pt;}
.y156{bottom:599.182047pt;}
.y1e4{bottom:600.079600pt;}
.y55{bottom:601.047333pt;}
.y7e{bottom:606.326800pt;}
.y1a0{bottom:606.326933pt;}
.y183{bottom:608.079567pt;}
.y192{bottom:610.732867pt;}
.y1e3{bottom:613.636667pt;}
.y54{bottom:615.714000pt;}
.y7d{bottom:622.271467pt;}
.y19f{bottom:622.271600pt;}
.ye8{bottom:626.736800pt;}
.y1e2{bottom:627.193733pt;}
.y182{bottom:631.301249pt;}
.y148{bottom:632.138933pt;}
.y7c{bottom:638.216133pt;}
.y19e{bottom:638.216267pt;}
.y1e1{bottom:640.750800pt;}
.y53{bottom:644.061733pt;}
.y19d{bottom:654.154267pt;}
.y7b{bottom:654.160800pt;}
.y1e0{bottom:654.307867pt;}
.y181{bottom:656.263495pt;}
.y52{bottom:658.727067pt;}
.y1df{bottom:667.864933pt;}
.y7a{bottom:670.105467pt;}
.y51{bottom:673.391867pt;}
.y147{bottom:673.882133pt;}
.yee{bottom:675.833600pt;}
.y180{bottom:675.834236pt;}
.y187{bottom:680.143195pt;}
.y1de{bottom:681.422000pt;}
.ya0{bottom:686.050133pt;}
.y79{bottom:686.050267pt;}
.y7{bottom:686.287467pt;}
.y50{bottom:688.511867pt;}
.y1dd{bottom:694.975200pt;}
.y17f{bottom:697.559456pt;}
.y145{bottom:701.880000pt;}
.y78{bottom:701.990800pt;}
.y19c{bottom:701.992267pt;}
.y9f{bottom:701.994800pt;}
.y1dc{bottom:708.536133pt;}
.y4f{bottom:716.860933pt;}
.y77{bottom:717.936800pt;}
.y19b{bottom:717.938267pt;}
.y9e{bottom:717.939600pt;}
.y191{bottom:718.308262pt;}
.y17e{bottom:718.318876pt;}
.y6{bottom:721.487467pt;}
.y1db{bottom:722.093200pt;}
.yf3{bottom:730.316267pt;}
.y4e{bottom:731.526267pt;}
.y19a{bottom:733.884267pt;}
.y1da{bottom:735.650267pt;}
.y1e{bottom:737.179200pt;}
.y188{bottom:737.592447pt;}
.y17d{bottom:740.755180pt;}
.y4d{bottom:746.191600pt;}
.y1d{bottom:748.519200pt;}
.y1d9{bottom:749.207333pt;}
.y76{bottom:749.828800pt;}
.y199{bottom:749.828933pt;}
.y226{bottom:750.888533pt;}
.y5{bottom:756.687467pt;}
.y4c{bottom:760.854533pt;}
.y1d8{bottom:762.764533pt;}
.y17c{bottom:763.403749pt;}
.y225{bottom:764.112533pt;}
.y198{bottom:765.773600pt;}
.y1c{bottom:769.411067pt;}
.y4b{bottom:775.974533pt;}
.y1d7{bottom:776.321467pt;}
.y224{bottom:777.336533pt;}
.y1b{bottom:780.611067pt;}
.y197{bottom:781.718267pt;}
.y189{bottom:782.698547pt;}
.y18d{bottom:785.946186pt;}
.y186{bottom:789.650193pt;}
.y1d6{bottom:789.878533pt;}
.y4a{bottom:791.094533pt;}
.y1a{bottom:791.811067pt;}
.y196{bottom:797.662933pt;}
.yec{bottom:798.658400pt;}
.y190{bottom:801.536977pt;}
.y19{bottom:803.011067pt;}
.y1d5{bottom:803.435600pt;}
.y17b{bottom:806.514568pt;}
.yeb{bottom:808.951733pt;}
.yf2{bottom:810.371867pt;}
.y195{bottom:813.607600pt;}
.y18{bottom:814.211067pt;}
.y1d4{bottom:816.988933pt;}
.yea{bottom:821.751733pt;}
.y17{bottom:825.411067pt;}
.y17a{bottom:828.982712pt;}
.y75{bottom:829.993867pt;}
.yba{bottom:830.167867pt;}
.y1d3{bottom:830.549867pt;}
.y215{bottom:832.802400pt;}
.yf5{bottom:833.750933pt;}
.y223{bottom:834.033867pt;}
.y16{bottom:836.611067pt;}
.yb9{bottom:840.835867pt;}
.y1d2{bottom:844.102933pt;}
.y74{bottom:844.661867pt;}
.y214{bottom:846.030800pt;}
.y222{bottom:847.257867pt;}
.y15{bottom:847.811067pt;}
.y18c{bottom:848.744490pt;}
.yb8{bottom:851.503867pt;}
.y179{bottom:851.535762pt;}
.yf6{bottom:854.198933pt;}
.y1d1{bottom:857.663867pt;}
.y14{bottom:859.011067pt;}
.y213{bottom:859.259067pt;}
.y73{bottom:859.329867pt;}
.y221{bottom:860.486133pt;}
.y1c6{bottom:861.650933pt;}
.y1c5{bottom:861.655200pt;}
.yb7{bottom:862.171867pt;}
.yed{bottom:864.738400pt;}
.y18f{bottom:869.748013pt;}
.y13{bottom:870.211067pt;}
.y1d0{bottom:871.220933pt;}
.y212{bottom:872.487467pt;}
.y178{bottom:872.656030pt;}
.yb6{bottom:872.839867pt;}
.y220{bottom:873.714400pt;}
.y1c4{bottom:873.751200pt;}
.y72{bottom:873.997867pt;}
.y18b{bottom:875.277490pt;}
.y60{bottom:879.118000pt;}
.y12{bottom:881.411067pt;}
.y1cf{bottom:884.774133pt;}
.yf4{bottom:884.865600pt;}
.y211{bottom:885.715867pt;}
.y1c3{bottom:886.551200pt;}
.y21f{bottom:886.947200pt;}
.y71{bottom:888.664533pt;}
.y18e{bottom:896.259787pt;}
.y177{bottom:896.270400pt;}
.y11{bottom:896.391067pt;}
.y1ce{bottom:898.335067pt;}
.y1c2{bottom:898.647200pt;}
.y210{bottom:898.944133pt;}
.yf0{bottom:899.579867pt;}
.y21e{bottom:900.171200pt;}
.y70{bottom:903.325867pt;}
.y5f{bottom:905.784667pt;}
.y1c1{bottom:910.743200pt;}
.y1cd{bottom:911.894000pt;}
.y20f{bottom:912.313520pt;}
.y21d{bottom:913.399467pt;}
.y6f{bottom:917.993867pt;}
.y175{bottom:918.350573pt;}
.y10{bottom:918.929733pt;}
.y4{bottom:920.940400pt;}
.y1c0{bottom:922.839200pt;}
.y1cc{bottom:925.447333pt;}
.y20e{bottom:925.669760pt;}
.y21c{bottom:926.627867pt;}
.y5e{bottom:932.451333pt;}
.y6e{bottom:932.661867pt;}
.y1bf{bottom:934.935200pt;}
.yf1{bottom:937.855867pt;}
.ye9{bottom:937.954400pt;}
.y1cb{bottom:938.874000pt;}
.y174{bottom:938.961407pt;}
.y20d{bottom:939.026000pt;}
.y21b{bottom:939.869200pt;}
.yf{bottom:941.468267pt;}
.y6d{bottom:947.329867pt;}
.y185{bottom:947.341118pt;}
.y1ca{bottom:952.298800pt;}
.y20c{bottom:952.386667pt;}
.y1be{bottom:952.705867pt;}
.y21a{bottom:953.093200pt;}
.y18a{bottom:954.812811pt;}
.y173{bottom:959.880024pt;}
.y6c{bottom:961.997867pt;}
.ye{bottom:964.006933pt;}
.yf7{bottom:964.534933pt;}
.y1{bottom:965.669333pt;}
.y1c9{bottom:965.723467pt;}
.y20b{bottom:965.760480pt;}
.y219{bottom:966.317200pt;}
.y6b{bottom:976.661867pt;}
.y20a{bottom:979.116720pt;}
.y1c8{bottom:979.148267pt;}
.y218{bottom:979.541200pt;}
.y172{bottom:980.926000pt;}
.y184{bottom:991.109955pt;}
.y6a{bottom:991.329867pt;}
.y209{bottom:992.472960pt;}
.y1c7{bottom:992.573067pt;}
.y217{bottom:992.769733pt;}
.yd{bottom:994.104000pt;}
.y1bd{bottom:994.955867pt;}
.y155{bottom:996.889467pt;}
.yef{bottom:998.580667pt;}
.y208{bottom:1005.829200pt;}
.y216{bottom:1005.993733pt;}
.y69{bottom:1005.997867pt;}
.y1bc{bottom:1006.295867pt;}
.yc{bottom:1009.084000pt;}
.y68{bottom:1068.661333pt;}
.ybb{bottom:1068.661467pt;}
.hf{height:25.152000pt;}
.ha{height:27.290667pt;}
.h22{height:28.746667pt;}
.h8{height:29.344000pt;}
.h10{height:29.664000pt;}
.h23{height:30.805333pt;}
.h24{height:31.189333pt;}
.h1e{height:32.338000pt;}
.h31{height:32.661607pt;}
.h2a{height:32.688656pt;}
.h20{height:32.853333pt;}
.h25{height:33.536000pt;}
.h7{height:34.608000pt;}
.h15{height:35.632000pt;}
.h9{height:36.250667pt;}
.h13{height:38.986667pt;}
.hd{height:39.125333pt;}
.hc{height:39.145600pt;}
.hb{height:39.552000pt;}
.h27{height:41.066667pt;}
.h28{height:41.097056pt;}
.h14{height:42.024000pt;}
.h17{height:42.864000pt;}
.h1d{height:43.117333pt;}
.h30{height:43.548507pt;}
.h18{height:44.016000pt;}
.h11{height:45.245333pt;}
.h21{height:46.250667pt;}
.h2c{height:46.443733pt;}
.h12{height:46.461333pt;}
.h19{height:46.482667pt;}
.h2d{height:46.918480pt;}
.h2e{height:46.925947pt;}
.h2f{height:46.941413pt;}
.h1f{height:47.656000pt;}
.he{height:48.906667pt;}
.h2b{height:50.008000pt;}
.h1a{height:51.352000pt;}
.h1b{height:51.362667pt;}
.h1c{height:51.373333pt;}
.h3{height:51.786667pt;}
.h16{height:62.378667pt;}
.h6{height:72.501333pt;}
.h4{height:88.037333pt;}
.h5{height:113.930667pt;}
.h26{height:313.278667pt;}
.h29{height:456.000000pt;}
.h2{height:569.653333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:661.417333pt;}
.w2{width:661.440000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:36.283467pt;}
.x2{left:37.795333pt;}
.x57{left:65.280000pt;}
.xb{left:66.803200pt;}
.x59{left:68.300400pt;}
.x5c{left:72.114800pt;}
.x36{left:73.140133pt;}
.x30{left:74.200800pt;}
.x31{left:77.526800pt;}
.x5b{left:78.786400pt;}
.x74{left:81.259067pt;}
.xc{left:85.700800pt;}
.xd{left:97.039467pt;}
.x5a{left:102.154533pt;}
.x10{left:103.937067pt;}
.x3b{left:113.733600pt;}
.x29{left:115.275600pt;}
.x58{left:117.347333pt;}
.x37{left:118.584133pt;}
.x6e{left:120.869359pt;}
.x3a{left:125.717467pt;}
.x43{left:137.369067pt;}
.x35{left:138.972133pt;}
.x2c{left:139.917067pt;}
.x39{left:141.999467pt;}
.x42{left:144.585200pt;}
.x2e{left:145.761067pt;}
.x2a{left:151.845067pt;}
.x33{left:154.752133pt;}
.x49{left:159.051733pt;}
.x3d{left:161.719333pt;}
.x3c{left:164.241600pt;}
.x6{left:166.681867pt;}
.x41{left:168.092400pt;}
.x2f{left:169.377067pt;}
.x2d{left:173.157067pt;}
.x4a{left:185.952800pt;}
.x4{left:187.625867pt;}
.x34{left:193.236133pt;}
.x2b{left:196.761067pt;}
.x75{left:201.098267pt;}
.x4e{left:203.453733pt;}
.x79{left:208.272533pt;}
.x11{left:210.168133pt;}
.x12{left:214.616133pt;}
.x7a{left:219.275333pt;}
.x6c{left:221.694759pt;}
.x76{left:226.382667pt;}
.x7b{left:229.930133pt;}
.x6b{left:230.981309pt;}
.x4b{left:233.323467pt;}
.x3e{left:235.575333pt;}
.x45{left:243.529867pt;}
.x14{left:244.726933pt;}
.x1d{left:245.797733pt;}
.x20{left:248.960267pt;}
.x77{left:259.334933pt;}
.x7c{left:266.047867pt;}
.x6d{left:268.530811pt;}
.x4c{left:273.320400pt;}
.xa{left:278.205867pt;}
.x23{left:281.509200pt;}
.x7{left:284.515200pt;}
.x7d{left:296.568400pt;}
.x5{left:297.567200pt;}
.x1e{left:299.189067pt;}
.x47{left:308.726400pt;}
.x4d{left:318.099067pt;}
.x9{left:325.992533pt;}
.x78{left:331.847200pt;}
.x28{left:334.873067pt;}
.x13{left:338.181600pt;}
.x71{left:339.575571pt;}
.x6f{left:347.768962pt;}
.x72{left:351.483582pt;}
.x7e{left:358.136267pt;}
.x7f{left:361.606267pt;}
.x70{left:362.786640pt;}
.x8{left:368.309867pt;}
.x5d{left:369.662933pt;}
.x26{left:377.749733pt;}
.x65{left:381.550777pt;}
.x62{left:388.120348pt;}
.x66{left:393.363269pt;}
.x44{left:395.127733pt;}
.x63{left:400.325528pt;}
.xe{left:406.304133pt;}
.x48{left:410.166400pt;}
.x60{left:411.584895pt;}
.x24{left:413.723867pt;}
.x54{left:414.621733pt;}
.x73{left:415.979998pt;}
.x32{left:417.637867pt;}
.xa1{left:418.708533pt;}
.x68{left:420.660419pt;}
.x80{left:421.568533pt;}
.x64{left:425.192256pt;}
.x5f{left:426.517667pt;}
.x94{left:428.635867pt;}
.x5e{left:429.733467pt;}
.x85{left:433.443067pt;}
.x9e{left:437.730533pt;}
.x95{left:440.615733pt;}
.x9b{left:443.573067pt;}
.x19{left:446.258133pt;}
.x21{left:454.886933pt;}
.x6a{left:461.680437pt;}
.x67{left:465.989397pt;}
.x81{left:467.349733pt;}
.x8f{left:473.298933pt;}
.x9c{left:475.376533pt;}
.x9f{left:477.272933pt;}
.x86{left:478.164667pt;}
.x69{left:480.911556pt;}
.x27{left:488.227067pt;}
.x1a{left:492.611467pt;}
.x38{left:494.186533pt;}
.x18{left:495.648800pt;}
.x90{left:501.606133pt;}
.x87{left:505.003600pt;}
.x82{left:509.581200pt;}
.x96{left:511.000533pt;}
.x88{left:514.204800pt;}
.x40{left:524.450000pt;}
.x4f{left:525.952667pt;}
.x61{left:530.069733pt;}
.x89{left:532.106800pt;}
.x55{left:540.765733pt;}
.x91{left:542.479200pt;}
.x53{left:546.685733pt;}
.x15{left:549.321333pt;}
.x83{left:553.506933pt;}
.x22{left:556.454133pt;}
.x9d{left:559.355067pt;}
.x1f{left:562.161333pt;}
.x25{left:564.361067pt;}
.xa0{left:565.698267pt;}
.x16{left:569.094667pt;}
.x17{left:570.801333pt;}
.x50{left:573.323333pt;}
.xa4{left:575.927733pt;}
.x8a{left:578.147200pt;}
.x97{left:579.810933pt;}
.x92{left:581.032000pt;}
.xa2{left:582.894400pt;}
.xa3{left:587.213733pt;}
.x1c{left:588.440667pt;}
.x3f{left:590.231333pt;}
.x8b{left:591.617733pt;}
.x46{left:597.927733pt;}
.x3{left:611.338667pt;}
.x51{left:613.320400pt;}
.x1b{left:615.694000pt;}
.x84{left:623.673067pt;}
.x98{left:625.966667pt;}
.x8c{left:632.468933pt;}
.x93{left:641.311867pt;}
.x99{left:655.832533pt;}
.x52{left:658.099067pt;}
.x8d{left:670.528933pt;}
.x56{left:693.748800pt;}
.xf{left:706.046533pt;}
.x9a{left:723.466800pt;}
.x8e{left:727.559067pt;}
}




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