
    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_c16a7646c509002378e9f7f0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5480c452245045896175d259.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_67abf937bd09c3327f94b11b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b762a45766bd1712726b5d9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_07d27ccacbee33e57fefda38.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5e071a70c7a9cd847a6b626b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894000;font-style:normal;font-weight: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_16af68dbb33a191a22f8356f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904297;font-style:normal;font-weight: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_a13eab99a44be005dd83dcaf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904297;font-style:normal;font-weight: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_ac8feba14eb5d39526f4ded5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.691406;font-style:normal;font-weight: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_6f78ee08c6d7dc4e9c9770e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f6d63e20c254d1b40f09bacf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;font-style:normal;font-weight: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_ca73b57b9ce32c9c77f93e2d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.724000;font-style:normal;font-weight: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_9a24b67ea177ff0553ffd587.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.917000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2c7d941b44f39e8bfad32060.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_586357838e9a0ae6f577e24b.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c9633adff21a181263c8eb3d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e5fbb9b67eae7f03bd785c14.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.779000;font-style:normal;font-weight: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_048f1b8514c06517546fffa1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.431000;font-style:normal;font-weight: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_7542dc0bec77370dd85becc3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.686000;font-style:normal;font-weight: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_f243a670b972464efd0fa059.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.932000;font-style:normal;font-weight: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_ff9c4f618379faf882653873.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.804000;font-style:normal;font-weight: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_600edfed7f21928e24d26df6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6e953ce083d65d1a2ab64a6f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.693000;font-style:normal;font-weight: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_ed992e7c9f9cc0ae08712611.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.887474;font-style:normal;font-weight: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_5465f8a4a4e78039bcf50ded.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.793000;font-style:normal;font-weight: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_8215f85b4164403ace6e3038.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.683000;font-style:normal;font-weight: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_ea3be499e3a98fb19f538d6c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.923000;font-style:normal;font-weight: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_32d76dbc2dff799a474c35d2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.923000;font-style:normal;font-weight: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_08b7335fc7ea53c15fd841af.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.432129;font-style:normal;font-weight: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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.432129;font-style:normal;font-weight: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_08b7335fc7ea53c15fd841af.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight: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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.432129;font-style:normal;font-weight: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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.575000;font-style:normal;font-weight: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_306dbade5fd275278b38b7dd.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.432129;font-style:normal;font-weight: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_bcc616b6c36fddeeecc11955.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight: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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.575000;font-style:normal;font-weight: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_a69990d8cb5f13638c5a0879.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight: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_bcc616b6c36fddeeecc11955.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-style:normal;font-weight: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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.575000;font-style:normal;font-weight: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_165b987cfbcb41d891bcc7ec.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.432129;font-style:normal;font-weight: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_bcc616b6c36fddeeecc11955.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.432129;font-style:normal;font-weight: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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.575000;font-style:normal;font-weight: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_165b987cfbcb41d891bcc7ec.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.432129;font-style:normal;font-weight: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_bcc616b6c36fddeeecc11955.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;font-style:normal;font-weight: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_d2c66f581f9e55ddc92fdd24.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;font-style:normal;font-weight: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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.575000;font-style:normal;font-weight: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_278d18ce17a5b8b2fc4b6bda.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_d2c66f581f9e55ddc92fdd24.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_85980cc62270900ae2c15331.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v13{vertical-align:-51.154080px;}
