
    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_4df12c884ecfb365fbde8a1c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_72814d5fa66f2b77f2859869.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;font-style:normal;font-weight: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_389a8af29bc6c0cee67f7896.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;font-style:normal;font-weight: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_d3bd639770b24adafc42ca46.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.703000;font-style:normal;font-weight: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_b8bac8d4555c84194b48e0d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.887000;font-style:normal;font-weight: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_3c2b20dd49fe2493a1da1db8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3ecb66277ac71bf84ea04836.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_24ee6b841253a02d7424173b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.049000;font-style:normal;font-weight: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_5808e541bd5bf9e658cfb26f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.714000;font-style:normal;font-weight: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_fbd863b247a0a5363cc1c932.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_630c80d0b78814cdbf278118.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ab84ea6b1f0ae48a9f700189.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.890000;font-style:normal;font-weight: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_45dae8f014b3387251899560.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.399000;font-style:normal;font-weight: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_bf15573640c6b89015d0e5b9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c5f8ba71d8cd959ef01d0a60.woff2')format("woff");}.fff{font-family:fff;line-height:0.699000;font-style:normal;font-weight: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_cf884fec1233532cc5507dd2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.696000;font-style:normal;font-weight: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_d54b396532da63d9f5b5587e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.635000;font-style:normal;font-weight: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_05aded45a6295d4b95aa391e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f7964dd171fce8eb102cf25d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.046000;font-style:normal;font-weight: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_374d994fd794a7a4913ee4e7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.697000;font-style:normal;font-weight: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_d947fa34e2d8ac39a40fb9ec.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_918851cd5244e5150f544a7e.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d719a9fdd2447e739a31396c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.863000;font-style:normal;font-weight: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_4f0cea2c2acdff35f707a2ae.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.714000;font-style:normal;font-weight: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_81695d7c2b08632a0679f626.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.863000;font-style:normal;font-weight: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_7e541a0d373ec263b44d65ea.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.049000;font-style:normal;font-weight: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_a0430677cdeb5bb394e8b0ed.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.699000;font-style:normal;font-weight: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_579d1a4c550a11c715483552.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.696000;font-style:normal;font-weight: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_d54b396532da63d9f5b5587e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.635000;font-style:normal;font-weight: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_05aded45a6295d4b95aa391e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_f7964dd171fce8eb102cf25d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.046000;font-style:normal;font-weight: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_374d994fd794a7a4913ee4e7.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.697000;font-style:normal;font-weight: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_0eb801c155445e9e5e26374f.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_4a419ade5fff703cc716ab1f.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.714000;font-style:normal;font-weight: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_5c9c15036ef054a8f2bdff44.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_81695d7c2b08632a0679f626.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.863000;font-style:normal;font-weight: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_7e541a0d373ec263b44d65ea.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.049000;font-style:normal;font-weight: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_ca796a53c0ef5a19d5456604.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.699000;font-style:normal;font-weight: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_acdd3f96d1cd446538e3552b.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_a4e19e5a1b0614316eac7756.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.696000;font-style:normal;font-weight: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_f7964dd171fce8eb102cf25d.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.046000;font-style:normal;font-weight: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_374d994fd794a7a4913ee4e7.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.697000;font-style:normal;font-weight: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_2012271a19b4a53b1f2255f8.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.635000;font-style:normal;font-weight: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_2eb9d27ce8c320eb9a0f2f2b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_5c9c15036ef054a8f2bdff44.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_81695d7c2b08632a0679f626.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.863000;font-style:normal;font-weight: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_7e541a0d373ec263b44d65ea.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.049000;font-style:normal;font-weight: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_4a419ade5fff703cc716ab1f.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.714000;font-style:normal;font-weight: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_a6b9b37d7a4b7c84ba145e23.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.699000;font-style:normal;font-weight: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_05aded45a6295d4b95aa391e.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_ac24d2faff76a1a21537c0dc.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.696000;font-style:normal;font-weight: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_f7964dd171fce8eb102cf25d.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.046000;font-style:normal;font-weight: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_374d994fd794a7a4913ee4e7.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.697000;font-style:normal;font-weight: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_d947fa34e2d8ac39a40fb9ec.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_918851cd5244e5150f544a7e.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_d719a9fdd2447e739a31396c.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.863000;font-style:normal;font-weight: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_4f0cea2c2acdff35f707a2ae.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.714000;font-style:normal;font-weight: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_81695d7c2b08632a0679f626.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.863000;font-style:normal;font-weight: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_7e541a0d373ec263b44d65ea.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.049000;font-style:normal;font-weight: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_fe592d9a5e4de83a62732fd8.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.699000;font-style:normal;font-weight: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_05aded45a6295d4b95aa391e.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_ac24d2faff76a1a21537c0dc.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.696000;font-style:normal;font-weight: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_f7964dd171fce8eb102cf25d.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.046000;font-style:normal;font-weight: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_374d994fd794a7a4913ee4e7.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.697000;font-style:normal;font-weight: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_0eb801c155445e9e5e26374f.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_4a419ade5fff703cc716ab1f.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.714000;font-style:normal;font-weight: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_5c9c15036ef054a8f2bdff44.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_81695d7c2b08632a0679f626.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.863000;font-style:normal;font-weight: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_7e541a0d373ec263b44d65ea.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.049000;font-style:normal;font-weight: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_62e8cdc49dbc9da25ddeb70c.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.699000;font-style:normal;font-weight: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_acdd3f96d1cd446538e3552b.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_cf884fec1233532cc5507dd2.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.696000;font-style:normal;font-weight: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_87a6559e794b921ab3d1c770.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.635000;font-style:normal;font-weight: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_f7964dd171fce8eb102cf25d.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.046000;font-style:normal;font-weight: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_374d994fd794a7a4913ee4e7.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.697000;font-style:normal;font-weight: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_2eb9d27ce8c320eb9a0f2f2b.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_5c9c15036ef054a8f2bdff44.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_81695d7c2b08632a0679f626.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.863000;font-style:normal;font-weight: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_7e541a0d373ec263b44d65ea.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.049000;font-style:normal;font-weight: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_4a419ade5fff703cc716ab1f.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.714000;font-style:normal;font-weight: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_19775ee58fce803d8b6a9757.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.725000;font-style:normal;font-weight: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_d5830faed717262609df1d8d.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.441000;font-style:normal;font-weight: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_70fe8917b91261e66d0f5aa8.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.714355;font-style:normal;font-weight: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_edb07a9372dd1aa872e5f25e.woff2')format("woff");}.ff54{font-family:ff54;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v13{vertical-align:-60.438000px;}
.v12{vertical-align:-54.462000px;}
.v16{vertical-align:-40.938000px;}
.v2{vertical-align:-22.854000px;}
.v8{vertical-align:-18.774000px;}
.vb{vertical-align:-13.458000px;}
.v3{vertical-align:-8.964000px;}
.vd{vertical-align:-5.182716px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:5.814000px;}
.ve{vertical-align:12.543976px;}
.vc{vertical-align:15.052078px;}
.v10{vertical-align:20.565355px;}
.v4{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.v9{vertical-align:26.730000px;}
.v14{vertical-align:31.476000px;}
.vf{vertical-align:36.258197px;}
.v6{vertical-align:40.440000px;}
.v11{vertical-align:81.366000px;}
.v5{vertical-align:84.288000px;}
.va{vertical-align:122.364000px;}
.v7{vertical-align:125.292000px;}
.ls36{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000062px;}
.ls5f{letter-spacing:0.000316px;}
.ls52{letter-spacing:0.000320px;}
.ls4a{letter-spacing:0.000323px;}
.ls3e{letter-spacing:0.000326px;}
.ls14{letter-spacing:0.000538px;}
.ls19{letter-spacing:0.000564px;}
.ls61{letter-spacing:0.000613px;}
.ls58{letter-spacing:0.000624px;}
.ls4f{letter-spacing:0.000637px;}
.ls3b{letter-spacing:0.000648px;}
.ls59{letter-spacing:0.000826px;}
.ls60{letter-spacing:0.000960px;}
.ls15{letter-spacing:0.000993px;}
.ls67{letter-spacing:0.001120px;}
.ls53{letter-spacing:0.001263px;}
.ls40{letter-spacing:0.001285px;}
.ls5d{letter-spacing:0.001699px;}
.ls50{letter-spacing:0.001722px;}
.ls48{letter-spacing:0.001739px;}
.ls3c{letter-spacing:0.001752px;}
.ls37{letter-spacing:0.001767px;}
.ls54{letter-spacing:0.001858px;}
.ls41{letter-spacing:0.001890px;}
.ls31{letter-spacing:0.002222px;}
.ls57{letter-spacing:0.002559px;}
.ls44{letter-spacing:0.002604px;}
.ls4e{letter-spacing:0.002632px;}
.ls3a{letter-spacing:0.002678px;}
.ls29{letter-spacing:0.002725px;}
.ls72{letter-spacing:0.002800px;}
.ls34{letter-spacing:0.002847px;}
.ls32{letter-spacing:0.003031px;}
.ls13{letter-spacing:0.003269px;}
.lsd{letter-spacing:0.003723px;}
.ls6{letter-spacing:0.003880px;}
.ls7c{letter-spacing:0.004200px;}
.ls68{letter-spacing:0.004379px;}
.ls9{letter-spacing:0.004503px;}
.ls71{letter-spacing:0.004893px;}
.ls73{letter-spacing:1.661781px;}
.ls62{letter-spacing:1.713332px;}
.ls5c{letter-spacing:1.934192px;}
.ls47{letter-spacing:1.978726px;}
.ls63{letter-spacing:2.674328px;}
.ls3{letter-spacing:2.964877px;}
.ls1{letter-spacing:2.984400px;}
.ls2a{letter-spacing:2.984525px;}
.ls4{letter-spacing:2.986766px;}
.ls81{letter-spacing:2.987675px;}
.ls5{letter-spacing:2.988609px;}
.ls6e{letter-spacing:2.988780px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990400px;}
.lsa{letter-spacing:2.990525px;}
.ls1f{letter-spacing:6.516305px;}
.ls23{letter-spacing:7.179181px;}
.ls56{letter-spacing:7.359525px;}
.ls43{letter-spacing:7.487605px;}
.ls20{letter-spacing:8.297139px;}
.ls21{letter-spacing:8.304065px;}
.ls4c{letter-spacing:9.436176px;}
.ls38{letter-spacing:9.600397px;}
.ls70{letter-spacing:9.962338px;}
.ls5e{letter-spacing:11.167613px;}
.ls51{letter-spacing:11.318586px;}
.ls4d{letter-spacing:11.321466px;}
.ls55{letter-spacing:11.321995px;}
.ls49{letter-spacing:11.424745px;}
.ls3d{letter-spacing:11.515568px;}
.ls39{letter-spacing:11.518498px;}
.ls42{letter-spacing:11.519037px;}
.ls2e{letter-spacing:12.944525px;}
.ls8{letter-spacing:12.950525px;}
.ls66{letter-spacing:12.951193px;}
.ls5b{letter-spacing:13.122537px;}
.ls26{letter-spacing:13.278538px;}
.ls46{letter-spacing:13.424681px;}
.ls1c{letter-spacing:14.115880px;}
.ls1e{letter-spacing:14.336446px;}
.ls79{letter-spacing:16.136338px;}
.ls25{letter-spacing:16.268525px;}
.ls24{letter-spacing:16.602538px;}
.ls7e{letter-spacing:16.604400px;}
.ls80{letter-spacing:16.605031px;}
.ls64{letter-spacing:16.738478px;}
.lsb{letter-spacing:16.928407px;}
.lsf{letter-spacing:16.929880px;}
.ls10{letter-spacing:16.931607px;}
.ls65{letter-spacing:17.381602px;}
.ls7d{letter-spacing:17.512200px;}
.ls7f{letter-spacing:18.544200px;}
.ls1b{letter-spacing:18.606609px;}
.ls17{letter-spacing:18.852993px;}
.ls30{letter-spacing:19.490407px;}
.ls12{letter-spacing:19.635269px;}
.lsc{letter-spacing:19.922338px;}
.ls6b{letter-spacing:20.486100px;}
.ls1a{letter-spacing:20.672525px;}
.lse{letter-spacing:21.094200px;}
.ls7{letter-spacing:21.099269px;}
.ls2d{letter-spacing:21.632222px;}
.ls18{letter-spacing:21.840609px;}
.ls2f{letter-spacing:22.472525px;}
.ls5a{letter-spacing:22.559431px;}
.ls4b{letter-spacing:22.865074px;}
.ls45{letter-spacing:23.078857px;}
.ls3f{letter-spacing:23.265795px;}
.ls6a{letter-spacing:23.472609px;}
.ls6c{letter-spacing:23.475193px;}
.ls7b{letter-spacing:23.736538px;}
.ls22{letter-spacing:23.910609px;}
.ls7a{letter-spacing:24.776100px;}
.ls78{letter-spacing:25.397781px;}
.ls33{letter-spacing:25.439139px;}
.ls77{letter-spacing:26.184538px;}
.ls76{letter-spacing:28.324172px;}
.ls1d{letter-spacing:29.064609px;}
.ls2c{letter-spacing:29.219139px;}
.ls6d{letter-spacing:29.360525px;}
.ls6f{letter-spacing:30.183880px;}
.ls2b{letter-spacing:31.898387px;}
.ls28{letter-spacing:34.418525px;}
.ls75{letter-spacing:41.463031px;}
.ls74{letter-spacing:50.532305px;}
.ls27{letter-spacing:60.800338px;}
.ls35{letter-spacing:170.930338px;}
.ls69{letter-spacing:185.114338px;}
.ls16{letter-spacing:346.634338px;}
.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;}
}
.ws67{word-spacing:-59.775600px;}
.ws5b{word-spacing:-47.324343px;}
.wsd2{word-spacing:-43.157983px;}
.ws46{word-spacing:-42.859105px;}
.ws4f{word-spacing:-38.937826px;}
.ws5c{word-spacing:-31.633157px;}
.ws42{word-spacing:-28.955301px;}
.ws74{word-spacing:-22.512683px;}
.ws85{word-spacing:-22.127588px;}
.ws5d{word-spacing:-20.688504px;}
.ws2{word-spacing:-16.438350px;}
.ws12{word-spacing:-14.920027px;}
.ws3{word-spacing:-13.449600px;}
.wsfd{word-spacing:-13.003068px;}
.ws38{word-spacing:-11.955150px;}
.ws96{word-spacing:-1.016185px;}
.ws56{word-spacing:-0.836858px;}
.ws3a{word-spacing:-0.597756px;}
.ws2f{word-spacing:-0.179327px;}
.wsf7{word-spacing:-0.095641px;}
.wsfc{word-spacing:-0.063571px;}
.ws41{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.053798px;}
.ws44{word-spacing:-0.041843px;}
.ws6d{word-spacing:-0.041473px;}
.ws77{word-spacing:-0.041146px;}
.ws7e{word-spacing:-0.040763px;}
.ws88{word-spacing:-0.040220px;}
.ws6f{word-spacing:-0.034560px;}
.ws7a{word-spacing:-0.034288px;}
.ws81{word-spacing:-0.033969px;}
.ws8c{word-spacing:-0.033516px;}
.ws7f{word-spacing:-0.027175px;}
.ws89{word-spacing:-0.026813px;}
.ws70{word-spacing:-0.024192px;}
.ws82{word-spacing:-0.023778px;}
.ws6b{word-spacing:0.000000px;}
.wse3{word-spacing:0.059776px;}
.wsc1{word-spacing:0.478205px;}
.ws36{word-spacing:0.537980px;}
.ws55{word-spacing:0.657532px;}
.ws54{word-spacing:0.667500px;}
.ws3f{word-spacing:1.075961px;}
.wse8{word-spacing:1.195512px;}
.ws68{word-spacing:1.315063px;}
.ws15{word-spacing:1.374839px;}
.wsb6{word-spacing:1.494390px;}
.wsb8{word-spacing:1.554166px;}
.wsee{word-spacing:1.673721px;}
.wse0{word-spacing:1.853044px;}
.wscc{word-spacing:2.092146px;}
.wsf{word-spacing:2.474726px;}
.wsca{word-spacing:2.564771px;}
.wscb{word-spacing:2.570351px;}
.wsdb{word-spacing:2.630126px;}
.ws52{word-spacing:2.749678px;}
.ws91{word-spacing:2.947334px;}
.ws14{word-spacing:3.347434px;}
.wsf1{word-spacing:3.443083px;}
.ws35{word-spacing:3.466985px;}
.wscf{word-spacing:3.586536px;}
.wscd{word-spacing:3.596636px;}
.wsd1{word-spacing:3.599750px;}
.ws53{word-spacing:3.765863px;}
.ws51{word-spacing:3.885414px;}
.ws50{word-spacing:3.904309px;}
.ws18{word-spacing:3.945190px;}
.ws65{word-spacing:4.542946px;}
.ws64{word-spacing:4.544683px;}
.ws4d{word-spacing:4.662497px;}
.ws58{word-spacing:4.722272px;}
.ws93{word-spacing:4.776530px;}
.ws94{word-spacing:4.782060px;}
.wsc7{word-spacing:5.080926px;}
.ws1e{word-spacing:5.140702px;}
.ws63{word-spacing:5.260253px;}
.wsd9{word-spacing:5.320028px;}
.ws6{word-spacing:5.374579px;}
.ws5{word-spacing:5.377882px;}
.ws4{word-spacing:5.379840px;}
.wse1{word-spacing:5.439580px;}
.ws34{word-spacing:5.499355px;}
.ws98{word-spacing:5.542309px;}
.ws99{word-spacing:5.559131px;}
.ws8e{word-spacing:5.563686px;}
.ws84{word-spacing:5.638900px;}
.ws7c{word-spacing:5.691788px;}
.ws72{word-spacing:5.737036px;}
.ws3e{word-spacing:5.810227px;}
.ws37{word-spacing:5.937659px;}
.ws19{word-spacing:5.977560px;}
.ws33{word-spacing:6.037336px;}
.ws45{word-spacing:6.151622px;}
.ws43{word-spacing:6.152683px;}
.ws39{word-spacing:6.156887px;}
.ws47{word-spacing:6.158134px;}
.wse2{word-spacing:6.216662px;}
.wsfa{word-spacing:6.312319px;}
.ws92{word-spacing:6.450503px;}
.ws8f{word-spacing:6.455781px;}
.ws1{word-spacing:6.575340px;}
.wsf5{word-spacing:6.647063px;}
.ws10{word-spacing:6.724800px;}
.ws2b{word-spacing:6.874194px;}
.ws2d{word-spacing:7.113296px;}
.wse{word-spacing:7.262784px;}
.ws13{word-spacing:7.292623px;}
.wsa{word-spacing:7.424179px;}
.wsbe{word-spacing:7.651277px;}
.ws16{word-spacing:7.770828px;}
.wse5{word-spacing:7.890379px;}
.ws8{word-spacing:8.177357px;}
.ws1b{word-spacing:8.249033px;}
.ws48{word-spacing:8.308808px;}
.ws49{word-spacing:8.428360px;}
.ws59{word-spacing:8.547911px;}
.ws32{word-spacing:8.607686px;}
.wsd4{word-spacing:8.667462px;}
.wsc3{word-spacing:8.966340px;}
.wsa1{word-spacing:9.085891px;}
.ws9b{word-spacing:9.145667px;}
.wsc9{word-spacing:9.265218px;}
.wsc4{word-spacing:9.324994px;}
.ws80{word-spacing:9.409490px;}
.ws21{word-spacing:9.444545px;}
.ws6e{word-spacing:9.573247px;}
.ws17{word-spacing:9.623872px;}
.ws2e{word-spacing:9.683647px;}
.wsb5{word-spacing:9.803198px;}
.ws5e{word-spacing:9.901239px;}
.ws2a{word-spacing:9.922750px;}
.ws2c{word-spacing:9.982525px;}
.wsf9{word-spacing:10.137967px;}
.wsc6{word-spacing:10.161852px;}
.ws40{word-spacing:10.281403px;}
.ws62{word-spacing:10.341179px;}
.ws3c{word-spacing:10.377070px;}
.wsbf{word-spacing:10.520506px;}
.ws29{word-spacing:10.580281px;}
.ws1c{word-spacing:10.759608px;}
.wsec{word-spacing:10.819384px;}
.wsed{word-spacing:10.998710px;}
.ws57{word-spacing:11.118262px;}
.ws8d{word-spacing:11.136159px;}
.wsad{word-spacing:11.150476px;}
.wsb1{word-spacing:11.178037px;}
.ws30{word-spacing:11.237813px;}
.ws86{word-spacing:11.286707px;}
.ws83{word-spacing:11.290117px;}
.wseb{word-spacing:11.297588px;}
.ws7b{word-spacing:11.392567px;}
.ws9a{word-spacing:11.417140px;}
.ws75{word-spacing:11.483134px;}
.ws71{word-spacing:11.486603px;}
.ws3d{word-spacing:11.674253px;}
.wsf8{word-spacing:11.811688px;}
.ws24{word-spacing:11.835569px;}
.wsa0{word-spacing:11.955120px;}
.ws22{word-spacing:12.134447px;}
.wsd8{word-spacing:12.253998px;}
.ws9f{word-spacing:12.313774px;}
.ws25{word-spacing:12.612652px;}
.ws23{word-spacing:12.732203px;}
.wsd7{word-spacing:13.031081px;}
.wsd5{word-spacing:13.040700px;}
.ws8a{word-spacing:13.084517px;}
.ws8b{word-spacing:13.087371px;}
.ws4a{word-spacing:13.090856px;}
.ws1d{word-spacing:13.150632px;}
.wsa3{word-spacing:13.329959px;}
.ws78{word-spacing:13.385785px;}
.ws79{word-spacing:13.388705px;}
.wsdf{word-spacing:13.449510px;}
.ws69{word-spacing:13.509286px;}
.wsc0{word-spacing:13.569061px;}
.wsef{word-spacing:13.581050px;}
.wsa2{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.wsd{word-spacing:14.633165px;}
.wsdc{word-spacing:14.764573px;}
.wse4{word-spacing:15.003676px;}
.wse7{word-spacing:15.063451px;}
.wsf2{word-spacing:15.350413px;}
.ws6a{word-spacing:15.362329px;}
.ws27{word-spacing:15.601432px;}
.ws1a{word-spacing:15.840534px;}
.wsb2{word-spacing:16.078050px;}
.wse9{word-spacing:16.139412px;}
.wsea{word-spacing:16.258963px;}
.wsf3{word-spacing:16.259004px;}
.ws5f{word-spacing:16.486309px;}
.ws60{word-spacing:16.498066px;}
.ws4e{word-spacing:16.524415px;}
.ws97{word-spacing:16.530415px;}
.ws66{word-spacing:16.557841px;}
.wsf0{word-spacing:16.689389px;}
.wse6{word-spacing:16.976270px;}
.ws3b{word-spacing:17.155597px;}
.wsa8{word-spacing:17.215373px;}
.ws20{word-spacing:17.454475px;}
.ws9e{word-spacing:17.514251px;}
.ws11{word-spacing:17.932680px;}
.ws1f{word-spacing:18.112007px;}
.wsfb{word-spacing:18.219649px;}
.wsc2{word-spacing:18.385483px;}
.wsb9{word-spacing:18.451483px;}
.ws26{word-spacing:18.470660px;}
.wsf6{word-spacing:18.554393px;}
.ws9c{word-spacing:18.829314px;}
.ws31{word-spacing:19.068416px;}
.ws28{word-spacing:19.187968px;}
.wsab{word-spacing:19.367294px;}
.wsb7{word-spacing:19.429483px;}
.wsd0{word-spacing:19.549483px;}
.wsbb{word-spacing:19.965050px;}
.wsde{word-spacing:19.982134px;}
.wsa9{word-spacing:20.801909px;}
.wsbc{word-spacing:21.100787px;}
.wsb{word-spacing:21.250368px;}
.ws90{word-spacing:21.379334px;}
.wsce{word-spacing:21.493483px;}
.wsa6{word-spacing:22.415850px;}
.wsc8{word-spacing:22.963483px;}
.wsda{word-spacing:23.221483px;}
.ws9{word-spacing:23.402304px;}
.wsd3{word-spacing:23.551586px;}
.wsb4{word-spacing:23.671138px;}
.ws95{word-spacing:23.845868px;}
.wsc{word-spacing:25.123853px;}
.ws61{word-spacing:25.225303px;}
.wsbd{word-spacing:25.567483px;}
.wsb0{word-spacing:26.121937px;}
.wsb3{word-spacing:26.683483px;}
.wsc5{word-spacing:27.187483px;}
.wsf4{word-spacing:28.166333px;}
.wsa5{word-spacing:28.194763px;}
.wsae{word-spacing:29.042677px;}
.wsaf{word-spacing:29.132677px;}
.wsa4{word-spacing:30.126902px;}
.wsd6{word-spacing:30.937483px;}
.ws4c{word-spacing:32.278824px;}
.ws9d{word-spacing:32.338600px;}
.wsba{word-spacing:37.831483px;}
.wsdd{word-spacing:37.867483px;}
.ws5a{word-spacing:37.970180px;}
.wsa7{word-spacing:40.327483px;}
.wsac{word-spacing:41.424491px;}
.wsaa{word-spacing:43.935066px;}
.ws4b{word-spacing:47.162948px;}
.ws87{word-spacing:172.155647px;}
.ws7d{word-spacing:174.482987px;}
.ws76{word-spacing:541.073363px;}
.ws73{word-spacing:555.518123px;}
.ws6c{word-spacing:1161.833683px;}
._3{margin-left:-6.558953px;}
._4{margin-left:-4.214214px;}
._2{margin-left:-2.848982px;}
._0{margin-left:-1.434618px;}
._7{width:2.333883px;}
._1{width:3.647087px;}
._18{width:6.210265px;}
._13{width:15.469603px;}
._11{width:17.080992px;}
._5{width:21.893616px;}
._12{width:23.730913px;}
._16{width:24.926425px;}
._14{width:27.377225px;}
._b{width:30.429460px;}
._6{width:33.677798px;}
._a{width:35.524428px;}
._10{width:36.869683px;}
._8{width:44.716499px;}
._17{width:47.820094px;}
._9{width:56.606507px;}
._15{width:99.346950px;}
._f{width:191.883639px;}
._e{width:194.477678px;}
._d{width:561.258787px;}
._c{width:565.713661px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:23.461258px;}
.fs14{font-size:23.778426px;}
.fs10{font-size:24.001449px;}
.fsc{font-size:24.192252px;}
.fs16{font-size:26.813010px;}
.fs12{font-size:27.175491px;}
.fse{font-size:27.430374px;}
.fsa{font-size:27.648436px;}
.fs8{font-size:29.887800px;}
.fs17{font-size:33.516179px;}
.fs13{font-size:33.969278px;}
.fsf{font-size:34.287882px;}
.fsb{font-size:34.560459px;}
.fs3{font-size:35.865600px;}
.fs15{font-size:40.219684px;}
.fs11{font-size:40.763406px;}
.fsd{font-size:41.145734px;}
.fs9{font-size:41.472828px;}
.fs7{font-size:41.842800px;}
.fs2{font-size:46.027200px;}
.fs6{font-size:47.820600px;}
.fs1a{font-size:52.012272px;}
.fs4{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs19{font-size:63.570540px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y8e{bottom:2.792286px;}
.y78{bottom:2.830034px;}
.y75{bottom:2.856578px;}
.y60{bottom:2.879287px;}
.ye8{bottom:3.000000px;}
.ye5{bottom:4.500000px;}
.y7f{bottom:5.110258px;}
.y87{bottom:7.049513px;}
.y6e{bottom:7.174801px;}
.y79{bottom:9.114075px;}
.y61{bottom:9.274425px;}
.y80{bottom:9.687753px;}
.y67{bottom:9.855486px;}
.y89{bottom:15.468592px;}
.y70{bottom:15.824753px;}
.ye7{bottom:19.500000px;}
.y69{bottom:21.197447px;}
.y82{bottom:22.134790px;}
.y71{bottom:22.597940px;}
.y66{bottom:22.773249px;}
.y7a{bottom:23.763765px;}
.y8f{bottom:29.345917px;}
.y76{bottom:30.023321px;}
.y8a{bottom:31.725247px;}
.y6a{bottom:33.121336px;}
.y62{bottom:34.114343px;}
.y83{bottom:35.155506px;}
.y7b{bottom:38.413455px;}
.ye6{bottom:40.306755px;}
.y72{bottom:42.314349px;}
.y6b{bottom:45.044357px;}
.y8b{bottom:47.785097px;}
.y84{bottom:48.176221px;}
.y7c{bottom:53.062293px;}
.y6c{bottom:56.968246px;}
.y63{bottom:58.955128px;}
.y85{bottom:61.196084px;}
.y73{bottom:62.031619px;}
.y8c{bottom:63.844947px;}
.y7d{bottom:67.711983px;}
.y6d{bottom:68.891268px;}
.y86{bottom:72.919416px;}
.y64{bottom:74.192798px;}
.ye4{bottom:75.230055px;}
.y8d{bottom:79.485953px;}
.y74{bottom:81.319542px;}
.y3c{bottom:113.332500px;}
.ye3{bottom:115.123500px;}
.ye2{bottom:127.227000px;}
.y3b{bottom:129.472500px;}
.ye1{bottom:139.332000px;}
.y3a{bottom:145.611000px;}
.y5e{bottom:145.612500px;}
.ye0{bottom:151.437000px;}
.y39{bottom:161.751000px;}
.ydf{bottom:163.540500px;}
.y5d{bottom:170.487000px;}
.yde{bottom:175.645500px;}
.yb7{bottom:177.891000px;}
.y5c{bottom:180.738000px;}
.y38{bottom:182.680500px;}
.ydd{bottom:187.750500px;}
.yb6{bottom:194.029500px;}
.ydc{bottom:199.854000px;}
.y37{bottom:209.023500px;}
.yb5{bottom:210.169500px;}
.y5b{bottom:211.780500px;}
.ydb{bottom:211.959000px;}
.yda{bottom:224.064000px;}
.y36{bottom:225.163500px;}
.yb4{bottom:226.308000px;}
.y5a{bottom:227.920500px;}
.yd9{bottom:236.167500px;}
.y35{bottom:241.302000px;}
.yb3{bottom:242.448000px;}
.y59{bottom:244.059000px;}
.yd8{bottom:248.272500px;}
.y34{bottom:257.442000px;}
.yb2{bottom:258.586500px;}
.y58{bottom:260.199000px;}
.yd7{bottom:260.377500px;}
.y33{bottom:273.580500px;}
.yb1{bottom:274.726500px;}
.y57{bottom:275.566500px;}
.yd6{bottom:278.908500px;}
.y32{bottom:289.720500px;}
.yb0{bottom:290.866500px;}
.y56{bottom:293.266500px;}
.yd5{bottom:300.420000px;}
.y31{bottom:305.860500px;}
.yaf{bottom:307.005000px;}
.yd4{bottom:316.560000px;}
.y55{bottom:321.789000px;}
.y30{bottom:321.999000px;}
.yae{bottom:323.145000px;}
.y54{bottom:332.040000px;}
.yd3{bottom:332.698500px;}
.y2f{bottom:338.139000px;}
.yad{bottom:339.853500px;}
.yd2{bottom:348.838500px;}
.y2e{bottom:354.277500px;}
.yac{bottom:355.993500px;}
.yd1{bottom:364.977000px;}
.y53{bottom:366.355500px;}
.y2d{bottom:370.417500px;}
.yab{bottom:372.132000px;}
.yd0{bottom:381.117000px;}
.y52{bottom:382.495500px;}
.y2c{bottom:386.571000px;}
.yaa{bottom:388.272000px;}
.ycf{bottom:397.257000px;}
.y51{bottom:398.634000px;}
.ya9{bottom:400.716000px;}
.y2b{bottom:402.709500px;}
.ya8{bottom:404.410500px;}
.yce{bottom:413.395500px;}
.y50{bottom:414.774000px;}
.y2a{bottom:418.849500px;}
.ya7{bottom:420.550500px;}
.ycd{bottom:429.535500px;}
.y4f{bottom:430.914000px;}
.y29{bottom:434.989500px;}
.ya6{bottom:436.689000px;}
.ycc{bottom:445.674000px;}
.y4e{bottom:447.052500px;}
.y28{bottom:451.128000px;}
.ya5{bottom:452.829000px;}
.ycb{bottom:461.274000px;}
.y4d{bottom:463.192500px;}
.y27{bottom:467.268000px;}
.ya4{bottom:468.969000px;}
.yca{bottom:477.414000px;}
.y4c{bottom:479.331000px;}
.y26{bottom:483.406500px;}
.ya3{bottom:485.107500px;}
.yc9{bottom:493.552500px;}
.y4b{bottom:495.471000px;}
.y25{bottom:499.546500px;}
.ya2{bottom:501.247500px;}
.yc8{bottom:509.692500px;}
.y4a{bottom:511.911000px;}
.y24{bottom:515.685000px;}
.ya1{bottom:517.386000px;}
.yc7{bottom:525.832500px;}
.y23{bottom:531.825000px;}
.ya0{bottom:533.526000px;}
.y49{bottom:536.421000px;}
.yc6{bottom:541.971000px;}
.y22{bottom:547.965000px;}
.y9f{bottom:556.650000px;}
.yc5{bottom:558.111000px;}
.y48{bottom:560.932500px;}
.y21{bottom:564.103500px;}
.yc4{bottom:574.249500px;}
.y47{bottom:577.071000px;}
.y9e{bottom:577.599000px;}
.y20{bottom:580.243500px;}
.yc3{bottom:590.389500px;}
.y46{bottom:592.438500px;}
.y9d{bottom:593.737500px;}
.y1f{bottom:596.382000px;}
.y45{bottom:608.578500px;}
.y9c{bottom:609.877500px;}
.y1e{bottom:612.535500px;}
.yc2{bottom:620.931000px;}
.y44{bottom:624.717000px;}
.y9b{bottom:626.017500px;}
.y1d{bottom:628.675500px;}
.yc1{bottom:637.071000px;}
.y43{bottom:640.857000px;}
.y9a{bottom:642.156000px;}
.y1c{bottom:644.814000px;}
.yc0{bottom:653.209500px;}
.y42{bottom:656.995500px;}
.y99{bottom:658.296000px;}
.y1b{bottom:660.954000px;}
.ybf{bottom:669.349500px;}
.y41{bottom:673.135500px;}
.y98{bottom:674.434500px;}
.y1a{bottom:677.092500px;}
.ybe{bottom:685.488000px;}
.y40{bottom:689.275500px;}
.y19{bottom:693.232500px;}
.ybd{bottom:701.628000px;}
.y97{bottom:702.898500px;}
.y18{bottom:709.372500px;}
.y3f{bottom:712.537500px;}
.y96{bottom:713.149500px;}
.ybc{bottom:717.766500px;}
.y17{bottom:725.511000px;}
.y3e{bottom:725.986500px;}
.ybb{bottom:733.906500px;}
.y3d{bottom:739.435500px;}
.y16{bottom:741.664500px;}
.y95{bottom:749.476500px;}
.yba{bottom:750.046500px;}
.y15{bottom:757.804500px;}
.y94{bottom:765.616500px;}
.yb9{bottom:766.185000px;}
.y14{bottom:773.943000px;}
.y93{bottom:782.325000px;}
.y13{bottom:790.083000px;}
.yb8{bottom:798.463500px;}
.y92{bottom:798.465000px;}
.y12{bottom:806.221500px;}
.y11{bottom:822.361500px;}
.y91{bottom:831.898500px;}
.y10{bottom:838.500000px;}
.y90{bottom:844.003500px;}
.y6f{bottom:852.636000px;}
.y88{bottom:855.115500px;}
.yf{bottom:859.429500px;}
.ye{bottom:877.270500px;}
.yd{bottom:890.719500px;}
.yc{bottom:904.168500px;}
.yb{bottom:917.617500px;}
.ya{bottom:931.068000px;}
.y9{bottom:944.517000px;}
.y68{bottom:947.367000px;}
.y81{bottom:947.710500px;}
.y8{bottom:957.966000px;}
.y7{bottom:971.416500px;}
.y6{bottom:984.865500px;}
.y5{bottom:1023.570000px;}
.y77{bottom:1028.706000px;}
.y5f{bottom:1029.777000px;}
.y4{bottom:1034.097000px;}
.y3{bottom:1039.810500px;}
.y7e{bottom:1041.105301px;}
.y65{bottom:1042.392091px;}
.y2{bottom:1051.318500px;}
.y1{bottom:1082.049000px;}
.h33{height:19.500000px;}
.h4{height:24.675533px;}
.h25{height:25.476958px;}
.h18{height:25.920344px;}
.h2b{height:27.309165px;}
.h22{height:27.678353px;}
.h1d{height:27.937953px;}
.h15{height:27.994159px;}
.h14{height:28.160050px;}
.h2e{height:28.443696px;}
.h26{height:28.828221px;}
.h29{height:28.831631px;}
.h20{height:29.098606px;}
.h19{height:29.333399px;}
.h2c{height:30.164763px;}
.h1e{height:30.859300px;}
.h32{height:32.900573px;}
.h35{height:33.000000px;}
.h28{height:33.161823px;}
.h2f{height:33.665702px;}
.h16{height:33.742421px;}
.h36{height:35.733040px;}
.h7{height:37.013299px;}
.h5{height:37.283299px;}
.h9{height:37.336090px;}
.h8{height:37.605082px;}
.ha{height:41.125613px;}
.h34{height:44.139310px;}
.hc{height:44.831700px;}
.h2{height:45.568339px;}
.h6{height:47.529533px;}
.hd{height:50.728903px;}
.hb{height:50.734903px;}
.h2d{height:53.288213px;}
.h23{height:54.012017px;}
.h1f{height:54.515163px;}
.h1b{height:54.948540px;}
.h3{height:55.420714px;}
.h10{height:55.768903px;}
.h24{height:58.598189px;}
.h31{height:59.609700px;}
.h17{height:59.617485px;}
.h27{height:80.995244px;}
.h21{height:81.001211px;}
.h13{height:82.410039px;}
.h1a{height:82.410906px;}
.h30{height:83.757024px;}
.h11{height:85.271700px;}
.he{height:86.679024px;}
.h2a{height:92.596241px;}
.h1c{height:94.731692px;}
.h1{height:98.701718px;}
.h12{height:124.755024px;}
.hf{height:127.683024px;}
.h0{height:1188.000000px;}
.w7{width:176.603792px;}
.w5{width:292.984528px;}
.w2{width:298.084780px;}
.w4{width:340.060173px;}
.w1{width:340.061960px;}
.w6{width:340.066793px;}
.w3{width:340.067843px;}
.w8{width:770.791365px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:9.911857px;}
.x18{left:18.003347px;}
.x17{left:25.898836px;}
.x20{left:28.779404px;}
.x16{left:31.489162px;}
.x23{left:32.937200px;}
.x1f{left:34.273251px;}
.x19{left:36.790692px;}
.x22{left:39.189157px;}
.x9{left:73.446000px;}
.x30{left:76.483920px;}
.x2f{left:79.935044px;}
.x8{left:88.390500px;}
.x15{left:92.340000px;}
.x25{left:103.333500px;}
.x1b{left:111.106640px;}
.x1a{left:126.366750px;}
.x26{left:137.149500px;}
.x2{left:139.257000px;}
.x1d{left:157.288164px;}
.x24{left:161.403382px;}
.x3{left:169.482000px;}
.xb{left:174.034500px;}
.x7{left:183.685500px;}
.x1{left:187.984500px;}
.xa{left:203.428500px;}
.x2a{left:215.824500px;}
.x27{left:246.625500px;}
.x2b{left:268.075500px;}
.x2c{left:296.470500px;}
.x28{left:329.446500px;}
.x4{left:338.043000px;}
.x29{left:364.027500px;}
.x5{left:415.201500px;}
.xc{left:467.967000px;}
.x1e{left:480.370500px;}
.xf{left:483.166500px;}
.x2e{left:489.378000px;}
.xd{left:497.854500px;}
.x21{left:517.137932px;}
.x12{left:528.123000px;}
.xe{left:572.049000px;}
.x10{left:582.426000px;}
.x13{left:583.614000px;}
.x2d{left:614.418000px;}
.x14{left:624.510000px;}
.x11{left:659.119500px;}
.x6{left:710.415000px;}
@media print{
.v13{vertical-align:-53.722667pt;}
.v12{vertical-align:-48.410667pt;}
.v16{vertical-align:-36.389333pt;}
.v2{vertical-align:-20.314667pt;}
.v8{vertical-align:-16.688000pt;}
.vb{vertical-align:-11.962667pt;}
.v3{vertical-align:-7.968000pt;}
.vd{vertical-align:-4.606859pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:5.168000pt;}
.ve{vertical-align:11.150201pt;}
.vc{vertical-align:13.379625pt;}
.v10{vertical-align:18.280315pt;}
.v4{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.v9{vertical-align:23.760000pt;}
.v14{vertical-align:27.978667pt;}
.vf{vertical-align:32.229508pt;}
.v6{vertical-align:35.946667pt;}
.v11{vertical-align:72.325333pt;}
.v5{vertical-align:74.922667pt;}
.va{vertical-align:108.768000pt;}
.v7{vertical-align:111.370667pt;}
.ls36{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000055pt;}
.ls5f{letter-spacing:0.000281pt;}
.ls52{letter-spacing:0.000285pt;}
.ls4a{letter-spacing:0.000288pt;}
.ls3e{letter-spacing:0.000290pt;}
.ls14{letter-spacing:0.000479pt;}
.ls19{letter-spacing:0.000501pt;}
.ls61{letter-spacing:0.000545pt;}
.ls58{letter-spacing:0.000555pt;}
.ls4f{letter-spacing:0.000566pt;}
.ls3b{letter-spacing:0.000576pt;}
.ls59{letter-spacing:0.000734pt;}
.ls60{letter-spacing:0.000853pt;}
.ls15{letter-spacing:0.000882pt;}
.ls67{letter-spacing:0.000996pt;}
.ls53{letter-spacing:0.001122pt;}
.ls40{letter-spacing:0.001142pt;}
.ls5d{letter-spacing:0.001511pt;}
.ls50{letter-spacing:0.001531pt;}
.ls48{letter-spacing:0.001545pt;}
.ls3c{letter-spacing:0.001558pt;}
.ls37{letter-spacing:0.001571pt;}
.ls54{letter-spacing:0.001651pt;}
.ls41{letter-spacing:0.001680pt;}
.ls31{letter-spacing:0.001975pt;}
.ls57{letter-spacing:0.002275pt;}
.ls44{letter-spacing:0.002314pt;}
.ls4e{letter-spacing:0.002340pt;}
.ls3a{letter-spacing:0.002380pt;}
.ls29{letter-spacing:0.002422pt;}
.ls72{letter-spacing:0.002489pt;}
.ls34{letter-spacing:0.002531pt;}
.ls32{letter-spacing:0.002694pt;}
.ls13{letter-spacing:0.002906pt;}
.lsd{letter-spacing:0.003310pt;}
.ls6{letter-spacing:0.003449pt;}
.ls7c{letter-spacing:0.003733pt;}
.ls68{letter-spacing:0.003892pt;}
.ls9{letter-spacing:0.004003pt;}
.ls71{letter-spacing:0.004349pt;}
.ls73{letter-spacing:1.477138pt;}
.ls62{letter-spacing:1.522961pt;}
.ls5c{letter-spacing:1.719282pt;}
.ls47{letter-spacing:1.758868pt;}
.ls63{letter-spacing:2.377181pt;}
.ls3{letter-spacing:2.635446pt;}
.ls1{letter-spacing:2.652800pt;}
.ls2a{letter-spacing:2.652911pt;}
.ls4{letter-spacing:2.654903pt;}
.ls81{letter-spacing:2.655711pt;}
.ls5{letter-spacing:2.656542pt;}
.ls6e{letter-spacing:2.656693pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658133pt;}
.lsa{letter-spacing:2.658245pt;}
.ls1f{letter-spacing:5.792271pt;}
.ls23{letter-spacing:6.381494pt;}
.ls56{letter-spacing:6.541800pt;}
.ls43{letter-spacing:6.655649pt;}
.ls20{letter-spacing:7.375235pt;}
.ls21{letter-spacing:7.381391pt;}
.ls4c{letter-spacing:8.387712pt;}
.ls38{letter-spacing:8.533687pt;}
.ls70{letter-spacing:8.855412pt;}
.ls5e{letter-spacing:9.926767pt;}
.ls51{letter-spacing:10.060965pt;}
.ls4d{letter-spacing:10.063526pt;}
.ls55{letter-spacing:10.063996pt;}
.ls49{letter-spacing:10.155329pt;}
.ls3d{letter-spacing:10.236060pt;}
.ls39{letter-spacing:10.238665pt;}
.ls42{letter-spacing:10.239144pt;}
.ls2e{letter-spacing:11.506245pt;}
.ls8{letter-spacing:11.511578pt;}
.ls66{letter-spacing:11.512172pt;}
.ls5b{letter-spacing:11.664478pt;}
.ls26{letter-spacing:11.803145pt;}
.ls46{letter-spacing:11.933050pt;}
.ls1c{letter-spacing:12.547449pt;}
.ls1e{letter-spacing:12.743507pt;}
.ls79{letter-spacing:14.343412pt;}
.ls25{letter-spacing:14.460911pt;}
.ls24{letter-spacing:14.757812pt;}
.ls7e{letter-spacing:14.759467pt;}
.ls80{letter-spacing:14.760027pt;}
.ls64{letter-spacing:14.878647pt;}
.lsb{letter-spacing:15.047473pt;}
.lsf{letter-spacing:15.048782pt;}
.ls10{letter-spacing:15.050318pt;}
.ls65{letter-spacing:15.450313pt;}
.ls7d{letter-spacing:15.566400pt;}
.ls7f{letter-spacing:16.483733pt;}
.ls1b{letter-spacing:16.539208pt;}
.ls17{letter-spacing:16.758216pt;}
.ls30{letter-spacing:17.324806pt;}
.ls12{letter-spacing:17.453573pt;}
.lsc{letter-spacing:17.708745pt;}
.ls6b{letter-spacing:18.209867pt;}
.ls1a{letter-spacing:18.375578pt;}
.lse{letter-spacing:18.750400pt;}
.ls7{letter-spacing:18.754906pt;}
.ls2d{letter-spacing:19.228642pt;}
.ls18{letter-spacing:19.413875pt;}
.ls2f{letter-spacing:19.975578pt;}
.ls5a{letter-spacing:20.052827pt;}
.ls4b{letter-spacing:20.324510pt;}
.ls45{letter-spacing:20.514539pt;}
.ls3f{letter-spacing:20.680706pt;}
.ls6a{letter-spacing:20.864542pt;}
.ls6c{letter-spacing:20.866838pt;}
.ls7b{letter-spacing:21.099145pt;}
.ls22{letter-spacing:21.253875pt;}
.ls7a{letter-spacing:22.023200pt;}
.ls78{letter-spacing:22.575805pt;}
.ls33{letter-spacing:22.612568pt;}
.ls77{letter-spacing:23.275145pt;}
.ls76{letter-spacing:25.177042pt;}
.ls1d{letter-spacing:25.835208pt;}
.ls2c{letter-spacing:25.972568pt;}
.ls6d{letter-spacing:26.098245pt;}
.ls6f{letter-spacing:26.830115pt;}
.ls2b{letter-spacing:28.354122pt;}
.ls28{letter-spacing:30.594245pt;}
.ls75{letter-spacing:36.856027pt;}
.ls74{letter-spacing:44.917605pt;}
.ls27{letter-spacing:54.044745pt;}
.ls35{letter-spacing:151.938079pt;}
.ls69{letter-spacing:164.546079pt;}
.ls16{letter-spacing:308.119412pt;}
.ws67{word-spacing:-53.133867pt;}
.ws5b{word-spacing:-42.066082pt;}
.wsd2{word-spacing:-38.362652pt;}
.ws46{word-spacing:-38.096982pt;}
.ws4f{word-spacing:-34.611401pt;}
.ws5c{word-spacing:-28.118362pt;}
.ws42{word-spacing:-25.738045pt;}
.ws74{word-spacing:-20.011274pt;}
.ws85{word-spacing:-19.668967pt;}
.ws5d{word-spacing:-18.389782pt;}
.ws2{word-spacing:-14.611867pt;}
.ws12{word-spacing:-13.262246pt;}
.ws3{word-spacing:-11.955200pt;}
.wsfd{word-spacing:-11.558283pt;}
.ws38{word-spacing:-10.626800pt;}
.ws96{word-spacing:-0.903276pt;}
.ws56{word-spacing:-0.743874pt;}
.ws3a{word-spacing:-0.531339pt;}
.ws2f{word-spacing:-0.159402pt;}
.wsf7{word-spacing:-0.085014pt;}
.wsfc{word-spacing:-0.056507pt;}
.ws41{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.047821pt;}
.ws44{word-spacing:-0.037194pt;}
.ws6d{word-spacing:-0.036865pt;}
.ws77{word-spacing:-0.036574pt;}
.ws7e{word-spacing:-0.036234pt;}
.ws88{word-spacing:-0.035751pt;}
.ws6f{word-spacing:-0.030720pt;}
.ws7a{word-spacing:-0.030478pt;}
.ws81{word-spacing:-0.030195pt;}
.ws8c{word-spacing:-0.029792pt;}
.ws7f{word-spacing:-0.024156pt;}
.ws89{word-spacing:-0.023834pt;}
.ws70{word-spacing:-0.021504pt;}
.ws82{word-spacing:-0.021136pt;}
.ws6b{word-spacing:0.000000pt;}
.wse3{word-spacing:0.053134pt;}
.wsc1{word-spacing:0.425071pt;}
.ws36{word-spacing:0.478205pt;}
.ws55{word-spacing:0.584473pt;}
.ws54{word-spacing:0.593333pt;}
.ws3f{word-spacing:0.956410pt;}
.wse8{word-spacing:1.062677pt;}
.ws68{word-spacing:1.168945pt;}
.ws15{word-spacing:1.222079pt;}
.wsb6{word-spacing:1.328347pt;}
.wsb8{word-spacing:1.381481pt;}
.wsee{word-spacing:1.487752pt;}
.wse0{word-spacing:1.647150pt;}
.wscc{word-spacing:1.859685pt;}
.wsf{word-spacing:2.199757pt;}
.wsca{word-spacing:2.279796pt;}
.wscb{word-spacing:2.284756pt;}
.wsdb{word-spacing:2.337890pt;}
.ws52{word-spacing:2.444158pt;}
.ws91{word-spacing:2.619853pt;}
.ws14{word-spacing:2.975497pt;}
.wsf1{word-spacing:3.060518pt;}
.ws35{word-spacing:3.081764pt;}
.wscf{word-spacing:3.188032pt;}
.wscd{word-spacing:3.197010pt;}
.wsd1{word-spacing:3.199778pt;}
.ws53{word-spacing:3.347434pt;}
.ws51{word-spacing:3.453701pt;}
.ws50{word-spacing:3.470497pt;}
.ws18{word-spacing:3.506835pt;}
.ws65{word-spacing:4.038174pt;}
.ws64{word-spacing:4.039718pt;}
.ws4d{word-spacing:4.144442pt;}
.ws58{word-spacing:4.197575pt;}
.ws93{word-spacing:4.245805pt;}
.ws94{word-spacing:4.250720pt;}
.wsc7{word-spacing:4.516379pt;}
.ws1e{word-spacing:4.569513pt;}
.ws63{word-spacing:4.675780pt;}
.wsd9{word-spacing:4.728914pt;}
.ws6{word-spacing:4.777404pt;}
.ws5{word-spacing:4.780339pt;}
.ws4{word-spacing:4.782080pt;}
.wse1{word-spacing:4.835182pt;}
.ws34{word-spacing:4.888316pt;}
.ws98{word-spacing:4.926497pt;}
.ws99{word-spacing:4.941450pt;}
.ws8e{word-spacing:4.945498pt;}
.ws84{word-spacing:5.012356pt;}
.ws7c{word-spacing:5.059367pt;}
.ws72{word-spacing:5.099588pt;}
.ws3e{word-spacing:5.164646pt;}
.ws37{word-spacing:5.277919pt;}
.ws19{word-spacing:5.313387pt;}
.ws33{word-spacing:5.366521pt;}
.ws45{word-spacing:5.468109pt;}
.ws43{word-spacing:5.469052pt;}
.ws39{word-spacing:5.472788pt;}
.ws47{word-spacing:5.473897pt;}
.wse2{word-spacing:5.525922pt;}
.wsfa{word-spacing:5.610950pt;}
.ws92{word-spacing:5.733780pt;}
.ws8f{word-spacing:5.738472pt;}
.ws1{word-spacing:5.844747pt;}
.wsf5{word-spacing:5.908501pt;}
.ws10{word-spacing:5.977600pt;}
.ws2b{word-spacing:6.110395pt;}
.ws2d{word-spacing:6.322930pt;}
.wse{word-spacing:6.455808pt;}
.ws13{word-spacing:6.482332pt;}
.wsa{word-spacing:6.599270pt;}
.wsbe{word-spacing:6.801135pt;}
.ws16{word-spacing:6.907403pt;}
.wse5{word-spacing:7.013670pt;}
.ws8{word-spacing:7.268762pt;}
.ws1b{word-spacing:7.332474pt;}
.ws48{word-spacing:7.385607pt;}
.ws49{word-spacing:7.491875pt;}
.ws59{word-spacing:7.598143pt;}
.ws32{word-spacing:7.651277pt;}
.wsd4{word-spacing:7.704411pt;}
.wsc3{word-spacing:7.970080pt;}
.wsa1{word-spacing:8.076348pt;}
.ws9b{word-spacing:8.129482pt;}
.wsc9{word-spacing:8.235749pt;}
.wsc4{word-spacing:8.288883pt;}
.ws80{word-spacing:8.363991pt;}
.ws21{word-spacing:8.395151pt;}
.ws6e{word-spacing:8.509553pt;}
.ws17{word-spacing:8.554553pt;}
.ws2e{word-spacing:8.607686pt;}
.wsb5{word-spacing:8.713954pt;}
.ws5e{word-spacing:8.801102pt;}
.ws2a{word-spacing:8.820222pt;}
.ws2c{word-spacing:8.873356pt;}
.wsf9{word-spacing:9.011526pt;}
.wsc6{word-spacing:9.032757pt;}
.ws40{word-spacing:9.139025pt;}
.ws62{word-spacing:9.192159pt;}
.ws3c{word-spacing:9.224062pt;}
.wsbf{word-spacing:9.351561pt;}
.ws29{word-spacing:9.404694pt;}
.ws1c{word-spacing:9.564096pt;}
.wsec{word-spacing:9.617230pt;}
.wsed{word-spacing:9.776631pt;}
.ws57{word-spacing:9.882899pt;}
.ws8d{word-spacing:9.898808pt;}
.wsad{word-spacing:9.911534pt;}
.wsb1{word-spacing:9.936033pt;}
.ws30{word-spacing:9.989167pt;}
.ws86{word-spacing:10.032628pt;}
.ws83{word-spacing:10.035659pt;}
.wseb{word-spacing:10.042301pt;}
.ws7b{word-spacing:10.126726pt;}
.ws9a{word-spacing:10.148569pt;}
.ws75{word-spacing:10.207230pt;}
.ws71{word-spacing:10.210314pt;}
.ws3d{word-spacing:10.377114pt;}
.wsf8{word-spacing:10.499278pt;}
.ws24{word-spacing:10.520506pt;}
.wsa0{word-spacing:10.626773pt;}
.ws22{word-spacing:10.786175pt;}
.wsd8{word-spacing:10.892443pt;}
.ws9f{word-spacing:10.945577pt;}
.ws25{word-spacing:11.211246pt;}
.ws23{word-spacing:11.317514pt;}
.wsd7{word-spacing:11.583183pt;}
.wsd5{word-spacing:11.591733pt;}
.ws8a{word-spacing:11.630682pt;}
.ws8b{word-spacing:11.633219pt;}
.ws4a{word-spacing:11.636317pt;}
.ws1d{word-spacing:11.689451pt;}
.wsa3{word-spacing:11.848852pt;}
.ws78{word-spacing:11.898476pt;}
.ws79{word-spacing:11.901071pt;}
.wsdf{word-spacing:11.955120pt;}
.ws69{word-spacing:12.008254pt;}
.wsc0{word-spacing:12.061388pt;}
.wsef{word-spacing:12.072045pt;}
.wsa2{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.wsd{word-spacing:13.007258pt;}
.wsdc{word-spacing:13.124065pt;}
.wse4{word-spacing:13.336601pt;}
.wse7{word-spacing:13.389734pt;}
.wsf2{word-spacing:13.644811pt;}
.ws6a{word-spacing:13.655404pt;}
.ws27{word-spacing:13.867939pt;}
.ws1a{word-spacing:14.080475pt;}
.wsb2{word-spacing:14.291600pt;}
.wse9{word-spacing:14.346144pt;}
.wsea{word-spacing:14.452412pt;}
.wsf3{word-spacing:14.452448pt;}
.ws5f{word-spacing:14.654497pt;}
.ws60{word-spacing:14.664947pt;}
.ws4e{word-spacing:14.688369pt;}
.ws97{word-spacing:14.693702pt;}
.ws66{word-spacing:14.718081pt;}
.wsf0{word-spacing:14.835013pt;}
.wse6{word-spacing:15.090018pt;}
.ws3b{word-spacing:15.249420pt;}
.wsa8{word-spacing:15.302554pt;}
.ws20{word-spacing:15.515089pt;}
.ws9e{word-spacing:15.568223pt;}
.ws11{word-spacing:15.940160pt;}
.ws1f{word-spacing:16.099562pt;}
.wsfb{word-spacing:16.195243pt;}
.wsc2{word-spacing:16.342651pt;}
.wsb9{word-spacing:16.401318pt;}
.ws26{word-spacing:16.418365pt;}
.wsf6{word-spacing:16.492794pt;}
.ws9c{word-spacing:16.737168pt;}
.ws31{word-spacing:16.949703pt;}
.ws28{word-spacing:17.055971pt;}
.wsab{word-spacing:17.215373pt;}
.wsb7{word-spacing:17.270651pt;}
.wsd0{word-spacing:17.377318pt;}
.wsbb{word-spacing:17.746711pt;}
.wsde{word-spacing:17.761897pt;}
.wsa9{word-spacing:18.490586pt;}
.wsbc{word-spacing:18.756255pt;}
.wsb{word-spacing:18.889216pt;}
.ws90{word-spacing:19.003853pt;}
.wsce{word-spacing:19.105318pt;}
.wsa6{word-spacing:19.925200pt;}
.wsc8{word-spacing:20.411985pt;}
.wsda{word-spacing:20.641318pt;}
.ws9{word-spacing:20.802048pt;}
.wsd3{word-spacing:20.934743pt;}
.wsb4{word-spacing:21.041011pt;}
.ws95{word-spacing:21.196327pt;}
.wsc{word-spacing:22.332314pt;}
.ws61{word-spacing:22.422492pt;}
.wsbd{word-spacing:22.726651pt;}
.wsb0{word-spacing:23.219500pt;}
.wsb3{word-spacing:23.718651pt;}
.wsc5{word-spacing:24.166651pt;}
.wsf4{word-spacing:25.036741pt;}
.wsa5{word-spacing:25.062011pt;}
.wsae{word-spacing:25.815713pt;}
.wsaf{word-spacing:25.895713pt;}
.wsa4{word-spacing:26.779469pt;}
.wsd6{word-spacing:27.499985pt;}
.ws4c{word-spacing:28.692288pt;}
.ws9d{word-spacing:28.745422pt;}
.wsba{word-spacing:33.627985pt;}
.wsdd{word-spacing:33.659985pt;}
.ws5a{word-spacing:33.751271pt;}
.wsa7{word-spacing:35.846651pt;}
.wsac{word-spacing:36.821770pt;}
.wsaa{word-spacing:39.053392pt;}
.ws4b{word-spacing:41.922621pt;}
.ws87{word-spacing:153.027242pt;}
.ws7d{word-spacing:155.095989pt;}
.ws76{word-spacing:480.954101pt;}
.ws73{word-spacing:493.793887pt;}
.ws6c{word-spacing:1032.741051pt;}
._3{margin-left:-5.830180pt;}
._4{margin-left:-3.745968pt;}
._2{margin-left:-2.532429pt;}
._0{margin-left:-1.275216pt;}
._7{width:2.074563pt;}
._1{width:3.241855pt;}
._18{width:5.520236pt;}
._13{width:13.750758pt;}
._11{width:15.183104pt;}
._5{width:19.460992pt;}
._12{width:21.094145pt;}
._16{width:22.156822pt;}
._14{width:24.335311pt;}
._b{width:27.048409pt;}
._6{width:29.935821pt;}
._a{width:31.577269pt;}
._10{width:32.773051pt;}
._8{width:39.747999pt;}
._17{width:42.506750pt;}
._9{width:50.316895pt;}
._15{width:88.308400pt;}
._f{width:170.563234pt;}
._e{width:172.869047pt;}
._d{width:498.896700pt;}
._c{width:502.856588pt;}
.fs18{font-size:20.854452pt;}
.fs14{font-size:21.136379pt;}
.fs10{font-size:21.334621pt;}
.fsc{font-size:21.504224pt;}
.fs16{font-size:23.833787pt;}
.fs12{font-size:24.155992pt;}
.fse{font-size:24.382555pt;}
.fsa{font-size:24.576388pt;}
.fs8{font-size:26.566933pt;}
.fs17{font-size:29.792159pt;}
.fs13{font-size:30.194914pt;}
.fsf{font-size:30.478117pt;}
.fsb{font-size:30.720408pt;}
.fs3{font-size:31.880533pt;}
.fs15{font-size:35.750830pt;}
.fs11{font-size:36.234139pt;}
.fsd{font-size:36.573985pt;}
.fs9{font-size:36.864736pt;}
.fs7{font-size:37.193600pt;}
.fs2{font-size:40.913067pt;}
.fs6{font-size:42.507200pt;}
.fs1a{font-size:46.233131pt;}
.fs4{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs19{font-size:56.507147pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:2.482032pt;}
.y78{bottom:2.515586pt;}
.y75{bottom:2.539180pt;}
.y60{bottom:2.559366pt;}
.ye8{bottom:2.666667pt;}
.ye5{bottom:4.000000pt;}
.y7f{bottom:4.542451pt;}
.y87{bottom:6.266234pt;}
.y6e{bottom:6.377601pt;}
.y79{bottom:8.101400pt;}
.y61{bottom:8.243933pt;}
.y80{bottom:8.611336pt;}
.y67{bottom:8.760432pt;}
.y89{bottom:13.749859pt;}
.y70{bottom:14.066447pt;}
.ye7{bottom:17.333333pt;}
.y69{bottom:18.842175pt;}
.y82{bottom:19.675369pt;}
.y71{bottom:20.087057pt;}
.y66{bottom:20.242888pt;}
.y7a{bottom:21.123346pt;}
.y8f{bottom:26.085259pt;}
.y76{bottom:26.687396pt;}
.y8a{bottom:28.200220pt;}
.y6a{bottom:29.441187pt;}
.y62{bottom:30.323860pt;}
.y83{bottom:31.249338pt;}
.y7b{bottom:34.145293pt;}
.ye6{bottom:35.828227pt;}
.y72{bottom:37.612755pt;}
.y6b{bottom:40.039429pt;}
.y8b{bottom:42.475642pt;}
.y84{bottom:42.823308pt;}
.y7c{bottom:47.166482pt;}
.y6c{bottom:50.638441pt;}
.y63{bottom:52.404558pt;}
.y85{bottom:54.396519pt;}
.y73{bottom:55.139217pt;}
.y8c{bottom:56.751064pt;}
.y7d{bottom:60.188429pt;}
.y6d{bottom:61.236683pt;}
.y86{bottom:64.817259pt;}
.y64{bottom:65.949154pt;}
.ye4{bottom:66.871160pt;}
.y8d{bottom:70.654181pt;}
.y74{bottom:72.284038pt;}
.y3c{bottom:100.740000pt;}
.ye3{bottom:102.332000pt;}
.ye2{bottom:113.090667pt;}
.y3b{bottom:115.086667pt;}
.ye1{bottom:123.850667pt;}
.y3a{bottom:129.432000pt;}
.y5e{bottom:129.433333pt;}
.ye0{bottom:134.610667pt;}
.y39{bottom:143.778667pt;}
.ydf{bottom:145.369333pt;}
.y5d{bottom:151.544000pt;}
.yde{bottom:156.129333pt;}
.yb7{bottom:158.125333pt;}
.y5c{bottom:160.656000pt;}
.y38{bottom:162.382667pt;}
.ydd{bottom:166.889333pt;}
.yb6{bottom:172.470667pt;}
.ydc{bottom:177.648000pt;}
.y37{bottom:185.798667pt;}
.yb5{bottom:186.817333pt;}
.y5b{bottom:188.249333pt;}
.ydb{bottom:188.408000pt;}
.yda{bottom:199.168000pt;}
.y36{bottom:200.145333pt;}
.yb4{bottom:201.162667pt;}
.y5a{bottom:202.596000pt;}
.yd9{bottom:209.926667pt;}
.y35{bottom:214.490667pt;}
.yb3{bottom:215.509333pt;}
.y59{bottom:216.941333pt;}
.yd8{bottom:220.686667pt;}
.y34{bottom:228.837333pt;}
.yb2{bottom:229.854667pt;}
.y58{bottom:231.288000pt;}
.yd7{bottom:231.446667pt;}
.y33{bottom:243.182667pt;}
.yb1{bottom:244.201333pt;}
.y57{bottom:244.948000pt;}
.yd6{bottom:247.918667pt;}
.y32{bottom:257.529333pt;}
.yb0{bottom:258.548000pt;}
.y56{bottom:260.681333pt;}
.yd5{bottom:267.040000pt;}
.y31{bottom:271.876000pt;}
.yaf{bottom:272.893333pt;}
.yd4{bottom:281.386667pt;}
.y55{bottom:286.034667pt;}
.y30{bottom:286.221333pt;}
.yae{bottom:287.240000pt;}
.y54{bottom:295.146667pt;}
.yd3{bottom:295.732000pt;}
.y2f{bottom:300.568000pt;}
.yad{bottom:302.092000pt;}
.yd2{bottom:310.078667pt;}
.y2e{bottom:314.913333pt;}
.yac{bottom:316.438667pt;}
.yd1{bottom:324.424000pt;}
.y53{bottom:325.649333pt;}
.y2d{bottom:329.260000pt;}
.yab{bottom:330.784000pt;}
.yd0{bottom:338.770667pt;}
.y52{bottom:339.996000pt;}
.y2c{bottom:343.618667pt;}
.yaa{bottom:345.130667pt;}
.ycf{bottom:353.117333pt;}
.y51{bottom:354.341333pt;}
.ya9{bottom:356.192000pt;}
.y2b{bottom:357.964000pt;}
.ya8{bottom:359.476000pt;}
.yce{bottom:367.462667pt;}
.y50{bottom:368.688000pt;}
.y2a{bottom:372.310667pt;}
.ya7{bottom:373.822667pt;}
.ycd{bottom:381.809333pt;}
.y4f{bottom:383.034667pt;}
.y29{bottom:386.657333pt;}
.ya6{bottom:388.168000pt;}
.ycc{bottom:396.154667pt;}
.y4e{bottom:397.380000pt;}
.y28{bottom:401.002667pt;}
.ya5{bottom:402.514667pt;}
.ycb{bottom:410.021333pt;}
.y4d{bottom:411.726667pt;}
.y27{bottom:415.349333pt;}
.ya4{bottom:416.861333pt;}
.yca{bottom:424.368000pt;}
.y4c{bottom:426.072000pt;}
.y26{bottom:429.694667pt;}
.ya3{bottom:431.206667pt;}
.yc9{bottom:438.713333pt;}
.y4b{bottom:440.418667pt;}
.y25{bottom:444.041333pt;}
.ya2{bottom:445.553333pt;}
.yc8{bottom:453.060000pt;}
.y4a{bottom:455.032000pt;}
.y24{bottom:458.386667pt;}
.ya1{bottom:459.898667pt;}
.yc7{bottom:467.406667pt;}
.y23{bottom:472.733333pt;}
.ya0{bottom:474.245333pt;}
.y49{bottom:476.818667pt;}
.yc6{bottom:481.752000pt;}
.y22{bottom:487.080000pt;}
.y9f{bottom:494.800000pt;}
.yc5{bottom:496.098667pt;}
.y48{bottom:498.606667pt;}
.y21{bottom:501.425333pt;}
.yc4{bottom:510.444000pt;}
.y47{bottom:512.952000pt;}
.y9e{bottom:513.421333pt;}
.y20{bottom:515.772000pt;}
.yc3{bottom:524.790667pt;}
.y46{bottom:526.612000pt;}
.y9d{bottom:527.766667pt;}
.y1f{bottom:530.117333pt;}
.y45{bottom:540.958667pt;}
.y9c{bottom:542.113333pt;}
.y1e{bottom:544.476000pt;}
.yc2{bottom:551.938667pt;}
.y44{bottom:555.304000pt;}
.y9b{bottom:556.460000pt;}
.y1d{bottom:558.822667pt;}
.yc1{bottom:566.285333pt;}
.y43{bottom:569.650667pt;}
.y9a{bottom:570.805333pt;}
.y1c{bottom:573.168000pt;}
.yc0{bottom:580.630667pt;}
.y42{bottom:583.996000pt;}
.y99{bottom:585.152000pt;}
.y1b{bottom:587.514667pt;}
.ybf{bottom:594.977333pt;}
.y41{bottom:598.342667pt;}
.y98{bottom:599.497333pt;}
.y1a{bottom:601.860000pt;}
.ybe{bottom:609.322667pt;}
.y40{bottom:612.689333pt;}
.y19{bottom:616.206667pt;}
.ybd{bottom:623.669333pt;}
.y97{bottom:624.798667pt;}
.y18{bottom:630.553333pt;}
.y3f{bottom:633.366667pt;}
.y96{bottom:633.910667pt;}
.ybc{bottom:638.014667pt;}
.y17{bottom:644.898667pt;}
.y3e{bottom:645.321333pt;}
.ybb{bottom:652.361333pt;}
.y3d{bottom:657.276000pt;}
.y16{bottom:659.257333pt;}
.y95{bottom:666.201333pt;}
.yba{bottom:666.708000pt;}
.y15{bottom:673.604000pt;}
.y94{bottom:680.548000pt;}
.yb9{bottom:681.053333pt;}
.y14{bottom:687.949333pt;}
.y93{bottom:695.400000pt;}
.y13{bottom:702.296000pt;}
.yb8{bottom:709.745333pt;}
.y92{bottom:709.746667pt;}
.y12{bottom:716.641333pt;}
.y11{bottom:730.988000pt;}
.y91{bottom:739.465333pt;}
.y10{bottom:745.333333pt;}
.y90{bottom:750.225333pt;}
.y6f{bottom:757.898667pt;}
.y88{bottom:760.102667pt;}
.yf{bottom:763.937333pt;}
.ye{bottom:779.796000pt;}
.yd{bottom:791.750667pt;}
.yc{bottom:803.705333pt;}
.yb{bottom:815.660000pt;}
.ya{bottom:827.616000pt;}
.y9{bottom:839.570667pt;}
.y68{bottom:842.104000pt;}
.y81{bottom:842.409333pt;}
.y8{bottom:851.525333pt;}
.y7{bottom:863.481333pt;}
.y6{bottom:875.436000pt;}
.y5{bottom:909.840000pt;}
.y77{bottom:914.405333pt;}
.y5f{bottom:915.357333pt;}
.y4{bottom:919.197333pt;}
.y3{bottom:924.276000pt;}
.y7e{bottom:925.426935pt;}
.y65{bottom:926.570748pt;}
.y2{bottom:934.505333pt;}
.y1{bottom:961.821333pt;}
.h33{height:17.333333pt;}
.h4{height:21.933807pt;}
.h25{height:22.646185pt;}
.h18{height:23.040306pt;}
.h2b{height:24.274814pt;}
.h22{height:24.602980pt;}
.h1d{height:24.833736pt;}
.h15{height:24.883697pt;}
.h14{height:25.031156pt;}
.h2e{height:25.283285pt;}
.h26{height:25.625085pt;}
.h29{height:25.628116pt;}
.h20{height:25.865428pt;}
.h19{height:26.074132pt;}
.h2c{height:26.813123pt;}
.h1e{height:27.430489pt;}
.h32{height:29.244954pt;}
.h35{height:29.333333pt;}
.h28{height:29.477176pt;}
.h2f{height:29.925069pt;}
.h16{height:29.993263pt;}
.h36{height:31.762703pt;}
.h7{height:32.900710pt;}
.h5{height:33.140710pt;}
.h9{height:33.187635pt;}
.h8{height:33.426739pt;}
.ha{height:36.556100pt;}
.h34{height:39.234943pt;}
.hc{height:39.850400pt;}
.h2{height:40.505190pt;}
.h6{height:42.248474pt;}
.hd{height:45.092358pt;}
.hb{height:45.097692pt;}
.h2d{height:47.367301pt;}
.h23{height:48.010681pt;}
.h1f{height:48.457923pt;}
.h1b{height:48.843147pt;}
.h3{height:49.262857pt;}
.h10{height:49.572358pt;}
.h24{height:52.087279pt;}
.h31{height:52.986400pt;}
.h17{height:52.993320pt;}
.h27{height:71.995772pt;}
.h21{height:72.001076pt;}
.h13{height:73.253368pt;}
.h1a{height:73.254139pt;}
.h30{height:74.450688pt;}
.h11{height:75.797067pt;}
.he{height:77.048021pt;}
.h2a{height:82.307770pt;}
.h1c{height:84.205948pt;}
.h1{height:87.734861pt;}
.h12{height:110.893355pt;}
.hf{height:113.496021pt;}
.h0{height:1056.000000pt;}
.w7{width:156.981148pt;}
.w5{width:260.430692pt;}
.w2{width:264.964249pt;}
.w4{width:302.275709pt;}
.w1{width:302.277298pt;}
.w6{width:302.281594pt;}
.w3{width:302.282527pt;}
.w8{width:685.147880pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:8.810540pt;}
.x18{left:16.002975pt;}
.x17{left:23.021188pt;}
.x20{left:25.581692pt;}
.x16{left:27.990366pt;}
.x23{left:29.277511pt;}
.x1f{left:30.465112pt;}
.x19{left:32.702837pt;}
.x22{left:34.834806pt;}
.x9{left:65.285333pt;}
.x30{left:67.985707pt;}
.x2f{left:71.053372pt;}
.x8{left:78.569333pt;}
.x15{left:82.080000pt;}
.x25{left:91.852000pt;}
.x1b{left:98.761458pt;}
.x1a{left:112.326000pt;}
.x26{left:121.910667pt;}
.x2{left:123.784000pt;}
.x1d{left:139.811701pt;}
.x24{left:143.469673pt;}
.x3{left:150.650667pt;}
.xb{left:154.697333pt;}
.x7{left:163.276000pt;}
.x1{left:167.097333pt;}
.xa{left:180.825333pt;}
.x2a{left:191.844000pt;}
.x27{left:219.222667pt;}
.x2b{left:238.289333pt;}
.x2c{left:263.529333pt;}
.x28{left:292.841333pt;}
.x4{left:300.482667pt;}
.x29{left:323.580000pt;}
.x5{left:369.068000pt;}
.xc{left:415.970667pt;}
.x1e{left:426.996000pt;}
.xf{left:429.481333pt;}
.x2e{left:435.002667pt;}
.xd{left:442.537333pt;}
.x21{left:459.678162pt;}
.x12{left:469.442667pt;}
.xe{left:508.488000pt;}
.x10{left:517.712000pt;}
.x13{left:518.768000pt;}
.x2d{left:546.149333pt;}
.x14{left:555.120000pt;}
.x11{left:585.884000pt;}
.x6{left:631.480000pt;}
}




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