
    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_962b8b601c0b641c331771c1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight: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_92be7de9169648fe6484f952.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926270;font-style:normal;font-weight: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_5a000a1d1a7c7a82bbba8582.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight: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_3c1f23a14f515751a8c2758d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6432659940a561f5e8ce4fe7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight: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_7e11957d59a0f90d0a0f3803.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935547;font-style:normal;font-weight: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_30da0c56aa3d1861a94929fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight: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_37dd709c288d877dd03bfda9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight: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_cde8b7dc7818b6edff6a948c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight: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_97ff14f29938e8bdb5829d53.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940918;font-style:normal;font-weight: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_c3c43ebc84afdd3aafc03b45.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.806000;font-style:normal;font-weight: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_fea873bdaaba0f554f86a9ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_33d96554ead169f473a94737.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.737000;font-style:normal;font-weight: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_c89384e5af18316267a1a4df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight: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_bfa138115df3137d8ce9b93b.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight: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_cb114e1c2029015f06ac69bb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight: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_6af7e74ca702f9f14a44ef73.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight: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_39b2d3f609cf2cffac57fb69.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.940918;font-style:normal;font-weight: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_b0c9a46d0df3e367d25a6bef.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_277aae7306dc7c5c29f77eb9.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_b0c9a46d0df3e367d25a6bef.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_8135794e86de49c8bfb3740f.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_8d29b4ef3ef76628b41e1801.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.479000;font-style:normal;font-weight: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_dfdac08e68d9a2574826d579.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.940918;font-style:normal;font-weight: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_320481af7bccfcaa8402c12a.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_3f56456c2aecbb3efa3b0db9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.737000;font-style:normal;font-weight: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_81e817060ba88ce3d1082f97.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.234000;font-style:normal;font-weight: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_15e14aee120a70d5c2d82100.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_46d31c4cc86ebfebb353f8a4.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940918;font-style:normal;font-weight: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_a23bac943430e758e08a5af7.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_3f56456c2aecbb3efa3b0db9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.737000;font-style:normal;font-weight: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_81e817060ba88ce3d1082f97.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.234000;font-style:normal;font-weight: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_d58cc679248d04eaf5ed8354.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.688000;font-style:normal;font-weight: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_0432280808559b24080cc926.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.925293;font-style:normal;font-weight: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_60bdf97879846ccd10239242.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.940918;font-style:normal;font-weight: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_05d2a9b291bc9f32feb1c861.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.694000;font-style:normal;font-weight: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_c0e29116969b814b58b9943e.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_d02421e6753c3fd408ac7921.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_02bbd8ff89cb2ca8a90c4c1e.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_bd28580ac859cf39a553a951.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.694000;font-style:normal;font-weight: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_b4afd6901b49771e642a4d42.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.674000;font-style:normal;font-weight: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_ead8685653c3bf185a1ad9bb.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_abe50292c7fcaaeec8b0e88b.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.940918;font-style:normal;font-weight: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_65f679b5135755d4ca35a8d2.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.738000;font-style:normal;font-weight: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_3f56456c2aecbb3efa3b0db9.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.737000;font-style:normal;font-weight: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_f0994e642d96693b6aa237a3.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.740234;font-style:normal;font-weight: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_e2e9cf489f49c4f1cd0c1d02.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_92fb13ae407e058eeaf8d313.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.938477;font-style:normal;font-weight: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_268a545fbc25b36bb4d5f82b.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.914551;font-style:normal;font-weight: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_f9436e44275ef998633f12e2.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.938477;font-style:normal;font-weight: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_caad9ba2e22cb8a1b3c19d0b.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.940918;font-style:normal;font-weight: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_d2af80c6b4da3265471ba27d.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_3c8b68d9287bd1c35355df32.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.479000;font-style:normal;font-weight: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_6b3b075c454fe140c52cba5d.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.940918;font-style:normal;font-weight: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_da71c45c38695668b08dad2e.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_47362d0ace2a6598f38ffe33.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.737000;font-style:normal;font-weight: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_79d306b5517d087fb00ddb11.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.940918;font-style:normal;font-weight: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_513e7435c5f9115d280fdf79.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_ee1dcd03a4ab4d2178371b5f.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.704000;font-style:normal;font-weight: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_45744703427fe7f9aa4ed9b2.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_bcdf44a6d7cdc49af0b119f4.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.940918;font-style:normal;font-weight: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_826ca1e8dfb7a534fb708e3e.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.453000;font-style:normal;font-weight: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_ee1dcd03a4ab4d2178371b5f.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.704000;font-style:normal;font-weight: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_a957ec21b6999a401e37865d.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.632000;font-style:normal;font-weight: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_b3497fa866cca009c11e6193.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.940918;font-style:normal;font-weight: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_45e0fb831d8b2c7f14695b81.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.442000;font-style:normal;font-weight: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_ee1dcd03a4ab4d2178371b5f.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.704000;font-style:normal;font-weight: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_a957ec21b6999a401e37865d.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.632000;font-style:normal;font-weight: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_ac7f98a6262a0b962a6c3ed2.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.940918;font-style:normal;font-weight: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_826ca1e8dfb7a534fb708e3e.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.453000;font-style:normal;font-weight: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_ee1dcd03a4ab4d2178371b5f.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.704000;font-style:normal;font-weight: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_a957ec21b6999a401e37865d.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.632000;font-style:normal;font-weight: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_eb6f0bc8287217a68b3dd6c4.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.940918;font-style:normal;font-weight: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_0eafd27b2b5b94d9a4e75119.woff2')format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url('chunks/assets/font_ee1dcd03a4ab4d2178371b5f.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.704000;font-style:normal;font-weight: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_ec423418f409214b58882754.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_9b5d28ae843b3627ab5aaa50.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_b046ef6c3aae47ce0a42b423.woff2')format("woff");}.ff4e{font-family:ff4e;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:ff4f;src:url('chunks/assets/font_f0158bcf63247018e1ca2791.woff2')format("woff");}.ff4f{font-family:ff4f;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:ff50;src:url('chunks/assets/font_fa469ab7f5bf7d9856f7bceb.woff2')format("woff");}.ff50{font-family:ff50;line-height:0.940918;font-style:normal;font-weight: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_0eafd27b2b5b94d9a4e75119.woff2')format("woff");}.ff51{font-family:ff51;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:ff52;src:url('chunks/assets/font_ec481e69d29e90a916693d1e.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.704000;font-style:normal;font-weight: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_ec423418f409214b58882754.woff2')format("woff");}.ff53{font-family:ff53;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:ff54;src:url('chunks/assets/font_2e424c565705518eef208382.woff2')format("woff");}.ff54{font-family:ff54;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:ff55;src:url('chunks/assets/font_e73bb803c6fa9978d9fd6345.woff2')format("woff");}.ff55{font-family:ff55;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;}