.v6{vertical-align:-45.432000px;}
.v19{vertical-align:-34.871232px;}
.v16{vertical-align:-33.718464px;}
.v12{vertical-align:-29.136211px;}
.v1a{vertical-align:-27.868166px;}
.v18{vertical-align:-25.447354px;}
.vb{vertical-align:-22.854000px;}
.v3{vertical-align:-17.934000px;}
.v17{vertical-align:-14.784250px;}
.v14{vertical-align:-10.605466px;}
.v1{vertical-align:-8.964000px;}
.v9{vertical-align:-5.976000px;}
.v15{vertical-align:-2.219078px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:11.958000px;}
.v4{vertical-align:21.696000px;}
.va{vertical-align:22.854000px;}
.v8{vertical-align:24.678000px;}
.ve{vertical-align:31.470000px;}
.vd{vertical-align:40.434000px;}
.v2{vertical-align:44.832000px;}
.vc{vertical-align:84.282000px;}
.v5{vertical-align:102.216000px;}
.v10{vertical-align:112.902000px;}
.vf{vertical-align:125.286000px;}
.v11{vertical-align:143.220000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000062px;}
.ls24{letter-spacing:0.000300px;}
.lsa9{letter-spacing:0.000312px;}
.ls59{letter-spacing:0.000557px;}
.ls5d{letter-spacing:0.000780px;}
.ls50{letter-spacing:0.000993px;}
.ls4d{letter-spacing:0.001002px;}
.ls49{letter-spacing:0.001490px;}
.ls5e{letter-spacing:0.001578px;}
.ls5b{letter-spacing:0.001670px;}
.ls19{letter-spacing:0.001866px;}
.ls36{letter-spacing:0.002023px;}
.ls6{letter-spacing:0.002245px;}
.ls35{letter-spacing:0.002685px;}
.ls75{letter-spacing:0.003181px;}
.ls1b{letter-spacing:0.003269px;}
.ls39{letter-spacing:0.003413px;}
.ls47{letter-spacing:0.003775px;}
.ls14{letter-spacing:0.004200px;}
.ls8{letter-spacing:0.004648px;}
.ls56{letter-spacing:0.005017px;}
.ls4c{letter-spacing:0.005282px;}
.ls80{letter-spacing:0.006062px;}
.ls63{letter-spacing:1.537682px;}
.ls1c{letter-spacing:2.144023px;}
.ls66{letter-spacing:2.966525px;}
.ls67{letter-spacing:2.972525px;}
.ls76{letter-spacing:2.984525px;}
.ls12{letter-spacing:2.988615px;}
.ls9{letter-spacing:2.989140px;}
.ls3{letter-spacing:2.990525px;}
.ls4a{letter-spacing:2.993282px;}
.ls87{letter-spacing:3.064403px;}
.ls53{letter-spacing:4.479897px;}
.ls1f{letter-spacing:5.402908px;}
.ls21{letter-spacing:5.408908px;}
.ls5c{letter-spacing:5.514413px;}
.ls5f{letter-spacing:5.760411px;}
.ls51{letter-spacing:6.005986px;}
.ls52{letter-spacing:6.240990px;}
.ls5{letter-spacing:6.433866px;}
.ls73{letter-spacing:7.173181px;}
.ls5a{letter-spacing:8.275316px;}
.ls37{letter-spacing:9.965823px;}
.ls70{letter-spacing:12.107039px;}
.ls4f{letter-spacing:12.285414px;}
.ls62{letter-spacing:12.287017px;}
.ls84{letter-spacing:12.517101px;}
.ls7{letter-spacing:12.949140px;}
.lsad{letter-spacing:13.278538px;}
.ls54{letter-spacing:13.281269px;}
.ls71{letter-spacing:13.282200px;}
.ls72{letter-spacing:13.284538px;}
.ls68{letter-spacing:13.449510px;}
.ls4b{letter-spacing:15.281282px;}
.ls45{letter-spacing:15.356004px;}
.ls44{letter-spacing:15.357414px;}
.ls4e{letter-spacing:15.363414px;}
.lsac{letter-spacing:16.268525px;}
.ls20{letter-spacing:16.599269px;}
.ls3c{letter-spacing:16.600618px;}
.ls17{letter-spacing:16.601306px;}
.lsd{letter-spacing:16.601607px;}
.lsf{letter-spacing:16.602300px;}
.ls10{letter-spacing:16.602538px;}
.ls15{letter-spacing:16.604245px;}
.ls3b{letter-spacing:16.604338px;}
.ls6d{letter-spacing:16.604400px;}
.ls1a{letter-spacing:16.605269px;}
.ls77{letter-spacing:16.606200px;}
.ls81{letter-spacing:16.608062px;}
.ls79{letter-spacing:16.608538px;}
.ls2b{letter-spacing:16.610245px;}
.lsab{letter-spacing:16.617617px;}
.lsa8{letter-spacing:16.666618px;}
.ls58{letter-spacing:16.891682px;}
.lsa{letter-spacing:17.618245px;}
.ls61{letter-spacing:18.347950px;}
.ls41{letter-spacing:18.348532px;}
.ls2f{letter-spacing:18.351109px;}
.ls64{letter-spacing:18.397002px;}
.ls42{letter-spacing:18.398004px;}
.ls3f{letter-spacing:18.447223px;}
.lsc{letter-spacing:18.746023px;}
.ls6f{letter-spacing:18.749039px;}
.ls2d{letter-spacing:18.752023px;}
.ls89{letter-spacing:18.792538px;}
.ls92{letter-spacing:18.799686px;}
.ls16{letter-spacing:18.884023px;}
.lse{letter-spacing:19.190245px;}
.lsb{letter-spacing:19.194300px;}
.ls95{letter-spacing:19.247743px;}
.ls25{letter-spacing:19.279409px;}
.ls55{letter-spacing:19.524990px;}
.ls78{letter-spacing:19.586525px;}
.ls3a{letter-spacing:19.588982px;}
.ls6c{letter-spacing:19.592525px;}
.ls3d{letter-spacing:19.594982px;}
.ls31{letter-spacing:19.845499px;}
.ls13{letter-spacing:19.856338px;}
.ls2e{letter-spacing:19.900200px;}
.ls1e{letter-spacing:20.024408px;}
.ls6b{letter-spacing:20.084602px;}
.ls6a{letter-spacing:20.114685px;}
.lsaa{letter-spacing:21.106379px;}
.ls26{letter-spacing:21.308245px;}
.ls69{letter-spacing:21.378532px;}
.ls3e{letter-spacing:21.698543px;}
.ls88{letter-spacing:21.782525px;}
.ls1{letter-spacing:22.595177px;}
.ls6e{letter-spacing:22.892525px;}
.ls27{letter-spacing:23.450023px;}
.ls22{letter-spacing:23.666245px;}
.ls30{letter-spacing:23.730913px;}
.ls7a{letter-spacing:23.876525px;}
.ls28{letter-spacing:24.295409px;}
.ls65{letter-spacing:24.375199px;}
.ls74{letter-spacing:24.473039px;}
.ls8e{letter-spacing:24.794080px;}
.ls4{letter-spacing:24.852615px;}
.ls32{letter-spacing:25.225303px;}
.ls33{letter-spacing:25.285079px;}
.lsa2{letter-spacing:26.317439px;}
.ls38{letter-spacing:26.325657px;}
.ls7f{letter-spacing:26.335866px;}
.lsa6{letter-spacing:26.640686px;}
.ls2{letter-spacing:27.138122px;}
.ls91{letter-spacing:27.272531px;}
.ls43{letter-spacing:28.188031px;}
.ls34{letter-spacing:28.303409px;}
.ls60{letter-spacing:29.866701px;}
.ls40{letter-spacing:29.872701px;}
.ls2c{letter-spacing:29.892300px;}
.ls7e{letter-spacing:30.399269px;}
.ls57{letter-spacing:32.402379px;}
.ls7d{letter-spacing:33.966062px;}
.ls7c{letter-spacing:33.968400px;}
.ls48{letter-spacing:36.794004px;}
.ls7b{letter-spacing:36.956525px;}
.ls96{letter-spacing:37.157517px;}
.ls93{letter-spacing:37.705082px;}
.ls2a{letter-spacing:43.169607px;}
.ls29{letter-spacing:43.172245px;}
.ls18{letter-spacing:46.490338px;}
.ls94{letter-spacing:50.500806px;}
.ls90{letter-spacing:53.526822px;}
.ls9e{letter-spacing:56.668115px;}
.ls8b{letter-spacing:59.088928px;}
.ls1d{letter-spacing:73.053269px;}
.ls99{letter-spacing:75.010614px;}
.ls23{letter-spacing:76.382338px;}
.ls9a{letter-spacing:91.424070px;}
.ls83{letter-spacing:92.490381px;}
.lsa0{letter-spacing:95.333451px;}
.lsa4{letter-spacing:95.973107px;}
.ls9f{letter-spacing:98.398317px;}
.lsa1{letter-spacing:105.192882px;}
.lsa5{letter-spacing:105.872258px;}
.lsa3{letter-spacing:106.694904px;}
.lsa7{letter-spacing:107.407010px;}
.ls46{letter-spacing:121.924701px;}
.ls8d{letter-spacing:139.263942px;}
.ls98{letter-spacing:146.036454px;}
.ls85{letter-spacing:146.641658px;}
.ls8c{letter-spacing:153.760000px;}
.ls9b{letter-spacing:161.714099px;}
.ls8a{letter-spacing:168.688346px;}
.ls9d{letter-spacing:170.129306px;}
.ls86{letter-spacing:172.867130px;}
.ls8f{letter-spacing:224.165306px;}
.ls82{letter-spacing:257.365024px;}
.ls97{letter-spacing:280.622118px;}
.ls9c{letter-spacing:352.410746px;}
.lsae{letter-spacing:525.026525px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd8{word-spacing:-84.624699px;}
.ws50{word-spacing:-59.775600px;}
.ws26{word-spacing:-58.246066px;}
.ws86{word-spacing:-55.293996px;}
.ws48{word-spacing:-47.324343px;}
.ws80{word-spacing:-46.505417px;}
.ws5c{word-spacing:-43.217759px;}
.ws55{word-spacing:-43.173062px;}
.wsaf{word-spacing:-43.171200px;}
.ws4f{word-spacing:-43.157983px;}
.ws7a{word-spacing:-43.027960px;}
.ws82{word-spacing:-39.961452px;}
.ws42{word-spacing:-38.937826px;}
.ws4{word-spacing:-38.742188px;}
.ws74{word-spacing:-36.071827px;}
.wsfe{word-spacing:-33.223278px;}
.wsa8{word-spacing:-29.371200px;}
.ws7e{word-spacing:-28.978289px;}
.ws43{word-spacing:-28.955301px;}
.ws104{word-spacing:-26.899125px;}
.ws84{word-spacing:-26.861944px;}
.ws85{word-spacing:-26.855944px;}
.ws11f{word-spacing:-22.416000px;}
.ws52{word-spacing:-22.320209px;}
.ws46{word-spacing:-16.605662px;}
.ws79{word-spacing:-15.359443px;}
.ws27{word-spacing:-13.163611px;}
.wsea{word-spacing:-12.848070px;}
.wsef{word-spacing:-12.799832px;}
.wsba{word-spacing:-9.614085px;}
.wse8{word-spacing:-8.008630px;}
.wsed{word-spacing:-7.978562px;}
.wsb7{word-spacing:-5.992780px;}
.wse5{word-spacing:-4.172337px;}
.ws3d{word-spacing:-3.335478px;}
.ws41{word-spacing:-3.215927px;}
.ws49{word-spacing:-3.156152px;}
.ws99{word-spacing:-3.096376px;}
.ws7b{word-spacing:-3.093408px;}
.ws91{word-spacing:-3.036600px;}
.ws4a{word-spacing:-2.618171px;}
.ws3f{word-spacing:-1.960640px;}
.ws8f{word-spacing:-1.900864px;}
.ws105{word-spacing:-1.721537px;}
.wsf0{word-spacing:-1.661762px;}
.ws11{word-spacing:-1.371859px;}
.wsf5{word-spacing:-1.362884px;}
.ws90{word-spacing:-1.303108px;}
.wscc{word-spacing:-0.944454px;}
.ws121{word-spacing:-0.896640px;}
.ws1c{word-spacing:-0.884679px;}
.ws5e{word-spacing:-0.824903px;}
.wsad{word-spacing:-0.705352px;}
.ws68{word-spacing:-0.645576px;}
.ws45{word-spacing:-0.585801px;}
.ws2e{word-spacing:-0.466250px;}
.ws3e{word-spacing:-0.406474px;}
.ws57{word-spacing:-0.346698px;}
.ws94{word-spacing:-0.227147px;}
.wsfd{word-spacing:-0.167372px;}
.ws23{word-spacing:-0.107596px;}
.ws54{word-spacing:-0.059776px;}
.ws8{word-spacing:-0.053798px;}
.ws29{word-spacing:-0.052421px;}
.ws6c{word-spacing:-0.041843px;}
.ws77{word-spacing:-0.035866px;}
.ws7f{word-spacing:-0.019133px;}
.ws47{word-spacing:-0.015471px;}
.ws3b{word-spacing:0.000000px;}
.ws22{word-spacing:0.011955px;}
.wsf2{word-spacing:0.051667px;}
.ws51{word-spacing:0.123345px;}
.wsc3{word-spacing:0.131506px;}
.wsf3{word-spacing:0.161316px;}
.wsb0{word-spacing:0.191282px;}
.ws8c{word-spacing:0.251058px;}
.ws14{word-spacing:0.370609px;}
.wsd1{word-spacing:0.609711px;}
.ws67{word-spacing:0.669487px;}
.ws2f{word-spacing:0.729262px;}
.ws73{word-spacing:0.774515px;}
.ws103{word-spacing:0.789038px;}
.ws10d{word-spacing:0.908589px;}
.ws4b{word-spacing:0.968365px;}
.ws21{word-spacing:1.028140px;}
.ws102{word-spacing:1.087916px;}
.wsf4{word-spacing:1.147692px;}
.ws34{word-spacing:1.207467px;}
.ws10a{word-spacing:1.267243px;}
.ws2b{word-spacing:1.386794px;}
.ws101{word-spacing:1.446570px;}
.ws12{word-spacing:1.506345px;}
.ws40{word-spacing:1.566121px;}
.ws5d{word-spacing:1.745448px;}
.ws5f{word-spacing:1.805223px;}
.wsc1{word-spacing:1.864999px;}
.wsd9{word-spacing:1.984550px;}
.wsca{word-spacing:2.104101px;}
.ws9f{word-spacing:2.125037px;}
.ws9d{word-spacing:2.172288px;}
.wscf{word-spacing:2.343204px;}
.wsa2{word-spacing:2.402979px;}
.ws6d{word-spacing:2.462755px;}
.ws4c{word-spacing:2.522530px;}
.ws4e{word-spacing:2.577345px;}
.ws4d{word-spacing:2.582306px;}
.wsc2{word-spacing:2.642082px;}
.ws60{word-spacing:2.881184px;}
.ws10b{word-spacing:2.940960px;}
.ws9{word-spacing:2.985811px;}
.wsf6{word-spacing:3.000735px;}
.ws9c{word-spacing:3.036576px;}
.ws7{word-spacing:3.039610px;}
.ws62{word-spacing:3.060511px;}
.ws10e{word-spacing:3.120286px;}
.ws1{word-spacing:3.239838px;}
.ws120{word-spacing:3.243140px;}
.ws5b{word-spacing:3.256635px;}
.ws8a{word-spacing:3.272460px;}
.wsae{word-spacing:3.273692px;}
.ws100{word-spacing:3.285667px;}
.wsff{word-spacing:3.288771px;}
.ws17{word-spacing:3.299613px;}
.ws98{word-spacing:3.359389px;}
.wsa1{word-spacing:3.419164px;}
.ws24{word-spacing:3.478940px;}
.wsa0{word-spacing:3.500776px;}
.wsd{word-spacing:3.523795px;}
.wsc8{word-spacing:3.538716px;}
.wsd6{word-spacing:3.598491px;}
.ws69{word-spacing:3.658267px;}
.ws0{word-spacing:3.741953px;}
.ws92{word-spacing:3.801728px;}
.ws25{word-spacing:3.837594px;}
.wse2{word-spacing:3.957145px;}
.ws1d{word-spacing:4.076696px;}
.ws19{word-spacing:4.136472px;}
.wsa3{word-spacing:4.241852px;}
.wsa5{word-spacing:4.256023px;}
.wsa4{word-spacing:4.269667px;}
.wsb2{word-spacing:4.315798px;}
.ws32{word-spacing:4.375574px;}
.ws8b{word-spacing:4.411469px;}
.ws5{word-spacing:4.483200px;}
.wsbc{word-spacing:4.554901px;}
.ws18{word-spacing:4.614676px;}
.ws5a{word-spacing:4.663781px;}
.ws58{word-spacing:4.674452px;}
.ws59{word-spacing:4.689667px;}
.ws61{word-spacing:4.853779px;}
.wscb{word-spacing:4.913554px;}
.ws10{word-spacing:4.922554px;}
.wsf1{word-spacing:4.973330px;}
.ws70{word-spacing:5.092881px;}
.wsf{word-spacing:5.137747px;}
.ws44{word-spacing:5.212432px;}
.wsc5{word-spacing:5.272208px;}
.ws97{word-spacing:5.331984px;}
.ws6{word-spacing:5.379825px;}
.ws2c{word-spacing:5.391759px;}
.ws114{word-spacing:5.451535px;}
.wsd2{word-spacing:5.571086px;}
.wsf9{word-spacing:5.690637px;}
.wsfa{word-spacing:5.750413px;}
.ws112{word-spacing:5.810188px;}
.ws36{word-spacing:5.929740px;}
.ws35{word-spacing:5.989515px;}
.ws93{word-spacing:6.109066px;}
.wsc{word-spacing:6.159917px;}
.wsc6{word-spacing:6.407944px;}
.ws72{word-spacing:6.587271px;}
.ws3c{word-spacing:6.647047px;}
.wsc4{word-spacing:6.706822px;}
.ws30{word-spacing:6.766598px;}
.ws1b{word-spacing:6.826374px;}
.wsb1{word-spacing:6.886149px;}
.wsc7{word-spacing:6.945925px;}
.ws53{word-spacing:7.005700px;}
.wsd5{word-spacing:7.065476px;}
.ws63{word-spacing:7.125252px;}
.ws64{word-spacing:7.185027px;}
.wsd3{word-spacing:7.304578px;}
.wse0{word-spacing:7.364354px;}
.wsce{word-spacing:7.483905px;}
.wsdb{word-spacing:7.543681px;}
.ws2d{word-spacing:7.603456px;}
.ws3{word-spacing:7.624462px;}
.ws88{word-spacing:7.723008px;}
.ws2{word-spacing:7.748438px;}
.ws89{word-spacing:7.782783px;}
.ws8d{word-spacing:7.842559px;}
.ws1f{word-spacing:7.962110px;}
.ws8e{word-spacing:8.021886px;}
.ws3a{word-spacing:8.201212px;}
.ws15{word-spacing:8.260988px;}
.ws107{word-spacing:8.320764px;}
.ws20{word-spacing:8.440315px;}
.wsda{word-spacing:8.559866px;}
.wse1{word-spacing:8.619642px;}
.ws6a{word-spacing:8.679417px;}
.wsb{word-spacing:8.742240px;}
.ws1a{word-spacing:9.038071px;}
.ws6b{word-spacing:9.097846px;}
.ws6f{word-spacing:9.217398px;}
.wsc9{word-spacing:9.396724px;}
.wsd4{word-spacing:9.516276px;}
.ws66{word-spacing:9.635827px;}
.wse4{word-spacing:9.815154px;}
.ws11b{word-spacing:10.054256px;}
.ws56{word-spacing:10.293358px;}
.ws31{word-spacing:10.353134px;}
.ws13{word-spacing:10.412910px;}
.ws38{word-spacing:10.472685px;}
.ws37{word-spacing:10.532461px;}
.ws96{word-spacing:10.891114px;}
.ws71{word-spacing:10.950890px;}
.ws6e{word-spacing:11.010666px;}
.ws95{word-spacing:11.070441px;}
.wscd{word-spacing:11.130217px;}
.ws39{word-spacing:11.189992px;}
.wsa9{word-spacing:11.488870px;}
.wsab{word-spacing:11.548646px;}
.wsd0{word-spacing:11.608422px;}
.wse{word-spacing:11.647354px;}
.ws1e{word-spacing:11.787748px;}
.ws9b{word-spacing:12.239136px;}
.ws117{word-spacing:12.325729px;}
.ws16{word-spacing:12.385504px;}
.ws11c{word-spacing:12.505056px;}
.ws65{word-spacing:12.803934px;}
.wsbe{word-spacing:12.806907px;}
.ws33{word-spacing:12.863709px;}
.wse3{word-spacing:13.102812px;}
.wsa7{word-spacing:13.640792px;}
.ws118{word-spacing:13.700568px;}
.wsa6{word-spacing:14.118997px;}
.ws109{word-spacing:15.302554px;}
.ws9e{word-spacing:17.440810px;}
.ws111{word-spacing:17.932680px;}
.ws78{word-spacing:18.311157px;}
.ws7c{word-spacing:18.318119px;}
.wse6{word-spacing:18.770969px;}
.wseb{word-spacing:19.160918px;}
.ws7d{word-spacing:19.636416px;}
.ws110{word-spacing:19.816076px;}
.ws10c{word-spacing:20.981236px;}
.ws10f{word-spacing:21.100787px;}
.ws2a{word-spacing:21.220338px;}
.ws106{word-spacing:21.280114px;}
.wsf8{word-spacing:21.801890px;}
.wsfb{word-spacing:22.251890px;}
.ws115{word-spacing:23.252708px;}
.ws113{word-spacing:23.611362px;}
.ws11e{word-spacing:24.687323px;}
.wsbb{word-spacing:24.911316px;}
.wsb9{word-spacing:25.314785px;}
.wsdf{word-spacing:25.430062px;}
.ws108{word-spacing:25.942610px;}
.ws116{word-spacing:26.241488px;}
.ws11a{word-spacing:27.496776px;}
.wse7{word-spacing:27.513511px;}
.wsec{word-spacing:27.870636px;}
.ws83{word-spacing:28.078234px;}
.ws75{word-spacing:28.079702px;}
.ws76{word-spacing:28.082765px;}
.wsb6{word-spacing:29.176212px;}
.wsa{word-spacing:29.810644px;}
.ws11d{word-spacing:29.828024px;}
.wsb5{word-spacing:30.761268px;}
.ws119{word-spacing:30.844210px;}
.ws9a{word-spacing:31.202863px;}
.ws87{word-spacing:38.075109px;}
.wsdd{word-spacing:38.917102px;}
.wsde{word-spacing:48.456603px;}
.wsb8{word-spacing:48.485422px;}
.wsbd{word-spacing:53.096148px;}
.wsd7{word-spacing:53.816974px;}
.wsbf{word-spacing:55.373211px;}
.wsfc{word-spacing:58.209869px;}
.wsc0{word-spacing:58.278186px;}
.wsaa{word-spacing:59.357134px;}
.wse9{word-spacing:60.134823px;}
.wsee{word-spacing:61.060108px;}
.wsb4{word-spacing:61.424897px;}
.wsac{word-spacing:77.668695px;}
.wsb3{word-spacing:281.782178px;}
.wsdc{word-spacing:292.871892px;}
.ws81{word-spacing:490.351202px;}
.wsf7{word-spacing:532.361494px;}
.ws28{word-spacing:683.529729px;}
._40{margin-left:-444.497773px;}
._36{margin-left:-428.503117px;}
._2d{margin-left:-413.430675px;}
._46{margin-left:-362.737702px;}
._28{margin-left:-309.940928px;}
._43{margin-left:-303.168416px;}
._1b{margin-left:-297.029926px;}
._34{margin-left:-285.703981px;}
._24{margin-left:-271.574172px;}
._19{margin-left:-268.585376px;}
._1d{margin-left:-260.804192px;}
._16{margin-left:-255.732013px;}
._2f{margin-left:-218.958714px;}
._21{margin-left:-205.825658px;}
._48{margin-left:-201.638374px;}
._1f{margin-left:-189.563130px;}
._3a{margin-left:-170.358069px;}
._44{margin-left:-151.348870px;}
._3b{margin-left:-136.622259px;}
._38{margin-left:-91.145562px;}
._39{margin-left:-87.860173px;}
._4d{margin-left:-76.243746px;}
._3f{margin-left:-75.039433px;}
._31{margin-left:-73.652307px;}
._17{margin-left:-64.458982px;}
._41{margin-left:-58.493408px;}
._4a{margin-left:-56.342715px;}
._23{margin-left:-40.856058px;}
._4b{margin-left:-36.802976px;}
._2a{margin-left:-26.994022px;}
._26{margin-left:-17.051398px;}
._4c{margin-left:-10.077724px;}
._3d{margin-left:-8.047696px;}
._13{margin-left:-6.886195px;}
._6{margin-left:-5.320028px;}
._2{margin-left:-3.967200px;}
._4e{margin-left:-2.929004px;}
._0{margin-left:-1.912819px;}
._1{width:1.434614px;}
._7{width:2.450800px;}
._3{width:3.471300px;}
._10{width:5.441224px;}
._9{width:9.982525px;}
._3e{width:11.297588px;}
._14{width:16.617617px;}
._50{width:17.633802px;}
._a{width:19.142018px;}
._49{width:20.421245px;}
._58{width:21.578992px;}
._c{width:22.595177px;}
._2e{width:24.794080px;}
._5{width:25.894963px;}
._33{width:27.272531px;}
._4f{width:29.828024px;}
._51{width:31.382190px;}
._54{width:32.642995px;}
._53{width:33.851211px;}
._11{width:36.817039px;}
._52{width:41.185388px;}
._55{width:42.440676px;}
._57{width:47.132227px;}
._3c{width:50.500806px;}
._32{width:53.526822px;}
._56{width:57.237042px;}
._42{width:64.506938px;}
._b{width:68.562613px;}
._4{width:80.625869px;}
._22{width:88.340416px;}
._25{width:126.064749px;}
._12{width:130.183519px;}
._1c{width:135.690362px;}
._2b{width:139.263942px;}
._15{width:142.996147px;}
._27{width:153.760000px;}
._8{width:170.487130px;}
._1e{width:174.481005px;}
._29{width:223.560102px;}
._30{width:230.793722px;}
._18{width:234.482579px;}
._45{width:238.373171px;}
._2c{width:253.647347px;}
._1a{width:255.462957px;}
._35{width:266.010784px;}
._37{width:272.005178px;}
._47{width:289.527251px;}
._e{width:344.763400px;}
._20{width:363.506138px;}
._f{width:445.733550px;}
._d{width:611.589358px;}
.fc4{color:rgb(236,0,140);}
.fc3{color:rgb(0,255,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:21.556762px;}
.fs14{font-size:28.699862px;}
.fs11{font-size:28.808023px;}
.fs8{font-size:29.887800px;}
.fse{font-size:34.583040px;}
.fsa{font-size:35.865600px;}
.fs9{font-size:37.360200px;}
.fsf{font-size:40.346880px;}
.fs7{font-size:41.842800px;}
.fs13{font-size:46.042560px;}
.fs10{font-size:46.216080px;}
.fs6{font-size:52.421040px;}
.fs15{font-size:53.716320px;}
.fs4{font-size:53.798400px;}
.fs12{font-size:53.918760px;}
.fsb{font-size:55.332720px;}
.fs5{font-size:58.246066px;}
.fs0{font-size:59.775600px;}
.fsc{font-size:64.554840px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.y1ab{bottom:-2.503371px;}
.y1c0{bottom:-2.493972px;}
.y1a8{bottom:-2.493743px;}
.y1bd{bottom:-2.484380px;}
.y1aa{bottom:-2.484114px;}
.y1bf{bottom:-2.474788px;}
.y1a9{bottom:-2.474486px;}
.y1be{bottom:-2.465195px;}
.y1a7{bottom:-2.108609px;}
.y1bc{bottom:-2.100692px;}
.y0{bottom:0.000000px;}
.yd4{bottom:2.276717px;}
.ycb{bottom:2.283922px;}
.yce{bottom:2.291126px;}
.yfb{bottom:2.298331px;}
.ycd{bottom:2.319946px;}
.y174{bottom:2.334355px;}
.y173{bottom:2.348765px;}
.ycc{bottom:2.370379px;}
.y152{bottom:2.478451px;}
.y154{bottom:2.564909px;}
.y14e{bottom:2.579318px;}
.y14d{bottom:2.975582px;}
.y156{bottom:3.033221px;}
.y109{bottom:3.436690px;}
.y157{bottom:4.474181px;}
.y10e{bottom:5.273914px;}
.y15a{bottom:5.691792px;}
.y103{bottom:6.167309px;}
.y15e{bottom:6.967042px;}
.ye5{bottom:8.789856px;}
.y15b{bottom:9.150096px;}
.y183{bottom:9.805733px;}
.y106{bottom:10.238021px;}
.y178{bottom:10.785586px;}
.y10b{bottom:10.987320px;}
.y100{bottom:11.578114px;}
.y160{bottom:11.671776px;}
.y14f{bottom:11.880715px;}
.y101{bottom:12.082450px;}
.y107{bottom:13.148760px;}
.yd2{bottom:13.487386px;}
.y10f{bottom:13.804397px;}
.y10c{bottom:14.568106px;}
.y161{bottom:14.640154px;}
.y10d{bottom:17.291520px;}
.y108{bottom:17.803061px;}
.y1c3{bottom:17.956598px;}
.y1b3{bottom:18.024271px;}
.y110{bottom:18.278578px;}
.yea{bottom:18.609998px;}
.ydd{bottom:19.265635px;}
.y105{bottom:19.748357px;}
.yff{bottom:20.108597px;}
.y10a{bottom:20.721005px;}
.y104{bottom:21.030811px;}
.y102{bottom:21.290184px;}
.yfe{bottom:21.470304px;}
.ybb{bottom:21.579761px;}
.y15c{bottom:22.212398px;}
.y17c{bottom:25.440149px;}
.ydc{bottom:26.600122px;}
.ye4{bottom:27.976238px;}
.yeb{bottom:32.147818px;}
.ye7{bottom:32.760226px;}
.y32{bottom:33.951360px;}
.ycf{bottom:34.237210px;}
.yde{bottom:37.263226px;}
.y182{bottom:38.084573px;}
.ye8{bottom:40.282037px;}
.yd8{bottom:42.616392px;}
.y180{bottom:44.424797px;}
.y1c1{bottom:45.582134px;}
.y1ac{bottom:45.753919px;}
.yfc{bottom:47.054549px;}
.y17b{bottom:48.841339px;}
.yee{bottom:50.765021px;}
.y189{bottom:50.894707px;}
.yd0{bottom:51.053213px;}
.y111{bottom:52.040270px;}
.yd7{bottom:52.422125px;}
.y33{bottom:52.525882px;}
.y162{bottom:52.998509px;}
.y176{bottom:53.582098px;}
.yb9{bottom:54.779393px;}
.y181{bottom:56.291102px;}
.yed{bottom:58.502976px;}
.y155{bottom:59.180227px;}
.y17e{bottom:59.324323px;}
.y2f{bottom:60.343898px;}
.y186{bottom:61.932461px;}
.ye6{bottom:63.005976px;}
.y1b5{bottom:66.310879px;}
.y1a0{bottom:66.560784px;}
.y177{bottom:66.666014px;}
.ye9{bottom:67.581024px;}
.y15f{bottom:70.542197px;}
.y187{bottom:71.349134px;}
.ye0{bottom:71.500435px;}
.y151{bottom:74.295898px;}
.y17f{bottom:74.411174px;}
.yd6{bottom:77.653334px;}
.y175{bottom:78.813307px;}
.yb3{bottom:79.690644px;}
.ye2{bottom:82.134720px;}
.y1a1{bottom:83.256342px;}
.yd3{bottom:83.273078px;}
.y1b6{bottom:83.778275px;}
.y1ad{bottom:84.094009px;}
.yef{bottom:85.974878px;}
.y184{bottom:87.423043px;}
.ydb{bottom:88.827979px;}
.y17a{bottom:90.312168px;}
.y150{bottom:92.718571px;}
.y153{bottom:93.914568px;}
.yd9{bottom:94.044254px;}
.yec{bottom:95.081746px;}
.y159{bottom:95.110565px;}
.y1c4{bottom:95.691787px;}
.y1b4{bottom:96.052420px;}
.y179{bottom:96.587549px;}
.ydf{bottom:96.933379px;}
.yda{bottom:99.339782px;}
.y1a2{bottom:99.951901px;}
.y188{bottom:100.535779px;}
.y1b7{bottom:101.236079px;}
.y1ae{bottom:101.617606px;}
.ye3{bottom:102.978206px;}
.y185{bottom:103.021435px;}
.y163{bottom:103.050254px;}
.ye1{bottom:103.965264px;}
.y15d{bottom:104.801021px;}
.y17d{bottom:105.449453px;}
.yd5{bottom:106.025837px;}
.yb4{bottom:115.553164px;}
.y1a3{bottom:116.637832px;}
.y1b8{bottom:118.693883px;}
.y1af{bottom:119.141203px;}
.y1a4{bottom:133.333391px;}
.y1b9{bottom:136.161279px;}
.y1b0{bottom:136.674428px;}
.y1a5{bottom:150.028950px;}
.yb5{bottom:151.404155px;}
.y1ba{bottom:153.619083px;}
.y1b1{bottom:154.198025px;}
.y35{bottom:163.975925px;}
.ybc{bottom:166.989538px;}
.y1c2{bottom:181.244619px;}
.y1b2{bottom:181.927673px;}
.yd1{bottom:182.605656px;}
.yb6{bottom:187.255147px;}
.yb7{bottom:223.117666px;}
.yb8{bottom:258.968657px;}
.y2b{bottom:266.956500px;}
.y34{bottom:267.158006px;}
.y1f5{bottom:269.856000px;}
.y9d{bottom:272.670000px;}
.y9c{bottom:283.395000px;}
.y2a{bottom:284.889000px;}
.yba{bottom:292.168289px;}
.y1f4{bottom:300.660000px;}
.y74{bottom:301.222500px;}
.y29{bottom:302.821500px;}
.yf0{bottom:302.823000px;}
.y9b{bottom:305.547000px;}
.y31{bottom:308.818171px;}
.y1d3{bottom:309.322500px;}
.y9a{bottom:316.272000px;}
.y28{bottom:320.755500px;}
.y30{bottom:326.291851px;}
.y99{bottom:338.424000px;}
.y27{bottom:338.688000px;}
.y1f3{bottom:343.419000px;}
.y1d2{bottom:348.700500px;}
.y136{bottom:355.458000px;}
.y26{bottom:356.620500px;}
.y98{bottom:359.887500px;}
.y1f2{bottom:361.351500px;}
.y19e{bottom:365.250000px;}
.y73{bottom:365.262000px;}
.y1d1{bottom:366.633000px;}
.y219{bottom:367.287000px;}
.y53{bottom:368.604000px;}
.yca{bottom:373.667551px;}
.y25{bottom:374.553000px;}
.y11b{bottom:375.736500px;}
.y97{bottom:377.820000px;}
.y1f1{bottom:378.018000px;}
.y172{bottom:380.664000px;}
.y72{bottom:383.194500px;}
.y1d0{bottom:384.565500px;}
.y218{bottom:385.221000px;}
.y14b{bottom:388.357500px;}
.y135{bottom:390.160500px;}
.y24{bottom:392.485500px;}
.y96{bottom:395.752500px;}
.y1f0{bottom:395.950500px;}
.y19d{bottom:397.789500px;}
.y71{bottom:399.633000px;}
.y1cf{bottom:402.498000px;}
.yb1{bottom:402.828000px;}
.y217{bottom:403.153500px;}
.y134{bottom:408.094500px;}
.y22f{bottom:409.131000px;}
.y23{bottom:410.418000px;}
.y1ef{bottom:412.618500px;}
.y95{bottom:413.685000px;}
.y70{bottom:416.071500px;}
.y216{bottom:421.086000px;}
.y11a{bottom:424.741500px;}
.y22{bottom:428.352000px;}
.y171{bottom:429.660000px;}
.y1ee{bottom:430.551000px;}
.y52{bottom:431.395500px;}
.y6f{bottom:432.508500px;}
.y14a{bottom:438.028500px;}
.y215{bottom:439.018500px;}
.y19c{bottom:442.285500px;}
.yb0{bottom:442.716000px;}
.y133{bottom:442.797000px;}
.y94{bottom:443.820000px;}
.y22e{bottom:444.996000px;}
.y21{bottom:446.284500px;}
.y1ed{bottom:447.219000px;}
.y6e{bottom:448.947000px;}
.y51{bottom:449.329500px;}
.y1ce{bottom:453.781500px;}
.y214{bottom:456.951000px;}
.y119{bottom:458.328000px;}
.y19b{bottom:460.218000px;}
.y93{bottom:461.752500px;}
.y22d{bottom:462.928500px;}
.y1ec{bottom:463.885500px;}
.y20{bottom:464.217000px;}
.y6d{bottom:465.385500px;}
.y50{bottom:467.262000px;}
.y170{bottom:474.625500px;}
.y213{bottom:474.883500px;}
.y118{bottom:476.260500px;}
.y132{bottom:477.499500px;}
.y19a{bottom:478.150500px;}
.y92{bottom:479.685000px;}
.y1eb{bottom:480.553500px;}
.y22c{bottom:480.862500px;}
.y1f{bottom:482.149500px;}
.yaf{bottom:482.602500px;}
.y149{bottom:483.499500px;}
.y4f{bottom:485.200500px;}
.y6c{bottom:486.964500px;}
.y212{bottom:492.817500px;}
.y199{bottom:496.083000px;}
.y1ea{bottom:497.220000px;}
.y91{bottom:497.617500px;}
.y22b{bottom:498.795000px;}
.y1e{bottom:500.082000px;}
.y117{bottom:509.847000px;}
.y211{bottom:510.750000px;}
.y4e{bottom:512.115000px;}
.y131{bottom:512.203500px;}
.y198{bottom:514.015500px;}
.y1e9{bottom:515.152500px;}
.y90{bottom:515.550000px;}
.y22a{bottom:516.727500px;}
.y1d{bottom:518.014500px;}
.y37{bottom:518.016000px;}
.yae{bottom:522.489000px;}
.y16f{bottom:523.621500px;}
.y210{bottom:528.682500px;}
.y4d{bottom:530.065500px;}
.y1e8{bottom:531.820500px;}
.y197{bottom:531.949500px;}
.y148{bottom:533.170500px;}
.y229{bottom:534.660000px;}
.y1c{bottom:535.948500px;}
.y116{bottom:543.435000px;}
.y6b{bottom:544.248000px;}
.yc9{bottom:545.697000px;}
.y20f{bottom:546.615000px;}
.y130{bottom:546.906000px;}
.y4c{bottom:547.998000px;}
.y1e7{bottom:548.488500px;}
.y8f{bottom:549.222000px;}
.y196{bottom:549.882000px;}
.y228{bottom:552.592500px;}
.y1b{bottom:553.881000px;}
.y115{bottom:561.367500px;}
.y6a{bottom:562.180500px;}
.yad{bottom:562.375500px;}
.yc8{bottom:563.629500px;}
.y20e{bottom:564.547500px;}
.y12f{bottom:564.838500px;}
.y4b{bottom:565.930500px;}
.y227{bottom:570.525000px;}
.y1a{bottom:571.813500px;}
.y16e{bottom:572.616000px;}
.y1e6{bottom:573.772500px;}
.y195{bottom:578.601000px;}
.y69{bottom:580.113000px;}
.yac{bottom:580.308000px;}
.yc7{bottom:581.562000px;}
.y20d{bottom:582.481500px;}
.y12e{bottom:582.772500px;}
.y147{bottom:582.840000px;}
.y4a{bottom:583.863000px;}
.y19{bottom:589.746000px;}
.y16d{bottom:590.550000px;}
.y1e5{bottom:591.705000px;}
.y8e{bottom:594.849000px;}
.y114{bottom:595.191000px;}
.yab{bottom:598.240500px;}
.y68{bottom:598.741500px;}
.yc6{bottom:599.496000px;}
.y20c{bottom:600.414000px;}
.y12d{bottom:600.705000px;}
.y146{bottom:600.772500px;}
.y226{bottom:606.391500px;}
.y194{bottom:607.321500px;}
.y18{bottom:607.678500px;}
.y16c{bottom:608.482500px;}
.y8d{bottom:612.781500px;}
.y113{bottom:613.123500px;}
.yaa{bottom:616.173000px;}
.y67{bottom:616.674000px;}
.y49{bottom:616.756500px;}
.yc5{bottom:617.428500px;}
.y1e4{bottom:618.253500px;}
.y20b{bottom:618.346500px;}
.y12c{bottom:618.637500px;}
.y145{bottom:618.705000px;}
.y36{bottom:623.704500px;}
.y17{bottom:625.612500px;}
.y16b{bottom:626.415000px;}
.y8c{bottom:630.714000px;}
.y112{bottom:631.056000px;}
.y66{bottom:634.606500px;}
.yc4{bottom:635.361000px;}
.y193{bottom:636.040500px;}
.y20a{bottom:636.279000px;}
.ybe{bottom:636.421500px;}
.y1e3{bottom:642.523500px;}
.y16a{bottom:644.347500px;}
.y8b{bottom:648.648000px;}
.yfd{bottom:649.225500px;}
.y48{bottom:649.645500px;}
.y2e{bottom:651.201000px;}
.y65{bottom:652.539000px;}
.yc3{bottom:653.293500px;}
.y12b{bottom:653.340000px;}
.y209{bottom:654.211500px;}
.ybd{bottom:654.354000px;}
.y1cd{bottom:657.540000px;}
.y225{bottom:660.189000px;}
.y16{bottom:660.855000px;}
.ya9{bottom:662.382000px;}
.y192{bottom:664.761000px;}
.y47{bottom:667.578000px;}
.y144{bottom:668.376000px;}
.y64{bottom:670.471500px;}
.y208{bottom:672.144000px;}
.y1cc{bottom:675.472500px;}
.y8a{bottom:676.341000px;}
.y224{bottom:678.121500px;}
.yc2{bottom:683.860500px;}
.y143{bottom:686.308500px;}
.y1e2{bottom:687.006000px;}
.y12a{bottom:688.044000px;}
.y63{bottom:688.405500px;}
.y207{bottom:690.078000px;}
.y169{bottom:693.343500px;}
.y191{bottom:693.480000px;}
.y223{bottom:696.055500px;}
.y46{bottom:700.465500px;}
.y1cb{bottom:701.530500px;}
.yc1{bottom:701.793000px;}
.yfa{bottom:702.137551px;}
.y142{bottom:704.241000px;}
.y1e1{bottom:704.938500px;}
.y129{bottom:705.976500px;}
.y62{bottom:707.032500px;}
.y206{bottom:708.010500px;}
.ya8{bottom:708.589500px;}
.y15{bottom:710.824500px;}
.y168{bottom:711.276000px;}
.y222{bottom:713.988000px;}
.y89{bottom:718.980000px;}
.y1ca{bottom:719.464500px;}
.yc0{bottom:719.727000px;}
.y190{bottom:722.200500px;}
.y45{bottom:722.881500px;}
.y128{bottom:723.909000px;}
.y205{bottom:725.943000px;}
.ya7{bottom:726.522000px;}
.y14{bottom:727.263000px;}
.y167{bottom:729.208500px;}
.y221{bottom:731.920500px;}
.y1e0{bottom:735.742500px;}
.y88{bottom:736.912500px;}
.y1c9{bottom:737.397000px;}
.y61{bottom:737.517000px;}
.ybf{bottom:737.659500px;}
.y127{bottom:741.841500px;}
.y13{bottom:743.700000px;}
.y204{bottom:743.875500px;}
.ya6{bottom:744.456000px;}
.y166{bottom:747.141000px;}
.y220{bottom:749.853000px;}
.y18f{bottom:750.919500px;}
.y141{bottom:753.910500px;}
.y87{bottom:754.845000px;}
.y1c8{bottom:755.329500px;}
.y60{bottom:755.376000px;}
.yb2{bottom:755.592000px;}
.y44{bottom:755.769000px;}
.y126{bottom:759.774000px;}
.y12{bottom:760.138500px;}
.y203{bottom:761.808000px;}
.y165{bottom:765.073500px;}
.y21f{bottom:767.785500px;}
.y140{bottom:771.844500px;}
.y1c7{bottom:773.262000px;}
.y43{bottom:773.701500px;}
.y6{bottom:773.947500px;}
.y11{bottom:776.577000px;}
.y125{bottom:777.708000px;}
.y1df{bottom:778.500000px;}
.y18e{bottom:779.640000px;}
.y202{bottom:779.740500px;}
.y86{bottom:782.539500px;}
.ya5{bottom:784.342500px;}
.y21e{bottom:785.719500px;}
.y1c6{bottom:791.194500px;}
.y42{bottom:791.635500px;}
.y10{bottom:793.015500px;}
.y124{bottom:795.640500px;}
.y1de{bottom:796.434000px;}
.y18d{bottom:797.572500px;}
.y201{bottom:797.674500px;}
.y5f{bottom:802.261500px;}
.ya4{bottom:802.275000px;}
.y21d{bottom:803.652000px;}
.y1c5{bottom:809.127000px;}
.yf{bottom:809.454000px;}
.y41{bottom:809.568000px;}
.y1dd{bottom:814.366500px;}
.y164{bottom:815.110500px;}
.y18c{bottom:815.505000px;}
.y200{bottom:815.607000px;}
.y5{bottom:819.768000px;}
.y5e{bottom:820.194000px;}
.y13f{bottom:821.514000px;}
.y21c{bottom:821.584500px;}
.y85{bottom:825.177000px;}
.ye{bottom:825.892500px;}
.y19f{bottom:827.061000px;}
.y40{bottom:827.506500px;}
.y123{bottom:827.811000px;}
.y1dc{bottom:832.299000px;}
.y1ff{bottom:833.539500px;}
.y5d{bottom:838.128000px;}
.y13e{bottom:839.446500px;}
.ya3{bottom:841.816500px;}
.y84{bottom:843.109500px;}
.y18b{bottom:844.225500px;}
.y3f{bottom:845.439000px;}
.y1db{bottom:850.231500px;}
.y1fe{bottom:851.472000px;}
.y5c{bottom:856.060500px;}
.y4{bottom:857.127000px;}
.y13d{bottom:857.379000px;}
.y21b{bottom:857.449500px;}
.y83{bottom:861.042000px;}
.y18a{bottom:862.158000px;}
.y3e{bottom:863.371500px;}
.ya2{bottom:864.232500px;}
.y1fd{bottom:869.404500px;}
.yd{bottom:871.222500px;}
.y5b{bottom:873.993000px;}
.y122{bottom:874.926000px;}
.y13c{bottom:875.313000px;}
.y1da{bottom:876.781500px;}
.yf9{bottom:877.425000px;}
.y82{bottom:878.976000px;}
.y158{bottom:880.090500px;}
.y3d{bottom:881.304000px;}
.y1fc{bottom:887.337000px;}
.yc{bottom:887.661000px;}
.ya1{bottom:891.193500px;}
.y5a{bottom:892.620000px;}
.y121{bottom:892.858500px;}
.y3{bottom:894.487500px;}
.yf8{bottom:895.357500px;}
.y81{bottom:896.908500px;}
.y13b{bottom:897.444000px;}
.y1bb{bottom:897.506117px;}
.y1a6{bottom:897.771602px;}
.y3c{bottom:899.236500px;}
.ya0{bottom:901.444500px;}
.y1d9{bottom:903.330000px;}
.y1fb{bottom:905.271000px;}
.y59{bottom:910.552500px;}
.y120{bottom:910.791000px;}
.y21a{bottom:911.248500px;}
.yf7{bottom:913.290000px;}
.y13a{bottom:915.376500px;}
.y3b{bottom:917.170500px;}
.y1fa{bottom:923.203500px;}
.y80{bottom:924.601500px;}
.y58{bottom:928.486500px;}
.y11f{bottom:928.723500px;}
.yb{bottom:929.598000px;}
.y1d8{bottom:929.880000px;}
.yf6{bottom:931.222500px;}
.y7a{bottom:931.927500px;}
.y14c{bottom:933.002551px;}
.y139{bottom:933.309000px;}
.y3a{bottom:935.103000px;}
.y9f{bottom:938.953500px;}
.y1f9{bottom:941.136000px;}
.ya{bottom:946.036500px;}
.y57{bottom:946.419000px;}
.y11e{bottom:947.113500px;}
.yf5{bottom:949.155000px;}
.y79{bottom:949.860000px;}
.y138{bottom:951.241500px;}
.y1d7{bottom:956.430000px;}
.y1f8{bottom:959.068500px;}
.y9e{bottom:961.369500px;}
.y9{bottom:962.475000px;}
.y56{bottom:964.351500px;}
.y11d{bottom:965.046000px;}
.yf4{bottom:967.087500px;}
.y7f{bottom:967.240500px;}
.y137{bottom:969.174000px;}
.y39{bottom:970.996500px;}
.y1d6{bottom:974.362500px;}
.y1f7{bottom:977.001000px;}
.y55{bottom:982.284000px;}
.y11c{bottom:982.978500px;}
.yf3{bottom:985.021500px;}
.y7e{bottom:985.173000px;}
.y1d5{bottom:992.295000px;}
.y8{bottom:993.795000px;}
.y1f6{bottom:994.935000px;}
.y54{bottom:1000.912500px;}
.yf2{bottom:1002.954000px;}
.y7d{bottom:1003.105500px;}
.y1d4{bottom:1010.227500px;}
.y78{bottom:1012.419000px;}
.y38{bottom:1018.845000px;}
.yf1{bottom:1020.886500px;}
.y7c{bottom:1021.038000px;}
.y77{bottom:1028.857500px;}
.y2{bottom:1036.777500px;}
.y7b{bottom:1038.970500px;}
.y76{bottom:1045.296000px;}
.y7{bottom:1045.743000px;}
.y2d{bottom:1054.710000px;}
.y75{bottom:1067.712000px;}
.y1{bottom:1072.642500px;}
.y2c{bottom:1111.497000px;}
.h1c{height:23.001065px;}
.h20{height:23.289257px;}
.h16{height:23.850624px;}
.h10{height:29.833916px;}
.h2a{height:30.622753px;}
.h2b{height:30.661122px;}
.h24{height:30.738161px;}
.h25{height:30.776674px;}
.ha{height:35.757907px;}
.h1e{height:36.069030px;}
.h7{height:37.336090px;}
.h11{height:37.658880px;}
.h6{height:40.348800px;}
.h15{height:41.484266px;}
.h1f{height:42.080535px;}
.h9{height:42.290967px;}
.h2{height:44.831700px;}
.hb{height:47.223024px;}
.h28{height:48.020951px;}
.h12{height:48.103382px;}
.h22{height:48.201927px;}
.he{height:51.105488px;}
.hd{height:51.111488px;}
.h14{height:51.147331px;}
.h13{height:51.153331px;}
.hc{height:51.529916px;}
.h4{height:53.798400px;}
.h2d{height:54.135331px;}
.h2e{height:54.141331px;}
.h2c{height:56.024443px;}
.h26{height:56.235582px;}
.h19{height:57.710298px;}
.h5{height:64.557900px;}
.h1a{height:67.328681px;}
.h29{height:87.308204px;}
.h23{height:87.637242px;}
.h3{height:92.981250px;}
.hf{height:104.607024px;}
.h1b{height:112.049050px;}
.h17{height:145.611024px;}
.h1d{height:207.498240px;}
.h27{height:213.906060px;}
.h21{height:214.712205px;}
.h18{height:331.996320px;}
.h8{height:369.131490px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:85.759713px;}
.wc{width:86.157140px;}
.w5{width:143.173786px;}
.wa{width:156.470316px;}
.wd{width:156.602257px;}
.w7{width:207.498240px;}
.w8{width:254.188440px;}
.wb{width:254.193300px;}
.w4{width:297.136706px;}
.w3{width:414.995400px;}
.w6{width:414.996480px;}
.w2{width:414.999900px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x5c{left:-2.609283px;}
.x0{left:0.000000px;}
.x29{left:3.170112px;}
.x53{left:4.178784px;}
.x31{left:9.337421px;}
.x56{left:13.163170px;}
.x27{left:14.939834px;}
.x3b{left:18.112867px;}
.x5b{left:20.681696px;}
.x3d{left:22.868035px;}
.x57{left:25.735546px;}
.x5e{left:26.920867px;}
.x4b{left:28.804790px;}
.x2e{left:30.087245px;}
.x24{left:32.231309px;}
.x58{left:33.668030px;}
.x37{left:35.029738px;}
.x12{left:38.354728px;}
.xf{left:39.518183px;}
.x2d{left:41.823864px;}
.x11{left:43.739533px;}
.x2c{left:45.001181px;}
.x36{left:46.881634px;}
.x5d{left:48.815735px;}
.x52{left:54.417854px;}
.xe{left:55.583776px;}
.x10{left:57.178249px;}
.x23{left:58.445186px;}
.x4a{left:60.902174px;}
.x4e{left:64.843200px;}
.x3c{left:65.995968px;}
.x33{left:71.774218px;}
.x54{left:76.457338px;}
.x3a{left:79.051066px;}
.x51{left:80.600098px;}
.x4d{left:82.545394px;}
.x2b{left:83.827848px;}
.x45{left:85.794758px;}
.x4f{left:86.868274px;}
.x30{left:88.460534px;}
.x2f{left:89.894290px;}
.x46{left:91.162334px;}
.x42{left:92.480813px;}
.x47{left:95.795021px;}
.x34{left:99.159662px;}
.x4c{left:101.068934px;}
.x49{left:104.527238px;}
.x35{left:106.551787px;}
.x41{left:108.446650px;}
.x2a{left:110.860258px;}
.x40{left:114.397814px;}
.x50{left:116.977133px;}
.x3e{left:118.007419px;}
.x38{left:119.030501px;}
.x48{left:121.523362px;}
.x39{left:124.275595px;}
.x55{left:130.205146px;}
.x3f{left:131.458781px;}
.x28{left:135.738432px;}
.x13{left:163.058557px;}
.x26{left:166.989538px;}
.x25{left:172.050176px;}
.x1{left:202.147500px;}
.x1e{left:206.266500px;}
.x63{left:208.468500px;}
.x1c{left:210.618000px;}
.x59{left:211.929612px;}
.x1b{left:213.355500px;}
.x1f{left:217.090500px;}
.xa{left:224.563500px;}
.x64{left:227.551500px;}
.x43{left:237.585485px;}
.x6{left:244.552500px;}
.x68{left:247.755000px;}
.x2{left:248.844000px;}
.xc{left:254.020500px;}
.x4{left:257.728500px;}
.x5a{left:258.993278px;}
.x66{left:263.218500px;}
.x5{left:317.610000px;}
.xd{left:319.739221px;}
.x3{left:328.056000px;}
.x1d{left:347.955000px;}
.x62{left:351.726000px;}
.x7{left:355.804500px;}
.x14{left:358.201500px;}
.x22{left:363.535970px;}
.x18{left:367.866000px;}
.x9{left:376.699500px;}
.x61{left:378.718500px;}
.x20{left:391.000500px;}
.x19{left:392.565000px;}
.x65{left:393.721500px;}
.x8{left:397.969500px;}
.x16{left:404.760000px;}
.x17{left:407.338500px;}
.x44{left:409.645740px;}
.x15{left:415.750500px;}
.x67{left:419.430000px;}
.x1a{left:422.334000px;}
.x32{left:452.182879px;}
.x5f{left:461.308500px;}
.x21{left:489.252000px;}
.x60{left:517.940849px;}
.xb{left:564.090000px;}
@media print{
.v13{vertical-align:-45.470293pt;}
.v6{vertical-align:-40.384000pt;}
.v19{vertical-align:-30.996651pt;}
.v16{vertical-align:-29.971968pt;}
.v12{vertical-align:-25.898854pt;}
.v1a{vertical-align:-24.771703pt;}
.v18{vertical-align:-22.619870pt;}
.vb{vertical-align:-20.314667pt;}
.v3{vertical-align:-15.941333pt;}
.v17{vertical-align:-13.141555pt;}
.v14{vertical-align:-9.427081pt;}
.v1{vertical-align:-7.968000pt;}
.v9{vertical-align:-5.312000pt;}
.v15{vertical-align:-1.972514pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:10.629333pt;}
.v4{vertical-align:19.285333pt;}
.va{vertical-align:20.314667pt;}
.v8{vertical-align:21.936000pt;}
.ve{vertical-align:27.973333pt;}
.vd{vertical-align:35.941333pt;}
.v2{vertical-align:39.850667pt;}
.vc{vertical-align:74.917333pt;}
.v5{vertical-align:90.858667pt;}
.v10{vertical-align:100.357333pt;}
.vf{vertical-align:111.365333pt;}
.v11{vertical-align:127.306667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000055pt;}
.ls24{letter-spacing:0.000267pt;}
.lsa9{letter-spacing:0.000278pt;}
.ls59{letter-spacing:0.000495pt;}
.ls5d{letter-spacing:0.000693pt;}
.ls50{letter-spacing:0.000882pt;}
.ls4d{letter-spacing:0.000891pt;}
.ls49{letter-spacing:0.001324pt;}
.ls5e{letter-spacing:0.001403pt;}
.ls5b{letter-spacing:0.001485pt;}
.ls19{letter-spacing:0.001659pt;}
.ls36{letter-spacing:0.001799pt;}
.ls6{letter-spacing:0.001995pt;}
.ls35{letter-spacing:0.002387pt;}
.ls75{letter-spacing:0.002827pt;}
.ls1b{letter-spacing:0.002906pt;}
.ls39{letter-spacing:0.003033pt;}
.ls47{letter-spacing:0.003355pt;}
.ls14{letter-spacing:0.003733pt;}
.ls8{letter-spacing:0.004132pt;}
.ls56{letter-spacing:0.004460pt;}
.ls4c{letter-spacing:0.004695pt;}
.ls80{letter-spacing:0.005388pt;}
.ls63{letter-spacing:1.366828pt;}
.ls1c{letter-spacing:1.905799pt;}
.ls66{letter-spacing:2.636911pt;}
.ls67{letter-spacing:2.642245pt;}
.ls76{letter-spacing:2.652911pt;}
.ls12{letter-spacing:2.656546pt;}
.ls9{letter-spacing:2.657014pt;}
.ls3{letter-spacing:2.658245pt;}
.ls4a{letter-spacing:2.660695pt;}
.ls87{letter-spacing:2.723914pt;}
.ls53{letter-spacing:3.982130pt;}
.ls1f{letter-spacing:4.802585pt;}
.ls21{letter-spacing:4.807919pt;}
.ls5c{letter-spacing:4.901700pt;}
.ls5f{letter-spacing:5.120365pt;}
.ls51{letter-spacing:5.338654pt;}
.ls52{letter-spacing:5.547547pt;}
.ls5{letter-spacing:5.718992pt;}
.ls73{letter-spacing:6.376161pt;}
.ls5a{letter-spacing:7.355836pt;}
.ls37{letter-spacing:8.858510pt;}
.ls70{letter-spacing:10.761812pt;}
.ls4f{letter-spacing:10.920368pt;}
.ls62{letter-spacing:10.921793pt;}
.ls84{letter-spacing:11.126312pt;}
.ls7{letter-spacing:11.510347pt;}
.lsad{letter-spacing:11.803145pt;}
.ls54{letter-spacing:11.805573pt;}
.ls71{letter-spacing:11.806400pt;}
.ls72{letter-spacing:11.808479pt;}
.ls68{letter-spacing:11.955120pt;}
.ls4b{letter-spacing:13.583362pt;}
.ls45{letter-spacing:13.649782pt;}
.ls44{letter-spacing:13.651034pt;}
.ls4e{letter-spacing:13.656368pt;}
.lsac{letter-spacing:14.460911pt;}
.ls20{letter-spacing:14.754906pt;}
.ls3c{letter-spacing:14.756105pt;}
.ls17{letter-spacing:14.756716pt;}
.lsd{letter-spacing:14.756984pt;}
.lsf{letter-spacing:14.757600pt;}
.ls10{letter-spacing:14.757812pt;}
.ls15{letter-spacing:14.759329pt;}
.ls3b{letter-spacing:14.759412pt;}
.ls6d{letter-spacing:14.759467pt;}
.ls1a{letter-spacing:14.760239pt;}
.ls77{letter-spacing:14.761067pt;}
.ls81{letter-spacing:14.762721pt;}
.ls79{letter-spacing:14.763145pt;}
.ls2b{letter-spacing:14.764662pt;}
.lsab{letter-spacing:14.771215pt;}
.lsa8{letter-spacing:14.814771pt;}
.ls58{letter-spacing:15.014828pt;}
.lsa{letter-spacing:15.660662pt;}
.ls61{letter-spacing:16.309289pt;}
.ls41{letter-spacing:16.309806pt;}
.ls2f{letter-spacing:16.312097pt;}
.ls64{letter-spacing:16.352891pt;}
.ls42{letter-spacing:16.353782pt;}
.ls3f{letter-spacing:16.397532pt;}
.lsc{letter-spacing:16.663132pt;}
.ls6f{letter-spacing:16.665812pt;}
.ls2d{letter-spacing:16.668465pt;}
.ls89{letter-spacing:16.704479pt;}
.ls92{letter-spacing:16.710832pt;}
.ls16{letter-spacing:16.785799pt;}
.lse{letter-spacing:17.057995pt;}
.lsb{letter-spacing:17.061600pt;}
.ls95{letter-spacing:17.109105pt;}
.ls25{letter-spacing:17.137253pt;}
.ls55{letter-spacing:17.355547pt;}
.ls78{letter-spacing:17.410245pt;}
.ls3a{letter-spacing:17.412428pt;}
.ls6c{letter-spacing:17.415578pt;}
.ls3d{letter-spacing:17.417761pt;}
.ls31{letter-spacing:17.640444pt;}
.ls13{letter-spacing:17.650079pt;}
.ls2e{letter-spacing:17.689067pt;}
.ls1e{letter-spacing:17.799474pt;}
.ls6b{letter-spacing:17.852979pt;}
.ls6a{letter-spacing:17.879720pt;}
.lsaa{letter-spacing:18.761225pt;}
.ls26{letter-spacing:18.940662pt;}
.ls69{letter-spacing:19.003139pt;}
.ls3e{letter-spacing:19.287594pt;}
.ls88{letter-spacing:19.362245pt;}
.ls1{letter-spacing:20.084602pt;}
.ls6e{letter-spacing:20.348911pt;}
.ls27{letter-spacing:20.844465pt;}
.ls22{letter-spacing:21.036662pt;}
.ls30{letter-spacing:21.094145pt;}
.ls7a{letter-spacing:21.223578pt;}
.ls28{letter-spacing:21.595919pt;}
.ls65{letter-spacing:21.666843pt;}
.ls74{letter-spacing:21.753812pt;}
.ls8e{letter-spacing:22.039182pt;}
.ls4{letter-spacing:22.091213pt;}
.ls32{letter-spacing:22.422492pt;}
.ls33{letter-spacing:22.475626pt;}
.lsa2{letter-spacing:23.393279pt;}
.ls38{letter-spacing:23.400584pt;}
.ls7f{letter-spacing:23.409659pt;}
.lsa6{letter-spacing:23.680609pt;}
.ls2{letter-spacing:24.122775pt;}
.ls91{letter-spacing:24.242250pt;}
.ls43{letter-spacing:25.056027pt;}
.ls34{letter-spacing:25.158586pt;}
.ls60{letter-spacing:26.548179pt;}
.ls40{letter-spacing:26.553512pt;}
.ls2c{letter-spacing:26.570933pt;}
.ls7e{letter-spacing:27.021573pt;}
.ls57{letter-spacing:28.802115pt;}
.ls7d{letter-spacing:30.192055pt;}
.ls7c{letter-spacing:30.194133pt;}
.ls48{letter-spacing:32.705782pt;}
.ls7b{letter-spacing:32.850245pt;}
.ls96{letter-spacing:33.028904pt;}
.ls93{letter-spacing:33.515628pt;}
.ls2a{letter-spacing:38.372984pt;}
.ls29{letter-spacing:38.375329pt;}
.ls18{letter-spacing:41.324745pt;}
.ls94{letter-spacing:44.889606pt;}
.ls90{letter-spacing:47.579398pt;}
.ls9e{letter-spacing:50.371658pt;}
.ls8b{letter-spacing:52.523492pt;}
.ls1d{letter-spacing:64.936239pt;}
.ls99{letter-spacing:66.676101pt;}
.ls23{letter-spacing:67.895412pt;}
.ls9a{letter-spacing:81.265840pt;}
.ls83{letter-spacing:82.213672pt;}
.lsa0{letter-spacing:84.740846pt;}
.lsa4{letter-spacing:85.309429pt;}
.ls9f{letter-spacing:87.465170pt;}
.lsa1{letter-spacing:93.504784pt;}
.lsa5{letter-spacing:94.108673pt;}
.lsa3{letter-spacing:94.839915pt;}
.lsa7{letter-spacing:95.472897pt;}
.ls46{letter-spacing:108.377512pt;}
.ls8d{letter-spacing:123.790171pt;}
.ls98{letter-spacing:129.810182pt;}
.ls85{letter-spacing:130.348140pt;}
.ls8c{letter-spacing:136.675556pt;}
.ls9b{letter-spacing:143.745866pt;}
.ls8a{letter-spacing:149.945196pt;}
.ls9d{letter-spacing:151.226049pt;}
.ls86{letter-spacing:153.659671pt;}
.ls8f{letter-spacing:199.258049pt;}
.ls82{letter-spacing:228.768910pt;}
.ls97{letter-spacing:249.441883pt;}
.ls9c{letter-spacing:313.253996pt;}
.lsae{letter-spacing:466.690245pt;}
.wsd8{word-spacing:-75.221955pt;}
.ws50{word-spacing:-53.133867pt;}
.ws26{word-spacing:-51.774281pt;}
.ws86{word-spacing:-49.150218pt;}
.ws48{word-spacing:-42.066082pt;}
.ws80{word-spacing:-41.338148pt;}
.ws5c{word-spacing:-38.415786pt;}
.ws55{word-spacing:-38.376055pt;}
.wsaf{word-spacing:-38.374400pt;}
.ws4f{word-spacing:-38.362652pt;}
.ws7a{word-spacing:-38.247076pt;}
.ws82{word-spacing:-35.521290pt;}
.ws42{word-spacing:-34.611401pt;}
.ws4{word-spacing:-34.437500pt;}
.ws74{word-spacing:-32.063846pt;}
.wsfe{word-spacing:-29.531803pt;}
.wsa8{word-spacing:-26.107733pt;}
.ws7e{word-spacing:-25.758479pt;}
.ws43{word-spacing:-25.738045pt;}
.ws104{word-spacing:-23.910333pt;}
.ws84{word-spacing:-23.877284pt;}
.ws85{word-spacing:-23.871951pt;}
.ws11f{word-spacing:-19.925333pt;}
.ws52{word-spacing:-19.840186pt;}
.ws46{word-spacing:-14.760588pt;}
.ws79{word-spacing:-13.652838pt;}
.ws27{word-spacing:-11.700987pt;}
.wsea{word-spacing:-11.420507pt;}
.wsef{word-spacing:-11.377628pt;}
.wsba{word-spacing:-8.545853pt;}
.wse8{word-spacing:-7.118783pt;}
.wsed{word-spacing:-7.092055pt;}
.wsb7{word-spacing:-5.326915pt;}
.wse5{word-spacing:-3.708744pt;}
.ws3d{word-spacing:-2.964870pt;}
.ws41{word-spacing:-2.858602pt;}
.ws49{word-spacing:-2.805468pt;}
.ws99{word-spacing:-2.752334pt;}
.ws7b{word-spacing:-2.749696pt;}
.ws91{word-spacing:-2.699200pt;}
.ws4a{word-spacing:-2.327263pt;}
.ws3f{word-spacing:-1.742791pt;}
.ws8f{word-spacing:-1.689657pt;}
.ws105{word-spacing:-1.530255pt;}
.wsf0{word-spacing:-1.477121pt;}
.ws11{word-spacing:-1.219430pt;}
.wsf5{word-spacing:-1.211452pt;}
.ws90{word-spacing:-1.158318pt;}
.wscc{word-spacing:-0.839515pt;}
.ws121{word-spacing:-0.797013pt;}
.ws1c{word-spacing:-0.786381pt;}
.ws5e{word-spacing:-0.733247pt;}
.wsad{word-spacing:-0.626980pt;}
.ws68{word-spacing:-0.573846pt;}
.ws45{word-spacing:-0.520712pt;}
.ws2e{word-spacing:-0.414444pt;}
.ws3e{word-spacing:-0.361310pt;}
.ws57{word-spacing:-0.308176pt;}
.ws94{word-spacing:-0.201909pt;}
.wsfd{word-spacing:-0.148775pt;}
.ws23{word-spacing:-0.095641pt;}
.ws54{word-spacing:-0.053134pt;}
.ws8{word-spacing:-0.047821pt;}
.ws29{word-spacing:-0.046596pt;}
.ws6c{word-spacing:-0.037194pt;}
.ws77{word-spacing:-0.031881pt;}
.ws7f{word-spacing:-0.017007pt;}
.ws47{word-spacing:-0.013752pt;}
.ws3b{word-spacing:0.000000pt;}
.ws22{word-spacing:0.010627pt;}
.wsf2{word-spacing:0.045926pt;}
.ws51{word-spacing:0.109640pt;}
.wsc3{word-spacing:0.116895pt;}
.wsf3{word-spacing:0.143392pt;}
.wsb0{word-spacing:0.170028pt;}
.ws8c{word-spacing:0.223162pt;}
.ws14{word-spacing:0.329430pt;}
.wsd1{word-spacing:0.541965pt;}
.ws67{word-spacing:0.595099pt;}
.ws2f{word-spacing:0.648233pt;}
.ws73{word-spacing:0.688458pt;}
.ws103{word-spacing:0.701367pt;}
.ws10d{word-spacing:0.807635pt;}
.ws4b{word-spacing:0.860769pt;}
.ws21{word-spacing:0.913903pt;}
.ws102{word-spacing:0.967036pt;}
.wsf4{word-spacing:1.020170pt;}
.ws34{word-spacing:1.073304pt;}
.ws10a{word-spacing:1.126438pt;}
.ws2b{word-spacing:1.232706pt;}
.ws101{word-spacing:1.285840pt;}
.ws12{word-spacing:1.338973pt;}
.ws40{word-spacing:1.392107pt;}
.ws5d{word-spacing:1.551509pt;}
.ws5f{word-spacing:1.604643pt;}
.wsc1{word-spacing:1.657777pt;}
.wsd9{word-spacing:1.764044pt;}
.wsca{word-spacing:1.870312pt;}
.ws9f{word-spacing:1.888922pt;}
.ws9d{word-spacing:1.930923pt;}
.wscf{word-spacing:2.082848pt;}
.wsa2{word-spacing:2.135981pt;}
.ws6d{word-spacing:2.189115pt;}
.ws4c{word-spacing:2.242249pt;}
.ws4e{word-spacing:2.290973pt;}
.ws4d{word-spacing:2.295383pt;}
.wsc2{word-spacing:2.348517pt;}
.ws60{word-spacing:2.561052pt;}
.ws10b{word-spacing:2.614186pt;}
.ws9{word-spacing:2.654054pt;}
.wsf6{word-spacing:2.667320pt;}
.ws9c{word-spacing:2.699179pt;}
.ws7{word-spacing:2.701875pt;}
.ws62{word-spacing:2.720454pt;}
.ws10e{word-spacing:2.773588pt;}
.ws1{word-spacing:2.879856pt;}
.ws120{word-spacing:2.882791pt;}
.ws5b{word-spacing:2.894787pt;}
.ws8a{word-spacing:2.908854pt;}
.wsae{word-spacing:2.909948pt;}
.ws100{word-spacing:2.920593pt;}
.wsff{word-spacing:2.923352pt;}
.ws17{word-spacing:2.932989pt;}
.ws98{word-spacing:2.986123pt;}
.wsa1{word-spacing:3.039257pt;}
.ws24{word-spacing:3.092391pt;}
.wsa0{word-spacing:3.111801pt;}
.wsd{word-spacing:3.132262pt;}
.wsc8{word-spacing:3.145525pt;}
.wsd6{word-spacing:3.198659pt;}
.ws69{word-spacing:3.251793pt;}
.ws0{word-spacing:3.326180pt;}
.ws92{word-spacing:3.379314pt;}
.ws25{word-spacing:3.411194pt;}
.wse2{word-spacing:3.517462pt;}
.ws1d{word-spacing:3.623730pt;}
.ws19{word-spacing:3.676864pt;}
.wsa3{word-spacing:3.770535pt;}
.wsa5{word-spacing:3.783131pt;}
.wsa4{word-spacing:3.795260pt;}
.wsb2{word-spacing:3.836265pt;}
.ws32{word-spacing:3.889399pt;}
.ws8b{word-spacing:3.921306pt;}
.ws5{word-spacing:3.985067pt;}
.wsbc{word-spacing:4.048801pt;}
.ws18{word-spacing:4.101935pt;}
.ws5a{word-spacing:4.145583pt;}
.ws58{word-spacing:4.155068pt;}
.ws59{word-spacing:4.168593pt;}
.ws61{word-spacing:4.314470pt;}
.wscb{word-spacing:4.367604pt;}
.ws10{word-spacing:4.375603pt;}
.wsf1{word-spacing:4.420738pt;}
.ws70{word-spacing:4.527005pt;}
.wsf{word-spacing:4.566886pt;}
.ws44{word-spacing:4.633273pt;}
.wsc5{word-spacing:4.686407pt;}
.ws97{word-spacing:4.739541pt;}
.ws6{word-spacing:4.782067pt;}
.ws2c{word-spacing:4.792675pt;}
.ws114{word-spacing:4.845809pt;}
.wsd2{word-spacing:4.952076pt;}
.wsf9{word-spacing:5.058344pt;}
.wsfa{word-spacing:5.111478pt;}
.ws112{word-spacing:5.164612pt;}
.ws36{word-spacing:5.270880pt;}
.ws35{word-spacing:5.324013pt;}
.ws93{word-spacing:5.430281pt;}
.wsc{word-spacing:5.475482pt;}
.wsc6{word-spacing:5.695951pt;}
.ws72{word-spacing:5.855352pt;}
.ws3c{word-spacing:5.908486pt;}
.wsc4{word-spacing:5.961620pt;}
.ws30{word-spacing:6.014754pt;}
.ws1b{word-spacing:6.067888pt;}
.wsb1{word-spacing:6.121021pt;}
.wsc7{word-spacing:6.174155pt;}
.ws53{word-spacing:6.227289pt;}
.wsd5{word-spacing:6.280423pt;}
.ws63{word-spacing:6.333557pt;}
.ws64{word-spacing:6.386691pt;}
.wsd3{word-spacing:6.492959pt;}
.wse0{word-spacing:6.546092pt;}
.wsce{word-spacing:6.652360pt;}
.wsdb{word-spacing:6.705494pt;}
.ws2d{word-spacing:6.758628pt;}
.ws3{word-spacing:6.777300pt;}
.ws88{word-spacing:6.864896pt;}
.ws2{word-spacing:6.887500pt;}
.ws89{word-spacing:6.918029pt;}
.ws8d{word-spacing:6.971163pt;}
.ws1f{word-spacing:7.077431pt;}
.ws8e{word-spacing:7.130565pt;}
.ws3a{word-spacing:7.289967pt;}
.ws15{word-spacing:7.343100pt;}
.ws107{word-spacing:7.396234pt;}
.ws20{word-spacing:7.502502pt;}
.wsda{word-spacing:7.608770pt;}
.wse1{word-spacing:7.661904pt;}
.ws6a{word-spacing:7.715037pt;}
.wsb{word-spacing:7.770880pt;}
.ws1a{word-spacing:8.033841pt;}
.ws6b{word-spacing:8.086975pt;}
.ws6f{word-spacing:8.193242pt;}
.wsc9{word-spacing:8.352644pt;}
.wsd4{word-spacing:8.458912pt;}
.ws66{word-spacing:8.565179pt;}
.wse4{word-spacing:8.724581pt;}
.ws11b{word-spacing:8.937116pt;}
.ws56{word-spacing:9.149652pt;}
.ws31{word-spacing:9.202786pt;}
.ws13{word-spacing:9.255920pt;}
.ws38{word-spacing:9.309053pt;}
.ws37{word-spacing:9.362187pt;}
.ws96{word-spacing:9.680991pt;}
.ws71{word-spacing:9.734124pt;}
.ws6e{word-spacing:9.787258pt;}
.ws95{word-spacing:9.840392pt;}
.wscd{word-spacing:9.893526pt;}
.ws39{word-spacing:9.946660pt;}
.wsa9{word-spacing:10.212329pt;}
.wsab{word-spacing:10.265463pt;}
.wsd0{word-spacing:10.318597pt;}
.wse{word-spacing:10.353203pt;}
.ws1e{word-spacing:10.477999pt;}
.ws9b{word-spacing:10.879232pt;}
.ws117{word-spacing:10.956203pt;}
.ws16{word-spacing:11.009337pt;}
.ws11c{word-spacing:11.115605pt;}
.ws65{word-spacing:11.381274pt;}
.wsbe{word-spacing:11.383917pt;}
.ws33{word-spacing:11.434408pt;}
.wse3{word-spacing:11.646944pt;}
.wsa7{word-spacing:12.125148pt;}
.ws118{word-spacing:12.178282pt;}
.wsa6{word-spacing:12.550219pt;}
.ws109{word-spacing:13.602270pt;}
.ws9e{word-spacing:15.502942pt;}
.ws111{word-spacing:15.940160pt;}
.ws78{word-spacing:16.276584pt;}
.ws7c{word-spacing:16.282772pt;}
.wse6{word-spacing:16.685306pt;}
.wseb{word-spacing:17.031927pt;}
.ws7d{word-spacing:17.454592pt;}
.ws110{word-spacing:17.614290pt;}
.ws10c{word-spacing:18.649987pt;}
.ws10f{word-spacing:18.756255pt;}
.ws2a{word-spacing:18.862523pt;}
.ws106{word-spacing:18.915657pt;}
.wsf8{word-spacing:19.379458pt;}
.wsfb{word-spacing:19.779458pt;}
.ws115{word-spacing:20.669074pt;}
.ws113{word-spacing:20.987877pt;}
.ws11e{word-spacing:21.944287pt;}
.wsbb{word-spacing:22.143392pt;}
.wsb9{word-spacing:22.502031pt;}
.wsdf{word-spacing:22.604500pt;}
.ws108{word-spacing:23.060098pt;}
.ws116{word-spacing:23.325767pt;}
.ws11a{word-spacing:24.441579pt;}
.wse7{word-spacing:24.456454pt;}
.wsec{word-spacing:24.773899pt;}
.ws83{word-spacing:24.958430pt;}
.ws75{word-spacing:24.959735pt;}
.ws76{word-spacing:24.962458pt;}
.wsb6{word-spacing:25.934411pt;}
.wsa{word-spacing:26.498350pt;}
.ws11d{word-spacing:26.513799pt;}
.wsb5{word-spacing:27.343350pt;}
.ws119{word-spacing:27.417075pt;}
.ws9a{word-spacing:27.735878pt;}
.ws87{word-spacing:33.844541pt;}
.wsdd{word-spacing:34.592979pt;}
.wsde{word-spacing:43.072536pt;}
.wsb8{word-spacing:43.098153pt;}
.wsbd{word-spacing:47.196576pt;}
.wsd7{word-spacing:47.837310pt;}
.wsbf{word-spacing:49.220632pt;}
.wsfc{word-spacing:51.742106pt;}
.wsc0{word-spacing:51.802832pt;}
.wsaa{word-spacing:52.761897pt;}
.wse9{word-spacing:53.453176pt;}
.wsee{word-spacing:54.275652pt;}
.wsb4{word-spacing:54.599908pt;}
.wsac{word-spacing:69.038840pt;}
.wsb3{word-spacing:250.473047pt;}
.wsdc{word-spacing:260.330571pt;}
.ws81{word-spacing:435.867735pt;}
.wsf7{word-spacing:473.210217pt;}
.ws28{word-spacing:607.581982pt;}
._40{margin-left:-395.109131pt;}
._36{margin-left:-380.891659pt;}
._2d{margin-left:-367.493934pt;}
._46{margin-left:-322.433513pt;}
._28{margin-left:-275.503047pt;}
._43{margin-left:-269.483036pt;}
._1b{margin-left:-264.026601pt;}
._34{margin-left:-253.959094pt;}
._24{margin-left:-241.399264pt;}
._19{margin-left:-238.742556pt;}
._1d{margin-left:-231.825948pt;}
._16{margin-left:-227.317345pt;}
._2f{margin-left:-194.629968pt;}
._21{margin-left:-182.956140pt;}
._48{margin-left:-179.234111pt;}
._1f{margin-left:-168.500560pt;}
._3a{margin-left:-151.429395pt;}
._44{margin-left:-134.532329pt;}
._3b{margin-left:-121.442008pt;}
._38{margin-left:-81.018277pt;}
._39{margin-left:-78.097931pt;}
._4d{margin-left:-67.772218pt;}
._3f{margin-left:-66.701718pt;}
._31{margin-left:-65.468718pt;}
._17{margin-left:-57.296873pt;}
._41{margin-left:-51.994140pt;}
._4a{margin-left:-50.082413pt;}
._23{margin-left:-36.316496pt;}
._4b{margin-left:-32.713757pt;}
._2a{margin-left:-23.994687pt;}
._26{margin-left:-15.156799pt;}
._4c{margin-left:-8.957977pt;}
._3d{margin-left:-7.153507pt;}
._13{margin-left:-6.121062pt;}
._6{margin-left:-4.728914pt;}
._2{margin-left:-3.526400pt;}
._4e{margin-left:-2.603559pt;}
._0{margin-left:-1.700284pt;}
._1{width:1.275213pt;}
._7{width:2.178489pt;}
._3{width:3.085600pt;}
._10{width:4.836644pt;}
._9{width:8.873356pt;}
._3e{width:10.042301pt;}
._14{width:14.771215pt;}
._50{width:15.674491pt;}
._a{width:17.015127pt;}
._49{width:18.152218pt;}
._58{width:19.181326pt;}
._c{width:20.084602pt;}
._2e{width:22.039182pt;}
._5{width:23.017745pt;}
._33{width:24.242250pt;}
._4f{width:26.513799pt;}
._51{width:27.895280pt;}
._54{width:29.015995pt;}
._53{width:30.089965pt;}
._11{width:32.726257pt;}
._52{width:36.609234pt;}
._55{width:37.725045pt;}
._57{width:41.895313pt;}
._3c{width:44.889606pt;}
._32{width:47.579398pt;}
._56{width:50.877371pt;}
._42{width:57.339500pt;}
._b{width:60.944545pt;}
._4{width:71.667439pt;}
._22{width:78.524814pt;}
._25{width:112.057554pt;}
._12{width:115.718683pt;}
._1c{width:120.613655pt;}
._2b{width:123.790171pt;}
._15{width:127.107686pt;}
._27{width:136.675556pt;}
._8{width:151.544115pt;}
._1e{width:155.094226pt;}
._29{width:198.720091pt;}
._30{width:205.149975pt;}
._18{width:208.428959pt;}
._45{width:211.887263pt;}
._2c{width:225.464309pt;}
._1a{width:227.078184pt;}
._35{width:236.454030pt;}
._37{width:241.782380pt;}
._47{width:257.357557pt;}
._e{width:306.456356pt;}
._20{width:323.116567pt;}
._f{width:396.207600pt;}
._d{width:543.634985pt;}
.fsd{font-size:19.161566pt;}
.fs14{font-size:25.510989pt;}
.fs11{font-size:25.607132pt;}
.fs8{font-size:26.566933pt;}
.fse{font-size:30.740480pt;}
.fsa{font-size:31.880533pt;}
.fs9{font-size:33.209067pt;}
.fsf{font-size:35.863893pt;}
.fs7{font-size:37.193600pt;}
.fs13{font-size:40.926720pt;}
.fs10{font-size:41.080960pt;}
.fs6{font-size:46.596480pt;}
.fs15{font-size:47.747840pt;}
.fs4{font-size:47.820800pt;}
.fs12{font-size:47.927787pt;}
.fsb{font-size:49.184640pt;}
.fs5{font-size:51.774281pt;}
.fs0{font-size:53.133867pt;}
.fsc{font-size:57.382080pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.y1ab{bottom:-2.225219pt;}
.y1c0{bottom:-2.216864pt;}
.y1a8{bottom:-2.216660pt;}
.y1bd{bottom:-2.208338pt;}
.y1aa{bottom:-2.208102pt;}
.y1bf{bottom:-2.199811pt;}
.y1a9{bottom:-2.199543pt;}
.y1be{bottom:-2.191285pt;}
.y1a7{bottom:-1.874319pt;}
.y1bc{bottom:-1.867282pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:2.023748pt;}
.ycb{bottom:2.030153pt;}
.yce{bottom:2.036557pt;}
.yfb{bottom:2.042961pt;}
.ycd{bottom:2.062174pt;}
.y174{bottom:2.074982pt;}
.y173{bottom:2.087791pt;}
.ycc{bottom:2.107004pt;}
.y152{bottom:2.203068pt;}
.y154{bottom:2.279919pt;}
.y14e{bottom:2.292727pt;}
.y14d{bottom:2.644962pt;}
.y156{bottom:2.696196pt;}
.y109{bottom:3.054835pt;}
.y157{bottom:3.977050pt;}
.y10e{bottom:4.687923pt;}
.y15a{bottom:5.059371pt;}
.y103{bottom:5.482052pt;}
.y15e{bottom:6.192926pt;}
.ye5{bottom:7.813205pt;}
.y15b{bottom:8.133419pt;}
.y183{bottom:8.716207pt;}
.y106{bottom:9.100463pt;}
.y178{bottom:9.587187pt;}
.y10b{bottom:9.766507pt;}
.y100{bottom:10.291657pt;}
.y160{bottom:10.374912pt;}
.y14f{bottom:10.560636pt;}
.y101{bottom:10.739955pt;}
.y107{bottom:11.687787pt;}
.yd2{bottom:11.988787pt;}
.y10f{bottom:12.270575pt;}
.y10c{bottom:12.949427pt;}
.y161{bottom:13.013470pt;}
.y10d{bottom:15.370240pt;}
.y108{bottom:15.824943pt;}
.y1c3{bottom:15.961421pt;}
.y1b3{bottom:16.021574pt;}
.y110{bottom:16.247625pt;}
.yea{bottom:16.542221pt;}
.ydd{bottom:17.125009pt;}
.y105{bottom:17.554095pt;}
.yff{bottom:17.874308pt;}
.y10a{bottom:18.418671pt;}
.y104{bottom:18.694054pt;}
.y102{bottom:18.924608pt;}
.yfe{bottom:19.084715pt;}
.ybb{bottom:19.182010pt;}
.y15c{bottom:19.744354pt;}
.y17c{bottom:22.613466pt;}
.ydc{bottom:23.644553pt;}
.ye4{bottom:24.867767pt;}
.yeb{bottom:28.575838pt;}
.ye7{bottom:29.120201pt;}
.y32{bottom:30.178987pt;}
.ycf{bottom:30.433075pt;}
.yde{bottom:33.122867pt;}
.y182{bottom:33.852954pt;}
.ye8{bottom:35.806255pt;}
.yd8{bottom:37.881237pt;}
.y180{bottom:39.488708pt;}
.y1c1{bottom:40.517453pt;}
.y1ac{bottom:40.670150pt;}
.yfc{bottom:41.826266pt;}
.y17b{bottom:43.414524pt;}
.yee{bottom:45.124463pt;}
.y189{bottom:45.239740pt;}
.yd0{bottom:45.380634pt;}
.y111{bottom:46.258018pt;}
.yd7{bottom:46.597444pt;}
.y33{bottom:46.689673pt;}
.y162{bottom:47.109786pt;}
.y176{bottom:47.628531pt;}
.yb9{bottom:48.692794pt;}
.y181{bottom:50.036535pt;}
.yed{bottom:52.002645pt;}
.y155{bottom:52.604646pt;}
.y17e{bottom:52.732732pt;}
.y2f{bottom:53.639020pt;}
.y186{bottom:55.051076pt;}
.ye6{bottom:56.005312pt;}
.y1b5{bottom:58.943003pt;}
.y1a0{bottom:59.165141pt;}
.y177{bottom:59.258679pt;}
.ye9{bottom:60.072021pt;}
.y15f{bottom:62.704175pt;}
.y187{bottom:63.421453pt;}
.ye0{bottom:63.555942pt;}
.y151{bottom:66.040798pt;}
.y17f{bottom:66.143266pt;}
.yd6{bottom:69.025186pt;}
.y175{bottom:70.056273pt;}
.yb3{bottom:70.836128pt;}
.ye2{bottom:73.008640pt;}
.y1a1{bottom:74.005638pt;}
.yd3{bottom:74.020514pt;}
.y1b6{bottom:74.469578pt;}
.y1ad{bottom:74.750230pt;}
.yef{bottom:76.422114pt;}
.y184{bottom:77.709372pt;}
.ydb{bottom:78.958204pt;}
.y17a{bottom:80.277483pt;}
.y150{bottom:82.416508pt;}
.y153{bottom:83.479616pt;}
.yd9{bottom:83.594893pt;}
.yec{bottom:84.517107pt;}
.y159{bottom:84.542724pt;}
.y1c4{bottom:85.059366pt;}
.y1b4{bottom:85.379929pt;}
.y179{bottom:85.855599pt;}
.ydf{bottom:86.163004pt;}
.yda{bottom:88.302029pt;}
.y1a2{bottom:88.846135pt;}
.y188{bottom:89.365137pt;}
.y1b7{bottom:89.987626pt;}
.y1ae{bottom:90.326761pt;}
.ye3{bottom:91.536183pt;}
.y185{bottom:91.574609pt;}
.y163{bottom:91.600226pt;}
.ye1{bottom:92.413568pt;}
.y15d{bottom:93.156463pt;}
.y17d{bottom:93.732847pt;}
.yd5{bottom:94.245188pt;}
.yb4{bottom:102.713923pt;}
.y1a3{bottom:103.678073pt;}
.y1b8{bottom:105.505674pt;}
.y1af{bottom:105.903291pt;}
.y1a4{bottom:118.518570pt;}
.y1b9{bottom:121.032248pt;}
.y1b0{bottom:121.488381pt;}
.y1a5{bottom:133.359066pt;}
.yb5{bottom:134.581471pt;}
.y1ba{bottom:136.550296pt;}
.y1b1{bottom:137.064911pt;}
.y35{bottom:145.756378pt;}
.ybc{bottom:148.435145pt;}
.y1c2{bottom:161.106328pt;}
.y1b2{bottom:161.713487pt;}
.yd1{bottom:162.316139pt;}
.yb6{bottom:166.449019pt;}
.yb7{bottom:198.326814pt;}
.yb8{bottom:230.194362pt;}
.y2b{bottom:237.294667pt;}
.y34{bottom:237.473783pt;}
.y1f5{bottom:239.872000pt;}
.y9d{bottom:242.373333pt;}
.y9c{bottom:251.906667pt;}
.y2a{bottom:253.234667pt;}
.yba{bottom:259.705146pt;}
.y1f4{bottom:267.253333pt;}
.y74{bottom:267.753333pt;}
.y29{bottom:269.174667pt;}
.yf0{bottom:269.176000pt;}
.y9b{bottom:271.597333pt;}
.y31{bottom:274.505041pt;}
.y1d3{bottom:274.953333pt;}
.y9a{bottom:281.130667pt;}
.y28{bottom:285.116000pt;}
.y30{bottom:290.037201pt;}
.y99{bottom:300.821333pt;}
.y27{bottom:301.056000pt;}
.y1f3{bottom:305.261333pt;}
.y1d2{bottom:309.956000pt;}
.y136{bottom:315.962667pt;}
.y26{bottom:316.996000pt;}
.y98{bottom:319.900000pt;}
.y1f2{bottom:321.201333pt;}
.y19e{bottom:324.666667pt;}
.y73{bottom:324.677333pt;}
.y1d1{bottom:325.896000pt;}
.y219{bottom:326.477333pt;}
.y53{bottom:327.648000pt;}
.yca{bottom:332.148934pt;}
.y25{bottom:332.936000pt;}
.y11b{bottom:333.988000pt;}
.y97{bottom:335.840000pt;}
.y1f1{bottom:336.016000pt;}
.y172{bottom:338.368000pt;}
.y72{bottom:340.617333pt;}
.y1d0{bottom:341.836000pt;}
.y218{bottom:342.418667pt;}
.y14b{bottom:345.206667pt;}
.y135{bottom:346.809333pt;}
.y24{bottom:348.876000pt;}
.y96{bottom:351.780000pt;}
.y1f0{bottom:351.956000pt;}
.y19d{bottom:353.590667pt;}
.y71{bottom:355.229333pt;}
.y1cf{bottom:357.776000pt;}
.yb1{bottom:358.069333pt;}
.y217{bottom:358.358667pt;}
.y134{bottom:362.750667pt;}
.y22f{bottom:363.672000pt;}
.y23{bottom:364.816000pt;}
.y1ef{bottom:366.772000pt;}
.y95{bottom:367.720000pt;}
.y70{bottom:369.841333pt;}
.y216{bottom:374.298667pt;}
.y11a{bottom:377.548000pt;}
.y22{bottom:380.757333pt;}
.y171{bottom:381.920000pt;}
.y1ee{bottom:382.712000pt;}
.y52{bottom:383.462667pt;}
.y6f{bottom:384.452000pt;}
.y14a{bottom:389.358667pt;}
.y215{bottom:390.238667pt;}
.y19c{bottom:393.142667pt;}
.yb0{bottom:393.525333pt;}
.y133{bottom:393.597333pt;}
.y94{bottom:394.506667pt;}
.y22e{bottom:395.552000pt;}
.y21{bottom:396.697333pt;}
.y1ed{bottom:397.528000pt;}
.y6e{bottom:399.064000pt;}
.y51{bottom:399.404000pt;}
.y1ce{bottom:403.361333pt;}
.y214{bottom:406.178667pt;}
.y119{bottom:407.402667pt;}
.y19b{bottom:409.082667pt;}
.y93{bottom:410.446667pt;}
.y22d{bottom:411.492000pt;}
.y1ec{bottom:412.342667pt;}
.y20{bottom:412.637333pt;}
.y6d{bottom:413.676000pt;}
.y50{bottom:415.344000pt;}
.y170{bottom:421.889333pt;}
.y213{bottom:422.118667pt;}
.y118{bottom:423.342667pt;}
.y132{bottom:424.444000pt;}
.y19a{bottom:425.022667pt;}
.y92{bottom:426.386667pt;}
.y1eb{bottom:427.158667pt;}
.y22c{bottom:427.433333pt;}
.y1f{bottom:428.577333pt;}
.yaf{bottom:428.980000pt;}
.y149{bottom:429.777333pt;}
.y4f{bottom:431.289333pt;}
.y6c{bottom:432.857333pt;}
.y212{bottom:438.060000pt;}
.y199{bottom:440.962667pt;}
.y1ea{bottom:441.973333pt;}
.y91{bottom:442.326667pt;}
.y22b{bottom:443.373333pt;}
.y1e{bottom:444.517333pt;}
.y117{bottom:453.197333pt;}
.y211{bottom:454.000000pt;}
.y4e{bottom:455.213333pt;}
.y131{bottom:455.292000pt;}
.y198{bottom:456.902667pt;}
.y1e9{bottom:457.913333pt;}
.y90{bottom:458.266667pt;}
.y22a{bottom:459.313333pt;}
.y1d{bottom:460.457333pt;}
.y37{bottom:460.458667pt;}
.yae{bottom:464.434667pt;}
.y16f{bottom:465.441333pt;}
.y210{bottom:469.940000pt;}
.y4d{bottom:471.169333pt;}
.y1e8{bottom:472.729333pt;}
.y197{bottom:472.844000pt;}
.y148{bottom:473.929333pt;}
.y229{bottom:475.253333pt;}
.y1c{bottom:476.398667pt;}
.y116{bottom:483.053333pt;}
.y6b{bottom:483.776000pt;}
.yc9{bottom:485.064000pt;}
.y20f{bottom:485.880000pt;}
.y130{bottom:486.138667pt;}
.y4c{bottom:487.109333pt;}
.y1e7{bottom:487.545333pt;}
.y8f{bottom:488.197333pt;}
.y196{bottom:488.784000pt;}
.y228{bottom:491.193333pt;}
.y1b{bottom:492.338667pt;}
.y115{bottom:498.993333pt;}
.y6a{bottom:499.716000pt;}
.yad{bottom:499.889333pt;}
.yc8{bottom:501.004000pt;}
.y20e{bottom:501.820000pt;}
.y12f{bottom:502.078667pt;}
.y4b{bottom:503.049333pt;}
.y227{bottom:507.133333pt;}
.y1a{bottom:508.278667pt;}
.y16e{bottom:508.992000pt;}
.y1e6{bottom:510.020000pt;}
.y195{bottom:514.312000pt;}
.y69{bottom:515.656000pt;}
.yac{bottom:515.829333pt;}
.yc7{bottom:516.944000pt;}
.y20d{bottom:517.761333pt;}
.y12e{bottom:518.020000pt;}
.y147{bottom:518.080000pt;}
.y4a{bottom:518.989333pt;}
.y19{bottom:524.218667pt;}
.y16d{bottom:524.933333pt;}
.y1e5{bottom:525.960000pt;}
.y8e{bottom:528.754667pt;}
.y114{bottom:529.058667pt;}
.yab{bottom:531.769333pt;}
.y68{bottom:532.214667pt;}
.yc6{bottom:532.885333pt;}
.y20c{bottom:533.701333pt;}
.y12d{bottom:533.960000pt;}
.y146{bottom:534.020000pt;}
.y226{bottom:539.014667pt;}
.y194{bottom:539.841333pt;}
.y18{bottom:540.158667pt;}
.y16c{bottom:540.873333pt;}
.y8d{bottom:544.694667pt;}
.y113{bottom:544.998667pt;}
.yaa{bottom:547.709333pt;}
.y67{bottom:548.154667pt;}
.y49{bottom:548.228000pt;}
.yc5{bottom:548.825333pt;}
.y1e4{bottom:549.558667pt;}
.y20b{bottom:549.641333pt;}
.y12c{bottom:549.900000pt;}
.y145{bottom:549.960000pt;}
.y36{bottom:554.404000pt;}
.y17{bottom:556.100000pt;}
.y16b{bottom:556.813333pt;}
.y8c{bottom:560.634667pt;}
.y112{bottom:560.938667pt;}
.y66{bottom:564.094667pt;}
.yc4{bottom:564.765333pt;}
.y193{bottom:565.369333pt;}
.y20a{bottom:565.581333pt;}
.ybe{bottom:565.708000pt;}
.y1e3{bottom:571.132000pt;}
.y16a{bottom:572.753333pt;}
.y8b{bottom:576.576000pt;}
.yfd{bottom:577.089333pt;}
.y48{bottom:577.462667pt;}
.y2e{bottom:578.845333pt;}
.y65{bottom:580.034667pt;}
.yc3{bottom:580.705333pt;}
.y12b{bottom:580.746667pt;}
.y209{bottom:581.521333pt;}
.ybd{bottom:581.648000pt;}
.y1cd{bottom:584.480000pt;}
.y225{bottom:586.834667pt;}
.y16{bottom:587.426667pt;}
.ya9{bottom:588.784000pt;}
.y192{bottom:590.898667pt;}
.y47{bottom:593.402667pt;}
.y144{bottom:594.112000pt;}
.y64{bottom:595.974667pt;}
.y208{bottom:597.461333pt;}
.y1cc{bottom:600.420000pt;}
.y8a{bottom:601.192000pt;}
.y224{bottom:602.774667pt;}
.yc2{bottom:607.876000pt;}
.y143{bottom:610.052000pt;}
.y1e2{bottom:610.672000pt;}
.y12a{bottom:611.594667pt;}
.y63{bottom:611.916000pt;}
.y207{bottom:613.402667pt;}
.y169{bottom:616.305333pt;}
.y191{bottom:616.426667pt;}
.y223{bottom:618.716000pt;}
.y46{bottom:622.636000pt;}
.y1cb{bottom:623.582667pt;}
.yc1{bottom:623.816000pt;}
.yfa{bottom:624.122268pt;}
.y142{bottom:625.992000pt;}
.y1e1{bottom:626.612000pt;}
.y129{bottom:627.534667pt;}
.y62{bottom:628.473333pt;}
.y206{bottom:629.342667pt;}
.ya8{bottom:629.857333pt;}
.y15{bottom:631.844000pt;}
.y168{bottom:632.245333pt;}
.y222{bottom:634.656000pt;}
.y89{bottom:639.093333pt;}
.y1ca{bottom:639.524000pt;}
.yc0{bottom:639.757333pt;}
.y190{bottom:641.956000pt;}
.y45{bottom:642.561333pt;}
.y128{bottom:643.474667pt;}
.y205{bottom:645.282667pt;}
.ya7{bottom:645.797333pt;}
.y14{bottom:646.456000pt;}
.y167{bottom:648.185333pt;}
.y221{bottom:650.596000pt;}
.y1e0{bottom:653.993333pt;}
.y88{bottom:655.033333pt;}
.y1c9{bottom:655.464000pt;}
.y61{bottom:655.570667pt;}
.ybf{bottom:655.697333pt;}
.y127{bottom:659.414667pt;}
.y13{bottom:661.066667pt;}
.y204{bottom:661.222667pt;}
.ya6{bottom:661.738667pt;}
.y166{bottom:664.125333pt;}
.y220{bottom:666.536000pt;}
.y18f{bottom:667.484000pt;}
.y141{bottom:670.142667pt;}
.y87{bottom:670.973333pt;}
.y1c8{bottom:671.404000pt;}
.y60{bottom:671.445333pt;}
.yb2{bottom:671.637333pt;}
.y44{bottom:671.794667pt;}
.y126{bottom:675.354667pt;}
.y12{bottom:675.678667pt;}
.y203{bottom:677.162667pt;}
.y165{bottom:680.065333pt;}
.y21f{bottom:682.476000pt;}
.y140{bottom:686.084000pt;}
.y1c7{bottom:687.344000pt;}
.y43{bottom:687.734667pt;}
.y6{bottom:687.953333pt;}
.y11{bottom:690.290667pt;}
.y125{bottom:691.296000pt;}
.y1df{bottom:692.000000pt;}
.y18e{bottom:693.013333pt;}
.y202{bottom:693.102667pt;}
.y86{bottom:695.590667pt;}
.ya5{bottom:697.193333pt;}
.y21e{bottom:698.417333pt;}
.y1c6{bottom:703.284000pt;}
.y42{bottom:703.676000pt;}
.y10{bottom:704.902667pt;}
.y124{bottom:707.236000pt;}
.y1de{bottom:707.941333pt;}
.y18d{bottom:708.953333pt;}
.y201{bottom:709.044000pt;}
.y5f{bottom:713.121333pt;}
.ya4{bottom:713.133333pt;}
.y21d{bottom:714.357333pt;}
.y1c5{bottom:719.224000pt;}
.yf{bottom:719.514667pt;}
.y41{bottom:719.616000pt;}
.y1dd{bottom:723.881333pt;}
.y164{bottom:724.542667pt;}
.y18c{bottom:724.893333pt;}
.y200{bottom:724.984000pt;}
.y5{bottom:728.682667pt;}
.y5e{bottom:729.061333pt;}
.y13f{bottom:730.234667pt;}
.y21c{bottom:730.297333pt;}
.y85{bottom:733.490667pt;}
.ye{bottom:734.126667pt;}
.y19f{bottom:735.165333pt;}
.y40{bottom:735.561333pt;}
.y123{bottom:735.832000pt;}
.y1dc{bottom:739.821333pt;}
.y1ff{bottom:740.924000pt;}
.y5d{bottom:745.002667pt;}
.y13e{bottom:746.174667pt;}
.ya3{bottom:748.281333pt;}
.y84{bottom:749.430667pt;}
.y18b{bottom:750.422667pt;}
.y3f{bottom:751.501333pt;}
.y1db{bottom:755.761333pt;}
.y1fe{bottom:756.864000pt;}
.y5c{bottom:760.942667pt;}
.y4{bottom:761.890667pt;}
.y13d{bottom:762.114667pt;}
.y21b{bottom:762.177333pt;}
.y83{bottom:765.370667pt;}
.y18a{bottom:766.362667pt;}
.y3e{bottom:767.441333pt;}
.ya2{bottom:768.206667pt;}
.y1fd{bottom:772.804000pt;}
.yd{bottom:774.420000pt;}
.y5b{bottom:776.882667pt;}
.y122{bottom:777.712000pt;}
.y13c{bottom:778.056000pt;}
.y1da{bottom:779.361333pt;}
.yf9{bottom:779.933333pt;}
.y82{bottom:781.312000pt;}
.y158{bottom:782.302667pt;}
.y3d{bottom:783.381333pt;}
.y1fc{bottom:788.744000pt;}
.yc{bottom:789.032000pt;}
.ya1{bottom:792.172000pt;}
.y5a{bottom:793.440000pt;}
.y121{bottom:793.652000pt;}
.y3{bottom:795.100000pt;}
.yf8{bottom:795.873333pt;}
.y81{bottom:797.252000pt;}
.y13b{bottom:797.728000pt;}
.y1bb{bottom:797.783215pt;}
.y1a6{bottom:798.019202pt;}
.y3c{bottom:799.321333pt;}
.ya0{bottom:801.284000pt;}
.y1d9{bottom:802.960000pt;}
.y1fb{bottom:804.685333pt;}
.y59{bottom:809.380000pt;}
.y120{bottom:809.592000pt;}
.y21a{bottom:809.998667pt;}
.yf7{bottom:811.813333pt;}
.y13a{bottom:813.668000pt;}
.y3b{bottom:815.262667pt;}
.y1fa{bottom:820.625333pt;}
.y80{bottom:821.868000pt;}
.y58{bottom:825.321333pt;}
.y11f{bottom:825.532000pt;}
.yb{bottom:826.309333pt;}
.y1d8{bottom:826.560000pt;}
.yf6{bottom:827.753333pt;}
.y7a{bottom:828.380000pt;}
.y14c{bottom:829.335601pt;}
.y139{bottom:829.608000pt;}
.y3a{bottom:831.202667pt;}
.y9f{bottom:834.625333pt;}
.y1f9{bottom:836.565333pt;}
.ya{bottom:840.921333pt;}
.y57{bottom:841.261333pt;}
.y11e{bottom:841.878667pt;}
.yf5{bottom:843.693333pt;}
.y79{bottom:844.320000pt;}
.y138{bottom:845.548000pt;}
.y1d7{bottom:850.160000pt;}
.y1f8{bottom:852.505333pt;}
.y9e{bottom:854.550667pt;}
.y9{bottom:855.533333pt;}
.y56{bottom:857.201333pt;}
.y11d{bottom:857.818667pt;}
.yf4{bottom:859.633333pt;}
.y7f{bottom:859.769333pt;}
.y137{bottom:861.488000pt;}
.y39{bottom:863.108000pt;}
.y1d6{bottom:866.100000pt;}
.y1f7{bottom:868.445333pt;}
.y55{bottom:873.141333pt;}
.y11c{bottom:873.758667pt;}
.yf3{bottom:875.574667pt;}
.y7e{bottom:875.709333pt;}
.y1d5{bottom:882.040000pt;}
.y8{bottom:883.373333pt;}
.y1f6{bottom:884.386667pt;}
.y54{bottom:889.700000pt;}
.yf2{bottom:891.514667pt;}
.y7d{bottom:891.649333pt;}
.y1d4{bottom:897.980000pt;}
.y78{bottom:899.928000pt;}
.y38{bottom:905.640000pt;}
.yf1{bottom:907.454667pt;}
.y7c{bottom:907.589333pt;}
.y77{bottom:914.540000pt;}
.y2{bottom:921.580000pt;}
.y7b{bottom:923.529333pt;}
.y76{bottom:929.152000pt;}
.y7{bottom:929.549333pt;}
.y2d{bottom:937.520000pt;}
.y75{bottom:949.077333pt;}
.y1{bottom:953.460000pt;}
.y2c{bottom:987.997333pt;}
.h1c{height:20.445391pt;}
.h20{height:20.701561pt;}
.h16{height:21.200555pt;}
.h10{height:26.519037pt;}
.h2a{height:27.220225pt;}
.h2b{height:27.254331pt;}
.h24{height:27.322810pt;}
.h25{height:27.357044pt;}
.ha{height:31.784806pt;}
.h1e{height:32.061360pt;}
.h7{height:33.187635pt;}
.h11{height:33.474560pt;}
.h6{height:35.865600pt;}
.h15{height:36.874903pt;}
.h1f{height:37.404920pt;}
.h9{height:37.591971pt;}
.h2{height:39.850400pt;}
.hb{height:41.976021pt;}
.h28{height:42.685290pt;}
.h12{height:42.758562pt;}
.h22{height:42.846158pt;}
.he{height:45.427101pt;}
.hd{height:45.432434pt;}
.h14{height:45.464294pt;}
.h13{height:45.469628pt;}
.hc{height:45.804370pt;}
.h4{height:47.820800pt;}
.h2d{height:48.120294pt;}
.h2e{height:48.125628pt;}
.h2c{height:49.799505pt;}
.h26{height:49.987184pt;}
.h19{height:51.298043pt;}
.h5{height:57.384800pt;}
.h1a{height:59.847716pt;}
.h29{height:77.607293pt;}
.h23{height:77.899770pt;}
.h3{height:82.650000pt;}
.hf{height:92.984021pt;}
.h1b{height:99.599155pt;}
.h17{height:129.432021pt;}
.h1d{height:184.442880pt;}
.h27{height:190.138720pt;}
.h21{height:190.855293pt;}
.h18{height:295.107840pt;}
.h8{height:328.116880pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:76.230856pt;}
.wc{width:76.584125pt;}
.w5{width:127.265587pt;}
.wa{width:139.084725pt;}
.wd{width:139.202006pt;}
.w7{width:184.442880pt;}
.w8{width:225.945280pt;}
.wb{width:225.949600pt;}
.w4{width:264.121517pt;}
.w3{width:368.884800pt;}
.w6{width:368.885760pt;}
.w2{width:368.888800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x5c{left:-2.319363pt;}
.x0{left:0.000000pt;}
.x29{left:2.817877pt;}
.x53{left:3.714475pt;}
.x31{left:8.299930pt;}
.x56{left:11.700595pt;}
.x27{left:13.279853pt;}
.x3b{left:16.100326pt;}
.x5b{left:18.383730pt;}
.x3d{left:20.327142pt;}
.x57{left:22.876041pt;}
.x5e{left:23.929659pt;}
.x4b{left:25.604258pt;}
.x2e{left:26.744218pt;}
.x24{left:28.650053pt;}
.x58{left:29.927138pt;}
.x37{left:31.137545pt;}
.x12{left:34.093091pt;}
.xf{left:35.127274pt;}
.x2d{left:37.176768pt;}
.x11{left:38.879585pt;}
.x2c{left:40.001050pt;}
.x36{left:41.672563pt;}
.x5d{left:43.391764pt;}
.x52{left:48.371426pt;}
.xe{left:49.407801pt;}
.x10{left:50.825111pt;}
.x23{left:51.951276pt;}
.x4a{left:54.135266pt;}
.x4e{left:57.638400pt;}
.x3c{left:58.663083pt;}
.x33{left:63.799305pt;}
.x54{left:67.962078pt;}
.x3a{left:70.267614pt;}
.x51{left:71.644531pt;}
.x4d{left:73.373683pt;}
.x2b{left:74.513643pt;}
.x45{left:76.262007pt;}
.x4f{left:77.216243pt;}
.x30{left:78.631586pt;}
.x2f{left:79.906035pt;}
.x46{left:81.033186pt;}
.x42{left:82.205167pt;}
.x47{left:85.151130pt;}
.x34{left:88.141922pt;}
.x4c{left:89.839053pt;}
.x49{left:92.913101pt;}
.x35{left:94.712700pt;}
.x41{left:96.397022pt;}
.x2a{left:98.542451pt;}
.x40{left:101.686946pt;}
.x50{left:103.979674pt;}
.x3e{left:104.895484pt;}
.x38{left:105.804890pt;}
.x48{left:108.020766pt;}
.x39{left:110.467196pt;}
.x55{left:115.737907pt;}
.x3f{left:116.852250pt;}
.x28{left:120.656384pt;}
.x13{left:144.940940pt;}
.x26{left:148.435145pt;}
.x25{left:152.933490pt;}
.x1{left:179.686667pt;}
.x1e{left:183.348000pt;}
.x63{left:185.305333pt;}
.x1c{left:187.216000pt;}
.x59{left:188.381877pt;}
.x1b{left:189.649333pt;}
.x1f{left:192.969333pt;}
.xa{left:199.612000pt;}
.x64{left:202.268000pt;}
.x43{left:211.187098pt;}
.x6{left:217.380000pt;}
.x68{left:220.226667pt;}
.x2{left:221.194667pt;}
.xc{left:225.796000pt;}
.x4{left:229.092000pt;}
.x5a{left:230.216247pt;}
.x66{left:233.972000pt;}
.x5{left:282.320000pt;}
.xd{left:284.212641pt;}
.x3{left:291.605333pt;}
.x1d{left:309.293333pt;}
.x62{left:312.645333pt;}
.x7{left:316.270667pt;}
.x14{left:318.401333pt;}
.x22{left:323.143085pt;}
.x18{left:326.992000pt;}
.x9{left:334.844000pt;}
.x61{left:336.638667pt;}
.x20{left:347.556000pt;}
.x19{left:348.946667pt;}
.x65{left:349.974667pt;}
.x8{left:353.750667pt;}
.x16{left:359.786667pt;}
.x17{left:362.078667pt;}
.x44{left:364.129547pt;}
.x15{left:369.556000pt;}
.x67{left:372.826667pt;}
.x1a{left:375.408000pt;}
.x32{left:401.940337pt;}
.x5f{left:410.052000pt;}
.x21{left:434.890667pt;}
.x60{left:460.391866pt;}
.xb{left:501.413333pt;}
}




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