
    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_2659742fa41a222b6a12c5b9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.796000;font-style:normal;font-weight: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_29991b8f8d7e2d95831d0165.woff')format("woff");}.ff2{font-family:ff2;line-height:0.980000;font-style:normal;font-weight: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_71bfc6247eaeee74051f7160.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948500;font-style:normal;font-weight: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_17012da45a982491ebbf69a2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.871000;font-style:normal;font-weight: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_ee97e7a3dafa659d4b0e23bc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.867000;font-style:normal;font-weight: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_6b2119d2aefc4cfd1abaf046.woff')format("woff");}.ff6{font-family:ff6;line-height:0.537000;font-style:normal;font-weight: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_f7a55258eff5e03733ed35d8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.966000;font-style:normal;font-weight: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_6aa3be369d7219f6bdf34749.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958000;font-style:normal;font-weight: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_ca0c7d7c3b3d6f5fea91760a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960000;font-style:normal;font-weight: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_33dc6628a0cfe2eceb1889f5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.973000;font-style:normal;font-weight: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_02decfe1fdd960f2d8ebc6f2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.861816;font-style:normal;font-weight: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_54f3ed1d15ef45013450e2c8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.858887;font-style:normal;font-weight: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_cf81477f2bd68c2ab7e552c6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.720000;font-style:normal;font-weight: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_b87ee18c878266c49a2accf7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.966309;font-style:normal;font-weight: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_83c11f575f389cf80528ae3b.woff')format("woff");}.fff{font-family:fff;line-height:0.689000;font-style:normal;font-weight: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_736cc5450db27572fba52b03.woff')format("woff");}.ff10{font-family:ff10;line-height:0.730957;font-style:normal;font-weight: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_006cd623384847f2cb3a5022.woff')format("woff");}.ff11{font-family:ff11;line-height:0.971191;font-style:normal;font-weight: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_eb029be100082be53779b892.woff')format("woff");}.ff12{font-family:ff12;line-height:0.944824;font-style:normal;font-weight: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_381d251fe1a5a2143978391b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.959473;font-style:normal;font-weight: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_9f0c2ef7c2056f25b94b5ef6.woff')format("woff");}.ff14{font-family:ff14;line-height:0.958008;font-style:normal;font-weight: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_2b91dca5f265e2b4f04a3550.woff')format("woff");}.ff15{font-family:ff15;line-height:0.674316;font-style:normal;font-weight: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_68ef48e0139031d3947ea426.woff')format("woff");}.ff16{font-family:ff16;line-height:0.675781;font-style:normal;font-weight: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_ca7fbf09b544b320ee605935.woff')format("woff");}.ff17{font-family:ff17;line-height:0.680176;font-style:normal;font-weight: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_2e19d01db2aa5838f3345ab3.woff')format("woff");}.ff18{font-family:ff18;line-height:0.689453;font-style:normal;font-weight: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_b07a5624713cf39f8455d56b.woff')format("woff");}.ff19{font-family:ff19;line-height:0.695312;font-style:normal;font-weight: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_ebff227064f7998601895528.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.943359;font-style:normal;font-weight: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_d63aae80ab834f99b0fe431c.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.958496;font-style:normal;font-weight: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_35362b852219f448406f12c5.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.951172;font-style:normal;font-weight: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_442adfe994e277092c5256ab.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.958000;font-style:normal;font-weight: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_1e5abf0cd113d5404421cf7a.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.751000;font-style:normal;font-weight: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_c7c5c9a692f5883b4209ff24.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.729500;font-style:normal;font-weight: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_6a021c9093dc40c3d8ab747d.woff')format("woff");}.ff20{font-family:ff20;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_327e12c79048f63e1270890b.woff')format("woff");}.ff21{font-family:ff21;line-height:0.960938;font-style:normal;font-weight: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_3c53851ce09df27abae1a77c.woff')format("woff");}.ff22{font-family:ff22;line-height:0.970703;font-style:normal;font-weight: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_451fdce1ef32ce4aeb6b4a15.woff')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_04a6e776cdc83511c4d3a9f8.woff')format("woff");}.ff24{font-family:ff24;line-height:0.784000;font-style:normal;font-weight: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_e791db1db89ed6cb609b099e.woff')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_6e05635fe26aee85fb878daa.woff')format("woff");}.ff26{font-family:ff26;line-height:0.666000;font-style:normal;font-weight: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_528e6897294e308d3aeb8645.woff')format("woff");}.ff27{font-family:ff27;line-height:0.899000;font-style:normal;font-weight: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_e551655486fe292523a3ca28.woff')format("woff");}.ff28{font-family:ff28;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_6c033bfa8b08a7fdac7ea63d.woff')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_72ac3e01d80da10c7656d2eb.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.666000;font-style:normal;font-weight: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_c528cdf718aa1b82f6e781e4.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.705000;font-style:normal;font-weight: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_61d9bb9fdb8d1becd3ef0ba6.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.899000;font-style:normal;font-weight: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_de25d8055420577bc4f951b9.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_db25b95e42bdfff45317bde4.woff')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_f517179873a645290c9b14a8.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.705000;font-style:normal;font-weight: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_6f3fa605f72dfc0224130201.woff')format("woff");}.ff30{font-family:ff30;line-height:0.666000;font-style:normal;font-weight: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_bd85c1e9f33813cd283ce3cf.woff')format("woff");}.ff31{font-family:ff31;line-height:0.899000;font-style:normal;font-weight: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_c04d2bebde6a955431790887.woff')format("woff");}.ff32{font-family:ff32;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_2d1489da358621df178b530d.woff')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_58a1592a3a9dceebbc76cb14.woff')format("woff");}.ff34{font-family:ff34;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_7e5a0c5e6940c9e3c01196c3.woff')format("woff");}.ff35{font-family:ff35;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_eadc01fe0c6481d1011432f4.woff')format("woff");}.ff36{font-family:ff36;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_50a76b4ebff3c9f1913020e6.woff')format("woff");}.ff37{font-family:ff37;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_6680e530a7bce68abd2034d6.woff')format("woff");}.ff38{font-family:ff38;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;}