.m3{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);}
.m1{transform:matrix(0.232357,-0.092250,0.092250,0.232357,0,0);-ms-transform:matrix(0.232357,-0.092250,0.092250,0.232357,0,0);-webkit-transform:matrix(0.232357,-0.092250,0.092250,0.232357,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);}
.m2{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-63.360000px;}
.v2{vertical-align:-60.480000px;}
.vc{vertical-align:-51.840000px;}
.v16{vertical-align:-19.240345px;}
.v17{vertical-align:-17.497573px;}
.v14{vertical-align:-15.743939px;}
.v1{vertical-align:-14.449046px;}
.v4{vertical-align:-12.350470px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:2.880000px;}
.v18{vertical-align:48.906984px;}
.v6{vertical-align:64.900700px;}
.vf{vertical-align:71.026875px;}
.va{vertical-align:116.310914px;}
.v13{vertical-align:127.289855px;}
.v9{vertical-align:130.706544px;}
.v5{vertical-align:135.261148px;}
.v12{vertical-align:143.044332px;}
.ve{vertical-align:148.028859px;}
.vb{vertical-align:181.192355px;}
.v8{vertical-align:191.726683px;}
.v15{vertical-align:198.295654px;}
.v7{vertical-align:201.066991px;}
.v11{vertical-align:209.824348px;}
.v10{vertical-align:220.046317px;}
.lsbf{letter-spacing:-11.383199px;}
.ls31{letter-spacing:-8.002800px;}
.ls0{letter-spacing:-6.560400px;}
.ls97{letter-spacing:-5.712000px;}
.ls21{letter-spacing:-0.336000px;}
.ls15{letter-spacing:-0.316800px;}
.ls17{letter-spacing:-0.307200px;}
.ls88{letter-spacing:-0.302400px;}
.ls5d{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.280800px;}
.ls12{letter-spacing:-0.278400px;}
.ls43{letter-spacing:-0.237600px;}
.ls26{letter-spacing:-0.214200px;}
.ls34{letter-spacing:-0.204000px;}
.ls10{letter-spacing:-0.201600px;}
.ls14{letter-spacing:-0.153600px;}
.ls5e{letter-spacing:-0.150000px;}
.ls18{letter-spacing:-0.142800px;}
.ls13{letter-spacing:-0.124800px;}
.ls9b{letter-spacing:-0.100800px;}
.ls25{letter-spacing:-0.071400px;}
.ls2{letter-spacing:-0.064800px;}
.ls4a{letter-spacing:-0.043200px;}
.ls32{letter-spacing:-0.036000px;}
.ls48{letter-spacing:-0.032400px;}
.ls22{letter-spacing:-0.021600px;}
.ls49{letter-spacing:-0.010800px;}
.ls1{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.005069px;}
.ls73{letter-spacing:0.005547px;}
.ls3e{letter-spacing:0.010800px;}
.ls5a{letter-spacing:0.012778px;}
.ls75{letter-spacing:0.013984px;}
.ls50{letter-spacing:0.014698px;}
.ls55{letter-spacing:0.014852px;}
.ls6b{letter-spacing:0.016085px;}
.ls70{letter-spacing:0.016254px;}
.ls9d{letter-spacing:0.018340px;}
.ls94{letter-spacing:0.019419px;}
.ls8e{letter-spacing:0.019850px;}
.ls1b{letter-spacing:0.021600px;}
.ls52{letter-spacing:0.022407px;}
.ls3c{letter-spacing:0.022742px;}
.ls62{letter-spacing:0.024000px;}
.ls8d{letter-spacing:0.024218px;}
.ls6d{letter-spacing:0.024522px;}
.ls5c{letter-spacing:0.027901px;}
.ls51{letter-spacing:0.028000px;}
.ls6c{letter-spacing:0.030643px;}
.ls23{letter-spacing:0.032400px;}
.lsf{letter-spacing:0.032731px;}
.ls59{letter-spacing:0.037629px;}
.ls74{letter-spacing:0.041181px;}
.ls42{letter-spacing:0.060801px;}
.ls27{letter-spacing:0.071400px;}
.lsa3{letter-spacing:0.075749px;}
.ls56{letter-spacing:0.090882px;}
.ls47{letter-spacing:0.092569px;}
.ls71{letter-spacing:0.099461px;}
.ls44{letter-spacing:0.100800px;}
.ls8b{letter-spacing:0.101933px;}
.ls9f{letter-spacing:0.108661px;}
.ls91{letter-spacing:0.110465px;}
.lsa6{letter-spacing:0.120552px;}
.ls24{letter-spacing:0.142800px;}
.lsb2{letter-spacing:0.143401px;}
.ls20{letter-spacing:0.144001px;}
.lsb1{letter-spacing:0.144061px;}
.lsb3{letter-spacing:0.144601px;}
.ls16{letter-spacing:0.153600px;}
.ls60{letter-spacing:0.201600px;}
.ls28{letter-spacing:0.214200px;}
.ls9c{letter-spacing:0.218400px;}
.ls11{letter-spacing:0.230400px;}
.ls35{letter-spacing:0.234000px;}
.ls98{letter-spacing:0.237600px;}
.ls1f{letter-spacing:0.244800px;}
.ls61{letter-spacing:0.259200px;}
.lsb4{letter-spacing:0.268800px;}
.ls7{letter-spacing:0.278400px;}
.ls5{letter-spacing:0.282003px;}
.ls6{letter-spacing:0.282603px;}
.ls19{letter-spacing:0.285600px;}
.ls3{letter-spacing:0.288000px;}
.ls89{letter-spacing:0.295800px;}
.ls4b{letter-spacing:0.299987px;}
.ls37{letter-spacing:0.302400px;}
.ls36{letter-spacing:0.305984px;}
.ls4{letter-spacing:0.312003px;}
.lsb0{letter-spacing:0.316200px;}
.ls9{letter-spacing:0.316800px;}
.ls33{letter-spacing:0.360000px;}
.ls45{letter-spacing:0.853692px;}
.ls81{letter-spacing:1.602003px;}
.ls82{letter-spacing:1.632003px;}
.ls7d{letter-spacing:2.802003px;}
.lsa2{letter-spacing:3.382927px;}
.lsa9{letter-spacing:3.382932px;}
.ls3b{letter-spacing:3.754475px;}
.ls3d{letter-spacing:5.165404px;}
.ls8c{letter-spacing:5.437817px;}
.ls38{letter-spacing:5.682003px;}
.ls39{letter-spacing:5.682603px;}
.ls3a{letter-spacing:5.712003px;}
.lsa4{letter-spacing:5.956209px;}
.lsa5{letter-spacing:5.998952px;}
.lsb7{letter-spacing:7.194001px;}
.lsb8{letter-spacing:7.224001px;}
.ls30{letter-spacing:7.362003px;}
.ls1d{letter-spacing:8.034001px;}
.ls1e{letter-spacing:8.064001px;}
.ls84{letter-spacing:8.442003px;}
.ls83{letter-spacing:8.442603px;}
.ls85{letter-spacing:8.472003px;}
.ls7a{letter-spacing:8.741403px;}
.ls7b{letter-spacing:8.742003px;}
.ls79{letter-spacing:8.742603px;}
.ls9e{letter-spacing:8.941431px;}
.lsbb{letter-spacing:9.624001px;}
.lsbc{letter-spacing:9.654001px;}
.ls86{letter-spacing:9.732003px;}
.ls87{letter-spacing:9.762003px;}
.ls65{letter-spacing:10.602003px;}
.ls64{letter-spacing:10.602063px;}
.ls66{letter-spacing:10.632603px;}
.lsad{letter-spacing:10.913401px;}
.lsac{letter-spacing:10.914001px;}
.lsab{letter-spacing:10.914061px;}
.lsaf{letter-spacing:10.943401px;}
.lsae{letter-spacing:10.944601px;}
.ls29{letter-spacing:11.292003px;}
.ls54{letter-spacing:11.521573px;}
.ls6f{letter-spacing:12.609129px;}
.ls9a{letter-spacing:13.293978px;}
.ls99{letter-spacing:13.313354px;}
.lsb5{letter-spacing:14.934001px;}
.lsb6{letter-spacing:14.964001px;}
.ls8a{letter-spacing:14.994001px;}
.lsb{letter-spacing:15.672003px;}
.lsa{letter-spacing:16.812003px;}
.ls57{letter-spacing:18.242504px;}
.lsb9{letter-spacing:18.264001px;}
.lsba{letter-spacing:18.294001px;}
.ls76{letter-spacing:19.062003px;}
.ls77{letter-spacing:19.091403px;}
.ls78{letter-spacing:19.092003px;}
.ls72{letter-spacing:19.964470px;}
.ls5b{letter-spacing:20.205211px;}
.ls4e{letter-spacing:20.650039px;}
.ls53{letter-spacing:20.817408px;}
.ls4f{letter-spacing:22.012625px;}
.ls69{letter-spacing:22.599259px;}
.ls6e{letter-spacing:22.782427px;}
.ls41{letter-spacing:22.925280px;}
.ls2a{letter-spacing:23.382003px;}
.ls6a{letter-spacing:24.090463px;}
.lse{letter-spacing:24.312003px;}
.ls4d{letter-spacing:26.721561px;}
.ls80{letter-spacing:27.012003px;}
.ls40{letter-spacing:27.033654px;}
.ls4c{letter-spacing:27.066660px;}
.ls7c{letter-spacing:27.582003px;}
.ls68{letter-spacing:29.243891px;}
.ls67{letter-spacing:29.621564px;}
.ls93{letter-spacing:32.389821px;}
.lsa1{letter-spacing:32.997764px;}
.lsa8{letter-spacing:32.997814px;}
.ls96{letter-spacing:34.842573px;}
.lsbe{letter-spacing:34.854001px;}
.lsbd{letter-spacing:34.884001px;}
.ls2c{letter-spacing:35.382003px;}
.ls90{letter-spacing:35.615873px;}
.ls46{letter-spacing:36.801319px;}
.ls7e{letter-spacing:37.812003px;}
.ls92{letter-spacing:38.289858px;}
.lsa7{letter-spacing:38.889037px;}
.lsa0{letter-spacing:38.900869px;}
.ls8f{letter-spacing:42.103558px;}
.ls95{letter-spacing:44.304990px;}
.ls7f{letter-spacing:50.562003px;}
.lsaa{letter-spacing:54.011944px;}
.ls63{letter-spacing:58.775948px;}
.ls5f{letter-spacing:58.776008px;}
.ls2f{letter-spacing:58.812003px;}
.ls2e{letter-spacing:65.802003px;}
.ls2d{letter-spacing:65.832003px;}
.ls1c{letter-spacing:99.300002px;}
.ls8{letter-spacing:101.400003px;}
.ls2b{letter-spacing:105.822003px;}
.lsd{letter-spacing:191.172003px;}
.lsc{letter-spacing:191.202003px;}
.ls3f{letter-spacing:302.189400px;}
.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;}
}
.ws32{word-spacing:-46.972813px;}
.ws24{word-spacing:-41.550013px;}
.ws23{word-spacing:-41.400013px;}
.ws19{word-spacing:-36.904173px;}
.ws20{word-spacing:-30.056400px;}
.ws25{word-spacing:-30.045600px;}
.ws1d{word-spacing:-30.034800px;}
.ws1e{word-spacing:-30.013200px;}
.ws1f{word-spacing:-30.002400px;}
.ws1c{word-spacing:-29.991600px;}
.ws21{word-spacing:-29.980800px;}
.ws31{word-spacing:-28.672199px;}
.ws2b{word-spacing:-28.651799px;}
.wse{word-spacing:-28.641599px;}
.ws13{word-spacing:-28.600799px;}
.ws14{word-spacing:-28.570199px;}
.wsf{word-spacing:-28.498799px;}
.ws12{word-spacing:-28.427399px;}
.ws15{word-spacing:-28.355999px;}
.ws10{word-spacing:-28.284599px;}
.wsd{word-spacing:-28.213199px;}
.ws11{word-spacing:-28.141799px;}
.ws1{word-spacing:-27.004797px;}
.ws5{word-spacing:-26.966397px;}
.ws8{word-spacing:-26.841597px;}
.ws4{word-spacing:-26.687997px;}
.ws3{word-spacing:-26.563197px;}
.ws6{word-spacing:-26.534397px;}
.ws2{word-spacing:-26.409597px;}
.ws9{word-spacing:-26.380797px;}
.ws7{word-spacing:-26.371197px;}
.ws2f{word-spacing:-23.251199px;}
.ws2a{word-spacing:-22.643999px;}
.ws28{word-spacing:-20.016000px;}
.ws17{word-spacing:-19.778400px;}
.ws29{word-spacing:-19.735200px;}
.ws33{word-spacing:-16.972799px;}
.ws1b{word-spacing:-0.195423px;}
.ws27{word-spacing:-0.120906px;}
.ws30{word-spacing:-0.118464px;}
.ws2d{word-spacing:-0.107596px;}
.ws1a{word-spacing:-0.102854px;}
.ws22{word-spacing:-0.082303px;}
.ws2c{word-spacing:-0.080682px;}
.ws2e{word-spacing:-0.080564px;}
.wsb{word-spacing:-0.051600px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.300000px;}
.wsa{word-spacing:15.984720px;}
.ws18{word-spacing:26.805966px;}
.ws26{word-spacing:30.877533px;}
.ws16{word-spacing:2019.635400px;}
._14{margin-left:-96.379985px;}
._11{margin-left:-65.111927px;}
._24{margin-left:-14.856526px;}
._23{margin-left:-10.332891px;}
._9{margin-left:-7.777884px;}
._3{margin-left:-6.480000px;}
._6{margin-left:-5.255927px;}
._13{margin-left:-4.134180px;}
._15{margin-left:-2.406121px;}
._2{margin-left:-1.296000px;}
._4{width:1.008000px;}
._16{width:2.758819px;}
._1{width:5.712000px;}
._0{width:6.804000px;}
._8{width:8.010956px;}
._1a{width:9.900268px;}
._b{width:11.661639px;}
._7{width:14.773254px;}
._10{width:18.474023px;}
._1b{width:19.556694px;}
._d{width:22.918823px;}
._c{width:23.920834px;}
._1e{width:28.178130px;}
._f{width:35.224880px;}
._1f{width:37.122054px;}
._20{width:38.473241px;}
._a{width:46.980043px;}
._21{width:50.340046px;}
._12{width:58.542041px;}
._22{width:99.299762px;}
._5{width:101.400003px;}
._e{width:106.638073px;}
._1d{width:685.590721px;}
._19{width:718.441921px;}
._1c{width:858.859199px;}
._18{width:968.579999px;}
._17{width:1046.659953px;}
.fcd{color:rgb(237,125,49);}
.fc0{color:rgb(127,127,127);}
.fc2{color:rgb(137,137,137);}
.fc4{color:rgb(0,0,0);}
.fca{color:rgb(253,135,54);}
.fc1{color:rgb(255,255,255);}
.fc3{color:rgb(255,137,13);}
.fc6{color:rgb(255,133,54);}
.fcb{color:rgb(255,140,56);}
.fc7{color:transparent;}
.fc8{color:rgb(118,113,113);}
.fc9{color:rgb(175,171,171);}
.fc5{color:rgb(255,0,0);}
.fcc{color:rgb(84,130,53);}
.fs7{font-size:0.000003px;}
.fs21{font-size:55.723103px;}
.fs1b{font-size:55.804320px;}
.fs1f{font-size:56.394638px;}
.fs19{font-size:56.477026px;}
.fsf{font-size:57.611845px;}
.fs14{font-size:65.103045px;}
.fs15{font-size:65.999995px;}
.fs12{font-size:67.152003px;}
.fs9{font-size:67.401177px;}
.fsd{font-size:71.997902px;}
.fs3{font-size:72.000000px;}
.fs17{font-size:73.490685px;}
.fs1d{font-size:75.317040px;}
.fs20{font-size:79.604661px;}
.fs1a{font-size:79.720685px;}
.fs1e{font-size:80.564000px;}
.fs18{font-size:80.681698px;}
.fs25{font-size:81.621788px;}
.fse{font-size:82.302872px;}
.fs29{font-size:82.924270px;}
.fs2b{font-size:82.924396px;}
.fs0{font-size:83.999995px;}
.fs27{font-size:87.802680px;}
.fs23{font-size:89.751383px;}
.fs13{font-size:93.004617px;}
.fs11{font-size:95.931709px;}
.fs5{font-size:95.999990px;}
.fs8{font-size:96.287672px;}
.fs6{font-size:101.999995px;}
.fsc{font-size:102.854440px;}
.fs16{font-size:104.986995px;}
.fs1c{font-size:107.596080px;}
.fsa{font-size:108.000000px;}
.fs24{font-size:116.602888px;}
.fs28{font-size:118.463583px;}
.fs2a{font-size:118.463762px;}
.fsb{font-size:119.999998px;}
.fs26{font-size:125.432760px;}
.fs22{font-size:128.216630px;}
.fs2{font-size:144.000000px;}
.fs10{font-size:150.000048px;}
.fs4{font-size:168.000048px;}
.fs1{font-size:216.000000px;}
.y8b{bottom:-1.180500px;}
.y0{bottom:0.000000px;}
.y93{bottom:1.647802px;}
.y89{bottom:1.649828px;}
.y92{bottom:4.634195px;}
.y88{bottom:4.640574px;}
.y9b{bottom:4.836765px;}
.ya2{bottom:4.837365px;}
.ya5{bottom:5.203769px;}
.y8e{bottom:5.251323px;}
.y84{bottom:5.259026px;}
.y98{bottom:5.319314px;}
.y41{bottom:5.365024px;}
.y4f{bottom:5.413852px;}
.y17{bottom:5.605658px;}
.y4c{bottom:6.615451px;}
.y3d{bottom:6.704902px;}
.y65{bottom:7.239734px;}
.yae{bottom:7.557583px;}
.yb1{bottom:7.722292px;}
.y82{bottom:12.161709px;}
.y61{bottom:13.680000px;}
.y1c{bottom:14.400000px;}
.y5c{bottom:15.840000px;}
.yb6{bottom:16.200000px;}
.y5e{bottom:17.640000px;}
.y52{bottom:18.000000px;}
.y91{bottom:18.311223px;}
.y87{bottom:18.337914px;}
.y1a{bottom:18.360000px;}
.y8d{bottom:20.778190px;}
.y83{bottom:20.808543px;}
.y40{bottom:21.226652px;}
.y7a{bottom:21.240000px;}
.yd{bottom:21.600000px;}
.y9a{bottom:21.945115px;}
.y4e{bottom:22.690159px;}
.y4b{bottom:23.066912px;}
.ya4{bottom:23.606928px;}
.y97{bottom:24.130868px;}
.y16{bottom:24.162284px;}
.y64{bottom:25.244099px;}
.y3c{bottom:26.527085px;}
.y62{bottom:29.107815px;}
.y1d{bottom:29.520000px;}
.yb0{bottom:30.552872px;}
.y3e{bottom:31.680000px;}
.y4{bottom:32.040000px;}
.yad{bottom:33.855830px;}
.y95{bottom:37.440000px;}
.y48{bottom:38.160000px;}
.y60{bottom:42.120000px;}
.yc{bottom:51.840000px;}
.y69{bottom:55.440000px;}
.y56{bottom:60.480000px;}
.y4a{bottom:67.538033px;}
.y32{bottom:67.680000px;}
.yc0{bottom:68.400000px;}
.y5f{bottom:70.560000px;}
.yb5{bottom:73.800000px;}
.y63{bottom:73.913153px;}
.y68{bottom:83.880000px;}
.y55{bottom:88.920000px;}
.y37{bottom:93.960000px;}
.y31{bottom:96.120000px;}
.yb4{bottom:104.040000px;}
.y7e{bottom:109.800000px;}
.y67{bottom:112.320000px;}
.y76{bottom:117.720000px;}
.yb{bottom:119.880000px;}
.y30{bottom:124.560000px;}
.yb3{bottom:133.920000px;}
.y7d{bottom:139.680000px;}
.y66{bottom:141.120000px;}
.y35{bottom:145.800113px;}
.y75{bottom:146.160000px;}
.ya{bottom:148.320000px;}
.y8a{bottom:151.245600px;}
.y2f{bottom:153.000000px;}
.y1e{bottom:156.960000px;}
.y49{bottom:157.398150px;}
.y36{bottom:159.480113px;}
.ybe{bottom:167.400000px;}
.y74{bottom:174.600000px;}
.y9{bottom:177.120000px;}
.y50{bottom:184.680000px;}
.ybd{bottom:197.640000px;}
.y2e{bottom:202.320000px;}
.y96{bottom:215.028450px;}
.y18{bottom:215.280000px;}
.y9f{bottom:218.880000px;}
.y2d{bottom:230.760000px;}
.ya0{bottom:258.480000px;}
.y2c{bottom:259.200000px;}
.y1f{bottom:267.120000px;}
.y51{bottom:267.480000px;}
.y6{bottom:271.800000px;}
.y79{bottom:275.400000px;}
.y19{bottom:285.120000px;}
.ybc{bottom:286.920000px;}
.y2b{bottom:287.640000px;}
.y86{bottom:303.836400px;}
.y78{bottom:303.840000px;}
.y3f{bottom:305.722050px;}
.y99{bottom:308.764050px;}
.y9d{bottom:310.320000px;}
.y5b{bottom:320.760000px;}
.y25{bottom:326.880000px;}
.y77{bottom:332.280000px;}
.y85{bottom:338.760000px;}
.y14{bottom:341.640000px;}
.ybf{bottom:347.760000px;}
.y5a{bottom:349.200000px;}
.y9e{bottom:349.560000px;}
.y8c{bottom:364.056150px;}
.y22{bottom:365.400000px;}
.y13{bottom:370.080000px;}
.y34{bottom:370.080113px;}
.y59{bottom:377.640000px;}
.y29{bottom:393.120000px;}
.y12{bottom:398.520000px;}
.y42{bottom:398.942400px;}
.y9c{bottom:403.200000px;}
.y73{bottom:405.000000px;}
.y58{bottom:406.080000px;}
.y28{bottom:421.560000px;}
.y11{bottom:426.960000px;}
.y72{bottom:433.440000px;}
.y57{bottom:434.880000px;}
.ybb{bottom:439.560000px;}
.y80{bottom:441.360000px;}
.y3{bottom:449.280000px;}
.y27{bottom:450.000000px;}
.y71{bottom:462.240000px;}
.y7f{bottom:462.600000px;}
.ya3{bottom:468.636450px;}
.yba{bottom:469.440000px;}
.ya9{bottom:471.240000px;}
.y26{bottom:478.440000px;}
.y10{bottom:485.640000px;}
.y70{bottom:490.680000px;}
.y94{bottom:502.889400px;}
.yaa{bottom:504.000000px;}
.yf{bottom:514.080000px;}
.y24{bottom:517.680000px;}
.y6f{bottom:519.120000px;}
.y4d{bottom:529.811250px;}
.yb9{bottom:549.360000px;}
.ya1{bottom:555.064800px;}
.ya7{bottom:556.560000px;}
.y23{bottom:563.040000px;}
.y15{bottom:566.238750px;}
.ye{bottom:570.960000px;}
.y2a{bottom:581.400000px;}
.y47{bottom:585.000000px;}
.y54{bottom:586.080000px;}
.y6e{bottom:589.320000px;}
.y3b{bottom:589.790700px;}
.y2{bottom:592.920000px;}
.ya8{bottom:595.800000px;}
.y3a{bottom:600.840000px;}
.yac{bottom:605.177100px;}
.yb8{bottom:610.560000px;}
.yaf{bottom:611.113350px;}
.y46{bottom:613.440000px;}
.y6d{bottom:617.760000px;}
.y81{bottom:632.520000px;}
.y21{bottom:637.920000px;}
.yb7{bottom:640.800000px;}
.y45{bottom:642.240000px;}
.y6c{bottom:646.200000px;}
.y39{bottom:647.640000px;}
.y8{bottom:649.080000px;}
.ya6{bottom:649.800000px;}
.y33{bottom:653.400000px;}
.yab{bottom:655.200000px;}
.y90{bottom:655.304850px;}
.yb2{bottom:658.800000px;}
.y53{bottom:663.840015px;}
.y6a{bottom:664.560015px;}
.y20{bottom:667.800015px;}
.y5d{bottom:669.600015px;}
.y6b{bottom:675.000015px;}
.y38{bottom:676.080015px;}
.y7c{bottom:676.440015px;}
.y7{bottom:677.880015px;}
.y44{bottom:681.120015px;}
.y8f{bottom:695.520015px;}
.y5{bottom:726.840015px;}
.y43{bottom:727.560015px;}
.y7b{bottom:734.760015px;}
.y1{bottom:748.080015px;}
.y1b{bottom:775.440015px;}
.ha{height:0.000002px;}
.h29{height:18.311250px;}
.h22{height:18.337920px;}
.h27{height:20.778150px;}
.h20{height:20.808540px;}
.h10{height:21.226650px;}
.h2e{height:21.945120px;}
.h17{height:22.690155px;}
.h30{height:23.606925px;}
.h2c{height:24.130800px;}
.h9{height:24.162285px;}
.he{height:26.527080px;}
.h34{height:30.552900px;}
.h32{height:33.855900px;}
.h2b{height:34.492601px;}
.h24{height:34.542874px;}
.h4{height:47.988281px;}
.h19{height:48.049801px;}
.h6{height:52.417969px;}
.h2a{height:54.369983px;}
.h23{height:54.449228px;}
.h1a{height:55.297969px;}
.h28{height:60.423000px;}
.h21{height:60.511273px;}
.h1{height:61.154293px;}
.h11{height:61.727154px;}
.h25{height:65.250000px;}
.h2f{height:65.997235px;}
.h18{height:66.591306px;}
.h13{height:67.538025px;}
.h7{height:69.890618px;}
.h31{height:70.994942px;}
.hb{height:72.215754px;}
.h2d{height:72.570612px;}
.h1b{height:73.913145px;}
.h8{height:74.258786px;}
.hf{height:77.140830px;}
.h1f{height:77.308594px;}
.hc{height:78.626953px;}
.h26{height:80.697060px;}
.hd{height:87.363280px;}
.h35{height:88.847822px;}
.h33{height:103.968699px;}
.h3{height:104.835938px;}
.h12{height:109.204137px;}
.h5{height:122.308629px;}
.h14{height:139.098416px;}
.h1c{height:152.228339px;}
.h2{height:154.617188px;}
.h16{height:231.556358px;}
.h15{height:242.090685px;}
.h1e{height:253.413668px;}
.h1d{height:264.942362px;}
.h0{height:810.000000px;}
.wc{width:27.750000px;}
.we{width:41.616150px;}
.wb{width:41.677080px;}
.wd{width:42.679800px;}
.wa{width:42.742080px;}
.w1{width:67.788540px;}
.w10{width:99.972405px;}
.w3{width:111.296565px;}
.w11{width:112.789125px;}
.wf{width:114.398385px;}
.w4{width:138.260190px;}
.w2{width:156.294750px;}
.w13{width:174.233700px;}
.w12{width:218.824350px;}
.w6{width:238.685850px;}
.w5{width:238.723200px;}
.w7{width:248.295300px;}
.w9{width:261.216000px;}
.w8{width:261.256950px;}
.w0{width:1440.000000px;}
.x48{left:-1.281166px;}
.x0{left:0.000000px;}
.x4b{left:20.735700px;}
.x49{left:30.276730px;}
.x1e{left:34.670790px;}
.x25{left:39.575550px;}
.x3f{left:42.012165px;}
.x1{left:43.285740px;}
.x5{left:50.553075px;}
.x24{left:54.892200px;}
.x2d{left:57.084210px;}
.x28{left:67.305704px;}
.x1f{left:68.420790px;}
.x2a{left:71.690310px;}
.x36{left:73.659037px;}
.x34{left:76.104555px;}
.x58{left:77.241735px;}
.x5a{left:79.293300px;}
.x21{left:82.809210px;}
.x14{left:84.303075px;}
.x59{left:110.991735px;}
.x5b{left:113.043300px;}
.xf{left:123.121410px;}
.x51{left:125.598660px;}
.x26{left:128.104950px;}
.x57{left:130.818420px;}
.x40{left:133.651650px;}
.x2{left:138.000000px;}
.x7{left:158.002200px;}
.x2c{left:161.635050px;}
.x29{left:164.866068px;}
.x37{left:180.428431px;}
.x50{left:185.936100px;}
.x8{left:207.656250px;}
.xd{left:227.795400px;}
.x2b{left:261.566100px;}
.x54{left:285.448500px;}
.x55{left:293.905650px;}
.x3{left:301.294200px;}
.x9{left:318.843750px;}
.x38{left:347.700300px;}
.x4f{left:364.470150px;}
.x16{left:393.750000px;}
.x1d{left:443.524200px;}
.x5c{left:620.968950px;}
.x52{left:637.510650px;}
.x4e{left:672.885900px;}
.x11{left:741.807600px;}
.x39{left:801.312450px;}
.x6{left:818.725500px;}
.x27{left:832.056450px;}
.x3a{left:835.062450px;}
.x3c{left:837.375300px;}
.x3b{left:840.375450px;}
.x3d{left:876.090450px;}
.x3e{left:883.248900px;}
.x4a{left:925.537200px;}
.x15{left:938.103750px;}
.x18{left:944.986950px;}
.x17{left:950.824800px;}
.x56{left:960.511950px;}
.x46{left:973.473600px;}
.x1a{left:976.018050px;}
.x4d{left:995.983200px;}
.x47{left:1000.905900px;}
.x12{left:1002.365250px;}
.x1b{left:1009.768050px;}
.x19{left:1014.131250px;}
.x13{left:1022.812650px;}
.xa{left:1037.998650px;}
.xb{left:1071.748650px;}
.x1c{left:1109.261737px;}
.x35{left:1116.000000px;}
.x4c{left:1124.083350px;}
.x45{left:1132.577850px;}
.x31{left:1157.700600px;}
.x2e{left:1162.478100px;}
.x2f{left:1172.325600px;}
.x30{left:1185.638100px;}
.x32{left:1195.763100px;}
.x20{left:1199.852550px;}
.x23{left:1258.146900px;}
.xc{left:1265.505750px;}
.x22{left:1285.226100px;}
.x4{left:1320.862500px;}
.x43{left:1330.518000px;}
.x42{left:1332.102900px;}
.x41{left:1336.602900px;}
.x44{left:1338.580500px;}
.x53{left:1409.150850px;}
.x33{left:1410.675000px;}
.x10{left:1418.338350px;}
.xe{left:1419.862500px;}
@media print{
.v3{vertical-align:-56.320000pt;}
.v2{vertical-align:-53.760000pt;}
.vc{vertical-align:-46.080000pt;}
.v16{vertical-align:-17.102529pt;}
.v17{vertical-align:-15.553398pt;}
.v14{vertical-align:-13.994613pt;}
.v1{vertical-align:-12.843597pt;}
.v4{vertical-align:-10.978196pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:2.560000pt;}
.v18{vertical-align:43.472874pt;}
.v6{vertical-align:57.689511pt;}
.vf{vertical-align:63.135000pt;}
.va{vertical-align:103.387479pt;}
.v13{vertical-align:113.146538pt;}
.v9{vertical-align:116.183594pt;}
.v5{vertical-align:120.232131pt;}
.v12{vertical-align:127.150518pt;}
.ve{vertical-align:131.581208pt;}
.vb{vertical-align:161.059871pt;}
.v8{vertical-align:170.423718pt;}
.v15{vertical-align:176.262803pt;}
.v7{vertical-align:178.726214pt;}
.v11{vertical-align:186.510532pt;}
.v10{vertical-align:195.596726pt;}
.lsbf{letter-spacing:-10.118400pt;}
.ls31{letter-spacing:-7.113600pt;}
.ls0{letter-spacing:-5.831466pt;}
.ls97{letter-spacing:-5.077333pt;}
.ls21{letter-spacing:-0.298667pt;}
.ls15{letter-spacing:-0.281600pt;}
.ls17{letter-spacing:-0.273067pt;}
.ls88{letter-spacing:-0.268800pt;}
.ls5d{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.249600pt;}
.ls12{letter-spacing:-0.247467pt;}
.ls43{letter-spacing:-0.211200pt;}
.ls26{letter-spacing:-0.190400pt;}
.ls34{letter-spacing:-0.181333pt;}
.ls10{letter-spacing:-0.179200pt;}
.ls14{letter-spacing:-0.136533pt;}
.ls5e{letter-spacing:-0.133333pt;}
.ls18{letter-spacing:-0.126933pt;}
.ls13{letter-spacing:-0.110933pt;}
.ls9b{letter-spacing:-0.089600pt;}
.ls25{letter-spacing:-0.063467pt;}
.ls2{letter-spacing:-0.057600pt;}
.ls4a{letter-spacing:-0.038400pt;}
.ls32{letter-spacing:-0.032000pt;}
.ls48{letter-spacing:-0.028800pt;}
.ls22{letter-spacing:-0.019200pt;}
.ls49{letter-spacing:-0.009600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.004506pt;}
.ls73{letter-spacing:0.004931pt;}
.ls3e{letter-spacing:0.009600pt;}
.ls5a{letter-spacing:0.011358pt;}
.ls75{letter-spacing:0.012430pt;}
.ls50{letter-spacing:0.013065pt;}
.ls55{letter-spacing:0.013202pt;}
.ls6b{letter-spacing:0.014298pt;}
.ls70{letter-spacing:0.014448pt;}
.ls9d{letter-spacing:0.016303pt;}
.ls94{letter-spacing:0.017262pt;}
.ls8e{letter-spacing:0.017645pt;}
.ls1b{letter-spacing:0.019200pt;}
.ls52{letter-spacing:0.019917pt;}
.ls3c{letter-spacing:0.020215pt;}
.ls62{letter-spacing:0.021333pt;}
.ls8d{letter-spacing:0.021527pt;}
.ls6d{letter-spacing:0.021797pt;}
.ls5c{letter-spacing:0.024801pt;}
.ls51{letter-spacing:0.024889pt;}
.ls6c{letter-spacing:0.027238pt;}
.ls23{letter-spacing:0.028800pt;}
.lsf{letter-spacing:0.029094pt;}
.ls59{letter-spacing:0.033448pt;}
.ls74{letter-spacing:0.036605pt;}
.ls42{letter-spacing:0.054045pt;}
.ls27{letter-spacing:0.063467pt;}
.lsa3{letter-spacing:0.067333pt;}
.ls56{letter-spacing:0.080784pt;}
.ls47{letter-spacing:0.082284pt;}
.ls71{letter-spacing:0.088410pt;}
.ls44{letter-spacing:0.089600pt;}
.ls8b{letter-spacing:0.090607pt;}
.ls9f{letter-spacing:0.096587pt;}
.ls91{letter-spacing:0.098191pt;}
.lsa6{letter-spacing:0.107157pt;}
.ls24{letter-spacing:0.126933pt;}
.lsb2{letter-spacing:0.127468pt;}
.ls20{letter-spacing:0.128001pt;}
.lsb1{letter-spacing:0.128055pt;}
.lsb3{letter-spacing:0.128535pt;}
.ls16{letter-spacing:0.136533pt;}
.ls60{letter-spacing:0.179200pt;}
.ls28{letter-spacing:0.190400pt;}
.ls9c{letter-spacing:0.194133pt;}
.ls11{letter-spacing:0.204800pt;}
.ls35{letter-spacing:0.208000pt;}
.ls98{letter-spacing:0.211200pt;}
.ls1f{letter-spacing:0.217600pt;}
.ls61{letter-spacing:0.230400pt;}
.lsb4{letter-spacing:0.238933pt;}
.ls7{letter-spacing:0.247467pt;}
.ls5{letter-spacing:0.250670pt;}
.ls6{letter-spacing:0.251203pt;}
.ls19{letter-spacing:0.253867pt;}
.ls3{letter-spacing:0.256000pt;}
.ls89{letter-spacing:0.262933pt;}
.ls4b{letter-spacing:0.266655pt;}
.ls37{letter-spacing:0.268800pt;}
.ls36{letter-spacing:0.271986pt;}
.ls4{letter-spacing:0.277336pt;}
.lsb0{letter-spacing:0.281067pt;}
.ls9{letter-spacing:0.281600pt;}
.ls33{letter-spacing:0.320000pt;}
.ls45{letter-spacing:0.758837pt;}
.ls81{letter-spacing:1.424002pt;}
.ls82{letter-spacing:1.450669pt;}
.ls7d{letter-spacing:2.490669pt;}
.lsa2{letter-spacing:3.007046pt;}
.lsa9{letter-spacing:3.007051pt;}
.ls3b{letter-spacing:3.337311pt;}
.ls3d{letter-spacing:4.591470pt;}
.ls8c{letter-spacing:4.833615pt;}
.ls38{letter-spacing:5.050669pt;}
.ls39{letter-spacing:5.051202pt;}
.ls3a{letter-spacing:5.077336pt;}
.lsa4{letter-spacing:5.294408pt;}
.lsa5{letter-spacing:5.332402pt;}
.lsb7{letter-spacing:6.394668pt;}
.lsb8{letter-spacing:6.421335pt;}
.ls30{letter-spacing:6.544002pt;}
.ls1d{letter-spacing:7.141335pt;}
.ls1e{letter-spacing:7.168001pt;}
.ls84{letter-spacing:7.504002pt;}
.ls83{letter-spacing:7.504536pt;}
.ls85{letter-spacing:7.530669pt;}
.ls7a{letter-spacing:7.770136pt;}
.ls7b{letter-spacing:7.770669pt;}
.ls79{letter-spacing:7.771202pt;}
.ls9e{letter-spacing:7.947939pt;}
.lsbb{letter-spacing:8.554668pt;}
.lsbc{letter-spacing:8.581335pt;}
.ls86{letter-spacing:8.650669pt;}
.ls87{letter-spacing:8.677336pt;}
.ls65{letter-spacing:9.424002pt;}
.ls64{letter-spacing:9.424056pt;}
.ls66{letter-spacing:9.451202pt;}
.lsad{letter-spacing:9.700801pt;}
.lsac{letter-spacing:9.701335pt;}
.lsab{letter-spacing:9.701388pt;}
.lsaf{letter-spacing:9.727468pt;}
.lsae{letter-spacing:9.728535pt;}
.ls29{letter-spacing:10.037336pt;}
.ls54{letter-spacing:10.241398pt;}
.ls6f{letter-spacing:11.208115pt;}
.ls9a{letter-spacing:11.816870pt;}
.ls99{letter-spacing:11.834093pt;}
.lsb5{letter-spacing:13.274668pt;}
.lsb6{letter-spacing:13.301335pt;}
.ls8a{letter-spacing:13.328001pt;}
.lsb{letter-spacing:13.930669pt;}
.lsa{letter-spacing:14.944002pt;}
.ls57{letter-spacing:16.215560pt;}
.lsb9{letter-spacing:16.234668pt;}
.lsba{letter-spacing:16.261335pt;}
.ls76{letter-spacing:16.944002pt;}
.ls77{letter-spacing:16.970136pt;}
.ls78{letter-spacing:16.970669pt;}
.ls72{letter-spacing:17.746196pt;}
.ls5b{letter-spacing:17.960188pt;}
.ls4e{letter-spacing:18.355590pt;}
.ls53{letter-spacing:18.504363pt;}
.ls4f{letter-spacing:19.566777pt;}
.ls69{letter-spacing:20.088231pt;}
.ls6e{letter-spacing:20.251046pt;}
.ls41{letter-spacing:20.378026pt;}
.ls2a{letter-spacing:20.784002pt;}
.ls6a{letter-spacing:21.413745pt;}
.lse{letter-spacing:21.610669pt;}
.ls4d{letter-spacing:23.752499pt;}
.ls80{letter-spacing:24.010669pt;}
.ls40{letter-spacing:24.029915pt;}
.ls4c{letter-spacing:24.059253pt;}
.ls7c{letter-spacing:24.517336pt;}
.ls68{letter-spacing:25.994570pt;}
.ls67{letter-spacing:26.330279pt;}
.ls93{letter-spacing:28.790952pt;}
.lsa1{letter-spacing:29.331346pt;}
.lsa8{letter-spacing:29.331390pt;}
.ls96{letter-spacing:30.971176pt;}
.lsbe{letter-spacing:30.981335pt;}
.lsbd{letter-spacing:31.008001pt;}
.ls2c{letter-spacing:31.450669pt;}
.ls90{letter-spacing:31.658554pt;}
.ls46{letter-spacing:32.712283pt;}
.ls7e{letter-spacing:33.610669pt;}
.ls92{letter-spacing:34.035429pt;}
.lsa7{letter-spacing:34.568033pt;}
.lsa0{letter-spacing:34.578551pt;}
.ls8f{letter-spacing:37.425385pt;}
.ls95{letter-spacing:39.382213pt;}
.ls7f{letter-spacing:44.944002pt;}
.lsaa{letter-spacing:48.010617pt;}
.ls63{letter-spacing:52.245287pt;}
.ls5f{letter-spacing:52.245340pt;}
.ls2f{letter-spacing:52.277336pt;}
.ls2e{letter-spacing:58.490669pt;}
.ls2d{letter-spacing:58.517336pt;}
.ls1c{letter-spacing:88.266668pt;}
.ls8{letter-spacing:90.133336pt;}
.ls2b{letter-spacing:94.064002pt;}
.lsd{letter-spacing:169.930669pt;}
.lsc{letter-spacing:169.957336pt;}
.ls3f{letter-spacing:268.612800pt;}
.ws32{word-spacing:-41.753612pt;}
.ws24{word-spacing:-36.933345pt;}
.ws23{word-spacing:-36.800012pt;}
.ws19{word-spacing:-32.803709pt;}
.ws20{word-spacing:-26.716800pt;}
.ws25{word-spacing:-26.707200pt;}
.ws1d{word-spacing:-26.697600pt;}
.ws1e{word-spacing:-26.678400pt;}
.ws1f{word-spacing:-26.668800pt;}
.ws1c{word-spacing:-26.659200pt;}
.ws21{word-spacing:-26.649600pt;}
.ws31{word-spacing:-25.486399pt;}
.ws2b{word-spacing:-25.468265pt;}
.wse{word-spacing:-25.459199pt;}
.ws13{word-spacing:-25.422932pt;}
.ws14{word-spacing:-25.395732pt;}
.wsf{word-spacing:-25.332265pt;}
.ws12{word-spacing:-25.268799pt;}
.ws15{word-spacing:-25.205332pt;}
.ws10{word-spacing:-25.141865pt;}
.wsd{word-spacing:-25.078399pt;}
.ws11{word-spacing:-25.014932pt;}
.ws1{word-spacing:-24.004264pt;}
.ws5{word-spacing:-23.970131pt;}
.ws8{word-spacing:-23.859198pt;}
.ws4{word-spacing:-23.722664pt;}
.ws3{word-spacing:-23.611731pt;}
.ws6{word-spacing:-23.586131pt;}
.ws2{word-spacing:-23.475198pt;}
.ws9{word-spacing:-23.449598pt;}
.ws7{word-spacing:-23.441064pt;}
.ws2f{word-spacing:-20.667732pt;}
.ws2a{word-spacing:-20.127999pt;}
.ws28{word-spacing:-17.792000pt;}
.ws17{word-spacing:-17.580800pt;}
.ws29{word-spacing:-17.542400pt;}
.ws33{word-spacing:-15.086933pt;}
.ws1b{word-spacing:-0.173710pt;}
.ws27{word-spacing:-0.107472pt;}
.ws30{word-spacing:-0.105301pt;}
.ws2d{word-spacing:-0.095641pt;}
.ws1a{word-spacing:-0.091426pt;}
.ws22{word-spacing:-0.073158pt;}
.ws2c{word-spacing:-0.071717pt;}
.ws2e{word-spacing:-0.071612pt;}
.wsb{word-spacing:-0.045867pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.266667pt;}
.wsa{word-spacing:14.208640pt;}
.ws18{word-spacing:23.827525pt;}
.ws26{word-spacing:27.446696pt;}
.ws16{word-spacing:1795.231467pt;}
._14{margin-left:-85.671098pt;}
._11{margin-left:-57.877269pt;}
._24{margin-left:-13.205801pt;}
._23{margin-left:-9.184792pt;}
._9{margin-left:-6.913675pt;}
._3{margin-left:-5.760000pt;}
._6{margin-left:-4.671935pt;}
._13{margin-left:-3.674826pt;}
._15{margin-left:-2.138774pt;}
._2{margin-left:-1.152000pt;}
._4{width:0.896000pt;}
._16{width:2.452284pt;}
._1{width:5.077333pt;}
._0{width:6.048000pt;}
._8{width:7.120850pt;}
._1a{width:8.800238pt;}
._b{width:10.365902pt;}
._7{width:13.131781pt;}
._10{width:16.421354pt;}
._1b{width:17.383728pt;}
._d{width:20.372287pt;}
._c{width:21.262964pt;}
._1e{width:25.047227pt;}
._f{width:31.311005pt;}
._1f{width:32.997382pt;}
._20{width:34.198437pt;}
._a{width:41.760038pt;}
._21{width:44.746708pt;}
._12{width:52.037370pt;}
._22{width:88.266455pt;}
._5{width:90.133336pt;}
._e{width:94.789398pt;}
._1d{width:609.413974pt;}
._19{width:638.615041pt;}
._1c{width:763.430399pt;}
._18{width:860.959999pt;}
._17{width:930.364403pt;}
.fs7{font-size:0.000002pt;}
.fs21{font-size:49.531647pt;}
.fs1b{font-size:49.603840pt;}
.fs1f{font-size:50.128567pt;}
.fs19{font-size:50.201801pt;}
.fsf{font-size:51.210529pt;}
.fs14{font-size:57.869373pt;}
.fs15{font-size:58.666662pt;}
.fs12{font-size:59.690670pt;}
.fs9{font-size:59.912158pt;}
.fsd{font-size:63.998135pt;}
.fs3{font-size:64.000000pt;}
.fs17{font-size:65.325054pt;}
.fs1d{font-size:66.948480pt;}
.fs20{font-size:70.759699pt;}
.fs1a{font-size:70.862831pt;}
.fs1e{font-size:71.612444pt;}
.fs18{font-size:71.717065pt;}
.fs25{font-size:72.552700pt;}
.fse{font-size:73.158108pt;}
.fs29{font-size:73.710462pt;}
.fs2b{font-size:73.710574pt;}
.fs0{font-size:74.666662pt;}
.fs27{font-size:78.046827pt;}
.fs23{font-size:79.779007pt;}
.fs13{font-size:82.670771pt;}
.fs11{font-size:85.272630pt;}
.fs5{font-size:85.333325pt;}
.fs8{font-size:85.589042pt;}
.fs6{font-size:90.666662pt;}
.fsc{font-size:91.426169pt;}
.fs16{font-size:93.321773pt;}
.fs1c{font-size:95.640960pt;}
.fsa{font-size:96.000000pt;}
.fs24{font-size:103.647012pt;}
.fs28{font-size:105.300963pt;}
.fs2a{font-size:105.301122pt;}
.fsb{font-size:106.666665pt;}
.fs26{font-size:111.495787pt;}
.fs22{font-size:113.970337pt;}
.fs2{font-size:128.000000pt;}
.fs10{font-size:133.333376pt;}
.fs4{font-size:149.333376pt;}
.fs1{font-size:192.000000pt;}
.y8b{bottom:-1.049333pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:1.464713pt;}
.y89{bottom:1.466513pt;}
.y92{bottom:4.119285pt;}
.y88{bottom:4.124954pt;}
.y9b{bottom:4.299347pt;}
.ya2{bottom:4.299880pt;}
.ya5{bottom:4.625572pt;}
.y8e{bottom:4.667843pt;}
.y84{bottom:4.674690pt;}
.y98{bottom:4.728279pt;}
.y41{bottom:4.768910pt;}
.y4f{bottom:4.812313pt;}
.y17{bottom:4.982807pt;}
.y4c{bottom:5.880401pt;}
.y3d{bottom:5.959913pt;}
.y65{bottom:6.435319pt;}
.yae{bottom:6.717852pt;}
.yb1{bottom:6.864260pt;}
.y82{bottom:10.810408pt;}
.y61{bottom:12.160000pt;}
.y1c{bottom:12.800000pt;}
.y5c{bottom:14.080000pt;}
.yb6{bottom:14.400000pt;}
.y5e{bottom:15.680000pt;}
.y52{bottom:16.000000pt;}
.y91{bottom:16.276643pt;}
.y87{bottom:16.300368pt;}
.y1a{bottom:16.320000pt;}
.y8d{bottom:18.469502pt;}
.y83{bottom:18.496483pt;}
.y40{bottom:18.868135pt;}
.y7a{bottom:18.880000pt;}
.yd{bottom:19.200000pt;}
.y9a{bottom:19.506769pt;}
.y4e{bottom:20.169030pt;}
.y4b{bottom:20.503922pt;}
.ya4{bottom:20.983936pt;}
.y97{bottom:21.449660pt;}
.y16{bottom:21.477586pt;}
.y64{bottom:22.439199pt;}
.y3c{bottom:23.579631pt;}
.y62{bottom:25.873613pt;}
.y1d{bottom:26.240000pt;}
.yb0{bottom:27.158109pt;}
.y3e{bottom:28.160000pt;}
.y4{bottom:28.480000pt;}
.yad{bottom:30.094071pt;}
.y95{bottom:33.280000pt;}
.y48{bottom:33.920000pt;}
.y60{bottom:37.440000pt;}
.yc{bottom:46.080000pt;}
.y69{bottom:49.280000pt;}
.y56{bottom:53.760000pt;}
.y4a{bottom:60.033807pt;}
.y32{bottom:60.160000pt;}
.yc0{bottom:60.800000pt;}
.y5f{bottom:62.720000pt;}
.yb5{bottom:65.600000pt;}
.y63{bottom:65.700581pt;}
.y68{bottom:74.560000pt;}
.y55{bottom:79.040000pt;}
.y37{bottom:83.520000pt;}
.y31{bottom:85.440000pt;}
.yb4{bottom:92.480000pt;}
.y7e{bottom:97.600000pt;}
.y67{bottom:99.840000pt;}
.y76{bottom:104.640000pt;}
.yb{bottom:106.560000pt;}
.y30{bottom:110.720000pt;}
.yb3{bottom:119.040000pt;}
.y7d{bottom:124.160000pt;}
.y66{bottom:125.440000pt;}
.y35{bottom:129.600100pt;}
.y75{bottom:129.920000pt;}
.ya{bottom:131.840000pt;}
.y8a{bottom:134.440533pt;}
.y2f{bottom:136.000000pt;}
.y1e{bottom:139.520000pt;}
.y49{bottom:139.909467pt;}
.y36{bottom:141.760100pt;}
.ybe{bottom:148.800000pt;}
.y74{bottom:155.200000pt;}
.y9{bottom:157.440000pt;}
.y50{bottom:164.160000pt;}
.ybd{bottom:175.680000pt;}
.y2e{bottom:179.840000pt;}
.y96{bottom:191.136400pt;}
.y18{bottom:191.360000pt;}
.y9f{bottom:194.560000pt;}
.y2d{bottom:205.120000pt;}
.ya0{bottom:229.760000pt;}
.y2c{bottom:230.400000pt;}
.y1f{bottom:237.440000pt;}
.y51{bottom:237.760000pt;}
.y6{bottom:241.600000pt;}
.y79{bottom:244.800000pt;}
.y19{bottom:253.440000pt;}
.ybc{bottom:255.040000pt;}
.y2b{bottom:255.680000pt;}
.y86{bottom:270.076800pt;}
.y78{bottom:270.080000pt;}
.y3f{bottom:271.752933pt;}
.y99{bottom:274.456933pt;}
.y9d{bottom:275.840000pt;}
.y5b{bottom:285.120000pt;}
.y25{bottom:290.560000pt;}
.y77{bottom:295.360000pt;}
.y85{bottom:301.120000pt;}
.y14{bottom:303.680000pt;}
.ybf{bottom:309.120000pt;}
.y5a{bottom:310.400000pt;}
.y9e{bottom:310.720000pt;}
.y8c{bottom:323.605467pt;}
.y22{bottom:324.800000pt;}
.y13{bottom:328.960000pt;}
.y34{bottom:328.960100pt;}
.y59{bottom:335.680000pt;}
.y29{bottom:349.440000pt;}
.y12{bottom:354.240000pt;}
.y42{bottom:354.615467pt;}
.y9c{bottom:358.400000pt;}
.y73{bottom:360.000000pt;}
.y58{bottom:360.960000pt;}
.y28{bottom:374.720000pt;}
.y11{bottom:379.520000pt;}
.y72{bottom:385.280000pt;}
.y57{bottom:386.560000pt;}
.ybb{bottom:390.720000pt;}
.y80{bottom:392.320000pt;}
.y3{bottom:399.360000pt;}
.y27{bottom:400.000000pt;}
.y71{bottom:410.880000pt;}
.y7f{bottom:411.200000pt;}
.ya3{bottom:416.565733pt;}
.yba{bottom:417.280000pt;}
.ya9{bottom:418.880000pt;}
.y26{bottom:425.280000pt;}
.y10{bottom:431.680000pt;}
.y70{bottom:436.160000pt;}
.y94{bottom:447.012800pt;}
.yaa{bottom:448.000000pt;}
.yf{bottom:456.960000pt;}
.y24{bottom:460.160000pt;}
.y6f{bottom:461.440000pt;}
.y4d{bottom:470.943333pt;}
.yb9{bottom:488.320000pt;}
.ya1{bottom:493.390933pt;}
.ya7{bottom:494.720000pt;}
.y23{bottom:500.480000pt;}
.y15{bottom:503.323333pt;}
.ye{bottom:507.520000pt;}
.y2a{bottom:516.800000pt;}
.y47{bottom:520.000000pt;}
.y54{bottom:520.960000pt;}
.y6e{bottom:523.840000pt;}
.y3b{bottom:524.258400pt;}
.y2{bottom:527.040000pt;}
.ya8{bottom:529.600000pt;}
.y3a{bottom:534.080000pt;}
.yac{bottom:537.935200pt;}
.yb8{bottom:542.720000pt;}
.yaf{bottom:543.211867pt;}
.y46{bottom:545.280000pt;}
.y6d{bottom:549.120000pt;}
.y81{bottom:562.240000pt;}
.y21{bottom:567.040000pt;}
.yb7{bottom:569.600000pt;}
.y45{bottom:570.880000pt;}
.y6c{bottom:574.400000pt;}
.y39{bottom:575.680000pt;}
.y8{bottom:576.960000pt;}
.ya6{bottom:577.600000pt;}
.y33{bottom:580.800000pt;}
.yab{bottom:582.400000pt;}
.y90{bottom:582.493200pt;}
.yb2{bottom:585.600000pt;}
.y53{bottom:590.080013pt;}
.y6a{bottom:590.720013pt;}
.y20{bottom:593.600013pt;}
.y5d{bottom:595.200013pt;}
.y6b{bottom:600.000013pt;}
.y38{bottom:600.960013pt;}
.y7c{bottom:601.280013pt;}
.y7{bottom:602.560013pt;}
.y44{bottom:605.440013pt;}
.y8f{bottom:618.240013pt;}
.y5{bottom:646.080013pt;}
.y43{bottom:646.720013pt;}
.y7b{bottom:653.120013pt;}
.y1{bottom:664.960013pt;}
.y1b{bottom:689.280013pt;}
.ha{height:0.000002pt;}
.h29{height:16.276667pt;}
.h22{height:16.300373pt;}
.h27{height:18.469467pt;}
.h20{height:18.496480pt;}
.h10{height:18.868133pt;}
.h2e{height:19.506773pt;}
.h17{height:20.169027pt;}
.h30{height:20.983933pt;}
.h2c{height:21.449600pt;}
.h9{height:21.477587pt;}
.he{height:23.579627pt;}
.h34{height:27.158133pt;}
.h32{height:30.094133pt;}
.h2b{height:30.660089pt;}
.h24{height:30.704777pt;}
.h4{height:42.656250pt;}
.h19{height:42.710934pt;}
.h6{height:46.593750pt;}
.h2a{height:48.328874pt;}
.h23{height:48.399314pt;}
.h1a{height:49.153750pt;}
.h28{height:53.709333pt;}
.h21{height:53.787798pt;}
.h1{height:54.359372pt;}
.h11{height:54.868581pt;}
.h25{height:58.000000pt;}
.h2f{height:58.664209pt;}
.h18{height:59.192272pt;}
.h13{height:60.033800pt;}
.h7{height:62.124994pt;}
.h31{height:63.106615pt;}
.hb{height:64.191781pt;}
.h2d{height:64.507211pt;}
.h1b{height:65.700573pt;}
.h8{height:66.007809pt;}
.hf{height:68.569627pt;}
.h1f{height:68.718750pt;}
.hc{height:69.890625pt;}
.h26{height:71.730720pt;}
.hd{height:77.656249pt;}
.h35{height:78.975842pt;}
.h33{height:92.416622pt;}
.h3{height:93.187500pt;}
.h12{height:97.070344pt;}
.h5{height:108.718781pt;}
.h14{height:123.643036pt;}
.h1c{height:135.314079pt;}
.h2{height:137.437500pt;}
.h16{height:205.827874pt;}
.h15{height:215.191720pt;}
.h1e{height:225.256593pt;}
.h1d{height:235.504322pt;}
.h0{height:720.000000pt;}
.wc{width:24.666667pt;}
.we{width:36.992133pt;}
.wb{width:37.046293pt;}
.wd{width:37.937600pt;}
.wa{width:37.992960pt;}
.w1{width:60.256480pt;}
.w10{width:88.864360pt;}
.w3{width:98.930280pt;}
.w11{width:100.257000pt;}
.wf{width:101.687453pt;}
.w4{width:122.897947pt;}
.w2{width:138.928667pt;}
.w13{width:154.874400pt;}
.w12{width:194.510533pt;}
.w6{width:212.165200pt;}
.w5{width:212.198400pt;}
.w7{width:220.706933pt;}
.w9{width:232.192000pt;}
.w8{width:232.228400pt;}
.w0{width:1280.000000pt;}
.x48{left:-1.138814pt;}
.x0{left:0.000000pt;}
.x4b{left:18.431733pt;}
.x49{left:26.912649pt;}
.x1e{left:30.818480pt;}
.x25{left:35.178267pt;}
.x3f{left:37.344147pt;}
.x1{left:38.476213pt;}
.x5{left:44.936067pt;}
.x24{left:48.793067pt;}
.x2d{left:50.741520pt;}
.x28{left:59.827293pt;}
.x1f{left:60.818480pt;}
.x2a{left:63.724720pt;}
.x36{left:65.474699pt;}
.x34{left:67.648493pt;}
.x58{left:68.659320pt;}
.x5a{left:70.482933pt;}
.x21{left:73.608187pt;}
.x14{left:74.936067pt;}
.x59{left:98.659320pt;}
.x5b{left:100.482933pt;}
.xf{left:109.441253pt;}
.x51{left:111.643253pt;}
.x26{left:113.871067pt;}
.x57{left:116.283040pt;}
.x40{left:118.801467pt;}
.x2{left:122.666667pt;}
.x7{left:140.446400pt;}
.x2c{left:143.675600pt;}
.x29{left:146.547616pt;}
.x37{left:160.380828pt;}
.x50{left:165.276533pt;}
.x8{left:184.583333pt;}
.xd{left:202.484800pt;}
.x2b{left:232.503200pt;}
.x54{left:253.732000pt;}
.x55{left:261.249467pt;}
.x3{left:267.817067pt;}
.x9{left:283.416667pt;}
.x38{left:309.066933pt;}
.x4f{left:323.973467pt;}
.x16{left:350.000000pt;}
.x1d{left:394.243733pt;}
.x5c{left:551.972400pt;}
.x52{left:566.676133pt;}
.x4e{left:598.120800pt;}
.x11{left:659.384533pt;}
.x39{left:712.277733pt;}
.x6{left:727.756000pt;}
.x27{left:739.605733pt;}
.x3a{left:742.277733pt;}
.x3c{left:744.333600pt;}
.x3b{left:747.000400pt;}
.x3d{left:778.747067pt;}
.x3e{left:785.110133pt;}
.x4a{left:822.699733pt;}
.x15{left:833.870000pt;}
.x18{left:839.988400pt;}
.x17{left:845.177600pt;}
.x56{left:853.788400pt;}
.x46{left:865.309867pt;}
.x1a{left:867.571600pt;}
.x4d{left:885.318400pt;}
.x47{left:889.694133pt;}
.x12{left:890.991333pt;}
.x1b{left:897.571600pt;}
.x19{left:901.450000pt;}
.x13{left:909.166800pt;}
.xa{left:922.665467pt;}
.xb{left:952.665467pt;}
.x1c{left:986.010433pt;}
.x35{left:992.000000pt;}
.x4c{left:999.185200pt;}
.x45{left:1006.735867pt;}
.x31{left:1029.067200pt;}
.x2e{left:1033.313867pt;}
.x2f{left:1042.067200pt;}
.x30{left:1053.900533pt;}
.x32{left:1062.900533pt;}
.x20{left:1066.535600pt;}
.x23{left:1118.352800pt;}
.xc{left:1124.894000pt;}
.x22{left:1142.423200pt;}
.x4{left:1174.100000pt;}
.x43{left:1182.682667pt;}
.x42{left:1184.091467pt;}
.x41{left:1188.091467pt;}
.x44{left:1189.849333pt;}
.x53{left:1252.578533pt;}
.x33{left:1253.933333pt;}
.x10{left:1260.745200pt;}
.xe{left:1262.100000pt;}
}




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