
    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_032d16154102c33f735807dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight: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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight: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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight: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_a0b315dcc402b36d5f37ddf1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936035;font-style:normal;font-weight: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_eac37ed6b4f9cb20c4eeb43d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906250;font-style:normal;font-weight: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_80c2ff6f3ec564c0b681350a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897461;font-style:normal;font-weight: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_a7dd3fc37c5ffd05fcac015e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;font-style:normal;font-weight: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_b6ce2a8acf52d1955609eddf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.991211;font-style:normal;font-weight: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_df611b61e03dcfce50b3d5f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.884766;font-style:normal;font-weight: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_df0dc347e92d99de60eb60b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.979004;font-style:normal;font-weight: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_b28b4c722f85529eb1119351.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.755859;font-style:normal;font-weight: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_a102d4f9913a94e2db6ba8bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.585840;font-style:normal;font-weight: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_c55cf976a9b0c7b2a0436568.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.706543;font-style:normal;font-weight: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_c384aad7c06772bd868f80c0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911621;font-style:normal;font-weight: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_a9532b38b8a31ca290a7401b.woff2')format("woff");}.fff{font-family:fff;line-height:0.712402;font-style:normal;font-weight: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_afba87e7f27d7db850b4376b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.887971;font-style:normal;font-weight: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_c09acec53ad2710532dbee25.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.908691;font-style:normal;font-weight: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_fe0736dd40b94499a3df7216.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.909668;font-style:normal;font-weight: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_644f6467dc13826cde1e8b80.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.897461;font-style:normal;font-weight: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_1fa4a7f5ab11af5994699676.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.906250;font-style:normal;font-weight: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_30ca715ed97ce9c5570119fa.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.709961;font-style:normal;font-weight: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_f25305e3d73a047248c0926f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.911621;font-style:normal;font-weight: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_9429ea082153521ec7218651.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.909668;font-style:normal;font-weight: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_07d67b2783e4425329155a94.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.894531;font-style:normal;font-weight: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_42ccff3148a32e6aa2edccc5.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.977539;font-style:normal;font-weight: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_1a9e52524d0f58579eb28b33.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.984863;font-style:normal;font-weight: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_dd17c0af1c89e4db2738215c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.033203;font-style:normal;font-weight: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_c8db2743f690ab88f577e2e0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.726562;font-style:normal;font-weight: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_e4b092b6aa1878aa49d61561.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.696289;font-style:normal;font-weight: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_0d99aef406a9673d25dc0a71.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.833008;font-style:normal;font-weight: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_aa6bb882fb10b3e00d3a02e9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.976603;font-style:normal;font-weight: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_21f12aa88a09d5b7e795dd76.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.033203;font-style:normal;font-weight: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_9b2dfa8dd1870f8eab869aa2.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.033203;font-style:normal;font-weight: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_bb44440a17a3c6300ea42a77.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.400391;font-style:normal;font-weight: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_5177bbbdcd47f5a287444848.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.899902;font-style:normal;font-weight: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_55a7acd76d5370d97d44db39.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.911621;font-style:normal;font-weight: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_3c12f4c30255b9fc2ec7a79b.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.683105;font-style:normal;font-weight: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_0ac1de3df6f69ebcb718cc6f.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.722000;font-style:normal;font-weight: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_0ce446bb2d502a646b0d292f.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.528000;font-style:normal;font-weight: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_e0aacc82772fb0add315bfde.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_81d03d01c15fdcfaa1d02c2b.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.906738;font-style:normal;font-weight: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_0a03a654f449c88ec4b00ae1.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.909668;font-style:normal;font-weight: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_c901281cef8e1f59c1e0860c.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_790075f41f5595b77a88c824.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.706543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_edd6ad0a764041d333c9f309.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.908691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_1511802f03a077a4252ddb7c.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.053000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_106febe641ef7e2209b49616.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.909668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243230,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244117,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245773,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245902,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246972,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249447,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.491205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491205,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ma{transform:matrix(1.536667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.536667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.536667,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(2.066667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.066667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.066667,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(3.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.040000,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-48.960000px;}