.m1{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);}
.m4{transform:matrix(0.081498,0.236343,-0.236343,0.081498,0,0);-ms-transform:matrix(0.081498,0.236343,-0.236343,0.081498,0,0);-webkit-transform:matrix(0.081498,0.236343,-0.236343,0.081498,0,0);}
.m5{transform:matrix(0.083349,0.235697,-0.235697,0.083349,0,0);-ms-transform:matrix(0.083349,0.235697,-0.235697,0.083349,0,0);-webkit-transform:matrix(0.083349,0.235697,-0.235697,0.083349,0,0);}
.m14{transform:matrix(0.084071,0.235440,-0.235440,0.084071,0,0);-ms-transform:matrix(0.084071,0.235440,-0.235440,0.084071,0,0);-webkit-transform:matrix(0.084071,0.235440,-0.235440,0.084071,0,0);}
.m6{transform:matrix(0.089671,0.233365,-0.233365,0.089671,0,0);-ms-transform:matrix(0.089671,0.233365,-0.233365,0.089671,0,0);-webkit-transform:matrix(0.089671,0.233365,-0.233365,0.089671,0,0);}
.m3{transform:matrix(0.094720,0.231362,-0.231362,0.094720,0,0);-ms-transform:matrix(0.094720,0.231362,-0.231362,0.094720,0,0);-webkit-transform:matrix(0.094720,0.231362,-0.231362,0.094720,0,0);}
.m7{transform:matrix(0.101702,0.228379,-0.228379,0.101702,0,0);-ms-transform:matrix(0.101702,0.228379,-0.228379,0.101702,0,0);-webkit-transform:matrix(0.101702,0.228379,-0.228379,0.101702,0,0);}
.m8{transform:matrix(0.114426,0.222276,-0.222276,0.114426,0,0);-ms-transform:matrix(0.114426,0.222276,-0.222276,0.114426,0,0);-webkit-transform:matrix(0.114426,0.222276,-0.222276,0.114426,0,0);}
.m13{transform:matrix(0.115429,0.221757,-0.221757,0.115429,0,0);-ms-transform:matrix(0.115429,0.221757,-0.221757,0.115429,0,0);-webkit-transform:matrix(0.115429,0.221757,-0.221757,0.115429,0,0);}
.m9{transform:matrix(0.121525,-0.218476,0.218476,0.121525,0,0);-ms-transform:matrix(0.121525,-0.218476,0.218476,0.121525,0,0);-webkit-transform:matrix(0.121525,-0.218476,0.218476,0.121525,0,0);}
.m12{transform:matrix(0.135119,0.210340,-0.210340,0.135119,0,0);-ms-transform:matrix(0.135119,0.210340,-0.210340,0.135119,0,0);-webkit-transform:matrix(0.135119,0.210340,-0.210340,0.135119,0,0);}
.ma{transform:matrix(0.138022,-0.208446,0.208446,0.138022,0,0);-ms-transform:matrix(0.138022,-0.208446,0.208446,0.138022,0,0);-webkit-transform:matrix(0.138022,-0.208446,0.208446,0.138022,0,0);}
.m2{transform:matrix(0.140074,0.207073,-0.207073,0.140074,0,0);-ms-transform:matrix(0.140074,0.207073,-0.207073,0.140074,0,0);-webkit-transform:matrix(0.140074,0.207073,-0.207073,0.140074,0,0);}
.m10{transform:matrix(0.143154,0.204956,-0.204956,0.143154,0,0);-ms-transform:matrix(0.143154,0.204956,-0.204956,0.143154,0,0);-webkit-transform:matrix(0.143154,0.204956,-0.204956,0.143154,0,0);}
.m11{transform:matrix(0.143756,0.204534,-0.204534,0.143756,0,0);-ms-transform:matrix(0.143756,0.204534,-0.204534,0.143756,0,0);-webkit-transform:matrix(0.143756,0.204534,-0.204534,0.143756,0,0);}
.mb{transform:matrix(0.155850,-0.195475,0.195475,0.155850,0,0);-ms-transform:matrix(0.155850,-0.195475,0.195475,0.155850,0,0);-webkit-transform:matrix(0.155850,-0.195475,0.195475,0.155850,0,0);}
.mc{transform:matrix(0.172833,-0.180634,0.180634,0.172833,0,0);-ms-transform:matrix(0.172833,-0.180634,0.180634,0.172833,0,0);-webkit-transform:matrix(0.172833,-0.180634,0.180634,0.172833,0,0);}
.md{transform:matrix(0.187516,-0.165342,0.165342,0.187516,0,0);-ms-transform:matrix(0.187516,-0.165342,0.165342,0.187516,0,0);-webkit-transform:matrix(0.187516,-0.165342,0.165342,0.187516,0,0);}
.m15{transform:matrix(0.200449,-0.149399,0.149399,0.200449,0,0);-ms-transform:matrix(0.200449,-0.149399,0.149399,0.200449,0,0);-webkit-transform:matrix(0.200449,-0.149399,0.149399,0.200449,0,0);}
.me{transform:matrix(0.204658,-0.143580,0.143580,0.204658,0,0);-ms-transform:matrix(0.204658,-0.143580,0.143580,0.204658,0,0);-webkit-transform:matrix(0.204658,-0.143580,0.143580,0.204658,0,0);}
.m16{transform:matrix(0.205865,-0.141843,0.141843,0.205865,0,0);-ms-transform:matrix(0.205865,-0.141843,0.141843,0.205865,0,0);-webkit-transform:matrix(0.205865,-0.141843,0.141843,0.205865,0,0);}
.mf{transform:matrix(0.215484,-0.126755,0.126755,0.215484,0,0);-ms-transform:matrix(0.215484,-0.126755,0.126755,0.215484,0,0);-webkit-transform:matrix(0.215484,-0.126755,0.126755,0.215484,0,0);}
.m17{transform:matrix(0.218279,-0.121877,0.121877,0.218279,0,0);-ms-transform:matrix(0.218279,-0.121877,0.121877,0.218279,0,0);-webkit-transform:matrix(0.218279,-0.121877,0.121877,0.218279,0,0);}
.m18{transform:matrix(0.239028,-0.073251,0.073251,0.239028,0,0);-ms-transform:matrix(0.239028,-0.073251,0.073251,0.239028,0,0);-webkit-transform:matrix(0.239028,-0.073251,0.073251,0.239028,0,0);}
.m19{transform:matrix(0.243053,-0.058526,0.058526,0.243053,0,0);-ms-transform:matrix(0.243053,-0.058526,0.058526,0.243053,0,0);-webkit-transform:matrix(0.243053,-0.058526,0.058526,0.243053,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);}
.vd{vertical-align:-93.933690px;}
.vb{vertical-align:-65.093970px;}
.v3{vertical-align:-53.334931px;}
.v9{vertical-align:-20.038800px;}
.ve{vertical-align:-10.399200px;}
.v2{vertical-align:-1.609085px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.557200px;}
.v8{vertical-align:9.806274px;}
.v7{vertical-align:19.612548px;}
.v5{vertical-align:29.418822px;}
.v6{vertical-align:49.031370px;}
.va{vertical-align:65.093970px;}
.v4{vertical-align:67.010204px;}
.vc{vertical-align:75.023558px;}
.ls6a{letter-spacing:-15.031252px;}
.ls13{letter-spacing:-9.401075px;}
.ls24{letter-spacing:-8.375164px;}
.ls12{letter-spacing:-8.337858px;}
.ls11{letter-spacing:-8.169982px;}
.ls15{letter-spacing:-8.058064px;}
.ls19{letter-spacing:-7.423865px;}
.ls18{letter-spacing:-7.367906px;}
.ls31{letter-spacing:-7.274641px;}
.ls32{letter-spacing:-7.255989px;}
.ls4e{letter-spacing:-6.705915px;}
.ls2f{letter-spacing:-6.677748px;}
.ls35{letter-spacing:-6.472566px;}
.ls30{letter-spacing:-6.248731px;}
.ls1d{letter-spacing:-5.838366px;}
.lsb{letter-spacing:-5.801060px;}
.ls10{letter-spacing:-5.763754px;}
.lsc{letter-spacing:-5.633184px;}
.ls23{letter-spacing:-5.577225px;}
.ls1f{letter-spacing:-5.521266px;}
.ls1c{letter-spacing:-5.502613px;}
.lse{letter-spacing:-5.483961px;}
.ls1e{letter-spacing:-5.446655px;}
.ls2e{letter-spacing:-5.428002px;}
.ls57{letter-spacing:-5.221440px;}
.ls43{letter-spacing:-5.019260px;}
.ls39{letter-spacing:-4.849690px;}
.ls51{letter-spacing:-4.538596px;}
.ls29{letter-spacing:-4.495355px;}
.ls1b{letter-spacing:-4.476702px;}
.lsa{letter-spacing:-4.420744px;}
.ls16{letter-spacing:-4.308826px;}
.ls33{letter-spacing:-4.215561px;}
.ls28{letter-spacing:-4.196909px;}
.ls27{letter-spacing:-4.084991px;}
.ls2d{letter-spacing:-3.786544px;}
.ls2c{letter-spacing:-3.767891px;}
.ls1a{letter-spacing:-3.711932px;}
.ls50{letter-spacing:-3.667599px;}
.ls22{letter-spacing:-3.655974px;}
.ls17{letter-spacing:-3.618668px;}
.ls26{letter-spacing:-3.600015px;}
.ls2a{letter-spacing:-3.581362px;}
.ls21{letter-spacing:-3.506750px;}
.ls9{letter-spacing:-3.376180px;}
.ls44{letter-spacing:-3.289650px;}
.ls3b{letter-spacing:-3.204865px;}
.ls40{letter-spacing:-3.187908px;}
.ls3f{letter-spacing:-3.137037px;}
.ls3d{letter-spacing:-3.103123px;}
.ls41{letter-spacing:-3.035296px;}
.ls3c{letter-spacing:-3.001382px;}
.ls42{letter-spacing:-2.984425px;}
.ls2b{letter-spacing:-2.928510px;}
.ls4b{letter-spacing:-2.710163px;}
.ls47{letter-spacing:-1.544252px;}
.ls4f{letter-spacing:-1.285590px;}
.ls67{letter-spacing:-0.987666px;}
.ls52{letter-spacing:-0.343255px;}
.ls6c{letter-spacing:-0.085144px;}
.ls69{letter-spacing:-0.051086px;}
.ls68{letter-spacing:-0.034057px;}
.ls56{letter-spacing:-0.021574px;}
.ls20{letter-spacing:-0.018653px;}
.ls6d{letter-spacing:-0.017029px;}
.ls38{letter-spacing:-0.016957px;}
.ls0{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.021574px;}
.ls61{letter-spacing:0.030961px;}
.ls65{letter-spacing:0.033672px;}
.ls5b{letter-spacing:0.035760px;}
.ls66{letter-spacing:0.036733px;}
.ls2{letter-spacing:0.037306px;}
.ls63{letter-spacing:0.039196px;}
.ls59{letter-spacing:0.059601px;}
.ls6e{letter-spacing:0.068593px;}
.ls1{letter-spacing:0.074612px;}
.ls70{letter-spacing:0.110349px;}
.ls53{letter-spacing:0.717650px;}
.ls5f{letter-spacing:1.546136px;}
.ls58{letter-spacing:1.546680px;}
.ls5a{letter-spacing:1.547951px;}
.ls62{letter-spacing:1.847099px;}
.ls4c{letter-spacing:1.911012px;}
.ls49{letter-spacing:2.316378px;}
.ls4a{letter-spacing:2.895473px;}
.ls48{letter-spacing:3.281536px;}
.ls4d{letter-spacing:3.578804px;}
.ls5{letter-spacing:4.130786px;}
.ls5d{letter-spacing:4.604737px;}
.ls5c{letter-spacing:8.034804px;}
.ls37{letter-spacing:10.405242px;}
.ls36{letter-spacing:10.757963px;}
.ls4{letter-spacing:10.816513px;}
.ls7{letter-spacing:14.271478px;}
.ls45{letter-spacing:16.413256px;}
.ls46{letter-spacing:17.177399px;}
.ls60{letter-spacing:25.164294px;}
.ls25{letter-spacing:34.918279px;}
.lsf{letter-spacing:36.951448px;}
.lsd{letter-spacing:38.350418px;}
.ls6{letter-spacing:51.431027px;}
.ls3a{letter-spacing:52.464830px;}
.ls3e{letter-spacing:52.668314px;}
.ls34{letter-spacing:54.671729px;}
.ls14{letter-spacing:55.063440px;}
.ls3{letter-spacing:58.924878px;}
.ls5e{letter-spacing:59.845332px;}
.ls8{letter-spacing:141.147404px;}
.ls6b{letter-spacing:142.496329px;}
.ls6f{letter-spacing:223.200180px;}
.ls55{letter-spacing:290.970782px;}
.ls72{letter-spacing:2708.339992px;}
.ls71{letter-spacing:3622.302981px;}
.ls64{letter-spacing:4062.531229px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8c{word-spacing:-117.675288px;}
.ws76{word-spacing:-106.176000px;}
.ws8d{word-spacing:-98.062740px;}
.ws8b{word-spacing:-78.450192px;}
.wsad{word-spacing:-55.584000px;}
.wsd{word-spacing:-55.249969px;}
.ws52{word-spacing:-54.858258px;}
.ws8e{word-spacing:-54.472320px;}
.ws6d{word-spacing:-52.837883px;}
.ws64{word-spacing:-52.634400px;}
.ws9c{word-spacing:-51.643467px;}
.wsa1{word-spacing:-51.095931px;}
.ws92{word-spacing:-47.339842px;}
.wsa0{word-spacing:-46.837955px;}
.ws83{word-spacing:-40.748200px;}
.ws6{word-spacing:-38.536947px;}
.ws8{word-spacing:-37.137977px;}
.ws26{word-spacing:-35.104808px;}
.wsa2{word-spacing:-32.424000px;}
.ws89{word-spacing:-30.009160px;}
.ws88{word-spacing:-29.987586px;}
.ws8a{word-spacing:-29.966012px;}
.ws58{word-spacing:-14.452358px;}
.ws7d{word-spacing:-3.752533px;}
.ws78{word-spacing:-3.474567px;}
.ws7a{word-spacing:-3.088504px;}
.ws79{word-spacing:-2.509410px;}
.ws7c{word-spacing:-2.084740px;}
.ws90{word-spacing:-0.188160px;}
.ws1f{word-spacing:-0.186529px;}
.ws91{word-spacing:-0.178802px;}
.ws94{word-spacing:-0.170287px;}
.ws5c{word-spacing:-0.169570px;}
.ws42{word-spacing:-0.167876px;}
.ws96{word-spacing:-0.154961px;}
.ws9a{word-spacing:-0.153258px;}
.ws95{word-spacing:-0.136230px;}
.ws97{word-spacing:-0.119201px;}
.ws99{word-spacing:-0.085144px;}
.ws0{word-spacing:0.000000px;}
.ws82{word-spacing:0.152558px;}
.ws93{word-spacing:0.817379px;}
.ws7f{word-spacing:1.111862px;}
.ws77{word-spacing:1.351221px;}
.ws7b{word-spacing:2.536434px;}
.ws80{word-spacing:3.474567px;}
.ws2c{word-spacing:4.010379px;}
.ws81{word-spacing:4.347899px;}
.ws8f{word-spacing:4.939200px;}
.ws7{word-spacing:5.297431px;}
.ws7e{word-spacing:6.532187px;}
.wse{word-spacing:7.871535px;}
.ws25{word-spacing:8.188635px;}
.ws98{word-spacing:14.912051px;}
.ws69{word-spacing:28.165508px;}
.ws56{word-spacing:28.312570px;}
.ws57{word-spacing:29.207936px;}
.wsbb{word-spacing:35.237104px;}
.ws59{word-spacing:35.965709px;}
.wsbc{word-spacing:37.822490px;}
.ws1e{word-spacing:40.588769px;}
.ws3d{word-spacing:40.775298px;}
.wsb8{word-spacing:40.866991px;}
.ws1a{word-spacing:40.887216px;}
.wsbd{word-spacing:41.340917px;}
.ws4{word-spacing:41.614680px;}
.ws19{word-spacing:42.398103px;}
.ws18{word-spacing:43.181526px;}
.ws3f{word-spacing:43.629196px;}
.ws3e{word-spacing:44.207437px;}
.ws22{word-spacing:44.729719px;}
.ws33{word-spacing:45.158736px;}
.ws1{word-spacing:45.718324px;}
.wsa{word-spacing:46.035424px;}
.ws15{word-spacing:46.259259px;}
.ws5b{word-spacing:46.919897px;}
.ws13{word-spacing:46.968070px;}
.ws6a{word-spacing:47.496441px;}
.ws1b{word-spacing:48.087246px;}
.wsbf{word-spacing:48.127431px;}
.ws9{word-spacing:48.292428px;}
.ws24{word-spacing:48.478957px;}
.ws5{word-spacing:48.721445px;}
.ws4f{word-spacing:48.889321px;}
.ws12{word-spacing:49.523521px;}
.ws27{word-spacing:49.821968px;}
.ws2e{word-spacing:50.195026px;}
.ws5a{word-spacing:50.294340px;}
.ws4b{word-spacing:50.959796px;}
.ws68{word-spacing:51.396542px;}
.ws14{word-spacing:52.023013px;}
.ws65{word-spacing:52.074820px;}
.ws6f{word-spacing:52.193519px;}
.ws70{word-spacing:52.244390px;}
.ws36{word-spacing:52.302807px;}
.ws73{word-spacing:52.498744px;}
.ws38{word-spacing:52.619907px;}
.wsa3{word-spacing:52.648921px;}
.ws6c{word-spacing:52.753099px;}
.ws10{word-spacing:52.862395px;}
.ws37{word-spacing:53.030271px;}
.ws40{word-spacing:53.608512px;}
.ws3b{word-spacing:53.627165px;}
.ws21{word-spacing:53.739082px;}
.ws1c{word-spacing:53.869653px;}
.wsf{word-spacing:54.112141px;}
.wsa8{word-spacing:54.655922px;}
.ws60{word-spacing:54.787934px;}
.ws23{word-spacing:54.951523px;}
.ws5f{word-spacing:54.957503px;}
.ws63{word-spacing:55.296642px;}
.ws20{word-spacing:55.417846px;}
.ws5e{word-spacing:55.466212px;}
.ws61{word-spacing:55.805351px;}
.ws5d{word-spacing:55.957964px;}
.ws62{word-spacing:56.144490px;}
.ws67{word-spacing:56.924510px;}
.wsb0{word-spacing:57.282603px;}
.ws50{word-spacing:57.749462px;}
.ws30{word-spacing:57.824073px;}
.ws6e{word-spacing:57.908014px;}
.ws2a{word-spacing:57.917338px;}
.ws72{word-spacing:57.924971px;}
.ws6b{word-spacing:58.213239px;}
.ws4c{word-spacing:58.215785px;}
.ws71{word-spacing:58.314981px;}
.ws3c{word-spacing:58.383661px;}
.ws4d{word-spacing:58.402314px;}
.wsba{word-spacing:58.491304px;}
.ws11{word-spacing:58.644802px;}
.ws3{word-spacing:58.682108px;}
.ws47{word-spacing:58.719414px;}
.wsae{word-spacing:58.946724px;}
.ws46{word-spacing:59.521490px;}
.ws66{word-spacing:59.841107px;}
.ws74{word-spacing:59.925892px;}
.ws2f{word-spacing:60.472789px;}
.ws44{word-spacing:60.659318px;}
.wsb1{word-spacing:60.946803px;}
.wsb5{word-spacing:60.960918px;}
.ws1d{word-spacing:61.200253px;}
.ws29{word-spacing:61.237559px;}
.ws9d{word-spacing:61.293434px;}
.ws53{word-spacing:61.871759px;}
.wsa6{word-spacing:61.892896px;}
.wsbe{word-spacing:61.895090px;}
.ws28{word-spacing:61.946370px;}
.ws39{word-spacing:63.625134px;}
.ws17{word-spacing:63.699745px;}
.wsab{word-spacing:64.250076px;}
.ws51{word-spacing:65.266591px;}
.wsaf{word-spacing:65.867918px;}
.ws3a{word-spacing:66.180585px;}
.ws34{word-spacing:67.001313px;}
.wsb9{word-spacing:67.172576px;}
.wsa5{word-spacing:67.230167px;}
.wsaa{word-spacing:67.869895px;}
.ws16{word-spacing:68.083183px;}
.ws4a{word-spacing:68.680077px;}
.wsb6{word-spacing:69.294603px;}
.ws4e{word-spacing:69.594070px;}
.wsb{word-spacing:70.825163px;}
.ws35{word-spacing:71.104957px;}
.wsc{word-spacing:73.007556px;}
.wsc0{word-spacing:75.867221px;}
.wsb3{word-spacing:76.015803px;}
.wsb2{word-spacing:76.487403px;}
.wsa4{word-spacing:77.160578px;}
.wsa9{word-spacing:77.848190px;}
.ws49{word-spacing:83.826254px;}
.ws2{word-spacing:83.882212px;}
.ws2d{word-spacing:85.318488px;}
.ws2b{word-spacing:85.411752px;}
.ws43{word-spacing:85.579629px;}
.ws41{word-spacing:86.195175px;}
.ws45{word-spacing:86.381704px;}
.ws32{word-spacing:86.866681px;}
.ws31{word-spacing:88.340262px;}
.ws54{word-spacing:95.404771px;}
.wsb4{word-spacing:95.965203px;}
.wsa7{word-spacing:97.526581px;}
.ws48{word-spacing:99.065695px;}
.wsac{word-spacing:101.469640px;}
.ws75{word-spacing:108.383446px;}
.wsb7{word-spacing:109.437791px;}
.ws84{word-spacing:133.789101px;}
.ws85{word-spacing:333.176194px;}
.ws87{word-spacing:378.082928px;}
.ws9f{word-spacing:692.280341px;}
.ws9e{word-spacing:701.759148px;}
.ws9b{word-spacing:789.327640px;}
.ws86{word-spacing:1668.169779px;}
.ws55{word-spacing:6474.077639px;}
._41{margin-left:-1305.272662px;}
._16{margin-left:-63.492969px;}
._2f{margin-left:-60.995071px;}
._30{margin-left:-59.129778px;}
._35{margin-left:-56.743328px;}
._33{margin-left:-55.259194px;}
._36{margin-left:-53.604481px;}
._10{margin-left:-43.498283px;}
._11{margin-left:-42.361247px;}
._25{margin-left:-41.294116px;}
._7{margin-left:-30.192000px;}
._1{margin-left:-28.800000px;}
._3{margin-left:-24.948240px;}
._0{margin-left:-23.040000px;}
._2{margin-left:-19.200000px;}
._6{margin-left:-17.808000px;}
._27{margin-left:-16.334537px;}
._37{margin-left:-13.104000px;}
._44{margin-left:-11.080561px;}
._32{margin-left:-9.920570px;}
._8{margin-left:-8.688000px;}
._1e{margin-left:-6.865012px;}
._5{margin-left:-5.376000px;}
._d{margin-left:-3.730585px;}
._4{margin-left:-2.494800px;}
._a{margin-left:-1.492234px;}
._b{width:1.678763px;}
._18{width:3.544056px;}
._12{width:5.013061px;}
._39{width:6.370722px;}
._3a{width:7.851641px;}
._3e{width:8.885208px;}
._3c{width:10.669638px;}
._38{width:11.702404px;}
._45{width:13.112115px;}
._3b{width:16.135134px;}
._3d{width:20.441305px;}
._22{width:36.000149px;}
._f{width:37.305854px;}
._23{width:38.425029px;}
._14{width:39.544205px;}
._13{width:41.036439px;}
._24{width:43.088261px;}
._9{width:44.090827px;}
._1d{width:45.513142px;}
._1c{width:47.075295px;}
._34{width:48.272794px;}
._1b{width:49.803315px;}
._17{width:51.295549px;}
._29{width:52.863931px;}
._1a{width:54.093488px;}
._20{width:55.958781px;}
._28{width:56.967733px;}
._19{width:58.383661px;}
._21{width:59.875895px;}
._e{width:61.707839px;}
._15{width:63.769591px;}
._1f{width:64.912186px;}
._26{width:66.427839px;}
._2e{width:70.143074px;}
._51{width:77.235240px;}
._c{width:81.140232px;}
._2d{width:85.840770px;}
._2a{width:87.482227px;}
._4f{width:90.933778px;}
._2b{width:100.352747px;}
._2c{width:101.471922px;}
._49{width:110.640505px;}
._50{width:113.826806px;}
._52{width:172.868538px;}
._48{width:181.358710px;}
._4e{width:204.214291px;}
._31{width:220.224199px;}
._4c{width:221.747167px;}
._4b{width:226.623329px;}
._47{width:308.705684px;}
._40{width:580.637583px;}
._43{width:591.423249px;}
._46{width:864.493906px;}
._42{width:1137.002196px;}
._3f{width:2053.842000px;}
._4a{width:3394.251318px;}
._4d{width:3800.268455px;}
.fc10{color:rgb(25,25,25);}
.fcd{color:rgb(102,0,204);}
.fc0{color:rgb(255,255,255);}
.fc1{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc6{color:rgb(33,33,33);}
.fc7{color:rgb(104,104,104);}
.fce{color:rgb(72,174,54);}
.fc2{color:rgb(35,31,32);}
.fc9{color:rgb(51,51,51);}
.fca{color:rgb(128,128,128);}
.fc3{color:rgb(196,22,29);}
.fc4{color:transparent;}
.fcf{color:rgb(38,38,38);}
.fc8{color:rgb(0,77,168);}
.fcb{color:rgb(204,0,0);}
.fcc{color:rgb(0,102,204);}
.fs33{font-size:40.794100px;}
.fs30{font-size:49.031370px;}
.fs32{font-size:58.837644px;}
.fs36{font-size:68.643918px;}
.fs2f{font-size:78.450192px;}
.fs34{font-size:98.062740px;}
.fs2e{font-size:107.869014px;}
.fs50{font-size:110.666456px;}
.fs12{font-size:116.190005px;}
.fs31{font-size:117.675288px;}
.fs3c{font-size:119.201046px;}
.fs51{font-size:122.962729px;}
.fs35{font-size:127.481562px;}
.fs1f{font-size:130.178497px;}
.fs24{font-size:130.179191px;}
.fs22{font-size:130.179712px;}
.fs21{font-size:130.180092px;}
.fs26{font-size:130.180707px;}
.fs23{font-size:130.181157px;}
.fs2a{font-size:130.182267px;}
.fs1a{font-size:130.182829px;}
.fs2c{font-size:130.183295px;}
.fs2b{font-size:130.183331px;}
.fs1b{font-size:130.184105px;}
.fs1c{font-size:130.184517px;}
.fs1e{font-size:130.184566px;}
.fs14{font-size:130.184880px;}
.fs28{font-size:130.185466px;}
.fs10{font-size:130.185941px;}
.fs15{font-size:130.185985px;}
.fs18{font-size:130.186664px;}
.fs1d{font-size:130.187279px;}
.fs17{font-size:130.188601px;}
.fs27{font-size:130.190408px;}
.fs19{font-size:130.190604px;}
.fs25{font-size:130.191012px;}
.fs29{font-size:130.191064px;}
.fs20{font-size:130.191387px;}
.fs16{font-size:130.192395px;}
.fs7{font-size:135.661570px;}
.fs42{font-size:136.009233px;}
.fs41{font-size:137.185106px;}
.fs2d{font-size:137.287836px;}
.fs48{font-size:142.580065px;}
.fs11{font-size:146.459184px;}
.fs5{font-size:146.963486px;}
.fs52{font-size:147.555299px;}
.fs4a{font-size:148.012344px;}
.fs3e{font-size:154.806551px;}
.fs6{font-size:158.267671px;}
.fs47{font-size:158.422295px;}
.fs4e{font-size:159.635404px;}
.fs4b{font-size:164.458160px;}
.fsa{font-size:167.311473px;}
.fs3{font-size:168.000000px;}
.fs43{font-size:168.360729px;}
.fs9{font-size:169.569587px;}
.fs3b{font-size:170.287200px;}
.fs3d{font-size:172.007276px;}
.fsc{font-size:173.728368px;}
.fs4d{font-size:177.372671px;}
.fse{font-size:180.000000px;}
.fs8{font-size:180.880581px;}
.fs44{font-size:183.666178px;}
.fs3f{font-size:185.767868px;}
.fs4{font-size:186.529269px;}
.fs3a{font-size:188.160000px;}
.fs45{font-size:190.080000px;}
.fs49{font-size:190.106786px;}
.fsd{font-size:190.697328px;}
.fs46{font-size:192.000000px;}
.fsb{font-size:193.031520px;}
.fs40{font-size:195.978722px;}
.fs4c{font-size:197.349825px;}
.fs4f{font-size:212.847240px;}
.fsf{font-size:216.000000px;}
.fs37{font-size:240.000000px;}
.fs1{font-size:249.480000px;}
.fs39{font-size:282.240000px;}
.fs38{font-size:288.000000px;}
.fs2{font-size:336.000000px;}
.fs0{font-size:384.000000px;}
.fs13{font-size:828.952223px;}
.y4c{bottom:-1985.933754px;}
.y4b{bottom:-1839.592498px;}
.y1a3{bottom:-1795.246680px;}
.y4a{bottom:-1782.980850px;}
.y49{bottom:-1726.369202px;}
.y48{bottom:-1669.757611px;}
.y199{bottom:-1646.995860px;}
.y47{bottom:-1613.467716px;}
.y46{bottom:-1556.856068px;}
.y45{bottom:-1500.244704px;}
.y44{bottom:-1443.632999px;}
.y43{bottom:-1387.342991px;}
.y42{bottom:-1330.731286px;}
.y41{bottom:-1274.119581px;}
.y40{bottom:-1217.829573px;}
.y3f{bottom:-1161.218435px;}
.y18e{bottom:-1139.932815px;}
.y3e{bottom:-1104.606731px;}
.y3d{bottom:-1047.995026px;}
.y3c{bottom:-991.705018px;}
.y3b{bottom:-935.093313px;}
.y1a2{bottom:-930.649380px;}
.y1ac{bottom:-886.946505px;}
.y3a{bottom:-878.481608px;}
.y39{bottom:-821.869904px;}
.y1a1{bottom:-806.488530px;}
.y38{bottom:-765.580462px;}
.y37{bottom:-708.968758px;}
.y67{bottom:-695.442203px;}
.ye0{bottom:-689.308485px;}
.y1a0{bottom:-682.327680px;}
.ye1{bottom:-665.060940px;}
.y36{bottom:-652.357053px;}
.ydc{bottom:-648.965982px;}
.ydf{bottom:-646.514414px;}
.y66{bottom:-639.153329px;}
.ye3{bottom:-621.998728px;}
.ydb{bottom:-619.547160px;}
.yde{bottom:-614.644023px;}
.y35{bottom:-595.745349px;}
.ye2{bottom:-592.579907px;}
.yda{bottom:-590.128338px;}
.y65{bottom:-582.542759px;}
.ydd{bottom:-580.322064px;}
.y19f{bottom:-558.166680px;}
.yd9{bottom:-550.903242px;}
.y1ab{bottom:-544.808505px;}
.y34{bottom:-539.455340px;}
.y64{bottom:-525.932189px;}
.yd8{bottom:-519.032852px;}
.yd7{bottom:-487.162461px;}
.y33{bottom:-482.843635px;}
.y63{bottom:-469.321052px;}
.y1aa{bottom:-458.734605px;}
.y19e{bottom:-434.005830px;}
.y32{bottom:-426.232498px;}
.y62{bottom:-413.032745px;}
.y1a9{bottom:-372.660705px;}
.y31{bottom:-369.942489px;}
.y61{bottom:-356.421608px;}
.yd4{bottom:-344.971488px;}
.y18d{bottom:-318.833415px;}
.y30{bottom:-313.330785px;}
.y19d{bottom:-309.844980px;}
.y124{bottom:-303.065685px;}
.y60{bottom:-299.811038px;}
.y198{bottom:-299.768160px;}
.y1a8{bottom:-286.586805px;}
.ybc{bottom:-283.682276px;}
.y125{bottom:-278.818140px;}
.y120{bottom:-262.723182px;}
.y123{bottom:-260.271614px;}
.y2f{bottom:-256.719080px;}
.ybb{bottom:-256.715022px;}
.yd6{bottom:-251.758552px;}
.yb3{bottom:-244.457180px;}
.y5f{bottom:-243.522164px;}
.y127{bottom:-235.755928px;}
.y11f{bottom:-233.304360px;}
.yba{bottom:-229.747769px;}
.y122{bottom:-228.401223px;}
.yb2{bottom:-210.135221px;}
.y18c{bottom:-207.937815px;}
.y126{bottom:-206.337107px;}
.y11e{bottom:-203.885538px;}
.yb9{bottom:-202.780515px;}
.y1a7{bottom:-200.512830px;}
.y2e{bottom:-200.107376px;}
.y121{bottom:-194.079264px;}
.y5e{bottom:-186.911595px;}
.y19c{bottom:-185.684070px;}
.y197{bottom:-184.647405px;}
.yb8{bottom:-175.813261px;}
.y11d{bottom:-164.660442px;}
.y2d{bottom:-143.817367px;}
.yd2{bottom:-141.491302px;}
.yb7{bottom:-134.136597px;}
.y11c{bottom:-132.790052px;}
.y5d{bottom:-130.300457px;}
.y1a6{bottom:-114.438900px;}
.yd1{bottom:-109.620912px;}
.yb6{bottom:-107.169343px;}
.y11b{bottom:-100.919661px;}
.y2c{bottom:-87.206230px;}
.yd0{bottom:-75.298953px;}
.y5c{bottom:-73.689887px;}
.ycf{bottom:-43.428562px;}
.y2b{bottom:-30.594525px;}
.y96{bottom:-0.000052px;}
.y0{bottom:0.000000px;}
.y180{bottom:3.410700px;}
.y6b{bottom:11.456553px;}
.y89{bottom:14.926158px;}
.y17d{bottom:18.010500px;}
.y2a{bottom:26.017180px;}
.y7e{bottom:27.000000px;}
.y18a{bottom:28.332465px;}
.y7{bottom:28.490625px;}
.yeb{bottom:30.779700px;}
.ye7{bottom:30.779850px;}
.y128{bottom:34.345965px;}
.y7b{bottom:39.331321px;}
.y118{bottom:41.271312px;}
.y72{bottom:41.938302px;}
.y6{bottom:42.000000px;}
.y16d{bottom:51.745454px;}
.y86{bottom:53.253244px;}
.y19a{bottom:60.640680px;}
.yc0{bottom:64.440451px;}
.y183{bottom:65.908320px;}
.y15c{bottom:69.026520px;}
.y97{bottom:70.121324px;}
.yd3{bottom:76.698294px;}
.y29{bottom:82.307188px;}
.y17f{bottom:91.510500px;}
.y1a4{bottom:92.799255px;}
.y16c{bottom:99.793812px;}
.y100{bottom:102.560524px;}
.yea{bottom:102.779700px;}
.ye6{bottom:102.779850px;}
.y88{bottom:104.204912px;}
.y195{bottom:106.017360px;}
.yc4{bottom:106.117116px;}
.y158{bottom:128.816100px;}
.yff{bottom:129.527778px;}
.y182{bottom:131.908320px;}
.y5{bottom:132.450000px;}
.y11a{bottom:134.484248px;}
.yc2{bottom:137.987506px;}
.y28{bottom:138.918893px;}
.yf7{bottom:141.785620px;}
.y71{bottom:144.622647px;}
.y16b{bottom:147.841716px;}
.y159{bottom:153.063645px;}
.yc3{bottom:155.148486px;}
.yfe{bottom:156.495032px;}
.y189{bottom:158.428350px;}
.yca{bottom:164.954760px;}
.y154{bottom:169.158603px;}
.y157{bottom:171.610171px;}
.ybd{bottom:172.309465px;}
.yc1{bottom:174.761034px;}
.ye9{bottom:174.779700px;}
.ye5{bottom:174.779850px;}
.yf6{bottom:176.107579px;}
.yd5{bottom:176.947448px;}
.y77{bottom:178.969497px;}
.ybf{bottom:182.115740px;}
.y16e{bottom:182.218742px;}
.yfd{bottom:183.462285px;}
.y84{bottom:186.193572px;}
.ye8{bottom:186.193650px;}
.yec{bottom:189.422250px;}
.y8d{bottom:190.314998px;}
.yc9{bottom:191.922014px;}
.y27{bottom:195.530597px;}
.y16a{bottom:195.890073px;}
.y15b{bottom:196.125857px;}
.y90{bottom:196.500000px;}
.y181{bottom:197.908350px;}
.y153{bottom:198.577425px;}
.y156{bottom:203.480562px;}
.ybe{bottom:206.631424px;}
.yfc{bottom:210.429539px;}
.yc8{bottom:218.889267px;}
.y15a{bottom:225.544678px;}
.y152{bottom:227.996247px;}
.y8b{bottom:228.581841px;}
.y188{bottom:234.928350px;}
.y8{bottom:235.031100px;}
.y155{bottom:237.802521px;}
.y116{bottom:244.751498px;}
.yc7{bottom:245.856520px;}
.y26{bottom:251.820039px;}
.y169{bottom:252.018923px;}
.yfb{bottom:252.106203px;}
.y151{bottom:267.221343px;}
.yce{bottom:267.920637px;}
.y76{bottom:271.165197px;}
.y115{bottom:276.621888px;}
.y8c{bottom:278.384400px;}
.yfa{bottom:279.073457px;}
.yb5{bottom:285.081617px;}
.yc6{bottom:287.533185px;}
.y7d{bottom:296.503050px;}
.y83{bottom:297.000000px;}
.y150{bottom:299.091733px;}
.ycd{bottom:299.791027px;}
.y187{bottom:303.475500px;}
.y168{bottom:304.635581px;}
.y25{bottom:308.431743px;}
.y6f{bottom:310.927047px;}
.y114{bottom:310.943847px;}
.yc5{bottom:314.500438px;}
.yb4{bottom:316.952007px;}
.y14f{bottom:330.962124px;}
.ycc{bottom:334.112987px;}
.y113{bottom:342.814238px;}
.yef{bottom:344.985000px;}
.y16f{bottom:358.950721px;}
.y24{bottom:365.043448px;}
.ycb{bottom:365.983377px;}
.yaa{bottom:372.580263px;}
.ya9{bottom:385.121135px;}
.ya8{bottom:393.262979px;}
.y95{bottom:406.251300px;}
.y9e{bottom:409.161400px;}
.ya7{bottom:410.318825px;}
.y74{bottom:414.534747px;}
.y160{bottom:420.164584px;}
.y23{bottom:421.655153px;}
.y15e{bottom:422.784892px;}
.y9d{bottom:424.761617px;}
.y163{bottom:427.085083px;}
.ya6{bottom:427.150103px;}
.yb1{bottom:427.272590px;}
.y161{bottom:428.966842px;}
.y17a{bottom:429.320100px;}
.yee{bottom:431.985000px;}
.y9c{bottom:442.791410px;}
.y7a{bottom:444.563071px;}
.y8f{bottom:445.080761px;}
.y7f{bottom:448.185450px;}
.y104{bottom:450.683252px;}
.y75{bottom:460.450047px;}
.y9b{bottom:462.184482px;}
.y117{bottom:462.941094px;}
.y8e{bottom:463.755818px;}
.yf4{bottom:466.227750px;}
.y14c{bottom:473.153097px;}
.y15d{bottom:474.555485px;}
.y162{bottom:475.072651px;}
.y15f{bottom:475.495910px;}
.y22{bottom:477.945161px;}
.y174{bottom:478.914197px;}
.yf3{bottom:479.772000px;}
.y6e{bottom:482.702247px;}
.y81{bottom:486.086700px;}
.y179{bottom:486.320100px;}
.y9a{bottom:491.552970px;}
.y108{bottom:492.359916px;}
.y99{bottom:509.594153px;}
.y73{bottom:511.145397px;}
.yed{bottom:518.985000px;}
.y3{bottom:522.292500px;}
.y106{bottom:524.230307px;}
.y98{bottom:526.666273px;}
.y134{bottom:534.442309px;}
.y21{bottom:534.556866px;}
.y170{bottom:535.682700px;}
.ye4{bottom:538.621950px;}
.y107{bottom:541.391286px;}
.y178{bottom:543.320100px;}
.y10e{bottom:551.197560px;}
.y101{bottom:558.552265px;}
.y105{bottom:561.003834px;}
.y133{bottom:561.409563px;}
.y119{bottom:563.190248px;}
.yf2{bottom:563.772000px;}
.y14e{bottom:566.366033px;}
.y103{bottom:568.358540px;}
.y12b{bottom:573.667405px;}
.y10d{bottom:578.164814px;}
.y87{bottom:583.887221px;}
.y8a{bottom:584.639820px;}
.y132{bottom:588.376817px;}
.y20{bottom:591.168570px;}
.y166{bottom:592.160864px;}
.yab{bottom:592.471882px;}
.y102{bottom:592.874224px;}
.y80{bottom:601.814700px;}
.y164{bottom:603.288101px;}
.y10c{bottom:605.132067px;}
.yac{bottom:606.014771px;}
.y12a{bottom:607.989364px;}
.y9f{bottom:608.629453px;}
.y131{bottom:615.344070px;}
.yad{bottom:617.124423px;}
.y78{bottom:617.340747px;}
.y185{bottom:622.632900px;}
.yae{bottom:623.116182px;}
.ya0{bottom:624.926973px;}
.yaf{bottom:628.948058px;}
.y10b{bottom:632.099320px;}
.y70{bottom:637.257297px;}
.ya1{bottom:642.266785px;}
.y130{bottom:642.311324px;}
.yf1{bottom:647.772000px;}
.y1f{bottom:647.779708px;}
.y112{bottom:654.163437px;}
.ya2{bottom:657.529335px;}
.yf9{bottom:671.324417px;}
.ya3{bottom:672.560807px;}
.y10a{bottom:673.775985px;}
.y14a{bottom:676.633283px;}
.y184{bottom:678.132900px;}
.y12f{bottom:683.987988px;}
.y85{bottom:685.521759px;}
.y111{bottom:686.033827px;}
.ya4{bottom:686.279852px;}
.y109{bottom:700.743238px;}
.ya5{bottom:702.642057px;}
.yf8{bottom:703.194807px;}
.y1e{bottom:704.069716px;}
.y149{bottom:708.503673px;}
.y12e{bottom:710.955242px;}
.y110{bottom:720.355787px;}
.y148{bottom:742.825632px;}
.yf0{bottom:746.472000px;}
.y10f{bottom:752.226177px;}
.y7c{bottom:753.467850px;}
.y1d{bottom:760.681421px;}
.y186{bottom:773.457450px;}
.y147{bottom:774.696023px;}
.y17e{bottom:798.000000px;}
.y171{bottom:800.780804px;}
.y194{bottom:801.410700px;}
.yf5{bottom:813.515390px;}
.y6d{bottom:817.158597px;}
.y1c{bottom:817.293125px;}
.y79{bottom:829.406700px;}
.yb0{bottom:852.470550px;}
.y1b{bottom:873.583134px;}
.y177{bottom:876.866250px;}
.y138{bottom:882.565037px;}
.y2{bottom:884.878800px;}
.y193{bottom:886.910700px;}
.y14b{bottom:894.822879px;}
.y13c{bottom:924.241701px;}
.y94{bottom:927.010409px;}
.y1a{bottom:930.194839px;}
.y13a{bottom:956.112092px;}
.y176{bottom:962.366250px;}
.y192{bottom:972.410700px;}
.y13b{bottom:973.273071px;}
.y142{bottom:983.079345px;}
.y19{bottom:986.805976px;}
.y93{bottom:988.779473px;}
.y135{bottom:990.434051px;}
.y139{bottom:992.885619px;}
.y14d{bottom:995.072033px;}
.y137{bottom:1000.240325px;}
.y141{bottom:1010.046599px;}
.y1{bottom:1023.478800px;}
.y136{bottom:1024.756009px;}
.y140{bottom:1037.013852px;}
.y173{bottom:1040.600738px;}
.y17c{bottom:1042.500000px;}
.y18{bottom:1043.417681px;}
.y92{bottom:1049.998100px;}
.y191{bottom:1057.910700px;}
.y13f{bottom:1063.981106px;}
.y172{bottom:1085.130279px;}
.y146{bottom:1086.045222px;}
.y165{bottom:1097.936944px;}
.y17{bottom:1099.707689px;}
.y12d{bottom:1103.206202px;}
.y13e{bottom:1105.657770px;}
.y5b{bottom:1105.832964px;}
.y91{bottom:1110.089406px;}
.y145{bottom:1117.915612px;}
.y13d{bottom:1132.625023px;}
.y12c{bottom:1135.076592px;}
.y190{bottom:1143.410700px;}
.y144{bottom:1152.237572px;}
.y16{bottom:1156.319394px;}
.y5a{bottom:1162.443534px;}
.y143{bottom:1184.107962px;}
.y167{bottom:1189.660702px;}
.y175{bottom:1192.151583px;}
.y15{bottom:1212.931098px;}
.y59{bottom:1218.732408px;}
.y6c{bottom:1226.518197px;}
.y18f{bottom:1228.910700px;}
.y17b{bottom:1231.510500px;}
.y129{bottom:1245.397175px;}
.y196{bottom:1260.617490px;}
.y14{bottom:1269.542803px;}
.y58{bottom:1275.342978px;}
.y1a5{bottom:1287.029595px;}
.y13{bottom:1325.832244px;}
.y57{bottom:1331.953548px;}
.y19b{bottom:1340.694120px;}
.y4{bottom:1353.007350px;}
.y12{bottom:1382.443949px;}
.y56{bottom:1388.564685px;}
.y6a{bottom:1395.007350px;}
.y11{bottom:1439.055654px;}
.y55{bottom:1444.852992px;}
.y82{bottom:1485.457200px;}
.y69{bottom:1485.457350px;}
.y10{bottom:1495.667358px;}
.y54{bottom:1501.464129px;}
.yf{bottom:1551.957367px;}
.y53{bottom:1558.074699px;}
.ye{bottom:1608.569071px;}
.y52{bottom:1614.363573px;}
.y18b{bottom:1660.966035px;}
.yd{bottom:1665.180776px;}
.y51{bottom:1670.974143px;}
.yc{bottom:1721.470217px;}
.y50{bottom:1727.585280px;}
.yb{bottom:1778.081922px;}
.y4f{bottom:1784.195850px;}
.ya{bottom:1834.693627px;}
.y4e{bottom:1840.484724px;}
.y9{bottom:1891.305331px;}
.y4d{bottom:1897.095294px;}
.y68{bottom:2051.811826px;}
.h3f{height:50.577965px;}
.h3c{height:52.287359px;}
.h3a{height:62.553303px;}
.h57{height:72.000000px;}
.h3d{height:72.733058px;}
.h39{height:79.479659px;}
.h38{height:80.006363px;}
.h6a{height:83.983544px;}
.h1a{height:88.277172px;}
.h3b{height:88.792747px;}
.h40{height:89.812637px;}
.h12{height:91.500000px;}
.h1d{height:93.570382px;}
.h3e{height:94.428481px;}
.h6c{height:98.271829px;}
.h16{height:98.910803px;}
.h51{height:99.084852px;}
.h28{height:99.540784px;}
.h2d{height:99.541315px;}
.h2b{height:99.541714px;}
.h2a{height:99.542004px;}
.h2f{height:99.542474px;}
.h2c{height:99.542818px;}
.h33{height:99.543667px;}
.h23{height:99.544097px;}
.h35{height:99.544453px;}
.h34{height:99.544481px;}
.h24{height:99.545073px;}
.h25{height:99.545387px;}
.h27{height:99.545425px;}
.h31{height:99.546113px;}
.h1e{height:99.546510px;}
.h21{height:99.547029px;}
.h26{height:99.547499px;}
.h20{height:99.548510px;}
.h30{height:99.549892px;}
.h22{height:99.550042px;}
.h2e{height:99.550354px;}
.h32{height:99.550394px;}
.h29{height:99.550641px;}
.h1f{height:99.551412px;}
.h37{height:99.815228px;}
.h5e{height:108.202427px;}
.h6b{height:110.666474px;}
.h17{height:111.274654px;}
.h62{height:112.324923px;}
.h4d{height:112.778991px;}
.he{height:118.759627px;}
.h66{height:121.145534px;}
.h52{height:122.653422px;}
.h4b{height:124.056886px;}
.h4c{height:125.309989px;}
.hb{height:126.487474px;}
.h60{height:126.611119px;}
.h14{height:127.800000px;}
.h9{height:127.855469px;}
.ha{height:128.025038px;}
.h5{height:128.184000px;}
.h10{height:129.800818px;}
.h11{height:130.357200px;}
.h7{height:130.570488px;}
.h49{height:131.041322px;}
.h64{height:131.434984px;}
.hd{height:131.955141px;}
.h53{height:133.803680px;}
.h5f{height:133.835177px;}
.h4e{height:135.334794px;}
.h63{height:138.934277px;}
.h5a{height:139.500000px;}
.h8{height:139.820689px;}
.h68{height:141.756262px;}
.h5c{height:142.656000px;}
.h50{height:142.773561px;}
.h1b{height:142.788330px;}
.h58{height:145.500000px;}
.h55{height:147.407040px;}
.h48{height:155.658827px;}
.h4a{height:156.822899px;}
.h67{height:159.635430px;}
.h59{height:164.808000px;}
.h13{height:165.456000px;}
.h18{height:178.284857px;}
.h4f{height:179.252086px;}
.h5b{height:181.920000px;}
.h42{height:186.120000px;}
.h2{height:193.347000px;}
.h56{height:212.944800px;}
.h44{height:218.877120px;}
.h43{height:223.200000px;}
.h54{height:223.344000px;}
.h3{height:232.950000px;}
.h41{height:251.999850px;}
.h4{height:260.400000px;}
.h1{height:294.144000px;}
.h36{height:508.174350px;}
.hf{height:514.882800px;}
.h1c{height:571.148082px;}
.hc{height:710.078250px;}
.h15{height:720.000000px;}
.h45{height:894.417150px;}
.h6{height:962.366700px;}
.h19{height:1174.880100px;}
.h61{height:1236.368400px;}
.h47{height:1252.413150px;}
.h69{height:1254.621600px;}
.h65{height:1281.751500px;}
.h5d{height:1294.915050px;}
.h46{height:1326.298920px;}
.h0{height:1620.000000px;}
.w8{width:68.389215px;}
.w5{width:483.159000px;}
.wa{width:783.211800px;}
.wb{width:813.545250px;}
.w12{width:880.999650px;}
.w2{width:1353.697950px;}
.w13{width:1426.725795px;}
.w9{width:1448.876790px;}
.wc{width:1448.877795px;}
.w4{width:1604.241000px;}
.w6{width:1683.000000px;}
.w7{width:1803.051000px;}
.w10{width:1822.500000px;}
.w11{width:1913.956200px;}
.wf{width:2337.000000px;}
.w3{width:2417.721000px;}
.wd{width:2421.571500px;}
.w1{width:2544.124500px;}
.we{width:2664.000000px;}
.w0{width:2880.000000px;}
.x95{left:-1154.578815px;}
.x8{left:-569.568476px;}
.x96{left:-342.926565px;}
.x87{left:-2.238195px;}
.x0{left:0.000000px;}
.x8f{left:2.824350px;}
.x6f{left:18.000000px;}
.x21{left:19.865005px;}
.x3{left:21.000000px;}
.x10{left:29.437350px;}
.x2e{left:33.945825px;}
.x2{left:56.261580px;}
.x2b{left:62.798955px;}
.x47{left:64.800210px;}
.x74{left:66.800205px;}
.x7c{left:72.135413px;}
.x4{left:74.437440px;}
.xa{left:77.261580px;}
.x6b{left:78.989320px;}
.x94{left:80.786115px;}
.x1{left:82.473300px;}
.x2c{left:85.073089px;}
.x2d{left:97.030650px;}
.x61{left:98.381412px;}
.x20{left:114.534571px;}
.x6c{left:118.214417px;}
.x8e{left:121.500000px;}
.x91{left:129.000000px;}
.xf{left:146.700000px;}
.x1e{left:147.974760px;}
.x57{left:178.964501px;}
.x62{left:189.919947px;}
.x1d{left:191.505000px;}
.x63{left:202.637459px;}
.x55{left:208.345029px;}
.xc{left:209.359200px;}
.x48{left:219.683533px;}
.xe{left:228.839700px;}
.x11{left:238.507950px;}
.x1a{left:251.907000px;}
.x5f{left:257.414693px;}
.x56{left:260.823844px;}
.x49{left:267.604147px;}
.x76{left:274.633785px;}
.xb{left:288.783600px;}
.x64{left:294.762868px;}
.x1c{left:299.235000px;}
.x1b{left:312.141000px;}
.x75{left:319.785694px;}
.x7d{left:322.295991px;}
.x65{left:380.031362px;}
.x24{left:417.395927px;}
.x17{left:471.643800px;}
.x7f{left:476.767237px;}
.x78{left:486.525344px;}
.x2f{left:496.943469px;}
.x30{left:507.897713px;}
.x31{left:515.267804px;}
.x32{left:525.307499px;}
.x33{left:532.150749px;}
.x34{left:539.113199px;}
.x35{left:546.157422px;}
.x6e{left:549.059550px;}
.x98{left:564.690450px;}
.x77{left:591.879332px;}
.x4d{left:630.053105px;}
.x4b{left:632.964342px;}
.x4a{left:655.411639px;}
.x7e{left:659.258359px;}
.x26{left:660.826389px;}
.x29{left:664.336010px;}
.x19{left:666.532500px;}
.x4c{left:695.287871px;}
.x4e{left:727.196506px;}
.x4f{left:728.920204px;}
.x66{left:741.101558px;}
.x60{left:744.433975px;}
.x54{left:747.345458px;}
.x93{left:755.921850px;}
.x5{left:763.151100px;}
.x50{left:774.312711px;}
.x51{left:775.500006px;}
.x42{left:792.151109px;}
.x67{left:797.257676px;}
.x53{left:801.279965px;}
.x22{left:808.417475px;}
.x43{left:810.323698px;}
.x52{left:818.440944px;}
.x44{left:826.345389px;}
.x45{left:837.304921px;}
.x46{left:857.304167px;}
.x79{left:872.573940px;}
.x6d{left:895.128949px;}
.x2a{left:922.115742px;}
.x28{left:933.138170px;}
.x23{left:980.157044px;}
.x92{left:997.310400px;}
.x88{left:1002.284700px;}
.x58{left:1037.243433px;}
.x8a{left:1048.289850px;}
.x5d{left:1058.234988px;}
.x7b{left:1060.814225px;}
.x5a{left:1069.496758px;}
.x5c{left:1070.914010px;}
.x5e{left:1083.708256px;}
.x59{left:1086.657738px;}
.x69{left:1109.258257px;}
.x8c{left:1117.124850px;}
.x6a{left:1118.221682px;}
.x68{left:1121.247898px;}
.x7a{left:1127.467405px;}
.x5b{left:1136.876647px;}
.x36{left:1179.447873px;}
.x37{left:1188.484737px;}
.x89{left:1191.014700px;}
.x38{left:1200.052885px;}
.x39{left:1212.186929px;}
.x3a{left:1226.627280px;}
.x3b{left:1241.890644px;}
.x8d{left:1256.396850px;}
.x3c{left:1265.778349px;}
.x8b{left:1272.215850px;}
.x18{left:1282.690200px;}
.x27{left:1362.383106px;}
.x25{left:1393.798345px;}
.x83{left:1410.581352px;}
.x80{left:1442.208779px;}
.x6{left:1451.394488px;}
.x82{left:1454.046438px;}
.x1f{left:1459.232845px;}
.x81{left:1470.428354px;}
.xd{left:1476.944400px;}
.x7{left:1496.749098px;}
.x70{left:1498.297200px;}
.x12{left:1547.462400px;}
.x72{left:1608.795000px;}
.x97{left:1628.835000px;}
.x3d{left:1648.879091px;}
.x3e{left:1660.775954px;}
.x73{left:1662.795000px;}
.x71{left:1671.274500px;}
.x3f{left:1672.743606px;}
.x40{left:1678.274430px;}
.x41{left:1684.799540px;}
.x85{left:1761.702000px;}
.x9{left:1827.410701px;}
.x86{left:1845.649500px;}
.x84{left:1884.669759px;}
.x15{left:1911.957900px;}
.x14{left:1921.259400px;}
.x13{left:1924.022400px;}
.x16{left:2032.599900px;}
.x90{left:2174.712000px;}
@media print{
.vd{vertical-align:-83.496614pt;}
.vb{vertical-align:-57.861306pt;}
.v3{vertical-align:-47.408828pt;}
.v9{vertical-align:-17.812267pt;}
.ve{vertical-align:-9.243733pt;}
.v2{vertical-align:-1.430298pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.273067pt;}
.v8{vertical-align:8.716688pt;}
.v7{vertical-align:17.433376pt;}
.v5{vertical-align:26.150064pt;}
.v6{vertical-align:43.583440pt;}
.va{vertical-align:57.861306pt;}
.v4{vertical-align:59.564626pt;}
.vc{vertical-align:66.687607pt;}
.ls6a{letter-spacing:-13.361113pt;}
.ls13{letter-spacing:-8.356511pt;}
.ls24{letter-spacing:-7.444590pt;}
.ls12{letter-spacing:-7.411430pt;}
.ls11{letter-spacing:-7.262206pt;}
.ls15{letter-spacing:-7.162724pt;}
.ls19{letter-spacing:-6.598991pt;}
.ls18{letter-spacing:-6.549250pt;}
.ls31{letter-spacing:-6.466348pt;}
.ls32{letter-spacing:-6.449768pt;}
.ls4e{letter-spacing:-5.960813pt;}
.ls2f{letter-spacing:-5.935776pt;}
.ls35{letter-spacing:-5.753392pt;}
.ls30{letter-spacing:-5.554427pt;}
.ls1d{letter-spacing:-5.189659pt;}
.lsb{letter-spacing:-5.156498pt;}
.ls10{letter-spacing:-5.123337pt;}
.lsc{letter-spacing:-5.007275pt;}
.ls23{letter-spacing:-4.957533pt;}
.ls1f{letter-spacing:-4.907792pt;}
.ls1c{letter-spacing:-4.891212pt;}
.lse{letter-spacing:-4.874632pt;}
.ls1e{letter-spacing:-4.841471pt;}
.ls2e{letter-spacing:-4.824890pt;}
.ls57{letter-spacing:-4.641280pt;}
.ls43{letter-spacing:-4.461564pt;}
.ls39{letter-spacing:-4.310836pt;}
.ls51{letter-spacing:-4.034308pt;}
.ls29{letter-spacing:-3.995871pt;}
.ls1b{letter-spacing:-3.979291pt;}
.lsa{letter-spacing:-3.929550pt;}
.ls16{letter-spacing:-3.830068pt;}
.ls33{letter-spacing:-3.747166pt;}
.ls28{letter-spacing:-3.730585pt;}
.ls27{letter-spacing:-3.631103pt;}
.ls2d{letter-spacing:-3.365817pt;}
.ls2c{letter-spacing:-3.349237pt;}
.ls1a{letter-spacing:-3.299496pt;}
.ls50{letter-spacing:-3.260088pt;}
.ls22{letter-spacing:-3.249754pt;}
.ls17{letter-spacing:-3.216594pt;}
.ls26{letter-spacing:-3.200013pt;}
.ls2a{letter-spacing:-3.183433pt;}
.ls21{letter-spacing:-3.117111pt;}
.ls9{letter-spacing:-3.001049pt;}
.ls44{letter-spacing:-2.924133pt;}
.ls3b{letter-spacing:-2.848769pt;}
.ls40{letter-spacing:-2.833696pt;}
.ls3f{letter-spacing:-2.788478pt;}
.ls3d{letter-spacing:-2.758332pt;}
.ls41{letter-spacing:-2.698041pt;}
.ls3c{letter-spacing:-2.667895pt;}
.ls42{letter-spacing:-2.652822pt;}
.ls2b{letter-spacing:-2.603120pt;}
.ls4b{letter-spacing:-2.409033pt;}
.ls47{letter-spacing:-1.372669pt;}
.ls4f{letter-spacing:-1.142747pt;}
.ls67{letter-spacing:-0.877925pt;}
.ls52{letter-spacing:-0.305116pt;}
.ls6c{letter-spacing:-0.075683pt;}
.ls69{letter-spacing:-0.045410pt;}
.ls68{letter-spacing:-0.030273pt;}
.ls56{letter-spacing:-0.019177pt;}
.ls20{letter-spacing:-0.016580pt;}
.ls6d{letter-spacing:-0.015137pt;}
.ls38{letter-spacing:-0.015073pt;}
.ls0{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.019177pt;}
.ls61{letter-spacing:0.027521pt;}
.ls65{letter-spacing:0.029931pt;}
.ls5b{letter-spacing:0.031787pt;}
.ls66{letter-spacing:0.032652pt;}
.ls2{letter-spacing:0.033161pt;}
.ls63{letter-spacing:0.034841pt;}
.ls59{letter-spacing:0.052978pt;}
.ls6e{letter-spacing:0.060971pt;}
.ls1{letter-spacing:0.066322pt;}
.ls70{letter-spacing:0.098088pt;}
.ls53{letter-spacing:0.637911pt;}
.ls5f{letter-spacing:1.374343pt;}
.ls58{letter-spacing:1.374827pt;}
.ls5a{letter-spacing:1.375956pt;}
.ls62{letter-spacing:1.641866pt;}
.ls4c{letter-spacing:1.698677pt;}
.ls49{letter-spacing:2.059003pt;}
.ls4a{letter-spacing:2.573754pt;}
.ls48{letter-spacing:2.916921pt;}
.ls4d{letter-spacing:3.181159pt;}
.ls5{letter-spacing:3.671810pt;}
.ls5d{letter-spacing:4.093100pt;}
.ls5c{letter-spacing:7.142048pt;}
.ls37{letter-spacing:9.249104pt;}
.ls36{letter-spacing:9.562633pt;}
.ls4{letter-spacing:9.614678pt;}
.ls7{letter-spacing:12.685758pt;}
.ls45{letter-spacing:14.589560pt;}
.ls46{letter-spacing:15.268799pt;}
.ls60{letter-spacing:22.368261pt;}
.ls25{letter-spacing:31.038470pt;}
.lsf{letter-spacing:32.845732pt;}
.lsd{letter-spacing:34.089260pt;}
.ls6{letter-spacing:45.716468pt;}
.ls3a{letter-spacing:46.635405pt;}
.ls3e{letter-spacing:46.816279pt;}
.ls34{letter-spacing:48.597092pt;}
.ls14{letter-spacing:48.945280pt;}
.ls3{letter-spacing:52.377669pt;}
.ls5e{letter-spacing:53.195851pt;}
.ls8{letter-spacing:125.464359pt;}
.ls6b{letter-spacing:126.663404pt;}
.ls6f{letter-spacing:198.400160pt;}
.ls55{letter-spacing:258.640695pt;}
.ls72{letter-spacing:2407.413326pt;}
.ls71{letter-spacing:3219.824872pt;}
.ls64{letter-spacing:3611.138870pt;}
.ws8c{word-spacing:-104.600256pt;}
.ws76{word-spacing:-94.378667pt;}
.ws8d{word-spacing:-87.166880pt;}
.ws8b{word-spacing:-69.733504pt;}
.wsad{word-spacing:-49.408000pt;}
.wsd{word-spacing:-49.111084pt;}
.ws52{word-spacing:-48.762896pt;}
.ws8e{word-spacing:-48.419840pt;}
.ws6d{word-spacing:-46.967007pt;}
.ws64{word-spacing:-46.786133pt;}
.ws9c{word-spacing:-45.905304pt;}
.wsa1{word-spacing:-45.418605pt;}
.ws92{word-spacing:-42.079859pt;}
.wsa0{word-spacing:-41.633738pt;}
.ws83{word-spacing:-36.220622pt;}
.ws6{word-spacing:-34.255064pt;}
.ws8{word-spacing:-33.011536pt;}
.ws26{word-spacing:-31.204274pt;}
.wsa2{word-spacing:-28.821333pt;}
.ws89{word-spacing:-26.674809pt;}
.ws88{word-spacing:-26.655632pt;}
.ws8a{word-spacing:-26.636455pt;}
.ws58{word-spacing:-12.846541pt;}
.ws7d{word-spacing:-3.335585pt;}
.ws78{word-spacing:-3.088504pt;}
.ws7a{word-spacing:-2.745337pt;}
.ws79{word-spacing:-2.230586pt;}
.ws7c{word-spacing:-1.853103pt;}
.ws90{word-spacing:-0.167253pt;}
.ws1f{word-spacing:-0.165804pt;}
.ws91{word-spacing:-0.158935pt;}
.ws94{word-spacing:-0.151366pt;}
.ws5c{word-spacing:-0.150729pt;}
.ws42{word-spacing:-0.149223pt;}
.ws96{word-spacing:-0.137743pt;}
.ws9a{word-spacing:-0.136230pt;}
.ws95{word-spacing:-0.121093pt;}
.ws97{word-spacing:-0.105956pt;}
.ws99{word-spacing:-0.075683pt;}
.ws0{word-spacing:0.000000pt;}
.ws82{word-spacing:0.135607pt;}
.ws93{word-spacing:0.726559pt;}
.ws7f{word-spacing:0.988321pt;}
.ws77{word-spacing:1.201085pt;}
.ws7b{word-spacing:2.254608pt;}
.ws80{word-spacing:3.088504pt;}
.ws2c{word-spacing:3.564782pt;}
.ws81{word-spacing:3.864799pt;}
.ws8f{word-spacing:4.390400pt;}
.ws7{word-spacing:4.708828pt;}
.ws7e{word-spacing:5.806388pt;}
.wse{word-spacing:6.996920pt;}
.ws25{word-spacing:7.278787pt;}
.ws98{word-spacing:13.255156pt;}
.ws69{word-spacing:25.036007pt;}
.ws56{word-spacing:25.166729pt;}
.ws57{word-spacing:25.962610pt;}
.wsbb{word-spacing:31.321870pt;}
.ws59{word-spacing:31.969519pt;}
.wsbc{word-spacing:33.619991pt;}
.ws1e{word-spacing:36.078906pt;}
.ws3d{word-spacing:36.244710pt;}
.wsb8{word-spacing:36.326214pt;}
.ws1a{word-spacing:36.344192pt;}
.wsbd{word-spacing:36.747482pt;}
.ws4{word-spacing:36.990827pt;}
.ws19{word-spacing:37.687203pt;}
.ws18{word-spacing:38.383578pt;}
.ws3f{word-spacing:38.781508pt;}
.ws3e{word-spacing:39.295499pt;}
.ws22{word-spacing:39.759750pt;}
.ws33{word-spacing:40.141099pt;}
.ws1{word-spacing:40.638510pt;}
.wsa{word-spacing:40.920377pt;}
.ws15{word-spacing:41.119341pt;}
.ws5b{word-spacing:41.706576pt;}
.ws13{word-spacing:41.749396pt;}
.ws6a{word-spacing:42.219059pt;}
.ws1b{word-spacing:42.744218pt;}
.wsbf{word-spacing:42.779939pt;}
.ws9{word-spacing:42.926602pt;}
.ws24{word-spacing:43.092406pt;}
.ws5{word-spacing:43.307951pt;}
.ws4f{word-spacing:43.457175pt;}
.ws12{word-spacing:44.020907pt;}
.ws27{word-spacing:44.286194pt;}
.ws2e{word-spacing:44.617801pt;}
.ws5a{word-spacing:44.706080pt;}
.ws4b{word-spacing:45.297597pt;}
.ws68{word-spacing:45.685815pt;}
.ws14{word-spacing:46.242678pt;}
.ws65{word-spacing:46.288729pt;}
.ws6f{word-spacing:46.394239pt;}
.ws70{word-spacing:46.439458pt;}
.ws36{word-spacing:46.491384pt;}
.ws73{word-spacing:46.665550pt;}
.ws38{word-spacing:46.773250pt;}
.wsa3{word-spacing:46.799041pt;}
.ws6c{word-spacing:46.891643pt;}
.ws10{word-spacing:46.988795pt;}
.ws37{word-spacing:47.138019pt;}
.ws40{word-spacing:47.652011pt;}
.ws3b{word-spacing:47.668591pt;}
.ws21{word-spacing:47.768073pt;}
.ws1c{word-spacing:47.884136pt;}
.wsf{word-spacing:48.099681pt;}
.wsa8{word-spacing:48.583041pt;}
.ws60{word-spacing:48.700385pt;}
.ws23{word-spacing:48.845798pt;}
.ws5f{word-spacing:48.851114pt;}
.ws63{word-spacing:49.152571pt;}
.ws20{word-spacing:49.260307pt;}
.ws5e{word-spacing:49.303299pt;}
.ws61{word-spacing:49.604757pt;}
.ws5d{word-spacing:49.740412pt;}
.ws62{word-spacing:49.906214pt;}
.ws67{word-spacing:50.599565pt;}
.wsb0{word-spacing:50.917869pt;}
.ws50{word-spacing:51.332855pt;}
.ws30{word-spacing:51.399176pt;}
.ws6e{word-spacing:51.473790pt;}
.ws2a{word-spacing:51.482078pt;}
.ws72{word-spacing:51.488863pt;}
.ws6b{word-spacing:51.745102pt;}
.ws4c{word-spacing:51.747364pt;}
.ws71{word-spacing:51.835539pt;}
.ws3c{word-spacing:51.896588pt;}
.ws4d{word-spacing:51.913168pt;}
.wsba{word-spacing:51.992270pt;}
.ws11{word-spacing:52.128713pt;}
.ws3{word-spacing:52.161874pt;}
.ws47{word-spacing:52.195035pt;}
.wsae{word-spacing:52.397088pt;}
.ws46{word-spacing:52.907991pt;}
.ws66{word-spacing:53.192095pt;}
.ws74{word-spacing:53.267460pt;}
.ws2f{word-spacing:53.753590pt;}
.ws44{word-spacing:53.919394pt;}
.wsb1{word-spacing:54.174936pt;}
.wsb5{word-spacing:54.187483pt;}
.ws1d{word-spacing:54.400225pt;}
.ws29{word-spacing:54.433386pt;}
.ws9d{word-spacing:54.483053pt;}
.ws53{word-spacing:54.997119pt;}
.wsa6{word-spacing:55.015908pt;}
.wsbe{word-spacing:55.017857pt;}
.ws28{word-spacing:55.063440pt;}
.ws39{word-spacing:56.555674pt;}
.ws17{word-spacing:56.621996pt;}
.wsab{word-spacing:57.111179pt;}
.ws51{word-spacing:58.014748pt;}
.wsaf{word-spacing:58.549261pt;}
.ws3a{word-spacing:58.827186pt;}
.ws34{word-spacing:59.556723pt;}
.wsb9{word-spacing:59.708957pt;}
.wsa5{word-spacing:59.760149pt;}
.wsaa{word-spacing:60.328796pt;}
.ws16{word-spacing:60.518385pt;}
.ws4a{word-spacing:61.048957pt;}
.wsb6{word-spacing:61.595203pt;}
.ws4e{word-spacing:61.861396pt;}
.wsb{word-spacing:62.955701pt;}
.ws35{word-spacing:63.204407pt;}
.wsc{word-spacing:64.895605pt;}
.wsc0{word-spacing:67.437530pt;}
.wsb3{word-spacing:67.569603pt;}
.wsb2{word-spacing:67.988803pt;}
.wsa4{word-spacing:68.587181pt;}
.wsa9{word-spacing:69.198391pt;}
.ws49{word-spacing:74.512225pt;}
.ws2{word-spacing:74.561966pt;}
.ws2d{word-spacing:75.838656pt;}
.ws2b{word-spacing:75.921558pt;}
.ws43{word-spacing:76.070781pt;}
.ws41{word-spacing:76.617934pt;}
.ws45{word-spacing:76.783737pt;}
.ws32{word-spacing:77.214827pt;}
.ws31{word-spacing:78.524677pt;}
.ws54{word-spacing:84.804241pt;}
.wsb4{word-spacing:85.302403pt;}
.wsa7{word-spacing:86.690294pt;}
.ws48{word-spacing:88.058395pt;}
.wsac{word-spacing:90.195236pt;}
.ws75{word-spacing:96.340841pt;}
.wsb7{word-spacing:97.278037pt;}
.ws84{word-spacing:118.923645pt;}
.ws85{word-spacing:296.156617pt;}
.ws87{word-spacing:336.073714pt;}
.ws9f{word-spacing:615.360303pt;}
.ws9e{word-spacing:623.785909pt;}
.ws9b{word-spacing:701.624569pt;}
.ws86{word-spacing:1482.817581pt;}
.ws55{word-spacing:5754.735680pt;}
._41{margin-left:-1160.242367pt;}
._16{margin-left:-56.438194pt;}
._2f{margin-left:-54.217841pt;}
._30{margin-left:-52.559803pt;}
._35{margin-left:-50.438514pt;}
._33{margin-left:-49.119283pt;}
._36{margin-left:-47.648428pt;}
._10{margin-left:-38.665141pt;}
._11{margin-left:-37.654441pt;}
._25{margin-left:-36.705881pt;}
._7{margin-left:-26.837333pt;}
._1{margin-left:-25.600000pt;}
._3{margin-left:-22.176213pt;}
._0{margin-left:-20.480000pt;}
._2{margin-left:-17.066667pt;}
._6{margin-left:-15.829333pt;}
._27{margin-left:-14.519588pt;}
._37{margin-left:-11.648000pt;}
._44{margin-left:-9.849388pt;}
._32{margin-left:-8.818284pt;}
._8{margin-left:-7.722667pt;}
._1e{margin-left:-6.102233pt;}
._5{margin-left:-4.778667pt;}
._d{margin-left:-3.316076pt;}
._4{margin-left:-2.217600pt;}
._a{margin-left:-1.326430pt;}
._b{width:1.492234pt;}
._18{width:3.150272pt;}
._12{width:4.456054pt;}
._39{width:5.662864pt;}
._3a{width:6.979237pt;}
._3e{width:7.897963pt;}
._3c{width:9.484123pt;}
._38{width:10.402136pt;}
._45{width:11.655213pt;}
._3b{width:14.342341pt;}
._3d{width:18.170049pt;}
._22{width:32.000132pt;}
._f{width:33.160759pt;}
._23{width:34.155582pt;}
._14{width:35.150404pt;}
._13{width:36.476835pt;}
._24{width:38.300677pt;}
._9{width:39.191846pt;}
._1d{width:40.456126pt;}
._1c{width:41.844707pt;}
._34{width:42.909150pt;}
._1b{width:44.269613pt;}
._17{width:45.596044pt;}
._29{width:46.990161pt;}
._1a{width:48.083100pt;}
._20{width:49.741138pt;}
._28{width:50.637985pt;}
._19{width:51.896588pt;}
._21{width:53.223018pt;}
._e{width:54.851413pt;}
._15{width:56.684081pt;}
._1f{width:57.699721pt;}
._26{width:59.046968pt;}
._2e{width:62.349399pt;}
._51{width:68.653547pt;}
._c{width:72.124651pt;}
._2d{width:76.302906pt;}
._2a{width:77.761980pt;}
._4f{width:80.830025pt;}
._2b{width:89.202442pt;}
._2c{width:90.197264pt;}
._49{width:98.347116pt;}
._50{width:101.179383pt;}
._52{width:153.660923pt;}
._48{width:161.207742pt;}
._4e{width:181.523814pt;}
._31{width:195.754844pt;}
._4c{width:197.108593pt;}
._4b{width:201.442959pt;}
._47{width:274.405052pt;}
._40{width:516.122296pt;}
._43{width:525.709555pt;}
._46{width:768.439027pt;}
._42{width:1010.668618pt;}
._3f{width:1825.637333pt;}
._4a{width:3017.112282pt;}
._4d{width:3378.016404pt;}
.fs33{font-size:36.261422pt;}
.fs30{font-size:43.583440pt;}
.fs32{font-size:52.300128pt;}
.fs36{font-size:61.016816pt;}
.fs2f{font-size:69.733504pt;}
.fs34{font-size:87.166880pt;}
.fs2e{font-size:95.883568pt;}
.fs50{font-size:98.370183pt;}
.fs12{font-size:103.280005pt;}
.fs31{font-size:104.600256pt;}
.fs3c{font-size:105.956485pt;}
.fs51{font-size:109.300203pt;}
.fs35{font-size:113.316944pt;}
.fs1f{font-size:115.714219pt;}
.fs24{font-size:115.714837pt;}
.fs22{font-size:115.715300pt;}
.fs21{font-size:115.715638pt;}
.fs26{font-size:115.716184pt;}
.fs23{font-size:115.716584pt;}
.fs2a{font-size:115.717571pt;}
.fs1a{font-size:115.718070pt;}
.fs2c{font-size:115.718484pt;}
.fs2b{font-size:115.718517pt;}
.fs1b{font-size:115.719205pt;}
.fs1c{font-size:115.719570pt;}
.fs1e{font-size:115.719614pt;}
.fs14{font-size:115.719893pt;}
.fs28{font-size:115.720414pt;}
.fs10{font-size:115.720837pt;}
.fs15{font-size:115.720876pt;}
.fs18{font-size:115.721479pt;}
.fs1d{font-size:115.722025pt;}
.fs17{font-size:115.723201pt;}
.fs27{font-size:115.724807pt;}
.fs19{font-size:115.724981pt;}
.fs25{font-size:115.725344pt;}
.fs29{font-size:115.725390pt;}
.fs20{font-size:115.725677pt;}
.fs16{font-size:115.726574pt;}
.fs7{font-size:120.588062pt;}
.fs42{font-size:120.897096pt;}
.fs41{font-size:121.942316pt;}
.fs2d{font-size:122.033632pt;}
.fs48{font-size:126.737836pt;}
.fs11{font-size:130.185941pt;}
.fs5{font-size:130.634210pt;}
.fs52{font-size:131.160266pt;}
.fs4a{font-size:131.566528pt;}
.fs3e{font-size:137.605823pt;}
.fs6{font-size:140.682374pt;}
.fs47{font-size:140.819818pt;}
.fs4e{font-size:141.898137pt;}
.fs4b{font-size:146.185031pt;}
.fsa{font-size:148.721310pt;}
.fs3{font-size:149.333333pt;}
.fs43{font-size:149.653982pt;}
.fs9{font-size:150.728522pt;}
.fs3b{font-size:151.366400pt;}
.fs3d{font-size:152.895357pt;}
.fsc{font-size:154.425216pt;}
.fs4d{font-size:157.664596pt;}
.fse{font-size:160.000000pt;}
.fs8{font-size:160.782738pt;}
.fs44{font-size:163.258825pt;}
.fs3f{font-size:165.126994pt;}
.fs4{font-size:165.803795pt;}
.fs3a{font-size:167.253333pt;}
.fs45{font-size:168.960000pt;}
.fs49{font-size:168.983809pt;}
.fsd{font-size:169.508736pt;}
.fs46{font-size:170.666667pt;}
.fsb{font-size:171.583573pt;}
.fs40{font-size:174.203309pt;}
.fs4c{font-size:175.422067pt;}
.fs4f{font-size:189.197547pt;}
.fsf{font-size:192.000000pt;}
.fs37{font-size:213.333333pt;}
.fs1{font-size:221.760000pt;}
.fs39{font-size:250.880000pt;}
.fs38{font-size:256.000000pt;}
.fs2{font-size:298.666667pt;}
.fs0{font-size:341.333333pt;}
.fs13{font-size:736.846421pt;}
.y4c{bottom:-1765.274448pt;}
.y4b{bottom:-1635.193331pt;}
.y1a3{bottom:-1595.774827pt;}
.y4a{bottom:-1584.871867pt;}
.y49{bottom:-1534.550402pt;}
.y48{bottom:-1484.228987pt;}
.y199{bottom:-1463.996320pt;}
.y47{bottom:-1434.193525pt;}
.y46{bottom:-1383.872060pt;}
.y45{bottom:-1333.550848pt;}
.y44{bottom:-1283.229333pt;}
.y43{bottom:-1233.193769pt;}
.y42{bottom:-1182.872254pt;}
.y41{bottom:-1132.550739pt;}
.y40{bottom:-1082.515176pt;}
.y3f{bottom:-1032.194165pt;}
.y18e{bottom:-1013.273613pt;}
.y3e{bottom:-981.872650pt;}
.y3d{bottom:-931.551134pt;}
.y3c{bottom:-881.515571pt;}
.y3b{bottom:-831.194056pt;}
.y1a2{bottom:-827.243893pt;}
.y1ac{bottom:-788.396893pt;}
.y3a{bottom:-780.872541pt;}
.y39{bottom:-730.551025pt;}
.y1a1{bottom:-716.878693pt;}
.y38{bottom:-680.515967pt;}
.y37{bottom:-630.194451pt;}
.y67{bottom:-618.170847pt;}
.ye0{bottom:-612.718653pt;}
.y1a0{bottom:-606.513493pt;}
.ye1{bottom:-591.165280pt;}
.y36{bottom:-579.872936pt;}
.ydc{bottom:-576.858651pt;}
.ydf{bottom:-574.679479pt;}
.y66{bottom:-568.136292pt;}
.ye3{bottom:-552.887759pt;}
.ydb{bottom:-550.708587pt;}
.yde{bottom:-546.350243pt;}
.y35{bottom:-529.551421pt;}
.ye2{bottom:-526.737695pt;}
.yda{bottom:-524.558523pt;}
.y65{bottom:-517.815786pt;}
.ydd{bottom:-515.841835pt;}
.y19f{bottom:-496.148160pt;}
.yd9{bottom:-489.691771pt;}
.y1ab{bottom:-484.274227pt;}
.y34{bottom:-479.515858pt;}
.y64{bottom:-467.495279pt;}
.yd8{bottom:-461.362535pt;}
.yd7{bottom:-433.033299pt;}
.y33{bottom:-429.194343pt;}
.y63{bottom:-417.174268pt;}
.y1aa{bottom:-407.764093pt;}
.y19e{bottom:-385.782960pt;}
.y32{bottom:-378.873332pt;}
.y62{bottom:-367.140218pt;}
.y1a9{bottom:-331.253960pt;}
.y31{bottom:-328.837768pt;}
.y61{bottom:-316.819207pt;}
.yd4{bottom:-306.641323pt;}
.y18d{bottom:-283.407480pt;}
.y30{bottom:-278.516253pt;}
.y19d{bottom:-275.417760pt;}
.y124{bottom:-269.391720pt;}
.y60{bottom:-266.498701pt;}
.y198{bottom:-266.460587pt;}
.y1a8{bottom:-254.743827pt;}
.ybc{bottom:-252.162023pt;}
.y125{bottom:-247.838346pt;}
.y120{bottom:-233.531717pt;}
.y123{bottom:-231.352545pt;}
.y2f{bottom:-228.194738pt;}
.ybb{bottom:-228.191131pt;}
.yd6{bottom:-223.785380pt;}
.yb3{bottom:-217.295271pt;}
.y5f{bottom:-216.464146pt;}
.y127{bottom:-209.560825pt;}
.y11f{bottom:-207.381653pt;}
.yba{bottom:-204.220239pt;}
.y122{bottom:-203.023309pt;}
.yb2{bottom:-186.786863pt;}
.y18c{bottom:-184.833613pt;}
.y126{bottom:-183.410761pt;}
.y11e{bottom:-181.231589pt;}
.yb9{bottom:-180.249347pt;}
.y1a7{bottom:-178.233627pt;}
.y2e{bottom:-177.873223pt;}
.y121{bottom:-172.514901pt;}
.y5e{bottom:-166.143640pt;}
.y19c{bottom:-165.052507pt;}
.y197{bottom:-164.131027pt;}
.yb8{bottom:-156.278455pt;}
.y11d{bottom:-146.364837pt;}
.y2d{bottom:-127.837660pt;}
.yd2{bottom:-125.770047pt;}
.yb7{bottom:-119.232531pt;}
.y11c{bottom:-118.035601pt;}
.y5d{bottom:-115.822629pt;}
.y1a6{bottom:-101.723467pt;}
.yd1{bottom:-97.440811pt;}
.yb6{bottom:-95.261639pt;}
.y11b{bottom:-89.706365pt;}
.y2c{bottom:-77.516649pt;}
.yd0{bottom:-66.932403pt;}
.y5c{bottom:-65.502122pt;}
.ycf{bottom:-38.603167pt;}
.y2b{bottom:-27.195133pt;}
.y96{bottom:-0.000046pt;}
.y0{bottom:0.000000pt;}
.y180{bottom:3.031733pt;}
.y6b{bottom:10.183603pt;}
.y89{bottom:13.267696pt;}
.y17d{bottom:16.009333pt;}
.y2a{bottom:23.126382pt;}
.y7e{bottom:24.000000pt;}
.y18a{bottom:25.184413pt;}
.y7{bottom:25.325000pt;}
.yeb{bottom:27.359733pt;}
.ye7{bottom:27.359867pt;}
.y128{bottom:30.529747pt;}
.y7b{bottom:34.961174pt;}
.y118{bottom:36.685611pt;}
.y72{bottom:37.278491pt;}
.y6{bottom:37.333333pt;}
.y16d{bottom:45.995959pt;}
.y86{bottom:47.336216pt;}
.y19a{bottom:53.902827pt;}
.yc0{bottom:57.280401pt;}
.y183{bottom:58.585173pt;}
.y15c{bottom:61.356907pt;}
.y97{bottom:62.330066pt;}
.yd3{bottom:68.176261pt;}
.y29{bottom:73.161945pt;}
.y17f{bottom:81.342667pt;}
.y1a4{bottom:82.488227pt;}
.y16c{bottom:88.705610pt;}
.y100{bottom:91.164911pt;}
.yea{bottom:91.359733pt;}
.ye6{bottom:91.359867pt;}
.y88{bottom:92.626589pt;}
.y195{bottom:94.237653pt;}
.yc4{bottom:94.326325pt;}
.y158{bottom:114.503200pt;}
.yff{bottom:115.135803pt;}
.y182{bottom:117.251840pt;}
.y5{bottom:117.733333pt;}
.y11a{bottom:119.541554pt;}
.yc2{bottom:122.655561pt;}
.y28{bottom:123.483460pt;}
.yf7{bottom:126.031663pt;}
.y71{bottom:128.553464pt;}
.y16b{bottom:131.414858pt;}
.y159{bottom:136.056574pt;}
.yc3{bottom:137.909765pt;}
.yfe{bottom:139.106695pt;}
.y189{bottom:140.825200pt;}
.yca{bottom:146.626453pt;}
.y154{bottom:150.363203pt;}
.y157{bottom:152.542375pt;}
.ybd{bottom:153.163969pt;}
.yc1{bottom:155.343141pt;}
.ye9{bottom:155.359733pt;}
.ye5{bottom:155.359867pt;}
.yf6{bottom:156.540071pt;}
.yd5{bottom:157.286620pt;}
.y77{bottom:159.083997pt;}
.ybf{bottom:161.880657pt;}
.y16e{bottom:161.972215pt;}
.yfd{bottom:163.077587pt;}
.y84{bottom:165.505397pt;}
.ye8{bottom:165.505467pt;}
.yec{bottom:168.375333pt;}
.y8d{bottom:169.168887pt;}
.yc9{bottom:170.597345pt;}
.y27{bottom:173.804975pt;}
.y16a{bottom:174.124509pt;}
.y15b{bottom:174.334095pt;}
.y90{bottom:174.666667pt;}
.y181{bottom:175.918533pt;}
.y153{bottom:176.513267pt;}
.y156{bottom:180.871611pt;}
.ybe{bottom:183.672377pt;}
.yfc{bottom:187.048479pt;}
.yc8{bottom:194.568237pt;}
.y15a{bottom:200.484159pt;}
.y152{bottom:202.663331pt;}
.y8b{bottom:203.183858pt;}
.y188{bottom:208.825200pt;}
.y8{bottom:208.916533pt;}
.y155{bottom:211.380019pt;}
.y116{bottom:217.556887pt;}
.yc7{bottom:218.539129pt;}
.y26{bottom:223.840034pt;}
.y169{bottom:224.016821pt;}
.yfb{bottom:224.094403pt;}
.y151{bottom:237.530083pt;}
.yce{bottom:238.151677pt;}
.y76{bottom:241.035731pt;}
.y115{bottom:245.886123pt;}
.y8c{bottom:247.452800pt;}
.yfa{bottom:248.065295pt;}
.yb5{bottom:253.405881pt;}
.yc6{bottom:255.585053pt;}
.y7d{bottom:263.558267pt;}
.y83{bottom:264.000000pt;}
.y150{bottom:265.859319pt;}
.ycd{bottom:266.480913pt;}
.y187{bottom:269.756000pt;}
.y168{bottom:270.787183pt;}
.y25{bottom:274.161550pt;}
.y6f{bottom:276.379597pt;}
.y114{bottom:276.394531pt;}
.yc5{bottom:279.555945pt;}
.yb4{bottom:281.735117pt;}
.y14f{bottom:294.188555pt;}
.ycc{bottom:296.989321pt;}
.y113{bottom:304.723767pt;}
.yef{bottom:306.653333pt;}
.y16f{bottom:319.067308pt;}
.y24{bottom:324.483065pt;}
.ycb{bottom:325.318557pt;}
.yaa{bottom:331.182456pt;}
.ya9{bottom:342.329898pt;}
.ya8{bottom:349.567092pt;}
.y95{bottom:361.112267pt;}
.y9e{bottom:363.699023pt;}
.ya7{bottom:364.727845pt;}
.y74{bottom:368.475331pt;}
.y160{bottom:373.479631pt;}
.y23{bottom:374.804580pt;}
.y15e{bottom:375.808793pt;}
.y9d{bottom:377.565882pt;}
.y163{bottom:379.631185pt;}
.ya6{bottom:379.688980pt;}
.yb1{bottom:379.797857pt;}
.y161{bottom:381.303859pt;}
.y17a{bottom:381.617867pt;}
.yee{bottom:383.986667pt;}
.y9c{bottom:393.592364pt;}
.y7a{bottom:395.167174pt;}
.y8f{bottom:395.627343pt;}
.y7f{bottom:398.387067pt;}
.y104{bottom:400.607335pt;}
.y75{bottom:409.288931pt;}
.y9b{bottom:410.830650pt;}
.y117{bottom:411.503195pt;}
.y8e{bottom:412.227394pt;}
.yf4{bottom:414.424667pt;}
.y14c{bottom:420.580531pt;}
.y15d{bottom:421.827097pt;}
.y162{bottom:422.286801pt;}
.y15f{bottom:422.663031pt;}
.y22{bottom:424.840143pt;}
.y174{bottom:425.701508pt;}
.yf3{bottom:426.464000pt;}
.y6e{bottom:429.068664pt;}
.y81{bottom:432.077067pt;}
.y179{bottom:432.284533pt;}
.y9a{bottom:436.935973pt;}
.y108{bottom:437.653259pt;}
.y99{bottom:452.972581pt;}
.y73{bottom:454.351464pt;}
.yed{bottom:461.320000pt;}
.y3{bottom:464.260000pt;}
.y106{bottom:465.982495pt;}
.y98{bottom:468.147798pt;}
.y134{bottom:475.059831pt;}
.y21{bottom:475.161658pt;}
.y170{bottom:476.162400pt;}
.ye4{bottom:478.775067pt;}
.y107{bottom:481.236699pt;}
.y178{bottom:482.951200pt;}
.y10e{bottom:489.953387pt;}
.y101{bottom:496.490903pt;}
.y105{bottom:498.670075pt;}
.y133{bottom:499.030723pt;}
.y119{bottom:500.613554pt;}
.yf2{bottom:501.130667pt;}
.y14e{bottom:503.436474pt;}
.y103{bottom:505.207591pt;}
.y12b{bottom:509.926583pt;}
.y10d{bottom:513.924279pt;}
.y87{bottom:519.010863pt;}
.y8a{bottom:519.679840pt;}
.y132{bottom:523.001615pt;}
.y20{bottom:525.483174pt;}
.y166{bottom:526.365213pt;}
.yab{bottom:526.641673pt;}
.y102{bottom:526.999311pt;}
.y80{bottom:534.946400pt;}
.y164{bottom:536.256089pt;}
.y10c{bottom:537.895171pt;}
.yac{bottom:538.679797pt;}
.y12a{bottom:540.434991pt;}
.y9f{bottom:541.003958pt;}
.y131{bottom:546.972507pt;}
.yad{bottom:548.555043pt;}
.y78{bottom:548.747331pt;}
.y185{bottom:553.451467pt;}
.yae{bottom:553.881051pt;}
.ya0{bottom:555.490642pt;}
.yaf{bottom:559.064941pt;}
.y10b{bottom:561.866063pt;}
.y70{bottom:566.450931pt;}
.ya1{bottom:570.903809pt;}
.y130{bottom:570.943399pt;}
.yf1{bottom:575.797333pt;}
.y1f{bottom:575.804185pt;}
.y112{bottom:581.478611pt;}
.ya2{bottom:584.470520pt;}
.yf9{bottom:596.732815pt;}
.ya3{bottom:597.831828pt;}
.y10a{bottom:598.911987pt;}
.y14a{bottom:601.451807pt;}
.y184{bottom:602.784800pt;}
.y12f{bottom:607.989323pt;}
.y85{bottom:609.352675pt;}
.y111{bottom:609.807847pt;}
.ya4{bottom:610.026535pt;}
.y109{bottom:622.882879pt;}
.ya5{bottom:624.570718pt;}
.yf8{bottom:625.062051pt;}
.y1e{bottom:625.839748pt;}
.y149{bottom:629.781043pt;}
.y12e{bottom:631.960215pt;}
.y110{bottom:640.316255pt;}
.y148{bottom:660.289451pt;}
.yf0{bottom:663.530667pt;}
.y10f{bottom:668.645491pt;}
.y7c{bottom:669.749200pt;}
.y1d{bottom:676.161263pt;}
.y186{bottom:687.517733pt;}
.y147{bottom:688.618687pt;}
.y17e{bottom:709.333333pt;}
.y171{bottom:711.805159pt;}
.y194{bottom:712.365067pt;}
.yf5{bottom:723.124791pt;}
.y6d{bottom:726.363197pt;}
.y1c{bottom:726.482778pt;}
.y79{bottom:737.250400pt;}
.yb0{bottom:757.751600pt;}
.y1b{bottom:776.518341pt;}
.y177{bottom:779.436667pt;}
.y138{bottom:784.502255pt;}
.y2{bottom:786.558933pt;}
.y193{bottom:788.365067pt;}
.y14b{bottom:795.398115pt;}
.y13c{bottom:821.548179pt;}
.y94{bottom:824.009253pt;}
.y1a{bottom:826.839857pt;}
.y13a{bottom:849.877415pt;}
.y176{bottom:855.436667pt;}
.y192{bottom:864.365067pt;}
.y13b{bottom:865.131619pt;}
.y142{bottom:873.848307pt;}
.y19{bottom:877.160868pt;}
.y93{bottom:878.915087pt;}
.y135{bottom:880.385823pt;}
.y139{bottom:882.564995pt;}
.y14d{bottom:884.508474pt;}
.y137{bottom:889.102511pt;}
.y141{bottom:897.819199pt;}
.y1{bottom:909.758933pt;}
.y136{bottom:910.894231pt;}
.y140{bottom:921.790091pt;}
.y173{bottom:924.978434pt;}
.y17c{bottom:926.666667pt;}
.y18{bottom:927.482383pt;}
.y92{bottom:933.331644pt;}
.y191{bottom:940.365067pt;}
.y13f{bottom:945.760983pt;}
.y172{bottom:964.560248pt;}
.y146{bottom:965.373531pt;}
.y165{bottom:975.943950pt;}
.y17{bottom:977.517946pt;}
.y12d{bottom:980.627735pt;}
.y13e{bottom:982.806907pt;}
.y5b{bottom:982.962635pt;}
.y91{bottom:986.746139pt;}
.y145{bottom:993.702767pt;}
.y13d{bottom:1006.777799pt;}
.y12c{bottom:1008.956971pt;}
.y190{bottom:1016.365067pt;}
.y144{bottom:1024.211175pt;}
.y16{bottom:1027.839461pt;}
.y5a{bottom:1033.283142pt;}
.y143{bottom:1052.540411pt;}
.y167{bottom:1057.476180pt;}
.y175{bottom:1059.690296pt;}
.y15{bottom:1078.160976pt;}
.y59{bottom:1083.317696pt;}
.y6c{bottom:1090.238397pt;}
.y18f{bottom:1092.365067pt;}
.y17b{bottom:1094.676000pt;}
.y129{bottom:1107.019711pt;}
.y196{bottom:1120.548880pt;}
.y14{bottom:1128.482492pt;}
.y58{bottom:1133.638203pt;}
.y1a5{bottom:1144.026307pt;}
.y13{bottom:1178.517550pt;}
.y57{bottom:1183.958709pt;}
.y19b{bottom:1191.728107pt;}
.y4{bottom:1202.673200pt;}
.y12{bottom:1228.839066pt;}
.y56{bottom:1234.279720pt;}
.y6a{bottom:1240.006533pt;}
.y11{bottom:1279.160581pt;}
.y55{bottom:1284.313770pt;}
.y82{bottom:1320.406400pt;}
.y69{bottom:1320.406533pt;}
.y10{bottom:1329.482096pt;}
.y54{bottom:1334.634781pt;}
.yf{bottom:1379.517659pt;}
.y53{bottom:1384.955288pt;}
.ye{bottom:1429.839175pt;}
.y52{bottom:1434.989842pt;}
.y18b{bottom:1476.414253pt;}
.yd{bottom:1480.160690pt;}
.y51{bottom:1485.310349pt;}
.yc{bottom:1530.195749pt;}
.y50{bottom:1535.631360pt;}
.yb{bottom:1580.517264pt;}
.y4f{bottom:1585.951866pt;}
.ya{bottom:1630.838779pt;}
.y4e{bottom:1635.986421pt;}
.y9{bottom:1681.160294pt;}
.y4d{bottom:1686.306928pt;}
.y68{bottom:1823.832734pt;}
.h3f{height:44.958191pt;}
.h3c{height:46.477653pt;}
.h3a{height:55.602936pt;}
.h57{height:64.000000pt;}
.h3d{height:64.651607pt;}
.h39{height:70.648586pt;}
.h38{height:71.116767pt;}
.h6a{height:74.652039pt;}
.h1a{height:78.468597pt;}
.h3b{height:78.926886pt;}
.h40{height:79.833455pt;}
.h12{height:81.333333pt;}
.h1d{height:83.173673pt;}
.h3e{height:83.936428pt;}
.h6c{height:87.352737pt;}
.h16{height:87.920714pt;}
.h51{height:88.075424pt;}
.h28{height:88.480697pt;}
.h2d{height:88.481169pt;}
.h2b{height:88.481523pt;}
.h2a{height:88.481782pt;}
.h2f{height:88.482199pt;}
.h2c{height:88.482505pt;}
.h33{height:88.483260pt;}
.h23{height:88.483642pt;}
.h35{height:88.483958pt;}
.h34{height:88.483983pt;}
.h24{height:88.484509pt;}
.h25{height:88.484789pt;}
.h27{height:88.484822pt;}
.h31{height:88.485434pt;}
.h1e{height:88.485787pt;}
.h21{height:88.486248pt;}
.h26{height:88.486666pt;}
.h20{height:88.487564pt;}
.h30{height:88.488793pt;}
.h22{height:88.488926pt;}
.h2e{height:88.489204pt;}
.h32{height:88.489239pt;}
.h29{height:88.489458pt;}
.h1f{height:88.490144pt;}
.h37{height:88.724647pt;}
.h5e{height:96.179935pt;}
.h6b{height:98.370199pt;}
.h17{height:98.910803pt;}
.h62{height:99.844376pt;}
.h4d{height:100.247992pt;}
.he{height:105.564112pt;}
.h66{height:107.684919pt;}
.h52{height:109.025264pt;}
.h4b{height:110.272788pt;}
.h4c{height:111.386656pt;}
.hb{height:112.433310pt;}
.h60{height:112.543217pt;}
.h14{height:113.600000pt;}
.h9{height:113.649305pt;}
.ha{height:113.800034pt;}
.h5{height:113.941333pt;}
.h10{height:115.378505pt;}
.h11{height:115.873067pt;}
.h7{height:116.062656pt;}
.h49{height:116.481175pt;}
.h64{height:116.831097pt;}
.hd{height:117.293458pt;}
.h53{height:118.936605pt;}
.h5f{height:118.964602pt;}
.h4e{height:120.297595pt;}
.h63{height:123.497135pt;}
.h5a{height:124.000000pt;}
.h8{height:124.285057pt;}
.h68{height:126.005566pt;}
.h5c{height:126.805333pt;}
.h50{height:126.909832pt;}
.h1b{height:126.922960pt;}
.h58{height:129.333333pt;}
.h55{height:131.028480pt;}
.h48{height:138.363401pt;}
.h4a{height:139.398133pt;}
.h67{height:141.898160pt;}
.h59{height:146.496000pt;}
.h13{height:147.072000pt;}
.h18{height:158.475429pt;}
.h4f{height:159.335187pt;}
.h5b{height:161.706667pt;}
.h42{height:165.440000pt;}
.h2{height:171.864000pt;}
.h56{height:189.284267pt;}
.h44{height:194.557440pt;}
.h43{height:198.400000pt;}
.h54{height:198.528000pt;}
.h3{height:207.066667pt;}
.h41{height:223.999867pt;}
.h4{height:231.466667pt;}
.h1{height:261.461333pt;}
.h36{height:451.710533pt;}
.hf{height:457.673600pt;}
.h1c{height:507.687184pt;}
.hc{height:631.180667pt;}
.h15{height:640.000000pt;}
.h45{height:795.037467pt;}
.h6{height:855.437067pt;}
.h19{height:1044.337867pt;}
.h61{height:1098.994133pt;}
.h47{height:1113.256133pt;}
.h69{height:1115.219200pt;}
.h65{height:1139.334667pt;}
.h5d{height:1151.035600pt;}
.h46{height:1178.932373pt;}
.h0{height:1440.000000pt;}
.w8{width:60.790413pt;}
.w5{width:429.474667pt;}
.wa{width:696.188267pt;}
.wb{width:723.151333pt;}
.w12{width:783.110800pt;}
.w2{width:1203.287067pt;}
.w13{width:1268.200707pt;}
.w9{width:1287.890480pt;}
.wc{width:1287.891373pt;}
.w4{width:1425.992000pt;}
.w6{width:1496.000000pt;}
.w7{width:1602.712000pt;}
.w10{width:1620.000000pt;}
.w11{width:1701.294400pt;}
.wf{width:2077.333333pt;}
.w3{width:2149.085333pt;}
.wd{width:2152.508000pt;}
.w1{width:2261.444000pt;}
.we{width:2368.000000pt;}
.w0{width:2560.000000pt;}
.x95{left:-1026.292280pt;}
.x8{left:-506.283090pt;}
.x96{left:-304.823613pt;}
.x87{left:-1.989507pt;}
.x0{left:0.000000pt;}
.x8f{left:2.510533pt;}
.x6f{left:16.000000pt;}
.x21{left:17.657782pt;}
.x3{left:18.666667pt;}
.x10{left:26.166533pt;}
.x2e{left:30.174066pt;}
.x2{left:50.010293pt;}
.x2b{left:55.821293pt;}
.x47{left:57.600187pt;}
.x74{left:59.377960pt;}
.x7c{left:64.120367pt;}
.x4{left:66.166613pt;}
.xa{left:68.676960pt;}
.x6b{left:70.212729pt;}
.x94{left:71.809880pt;}
.x1{left:73.309600pt;}
.x2c{left:75.620523pt;}
.x2d{left:86.249467pt;}
.x61{left:87.450144pt;}
.x20{left:101.808507pt;}
.x6c{left:105.079481pt;}
.x8e{left:108.000000pt;}
.x91{left:114.666667pt;}
.xf{left:130.400000pt;}
.x1e{left:131.533120pt;}
.x57{left:159.079556pt;}
.x62{left:168.817731pt;}
.x1d{left:170.226667pt;}
.x63{left:180.122186pt;}
.x55{left:185.195581pt;}
.xc{left:186.097067pt;}
.x48{left:195.274252pt;}
.xe{left:203.413067pt;}
.x11{left:212.007067pt;}
.x1a{left:223.917333pt;}
.x5f{left:228.813060pt;}
.x56{left:231.843417pt;}
.x49{left:237.870353pt;}
.x76{left:244.118920pt;}
.xb{left:256.696533pt;}
.x64{left:262.011438pt;}
.x1c{left:265.986667pt;}
.x1b{left:277.458667pt;}
.x75{left:284.253951pt;}
.x7d{left:286.485326pt;}
.x65{left:337.805655pt;}
.x24{left:371.018602pt;}
.x17{left:419.238933pt;}
.x7f{left:423.793099pt;}
.x78{left:432.466973pt;}
.x2f{left:441.727528pt;}
.x30{left:451.464633pt;}
.x31{left:458.015826pt;}
.x32{left:466.939999pt;}
.x33{left:473.022888pt;}
.x34{left:479.211732pt;}
.x35{left:485.473264pt;}
.x6e{left:488.052933pt;}
.x98{left:501.947067pt;}
.x77{left:526.114961pt;}
.x4d{left:560.047204pt;}
.x4b{left:562.634971pt;}
.x4a{left:582.588123pt;}
.x7e{left:586.007430pt;}
.x26{left:587.401234pt;}
.x29{left:590.520898pt;}
.x19{left:592.473333pt;}
.x4c{left:618.033663pt;}
.x4e{left:646.396894pt;}
.x4f{left:647.929070pt;}
.x66{left:658.756940pt;}
.x60{left:661.719089pt;}
.x54{left:664.307073pt;}
.x93{left:671.930533pt;}
.x5{left:678.356533pt;}
.x50{left:688.277965pt;}
.x51{left:689.333338pt;}
.x42{left:704.134319pt;}
.x67{left:708.673490pt;}
.x53{left:712.248857pt;}
.x22{left:718.593311pt;}
.x43{left:720.287732pt;}
.x52{left:727.503061pt;}
.x44{left:734.529234pt;}
.x45{left:744.271041pt;}
.x46{left:762.048148pt;}
.x79{left:775.621280pt;}
.x6d{left:795.670176pt;}
.x2a{left:819.658437pt;}
.x28{left:829.456151pt;}
.x23{left:871.250705pt;}
.x92{left:886.498133pt;}
.x88{left:890.919733pt;}
.x58{left:921.994162pt;}
.x8a{left:931.813200pt;}
.x5d{left:940.653323pt;}
.x7b{left:942.945977pt;}
.x5a{left:950.663785pt;}
.x5c{left:951.923564pt;}
.x5e{left:963.296227pt;}
.x59{left:965.917989pt;}
.x69{left:986.007340pt;}
.x8c{left:992.999867pt;}
.x6a{left:993.974829pt;}
.x68{left:996.664798pt;}
.x7a{left:1002.193249pt;}
.x5b{left:1010.557020pt;}
.x36{left:1048.398109pt;}
.x37{left:1056.430878pt;}
.x89{left:1058.679733pt;}
.x38{left:1066.713675pt;}
.x39{left:1077.499492pt;}
.x3a{left:1090.335360pt;}
.x3b{left:1103.902794pt;}
.x8d{left:1116.797200pt;}
.x3c{left:1125.136310pt;}
.x8b{left:1130.858533pt;}
.x18{left:1140.169067pt;}
.x27{left:1211.007205pt;}
.x25{left:1238.931862pt;}
.x83{left:1253.850091pt;}
.x80{left:1281.963359pt;}
.x6{left:1290.128434pt;}
.x82{left:1292.485723pt;}
.x1f{left:1297.095863pt;}
.x81{left:1307.047426pt;}
.xd{left:1312.839467pt;}
.x7{left:1330.443643pt;}
.x70{left:1331.819733pt;}
.x12{left:1375.522133pt;}
.x72{left:1430.040000pt;}
.x97{left:1447.853333pt;}
.x3d{left:1465.670303pt;}
.x3e{left:1476.245293pt;}
.x73{left:1478.040000pt;}
.x71{left:1485.577333pt;}
.x3f{left:1486.883206pt;}
.x40{left:1491.799493pt;}
.x41{left:1497.599591pt;}
.x85{left:1565.957333pt;}
.x9{left:1624.365067pt;}
.x86{left:1640.577333pt;}
.x84{left:1675.262008pt;}
.x15{left:1699.518133pt;}
.x14{left:1707.786133pt;}
.x13{left:1710.242133pt;}
.x16{left:1806.755467pt;}
.x90{left:1933.077333pt;}
}




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