
    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_86f937ad74ed03cf44409a9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f475c4409ca8e9068db99c4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;font-style:normal;font-weight: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_0479a2bd482e239fb6f7c413.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;font-style:normal;font-weight: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_786df6a781fd3ef2e100515c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;font-style:normal;font-weight: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_533c26b7ce4f7f94c8856a67.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_86ceccc4df2a2c637f17eb59.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;font-style:normal;font-weight: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_7c506d14c2b1c6a3104efbc2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906000;font-style:normal;font-weight: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_9fa95c9c4e4868e76f618318.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4d1990bd8007ebc82adc1775.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;font-style:normal;font-weight: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_5e3c4f87ae22d9c932b63658.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.888000;font-style:normal;font-weight: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_9a107c5a6d6e8b9c54818c26.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.452000;font-style:normal;font-weight: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_4a991dbee473407f0405a4c9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.818000;font-style:normal;font-weight: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_efebb7f68e436ab75a3a3796.woff2')format("woff");}.fff{font-family:fff;line-height:0.817000;font-style:normal;font-weight: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_e2418df09af463ec970b64e0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_97fe70a393112a0161ff8aa2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.853000;font-style:normal;font-weight: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_f416b9f1c94a589efb851adf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.671000;font-style:normal;font-weight: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_cb324d5ea7d7626030ccdef8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.853000;font-style:normal;font-weight: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_071d22c974b402cf9b417922.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.676000;font-style:normal;font-weight: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_7df57f4d756ca990d66b7fbd.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.668000;font-style:normal;font-weight: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_846e9b65133f4d23615e9de7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.818000;font-style:normal;font-weight: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_4ac0dab2a09d250836098cbb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.167000;font-style:normal;font-weight: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_4d641039b9a9b5247a1a5125.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.452000;font-style:normal;font-weight: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_d54e61904d2ee9d69362840a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_113a685b68c7eba482794928.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.818000;font-style:normal;font-weight: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_dcbeb7a2df536a5bb493c63a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.712000;font-style:normal;font-weight: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_f5a10651063d6723d01be55a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.824000;font-style:normal;font-weight: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_6f24204d3ad13c23e075b7be.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.668000;font-style:normal;font-weight: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_23c118e527a7d4d7be83d218.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.266000;font-style:normal;font-weight: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_f1969015e071939e56747a9f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.167000;font-style:normal;font-weight: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_c63245ab83c1a7e3ca027114.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_6d368c2938cf48fff45ef3ee.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.676000;font-style:normal;font-weight: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_81711de37a06f81354d26d4b.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_bb4a9d974985d4935d6b5dc9.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.853000;font-style:normal;font-weight: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_e5d94560a319baf4ad8c4e6a.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.671000;font-style:normal;font-weight: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_b011a7cba7951fb6dbf31296.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.459000;font-style:normal;font-weight: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_6541ee486195f1f751a02471.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.671000;font-style:normal;font-weight: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_582eca6448dcc9094029c07d.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.066000;font-style:normal;font-weight: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_80c3037faf78959fe57c8b37.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.588000;font-style:normal;font-weight: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_8d148977558712a6ada87100.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.452000;font-style:normal;font-weight: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_f45bb31c342c60701fc61ea3.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.679000;font-style:normal;font-weight: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_eee7b87b28a84bed948cc520.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.588000;font-style:normal;font-weight: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_6e9822239488116377d44ebe.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.687000;font-style:normal;font-weight: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_a12b2b8e53edc2f4707d31c9.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:2.269000;font-style:normal;font-weight: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_fa5a12ba87f1a7b2d1e31029.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.690000;font-style:normal;font-weight: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_924519a39665ca59150eeaf6.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.853000;font-style:normal;font-weight: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_a6d45273a48398885d52e1b7.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.701000;font-style:normal;font-weight: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_4c1feef4d4871cc8ef79f83a.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.668000;font-style:normal;font-weight: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_20c1c30f47b65ae5c74eef8b.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.452000;font-style:normal;font-weight: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_6ea4595731a5aaa2e654573b.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.676000;font-style:normal;font-weight: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_e5a8e6f7e05ba3f027060bbf.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.452000;font-style:normal;font-weight: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_a2d95b46194f71e429ff4ce5.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.676000;font-style:normal;font-weight: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_182bad0f0f4e8166cf032b27.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.653000;font-style:normal;font-weight: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_a5e300f933b3a985568ee8a0.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.671000;font-style:normal;font-weight: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_ce230d89d614dd73d5ae47ff.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_a59d552558b1ee105f7d8d08.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_f11f76df32f863f4fb87acef.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.818000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_294727e8819f0193f26a7efd.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_35a1aabd165e45e4d07bc251.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_c6c0a725d07d4f4ff9b9a1d1.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_4982d1c0cd83c95c88aa79df.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_5ccba0498f310a6edeb32c2a.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_cdaed284125cd818036c64be.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.450000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_224ff7a9383e29e08862af54.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.646000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_15bced552a0b73d10c7ea338.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_1d163e22efdddb2acdd83086.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.873000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_100d9b864f47d591e55af44f.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_050da32a88395a3800708627.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.646000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_ea47f31417980ee25bea5d0e.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_cb486c5e1f1dc10b65a008fa.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.054000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_e1b78e47701aaa308131e2e6.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.646000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_ba9c8a45e5ad7576576b2090.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.873000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_997639c0e5f1b8531cda6d76.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.861000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_2be87a683391700cbbed5178.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_1f7e12c060681fcf6cb01614.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.858000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_12e17071519056f1f72dbf17.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_c80c47876b5837a927e8e2f6.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_dbc0b93d2181b33d4fd51af7.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_e5037c6b38b1648adc43ae45.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.853000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_de6967da0d997e039df25754.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_ba87ea8ff4c363f662ef0c54.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.558000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_298c7c70db2904c3e8729457.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_f1dd95866a1d3a1e2890a62f.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.879000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_980cc5f3c28bf38669d90a09.woff2')format("woff");}.ff55{font-family:ff55;line-height:0.701000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_766c69588f889d7afd012e3b.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.266000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_8565d8a51fe4d4684728c0f8.woff2')format("woff");}.ff57{font-family:ff57;line-height:0.818000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_f3d57f42bcfb56105337a997.woff2')format("woff");}.ff58{font-family:ff58;line-height:0.243000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59;src:url('chunks/assets/font_6e720bc20b13602b1e4eedaa.woff2')format("woff");}.ff59{font-family:ff59;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:ff5a;src:url('chunks/assets/font_66acc9789f4befc676f83c72.woff2')format("woff");}.ff5a{font-family:ff5a;line-height:0.646000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b;src:url('chunks/assets/font_bee9958560c087b97d7060f9.woff2')format("woff");}.ff5b{font-family:ff5b;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:ff5c;src:url('chunks/assets/font_7a07ed90f905df654331f858.woff2')format("woff");}.ff5c{font-family:ff5c;line-height:0.625000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d;src:url('chunks/assets/font_f88e5c97dd706c1ae2959b46.woff2')format("woff");}.ff5d{font-family:ff5d;line-height:0.647000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5e;src:url('chunks/assets/font_56a1c05ed4bb47d2636f73b5.woff2')format("woff");}.ff5e{font-family:ff5e;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:ff5f;src:url('chunks/assets/font_e774490e6fdbb2731c37d934.woff2')format("woff");}.ff5f{font-family:ff5f;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60;src:url('chunks/assets/font_0c6344b706b46987a670324d.woff2')format("woff");}.ff60{font-family:ff60;line-height:0.818000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61;src:url('chunks/assets/font_b33ce56390f3e8774683b957.woff2')format("woff");}.ff61{font-family:ff61;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62;src:url('chunks/assets/font_bdb96259280d7e1b68ea2ec8.woff2')format("woff");}.ff62{font-family:ff62;line-height:0.671000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63;src:url('chunks/assets/font_7ae585fe1d6018d48b76c186.woff2')format("woff");}.ff63{font-family:ff63;line-height:0.054000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64;src:url('chunks/assets/font_99c2eaf3a8ad12e96e7b14f4.woff2')format("woff");}.ff64{font-family:ff64;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.199982px;}