.v8{vertical-align:-34.921800px;}
.v7{vertical-align:-32.400000px;}
.v3{vertical-align:-30.600000px;}
.v4{vertical-align:-18.360000px;}
.vb{vertical-align:-16.560000px;}
.v6{vertical-align:-13.679400px;}
.vd{vertical-align:-3.958200px;}
.va{vertical-align:-2.521800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440792px;}
.vc{vertical-align:2.878200px;}
.v10{vertical-align:20.881584px;}
.v5{vertical-align:28.799820px;}
.v2{vertical-align:30.600000px;}
.ve{vertical-align:40.678848px;}
.vf{vertical-align:61.922808px;}
.ls8{letter-spacing:-4.584600px;}
.ls9{letter-spacing:-4.544100px;}
.ls1c{letter-spacing:-4.355208px;}
.ls73{letter-spacing:-4.319640px;}
.ls83{letter-spacing:-3.966912px;}
.ls82{letter-spacing:-3.961800px;}
.ls1{letter-spacing:-3.960000px;}
.ls7{letter-spacing:-3.928500px;}
.ls6d{letter-spacing:-3.614184px;}
.ls81{letter-spacing:-3.609072px;}
.ls6a{letter-spacing:-3.603960px;}
.ls7d{letter-spacing:-3.598848px;}
.ls2{letter-spacing:-3.595500px;}
.ls1e{letter-spacing:-3.297996px;}
.ls11{letter-spacing:-3.246120px;}
.ls71{letter-spacing:-3.241008px;}
.ls8a{letter-spacing:-3.235896px;}
.ls3d{letter-spacing:-2.952072px;}
.ls3e{letter-spacing:-2.940696px;}
.ls20{letter-spacing:-2.931552px;}
.ls7e{letter-spacing:-2.893392px;}
.ls69{letter-spacing:-2.883168px;}
.ls6e{letter-spacing:-2.878056px;}
.ls3f{letter-spacing:-2.582352px;}
.ls39{letter-spacing:-2.576664px;}
.ls1d{letter-spacing:-2.565108px;}
.ls59{letter-spacing:-2.556108px;}
.ls8b{letter-spacing:-2.530440px;}
.ls75{letter-spacing:-2.525328px;}
.ls6b{letter-spacing:-2.520216px;}
.ls5{letter-spacing:-2.519100px;}
.ls45{letter-spacing:-2.518488px;}
.ls84{letter-spacing:-2.515104px;}
.ls1b{letter-spacing:-2.226420px;}
.ls29{letter-spacing:-2.218320px;}
.ls2b{letter-spacing:-2.212632px;}
.ls58{letter-spacing:-2.206944px;}
.ls7c{letter-spacing:-2.172600px;}
.ls67{letter-spacing:-2.167488px;}
.ls92{letter-spacing:-2.164176px;}
.lsb{letter-spacing:-2.163456px;}
.ls6f{letter-spacing:-2.162376px;}
.ls33{letter-spacing:-1.848600px;}
.ls2c{letter-spacing:-1.842912px;}
.ls1f{letter-spacing:-1.832220px;}
.ls74{letter-spacing:-1.809648px;}
.ls56{letter-spacing:-1.809000px;}
.ls18{letter-spacing:-1.804536px;}
.ls72{letter-spacing:-1.799424px;}
.lsa{letter-spacing:-1.790208px;}
.ls7b{letter-spacing:-1.743192px;}
.ls64{letter-spacing:-1.672272px;}
.ls7a{letter-spacing:-1.646064px;}
.ls79{letter-spacing:-1.610280px;}
.ls2a{letter-spacing:-1.478880px;}
.ls27{letter-spacing:-1.473192px;}
.ls16{letter-spacing:-1.451808px;}
.ls13{letter-spacing:-1.446696px;}
.ls14{letter-spacing:-1.441584px;}
.ls80{letter-spacing:-1.436472px;}
.lse{letter-spacing:-1.435500px;}
.ls1a{letter-spacing:-1.308672px;}
.ls19{letter-spacing:-1.257552px;}
.ls32{letter-spacing:-1.114848px;}
.ls2d{letter-spacing:-1.109160px;}
.ls25{letter-spacing:-1.103472px;}
.ls15{letter-spacing:-1.093968px;}
.ls57{letter-spacing:-1.090800px;}
.ls70{letter-spacing:-1.083744px;}
.ls44{letter-spacing:-1.082088px;}
.ls6c{letter-spacing:-1.078632px;}
.lsd{letter-spacing:-1.078272px;}
.lsf{letter-spacing:-1.075500px;}
.ls85{letter-spacing:-1.073520px;}
.ls30{letter-spacing:-1.001088px;}
.ls2f{letter-spacing:-0.893016px;}
.ls2e{letter-spacing:-0.841824px;}
.ls28{letter-spacing:-0.745128px;}
.ls26{letter-spacing:-0.739440px;}
.ls5f{letter-spacing:-0.733752px;}
.ls12{letter-spacing:-0.731016px;}
.ls68{letter-spacing:-0.725904px;}
.ls76{letter-spacing:-0.720792px;}
.ls6{letter-spacing:-0.719316px;}
.ls53{letter-spacing:-0.707400px;}
.ls34{letter-spacing:-0.557424px;}
.ls37{letter-spacing:-0.551736px;}
.ls36{letter-spacing:-0.540360px;}
.ls35{letter-spacing:-0.517608px;}
.ls38{letter-spacing:-0.483480px;}
.ls54{letter-spacing:-0.388800px;}
.ls23{letter-spacing:-0.375408px;}
.ls7f{letter-spacing:-0.373176px;}
.ls5a{letter-spacing:-0.370872px;}
.ls24{letter-spacing:-0.369720px;}
.ls43{letter-spacing:-0.368676px;}
.ls61{letter-spacing:-0.366444px;}
.ls89{letter-spacing:-0.362952px;}
.ls8c{letter-spacing:-0.360144px;}
.ls4{letter-spacing:-0.358020px;}
.ls8e{letter-spacing:-0.355752px;}
.ls88{letter-spacing:-0.352728px;}
.ls52{letter-spacing:-0.345600px;}
.ls5c{letter-spacing:-0.290088px;}
.ls8f{letter-spacing:-0.254736px;}
.ls90{letter-spacing:-0.219600px;}
.ls21{letter-spacing:-0.072000px;}
.ls66{letter-spacing:-0.064800px;}
.ls5d{letter-spacing:-0.057600px;}
.ls91{letter-spacing:-0.057096px;}
.ls3a{letter-spacing:-0.050400px;}
.ls17{letter-spacing:-0.015336px;}
.lsc{letter-spacing:-0.013824px;}
.ls31{letter-spacing:-0.011376px;}
.ls42{letter-spacing:-0.009576px;}
.ls5e{letter-spacing:-0.006588px;}
.ls22{letter-spacing:-0.005688px;}
.ls78{letter-spacing:-0.005112px;}
.ls41{letter-spacing:-0.004788px;}
.ls8d{letter-spacing:-0.004392px;}
.ls3{letter-spacing:-0.004212px;}
.ls5b{letter-spacing:-0.003636px;}
.ls0{letter-spacing:0.000000px;}
.ls51{letter-spacing:0.005688px;}
.ls86{letter-spacing:0.347616px;}
.ls77{letter-spacing:0.357840px;}
.ls60{letter-spacing:0.358020px;}
.ls65{letter-spacing:0.359100px;}
.ls3c{letter-spacing:0.364032px;}
.ls87{letter-spacing:0.720792px;}
.ls40{letter-spacing:1.461816px;}
.ls55{letter-spacing:2.143800px;}
.ls4d{letter-spacing:3.616920px;}
.ls47{letter-spacing:3.620592px;}
.ls4f{letter-spacing:5.056200px;}
.ls4c{letter-spacing:5.059800px;}
.ls49{letter-spacing:5.061600px;}
.ls4a{letter-spacing:5.765040px;}
.ls46{letter-spacing:6.124896px;}
.ls4e{letter-spacing:6.139800px;}
.ls4b{letter-spacing:6.496200px;}
.ls3b{letter-spacing:8.469432px;}
.ls10{letter-spacing:9.499392px;}
.ls48{letter-spacing:10.098000px;}
.ls50{letter-spacing:158.797800px;}
.ls63{letter-spacing:314.996400px;}
.ls62{letter-spacing:315.721800px;}
.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;}
}
.ws44{word-spacing:-17.935200px;}
.ws3{word-spacing:-14.895900px;}
.ws35{word-spacing:-14.328072px;}
.ws1b{word-spacing:-14.322384px;}
.ws1{word-spacing:-14.025960px;}
.ws8{word-spacing:-12.933360px;}
.ws4b{word-spacing:-12.918024px;}
.ws52{word-spacing:-12.560184px;}
.ws2e{word-spacing:-12.547728px;}
.ws4d{word-spacing:-12.212568px;}
.ws4c{word-spacing:-12.207456px;}
.ws57{word-spacing:-12.202344px;}
.ws24{word-spacing:-11.864664px;}
.ws45{word-spacing:-11.854728px;}
.ws50{word-spacing:-11.849616px;}
.ws46{word-spacing:-11.491776px;}
.ws7{word-spacing:-11.486664px;}
.ws53{word-spacing:-11.481552px;}
.ws4e{word-spacing:-11.287296px;}
.ws4f{word-spacing:-11.190168px;}
.ws47{word-spacing:-11.133936px;}
.ws9{word-spacing:-11.128824px;}
.ws2{word-spacing:-10.441548px;}
.ws6{word-spacing:-9.687240px;}
.wsa{word-spacing:-8.824140px;}
.ws2f{word-spacing:-8.719128px;}
.ws1f{word-spacing:-8.458056px;}
.ws13{word-spacing:-1.465776px;}
.ws25{word-spacing:-0.716688px;}
.ws10{word-spacing:-0.710568px;}
.ws40{word-spacing:-0.368676px;}
.ws5c{word-spacing:-0.364536px;}
.ws33{word-spacing:-0.358344px;}
.ws54{word-spacing:-0.352728px;}
.ws1a{word-spacing:-0.352656px;}
.ws17{word-spacing:-0.346968px;}
.ws18{word-spacing:-0.199080px;}
.ws12{word-spacing:-0.184032px;}
.ws32{word-spacing:-0.068256px;}
.ws27{word-spacing:-0.054000px;}
.ws51{word-spacing:-0.051120px;}
.ws4{word-spacing:-0.044280px;}
.ws2b{word-spacing:-0.036720px;}
.ws5{word-spacing:-0.027000px;}
.ws58{word-spacing:-0.008784px;}
.ws3f{word-spacing:-0.004788px;}
.ws5b{word-spacing:-0.004392px;}
.ws14{word-spacing:-0.004212px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:0.005112px;}
.wsb{word-spacing:0.008424px;}
.wse{word-spacing:0.010224px;}
.ws15{word-spacing:0.011376px;}
.ws16{word-spacing:0.017064px;}
.ws22{word-spacing:0.022752px;}
.ws1c{word-spacing:0.199080px;}
.ws5d{word-spacing:0.250344px;}
.ws26{word-spacing:0.291600px;}
.ws5a{word-spacing:0.351360px;}
.ws59{word-spacing:0.355752px;}
.ws49{word-spacing:0.357840px;}
.ws4a{word-spacing:0.362952px;}
.wsf{word-spacing:0.368064px;}
.ws34{word-spacing:0.375408px;}
.ws20{word-spacing:0.381096px;}
.ws19{word-spacing:0.386784px;}
.ws29{word-spacing:0.653400px;}
.ws56{word-spacing:0.715680px;}
.ws55{word-spacing:0.720792px;}
.ws48{word-spacing:0.750816px;}
.ws30{word-spacing:0.762192px;}
.ws2d{word-spacing:1.036800px;}
.ws23{word-spacing:1.120536px;}
.wsd{word-spacing:1.336500px;}
.wsc{word-spacing:1.401300px;}
.ws3d{word-spacing:1.484568px;}
.ws1d{word-spacing:1.854288px;}
.ws1e{word-spacing:1.859976px;}
.ws31{word-spacing:2.224008px;}
.ws21{word-spacing:2.593728px;}
.ws2a{word-spacing:7.176600px;}
.ws2c{word-spacing:8.931600px;}
.ws28{word-spacing:13.689000px;}
.ws36{word-spacing:100.437876px;}
.ws3c{word-spacing:108.357228px;}
.ws3b{word-spacing:112.316904px;}
.ws39{word-spacing:120.600144px;}
.ws3a{word-spacing:130.319784px;}
.ws38{word-spacing:138.598236px;}
.ws41{word-spacing:266.409108px;}
.ws42{word-spacing:287.294364px;}
.ws43{word-spacing:352.449468px;}
.ws37{word-spacing:364.318920px;}
.ws3e{word-spacing:384.112512px;}
._33{margin-left:-173.143656px;}
._12{margin-left:-12.774384px;}
._2a{margin-left:-10.676376px;}
._2b{margin-left:-9.589968px;}
._1e{margin-left:-8.480808px;}
._15{margin-left:-4.547160px;}
._7{margin-left:-3.204000px;}
._4{margin-left:-2.020500px;}
._8{margin-left:-1.006668px;}
._0{width:1.417500px;}
._2{width:2.515500px;}
._c{width:4.071600px;}
._13{width:6.068160px;}
._9{width:7.210944px;}
._3{width:8.626500px;}
._1{width:9.774000px;}
._11{width:11.124000px;}
._6{width:12.199500px;}
._14{width:13.819896px;}
._b{width:15.426000px;}
._f{width:16.491492px;}
._10{width:18.220932px;}
._1b{width:19.481400px;}
._17{width:20.624688px;}
._16{width:22.080816px;}
._5{width:23.089500px;}
._a{width:24.179400px;}
._1c{width:25.191540px;}
._1a{width:26.506080px;}
._6c{width:27.674244px;}
._18{width:28.718712px;}
._19{width:29.736864px;}
._23{width:31.147488px;}
._5c{width:32.340708px;}
._1d{width:33.343128px;}
._20{width:34.981200px;}
._1f{width:36.984636px;}
._d{width:42.427800px;}
._e{width:43.440300px;}
._2d{width:51.100992px;}
._2c{width:75.326256px;}
._21{width:76.901760px;}
._22{width:78.211260px;}
._7b{width:83.162520px;}
._6f{width:93.953664px;}
._38{width:109.276488px;}
._3c{width:121.500252px;}
._46{width:124.315632px;}
._3a{width:127.633680px;}
._77{width:129.243384px;}
._41{width:130.410720px;}
._7d{width:131.711688px;}
._72{width:136.679220px;}
._39{width:139.512708px;}
._37{width:141.471036px;}
._51{width:142.677576px;}
._93{width:143.864532px;}
._58{width:146.349972px;}
._86{width:148.313448px;}
._40{width:151.190676px;}
._49{width:153.345276px;}
._83{width:155.525112px;}
._4c{width:161.609364px;}
._3e{width:167.747580px;}
._45{width:169.777656px;}
._44{width:170.998632px;}
._4b{width:174.010248px;}
._57{width:179.602668px;}
._3d{width:181.273644px;}
._5b{width:183.222396px;}
._4e{width:185.190228px;}
._4f{width:186.832548px;}
._2e{width:187.948152px;}
._59{width:189.710136px;}
._56{width:192.362652px;}
._4d{width:195.115788px;}
._5a{width:197.629488px;}
._42{width:198.725940px;}
._65{width:200.914056px;}
._52{width:201.981780px;}
._3f{width:207.009180px;}
._4a{width:210.595392px;}
._55{width:213.468192px;}
._3b{width:222.474420px;}
._48{width:224.274708px;}
._54{width:227.152296px;}
._36{width:236.168100px;}
._5f{width:238.054644px;}
._66{width:243.061344px;}
._43{width:259.193592px;}
._34{width:267.472044px;}
._50{width:271.063044px;}
._47{width:280.078848px;}
._2f{width:285.853176px;}
._64{width:289.812852px;}
._61{width:291.953088px;}
._62{width:293.030388px;}
._67{width:297.643860px;}
._97{width:298.943712px;}
._92{width:326.326248px;}
._60{width:334.437012px;}
._5d{width:335.868624px;}
._68{width:340.570440px;}
._63{width:347.039028px;}
._69{width:349.921404px;}
._5e{width:352.449468px;}
._30{width:353.871504px;}
._31{width:368.656848px;}
._35{width:384.098148px;}
._53{width:385.410024px;}
._6a{width:388.436076px;}
._89{width:392.436000px;}
._32{width:396.733680px;}
._70{width:404.657964px;}
._6b{width:412.567596px;}
._8a{width:465.615720px;}
._99{width:482.365944px;}
._85{width:506.353968px;}
._8c{width:508.103208px;}
._90{width:518.467932px;}
._79{width:523.842696px;}
._84{width:538.693092px;}
._80{width:543.191652px;}
._9a{width:551.640528px;}
._88{width:558.003528px;}
._94{width:560.235888px;}
._6d{width:604.970604px;}
._78{width:618.652620px;}
._7a{width:647.922384px;}
._8e{width:656.695476px;}
._96{width:657.847728px;}
._91{width:677.901348px;}
._25{width:689.232168px;}
._27{width:691.099812px;}
._98{width:694.362312px;}
._73{width:700.375824px;}
._7c{width:716.513112px;}
._76{width:718.376652px;}
._7f{width:724.666140px;}
._6e{width:726.905700px;}
._8f{width:739.286568px;}
._8d{width:766.500912px;}
._7e{width:769.406904px;}
._82{width:783.071316px;}
._81{width:817.064892px;}
._95{width:831.713832px;}
._87{width:837.429264px;}
._9b{width:866.245896px;}
._24{width:888.824916px;}
._74{width:904.322628px;}
._75{width:964.378548px;}
._71{width:1018.045116px;}
._9c{width:1022.963832px;}
._26{width:1036.645236px;}
._8b{width:1046.741220px;}
._28{width:1744.665552px;}
._29{width:1844.739792px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:4.680000px;}
.fsb{font-size:27.000000px;}
.fs15{font-size:30.600000px;}
.fs12{font-size:36.360000px;}
.fs10{font-size:36.720000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:42.120000px;}
.fs16{font-size:43.920000px;}
.fsa{font-size:44.280000px;}
.fs5{font-size:45.000000px;}
.fsc{font-size:47.880000px;}
.fsd{font-size:51.120000px;}
.fsf{font-size:54.000000px;}
.fse{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs13{font-size:63.720000px;}
.fs14{font-size:65.880000px;}
.fs9{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:81.000000px;}
.fs2{font-size:102.000000px;}
.fs11{font-size:135.000000px;}
.y0{bottom:0.000000px;}
.y56{bottom:2.519850px;}
.y308{bottom:3.239700px;}
.y3d{bottom:3.239850px;}
.y36{bottom:4.679850px;}
.y31{bottom:5.399850px;}
.y7{bottom:35.925007px;}
.y57{bottom:66.167850px;}
.y6{bottom:66.525004px;}
.y59{bottom:73.817448px;}
.y55{bottom:74.178000px;}
.y54{bottom:76.697355px;}
.y53{bottom:87.137850px;}
.y5{bottom:97.125005px;}
.y28{bottom:116.387850px;}
.y2a2{bottom:118.455096px;}
.y1ae{bottom:118.815294px;}
.y232{bottom:119.532828px;}
.y12f{bottom:120.527850px;}
.y19f{bottom:120.706554px;}
.y127{bottom:124.028940px;}
.yaf{bottom:124.029084px;}
.y191{bottom:124.032918px;}
.ydb{bottom:124.033206px;}
.y83{bottom:124.303530px;}
.y102{bottom:124.304610px;}
.y26a{bottom:127.450734px;}
.y165{bottom:128.267634px;}
.y27{bottom:131.597850px;}
.y2a1{bottom:133.125258px;}
.y231{bottom:134.202990px;}
.y306{bottom:134.294070px;}
.y1e8{bottom:135.104934px;}
.y1ff{bottom:135.377418px;}
.y1ad{bottom:138.885402px;}
.y25{bottom:139.264499px;}
.y12e{bottom:139.786590px;}
.y19e{bottom:140.776662px;}
.y269{bottom:142.120896px;}
.y126{bottom:144.099048px;}
.yae{bottom:144.099192px;}
.y190{bottom:144.103026px;}
.yda{bottom:144.103314px;}
.y82{bottom:144.373638px;}
.y101{bottom:144.374718px;}
.y2a0{bottom:147.795420px;}
.y164{bottom:148.337742px;}
.y230{bottom:148.873152px;}
.y26{bottom:149.687850px;}
.y305{bottom:153.734160px;}
.y1e7{bottom:155.175042px;}
.y1fe{bottom:155.447526px;}
.y268{bottom:156.791058px;}
.y1ac{bottom:158.955510px;}
.y12d{bottom:160.306761px;}
.y19d{bottom:160.846770px;}
.y22f{bottom:163.543314px;}
.y125{bottom:164.169156px;}
.yad{bottom:164.169300px;}
.y18f{bottom:164.173134px;}
.yd9{bottom:164.173422px;}
.y81{bottom:164.443746px;}
.y100{bottom:164.444826px;}
.y29f{bottom:166.965420px;}
.y163{bottom:168.407850px;}
.y304{bottom:173.174250px;}
.y1e6{bottom:175.245150px;}
.y1fd{bottom:175.517634px;}
.y267{bottom:175.961058px;}
.y1ab{bottom:179.025618px;}
.y12c{bottom:180.737157px;}
.y19c{bottom:180.916878px;}
.y29e{bottom:181.635582px;}
.y22e{bottom:182.713314px;}
.y124{bottom:184.239264px;}
.yac{bottom:184.239408px;}
.y18e{bottom:184.243242px;}
.yd8{bottom:184.243530px;}
.y80{bottom:184.513854px;}
.yff{bottom:184.514934px;}
.y266{bottom:190.631220px;}
.y303{bottom:192.614340px;}
.y1e5{bottom:195.315258px;}
.y1fc{bottom:195.587742px;}
.y29d{bottom:196.305744px;}
.y1c{bottom:196.933500px;}
.y22d{bottom:197.383476px;}
.y1aa{bottom:199.095726px;}
.y19b{bottom:200.986986px;}
.y12b{bottom:201.257328px;}
.y123{bottom:204.309372px;}
.yab{bottom:204.309516px;}
.y18d{bottom:204.313350px;}
.yd7{bottom:204.313638px;}
.y7f{bottom:204.583962px;}
.yfe{bottom:204.585042px;}
.y162{bottom:204.767850px;}
.y265{bottom:205.301382px;}
.y24{bottom:209.518500px;}
.y1b{bottom:209.533503px;}
.y29c{bottom:210.975906px;}
.y22c{bottom:212.053638px;}
.y302{bottom:212.054430px;}
.y1e4{bottom:215.385366px;}
.y1fb{bottom:215.657850px;}
.y1a9{bottom:219.165834px;}
.y264{bottom:219.971544px;}
.y19a{bottom:221.057094px;}
.y12a{bottom:221.777499px;}
.y23{bottom:222.118502px;}
.y1a{bottom:222.133505px;}
.y122{bottom:224.379480px;}
.yaa{bottom:224.379624px;}
.y18c{bottom:224.383458px;}
.yd6{bottom:224.383746px;}
.y7e{bottom:224.654070px;}
.yfd{bottom:224.655150px;}
.y22b{bottom:226.723800px;}
.y29b{bottom:230.145906px;}
.y301{bottom:231.494520px;}
.y22{bottom:234.718504px;}
.y19{bottom:234.733496px;}
.y1e3{bottom:235.455474px;}
.y263{bottom:239.141544px;}
.y1a8{bottom:239.235942px;}
.y199{bottom:241.127202px;}
.y22a{bottom:241.393962px;}
.y129{bottom:242.207895px;}
.y161{bottom:243.377850px;}
.y121{bottom:244.449588px;}
.ya9{bottom:244.449732px;}
.y18b{bottom:244.453566px;}
.yd5{bottom:244.453854px;}
.y7d{bottom:244.724178px;}
.yfc{bottom:244.725258px;}
.y29a{bottom:244.816068px;}
.y128{bottom:249.407850px;}
.y300{bottom:250.934610px;}
.y262{bottom:253.811706px;}
.y1e2{bottom:255.525582px;}
.y1a7{bottom:259.306050px;}
.y299{bottom:259.486230px;}
.y21{bottom:259.918497px;}
.y18{bottom:259.933500px;}
.y229{bottom:260.563962px;}
.y198{bottom:261.197310px;}
.y120{bottom:264.519696px;}
.ya8{bottom:264.519840px;}
.y18a{bottom:264.523674px;}
.yd4{bottom:264.523962px;}
.y7c{bottom:264.794286px;}
.yfb{bottom:264.795366px;}
.y2ff{bottom:270.374700px;}
.y1fa{bottom:272.447850px;}
.y20{bottom:272.518500px;}
.y17{bottom:272.533503px;}
.y261{bottom:272.981706px;}
.y298{bottom:274.156392px;}
.y228{bottom:275.234124px;}
.y1e1{bottom:275.595690px;}
.y1a6{bottom:279.376158px;}
.y197{bottom:281.267418px;}
.y130{bottom:282.527850px;}
.y11f{bottom:284.589804px;}
.ya7{bottom:284.589948px;}
.y189{bottom:284.593782px;}
.yd3{bottom:284.594070px;}
.y7b{bottom:284.864394px;}
.yfa{bottom:284.865474px;}
.y1f{bottom:285.118502px;}
.y16{bottom:285.133499px;}
.y260{bottom:287.651868px;}
.y2fe{bottom:289.814790px;}
.y227{bottom:289.904286px;}
.y297{bottom:293.326392px;}
.y1e0{bottom:295.665798px;}
.y1a5{bottom:299.446266px;}
.y52{bottom:300.167850px;}
.y196{bottom:301.337526px;}
.y25f{bottom:302.322030px;}
.y11e{bottom:304.659912px;}
.ya6{bottom:304.660056px;}
.y188{bottom:304.663890px;}
.yd2{bottom:304.664178px;}
.y7a{bottom:304.934502px;}
.yf9{bottom:304.935582px;}
.y296{bottom:307.996554px;}
.y226{bottom:309.074286px;}
.y2fd{bottom:309.254880px;}
.y1e{bottom:310.318501px;}
.y15{bottom:310.333501px;}
.y1df{bottom:315.735906px;}
.y25e{bottom:316.992192px;}
.y1a4{bottom:319.516374px;}
.y195{bottom:321.407634px;}
.y295{bottom:322.666716px;}
.y1d{bottom:322.918500px;}
.y14{bottom:322.933500px;}
.y225{bottom:323.744448px;}
.y11d{bottom:324.730020px;}
.ya5{bottom:324.730164px;}
.y187{bottom:324.733998px;}
.yd1{bottom:324.734286px;}
.y79{bottom:325.004610px;}
.yf8{bottom:325.005690px;}
.y160{bottom:326.805582px;}
.y2fc{bottom:328.694970px;}
.y1de{bottom:335.806014px;}
.y25d{bottom:336.162192px;}
.y294{bottom:337.336878px;}
.y224{bottom:338.414610px;}
.y1a3{bottom:339.586482px;}
.y194{bottom:341.477742px;}
.y11c{bottom:344.800128px;}
.ya4{bottom:344.800272px;}
.y186{bottom:344.804106px;}
.yd0{bottom:344.804394px;}
.y78{bottom:345.074718px;}
.yf7{bottom:345.075798px;}
.y51{bottom:346.338390px;}
.y15f{bottom:346.875690px;}
.y13{bottom:348.133500px;}
.y2fb{bottom:348.135060px;}
.y25c{bottom:350.832354px;}
.y223{bottom:353.084772px;}
.y1f9{bottom:355.873278px;}
.y1dd{bottom:355.876122px;}
.y293{bottom:356.506878px;}
.y1a2{bottom:359.656590px;}
.y193{bottom:361.547850px;}
.y50{bottom:361.547868px;}
.y11b{bottom:364.870236px;}
.ya3{bottom:364.870380px;}
.y185{bottom:364.874214px;}
.ycf{bottom:364.874502px;}
.y77{bottom:365.144826px;}
.yf6{bottom:365.145906px;}
.y25b{bottom:365.502516px;}
.y15e{bottom:366.945798px;}
.y2fa{bottom:367.575150px;}
.y292{bottom:371.177040px;}
.y222{bottom:372.254772px;}
.y1f8{bottom:375.943386px;}
.y1dc{bottom:375.946230px;}
.y4f{bottom:376.848084px;}
.y1a1{bottom:379.726698px;}
.y25a{bottom:380.172678px;}
.y11a{bottom:384.940344px;}
.ya2{bottom:384.940488px;}
.y184{bottom:384.944322px;}
.yce{bottom:384.944610px;}
.y76{bottom:385.214934px;}
.yf5{bottom:385.216014px;}
.y12{bottom:386.785499px;}
.y221{bottom:386.924934px;}
.y2f9{bottom:387.015240px;}
.y15d{bottom:387.015906px;}
.y291{bottom:390.347040px;}
.y4e{bottom:392.148300px;}
.y1f7{bottom:396.013494px;}
.y1db{bottom:396.016338px;}
.y192{bottom:397.907850px;}
.y259{bottom:399.342678px;}
.y1a0{bottom:399.796806px;}
.y220{bottom:401.595096px;}
.y119{bottom:405.010452px;}
.ya1{bottom:405.010596px;}
.y183{bottom:405.014430px;}
.ycd{bottom:405.014718px;}
.y290{bottom:405.017202px;}
.y75{bottom:405.285042px;}
.yf4{bottom:405.286122px;}
.y2f8{bottom:406.455330px;}
.y15c{bottom:407.086014px;}
.y4d{bottom:407.357778px;}
.y11{bottom:408.044999px;}
.y258{bottom:414.012840px;}
.y1f6{bottom:416.083602px;}
.y1da{bottom:416.086446px;}
.y21f{bottom:416.265258px;}
.y28f{bottom:419.687364px;}
.y4c{bottom:422.657994px;}
.y118{bottom:425.080560px;}
.ya0{bottom:425.080704px;}
.y182{bottom:425.084538px;}
.ycc{bottom:425.084826px;}
.y74{bottom:425.355150px;}
.yf3{bottom:425.356230px;}
.y2f7{bottom:425.895420px;}
.y15b{bottom:427.156122px;}
.y257{bottom:428.683002px;}
.y28e{bottom:434.357526px;}
.y21e{bottom:435.435258px;}
.y1f5{bottom:436.153710px;}
.y1d9{bottom:436.156554px;}
.y4b{bottom:437.958210px;}
.y256{bottom:443.353164px;}
.y117{bottom:445.150668px;}
.y9f{bottom:445.150812px;}
.y181{bottom:445.154646px;}
.ycb{bottom:445.154934px;}
.y2f6{bottom:445.335510px;}
.y73{bottom:445.425258px;}
.yf2{bottom:445.426338px;}
.y15a{bottom:447.226230px;}
.y2db{bottom:449.018538px;}
.y21d{bottom:450.105420px;}
.y1cb{bottom:451.726860px;}
.y4a{bottom:453.167688px;}
.y28d{bottom:453.527526px;}
.y1f4{bottom:456.223818px;}
.y1d8{bottom:456.226662px;}
.y255{bottom:458.023326px;}
.y1ca{bottom:462.256860px;}
.y2da{bottom:463.688700px;}
.y21c{bottom:464.775582px;}
.y2f5{bottom:464.775600px;}
.y116{bottom:465.220776px;}
.y9e{bottom:465.220920px;}
.y180{bottom:465.224754px;}
.yca{bottom:465.225042px;}
.y72{bottom:465.495366px;}
.yf1{bottom:465.496446px;}
.y10{bottom:466.864502px;}
.y159{bottom:467.296338px;}
.y28c{bottom:468.197688px;}
.y49{bottom:468.467904px;}
.y2b8{bottom:472.693488px;}
.y1c9{bottom:472.786860px;}
.y1f3{bottom:476.293926px;}
.y1d7{bottom:476.296770px;}
.y254{bottom:477.193326px;}
.y2d9{bottom:478.358862px;}
.y21b{bottom:479.445744px;}
.y28b{bottom:482.867850px;}
.y1c8{bottom:483.227355px;}
.y48{bottom:483.768120px;}
.y2f4{bottom:484.215690px;}
.yf{bottom:484.864502px;}
.y115{bottom:485.290884px;}
.y9d{bottom:485.291028px;}
.y17f{bottom:485.294862px;}
.yc9{bottom:485.295150px;}
.y71{bottom:485.565474px;}
.yf0{bottom:485.566554px;}
.y2b7{bottom:487.363650px;}
.y158{bottom:487.366446px;}
.y253{bottom:491.863488px;}
.y2d8{bottom:493.029024px;}
.y1c7{bottom:493.757355px;}
.y21a{bottom:494.115906px;}
.y1f2{bottom:496.364034px;}
.y1d6{bottom:496.366878px;}
.y28a{bottom:497.526306px;}
.y47{bottom:498.977598px;}
.y2b6{bottom:502.033812px;}
.ye{bottom:502.864502px;}
.y2f3{bottom:503.655780px;}
.y1c6{bottom:504.287355px;}
.y114{bottom:505.360992px;}
.y9c{bottom:505.361136px;}
.y17e{bottom:505.364970px;}
.yc8{bottom:505.365258px;}
.y70{bottom:505.635582px;}
.yef{bottom:505.636662px;}
.y252{bottom:506.533650px;}
.y157{bottom:507.436554px;}
.y2d7{bottom:507.699186px;}
.y219{bottom:513.285906px;}
.y46{bottom:514.277814px;}
.y1c5{bottom:514.727850px;}
.y1f1{bottom:516.434142px;}
.y1d5{bottom:516.436986px;}
.y289{bottom:516.696306px;}
.yd{bottom:520.864502px;}
.y251{bottom:521.203812px;}
.y2f2{bottom:523.095870px;}
.y113{bottom:525.431100px;}
.y9b{bottom:525.431244px;}
.y17d{bottom:525.435078px;}
.yc7{bottom:525.435366px;}
.y6f{bottom:525.705690px;}
.yee{bottom:525.706770px;}
.y2d6{bottom:526.869186px;}
.y156{bottom:527.506662px;}
.y218{bottom:527.956068px;}
.y45{bottom:529.578030px;}
.y288{bottom:531.366468px;}
.y1c4{bottom:533.982684px;}
.y250{bottom:535.873974px;}
.y1f0{bottom:536.504250px;}
.y1d4{bottom:536.507094px;}
.yc{bottom:538.864499px;}
.y2d5{bottom:541.539348px;}
.y2f1{bottom:542.535960px;}
.y217{bottom:542.626230px;}
.y44{bottom:544.787508px;}
.y112{bottom:545.501208px;}
.y9a{bottom:545.501352px;}
.y17c{bottom:545.505186px;}
.yc6{bottom:545.505474px;}
.y6e{bottom:545.775798px;}
.yed{bottom:545.776878px;}
.y287{bottom:546.036630px;}
.y155{bottom:547.576770px;}
.y2b5{bottom:550.544136px;}
.y1c3{bottom:554.413080px;}
.y24f{bottom:555.043974px;}
.y2d4{bottom:556.209510px;}
.y1ef{bottom:556.574358px;}
.y1d3{bottom:556.577202px;}
.yb{bottom:556.864499px;}
.y216{bottom:557.296392px;}
.y43{bottom:560.087724px;}
.y286{bottom:560.706792px;}
.y2f0{bottom:561.976050px;}
.y2b4{bottom:565.214298px;}
.y111{bottom:565.571316px;}
.y99{bottom:565.571460px;}
.y17b{bottom:565.575294px;}
.yc5{bottom:565.575582px;}
.y6d{bottom:565.845906px;}
.yec{bottom:565.846986px;}
.y154{bottom:567.646878px;}
.y24e{bottom:569.714136px;}
.y2d3{bottom:570.879672px;}
.y215{bottom:571.966554px;}
.y1c2{bottom:574.933251px;}
.y285{bottom:575.376954px;}
.y42{bottom:575.387940px;}
.y1ee{bottom:576.644466px;}
.y1d2{bottom:576.647310px;}
.y2b3{bottom:579.884460px;}
.y2ef{bottom:581.416140px;}
.y24d{bottom:584.384298px;}
.y110{bottom:585.641424px;}
.y98{bottom:585.641568px;}
.y17a{bottom:585.645402px;}
.yc4{bottom:585.645690px;}
.y6c{bottom:585.916014px;}
.yeb{bottom:585.917094px;}
.y153{bottom:587.716986px;}
.y2d2{bottom:590.049672px;}
.y41{bottom:590.597418px;}
.y214{bottom:591.136554px;}
.y284{bottom:594.546954px;}
.y2b2{bottom:594.554622px;}
.y1c1{bottom:595.453422px;}
.y1ed{bottom:596.714574px;}
.y1d1{bottom:596.717418px;}
.y24c{bottom:599.054460px;}
.y2ee{bottom:600.856230px;}
.y2d1{bottom:604.719834px;}
.y10f{bottom:605.711532px;}
.y97{bottom:605.711676px;}
.y179{bottom:605.715510px;}
.yc3{bottom:605.715798px;}
.y213{bottom:605.806716px;}
.y40{bottom:605.897634px;}
.y6b{bottom:605.986122px;}
.yea{bottom:605.987202px;}
.y152{bottom:607.787094px;}
.y283{bottom:609.217116px;}
.y2b1{bottom:609.224784px;}
.y1c0{bottom:615.883818px;}
.y1ec{bottom:616.784682px;}
.y1d0{bottom:616.787526px;}
.y24b{bottom:618.224460px;}
.y2d0{bottom:619.389996px;}
.y2ed{bottom:620.296320px;}
.y212{bottom:620.476878px;}
.y3f{bottom:621.197850px;}
.y282{bottom:623.887278px;}
.y10e{bottom:625.781640px;}
.y96{bottom:625.781784px;}
.y178{bottom:625.785618px;}
.yc2{bottom:625.785906px;}
.y6a{bottom:626.056230px;}
.ye9{bottom:626.057310px;}
.y151{bottom:627.857202px;}
.y2b0{bottom:628.394784px;}
.y24a{bottom:632.894622px;}
.y211{bottom:635.147040px;}
.y1bf{bottom:636.403989px;}
.y1eb{bottom:636.854790px;}
.y1cf{bottom:636.857634px;}
.y2cf{bottom:638.559996px;}
.y2ec{bottom:639.736410px;}
.y281{bottom:643.057278px;}
.y2af{bottom:643.064946px;}
.y3c{bottom:645.408000px;}
.ya{bottom:645.510000px;}
.y10d{bottom:645.851748px;}
.y95{bottom:645.851892px;}
.y177{bottom:645.855726px;}
.yc1{bottom:645.856014px;}
.y69{bottom:646.126338px;}
.ye8{bottom:646.127418px;}
.y249{bottom:647.564784px;}
.y150{bottom:647.927310px;}
.y3e{bottom:648.647850px;}
.y210{bottom:649.817202px;}
.y2ce{bottom:653.230158px;}
.y1be{bottom:656.924160px;}
.y1ea{bottom:656.924898px;}
.y1ce{bottom:656.927742px;}
.y280{bottom:657.727440px;}
.y2ae{bottom:657.735108px;}
.y2eb{bottom:659.176500px;}
.y248{bottom:662.234946px;}
.y20f{bottom:664.487364px;}
.y10c{bottom:665.921856px;}
.y94{bottom:665.922000px;}
.y176{bottom:665.925834px;}
.yc0{bottom:665.926122px;}
.y68{bottom:666.196446px;}
.ye7{bottom:666.197526px;}
.y9{bottom:666.771000px;}
.y2cd{bottom:667.900320px;}
.y14f{bottom:667.997418px;}
.y27f{bottom:672.397602px;}
.y2ad{bottom:672.405270px;}
.y247{bottom:676.905108px;}
.y1e9{bottom:676.995006px;}
.y1cd{bottom:676.997850px;}
.y1bd{bottom:677.354556px;}
.y2ea{bottom:678.616590px;}
.y20e{bottom:683.657364px;}
.y10b{bottom:685.991964px;}
.y93{bottom:685.992108px;}
.y175{bottom:685.995942px;}
.ybf{bottom:685.996230px;}
.y67{bottom:686.266554px;}
.ye6{bottom:686.267634px;}
.y27e{bottom:687.067764px;}
.y2cc{bottom:687.070320px;}
.y2ac{bottom:687.075432px;}
.y14e{bottom:688.067526px;}
.y246{bottom:696.075108px;}
.y1bc{bottom:697.874727px;}
.y2e9{bottom:698.056680px;}
.y20d{bottom:698.327526px;}
.y2cb{bottom:701.740482px;}
.y3b{bottom:703.457850px;}
.y10a{bottom:706.062072px;}
.y92{bottom:706.062216px;}
.y174{bottom:706.066050px;}
.ybe{bottom:706.066338px;}
.y27d{bottom:706.237764px;}
.y2ab{bottom:706.245432px;}
.y66{bottom:706.336662px;}
.ye5{bottom:706.337742px;}
.y14d{bottom:708.137634px;}
.y245{bottom:710.745270px;}
.y20c{bottom:712.997688px;}
.y3a{bottom:715.427850px;}
.y2ca{bottom:716.410644px;}
.y2e8{bottom:717.496770px;}
.y1bb{bottom:718.394898px;}
.y27c{bottom:720.907926px;}
.y2aa{bottom:720.915594px;}
.y20a{bottom:724.697850px;}
.y244{bottom:725.415432px;}
.y109{bottom:726.132180px;}
.y91{bottom:726.132324px;}
.y173{bottom:726.136158px;}
.ybd{bottom:726.136446px;}
.y8{bottom:726.298500px;}
.y65{bottom:726.406770px;}
.ye4{bottom:726.407850px;}
.y39{bottom:727.397850px;}
.y20b{bottom:727.667850px;}
.y14c{bottom:728.207742px;}
.y2c9{bottom:731.080806px;}
.y27b{bottom:735.578088px;}
.y2a9{bottom:735.585756px;}
.y2e7{bottom:736.936860px;}
.y1ba{bottom:738.825294px;}
.y209{bottom:739.817850px;}
.y243{bottom:740.085594px;}
.y2c8{bottom:745.750968px;}
.y208{bottom:745.757355px;}
.y108{bottom:746.202288px;}
.y90{bottom:746.202432px;}
.y172{bottom:746.206266px;}
.ybc{bottom:746.206554px;}
.y64{bottom:746.476878px;}
.y14b{bottom:748.277850px;}
.y27a{bottom:750.248250px;}
.y2a8{bottom:750.255918px;}
.y4{bottom:752.599495px;}
.y38{bottom:752.776986px;}
.y242{bottom:754.755756px;}
.y2e6{bottom:756.376950px;}
.y1b9{bottom:759.345465px;}
.y207{bottom:760.877850px;}
.y2c7{bottom:764.920968px;}
.y107{bottom:766.272396px;}
.y8f{bottom:766.272540px;}
.y171{bottom:766.276374px;}
.ybb{bottom:766.276662px;}
.y63{bottom:766.546986px;}
.y206{bottom:766.727850px;}
.y149{bottom:768.347742px;}
.y14a{bottom:768.347850px;}
.y279{bottom:769.418250px;}
.y241{bottom:769.425918px;}
.y35{bottom:775.638000px;}
.y2e5{bottom:775.817040px;}
.y2c6{bottom:779.591130px;}
.y1b8{bottom:779.865636px;}
.y37{bottom:780.317850px;}
.ye3{bottom:783.197850px;}
.y278{bottom:784.088412px;}
.y240{bottom:784.096080px;}
.y205{bottom:785.897850px;}
.y106{bottom:786.342504px;}
.y8e{bottom:786.342648px;}
.y170{bottom:786.346482px;}
.yba{bottom:786.346770px;}
.y62{bottom:786.617094px;}
.y148{bottom:787.967850px;}
.y146{bottom:788.417634px;}
.y147{bottom:788.417850px;}
.y2c5{bottom:794.261292px;}
.y2e4{bottom:795.257130px;}
.y277{bottom:798.758574px;}
.y23f{bottom:798.766242px;}
.y1b7{bottom:800.296032px;}
.y105{bottom:806.412612px;}
.y8d{bottom:806.412756px;}
.y16f{bottom:806.416590px;}
.yb9{bottom:806.416878px;}
.y204{bottom:806.417679px;}
.y61{bottom:806.687202px;}
.y145{bottom:808.487742px;}
.y2c4{bottom:808.931454px;}
.y23e{bottom:813.436404px;}
.y2e3{bottom:814.697220px;}
.y276{bottom:817.928574px;}
.y34{bottom:819.017850px;}
.y1b6{bottom:820.816203px;}
.y104{bottom:826.482720px;}
.y8c{bottom:826.482864px;}
.y16e{bottom:826.486698px;}
.yb8{bottom:826.486986px;}
.y60{bottom:826.757310px;}
.y203{bottom:826.937454px;}
.y143{bottom:826.937850px;}
.y2c3{bottom:828.101454px;}
.y142{bottom:828.557742px;}
.y144{bottom:828.557850px;}
.y275{bottom:832.598736px;}
.y23d{bottom:832.606404px;}
.y2e2{bottom:834.137310px;}
.y33{bottom:834.678000px;}
.y202{bottom:837.197148px;}
.y32{bottom:840.077850px;}
.y1b5{bottom:841.336374px;}
.y2c2{bottom:842.771616px;}
.y103{bottom:846.552828px;}
.y8b{bottom:846.552972px;}
.y16d{bottom:846.556806px;}
.yb7{bottom:846.557094px;}
.y5f{bottom:846.827418px;}
.y140{bottom:847.007850px;}
.y274{bottom:847.268898px;}
.y23c{bottom:847.276566px;}
.y13f{bottom:848.627742px;}
.y141{bottom:848.627850px;}
.y2e1{bottom:853.577400px;}
.y30{bottom:855.648000px;}
.y2f{bottom:861.047850px;}
.y1b4{bottom:861.766770px;}
.y273{bottom:861.939060px;}
.y2c1{bottom:861.941616px;}
.y23b{bottom:861.946728px;}
.ye2{bottom:866.622936px;}
.y8a{bottom:866.623080px;}
.y16c{bottom:866.626914px;}
.yb6{bottom:866.627202px;}
.y5e{bottom:866.897526px;}
.y13e{bottom:867.077850px;}
.y201{bottom:867.887031px;}
.y13c{bottom:868.697592px;}
.y13d{bottom:868.697850px;}
.y2e0{bottom:873.017490px;}
.y272{bottom:876.609222px;}
.y2c0{bottom:876.611778px;}
.y2a7{bottom:876.616890px;}
.y3{bottom:879.369000px;}
.y23a{bottom:881.116728px;}
.y1b3{bottom:882.286941px;}
.ye1{bottom:886.693044px;}
.y89{bottom:886.693188px;}
.y16b{bottom:886.697022px;}
.yb5{bottom:886.697310px;}
.y5d{bottom:886.967634px;}
.y200{bottom:888.407202px;}
.y13b{bottom:888.767700px;}
.y2bf{bottom:891.281940px;}
.y2a6{bottom:891.287052px;}
.y2df{bottom:892.457580px;}
.y271{bottom:895.779222px;}
.y239{bottom:895.786890px;}
.y1b2{bottom:902.807112px;}
.ye0{bottom:906.763152px;}
.y88{bottom:906.763296px;}
.y16a{bottom:906.767130px;}
.yb4{bottom:906.767418px;}
.y5c{bottom:907.037742px;}
.y270{bottom:910.449384px;}
.y2be{bottom:910.451940px;}
.y238{bottom:910.457052px;}
.y2de{bottom:911.897670px;}
.y1b1{bottom:923.237508px;}
.y26f{bottom:925.119546px;}
.y2bd{bottom:925.122102px;}
.y237{bottom:925.127214px;}
.y2e{bottom:926.567652px;}
.ydf{bottom:926.833260px;}
.y87{bottom:926.833404px;}
.y169{bottom:926.837238px;}
.yb3{bottom:926.837526px;}
.y5b{bottom:927.107850px;}
.y139{bottom:931.067850px;}
.y2dd{bottom:931.337760px;}
.y137{bottom:933.047850px;}
.y138{bottom:935.747700px;}
.y2d{bottom:939.167850px;}
.y26e{bottom:939.789708px;}
.y2bc{bottom:939.792264px;}
.y2a5{bottom:939.797376px;}
.y136{bottom:940.517700px;}
.y1b0{bottom:943.757679px;}
.y236{bottom:944.297214px;}
.y2{bottom:945.126001px;}
.yde{bottom:946.903368px;}
.y86{bottom:946.903512px;}
.y168{bottom:946.907346px;}
.yb2{bottom:946.907634px;}
.y13a{bottom:948.617850px;}
.y2dc{bottom:950.777850px;}
.y26d{bottom:954.459870px;}
.y2a4{bottom:954.467538px;}
.y2bb{bottom:958.962264px;}
.y235{bottom:958.967376px;}
.y2c{bottom:963.287850px;}
.y1af{bottom:964.277850px;}
.y1{bottom:966.726000px;}
.ydd{bottom:966.973476px;}
.y85{bottom:966.973620px;}
.y167{bottom:966.977454px;}
.yb1{bottom:966.977742px;}
.y2a3{bottom:969.137700px;}
.y132{bottom:970.127700px;}
.y134{bottom:972.197700px;}
.y26c{bottom:973.629870px;}
.y2ba{bottom:973.632426px;}
.y234{bottom:973.637538px;}
.y131{bottom:974.897850px;}
.y309{bottom:975.797790px;}
.y135{bottom:979.577850px;}
.y5a{bottom:983.897850px;}
.y307{bottom:986.958000px;}
.ydc{bottom:987.043584px;}
.y84{bottom:987.043728px;}
.y166{bottom:987.047562px;}
.yb0{bottom:987.047850px;}
.y133{bottom:987.677850px;}
.y26b{bottom:988.300032px;}
.y2b9{bottom:988.302588px;}
.y233{bottom:988.307700px;}
.y1cc{bottom:990.197700px;}
.y2b{bottom:1000.637304px;}
.y2a{bottom:1013.237502px;}
.y29{bottom:1025.837700px;}
.y58{bottom:1032.767700px;}
.h17{height:11.880000px;}
.h2b{height:12.240000px;}
.h13{height:14.670000px;}
.h12{height:18.720703px;}
.he{height:21.150000px;}
.h22{height:24.482637px;}
.hd{height:24.660000px;}
.ha{height:29.163164px;}
.h24{height:29.293200px;}
.h2a{height:30.602461px;}
.h9{height:31.311035px;}
.h7{height:32.130000px;}
.h1b{height:32.753848px;}
.h14{height:33.244805px;}
.h16{height:33.478594px;}
.h1d{height:33.486328px;}
.hb{height:33.852305px;}
.h1c{height:35.278770px;}
.h15{height:35.644219px;}
.h20{height:37.441406px;}
.h1e{height:38.865234px;}
.h19{height:39.604922px;}
.h21{height:40.319606px;}
.h23{height:41.067360px;}
.h28{height:42.128264px;}
.h25{height:42.469629px;}
.h29{height:42.487364px;}
.h26{height:45.710684px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h18{height:50.027344px;}
.hf{height:50.760000px;}
.h2{height:55.080000px;}
.hc{height:59.761230px;}
.h1a{height:62.278414px;}
.h11{height:62.999413px;}
.h10{height:63.355957px;}
.h5{height:78.030000px;}
.h27{height:83.169488px;}
.h1f{height:106.427557px;}
.h4{height:119.055004px;}
.h8{height:1119.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:12.420000px;}
.w5{width:17.550000px;}
.w8{width:41.760000px;}
.w6{width:56.880000px;}
.w9{width:57.780000px;}
.w4{width:78.660000px;}
.w2{width:637.794021px;}
.w3{width:799.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:5.580000px;}
.x15{left:39.870000px;}
.xc{left:68.670000px;}
.x5{left:89.280000px;}
.x1b{left:93.419946px;}
.x10{left:94.770000px;}
.x11{left:96.840000px;}
.x6{left:99.449941px;}
.x1{left:102.045000px;}
.x13{left:103.950000px;}
.x2{left:106.297500px;}
.x1d{left:107.640000px;}
.x3a{left:113.040000px;}
.x1c{left:114.840000px;}
.x3b{left:124.649658px;}
.x12{left:132.300000px;}
.x2f{left:138.870000px;}
.x30{left:165.330000px;}
.x28{left:172.350000px;}
.x31{left:173.610000px;}
.x7{left:183.240000px;}
.x1e{left:189.270000px;}
.x37{left:191.520000px;}
.x3c{left:194.759793px;}
.x1f{left:196.200000px;}
.x20{left:198.270000px;}
.x4{left:203.484001px;}
.x29{left:204.840000px;}
.x2a{left:206.820000px;}
.x2b{left:212.040000px;}
.x21{left:213.570000px;}
.x2e{left:215.280000px;}
.x39{left:218.610000px;}
.x3d{left:221.850297px;}
.x38{left:228.690000px;}
.x34{left:237.780000px;}
.x22{left:239.040000px;}
.x23{left:244.620000px;}
.x2c{left:247.590000px;}
.x8{left:252.180000px;}
.x2d{left:253.260000px;}
.x35{left:262.710000px;}
.x24{left:270.180000px;}
.x36{left:272.340000px;}
.x19{left:276.300000px;}
.x26{left:279.180000px;}
.x32{left:287.370000px;}
.x33{left:296.550000px;}
.x25{left:299.520000px;}
.xa{left:305.099865px;}
.x27{left:360.540000px;}
.x9{left:401.760000px;}
.x17{left:416.609834px;}
.x18{left:431.640002px;}
.x3{left:454.959000px;}
.x14{left:536.220000px;}
.x1a{left:603.449676px;}
.xb{left:631.080000px;}
.xd{left:692.190000px;}
.x16{left:699.480396px;}
.xf{left:709.650000px;}
@media print{
.v9{vertical-align:-43.520000pt;}
.v8{vertical-align:-31.041600pt;}
.v7{vertical-align:-28.800000pt;}
.v3{vertical-align:-27.200000pt;}
.v4{vertical-align:-16.320000pt;}
.vb{vertical-align:-14.720000pt;}
.v6{vertical-align:-12.159467pt;}
.vd{vertical-align:-3.518400pt;}
.va{vertical-align:-2.241600pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280704pt;}
.vc{vertical-align:2.558400pt;}
.v10{vertical-align:18.561408pt;}
.v5{vertical-align:25.599840pt;}
.v2{vertical-align:27.200000pt;}
.ve{vertical-align:36.158976pt;}
.vf{vertical-align:55.042496pt;}
.ls8{letter-spacing:-4.075200pt;}
.ls9{letter-spacing:-4.039200pt;}
.ls1c{letter-spacing:-3.871296pt;}
.ls73{letter-spacing:-3.839680pt;}
.ls83{letter-spacing:-3.526144pt;}
.ls82{letter-spacing:-3.521600pt;}
.ls1{letter-spacing:-3.520000pt;}
.ls7{letter-spacing:-3.492000pt;}
.ls6d{letter-spacing:-3.212608pt;}
.ls81{letter-spacing:-3.208064pt;}
.ls6a{letter-spacing:-3.203520pt;}
.ls7d{letter-spacing:-3.198976pt;}
.ls2{letter-spacing:-3.196000pt;}
.ls1e{letter-spacing:-2.931552pt;}
.ls11{letter-spacing:-2.885440pt;}
.ls71{letter-spacing:-2.880896pt;}
.ls8a{letter-spacing:-2.876352pt;}
.ls3d{letter-spacing:-2.624064pt;}
.ls3e{letter-spacing:-2.613952pt;}
.ls20{letter-spacing:-2.605824pt;}
.ls7e{letter-spacing:-2.571904pt;}
.ls69{letter-spacing:-2.562816pt;}
.ls6e{letter-spacing:-2.558272pt;}
.ls3f{letter-spacing:-2.295424pt;}
.ls39{letter-spacing:-2.290368pt;}
.ls1d{letter-spacing:-2.280096pt;}
.ls59{letter-spacing:-2.272096pt;}
.ls8b{letter-spacing:-2.249280pt;}
.ls75{letter-spacing:-2.244736pt;}
.ls6b{letter-spacing:-2.240192pt;}
.ls5{letter-spacing:-2.239200pt;}
.ls45{letter-spacing:-2.238656pt;}
.ls84{letter-spacing:-2.235648pt;}
.ls1b{letter-spacing:-1.979040pt;}
.ls29{letter-spacing:-1.971840pt;}
.ls2b{letter-spacing:-1.966784pt;}
.ls58{letter-spacing:-1.961728pt;}
.ls7c{letter-spacing:-1.931200pt;}
.ls67{letter-spacing:-1.926656pt;}
.ls92{letter-spacing:-1.923712pt;}
.lsb{letter-spacing:-1.923072pt;}
.ls6f{letter-spacing:-1.922112pt;}
.ls33{letter-spacing:-1.643200pt;}
.ls2c{letter-spacing:-1.638144pt;}
.ls1f{letter-spacing:-1.628640pt;}
.ls74{letter-spacing:-1.608576pt;}
.ls56{letter-spacing:-1.608000pt;}
.ls18{letter-spacing:-1.604032pt;}
.ls72{letter-spacing:-1.599488pt;}
.lsa{letter-spacing:-1.591296pt;}
.ls7b{letter-spacing:-1.549504pt;}
.ls64{letter-spacing:-1.486464pt;}
.ls7a{letter-spacing:-1.463168pt;}
.ls79{letter-spacing:-1.431360pt;}
.ls2a{letter-spacing:-1.314560pt;}
.ls27{letter-spacing:-1.309504pt;}
.ls16{letter-spacing:-1.290496pt;}
.ls13{letter-spacing:-1.285952pt;}
.ls14{letter-spacing:-1.281408pt;}
.ls80{letter-spacing:-1.276864pt;}
.lse{letter-spacing:-1.276000pt;}
.ls1a{letter-spacing:-1.163264pt;}
.ls19{letter-spacing:-1.117824pt;}
.ls32{letter-spacing:-0.990976pt;}
.ls2d{letter-spacing:-0.985920pt;}
.ls25{letter-spacing:-0.980864pt;}
.ls15{letter-spacing:-0.972416pt;}
.ls57{letter-spacing:-0.969600pt;}
.ls70{letter-spacing:-0.963328pt;}
.ls44{letter-spacing:-0.961856pt;}
.ls6c{letter-spacing:-0.958784pt;}
.lsd{letter-spacing:-0.958464pt;}
.lsf{letter-spacing:-0.956000pt;}
.ls85{letter-spacing:-0.954240pt;}
.ls30{letter-spacing:-0.889856pt;}
.ls2f{letter-spacing:-0.793792pt;}
.ls2e{letter-spacing:-0.748288pt;}
.ls28{letter-spacing:-0.662336pt;}
.ls26{letter-spacing:-0.657280pt;}
.ls5f{letter-spacing:-0.652224pt;}
.ls12{letter-spacing:-0.649792pt;}
.ls68{letter-spacing:-0.645248pt;}
.ls76{letter-spacing:-0.640704pt;}
.ls6{letter-spacing:-0.639392pt;}
.ls53{letter-spacing:-0.628800pt;}
.ls34{letter-spacing:-0.495488pt;}
.ls37{letter-spacing:-0.490432pt;}
.ls36{letter-spacing:-0.480320pt;}
.ls35{letter-spacing:-0.460096pt;}
.ls38{letter-spacing:-0.429760pt;}
.ls54{letter-spacing:-0.345600pt;}
.ls23{letter-spacing:-0.333696pt;}
.ls7f{letter-spacing:-0.331712pt;}
.ls5a{letter-spacing:-0.329664pt;}
.ls24{letter-spacing:-0.328640pt;}
.ls43{letter-spacing:-0.327712pt;}
.ls61{letter-spacing:-0.325728pt;}
.ls89{letter-spacing:-0.322624pt;}
.ls8c{letter-spacing:-0.320128pt;}
.ls4{letter-spacing:-0.318240pt;}
.ls8e{letter-spacing:-0.316224pt;}
.ls88{letter-spacing:-0.313536pt;}
.ls52{letter-spacing:-0.307200pt;}
.ls5c{letter-spacing:-0.257856pt;}
.ls8f{letter-spacing:-0.226432pt;}
.ls90{letter-spacing:-0.195200pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls66{letter-spacing:-0.057600pt;}
.ls5d{letter-spacing:-0.051200pt;}
.ls91{letter-spacing:-0.050752pt;}
.ls3a{letter-spacing:-0.044800pt;}
.ls17{letter-spacing:-0.013632pt;}
.lsc{letter-spacing:-0.012288pt;}
.ls31{letter-spacing:-0.010112pt;}
.ls42{letter-spacing:-0.008512pt;}
.ls5e{letter-spacing:-0.005856pt;}
.ls22{letter-spacing:-0.005056pt;}
.ls78{letter-spacing:-0.004544pt;}
.ls41{letter-spacing:-0.004256pt;}
.ls8d{letter-spacing:-0.003904pt;}
.ls3{letter-spacing:-0.003744pt;}
.ls5b{letter-spacing:-0.003232pt;}
.ls0{letter-spacing:0.000000pt;}
.ls51{letter-spacing:0.005056pt;}
.ls86{letter-spacing:0.308992pt;}
.ls77{letter-spacing:0.318080pt;}
.ls60{letter-spacing:0.318240pt;}
.ls65{letter-spacing:0.319200pt;}
.ls3c{letter-spacing:0.323584pt;}
.ls87{letter-spacing:0.640704pt;}
.ls40{letter-spacing:1.299392pt;}
.ls55{letter-spacing:1.905600pt;}
.ls4d{letter-spacing:3.215040pt;}
.ls47{letter-spacing:3.218304pt;}
.ls4f{letter-spacing:4.494400pt;}
.ls4c{letter-spacing:4.497600pt;}
.ls49{letter-spacing:4.499200pt;}
.ls4a{letter-spacing:5.124480pt;}
.ls46{letter-spacing:5.444352pt;}
.ls4e{letter-spacing:5.457600pt;}
.ls4b{letter-spacing:5.774400pt;}
.ls3b{letter-spacing:7.528384pt;}
.ls10{letter-spacing:8.443904pt;}
.ls48{letter-spacing:8.976000pt;}
.ls50{letter-spacing:141.153600pt;}
.ls63{letter-spacing:279.996800pt;}
.ls62{letter-spacing:280.641600pt;}
.ws44{word-spacing:-15.942400pt;}
.ws3{word-spacing:-13.240800pt;}
.ws35{word-spacing:-12.736064pt;}
.ws1b{word-spacing:-12.731008pt;}
.ws1{word-spacing:-12.467520pt;}
.ws8{word-spacing:-11.496320pt;}
.ws4b{word-spacing:-11.482688pt;}
.ws52{word-spacing:-11.164608pt;}
.ws2e{word-spacing:-11.153536pt;}
.ws4d{word-spacing:-10.855616pt;}
.ws4c{word-spacing:-10.851072pt;}
.ws57{word-spacing:-10.846528pt;}
.ws24{word-spacing:-10.546368pt;}
.ws45{word-spacing:-10.537536pt;}
.ws50{word-spacing:-10.532992pt;}
.ws46{word-spacing:-10.214912pt;}
.ws7{word-spacing:-10.210368pt;}
.ws53{word-spacing:-10.205824pt;}
.ws4e{word-spacing:-10.033152pt;}
.ws4f{word-spacing:-9.946816pt;}
.ws47{word-spacing:-9.896832pt;}
.ws9{word-spacing:-9.892288pt;}
.ws2{word-spacing:-9.281376pt;}
.ws6{word-spacing:-8.610880pt;}
.wsa{word-spacing:-7.843680pt;}
.ws2f{word-spacing:-7.750336pt;}
.ws1f{word-spacing:-7.518272pt;}
.ws13{word-spacing:-1.302912pt;}
.ws25{word-spacing:-0.637056pt;}
.ws10{word-spacing:-0.631616pt;}
.ws40{word-spacing:-0.327712pt;}
.ws5c{word-spacing:-0.324032pt;}
.ws33{word-spacing:-0.318528pt;}
.ws54{word-spacing:-0.313536pt;}
.ws1a{word-spacing:-0.313472pt;}
.ws17{word-spacing:-0.308416pt;}
.ws18{word-spacing:-0.176960pt;}
.ws12{word-spacing:-0.163584pt;}
.ws32{word-spacing:-0.060672pt;}
.ws27{word-spacing:-0.048000pt;}
.ws51{word-spacing:-0.045440pt;}
.ws4{word-spacing:-0.039360pt;}
.ws2b{word-spacing:-0.032640pt;}
.ws5{word-spacing:-0.024000pt;}
.ws58{word-spacing:-0.007808pt;}
.ws3f{word-spacing:-0.004256pt;}
.ws5b{word-spacing:-0.003904pt;}
.ws14{word-spacing:-0.003744pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:0.004544pt;}
.wsb{word-spacing:0.007488pt;}
.wse{word-spacing:0.009088pt;}
.ws15{word-spacing:0.010112pt;}
.ws16{word-spacing:0.015168pt;}
.ws22{word-spacing:0.020224pt;}
.ws1c{word-spacing:0.176960pt;}
.ws5d{word-spacing:0.222528pt;}
.ws26{word-spacing:0.259200pt;}
.ws5a{word-spacing:0.312320pt;}
.ws59{word-spacing:0.316224pt;}
.ws49{word-spacing:0.318080pt;}
.ws4a{word-spacing:0.322624pt;}
.wsf{word-spacing:0.327168pt;}
.ws34{word-spacing:0.333696pt;}
.ws20{word-spacing:0.338752pt;}
.ws19{word-spacing:0.343808pt;}
.ws29{word-spacing:0.580800pt;}
.ws56{word-spacing:0.636160pt;}
.ws55{word-spacing:0.640704pt;}
.ws48{word-spacing:0.667392pt;}
.ws30{word-spacing:0.677504pt;}
.ws2d{word-spacing:0.921600pt;}
.ws23{word-spacing:0.996032pt;}
.wsd{word-spacing:1.188000pt;}
.wsc{word-spacing:1.245600pt;}
.ws3d{word-spacing:1.319616pt;}
.ws1d{word-spacing:1.648256pt;}
.ws1e{word-spacing:1.653312pt;}
.ws31{word-spacing:1.976896pt;}
.ws21{word-spacing:2.305536pt;}
.ws2a{word-spacing:6.379200pt;}
.ws2c{word-spacing:7.939200pt;}
.ws28{word-spacing:12.168000pt;}
.ws36{word-spacing:89.278112pt;}
.ws3c{word-spacing:96.317536pt;}
.ws3b{word-spacing:99.837248pt;}
.ws39{word-spacing:107.200128pt;}
.ws3a{word-spacing:115.839808pt;}
.ws38{word-spacing:123.198432pt;}
.ws41{word-spacing:236.808096pt;}
.ws42{word-spacing:255.372768pt;}
.ws43{word-spacing:313.288416pt;}
.ws37{word-spacing:323.839040pt;}
.ws3e{word-spacing:341.433344pt;}
._33{margin-left:-153.905472pt;}
._12{margin-left:-11.355008pt;}
._2a{margin-left:-9.490112pt;}
._2b{margin-left:-8.524416pt;}
._1e{margin-left:-7.538496pt;}
._15{margin-left:-4.041920pt;}
._7{margin-left:-2.848000pt;}
._4{margin-left:-1.796000pt;}
._8{margin-left:-0.894816pt;}
._0{width:1.260000pt;}
._2{width:2.236000pt;}
._c{width:3.619200pt;}
._13{width:5.393920pt;}
._9{width:6.409728pt;}
._3{width:7.668000pt;}
._1{width:8.688000pt;}
._11{width:9.888000pt;}
._6{width:10.844000pt;}
._14{width:12.284352pt;}
._b{width:13.712000pt;}
._f{width:14.659104pt;}
._10{width:16.196384pt;}
._1b{width:17.316800pt;}
._17{width:18.333056pt;}
._16{width:19.627392pt;}
._5{width:20.524000pt;}
._a{width:21.492800pt;}
._1c{width:22.392480pt;}
._1a{width:23.560960pt;}
._6c{width:24.599328pt;}
._18{width:25.527744pt;}
._19{width:26.432768pt;}
._23{width:27.686656pt;}
._5c{width:28.747296pt;}
._1d{width:29.638336pt;}
._20{width:31.094400pt;}
._1f{width:32.875232pt;}
._d{width:37.713600pt;}
._e{width:38.613600pt;}
._2d{width:45.423104pt;}
._2c{width:66.956672pt;}
._21{width:68.357120pt;}
._22{width:69.521120pt;}
._7b{width:73.922240pt;}
._6f{width:83.514368pt;}
._38{width:97.134656pt;}
._3c{width:108.000224pt;}
._46{width:110.502784pt;}
._3a{width:113.452160pt;}
._77{width:114.883008pt;}
._41{width:115.920640pt;}
._7d{width:117.077056pt;}
._72{width:121.492640pt;}
._39{width:124.011296pt;}
._37{width:125.752032pt;}
._51{width:126.824512pt;}
._93{width:127.879584pt;}
._58{width:130.088864pt;}
._86{width:131.834176pt;}
._40{width:134.391712pt;}
._49{width:136.306912pt;}
._83{width:138.244544pt;}
._4c{width:143.652768pt;}
._3e{width:149.108960pt;}
._45{width:150.913472pt;}
._44{width:151.998784pt;}
._4b{width:154.675776pt;}
._57{width:159.646816pt;}
._3d{width:161.132128pt;}
._5b{width:162.864352pt;}
._4e{width:164.613536pt;}
._4f{width:166.073376pt;}
._2e{width:167.065024pt;}
._59{width:168.631232pt;}
._56{width:170.989024pt;}
._4d{width:173.436256pt;}
._5a{width:175.670656pt;}
._42{width:176.645280pt;}
._65{width:178.590272pt;}
._52{width:179.539360pt;}
._3f{width:184.008160pt;}
._4a{width:187.195904pt;}
._55{width:189.749504pt;}
._3b{width:197.755040pt;}
._48{width:199.355296pt;}
._54{width:201.913152pt;}
._36{width:209.927200pt;}
._5f{width:211.604128pt;}
._66{width:216.054528pt;}
._43{width:230.394304pt;}
._34{width:237.752928pt;}
._50{width:240.944928pt;}
._47{width:248.958976pt;}
._2f{width:254.091712pt;}
._64{width:257.611424pt;}
._61{width:259.513856pt;}
._62{width:260.471456pt;}
._67{width:264.572320pt;}
._97{width:265.727744pt;}
._92{width:290.067776pt;}
._60{width:297.277344pt;}
._5d{width:298.549888pt;}
._68{width:302.729280pt;}
._63{width:308.479136pt;}
._69{width:311.041248pt;}
._5e{width:313.288416pt;}
._30{width:314.552448pt;}
._31{width:327.694976pt;}
._35{width:341.420576pt;}
._53{width:342.586688pt;}
._6a{width:345.276512pt;}
._89{width:348.832000pt;}
._32{width:352.652160pt;}
._70{width:359.695968pt;}
._6b{width:366.726752pt;}
._8a{width:413.880640pt;}
._99{width:428.769728pt;}
._85{width:450.092416pt;}
._8c{width:451.647296pt;}
._90{width:460.860384pt;}
._79{width:465.637952pt;}
._84{width:478.838304pt;}
._80{width:482.837024pt;}
._9a{width:490.347136pt;}
._88{width:496.003136pt;}
._94{width:497.987456pt;}
._6d{width:537.751648pt;}
._78{width:549.913440pt;}
._7a{width:575.931008pt;}
._8e{width:583.729312pt;}
._96{width:584.753536pt;}
._91{width:602.578976pt;}
._25{width:612.650816pt;}
._27{width:614.310944pt;}
._98{width:617.210944pt;}
._73{width:622.556288pt;}
._7c{width:636.900544pt;}
._76{width:638.557024pt;}
._7f{width:644.147680pt;}
._6e{width:646.138400pt;}
._8f{width:657.143616pt;}
._8d{width:681.334144pt;}
._7e{width:683.917248pt;}
._82{width:696.063392pt;}
._81{width:726.279904pt;}
._95{width:739.301184pt;}
._87{width:744.381568pt;}
._9b{width:769.996352pt;}
._24{width:790.066592pt;}
._74{width:803.842336pt;}
._75{width:857.225376pt;}
._71{width:904.928992pt;}
._9c{width:909.301184pt;}
._26{width:921.462432pt;}
._8b{width:930.436640pt;}
._28{width:1550.813824pt;}
._29{width:1639.768704pt;}
.fs8{font-size:4.160000pt;}
.fsb{font-size:24.000000pt;}
.fs15{font-size:27.200000pt;}
.fs12{font-size:32.320000pt;}
.fs10{font-size:32.640000pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:37.440000pt;}
.fs16{font-size:39.040000pt;}
.fsa{font-size:39.360000pt;}
.fs5{font-size:40.000000pt;}
.fsc{font-size:42.560000pt;}
.fsd{font-size:45.440000pt;}
.fsf{font-size:48.000000pt;}
.fse{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs13{font-size:56.640000pt;}
.fs14{font-size:58.560000pt;}
.fs9{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:72.000000pt;}
.fs2{font-size:90.666667pt;}
.fs11{font-size:120.000000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:2.239867pt;}
.y308{bottom:2.879733pt;}
.y3d{bottom:2.879867pt;}
.y36{bottom:4.159867pt;}
.y31{bottom:4.799867pt;}
.y7{bottom:31.933340pt;}
.y57{bottom:58.815867pt;}
.y6{bottom:59.133337pt;}
.y59{bottom:65.615509pt;}
.y55{bottom:65.936000pt;}
.y54{bottom:68.175427pt;}
.y53{bottom:77.455867pt;}
.y5{bottom:86.333337pt;}
.y28{bottom:103.455867pt;}
.y2a2{bottom:105.293419pt;}
.y1ae{bottom:105.613595pt;}
.y232{bottom:106.251403pt;}
.y12f{bottom:107.135867pt;}
.y19f{bottom:107.294715pt;}
.y127{bottom:110.247947pt;}
.yaf{bottom:110.248075pt;}
.y191{bottom:110.251483pt;}
.ydb{bottom:110.251739pt;}
.y83{bottom:110.492027pt;}
.y102{bottom:110.492987pt;}
.y26a{bottom:113.289541pt;}
.y165{bottom:114.015675pt;}
.y27{bottom:116.975867pt;}
.y2a1{bottom:118.333563pt;}
.y231{bottom:119.291547pt;}
.y306{bottom:119.372507pt;}
.y1e8{bottom:120.093275pt;}
.y1ff{bottom:120.335483pt;}
.y1ad{bottom:123.453691pt;}
.y25{bottom:123.790666pt;}
.y12e{bottom:124.254747pt;}
.y19e{bottom:125.134811pt;}
.y269{bottom:126.329685pt;}
.y126{bottom:128.088043pt;}
.yae{bottom:128.088171pt;}
.y190{bottom:128.091579pt;}
.yda{bottom:128.091835pt;}
.y82{bottom:128.332123pt;}
.y101{bottom:128.333083pt;}
.y2a0{bottom:131.373707pt;}
.y164{bottom:131.855771pt;}
.y230{bottom:132.331691pt;}
.y26{bottom:133.055867pt;}
.y305{bottom:136.652587pt;}
.y1e7{bottom:137.933371pt;}
.y1fe{bottom:138.175579pt;}
.y268{bottom:139.369829pt;}
.y1ac{bottom:141.293787pt;}
.y12d{bottom:142.494899pt;}
.y19d{bottom:142.974907pt;}
.y22f{bottom:145.371835pt;}
.y125{bottom:145.928139pt;}
.yad{bottom:145.928267pt;}
.y18f{bottom:145.931675pt;}
.yd9{bottom:145.931931pt;}
.y81{bottom:146.172219pt;}
.y100{bottom:146.173179pt;}
.y29f{bottom:148.413707pt;}
.y163{bottom:149.695867pt;}
.y304{bottom:153.932667pt;}
.y1e6{bottom:155.773467pt;}
.y1fd{bottom:156.015675pt;}
.y267{bottom:156.409829pt;}
.y1ab{bottom:159.133883pt;}
.y12c{bottom:160.655251pt;}
.y19c{bottom:160.815003pt;}
.y29e{bottom:161.453851pt;}
.y22e{bottom:162.411835pt;}
.y124{bottom:163.768235pt;}
.yac{bottom:163.768363pt;}
.y18e{bottom:163.771771pt;}
.yd8{bottom:163.772027pt;}
.y80{bottom:164.012315pt;}
.yff{bottom:164.013275pt;}
.y266{bottom:169.449973pt;}
.y303{bottom:171.212747pt;}
.y1e5{bottom:173.613563pt;}
.y1fc{bottom:173.855771pt;}
.y29d{bottom:174.493995pt;}
.y1c{bottom:175.052000pt;}
.y22d{bottom:175.451979pt;}
.y1aa{bottom:176.973979pt;}
.y19b{bottom:178.655099pt;}
.y12b{bottom:178.895403pt;}
.y123{bottom:181.608331pt;}
.yab{bottom:181.608459pt;}
.y18d{bottom:181.611867pt;}
.yd7{bottom:181.612123pt;}
.y7f{bottom:181.852411pt;}
.yfe{bottom:181.853371pt;}
.y162{bottom:182.015867pt;}
.y265{bottom:182.490117pt;}
.y24{bottom:186.238666pt;}
.y1b{bottom:186.252002pt;}
.y29c{bottom:187.534139pt;}
.y22c{bottom:188.492123pt;}
.y302{bottom:188.492827pt;}
.y1e4{bottom:191.453659pt;}
.y1fb{bottom:191.695867pt;}
.y1a9{bottom:194.814075pt;}
.y264{bottom:195.530261pt;}
.y19a{bottom:196.495195pt;}
.y12a{bottom:197.135555pt;}
.y23{bottom:197.438668pt;}
.y1a{bottom:197.452004pt;}
.y122{bottom:199.448427pt;}
.yaa{bottom:199.448555pt;}
.y18c{bottom:199.451963pt;}
.yd6{bottom:199.452219pt;}
.y7e{bottom:199.692507pt;}
.yfd{bottom:199.693467pt;}
.y22b{bottom:201.532267pt;}
.y29b{bottom:204.574139pt;}
.y301{bottom:205.772907pt;}
.y22{bottom:208.638670pt;}
.y19{bottom:208.651996pt;}
.y1e3{bottom:209.293755pt;}
.y263{bottom:212.570261pt;}
.y1a8{bottom:212.654171pt;}
.y199{bottom:214.335291pt;}
.y22a{bottom:214.572411pt;}
.y129{bottom:215.295907pt;}
.y161{bottom:216.335867pt;}
.y121{bottom:217.288523pt;}
.ya9{bottom:217.288651pt;}
.y18b{bottom:217.292059pt;}
.yd5{bottom:217.292315pt;}
.y7d{bottom:217.532603pt;}
.yfc{bottom:217.533563pt;}
.y29a{bottom:217.614283pt;}
.y128{bottom:221.695867pt;}
.y300{bottom:223.052987pt;}
.y262{bottom:225.610405pt;}
.y1e2{bottom:227.133851pt;}
.y1a7{bottom:230.494267pt;}
.y299{bottom:230.654427pt;}
.y21{bottom:231.038664pt;}
.y18{bottom:231.052000pt;}
.y229{bottom:231.612411pt;}
.y198{bottom:232.175387pt;}
.y120{bottom:235.128619pt;}
.ya8{bottom:235.128747pt;}
.y18a{bottom:235.132155pt;}
.yd4{bottom:235.132411pt;}
.y7c{bottom:235.372699pt;}
.yfb{bottom:235.373659pt;}
.y2ff{bottom:240.333067pt;}
.y1fa{bottom:242.175867pt;}
.y20{bottom:242.238666pt;}
.y17{bottom:242.252002pt;}
.y261{bottom:242.650405pt;}
.y298{bottom:243.694571pt;}
.y228{bottom:244.652555pt;}
.y1e1{bottom:244.973947pt;}
.y1a6{bottom:248.334363pt;}
.y197{bottom:250.015483pt;}
.y130{bottom:251.135867pt;}
.y11f{bottom:252.968715pt;}
.ya7{bottom:252.968843pt;}
.y189{bottom:252.972251pt;}
.yd3{bottom:252.972507pt;}
.y7b{bottom:253.212795pt;}
.yfa{bottom:253.213755pt;}
.y1f{bottom:253.438668pt;}
.y16{bottom:253.451999pt;}
.y260{bottom:255.690549pt;}
.y2fe{bottom:257.613147pt;}
.y227{bottom:257.692699pt;}
.y297{bottom:260.734571pt;}
.y1e0{bottom:262.814043pt;}
.y1a5{bottom:266.174459pt;}
.y52{bottom:266.815867pt;}
.y196{bottom:267.855579pt;}
.y25f{bottom:268.730693pt;}
.y11e{bottom:270.808811pt;}
.ya6{bottom:270.808939pt;}
.y188{bottom:270.812347pt;}
.yd2{bottom:270.812603pt;}
.y7a{bottom:271.052891pt;}
.yf9{bottom:271.053851pt;}
.y296{bottom:273.774715pt;}
.y226{bottom:274.732699pt;}
.y2fd{bottom:274.893227pt;}
.y1e{bottom:275.838667pt;}
.y15{bottom:275.852001pt;}
.y1df{bottom:280.654139pt;}
.y25e{bottom:281.770837pt;}
.y1a4{bottom:284.014555pt;}
.y195{bottom:285.695675pt;}
.y295{bottom:286.814859pt;}
.y1d{bottom:287.038667pt;}
.y14{bottom:287.052000pt;}
.y225{bottom:287.772843pt;}
.y11d{bottom:288.648907pt;}
.ya5{bottom:288.649035pt;}
.y187{bottom:288.652443pt;}
.yd1{bottom:288.652699pt;}
.y79{bottom:288.892987pt;}
.yf8{bottom:288.893947pt;}
.y160{bottom:290.493851pt;}
.y2fc{bottom:292.173307pt;}
.y1de{bottom:298.494235pt;}
.y25d{bottom:298.810837pt;}
.y294{bottom:299.855003pt;}
.y224{bottom:300.812987pt;}
.y1a3{bottom:301.854651pt;}
.y194{bottom:303.535771pt;}
.y11c{bottom:306.489003pt;}
.ya4{bottom:306.489131pt;}
.y186{bottom:306.492539pt;}
.yd0{bottom:306.492795pt;}
.y78{bottom:306.733083pt;}
.yf7{bottom:306.734043pt;}
.y51{bottom:307.856347pt;}
.y15f{bottom:308.333947pt;}
.y13{bottom:309.452000pt;}
.y2fb{bottom:309.453387pt;}
.y25c{bottom:311.850981pt;}
.y223{bottom:313.853131pt;}
.y1f9{bottom:316.331803pt;}
.y1dd{bottom:316.334331pt;}
.y293{bottom:316.895003pt;}
.y1a2{bottom:319.694747pt;}
.y193{bottom:321.375867pt;}
.y50{bottom:321.375883pt;}
.y11b{bottom:324.329099pt;}
.ya3{bottom:324.329227pt;}
.y185{bottom:324.332635pt;}
.ycf{bottom:324.332891pt;}
.y77{bottom:324.573179pt;}
.yf6{bottom:324.574139pt;}
.y25b{bottom:324.891125pt;}
.y15e{bottom:326.174043pt;}
.y2fa{bottom:326.733467pt;}
.y292{bottom:329.935147pt;}
.y222{bottom:330.893131pt;}
.y1f8{bottom:334.171899pt;}
.y1dc{bottom:334.174427pt;}
.y4f{bottom:334.976075pt;}
.y1a1{bottom:337.534843pt;}
.y25a{bottom:337.931269pt;}
.y11a{bottom:342.169195pt;}
.ya2{bottom:342.169323pt;}
.y184{bottom:342.172731pt;}
.yce{bottom:342.172987pt;}
.y76{bottom:342.413275pt;}
.yf5{bottom:342.414235pt;}
.y12{bottom:343.809333pt;}
.y221{bottom:343.933275pt;}
.y2f9{bottom:344.013547pt;}
.y15d{bottom:344.014139pt;}
.y291{bottom:346.975147pt;}
.y4e{bottom:348.576267pt;}
.y1f7{bottom:352.011995pt;}
.y1db{bottom:352.014523pt;}
.y192{bottom:353.695867pt;}
.y259{bottom:354.971269pt;}
.y1a0{bottom:355.374939pt;}
.y220{bottom:356.973419pt;}
.y119{bottom:360.009291pt;}
.ya1{bottom:360.009419pt;}
.y183{bottom:360.012827pt;}
.ycd{bottom:360.013083pt;}
.y290{bottom:360.015291pt;}
.y75{bottom:360.253371pt;}
.yf4{bottom:360.254331pt;}
.y2f8{bottom:361.293627pt;}
.y15c{bottom:361.854235pt;}
.y4d{bottom:362.095803pt;}
.y11{bottom:362.706666pt;}
.y258{bottom:368.011413pt;}
.y1f6{bottom:369.852091pt;}
.y1da{bottom:369.854619pt;}
.y21f{bottom:370.013563pt;}
.y28f{bottom:373.055435pt;}
.y4c{bottom:375.695995pt;}
.y118{bottom:377.849387pt;}
.ya0{bottom:377.849515pt;}
.y182{bottom:377.852923pt;}
.ycc{bottom:377.853179pt;}
.y74{bottom:378.093467pt;}
.yf3{bottom:378.094427pt;}
.y2f7{bottom:378.573707pt;}
.y15b{bottom:379.694331pt;}
.y257{bottom:381.051557pt;}
.y28e{bottom:386.095579pt;}
.y21e{bottom:387.053563pt;}
.y1f5{bottom:387.692187pt;}
.y1d9{bottom:387.694715pt;}
.y4b{bottom:389.296187pt;}
.y256{bottom:394.091701pt;}
.y117{bottom:395.689483pt;}
.y9f{bottom:395.689611pt;}
.y181{bottom:395.693019pt;}
.ycb{bottom:395.693275pt;}
.y2f6{bottom:395.853787pt;}
.y73{bottom:395.933563pt;}
.yf2{bottom:395.934523pt;}
.y15a{bottom:397.534427pt;}
.y2db{bottom:399.127589pt;}
.y21d{bottom:400.093707pt;}
.y1cb{bottom:401.534987pt;}
.y4a{bottom:402.815723pt;}
.y28d{bottom:403.135579pt;}
.y1f4{bottom:405.532283pt;}
.y1d8{bottom:405.534811pt;}
.y255{bottom:407.131845pt;}
.y1ca{bottom:410.894987pt;}
.y2da{bottom:412.167733pt;}
.y21c{bottom:413.133851pt;}
.y2f5{bottom:413.133867pt;}
.y116{bottom:413.529579pt;}
.y9e{bottom:413.529707pt;}
.y180{bottom:413.533115pt;}
.yca{bottom:413.533371pt;}
.y72{bottom:413.773659pt;}
.yf1{bottom:413.774619pt;}
.y10{bottom:414.990669pt;}
.y159{bottom:415.374523pt;}
.y28c{bottom:416.175723pt;}
.y49{bottom:416.415915pt;}
.y2b8{bottom:420.171989pt;}
.y1c9{bottom:420.254987pt;}
.y1f3{bottom:423.372379pt;}
.y1d7{bottom:423.374907pt;}
.y254{bottom:424.171845pt;}
.y2d9{bottom:425.207877pt;}
.y21b{bottom:426.173995pt;}
.y28b{bottom:429.215867pt;}
.y1c8{bottom:429.535427pt;}
.y48{bottom:430.016107pt;}
.y2f4{bottom:430.413947pt;}
.yf{bottom:430.990669pt;}
.y115{bottom:431.369675pt;}
.y9d{bottom:431.369803pt;}
.y17f{bottom:431.373211pt;}
.yc9{bottom:431.373467pt;}
.y71{bottom:431.613755pt;}
.yf0{bottom:431.614715pt;}
.y2b7{bottom:433.212133pt;}
.y158{bottom:433.214619pt;}
.y253{bottom:437.211989pt;}
.y2d8{bottom:438.248021pt;}
.y1c7{bottom:438.895427pt;}
.y21a{bottom:439.214139pt;}
.y1f2{bottom:441.212475pt;}
.y1d6{bottom:441.215003pt;}
.y28a{bottom:442.245605pt;}
.y47{bottom:443.535643pt;}
.y2b6{bottom:446.252277pt;}
.ye{bottom:446.990669pt;}
.y2f3{bottom:447.694027pt;}
.y1c6{bottom:448.255427pt;}
.y114{bottom:449.209771pt;}
.y9c{bottom:449.209899pt;}
.y17e{bottom:449.213307pt;}
.yc8{bottom:449.213563pt;}
.y70{bottom:449.453851pt;}
.yef{bottom:449.454811pt;}
.y252{bottom:450.252133pt;}
.y157{bottom:451.054715pt;}
.y2d7{bottom:451.288165pt;}
.y219{bottom:456.254139pt;}
.y46{bottom:457.135835pt;}
.y1c5{bottom:457.535867pt;}
.y1f1{bottom:459.052571pt;}
.y1d5{bottom:459.055099pt;}
.y289{bottom:459.285605pt;}
.yd{bottom:462.990669pt;}
.y251{bottom:463.292277pt;}
.y2f2{bottom:464.974107pt;}
.y113{bottom:467.049867pt;}
.y9b{bottom:467.049995pt;}
.y17d{bottom:467.053403pt;}
.yc7{bottom:467.053659pt;}
.y6f{bottom:467.293947pt;}
.yee{bottom:467.294907pt;}
.y2d6{bottom:468.328165pt;}
.y156{bottom:468.894811pt;}
.y218{bottom:469.294283pt;}
.y45{bottom:470.736027pt;}
.y288{bottom:472.325749pt;}
.y1c4{bottom:474.651275pt;}
.y250{bottom:476.332421pt;}
.y1f0{bottom:476.892667pt;}
.y1d4{bottom:476.895195pt;}
.yc{bottom:478.990666pt;}
.y2d5{bottom:481.368309pt;}
.y2f1{bottom:482.254187pt;}
.y217{bottom:482.334427pt;}
.y44{bottom:484.255563pt;}
.y112{bottom:484.889963pt;}
.y9a{bottom:484.890091pt;}
.y17c{bottom:484.893499pt;}
.yc6{bottom:484.893755pt;}
.y6e{bottom:485.134043pt;}
.yed{bottom:485.135003pt;}
.y287{bottom:485.365893pt;}
.y155{bottom:486.734907pt;}
.y2b5{bottom:489.372565pt;}
.y1c3{bottom:492.811627pt;}
.y24f{bottom:493.372421pt;}
.y2d4{bottom:494.408453pt;}
.y1ef{bottom:494.732763pt;}
.y1d3{bottom:494.735291pt;}
.yb{bottom:494.990666pt;}
.y216{bottom:495.374571pt;}
.y43{bottom:497.855755pt;}
.y286{bottom:498.406037pt;}
.y2f0{bottom:499.534267pt;}
.y2b4{bottom:502.412709pt;}
.y111{bottom:502.730059pt;}
.y99{bottom:502.730187pt;}
.y17b{bottom:502.733595pt;}
.yc5{bottom:502.733851pt;}
.y6d{bottom:502.974139pt;}
.yec{bottom:502.975099pt;}
.y154{bottom:504.575003pt;}
.y24e{bottom:506.412565pt;}
.y2d3{bottom:507.448597pt;}
.y215{bottom:508.414715pt;}
.y1c2{bottom:511.051779pt;}
.y285{bottom:511.446181pt;}
.y42{bottom:511.455947pt;}
.y1ee{bottom:512.572859pt;}
.y1d2{bottom:512.575387pt;}
.y2b3{bottom:515.452853pt;}
.y2ef{bottom:516.814347pt;}
.y24d{bottom:519.452709pt;}
.y110{bottom:520.570155pt;}
.y98{bottom:520.570283pt;}
.y17a{bottom:520.573691pt;}
.yc4{bottom:520.573947pt;}
.y6c{bottom:520.814235pt;}
.yeb{bottom:520.815195pt;}
.y153{bottom:522.415099pt;}
.y2d2{bottom:524.488597pt;}
.y41{bottom:524.975483pt;}
.y214{bottom:525.454715pt;}
.y284{bottom:528.486181pt;}
.y2b2{bottom:528.492997pt;}
.y1c1{bottom:529.291931pt;}
.y1ed{bottom:530.412955pt;}
.y1d1{bottom:530.415483pt;}
.y24c{bottom:532.492853pt;}
.y2ee{bottom:534.094427pt;}
.y2d1{bottom:537.528741pt;}
.y10f{bottom:538.410251pt;}
.y97{bottom:538.410379pt;}
.y179{bottom:538.413787pt;}
.yc3{bottom:538.414043pt;}
.y213{bottom:538.494859pt;}
.y40{bottom:538.575675pt;}
.y6b{bottom:538.654331pt;}
.yea{bottom:538.655291pt;}
.y152{bottom:540.255195pt;}
.y283{bottom:541.526325pt;}
.y2b1{bottom:541.533141pt;}
.y1c0{bottom:547.452283pt;}
.y1ec{bottom:548.253051pt;}
.y1d0{bottom:548.255579pt;}
.y24b{bottom:549.532853pt;}
.y2d0{bottom:550.568885pt;}
.y2ed{bottom:551.374507pt;}
.y212{bottom:551.535003pt;}
.y3f{bottom:552.175867pt;}
.y282{bottom:554.566469pt;}
.y10e{bottom:556.250347pt;}
.y96{bottom:556.250475pt;}
.y178{bottom:556.253883pt;}
.yc2{bottom:556.254139pt;}
.y6a{bottom:556.494427pt;}
.ye9{bottom:556.495387pt;}
.y151{bottom:558.095291pt;}
.y2b0{bottom:558.573141pt;}
.y24a{bottom:562.572997pt;}
.y211{bottom:564.575147pt;}
.y1bf{bottom:565.692435pt;}
.y1eb{bottom:566.093147pt;}
.y1cf{bottom:566.095675pt;}
.y2cf{bottom:567.608885pt;}
.y2ec{bottom:568.654587pt;}
.y281{bottom:571.606469pt;}
.y2af{bottom:571.613285pt;}
.y3c{bottom:573.696000pt;}
.ya{bottom:573.786667pt;}
.y10d{bottom:574.090443pt;}
.y95{bottom:574.090571pt;}
.y177{bottom:574.093979pt;}
.yc1{bottom:574.094235pt;}
.y69{bottom:574.334523pt;}
.ye8{bottom:574.335483pt;}
.y249{bottom:575.613141pt;}
.y150{bottom:575.935387pt;}
.y3e{bottom:576.575867pt;}
.y210{bottom:577.615291pt;}
.y2ce{bottom:580.649029pt;}
.y1be{bottom:583.932587pt;}
.y1ea{bottom:583.933243pt;}
.y1ce{bottom:583.935771pt;}
.y280{bottom:584.646613pt;}
.y2ae{bottom:584.653429pt;}
.y2eb{bottom:585.934667pt;}
.y248{bottom:588.653285pt;}
.y20f{bottom:590.655435pt;}
.y10c{bottom:591.930539pt;}
.y94{bottom:591.930667pt;}
.y176{bottom:591.934075pt;}
.yc0{bottom:591.934331pt;}
.y68{bottom:592.174619pt;}
.ye7{bottom:592.175579pt;}
.y9{bottom:592.685334pt;}
.y2cd{bottom:593.689173pt;}
.y14f{bottom:593.775483pt;}
.y27f{bottom:597.686757pt;}
.y2ad{bottom:597.693573pt;}
.y247{bottom:601.693429pt;}
.y1e9{bottom:601.773339pt;}
.y1cd{bottom:601.775867pt;}
.y1bd{bottom:602.092939pt;}
.y2ea{bottom:603.214747pt;}
.y20e{bottom:607.695435pt;}
.y10b{bottom:609.770635pt;}
.y93{bottom:609.770763pt;}
.y175{bottom:609.774171pt;}
.ybf{bottom:609.774427pt;}
.y67{bottom:610.014715pt;}
.ye6{bottom:610.015675pt;}
.y27e{bottom:610.726901pt;}
.y2cc{bottom:610.729173pt;}
.y2ac{bottom:610.733717pt;}
.y14e{bottom:611.615579pt;}
.y246{bottom:618.733429pt;}
.y1bc{bottom:620.333091pt;}
.y2e9{bottom:620.494827pt;}
.y20d{bottom:620.735579pt;}
.y2cb{bottom:623.769317pt;}
.y3b{bottom:625.295867pt;}
.y10a{bottom:627.610731pt;}
.y92{bottom:627.610859pt;}
.y174{bottom:627.614267pt;}
.ybe{bottom:627.614523pt;}
.y27d{bottom:627.766901pt;}
.y2ab{bottom:627.773717pt;}
.y66{bottom:627.854811pt;}
.ye5{bottom:627.855771pt;}
.y14d{bottom:629.455675pt;}
.y245{bottom:631.773573pt;}
.y20c{bottom:633.775723pt;}
.y3a{bottom:635.935867pt;}
.y2ca{bottom:636.809461pt;}
.y2e8{bottom:637.774907pt;}
.y1bb{bottom:638.573243pt;}
.y27c{bottom:640.807045pt;}
.y2aa{bottom:640.813861pt;}
.y20a{bottom:644.175867pt;}
.y244{bottom:644.813717pt;}
.y109{bottom:645.450827pt;}
.y91{bottom:645.450955pt;}
.y173{bottom:645.454363pt;}
.ybd{bottom:645.454619pt;}
.y8{bottom:645.598667pt;}
.y65{bottom:645.694907pt;}
.ye4{bottom:645.695867pt;}
.y39{bottom:646.575867pt;}
.y20b{bottom:646.815867pt;}
.y14c{bottom:647.295771pt;}
.y2c9{bottom:649.849605pt;}
.y27b{bottom:653.847189pt;}
.y2a9{bottom:653.854005pt;}
.y2e7{bottom:655.054987pt;}
.y1ba{bottom:656.733595pt;}
.y209{bottom:657.615867pt;}
.y243{bottom:657.853861pt;}
.y2c8{bottom:662.889749pt;}
.y208{bottom:662.895427pt;}
.y108{bottom:663.290923pt;}
.y90{bottom:663.291051pt;}
.y172{bottom:663.294459pt;}
.ybc{bottom:663.294715pt;}
.y64{bottom:663.535003pt;}
.y14b{bottom:665.135867pt;}
.y27a{bottom:666.887333pt;}
.y2a8{bottom:666.894149pt;}
.y4{bottom:668.977329pt;}
.y38{bottom:669.135099pt;}
.y242{bottom:670.894005pt;}
.y2e6{bottom:672.335067pt;}
.y1b9{bottom:674.973747pt;}
.y207{bottom:676.335867pt;}
.y2c7{bottom:679.929749pt;}
.y107{bottom:681.131019pt;}
.y8f{bottom:681.131147pt;}
.y171{bottom:681.134555pt;}
.ybb{bottom:681.134811pt;}
.y63{bottom:681.375099pt;}
.y206{bottom:681.535867pt;}
.y149{bottom:682.975771pt;}
.y14a{bottom:682.975867pt;}
.y279{bottom:683.927333pt;}
.y241{bottom:683.934149pt;}
.y35{bottom:689.456000pt;}
.y2e5{bottom:689.615147pt;}
.y2c6{bottom:692.969893pt;}
.y1b8{bottom:693.213899pt;}
.y37{bottom:693.615867pt;}
.ye3{bottom:696.175867pt;}
.y278{bottom:696.967477pt;}
.y240{bottom:696.974293pt;}
.y205{bottom:698.575867pt;}
.y106{bottom:698.971115pt;}
.y8e{bottom:698.971243pt;}
.y170{bottom:698.974651pt;}
.yba{bottom:698.974907pt;}
.y62{bottom:699.215195pt;}
.y148{bottom:700.415867pt;}
.y146{bottom:700.815675pt;}
.y147{bottom:700.815867pt;}
.y2c5{bottom:706.010037pt;}
.y2e4{bottom:706.895227pt;}
.y277{bottom:710.007621pt;}
.y23f{bottom:710.014437pt;}
.y1b7{bottom:711.374251pt;}
.y105{bottom:716.811211pt;}
.y8d{bottom:716.811339pt;}
.y16f{bottom:716.814747pt;}
.yb9{bottom:716.815003pt;}
.y204{bottom:716.815715pt;}
.y61{bottom:717.055291pt;}
.y145{bottom:718.655771pt;}
.y2c4{bottom:719.050181pt;}
.y23e{bottom:723.054581pt;}
.y2e3{bottom:724.175307pt;}
.y276{bottom:727.047621pt;}
.y34{bottom:728.015867pt;}
.y1b6{bottom:729.614403pt;}
.y104{bottom:734.651307pt;}
.y8c{bottom:734.651435pt;}
.y16e{bottom:734.654843pt;}
.yb8{bottom:734.655099pt;}
.y60{bottom:734.895387pt;}
.y203{bottom:735.055515pt;}
.y143{bottom:735.055867pt;}
.y2c3{bottom:736.090181pt;}
.y142{bottom:736.495771pt;}
.y144{bottom:736.495867pt;}
.y275{bottom:740.087765pt;}
.y23d{bottom:740.094581pt;}
.y2e2{bottom:741.455387pt;}
.y33{bottom:741.936000pt;}
.y202{bottom:744.175243pt;}
.y32{bottom:746.735867pt;}
.y1b5{bottom:747.854555pt;}
.y2c2{bottom:749.130325pt;}
.y103{bottom:752.491403pt;}
.y8b{bottom:752.491531pt;}
.y16d{bottom:752.494939pt;}
.yb7{bottom:752.495195pt;}
.y5f{bottom:752.735483pt;}
.y140{bottom:752.895867pt;}
.y274{bottom:753.127909pt;}
.y23c{bottom:753.134725pt;}
.y13f{bottom:754.335771pt;}
.y141{bottom:754.335867pt;}
.y2e1{bottom:758.735467pt;}
.y30{bottom:760.576000pt;}
.y2f{bottom:765.375867pt;}
.y1b4{bottom:766.014907pt;}
.y273{bottom:766.168053pt;}
.y2c1{bottom:766.170325pt;}
.y23b{bottom:766.174869pt;}
.ye2{bottom:770.331499pt;}
.y8a{bottom:770.331627pt;}
.y16c{bottom:770.335035pt;}
.yb6{bottom:770.335291pt;}
.y5e{bottom:770.575579pt;}
.y13e{bottom:770.735867pt;}
.y201{bottom:771.455139pt;}
.y13c{bottom:772.175637pt;}
.y13d{bottom:772.175867pt;}
.y2e0{bottom:776.015547pt;}
.y272{bottom:779.208197pt;}
.y2c0{bottom:779.210469pt;}
.y2a7{bottom:779.215013pt;}
.y3{bottom:781.661334pt;}
.y23a{bottom:783.214869pt;}
.y1b3{bottom:784.255059pt;}
.ye1{bottom:788.171595pt;}
.y89{bottom:788.171723pt;}
.y16b{bottom:788.175131pt;}
.yb5{bottom:788.175387pt;}
.y5d{bottom:788.415675pt;}
.y200{bottom:789.695291pt;}
.y13b{bottom:790.015733pt;}
.y2bf{bottom:792.250613pt;}
.y2a6{bottom:792.255157pt;}
.y2df{bottom:793.295627pt;}
.y271{bottom:796.248197pt;}
.y239{bottom:796.255013pt;}
.y1b2{bottom:802.495211pt;}
.ye0{bottom:806.011691pt;}
.y88{bottom:806.011819pt;}
.y16a{bottom:806.015227pt;}
.yb4{bottom:806.015483pt;}
.y5c{bottom:806.255771pt;}
.y270{bottom:809.288341pt;}
.y2be{bottom:809.290613pt;}
.y238{bottom:809.295157pt;}
.y2de{bottom:810.575707pt;}
.y1b1{bottom:820.655563pt;}
.y26f{bottom:822.328485pt;}
.y2bd{bottom:822.330757pt;}
.y237{bottom:822.335301pt;}
.y2e{bottom:823.615691pt;}
.ydf{bottom:823.851787pt;}
.y87{bottom:823.851915pt;}
.y169{bottom:823.855323pt;}
.yb3{bottom:823.855579pt;}
.y5b{bottom:824.095867pt;}
.y139{bottom:827.615867pt;}
.y2dd{bottom:827.855787pt;}
.y137{bottom:829.375867pt;}
.y138{bottom:831.775733pt;}
.y2d{bottom:834.815867pt;}
.y26e{bottom:835.368629pt;}
.y2bc{bottom:835.370901pt;}
.y2a5{bottom:835.375445pt;}
.y136{bottom:836.015733pt;}
.y1b0{bottom:838.895715pt;}
.y236{bottom:839.375301pt;}
.y2{bottom:840.112001pt;}
.yde{bottom:841.691883pt;}
.y86{bottom:841.692011pt;}
.y168{bottom:841.695419pt;}
.yb2{bottom:841.695675pt;}
.y13a{bottom:843.215867pt;}
.y2dc{bottom:845.135867pt;}
.y26d{bottom:848.408773pt;}
.y2a4{bottom:848.415589pt;}
.y2bb{bottom:852.410901pt;}
.y235{bottom:852.415445pt;}
.y2c{bottom:856.255867pt;}
.y1af{bottom:857.135867pt;}
.y1{bottom:859.312000pt;}
.ydd{bottom:859.531979pt;}
.y85{bottom:859.532107pt;}
.y167{bottom:859.535515pt;}
.yb1{bottom:859.535771pt;}
.y2a3{bottom:861.455733pt;}
.y132{bottom:862.335733pt;}
.y134{bottom:864.175733pt;}
.y26c{bottom:865.448773pt;}
.y2ba{bottom:865.451045pt;}
.y234{bottom:865.455589pt;}
.y131{bottom:866.575867pt;}
.y309{bottom:867.375813pt;}
.y135{bottom:870.735867pt;}
.y5a{bottom:874.575867pt;}
.y307{bottom:877.296000pt;}
.ydc{bottom:877.372075pt;}
.y84{bottom:877.372203pt;}
.y166{bottom:877.375611pt;}
.yb0{bottom:877.375867pt;}
.y133{bottom:877.935867pt;}
.y26b{bottom:878.488917pt;}
.y2b9{bottom:878.491189pt;}
.y233{bottom:878.495733pt;}
.y1cc{bottom:880.175733pt;}
.y2b{bottom:889.455381pt;}
.y2a{bottom:900.655557pt;}
.y29{bottom:911.855733pt;}
.y58{bottom:918.015733pt;}
.h17{height:10.560000pt;}
.h2b{height:10.880000pt;}
.h13{height:13.040000pt;}
.h12{height:16.640625pt;}
.he{height:18.800000pt;}
.h22{height:21.762344pt;}
.hd{height:21.920000pt;}
.ha{height:25.922812pt;}
.h24{height:26.038400pt;}
.h2a{height:27.202187pt;}
.h9{height:27.832031pt;}
.h7{height:28.560000pt;}
.h1b{height:29.114531pt;}
.h14{height:29.550937pt;}
.h16{height:29.758750pt;}
.h1d{height:29.765625pt;}
.hb{height:30.090937pt;}
.h1c{height:31.358906pt;}
.h15{height:31.683750pt;}
.h20{height:33.281250pt;}
.h1e{height:34.546875pt;}
.h19{height:35.204375pt;}
.h21{height:35.839650pt;}
.h23{height:36.504320pt;}
.h28{height:37.447346pt;}
.h25{height:37.750781pt;}
.h29{height:37.766545pt;}
.h26{height:40.631719pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h18{height:44.468750pt;}
.hf{height:45.120000pt;}
.h2{height:48.960000pt;}
.hc{height:53.121094pt;}
.h1a{height:55.358590pt;}
.h11{height:55.999478pt;}
.h10{height:56.316406pt;}
.h5{height:69.360000pt;}
.h27{height:73.928433pt;}
.h1f{height:94.602273pt;}
.h4{height:105.826671pt;}
.h8{height:994.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:11.040000pt;}
.w5{width:15.600000pt;}
.w8{width:37.120000pt;}
.w6{width:50.560000pt;}
.w9{width:51.360000pt;}
.w4{width:69.920000pt;}
.w2{width:566.928019pt;}
.w3{width:710.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:4.960000pt;}
.x15{left:35.440000pt;}
.xc{left:61.040000pt;}
.x5{left:79.360000pt;}
.x1b{left:83.039952pt;}
.x10{left:84.240000pt;}
.x11{left:86.080000pt;}
.x6{left:88.399947pt;}
.x1{left:90.706667pt;}
.x13{left:92.400000pt;}
.x2{left:94.486667pt;}
.x1d{left:95.680000pt;}
.x3a{left:100.480000pt;}
.x1c{left:102.080000pt;}
.x3b{left:110.799696pt;}
.x12{left:117.600000pt;}
.x2f{left:123.440000pt;}
.x30{left:146.960000pt;}
.x28{left:153.200000pt;}
.x31{left:154.320000pt;}
.x7{left:162.880000pt;}
.x1e{left:168.240000pt;}
.x37{left:170.240000pt;}
.x3c{left:173.119816pt;}
.x1f{left:174.400000pt;}
.x20{left:176.240000pt;}
.x4{left:180.874667pt;}
.x29{left:182.080000pt;}
.x2a{left:183.840000pt;}
.x2b{left:188.480000pt;}
.x21{left:189.840000pt;}
.x2e{left:191.360000pt;}
.x39{left:194.320000pt;}
.x3d{left:197.200264pt;}
.x38{left:203.280000pt;}
.x34{left:211.360000pt;}
.x22{left:212.480000pt;}
.x23{left:217.440000pt;}
.x2c{left:220.080000pt;}
.x8{left:224.160000pt;}
.x2d{left:225.120000pt;}
.x35{left:233.520000pt;}
.x24{left:240.160000pt;}
.x36{left:242.080000pt;}
.x19{left:245.600000pt;}
.x26{left:248.160000pt;}
.x32{left:255.440000pt;}
.x33{left:263.600000pt;}
.x25{left:266.240000pt;}
.xa{left:271.199880pt;}
.x27{left:320.480000pt;}
.x9{left:357.120000pt;}
.x17{left:370.319853pt;}
.x18{left:383.680002pt;}
.x3{left:404.408000pt;}
.x14{left:476.640000pt;}
.x1a{left:536.399712pt;}
.xb{left:560.960000pt;}
.xd{left:615.280000pt;}
.x16{left:621.760352pt;}
.xf{left:630.800000pt;}
}




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