.v4{vertical-align:-15.011354px;}
.v6{vertical-align:-11.988007px;}
.v3{vertical-align:-1.762939px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:16.469421px;}
.va{vertical-align:21.007690px;}
.v1{vertical-align:24.000000px;}
.v7{vertical-align:34.808699px;}
.v8{vertical-align:42.010498px;}
.v5{vertical-align:104.222351px;}
.ls3d{letter-spacing:-1.200000px;}
.ls48{letter-spacing:-0.840000px;}
.ls49{letter-spacing:-0.672000px;}
.ls47{letter-spacing:-0.600000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000039px;}
.ls20{letter-spacing:0.011988px;}
.ls1e{letter-spacing:0.012036px;}
.ls1b{letter-spacing:0.012631px;}
.ls1c{letter-spacing:0.017956px;}
.ls1d{letter-spacing:0.018593px;}
.ls1f{letter-spacing:0.018597px;}
.ls27{letter-spacing:0.029048px;}
.ls3c{letter-spacing:0.106166px;}
.ls41{letter-spacing:0.108904px;}
.ls5{letter-spacing:0.120030px;}
.ls3b{letter-spacing:0.137276px;}
.ls2f{letter-spacing:0.180045px;}
.ls46{letter-spacing:0.720000px;}
.ls40{letter-spacing:0.839980px;}
.ls42{letter-spacing:0.839984px;}
.ls3a{letter-spacing:0.840000px;}
.ls43{letter-spacing:0.846000px;}
.lsb{letter-spacing:1.080270px;}
.ls25{letter-spacing:1.380345px;}
.ls26{letter-spacing:1.620405px;}
.ls14{letter-spacing:2.951153px;}
.ls4{letter-spacing:2.951198px;}
.ls2c{letter-spacing:2.977793px;}
.ls28{letter-spacing:2.977884px;}
.ls22{letter-spacing:3.005169px;}
.ls10{letter-spacing:3.007549px;}
.ls45{letter-spacing:3.023098px;}
.ls29{letter-spacing:3.024929px;}
.ls15{letter-spacing:3.025479px;}
.ls2d{letter-spacing:3.025570px;}
.ls2b{letter-spacing:3.025662px;}
.ls2a{letter-spacing:3.031900px;}
.ls1{letter-spacing:3.360000px;}
.ls31{letter-spacing:4.081020px;}
.ls2e{letter-spacing:4.141035px;}
.ls36{letter-spacing:7.141785px;}
.ls11{letter-spacing:10.022505px;}
.lsc{letter-spacing:13.323329px;}
.ls7{letter-spacing:13.383344px;}
.ls30{letter-spacing:13.503374px;}
.ls17{letter-spacing:14.403599px;}
.ls37{letter-spacing:14.463614px;}
.ls6{letter-spacing:16.289791px;}
.lsa{letter-spacing:16.289837px;}
.ls39{letter-spacing:16.291576px;}
.ls16{letter-spacing:16.309506px;}
.ls3e{letter-spacing:16.335703px;}
.ls1a{letter-spacing:16.361050px;}
.ls18{letter-spacing:16.361141px;}
.ls9{letter-spacing:16.684169px;}
.lse{letter-spacing:16.744184px;}
.ls3{letter-spacing:16.804199px;}
.ls32{letter-spacing:17.404349px;}
.lsf{letter-spacing:17.764439px;}
.ls3f{letter-spacing:19.084769px;}
.ls44{letter-spacing:19.636547px;}
.ls13{letter-spacing:19.636593px;}
.lsd{letter-spacing:19.638286px;}
.ls8{letter-spacing:19.638378px;}
.ls12{letter-spacing:19.638973px;}
.ls21{letter-spacing:19.640531px;}
.ls24{letter-spacing:20.525129px;}
.ls33{letter-spacing:20.585144px;}
.ls35{letter-spacing:23.825954px;}
.ls23{letter-spacing:26.646659px;}
.ls34{letter-spacing:32.984030px;}
.ls38{letter-spacing:32.986411px;}
.ls19{letter-spacing:33.040427px;}
.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;}
}
.ws3d{word-spacing:-16.804199px;}
.ws3a{word-spacing:-16.744184px;}
.ws6b{word-spacing:-16.684169px;}
.ws4b{word-spacing:-15.000000px;}
.ws3{word-spacing:-14.976000px;}
.ws6c{word-spacing:-13.443359px;}
.ws91{word-spacing:-13.332000px;}
.ws71{word-spacing:-13.323329px;}
.ws47{word-spacing:-12.480000px;}
.ws4{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.120000px;}
.wsab{word-spacing:-12.000000px;}
.ws7{word-spacing:-11.520000px;}
.wsb0{word-spacing:-11.328000px;}
.ws39{word-spacing:-10.500000px;}
.ws2{word-spacing:-9.408000px;}
.ws9e{word-spacing:-9.216000px;}
.ws5{word-spacing:-8.694000px;}
.ws8{word-spacing:-8.400000px;}
.ws7e{word-spacing:-1.860000px;}
.ws28{word-spacing:-1.500000px;}
.ws1f{word-spacing:-0.900000px;}
.ws51{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.480000px;}
.wsb9{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.420000px;}
.wsc4{word-spacing:-0.336000px;}
.ws15{word-spacing:-0.300000px;}
.wsa7{word-spacing:-0.240000px;}
.wsc1{word-spacing:-0.192000px;}
.ws3c{word-spacing:-0.060015px;}
.ws2a{word-spacing:-0.060000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws24{word-spacing:0.060000px;}
.ws97{word-spacing:0.120000px;}
.ws38{word-spacing:0.144000px;}
.ws89{word-spacing:0.180000px;}
.ws25{word-spacing:0.240000px;}
.ws50{word-spacing:0.300000px;}
.ws61{word-spacing:0.336000px;}
.ws99{word-spacing:0.360000px;}
.ws54{word-spacing:0.480000px;}
.wsbc{word-spacing:0.528000px;}
.ws7c{word-spacing:0.540000px;}
.ws37{word-spacing:0.624000px;}
.ws41{word-spacing:0.660000px;}
.wsac{word-spacing:0.672000px;}
.wsa{word-spacing:0.720000px;}
.wsb3{word-spacing:0.816000px;}
.ws94{word-spacing:0.840000px;}
.ws9a{word-spacing:0.900000px;}
.wsb2{word-spacing:0.912000px;}
.wsad{word-spacing:0.960000px;}
.ws77{word-spacing:1.020000px;}
.wsc5{word-spacing:1.056000px;}
.wsb4{word-spacing:1.104000px;}
.ws7a{word-spacing:1.140000px;}
.ws7b{word-spacing:1.200000px;}
.ws20{word-spacing:1.320000px;}
.ws92{word-spacing:1.380000px;}
.wsc6{word-spacing:1.392000px;}
.ws26{word-spacing:1.440000px;}
.ws68{word-spacing:1.500000px;}
.ws87{word-spacing:1.536000px;}
.ws1e{word-spacing:1.560000px;}
.wsaa{word-spacing:1.584000px;}
.ws1b{word-spacing:1.620000px;}
.ws34{word-spacing:1.680000px;}
.ws14{word-spacing:1.740000px;}
.ws4a{word-spacing:1.776000px;}
.ws55{word-spacing:1.860000px;}
.wsae{word-spacing:1.872000px;}
.ws36{word-spacing:1.920000px;}
.ws8f{word-spacing:1.980000px;}
.ws62{word-spacing:2.016000px;}
.ws31{word-spacing:2.040000px;}
.wsa8{word-spacing:2.064000px;}
.ws32{word-spacing:2.100000px;}
.ws29{word-spacing:2.160000px;}
.wsbb{word-spacing:2.208000px;}
.ws52{word-spacing:2.220000px;}
.ws7f{word-spacing:2.280000px;}
.wsb7{word-spacing:2.304000px;}
.ws2c{word-spacing:2.460000px;}
.ws21{word-spacing:2.520000px;}
.ws5f{word-spacing:2.580000px;}
.ws58{word-spacing:2.640000px;}
.ws2f{word-spacing:2.700000px;}
.ws76{word-spacing:2.760000px;}
.ws1a{word-spacing:2.820000px;}
.ws88{word-spacing:2.880000px;}
.ws7d{word-spacing:2.940000px;}
.ws80{word-spacing:2.976000px;}
.wsa6{word-spacing:3.024000px;}
.ws56{word-spacing:3.060000px;}
.ws82{word-spacing:3.072000px;}
.ws33{word-spacing:3.120000px;}
.ws49{word-spacing:3.168000px;}
.ws8c{word-spacing:3.180000px;}
.wsa2{word-spacing:3.216000px;}
.ws2d{word-spacing:3.240000px;}
.wsa9{word-spacing:3.264000px;}
.ws90{word-spacing:3.300000px;}
.ws27{word-spacing:3.360000px;}
.wsba{word-spacing:3.408000px;}
.ws2e{word-spacing:3.420000px;}
.ws63{word-spacing:3.504000px;}
.ws48{word-spacing:3.540000px;}
.ws60{word-spacing:3.600000px;}
.wsf{word-spacing:3.660000px;}
.ws85{word-spacing:3.696000px;}
.ws5d{word-spacing:3.720000px;}
.wsaf{word-spacing:3.744000px;}
.ws74{word-spacing:3.840000px;}
.wsa5{word-spacing:3.888000px;}
.ws17{word-spacing:4.020000px;}
.ws10{word-spacing:4.080000px;}
.wsa3{word-spacing:4.176000px;}
.ws12{word-spacing:4.260000px;}
.ws9c{word-spacing:4.320000px;}
.ws73{word-spacing:4.380000px;}
.wsbd{word-spacing:4.416000px;}
.wsa0{word-spacing:4.440000px;}
.ws8e{word-spacing:4.500000px;}
.wsb5{word-spacing:4.512000px;}
.ws9f{word-spacing:4.680000px;}
.wsc{word-spacing:4.740000px;}
.ws86{word-spacing:4.800000px;}
.ws6a{word-spacing:4.860000px;}
.ws96{word-spacing:4.920000px;}
.wsb6{word-spacing:4.944000px;}
.ws46{word-spacing:4.980000px;}
.ws57{word-spacing:5.100000px;}
.ws1d{word-spacing:5.160000px;}
.wsbf{word-spacing:5.232000px;}
.ws78{word-spacing:5.280000px;}
.ws19{word-spacing:5.340000px;}
.wsc0{word-spacing:5.472000px;}
.ws83{word-spacing:5.520000px;}
.wse{word-spacing:5.580000px;}
.wsa4{word-spacing:5.616000px;}
.wsb8{word-spacing:5.664000px;}
.ws8b{word-spacing:5.700000px;}
.ws84{word-spacing:5.760000px;}
.ws69{word-spacing:5.820000px;}
.ws43{word-spacing:5.880000px;}
.wsd{word-spacing:5.940000px;}
.ws30{word-spacing:6.000000px;}
.wsbe{word-spacing:6.240000px;}
.ws70{word-spacing:6.300000px;}
.ws9d{word-spacing:6.420000px;}
.ws93{word-spacing:6.480000px;}
.ws53{word-spacing:6.540000px;}
.wsc3{word-spacing:6.624000px;}
.ws8a{word-spacing:6.660000px;}
.ws6f{word-spacing:6.840000px;}
.wsa1{word-spacing:6.900000px;}
.wsc2{word-spacing:6.960000px;}
.ws16{word-spacing:7.080000px;}
.ws81{word-spacing:7.152000px;}
.ws35{word-spacing:7.200000px;}
.ws95{word-spacing:7.320000px;}
.wsb1{word-spacing:7.344000px;}
.ws22{word-spacing:7.380000px;}
.ws2b{word-spacing:7.440000px;}
.ws42{word-spacing:7.500000px;}
.ws4f{word-spacing:7.860000px;}
.ws5c{word-spacing:7.980000px;}
.ws11{word-spacing:8.040000px;}
.ws40{word-spacing:8.160000px;}
.ws44{word-spacing:8.220000px;}
.ws6e{word-spacing:8.400000px;}
.ws23{word-spacing:8.460000px;}
.ws3f{word-spacing:8.520000px;}
.ws5a{word-spacing:8.580000px;}
.ws67{word-spacing:8.700000px;}
.ws3e{word-spacing:8.880000px;}
.ws5e{word-spacing:8.940000px;}
.ws75{word-spacing:9.300000px;}
.ws5b{word-spacing:9.660000px;}
.ws72{word-spacing:9.780000px;}
.ws3b{word-spacing:9.938484px;}
.ws9b{word-spacing:10.500000px;}
.wsb{word-spacing:10.560000px;}
.ws79{word-spacing:11.100000px;}
.ws8d{word-spacing:11.580000px;}
.ws4e{word-spacing:11.940000px;}
.ws59{word-spacing:12.000000px;}
.ws4c{word-spacing:13.203299px;}
.ws66{word-spacing:13.263314px;}
.ws64{word-spacing:13.317328px;}
.ws6d{word-spacing:13.323329px;}
.ws45{word-spacing:14.460000px;}
.ws98{word-spacing:15.300000px;}
.ws65{word-spacing:16.744184px;}
.ws4d{word-spacing:16.804199px;}
.ws13{word-spacing:19.668000px;}
.ws18{word-spacing:73.056000px;}
._15{margin-left:-26.940000px;}
._1c{margin-left:-24.426104px;}
._17{margin-left:-22.685669px;}
._14{margin-left:-19.980000px;}
._13{margin-left:-16.684169px;}
._5{margin-left:-15.600000px;}
._e{margin-left:-13.332000px;}
._10{margin-left:-11.340000px;}
._19{margin-left:-10.320000px;}
._a{margin-left:-4.894800px;}
._1{margin-left:-3.892800px;}
._4{margin-left:-2.701200px;}
._0{margin-left:-1.632000px;}
._2{width:1.620000px;}
._9{width:2.653200px;}
._1a{width:3.661189px;}
._12{width:5.598000px;}
._1b{width:6.840000px;}
._11{width:8.754000px;}
._b{width:11.375991px;}
._18{width:14.784000px;}
._16{width:17.472001px;}
._f{width:18.660000px;}
._d{width:19.668000px;}
._6{width:22.320000px;}
._1d{width:33.000000px;}
._3{width:39.361186px;}
._7{width:56.255991px;}
._1e{width:607.509504px;}
._c{width:630.309065px;}
._8{width:1613.472066px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:42.010200px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:60.014997px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.y11a{bottom:-0.015289px;}
.y0{bottom:0.000000px;}
.yf4{bottom:0.092548px;}
.yea{bottom:0.108209px;}
.y128{bottom:0.108231px;}
.y121{bottom:0.108347px;}
.yc9{bottom:0.109696px;}
.yc4{bottom:0.179535px;}
.y80{bottom:0.194710px;}
.y8a{bottom:0.194733px;}
.y13d{bottom:0.196198px;}
.y74{bottom:2.294403px;}
.yf9{bottom:3.044403px;}
.y102{bottom:3.044540px;}
.yce{bottom:3.044849px;}
.y14c{bottom:3.045868px;}
.y8f{bottom:3.346069px;}
.y79{bottom:3.794380px;}
.y86{bottom:3.794403px;}
.yb6{bottom:3.794540px;}
.y92{bottom:3.794586px;}
.y7d{bottom:3.795891px;}
.y8d{bottom:3.795959px;}
.yad{bottom:3.796051px;}
.yd8{bottom:3.944550px;}
.ybb{bottom:3.944687px;}
.ya4{bottom:3.944733px;}
.ya7{bottom:3.946198px;}
.ye9{bottom:4.709518px;}
.y127{bottom:4.709702px;}
.y120{bottom:4.709703px;}
.yc8{bottom:4.711052px;}
.y11d{bottom:10.487732px;}
.yc0{bottom:10.679535px;}
.yc5{bottom:10.682159px;}
.y129{bottom:13.917160px;}
.ycb{bottom:13.918488px;}
.yed{bottom:13.922516px;}
.y12d{bottom:13.922562px;}
.y124{bottom:13.922700px;}
.yf0{bottom:16.589390px;}
.y119{bottom:20.394012px;}
.y11c{bottom:20.397034px;}
.yc2{bottom:21.642059px;}
.yf3{bottom:30.278240px;}
.yf2{bottom:35.772445px;}
.y22{bottom:50.758198px;}
.y5{bottom:66.525004px;}
.yd5{bottom:90.006000px;}
.y44{bottom:90.012000px;}
.y14a{bottom:90.024000px;}
.y160{bottom:90.060000px;}
.y1e1{bottom:91.139516px;}
.y115{bottom:91.200005px;}
.ye6{bottom:91.387061px;}
.y4{bottom:97.125005px;}
.yd2{bottom:101.199005px;}
.yd3{bottom:104.243855px;}
.yd4{bottom:104.250000px;}
.y43{bottom:104.256000px;}
.y149{bottom:104.268000px;}
.y1e0{bottom:105.383516px;}
.y1a7{bottom:108.242556px;}
.y114{bottom:109.200005px;}
.ye5{bottom:109.387061px;}
.yd0{bottom:115.449005px;}
.yd1{bottom:118.500000px;}
.y148{bottom:118.512000px;}
.y1df{bottom:119.627516px;}
.y1a6{bottom:122.486556px;}
.y42{bottom:123.299995px;}
.y113{bottom:127.200005px;}
.ye4{bottom:127.387061px;}
.ycd{bottom:129.699005px;}
.ycf{bottom:132.750000px;}
.y147{bottom:132.756000px;}
.y1de{bottom:133.871516px;}
.y1a5{bottom:136.730556px;}
.ycc{bottom:137.549995px;}
.y21{bottom:139.264499px;}
.y41{bottom:140.303253px;}
.y112{bottom:145.200005px;}
.y1dd{bottom:148.115516px;}
.y1a4{bottom:150.974556px;}
.y146{bottom:151.799995px;}
.yef{bottom:154.387505px;}
.y40{bottom:159.347248px;}
.yf6{bottom:160.491898px;}
.y1dc{bottom:162.359516px;}
.y145{bottom:162.545995px;}
.y111{bottom:163.200005px;}
.y1a3{bottom:165.218556px;}
.yee{bottom:168.937054px;}
.yf1{bottom:170.976894px;}
.y1db{bottom:176.603516px;}
.y144{bottom:176.789995px;}
.y1a2{bottom:179.462556px;}
.yf5{bottom:180.885899px;}
.y110{bottom:181.200005px;}
.y3f{bottom:183.203250px;}
.y1da{bottom:190.847516px;}
.y143{bottom:191.033995px;}
.y1a1{bottom:193.706556px;}
.y18{bottom:196.933500px;}
.y3e{bottom:197.447250px;}
.y189{bottom:197.672562px;}
.y81{bottom:200.812042px;}
.y1d9{bottom:205.091516px;}
.y142{bottom:205.277995px;}
.y1a0{bottom:207.950556px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.ye3{bottom:212.737061px;}
.y188{bottom:215.672562px;}
.y10f{bottom:217.200005px;}
.y7f{bottom:218.623489px;}
.y7e{bottom:218.812042px;}
.y1d8{bottom:219.335516px;}
.y141{bottom:219.521995px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y19f{bottom:222.194556px;}
.ybd{bottom:228.347539px;}
.ye2{bottom:230.737061px;}
.y7c{bottom:233.003998px;}
.y1d7{bottom:233.579516px;}
.y187{bottom:233.672562px;}
.y140{bottom:233.765995px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y19e{bottom:236.438556px;}
.y7b{bottom:236.812042px;}
.y1d6{bottom:247.823516px;}
.ye1{bottom:248.737061px;}
.y19d{bottom:250.682556px;}
.y78{bottom:251.005508px;}
.y186{bottom:251.672562px;}
.y13f{bottom:252.809990px;}
.y7a{bottom:254.812042px;}
.yc7{bottom:255.346504px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1d5{bottom:262.067516px;}
.y3d{bottom:265.067093px;}
.ye0{bottom:266.737061px;}
.yc6{bottom:268.697548px;}
.yca{bottom:269.264992px;}
.y185{bottom:269.672562px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y77{bottom:272.812042px;}
.y1d4{bottom:276.311516px;}
.y10e{bottom:281.297681px;}
.y3c{bottom:283.067093px;}
.y19c{bottom:283.232552px;}
.ydf{bottom:284.737061px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y184{bottom:287.672562px;}
.y68{bottom:288.797516px;}
.y1d3{bottom:290.555516px;}
.y76{bottom:290.812042px;}
.y10d{bottom:299.297681px;}
.y3b{bottom:301.067093px;}
.yde{bottom:302.737061px;}
.y1d2{bottom:304.799516px;}
.y183{bottom:305.672562px;}
.y67{bottom:306.797516px;}
.y75{bottom:308.812042px;}
.y13c{bottom:308.997002px;}
.y13b{bottom:309.187042px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.ybc{bottom:311.297539px;}
.y10c{bottom:317.297681px;}
.y1d1{bottom:319.043516px;}
.y3a{bottom:319.067093px;}
.y19b{bottom:320.030529px;}
.ydd{bottom:320.737061px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y182{bottom:323.672562px;}
.y73{bottom:324.517502px;}
.y66{bottom:324.797516px;}
.y139{bottom:324.892502px;}
.yba{bottom:325.356010px;}
.y72{bottom:326.812042px;}
.y13a{bottom:327.186905px;}
.y138{bottom:327.187042px;}
.yb9{bottom:329.297539px;}
.y1d0{bottom:333.287516px;}
.y19a{bottom:334.274529px;}
.y10b{bottom:335.297681px;}
.ydc{bottom:338.737061px;}
.y181{bottom:341.672562px;}
.y65{bottom:342.797516px;}
.y71{bottom:344.812042px;}
.y137{bottom:345.187042px;}
.yb8{bottom:347.297539px;}
.y1cf{bottom:347.531516px;}
.yf{bottom:348.133500px;}
.y199{bottom:348.518529px;}
.y39{bottom:355.067093px;}
.ydb{bottom:356.737061px;}
.y180{bottom:359.672562px;}
.y64{bottom:360.797516px;}
.yb5{bottom:361.491005px;}
.y1ce{bottom:361.775516px;}
.y126{bottom:362.297997px;}
.y198{bottom:362.762529px;}
.y70{bottom:362.812042px;}
.y136{bottom:363.187042px;}
.yb7{bottom:365.297539px;}
.yb4{bottom:365.297562px;}
.y12c{bottom:365.717697px;}
.yda{bottom:374.737061px;}
.y125{bottom:375.647690px;}
.y1cd{bottom:376.019516px;}
.y12a{bottom:376.215157px;}
.y197{bottom:377.006529px;}
.y17f{bottom:377.672562px;}
.y63{bottom:378.797516px;}
.y6f{bottom:380.812042px;}
.y135{bottom:381.187042px;}
.yb3{bottom:383.297562px;}
.y12b{bottom:384.917331px;}
.ye{bottom:386.785499px;}
.y1cc{bottom:390.263516px;}
.y196{bottom:391.250529px;}
.y17e{bottom:395.672562px;}
.y62{bottom:396.797516px;}
.y6e{bottom:398.812042px;}
.y134{bottom:399.187042px;}
.yb2{bottom:401.297562px;}
.y1cb{bottom:404.507516px;}
.y195{bottom:405.494529px;}
.yd{bottom:408.044999px;}
.y38{bottom:409.067093px;}
.yd9{bottom:410.737061px;}
.y17d{bottom:413.672562px;}
.y109{bottom:414.441010px;}
.y61{bottom:414.797516px;}
.y6d{bottom:416.812042px;}
.y133{bottom:417.187042px;}
.y10a{bottom:418.247681px;}
.y108{bottom:418.247708px;}
.y1ca{bottom:418.751516px;}
.yb1{bottom:419.297562px;}
.y194{bottom:419.738529px;}
.y17c{bottom:431.672562px;}
.y60{bottom:432.797516px;}
.y1c9{bottom:432.995516px;}
.yaf{bottom:433.355988px;}
.y193{bottom:433.982529px;}
.y6c{bottom:434.812042px;}
.y132{bottom:435.187042px;}
.yb0{bottom:437.297562px;}
.y11f{bottom:445.248000px;}
.y37{bottom:445.817093px;}
.y1c8{bottom:447.239516px;}
.yd7{bottom:447.295486px;}
.y123{bottom:448.667679px;}
.y17b{bottom:449.672562px;}
.y5f{bottom:450.797516px;}
.yd6{bottom:451.237061px;}
.yac{bottom:451.489517px;}
.y6b{bottom:452.812042px;}
.y131{bottom:453.187042px;}
.yae{bottom:455.297562px;}
.y11e{bottom:458.597717px;}
.y122{bottom:459.165161px;}
.y1c7{bottom:461.483516px;}
.y192{bottom:462.482529px;}
.y36{bottom:463.817093px;}
.y17a{bottom:467.672562px;}
.y5e{bottom:468.797516px;}
.yaa{bottom:469.490982px;}
.y130{bottom:471.187042px;}
.yab{bottom:473.297562px;}
.y1c6{bottom:475.727516px;}
.ye8{bottom:478.237518px;}
.yec{bottom:481.657059px;}
.y179{bottom:485.672562px;}
.y5d{bottom:486.797516px;}
.ya9{bottom:487.490982px;}
.y6a{bottom:488.812042px;}
.y12f{bottom:489.187042px;}
.y1c5{bottom:489.971516px;}
.y191{bottom:490.982529px;}
.ya8{bottom:491.297562px;}
.ye7{bottom:491.587061px;}
.yeb{bottom:492.154495px;}
.y35{bottom:500.567093px;}
.y107{bottom:501.197708px;}
.yc{bottom:502.864502px;}
.y178{bottom:503.672562px;}
.y1c4{bottom:504.215516px;}
.y5c{bottom:504.797516px;}
.ya6{bottom:505.354523px;}
.y12e{bottom:507.187042px;}
.ya5{bottom:509.297562px;}
.y1c3{bottom:518.459516px;}
.y34{bottom:518.567093px;}
.y106{bottom:519.197708px;}
.yb{bottom:520.864502px;}
.y177{bottom:521.672562px;}
.y5b{bottom:522.797516px;}
.y190{bottom:523.244562px;}
.ya3{bottom:523.355988px;}
.ya2{bottom:523.490982px;}
.y69{bottom:524.812042px;}
.ya1{bottom:527.297562px;}
.y1c2{bottom:532.703516px;}
.y33{bottom:536.567093px;}
.y105{bottom:537.197708px;}
.ya{bottom:538.864499px;}
.y176{bottom:539.672562px;}
.y5a{bottom:540.797516px;}
.ya0{bottom:545.297562px;}
.y13e{bottom:545.479065px;}
.y1c1{bottom:546.947516px;}
.y18f{bottom:551.720562px;}
.y15f{bottom:554.240982px;}
.y32{bottom:554.567093px;}
.y174{bottom:554.621979px;}
.y104{bottom:555.197708px;}
.y9{bottom:556.864499px;}
.y173{bottom:557.672516px;}
.y175{bottom:557.672562px;}
.y15e{bottom:558.047562px;}
.yf7{bottom:558.259048px;}
.y59{bottom:558.797516px;}
.y1c0{bottom:561.191516px;}
.y9f{bottom:563.297562px;}
.y82{bottom:564.739059px;}
.y18e{bottom:565.964562px;}
.y101{bottom:570.146988px;}
.y31{bottom:572.567093px;}
.y100{bottom:573.197562px;}
.y103{bottom:573.197708px;}
.y1bf{bottom:575.435516px;}
.y172{bottom:575.672516px;}
.y15d{bottom:576.047562px;}
.y58{bottom:576.797516px;}
.y18d{bottom:580.208562px;}
.y9e{bottom:581.297562px;}
.y1be{bottom:589.679516px;}
.y15c{bottom:590.239517px;}
.y30{bottom:590.567093px;}
.y171{bottom:593.672516px;}
.y15b{bottom:594.047562px;}
.y57{bottom:594.797516px;}
.y9d{bottom:599.297562px;}
.y118{bottom:600.197983px;}
.y1bd{bottom:603.923516px;}
.y15a{bottom:608.240982px;}
.y2f{bottom:608.567093px;}
.y18c{bottom:608.684562px;}
.y116{bottom:609.869991px;}
.y117{bottom:610.682693px;}
.y11b{bottom:610.685715px;}
.y170{bottom:611.672516px;}
.y159{bottom:612.047562px;}
.y56{bottom:612.797516px;}
.y9c{bottom:617.297562px;}
.y1bc{bottom:618.167516px;}
.y18b{bottom:622.928562px;}
.y2e{bottom:626.567093px;}
.y16f{bottom:629.672516px;}
.y158{bottom:630.047562px;}
.y55{bottom:630.797516px;}
.y1bb{bottom:632.411516px;}
.y9b{bottom:635.297562px;}
.y18a{bottom:637.172562px;}
.y2d{bottom:644.567093px;}
.y8{bottom:645.510000px;}
.yfe{bottom:645.746979px;}
.y1ba{bottom:646.655516px;}
.y16e{bottom:647.672516px;}
.y157{bottom:648.047562px;}
.y54{bottom:648.797516px;}
.yff{bottom:648.797562px;}
.y9a{bottom:653.297562px;}
.y1b9{bottom:660.899516px;}
.y2c{bottom:662.567093px;}
.y16d{bottom:665.672516px;}
.y156{bottom:666.047562px;}
.y7{bottom:666.771000px;}
.y53{bottom:666.797516px;}
.y99{bottom:671.297562px;}
.y1b8{bottom:675.143516px;}
.y155{bottom:680.240982px;}
.y2b{bottom:680.567093px;}
.y16c{bottom:683.672516px;}
.y154{bottom:684.047562px;}
.y52{bottom:684.797516px;}
.y98{bottom:689.297562px;}
.y1b7{bottom:689.387516px;}
.y16b{bottom:701.672516px;}
.y153{bottom:702.047562px;}
.y51{bottom:702.797516px;}
.y1b6{bottom:703.631516px;}
.y97{bottom:707.297562px;}
.y1b5{bottom:717.875516px;}
.y16a{bottom:719.672516px;}
.y152{bottom:720.047562px;}
.y50{bottom:720.797516px;}
.y96{bottom:725.297562px;}
.y6{bottom:726.298500px;}
.y2a{bottom:729.059696px;}
.y1b4{bottom:732.119516px;}
.y169{bottom:737.672516px;}
.y151{bottom:738.047562px;}
.y4f{bottom:738.797516px;}
.y95{bottom:739.490982px;}
.y94{bottom:743.297562px;}
.y29{bottom:743.303696px;}
.y1b3{bottom:746.363516px;}
.y3{bottom:752.599495px;}
.y168{bottom:755.672516px;}
.y150{bottom:756.047562px;}
.y4e{bottom:756.797516px;}
.y91{bottom:757.490982px;}
.y1b2{bottom:760.607516px;}
.y90{bottom:761.297516px;}
.y93{bottom:761.297562px;}
.yfd{bottom:770.991028px;}
.y167{bottom:773.672516px;}
.y4d{bottom:774.797516px;}
.y1b1{bottom:774.851516px;}
.y8c{bottom:775.489471px;}
.y8e{bottom:775.948517px;}
.y8b{bottom:779.297516px;}
.y28{bottom:781.152191px;}
.yfc{bottom:788.989471px;}
.y1b0{bottom:789.095516px;}
.y166{bottom:791.672516px;}
.y14f{bottom:792.047516px;}
.y4c{bottom:792.797516px;}
.y89{bottom:797.109009px;}
.y88{bottom:797.297516px;}
.y1af{bottom:803.339516px;}
.yfb{bottom:806.991028px;}
.y165{bottom:809.672516px;}
.yfa{bottom:810.609009px;}
.y4b{bottom:810.797516px;}
.y85{bottom:811.491028px;}
.y87{bottom:815.297516px;}
.y1ae{bottom:817.583516px;}
.y27{bottom:823.895529px;}
.y164{bottom:827.672516px;}
.y4a{bottom:828.797516px;}
.y1ad{bottom:831.827516px;}
.y84{bottom:833.297516px;}
.y163{bottom:845.672516px;}
.y1ac{bottom:846.071516px;}
.y26{bottom:846.398529px;}
.y49{bottom:846.797516px;}
.y83{bottom:851.297516px;}
.y1ab{bottom:860.315516px;}
.yf8{bottom:861.746979px;}
.y162{bottom:863.672516px;}
.y14e{bottom:864.609009px;}
.y48{bottom:864.797516px;}
.y1aa{bottom:874.559516px;}
.ybf{bottom:878.297974px;}
.y2{bottom:879.369000px;}
.y14d{bottom:879.746979px;}
.y47{bottom:882.797516px;}
.ybe{bottom:888.422555px;}
.y1a9{bottom:888.803516px;}
.yc1{bottom:888.977509px;}
.yc3{bottom:896.187012px;}
.y14b{bottom:897.745514px;}
.y161{bottom:899.672516px;}
.y25{bottom:899.785217px;}
.y46{bottom:900.797516px;}
.y1a8{bottom:903.047516px;}
.y24{bottom:925.867084px;}
.y23{bottom:940.111084px;}
.y45{bottom:940.520691px;}
.y1{bottom:966.726000px;}
.h3d{height:3.960990px;}
.h4d{height:6.121530px;}
.h36{height:8.400000px;}
.h33{height:8.401500px;}
.h1f{height:10.350000px;}
.h55{height:10.498500px;}
.h28{height:10.500000px;}
.h2a{height:10.650000px;}
.h52{height:11.400000px;}
.h4e{height:11.401500px;}
.h43{height:12.150000px;}
.h1a{height:12.450000px;}
.h40{height:13.200000px;}
.h4a{height:13.500000px;}
.h2b{height:13.650000px;}
.h24{height:13.651500px;}
.h54{height:13.800000px;}
.h1d{height:13.801500px;}
.h1c{height:13.950000px;}
.h27{height:13.951499px;}
.h22{height:14.099999px;}
.h25{height:14.101500px;}
.h50{height:14.250000px;}
.h38{height:18.528000px;}
.h35{height:21.168000px;}
.h15{height:23.116800px;}
.h29{height:26.466614px;}
.h2f{height:28.062814px;}
.h32{height:28.398895px;}
.h3e{height:28.692967px;}
.h45{height:30.598500px;}
.h37{height:31.344000px;}
.h2d{height:31.500000px;}
.h34{height:32.064000px;}
.h7{height:32.130000px;}
.h2e{height:32.828204px;}
.h14{height:33.024000px;}
.ha{height:33.840000px;}
.h13{height:34.687500px;}
.h44{height:36.069013px;}
.h30{height:37.949999px;}
.h2c{height:39.189793px;}
.h4b{height:39.729928px;}
.h1e{height:40.090018px;}
.h3c{height:40.349999px;}
.h20{height:40.450108px;}
.h1b{height:40.570138px;}
.h23{height:40.990243px;}
.h10{height:41.280000px;}
.h49{height:41.410348px;}
.hb{height:42.048000px;}
.h21{height:42.528000px;}
.h26{height:42.610648px;}
.h53{height:44.742721px;}
.h4f{height:44.742996px;}
.h51{height:44.743453px;}
.h3f{height:45.162388px;}
.h18{height:45.709061px;}
.h6{height:45.900000px;}
.hc{height:46.704000px;}
.h16{height:47.472000px;}
.h3{height:48.195000px;}
.h4c{height:48.818533px;}
.h42{height:49.405853px;}
.h41{height:49.406586px;}
.h17{height:52.896000px;}
.h11{height:53.160000px;}
.h19{height:53.640000px;}
.h2{height:55.080000px;}
.hf{height:59.340000px;}
.he{height:64.866000px;}
.h12{height:65.274000px;}
.hd{height:69.108000px;}
.h46{height:75.378837px;}
.h3a{height:75.798942px;}
.h5{height:78.030000px;}
.h3b{height:82.580637px;}
.h47{height:83.000742px;}
.h4{height:119.055004px;}
.h48{height:132.620789px;}
.h31{height:132.621246px;}
.h39{height:132.621429px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:7.108500px;}
.wb{width:7.110000px;}
.w21{width:8.203500px;}
.w22{width:8.205000px;}
.w17{width:8.865000px;}
.w18{width:8.970000px;}
.w19{width:9.060000px;}
.w14{width:10.140000px;}
.w2b{width:10.200000px;}
.wf{width:11.190000px;}
.w29{width:11.775000px;}
.w2e{width:12.525000px;}
.w2d{width:13.230000px;}
.w1a{width:30.000000px;}
.w1e{width:30.885000px;}
.w28{width:32.564999px;}
.w11{width:36.148500px;}
.w10{width:36.150000px;}
.w2f{width:36.855000px;}
.wd{width:48.179998px;}
.w5{width:55.649998px;}
.w27{width:58.379997px;}
.we{width:58.455002px;}
.w1b{width:59.264997px;}
.w20{width:60.899998px;}
.w2a{width:61.620003px;}
.w2c{width:73.080002px;}
.w8{width:75.554998px;}
.w12{width:79.050000px;}
.w13{width:100.424995px;}
.w16{width:107.595005px;}
.w1f{width:111.855000px;}
.w1d{width:116.024998px;}
.wc{width:116.475002px;}
.w15{width:128.011505px;}
.w6{width:128.490005px;}
.wa{width:142.290000px;}
.w7{width:145.770000px;}
.w26{width:173.265003px;}
.w23{width:195.044998px;}
.w25{width:252.165000px;}
.w1c{width:312.328491px;}
.w24{width:363.690010px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.xc{left:-1.071447px;}
.x0{left:0.000000px;}
.x13{left:1.410450px;}
.x5c{left:2.562595px;}
.x3b{left:7.945295px;}
.x25{left:15.316360px;}
.x7e{left:16.852202px;}
.x45{left:24.888451px;}
.x34{left:27.512993px;}
.x62{left:29.100300px;}
.x70{left:30.707726px;}
.x71{left:41.736763px;}
.x4f{left:43.996513px;}
.x4e{left:48.815849px;}
.x36{left:59.683800px;}
.x38{left:69.538490px;}
.x63{left:72.583647px;}
.x6{left:76.535402px;}
.x7{left:80.907303px;}
.x40{left:85.505402px;}
.x2c{left:86.675400px;}
.x2b{left:87.725400px;}
.x18{left:89.268002px;}
.x9{left:93.543303px;}
.x8{left:97.799400px;}
.x3c{left:100.442848px;}
.x1{left:102.045000px;}
.x1d{left:104.181004px;}
.x2{left:106.297500px;}
.x41{left:109.587444px;}
.x1e{left:115.370853px;}
.x5f{left:116.899498px;}
.x6a{left:121.624511px;}
.x39{left:125.292423px;}
.x61{left:147.682503px;}
.x60{left:150.254997px;}
.x47{left:166.340103px;}
.x5b{left:167.809502px;}
.x6d{left:170.332809px;}
.x48{left:173.362495px;}
.x2a{left:176.960403px;}
.x12{left:180.568497px;}
.x7d{left:182.149498px;}
.x5d{left:183.888004px;}
.x14{left:187.677452px;}
.x5e{left:192.092697px;}
.x65{left:194.286003px;}
.x49{left:195.559341px;}
.xa{left:200.791489px;}
.x4{left:203.484001px;}
.xd{left:205.025550px;}
.x19{left:213.683990px;}
.x23{left:215.952896px;}
.x15{left:218.825409px;}
.x59{left:221.638504px;}
.x21{left:225.467995px;}
.x22{left:236.658142px;}
.xe{left:241.413002px;}
.x69{left:242.894989px;}
.x3d{left:247.542000px;}
.xb{left:256.442390px;}
.x1a{left:261.864761px;}
.x32{left:265.522499px;}
.x75{left:268.029007px;}
.x4c{left:271.514992px;}
.x64{left:274.063339px;}
.x3a{left:275.730011px;}
.x33{left:276.794998px;}
.x4d{left:280.195358px;}
.x76{left:281.221504px;}
.x5a{left:282.538650px;}
.x2d{left:289.999489px;}
.x79{left:291.021011px;}
.x7b{left:294.663002px;}
.x43{left:296.549995px;}
.x29{left:298.793999px;}
.x2e{left:301.188606px;}
.x7a{left:304.460999px;}
.x4b{left:305.926643px;}
.x44{left:309.882591px;}
.x2f{left:312.097504px;}
.x35{left:314.703461px;}
.x68{left:318.105011px;}
.x42{left:322.740898px;}
.x46{left:326.550750px;}
.x7c{left:328.293297px;}
.x57{left:336.427505px;}
.x51{left:339.176994px;}
.x27{left:341.639992px;}
.x77{left:343.051506px;}
.x1f{left:345.939011px;}
.x66{left:347.241005px;}
.x30{left:348.247353px;}
.x50{left:351.920998px;}
.x37{left:360.481499px;}
.x7f{left:362.717995px;}
.x6b{left:369.325356px;}
.x6e{left:376.766991px;}
.x28{left:377.789841px;}
.xf{left:387.184204px;}
.x58{left:394.881912px;}
.x20{left:404.394287px;}
.x6c{left:405.469388px;}
.x6f{left:408.500565px;}
.x80{left:411.716721px;}
.x52{left:419.298019px;}
.x73{left:423.822006px;}
.x72{left:425.767044px;}
.x3e{left:430.242004px;}
.x54{left:431.984985px;}
.x16{left:434.890503px;}
.x3f{left:439.212433px;}
.x17{left:442.000488px;}
.x24{left:445.955978px;}
.x53{left:450.182831px;}
.x4a{left:453.044998px;}
.x3{left:454.959000px;}
.x74{left:456.596695px;}
.x78{left:463.831970px;}
.x1b{left:476.115005px;}
.x10{left:477.670486px;}
.x26{left:482.106171px;}
.x5{left:485.858414px;}
.x67{left:504.211807px;}
.x55{left:520.634995px;}
.x56{left:531.826035px;}
.x1c{left:534.570923px;}
.x11{left:553.225937px;}
.x31{left:565.027405px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v4{vertical-align:-13.343426pt;}
.v6{vertical-align:-10.656006pt;}
.v3{vertical-align:-1.567057pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:14.639486pt;}
.va{vertical-align:18.673503pt;}
.v1{vertical-align:21.333333pt;}
.v7{vertical-align:30.941065pt;}
.v8{vertical-align:37.342665pt;}
.v5{vertical-align:92.642090pt;}
.ls3d{letter-spacing:-1.066667pt;}
.ls48{letter-spacing:-0.746667pt;}
.ls49{letter-spacing:-0.597333pt;}
.ls47{letter-spacing:-0.533333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000035pt;}
.ls20{letter-spacing:0.010656pt;}
.ls1e{letter-spacing:0.010699pt;}
.ls1b{letter-spacing:0.011228pt;}
.ls1c{letter-spacing:0.015961pt;}
.ls1d{letter-spacing:0.016527pt;}
.ls1f{letter-spacing:0.016531pt;}
.ls27{letter-spacing:0.025820pt;}
.ls3c{letter-spacing:0.094370pt;}
.ls41{letter-spacing:0.096804pt;}
.ls5{letter-spacing:0.106693pt;}
.ls3b{letter-spacing:0.122023pt;}
.ls2f{letter-spacing:0.160040pt;}
.ls46{letter-spacing:0.640000pt;}
.ls40{letter-spacing:0.746649pt;}
.ls42{letter-spacing:0.746652pt;}
.ls3a{letter-spacing:0.746667pt;}
.ls43{letter-spacing:0.752000pt;}
.lsb{letter-spacing:0.960240pt;}
.ls25{letter-spacing:1.226973pt;}
.ls26{letter-spacing:1.440360pt;}
.ls14{letter-spacing:2.623247pt;}
.ls4{letter-spacing:2.623287pt;}
.ls2c{letter-spacing:2.646927pt;}
.ls28{letter-spacing:2.647008pt;}
.ls22{letter-spacing:2.671261pt;}
.ls10{letter-spacing:2.673377pt;}
.ls45{letter-spacing:2.687198pt;}
.ls29{letter-spacing:2.688826pt;}
.ls15{letter-spacing:2.689314pt;}
.ls2d{letter-spacing:2.689396pt;}
.ls2b{letter-spacing:2.689477pt;}
.ls2a{letter-spacing:2.695022pt;}
.ls1{letter-spacing:2.986667pt;}
.ls31{letter-spacing:3.627573pt;}
.ls2e{letter-spacing:3.680920pt;}
.ls36{letter-spacing:6.348253pt;}
.ls11{letter-spacing:8.908893pt;}
.lsc{letter-spacing:11.842960pt;}
.ls7{letter-spacing:11.896306pt;}
.ls30{letter-spacing:12.002999pt;}
.ls17{letter-spacing:12.803199pt;}
.ls37{letter-spacing:12.856546pt;}
.ls6{letter-spacing:14.479814pt;}
.lsa{letter-spacing:14.479855pt;}
.ls39{letter-spacing:14.481401pt;}
.ls16{letter-spacing:14.497338pt;}
.ls3e{letter-spacing:14.520625pt;}
.ls1a{letter-spacing:14.543155pt;}
.ls18{letter-spacing:14.543237pt;}
.ls9{letter-spacing:14.830373pt;}
.lse{letter-spacing:14.883719pt;}
.ls3{letter-spacing:14.937066pt;}
.ls32{letter-spacing:15.470533pt;}
.lsf{letter-spacing:15.790613pt;}
.ls3f{letter-spacing:16.964239pt;}
.ls44{letter-spacing:17.454708pt;}
.ls13{letter-spacing:17.454749pt;}
.lsd{letter-spacing:17.456255pt;}
.ls8{letter-spacing:17.456336pt;}
.ls12{letter-spacing:17.456865pt;}
.ls21{letter-spacing:17.458250pt;}
.ls24{letter-spacing:18.244559pt;}
.ls33{letter-spacing:18.297906pt;}
.ls35{letter-spacing:21.178626pt;}
.ls23{letter-spacing:23.685919pt;}
.ls34{letter-spacing:29.319138pt;}
.ls38{letter-spacing:29.321254pt;}
.ls19{letter-spacing:29.369268pt;}
.ws3d{word-spacing:-14.937066pt;}
.ws3a{word-spacing:-14.883719pt;}
.ws6b{word-spacing:-14.830373pt;}
.ws4b{word-spacing:-13.333333pt;}
.ws3{word-spacing:-13.312000pt;}
.ws6c{word-spacing:-11.949653pt;}
.ws91{word-spacing:-11.850667pt;}
.ws71{word-spacing:-11.842960pt;}
.ws47{word-spacing:-11.093333pt;}
.ws4{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.773333pt;}
.wsab{word-spacing:-10.666667pt;}
.ws7{word-spacing:-10.240000pt;}
.wsb0{word-spacing:-10.069333pt;}
.ws39{word-spacing:-9.333333pt;}
.ws2{word-spacing:-8.362667pt;}
.ws9e{word-spacing:-8.192000pt;}
.ws5{word-spacing:-7.728000pt;}
.ws8{word-spacing:-7.466667pt;}
.ws7e{word-spacing:-1.653333pt;}
.ws28{word-spacing:-1.333333pt;}
.ws1f{word-spacing:-0.800000pt;}
.ws51{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.426667pt;}
.wsb9{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.373333pt;}
.wsc4{word-spacing:-0.298667pt;}
.ws15{word-spacing:-0.266667pt;}
.wsa7{word-spacing:-0.213333pt;}
.wsc1{word-spacing:-0.170667pt;}
.ws3c{word-spacing:-0.053347pt;}
.ws2a{word-spacing:-0.053333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws24{word-spacing:0.053333pt;}
.ws97{word-spacing:0.106667pt;}
.ws38{word-spacing:0.128000pt;}
.ws89{word-spacing:0.160000pt;}
.ws25{word-spacing:0.213333pt;}
.ws50{word-spacing:0.266667pt;}
.ws61{word-spacing:0.298667pt;}
.ws99{word-spacing:0.320000pt;}
.ws54{word-spacing:0.426667pt;}
.wsbc{word-spacing:0.469333pt;}
.ws7c{word-spacing:0.480000pt;}
.ws37{word-spacing:0.554667pt;}
.ws41{word-spacing:0.586667pt;}
.wsac{word-spacing:0.597333pt;}
.wsa{word-spacing:0.640000pt;}
.wsb3{word-spacing:0.725333pt;}
.ws94{word-spacing:0.746667pt;}
.ws9a{word-spacing:0.800000pt;}
.wsb2{word-spacing:0.810667pt;}
.wsad{word-spacing:0.853333pt;}
.ws77{word-spacing:0.906667pt;}
.wsc5{word-spacing:0.938667pt;}
.wsb4{word-spacing:0.981333pt;}
.ws7a{word-spacing:1.013333pt;}
.ws7b{word-spacing:1.066667pt;}
.ws20{word-spacing:1.173333pt;}
.ws92{word-spacing:1.226667pt;}
.wsc6{word-spacing:1.237333pt;}
.ws26{word-spacing:1.280000pt;}
.ws68{word-spacing:1.333333pt;}
.ws87{word-spacing:1.365333pt;}
.ws1e{word-spacing:1.386667pt;}
.wsaa{word-spacing:1.408000pt;}
.ws1b{word-spacing:1.440000pt;}
.ws34{word-spacing:1.493333pt;}
.ws14{word-spacing:1.546667pt;}
.ws4a{word-spacing:1.578667pt;}
.ws55{word-spacing:1.653333pt;}
.wsae{word-spacing:1.664000pt;}
.ws36{word-spacing:1.706667pt;}
.ws8f{word-spacing:1.760000pt;}
.ws62{word-spacing:1.792000pt;}
.ws31{word-spacing:1.813333pt;}
.wsa8{word-spacing:1.834667pt;}
.ws32{word-spacing:1.866667pt;}
.ws29{word-spacing:1.920000pt;}
.wsbb{word-spacing:1.962667pt;}
.ws52{word-spacing:1.973333pt;}
.ws7f{word-spacing:2.026667pt;}
.wsb7{word-spacing:2.048000pt;}
.ws2c{word-spacing:2.186667pt;}
.ws21{word-spacing:2.240000pt;}
.ws5f{word-spacing:2.293333pt;}
.ws58{word-spacing:2.346667pt;}
.ws2f{word-spacing:2.400000pt;}
.ws76{word-spacing:2.453333pt;}
.ws1a{word-spacing:2.506667pt;}
.ws88{word-spacing:2.560000pt;}
.ws7d{word-spacing:2.613333pt;}
.ws80{word-spacing:2.645333pt;}
.wsa6{word-spacing:2.688000pt;}
.ws56{word-spacing:2.720000pt;}
.ws82{word-spacing:2.730667pt;}
.ws33{word-spacing:2.773333pt;}
.ws49{word-spacing:2.816000pt;}
.ws8c{word-spacing:2.826667pt;}
.wsa2{word-spacing:2.858667pt;}
.ws2d{word-spacing:2.880000pt;}
.wsa9{word-spacing:2.901333pt;}
.ws90{word-spacing:2.933333pt;}
.ws27{word-spacing:2.986667pt;}
.wsba{word-spacing:3.029333pt;}
.ws2e{word-spacing:3.040000pt;}
.ws63{word-spacing:3.114667pt;}
.ws48{word-spacing:3.146667pt;}
.ws60{word-spacing:3.200000pt;}
.wsf{word-spacing:3.253333pt;}
.ws85{word-spacing:3.285333pt;}
.ws5d{word-spacing:3.306667pt;}
.wsaf{word-spacing:3.328000pt;}
.ws74{word-spacing:3.413333pt;}
.wsa5{word-spacing:3.456000pt;}
.ws17{word-spacing:3.573333pt;}
.ws10{word-spacing:3.626667pt;}
.wsa3{word-spacing:3.712000pt;}
.ws12{word-spacing:3.786667pt;}
.ws9c{word-spacing:3.840000pt;}
.ws73{word-spacing:3.893333pt;}
.wsbd{word-spacing:3.925333pt;}
.wsa0{word-spacing:3.946667pt;}
.ws8e{word-spacing:4.000000pt;}
.wsb5{word-spacing:4.010667pt;}
.ws9f{word-spacing:4.160000pt;}
.wsc{word-spacing:4.213333pt;}
.ws86{word-spacing:4.266667pt;}
.ws6a{word-spacing:4.320000pt;}
.ws96{word-spacing:4.373333pt;}
.wsb6{word-spacing:4.394667pt;}
.ws46{word-spacing:4.426667pt;}
.ws57{word-spacing:4.533333pt;}
.ws1d{word-spacing:4.586667pt;}
.wsbf{word-spacing:4.650667pt;}
.ws78{word-spacing:4.693333pt;}
.ws19{word-spacing:4.746667pt;}
.wsc0{word-spacing:4.864000pt;}
.ws83{word-spacing:4.906667pt;}
.wse{word-spacing:4.960000pt;}
.wsa4{word-spacing:4.992000pt;}
.wsb8{word-spacing:5.034667pt;}
.ws8b{word-spacing:5.066667pt;}
.ws84{word-spacing:5.120000pt;}
.ws69{word-spacing:5.173333pt;}
.ws43{word-spacing:5.226667pt;}
.wsd{word-spacing:5.280000pt;}
.ws30{word-spacing:5.333333pt;}
.wsbe{word-spacing:5.546667pt;}
.ws70{word-spacing:5.600000pt;}
.ws9d{word-spacing:5.706667pt;}
.ws93{word-spacing:5.760000pt;}
.ws53{word-spacing:5.813333pt;}
.wsc3{word-spacing:5.888000pt;}
.ws8a{word-spacing:5.920000pt;}
.ws6f{word-spacing:6.080000pt;}
.wsa1{word-spacing:6.133333pt;}
.wsc2{word-spacing:6.186667pt;}
.ws16{word-spacing:6.293333pt;}
.ws81{word-spacing:6.357333pt;}
.ws35{word-spacing:6.400000pt;}
.ws95{word-spacing:6.506667pt;}
.wsb1{word-spacing:6.528000pt;}
.ws22{word-spacing:6.560000pt;}
.ws2b{word-spacing:6.613333pt;}
.ws42{word-spacing:6.666667pt;}
.ws4f{word-spacing:6.986667pt;}
.ws5c{word-spacing:7.093333pt;}
.ws11{word-spacing:7.146667pt;}
.ws40{word-spacing:7.253333pt;}
.ws44{word-spacing:7.306667pt;}
.ws6e{word-spacing:7.466667pt;}
.ws23{word-spacing:7.520000pt;}
.ws3f{word-spacing:7.573333pt;}
.ws5a{word-spacing:7.626667pt;}
.ws67{word-spacing:7.733333pt;}
.ws3e{word-spacing:7.893333pt;}
.ws5e{word-spacing:7.946667pt;}
.ws75{word-spacing:8.266667pt;}
.ws5b{word-spacing:8.586667pt;}
.ws72{word-spacing:8.693333pt;}
.ws3b{word-spacing:8.834208pt;}
.ws9b{word-spacing:9.333333pt;}
.wsb{word-spacing:9.386667pt;}
.ws79{word-spacing:9.866667pt;}
.ws8d{word-spacing:10.293333pt;}
.ws4e{word-spacing:10.613333pt;}
.ws59{word-spacing:10.666667pt;}
.ws4c{word-spacing:11.736266pt;}
.ws66{word-spacing:11.789613pt;}
.ws64{word-spacing:11.837625pt;}
.ws6d{word-spacing:11.842960pt;}
.ws45{word-spacing:12.853333pt;}
.ws98{word-spacing:13.600000pt;}
.ws65{word-spacing:14.883719pt;}
.ws4d{word-spacing:14.937066pt;}
.ws13{word-spacing:17.482667pt;}
.ws18{word-spacing:64.938667pt;}
._15{margin-left:-23.946667pt;}
._1c{margin-left:-21.712092pt;}
._17{margin-left:-20.165039pt;}
._14{margin-left:-17.760000pt;}
._13{margin-left:-14.830373pt;}
._5{margin-left:-13.866667pt;}
._e{margin-left:-11.850667pt;}
._10{margin-left:-10.080000pt;}
._19{margin-left:-9.173333pt;}
._a{margin-left:-4.350933pt;}
._1{margin-left:-3.460267pt;}
._4{margin-left:-2.401067pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.440000pt;}
._9{width:2.358400pt;}
._1a{width:3.254390pt;}
._12{width:4.976000pt;}
._1b{width:6.080000pt;}
._11{width:7.781333pt;}
._b{width:10.111992pt;}
._18{width:13.141333pt;}
._16{width:15.530667pt;}
._f{width:16.586667pt;}
._d{width:17.482667pt;}
._6{width:19.840000pt;}
._1d{width:29.333333pt;}
._3{width:34.987721pt;}
._7{width:50.005325pt;}
._1e{width:540.008448pt;}
._c{width:560.274724pt;}
._8{width:1434.197392pt;}
.fs8{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:37.342400pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:53.346664pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.y11a{bottom:-0.013590pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:0.082265pt;}
.yea{bottom:0.096185pt;}
.y128{bottom:0.096206pt;}
.y121{bottom:0.096308pt;}
.yc9{bottom:0.097508pt;}
.yc4{bottom:0.159587pt;}
.y80{bottom:0.173075pt;}
.y8a{bottom:0.173096pt;}
.y13d{bottom:0.174398pt;}
.y74{bottom:2.039469pt;}
.yf9{bottom:2.706136pt;}
.y102{bottom:2.706258pt;}
.yce{bottom:2.706533pt;}
.y14c{bottom:2.707438pt;}
.y8f{bottom:2.974284pt;}
.y79{bottom:3.372782pt;}
.y86{bottom:3.372803pt;}
.yb6{bottom:3.372925pt;}
.y92{bottom:3.372965pt;}
.y7d{bottom:3.374125pt;}
.y8d{bottom:3.374186pt;}
.yad{bottom:3.374268pt;}
.yd8{bottom:3.506266pt;}
.ybb{bottom:3.506388pt;}
.ya4{bottom:3.506429pt;}
.ya7{bottom:3.507731pt;}
.ye9{bottom:4.186239pt;}
.y127{bottom:4.186401pt;}
.y120{bottom:4.186402pt;}
.yc8{bottom:4.187602pt;}
.y11d{bottom:9.322428pt;}
.yc0{bottom:9.492920pt;}
.yc5{bottom:9.495253pt;}
.y129{bottom:12.370809pt;}
.ycb{bottom:12.371989pt;}
.yed{bottom:12.375570pt;}
.y12d{bottom:12.375610pt;}
.y124{bottom:12.375733pt;}
.yf0{bottom:14.746124pt;}
.y119{bottom:18.128011pt;}
.y11c{bottom:18.130697pt;}
.yc2{bottom:19.237386pt;}
.yf3{bottom:26.913991pt;}
.yf2{bottom:31.797729pt;}
.y22{bottom:45.118398pt;}
.y5{bottom:59.133337pt;}
.yd5{bottom:80.005333pt;}
.y44{bottom:80.010667pt;}
.y14a{bottom:80.021333pt;}
.y160{bottom:80.053333pt;}
.y1e1{bottom:81.012903pt;}
.y115{bottom:81.066671pt;}
.ye6{bottom:81.232943pt;}
.y4{bottom:86.333337pt;}
.yd2{bottom:89.954671pt;}
.yd3{bottom:92.661204pt;}
.yd4{bottom:92.666667pt;}
.y43{bottom:92.672000pt;}
.y149{bottom:92.682667pt;}
.y1e0{bottom:93.674236pt;}
.y1a7{bottom:96.215605pt;}
.y114{bottom:97.066671pt;}
.ye5{bottom:97.232943pt;}
.yd0{bottom:102.621338pt;}
.yd1{bottom:105.333333pt;}
.y148{bottom:105.344000pt;}
.y1df{bottom:106.335570pt;}
.y1a6{bottom:108.876939pt;}
.y42{bottom:109.599996pt;}
.y113{bottom:113.066671pt;}
.ye4{bottom:113.232943pt;}
.ycd{bottom:115.288005pt;}
.ycf{bottom:118.000000pt;}
.y147{bottom:118.005333pt;}
.y1de{bottom:118.996903pt;}
.y1a5{bottom:121.538272pt;}
.ycc{bottom:122.266663pt;}
.y21{bottom:123.790666pt;}
.y41{bottom:124.714002pt;}
.y112{bottom:129.066671pt;}
.y1dd{bottom:131.658236pt;}
.y1a4{bottom:134.199605pt;}
.y146{bottom:134.933329pt;}
.yef{bottom:137.233337pt;}
.y40{bottom:141.641998pt;}
.yf6{bottom:142.659465pt;}
.y1dc{bottom:144.319570pt;}
.y145{bottom:144.485328pt;}
.y111{bottom:145.066671pt;}
.y1a3{bottom:146.860939pt;}
.yee{bottom:150.166270pt;}
.yf1{bottom:151.979462pt;}
.y1db{bottom:156.980903pt;}
.y144{bottom:157.146662pt;}
.y1a2{bottom:159.522272pt;}
.yf5{bottom:160.787465pt;}
.y110{bottom:161.066671pt;}
.y3f{bottom:162.847333pt;}
.y1da{bottom:169.642236pt;}
.y143{bottom:169.807995pt;}
.y1a1{bottom:172.183605pt;}
.y18{bottom:175.052000pt;}
.y3e{bottom:175.508667pt;}
.y189{bottom:175.708944pt;}
.y81{bottom:178.499593pt;}
.y1d9{bottom:182.303570pt;}
.y142{bottom:182.469328pt;}
.y1a0{bottom:184.844939pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.ye3{bottom:189.099609pt;}
.y188{bottom:191.708944pt;}
.y10f{bottom:193.066671pt;}
.y7f{bottom:194.331991pt;}
.y7e{bottom:194.499593pt;}
.y1d8{bottom:194.964903pt;}
.y141{bottom:195.130662pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y19f{bottom:197.506272pt;}
.ybd{bottom:202.975590pt;}
.ye2{bottom:205.099609pt;}
.y7c{bottom:207.114665pt;}
.y1d7{bottom:207.626236pt;}
.y187{bottom:207.708944pt;}
.y140{bottom:207.791995pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y19e{bottom:210.167605pt;}
.y7b{bottom:210.499593pt;}
.y1d6{bottom:220.287570pt;}
.ye1{bottom:221.099609pt;}
.y19d{bottom:222.828939pt;}
.y78{bottom:223.116007pt;}
.y186{bottom:223.708944pt;}
.y13f{bottom:224.719991pt;}
.y7a{bottom:226.499593pt;}
.yc7{bottom:226.974670pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1d5{bottom:232.948903pt;}
.y3d{bottom:235.615194pt;}
.ye0{bottom:237.099609pt;}
.yc6{bottom:238.842265pt;}
.yca{bottom:239.346659pt;}
.y185{bottom:239.708944pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y77{bottom:242.499593pt;}
.y1d4{bottom:245.610236pt;}
.y10e{bottom:250.042383pt;}
.y3c{bottom:251.615194pt;}
.y19c{bottom:251.762268pt;}
.ydf{bottom:253.099609pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y184{bottom:255.708944pt;}
.y68{bottom:256.708903pt;}
.y1d3{bottom:258.271570pt;}
.y76{bottom:258.499593pt;}
.y10d{bottom:266.042383pt;}
.y3b{bottom:267.615194pt;}
.yde{bottom:269.099609pt;}
.y1d2{bottom:270.932903pt;}
.y183{bottom:271.708944pt;}
.y67{bottom:272.708903pt;}
.y75{bottom:274.499593pt;}
.y13c{bottom:274.664001pt;}
.y13b{bottom:274.832926pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.ybc{bottom:276.708923pt;}
.y10c{bottom:282.042383pt;}
.y1d1{bottom:283.594236pt;}
.y3a{bottom:283.615194pt;}
.y19b{bottom:284.471581pt;}
.ydd{bottom:285.099609pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y182{bottom:287.708944pt;}
.y73{bottom:288.460002pt;}
.y66{bottom:288.708903pt;}
.y139{bottom:288.793335pt;}
.yba{bottom:289.205343pt;}
.y72{bottom:290.499593pt;}
.y13a{bottom:290.832804pt;}
.y138{bottom:290.832926pt;}
.yb9{bottom:292.708923pt;}
.y1d0{bottom:296.255570pt;}
.y19a{bottom:297.132914pt;}
.y10b{bottom:298.042383pt;}
.ydc{bottom:301.099609pt;}
.y181{bottom:303.708944pt;}
.y65{bottom:304.708903pt;}
.y71{bottom:306.499593pt;}
.y137{bottom:306.832926pt;}
.yb8{bottom:308.708923pt;}
.y1cf{bottom:308.916903pt;}
.yf{bottom:309.452000pt;}
.y199{bottom:309.794248pt;}
.y39{bottom:315.615194pt;}
.ydb{bottom:317.099609pt;}
.y180{bottom:319.708944pt;}
.y64{bottom:320.708903pt;}
.yb5{bottom:321.325338pt;}
.y1ce{bottom:321.578236pt;}
.y126{bottom:322.042664pt;}
.y198{bottom:322.455581pt;}
.y70{bottom:322.499593pt;}
.y136{bottom:322.832926pt;}
.yb7{bottom:324.708923pt;}
.yb4{bottom:324.708944pt;}
.y12c{bottom:325.082397pt;}
.yda{bottom:333.099609pt;}
.y125{bottom:333.909058pt;}
.y1cd{bottom:334.239570pt;}
.y12a{bottom:334.413472pt;}
.y197{bottom:335.116914pt;}
.y17f{bottom:335.708944pt;}
.y63{bottom:336.708903pt;}
.y6f{bottom:338.499593pt;}
.y135{bottom:338.832926pt;}
.yb3{bottom:340.708944pt;}
.y12b{bottom:342.148739pt;}
.ye{bottom:343.809333pt;}
.y1cc{bottom:346.900903pt;}
.y196{bottom:347.778248pt;}
.y17e{bottom:351.708944pt;}
.y62{bottom:352.708903pt;}
.y6e{bottom:354.499593pt;}
.y134{bottom:354.832926pt;}
.yb2{bottom:356.708944pt;}
.y1cb{bottom:359.562236pt;}
.y195{bottom:360.439581pt;}
.yd{bottom:362.706666pt;}
.y38{bottom:363.615194pt;}
.yd9{bottom:365.099609pt;}
.y17d{bottom:367.708944pt;}
.y109{bottom:368.392008pt;}
.y61{bottom:368.708903pt;}
.y6d{bottom:370.499593pt;}
.y133{bottom:370.832926pt;}
.y10a{bottom:371.775716pt;}
.y108{bottom:371.775741pt;}
.y1ca{bottom:372.223570pt;}
.yb1{bottom:372.708944pt;}
.y194{bottom:373.100914pt;}
.y17c{bottom:383.708944pt;}
.y60{bottom:384.708903pt;}
.y1c9{bottom:384.884903pt;}
.yaf{bottom:385.205322pt;}
.y193{bottom:385.762248pt;}
.y6c{bottom:386.499593pt;}
.y132{bottom:386.832926pt;}
.yb0{bottom:388.708944pt;}
.y11f{bottom:395.776000pt;}
.y37{bottom:396.281860pt;}
.y1c8{bottom:397.546236pt;}
.yd7{bottom:397.595988pt;}
.y123{bottom:398.815715pt;}
.y17b{bottom:399.708944pt;}
.y5f{bottom:400.708903pt;}
.yd6{bottom:401.099609pt;}
.yac{bottom:401.324015pt;}
.y6b{bottom:402.499593pt;}
.y131{bottom:402.832926pt;}
.yae{bottom:404.708944pt;}
.y11e{bottom:407.642415pt;}
.y122{bottom:408.146810pt;}
.y1c7{bottom:410.207570pt;}
.y192{bottom:411.095581pt;}
.y36{bottom:412.281860pt;}
.y17a{bottom:415.708944pt;}
.y5e{bottom:416.708903pt;}
.yaa{bottom:417.325317pt;}
.y130{bottom:418.832926pt;}
.yab{bottom:420.708944pt;}
.y1c6{bottom:422.868903pt;}
.ye8{bottom:425.100016pt;}
.yec{bottom:428.139608pt;}
.y179{bottom:431.708944pt;}
.y5d{bottom:432.708903pt;}
.ya9{bottom:433.325317pt;}
.y6a{bottom:434.499593pt;}
.y12f{bottom:434.832926pt;}
.y1c5{bottom:435.530236pt;}
.y191{bottom:436.428914pt;}
.ya8{bottom:436.708944pt;}
.ye7{bottom:436.966276pt;}
.yeb{bottom:437.470662pt;}
.y35{bottom:444.948527pt;}
.y107{bottom:445.509074pt;}
.yc{bottom:446.990669pt;}
.y178{bottom:447.708944pt;}
.y1c4{bottom:448.191570pt;}
.y5c{bottom:448.708903pt;}
.ya6{bottom:449.204020pt;}
.y12e{bottom:450.832926pt;}
.ya5{bottom:452.708944pt;}
.y1c3{bottom:460.852903pt;}
.y34{bottom:460.948527pt;}
.y106{bottom:461.509074pt;}
.yb{bottom:462.990669pt;}
.y177{bottom:463.708944pt;}
.y5b{bottom:464.708903pt;}
.y190{bottom:465.106277pt;}
.ya3{bottom:465.205322pt;}
.ya2{bottom:465.325317pt;}
.y69{bottom:466.499593pt;}
.ya1{bottom:468.708944pt;}
.y1c2{bottom:473.514236pt;}
.y33{bottom:476.948527pt;}
.y105{bottom:477.509074pt;}
.ya{bottom:478.990666pt;}
.y176{bottom:479.708944pt;}
.y5a{bottom:480.708903pt;}
.ya0{bottom:484.708944pt;}
.y13e{bottom:484.870280pt;}
.y1c1{bottom:486.175570pt;}
.y18f{bottom:490.418277pt;}
.y15f{bottom:492.658651pt;}
.y32{bottom:492.948527pt;}
.y174{bottom:492.997314pt;}
.y104{bottom:493.509074pt;}
.y9{bottom:494.990666pt;}
.y173{bottom:495.708903pt;}
.y175{bottom:495.708944pt;}
.y15e{bottom:496.042277pt;}
.yf7{bottom:496.230265pt;}
.y59{bottom:496.708903pt;}
.y1c0{bottom:498.836903pt;}
.y9f{bottom:500.708944pt;}
.y82{bottom:501.990275pt;}
.y18e{bottom:503.079610pt;}
.y101{bottom:506.797323pt;}
.y31{bottom:508.948527pt;}
.y100{bottom:509.508944pt;}
.y103{bottom:509.509074pt;}
.y1bf{bottom:511.498236pt;}
.y172{bottom:511.708903pt;}
.y15d{bottom:512.042277pt;}
.y58{bottom:512.708903pt;}
.y18d{bottom:515.740944pt;}
.y9e{bottom:516.708944pt;}
.y1be{bottom:524.159570pt;}
.y15c{bottom:524.657349pt;}
.y30{bottom:524.948527pt;}
.y171{bottom:527.708903pt;}
.y15b{bottom:528.042277pt;}
.y57{bottom:528.708903pt;}
.y9d{bottom:532.708944pt;}
.y118{bottom:533.509318pt;}
.y1bd{bottom:536.820903pt;}
.y15a{bottom:540.658651pt;}
.y2f{bottom:540.948527pt;}
.y18c{bottom:541.052944pt;}
.y116{bottom:542.106659pt;}
.y117{bottom:542.829061pt;}
.y11b{bottom:542.831746pt;}
.y170{bottom:543.708903pt;}
.y159{bottom:544.042277pt;}
.y56{bottom:544.708903pt;}
.y9c{bottom:548.708944pt;}
.y1bc{bottom:549.482236pt;}
.y18b{bottom:553.714277pt;}
.y2e{bottom:556.948527pt;}
.y16f{bottom:559.708903pt;}
.y158{bottom:560.042277pt;}
.y55{bottom:560.708903pt;}
.y1bb{bottom:562.143570pt;}
.y9b{bottom:564.708944pt;}
.y18a{bottom:566.375610pt;}
.y2d{bottom:572.948527pt;}
.y8{bottom:573.786667pt;}
.yfe{bottom:573.997314pt;}
.y1ba{bottom:574.804903pt;}
.y16e{bottom:575.708903pt;}
.y157{bottom:576.042277pt;}
.y54{bottom:576.708903pt;}
.yff{bottom:576.708944pt;}
.y9a{bottom:580.708944pt;}
.y1b9{bottom:587.466236pt;}
.y2c{bottom:588.948527pt;}
.y16d{bottom:591.708903pt;}
.y156{bottom:592.042277pt;}
.y7{bottom:592.685334pt;}
.y53{bottom:592.708903pt;}
.y99{bottom:596.708944pt;}
.y1b8{bottom:600.127570pt;}
.y155{bottom:604.658651pt;}
.y2b{bottom:604.948527pt;}
.y16c{bottom:607.708903pt;}
.y154{bottom:608.042277pt;}
.y52{bottom:608.708903pt;}
.y98{bottom:612.708944pt;}
.y1b7{bottom:612.788903pt;}
.y16b{bottom:623.708903pt;}
.y153{bottom:624.042277pt;}
.y51{bottom:624.708903pt;}
.y1b6{bottom:625.450236pt;}
.y97{bottom:628.708944pt;}
.y1b5{bottom:638.111570pt;}
.y16a{bottom:639.708903pt;}
.y152{bottom:640.042277pt;}
.y50{bottom:640.708903pt;}
.y96{bottom:644.708944pt;}
.y6{bottom:645.598667pt;}
.y2a{bottom:648.053063pt;}
.y1b4{bottom:650.772903pt;}
.y169{bottom:655.708903pt;}
.y151{bottom:656.042277pt;}
.y4f{bottom:656.708903pt;}
.y95{bottom:657.325317pt;}
.y94{bottom:660.708944pt;}
.y29{bottom:660.714396pt;}
.y1b3{bottom:663.434236pt;}
.y3{bottom:668.977329pt;}
.y168{bottom:671.708903pt;}
.y150{bottom:672.042277pt;}
.y4e{bottom:672.708903pt;}
.y91{bottom:673.325317pt;}
.y1b2{bottom:676.095570pt;}
.y90{bottom:676.708903pt;}
.y93{bottom:676.708944pt;}
.yfd{bottom:685.325358pt;}
.y167{bottom:687.708903pt;}
.y4d{bottom:688.708903pt;}
.y1b1{bottom:688.756903pt;}
.y8c{bottom:689.323975pt;}
.y8e{bottom:689.732015pt;}
.y8b{bottom:692.708903pt;}
.y28{bottom:694.357503pt;}
.yfc{bottom:701.323975pt;}
.y1b0{bottom:701.418236pt;}
.y166{bottom:703.708903pt;}
.y14f{bottom:704.042236pt;}
.y4c{bottom:704.708903pt;}
.y89{bottom:708.541341pt;}
.y88{bottom:708.708903pt;}
.y1af{bottom:714.079570pt;}
.yfb{bottom:717.325358pt;}
.y165{bottom:719.708903pt;}
.yfa{bottom:720.541341pt;}
.y4b{bottom:720.708903pt;}
.y85{bottom:721.325358pt;}
.y87{bottom:724.708903pt;}
.y1ae{bottom:726.740903pt;}
.y27{bottom:732.351581pt;}
.y164{bottom:735.708903pt;}
.y4a{bottom:736.708903pt;}
.y1ad{bottom:739.402236pt;}
.y84{bottom:740.708903pt;}
.y163{bottom:751.708903pt;}
.y1ac{bottom:752.063570pt;}
.y26{bottom:752.354248pt;}
.y49{bottom:752.708903pt;}
.y83{bottom:756.708903pt;}
.y1ab{bottom:764.724903pt;}
.yf8{bottom:765.997314pt;}
.y162{bottom:767.708903pt;}
.y14e{bottom:768.541341pt;}
.y48{bottom:768.708903pt;}
.y1aa{bottom:777.386236pt;}
.ybf{bottom:780.709310pt;}
.y2{bottom:781.661334pt;}
.y14d{bottom:781.997314pt;}
.y47{bottom:784.708903pt;}
.ybe{bottom:789.708938pt;}
.y1a9{bottom:790.047570pt;}
.yc1{bottom:790.202230pt;}
.yc3{bottom:796.610677pt;}
.y14b{bottom:797.996012pt;}
.y161{bottom:799.708903pt;}
.y25{bottom:799.809082pt;}
.y46{bottom:800.708903pt;}
.y1a8{bottom:802.708903pt;}
.y24{bottom:822.992964pt;}
.y23{bottom:835.654297pt;}
.y45{bottom:836.018392pt;}
.y1{bottom:859.312000pt;}
.h3d{height:3.520880pt;}
.h4d{height:5.441360pt;}
.h36{height:7.466667pt;}
.h33{height:7.468000pt;}
.h1f{height:9.200000pt;}
.h55{height:9.332000pt;}
.h28{height:9.333333pt;}
.h2a{height:9.466667pt;}
.h52{height:10.133333pt;}
.h4e{height:10.134666pt;}
.h43{height:10.800000pt;}
.h1a{height:11.066667pt;}
.h40{height:11.733333pt;}
.h4a{height:12.000000pt;}
.h2b{height:12.133333pt;}
.h24{height:12.134666pt;}
.h54{height:12.266666pt;}
.h1d{height:12.268000pt;}
.h1c{height:12.400000pt;}
.h27{height:12.401333pt;}
.h22{height:12.533333pt;}
.h25{height:12.534667pt;}
.h50{height:12.666667pt;}
.h38{height:16.469333pt;}
.h35{height:18.816000pt;}
.h15{height:20.548267pt;}
.h29{height:23.525879pt;}
.h2f{height:24.944723pt;}
.h32{height:25.243462pt;}
.h3e{height:25.504859pt;}
.h45{height:27.198667pt;}
.h37{height:27.861333pt;}
.h2d{height:28.000000pt;}
.h34{height:28.501333pt;}
.h7{height:28.560000pt;}
.h2e{height:29.180625pt;}
.h14{height:29.354667pt;}
.ha{height:30.080000pt;}
.h13{height:30.833333pt;}
.h44{height:32.061345pt;}
.h30{height:33.733332pt;}
.h2c{height:34.835372pt;}
.h4b{height:35.315492pt;}
.h1e{height:35.635572pt;}
.h3c{height:35.866666pt;}
.h20{height:35.955652pt;}
.h1b{height:36.062345pt;}
.h23{height:36.435772pt;}
.h10{height:36.693333pt;}
.h49{height:36.809198pt;}
.hb{height:37.376000pt;}
.h21{height:37.802667pt;}
.h26{height:37.876132pt;}
.h53{height:39.771308pt;}
.h4f{height:39.771552pt;}
.h51{height:39.771959pt;}
.h3f{height:40.144345pt;}
.h18{height:40.630276pt;}
.h6{height:40.800000pt;}
.hc{height:41.514667pt;}
.h16{height:42.197333pt;}
.h3{height:42.840000pt;}
.h4c{height:43.394251pt;}
.h42{height:43.916314pt;}
.h41{height:43.916965pt;}
.h17{height:47.018667pt;}
.h11{height:47.253333pt;}
.h19{height:47.680000pt;}
.h2{height:48.960000pt;}
.hf{height:52.746667pt;}
.he{height:57.658667pt;}
.h12{height:58.021333pt;}
.hd{height:61.429333pt;}
.h46{height:67.003411pt;}
.h3a{height:67.376837pt;}
.h5{height:69.360000pt;}
.h3b{height:73.405010pt;}
.h47{height:73.778437pt;}
.h4{height:105.826671pt;}
.h48{height:117.885145pt;}
.h31{height:117.885552pt;}
.h39{height:117.885715pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:6.318666pt;}
.wb{width:6.320000pt;}
.w21{width:7.292000pt;}
.w22{width:7.293333pt;}
.w17{width:7.880000pt;}
.w18{width:7.973333pt;}
.w19{width:8.053333pt;}
.w14{width:9.013333pt;}
.w2b{width:9.066667pt;}
.wf{width:9.946667pt;}
.w29{width:10.466667pt;}
.w2e{width:11.133333pt;}
.w2d{width:11.760000pt;}
.w1a{width:26.666667pt;}
.w1e{width:27.453333pt;}
.w28{width:28.946665pt;}
.w11{width:32.132000pt;}
.w10{width:32.133333pt;}
.w2f{width:32.760000pt;}
.wd{width:42.826665pt;}
.w5{width:49.466665pt;}
.w27{width:51.893331pt;}
.we{width:51.960002pt;}
.w1b{width:52.679998pt;}
.w20{width:54.133331pt;}
.w2a{width:54.773336pt;}
.w2c{width:64.960002pt;}
.w8{width:67.159999pt;}
.w12{width:70.266667pt;}
.w13{width:89.266663pt;}
.w16{width:95.640004pt;}
.w1f{width:99.426666pt;}
.w1d{width:103.133331pt;}
.wc{width:103.533335pt;}
.w15{width:113.788005pt;}
.w6{width:114.213338pt;}
.wa{width:126.480000pt;}
.w7{width:129.573333pt;}
.w26{width:154.013336pt;}
.w23{width:173.373332pt;}
.w25{width:224.146667pt;}
.w1c{width:277.625326pt;}
.w24{width:323.280009pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.xc{left:-0.952398pt;}
.x0{left:0.000000pt;}
.x13{left:1.253733pt;}
.x5c{left:2.277863pt;}
.x3b{left:7.062484pt;}
.x25{left:13.614543pt;}
.x7e{left:14.979735pt;}
.x45{left:22.123067pt;}
.x34{left:24.455994pt;}
.x62{left:25.866933pt;}
.x70{left:27.295756pt;}
.x71{left:37.099345pt;}
.x4f{left:39.108012pt;}
.x4e{left:43.391866pt;}
.x36{left:53.052266pt;}
.x38{left:61.811991pt;}
.x63{left:64.518798pt;}
.x6{left:68.031469pt;}
.x7{left:71.917603pt;}
.x40{left:76.004801pt;}
.x2c{left:77.044800pt;}
.x2b{left:77.978133pt;}
.x18{left:79.349335pt;}
.x9{left:83.149602pt;}
.x8{left:86.932800pt;}
.x3c{left:89.282532pt;}
.x1{left:90.706667pt;}
.x1d{left:92.605337pt;}
.x2{left:94.486667pt;}
.x41{left:97.411062pt;}
.x1e{left:102.551870pt;}
.x5f{left:103.910665pt;}
.x6a{left:108.110676pt;}
.x39{left:111.371043pt;}
.x61{left:131.273336pt;}
.x60{left:133.559998pt;}
.x47{left:147.857869pt;}
.x5b{left:149.164001pt;}
.x6d{left:151.406942pt;}
.x48{left:154.099996pt;}
.x2a{left:157.298136pt;}
.x12{left:160.505330pt;}
.x7d{left:161.910665pt;}
.x5d{left:163.456004pt;}
.x14{left:166.824402pt;}
.x5e{left:170.749064pt;}
.x65{left:172.698669pt;}
.x49{left:173.830526pt;}
.xa{left:178.481323pt;}
.x4{left:180.874667pt;}
.xd{left:182.244933pt;}
.x19{left:189.941325pt;}
.x23{left:191.958130pt;}
.x15{left:194.511475pt;}
.x59{left:197.012004pt;}
.x21{left:200.415995pt;}
.x22{left:210.362793pt;}
.xe{left:214.589335pt;}
.x69{left:215.906657pt;}
.x3d{left:220.037333pt;}
.xb{left:227.948792pt;}
.x1a{left:232.768677pt;}
.x32{left:236.019999pt;}
.x75{left:238.248006pt;}
.x4c{left:241.346659pt;}
.x64{left:243.611857pt;}
.x3a{left:245.093343pt;}
.x33{left:246.039998pt;}
.x4d{left:249.062541pt;}
.x76{left:249.974670pt;}
.x5a{left:251.145467pt;}
.x2d{left:257.777323pt;}
.x79{left:258.685343pt;}
.x7b{left:261.922668pt;}
.x43{left:263.599996pt;}
.x29{left:265.594666pt;}
.x2e{left:267.723206pt;}
.x7a{left:270.631999pt;}
.x4b{left:271.934794pt;}
.x44{left:275.451192pt;}
.x2f{left:277.420003pt;}
.x35{left:279.736410pt;}
.x68{left:282.760010pt;}
.x42{left:286.880798pt;}
.x46{left:290.267333pt;}
.x7c{left:291.816264pt;}
.x57{left:299.046672pt;}
.x51{left:301.490662pt;}
.x27{left:303.679993pt;}
.x77{left:304.934672pt;}
.x1f{left:307.501343pt;}
.x66{left:308.658671pt;}
.x30{left:309.553202pt;}
.x50{left:312.818665pt;}
.x37{left:320.427999pt;}
.x7f{left:322.415995pt;}
.x6b{left:328.289205pt;}
.x6e{left:334.903992pt;}
.x28{left:335.813192pt;}
.xf{left:344.163737pt;}
.x58{left:351.006144pt;}
.x20{left:359.461589pt;}
.x6c{left:360.417234pt;}
.x6f{left:363.111613pt;}
.x80{left:365.970418pt;}
.x52{left:372.709351pt;}
.x73{left:376.730672pt;}
.x72{left:378.459595pt;}
.x3e{left:382.437337pt;}
.x54{left:383.986654pt;}
.x16{left:386.569336pt;}
.x3f{left:390.411051pt;}
.x17{left:392.889323pt;}
.x24{left:396.405314pt;}
.x53{left:400.162516pt;}
.x4a{left:402.706665pt;}
.x3{left:404.408000pt;}
.x74{left:405.863729pt;}
.x78{left:412.295085pt;}
.x1b{left:423.213338pt;}
.x10{left:424.595988pt;}
.x26{left:428.538818pt;}
.x5{left:431.874146pt;}
.x67{left:448.188273pt;}
.x55{left:462.786662pt;}
.x56{left:472.734253pt;}
.x1c{left:475.174154pt;}
.x11{left:491.756388pt;}
.x31{left:502.246582pt;}
}




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