
    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_a6c0af09b42a4d5e83a5ab54.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106000;font-style:normal;font-weight: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_83462af628bbcb69ce67af45.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711000;font-style:normal;font-weight: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_ae30d57c4534154e8925aa35.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.068000;font-style:normal;font-weight: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_f5a8a82387eeb2e4dd0beba7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.113000;font-style:normal;font-weight: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_2fdb6553590a1628325f3730.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.811000;font-style:normal;font-weight: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_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128000;font-style:normal;font-weight: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_83462af628bbcb69ce67af45.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;font-style:normal;font-weight: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_ae30d57c4534154e8925aa35.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.068000;font-style:normal;font-weight: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_90602b0cfd413db3d9724d33.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106000;font-style:normal;font-weight: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_221c37e58ac18662ba2fea49.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.113000;font-style:normal;font-weight: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_450b426048efbbbd217c2ba7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.811000;font-style:normal;font-weight: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_1293494f0de1266df3ca3e6c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.753000;font-style:normal;font-weight: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_be1c91a7e0c6b6822d7a1f6e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.920000;font-style:normal;font-weight: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_efd5cd662af332800efae58b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.930000;font-style:normal;font-weight: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_a6f428dacf6c7760cbfd1a6a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7434c6b248eb37f341c4d5a2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.956000;font-style:normal;font-weight: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_570dd77d1b3a905c939b16ec.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.905000;font-style:normal;font-weight: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_22b53b437f80f525e32c5bdc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.718500;font-style:normal;font-weight: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_f2511e51b1a08f2347cba114.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.927000;font-style:normal;font-weight: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_d191154dbf80007529caf9ef.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.939000;font-style:normal;font-weight: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_1ef80261a2daec5606dc882f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.731445;font-style:normal;font-weight: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_054055f1ed27b67906033d36.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_5908ef8c2d63df1acef98595.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.710000;font-style:normal;font-weight: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_cb6ab05d016a725fab9ed05e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.700000;font-style:normal;font-weight: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_5de900de789c3c63f1f14ed8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_9e6e8ecec1ce9af18dfff7b8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_40c7fd884b312f6f7bf95157.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.031000;font-style:normal;font-weight: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_0a456683bb7ba84f087eb974.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.029000;font-style:normal;font-weight: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_2c8740e3008276bb08d40528.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.042000;font-style:normal;font-weight: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_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.128000;font-style:normal;font-weight: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_61537d2f6e3befd2f648cb78.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.711000;font-style:normal;font-weight: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_2035877e47b3243212fbe70b.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.128000;font-style:normal;font-weight: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_b0caeea31d52e9c249e5f2da.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_a6c0af09b42a4d5e83a5ab54.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.106000;font-style:normal;font-weight: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_1145e65d701fc559873696b4.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.113000;font-style:normal;font-weight: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_b9e79f429466d567ed5eb034.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.029000;font-style:normal;font-weight: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_dea90f62b9368b7154b52ae3.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.741000;font-style:normal;font-weight: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_721dd01fa5076513cf819d20.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.067000;font-style:normal;font-weight: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_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.128000;font-style:normal;font-weight: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_75ec36848565bdf30a2436e4.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.067000;font-style:normal;font-weight: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_b51b540cb08ac651978fb84b.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.042000;font-style:normal;font-weight: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_3f88e2994d3376eaa4d89ac0.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.068000;font-style:normal;font-weight: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_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.128000;font-style:normal;font-weight: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_75ec36848565bdf30a2436e4.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.067000;font-style:normal;font-weight: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_d9c3ef91cbfbdd6a32f721b5.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.977000;font-style:normal;font-weight: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_61537d2f6e3befd2f648cb78.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.711000;font-style:normal;font-weight: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_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.128000;font-style:normal;font-weight: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_2c8740e3008276bb08d40528.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.042000;font-style:normal;font-weight: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_b99b0f322a80630b126f1645.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.128000;font-style:normal;font-weight: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_32d42b3cc3cfea32edc4da93.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.068000;font-style:normal;font-weight: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_bc62e870aed88714112ec92e.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.106000;font-style:normal;font-weight: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_0cb6abdbed43e108f2f187c2.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.128000;font-style:normal;font-weight: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_b6b4a15d630ba7fd424394a4.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.113000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.782000px;}
.ls3{letter-spacing:-14.892000px;}
.ls28{letter-spacing:-7.740000px;}
.lsa6{letter-spacing:-4.512000px;}
.ls9c{letter-spacing:-4.320000px;}
.ls1b{letter-spacing:-3.339000px;}
.lsa7{letter-spacing:-2.832000px;}
.ls76{letter-spacing:-2.760000px;}
.ls94{letter-spacing:-2.304000px;}
.ls8f{letter-spacing:-2.208000px;}
.ls3d{letter-spacing:-1.995000px;}
.lsa3{letter-spacing:-1.968000px;}
.ls7c{letter-spacing:-1.845000px;}
.ls98{letter-spacing:-1.680000px;}
.ls97{letter-spacing:-1.632000px;}
.ls9a{letter-spacing:-1.536000px;}
.ls91{letter-spacing:-1.440000px;}
.ls7e{letter-spacing:-1.395000px;}
.ls95{letter-spacing:-1.392000px;}
.ls93{letter-spacing:-1.200000px;}
.ls1e{letter-spacing:-1.197000px;}
.ls96{letter-spacing:-0.624000px;}
.ls26{letter-spacing:-0.576000px;}
.ls56{letter-spacing:-0.528000px;}
.ls54{letter-spacing:-0.504000px;}
.ls77{letter-spacing:-0.441000px;}
.ls5{letter-spacing:-0.438000px;}
.ls38{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.315000px;}
.ls20{letter-spacing:-0.296004px;}
.ls25{letter-spacing:-0.288000px;}
.ls3c{letter-spacing:-0.252000px;}
.lsa4{letter-spacing:-0.192000px;}
.ls1f{letter-spacing:-0.150692px;}
.ls3b{letter-spacing:-0.126000px;}
.ls7a{letter-spacing:-0.096000px;}
.ls36{letter-spacing:-0.063000px;}
.ls90{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls92{letter-spacing:0.048000px;}
.ls18{letter-spacing:0.063000px;}
.lsa5{letter-spacing:0.096000px;}
.ls58{letter-spacing:0.105600px;}
.ls46{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.121680px;}
.ls55{letter-spacing:0.126000px;}
.ls37{letter-spacing:0.132000px;}
.ls9b{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.145309px;}
.ls14{letter-spacing:0.161454px;}
.ls15{letter-spacing:0.172219px;}
.ls7d{letter-spacing:0.192000px;}
.ls32{letter-spacing:0.198000px;}
.ls99{letter-spacing:0.240000px;}
.ls23{letter-spacing:0.273780px;}
.ls62{letter-spacing:0.300000px;}
.ls35{letter-spacing:0.313800px;}
.ls44{letter-spacing:0.314400px;}
.ls0{letter-spacing:0.315000px;}
.ls5c{letter-spacing:0.316200px;}
.ls42{letter-spacing:0.328800px;}
.ls61{letter-spacing:0.346500px;}
.ls43{letter-spacing:0.346800px;}
.lsc{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.363600px;}
.ls45{letter-spacing:0.378000px;}
.lsa1{letter-spacing:0.383400px;}
.ls7f{letter-spacing:0.384000px;}
.ls89{letter-spacing:0.432000px;}
.ls50{letter-spacing:0.479400px;}
.ls4c{letter-spacing:0.480000px;}
.ls48{letter-spacing:0.491400px;}
.ls4d{letter-spacing:0.501000px;}
.ls51{letter-spacing:0.504600px;}
.ls4a{letter-spacing:0.528000px;}
.ls4b{letter-spacing:0.528600px;}
.ls49{letter-spacing:0.536400px;}
.ls53{letter-spacing:0.630000px;}
.ls5d{letter-spacing:0.648000px;}
.ls52{letter-spacing:0.693000px;}
.ls6f{letter-spacing:0.720000px;}
.ls8c{letter-spacing:0.741300px;}
.ls8d{letter-spacing:0.742200px;}
.ls21{letter-spacing:0.823415px;}
.ls9e{letter-spacing:0.900600px;}
.ls4f{letter-spacing:0.926400px;}
.ls59{letter-spacing:0.987600px;}
.ls67{letter-spacing:0.989100px;}
.ls71{letter-spacing:0.989400px;}
.ls73{letter-spacing:1.050000px;}
.ls5f{letter-spacing:1.089000px;}
.ls78{letter-spacing:1.197000px;}
.lsa2{letter-spacing:1.200000px;}
.ls5e{letter-spacing:1.214400px;}
.ls64{letter-spacing:1.215000px;}
.ls8a{letter-spacing:1.248000px;}
.ls1a{letter-spacing:1.260000px;}
.ls8b{letter-spacing:1.260600px;}
.ls5a{letter-spacing:1.263000px;}
.ls86{letter-spacing:1.344000px;}
.lsa0{letter-spacing:1.344600px;}
.ls33{letter-spacing:1.423800px;}
.ls34{letter-spacing:1.424400px;}
.ls2e{letter-spacing:1.425000px;}
.ls3a{letter-spacing:1.452000px;}
.ls68{letter-spacing:1.485000px;}
.ls80{letter-spacing:1.488000px;}
.ls19{letter-spacing:1.500000px;}
.ls81{letter-spacing:1.500600px;}
.ls85{letter-spacing:1.510200px;}
.ls87{letter-spacing:1.531800px;}
.ls82{letter-spacing:1.584000px;}
.ls79{letter-spacing:1.632000px;}
.ls29{letter-spacing:1.648800px;}
.ls2b{letter-spacing:1.649400px;}
.ls2f{letter-spacing:1.716000px;}
.ls2{letter-spacing:1.752000px;}
.ls3f{letter-spacing:1.800000px;}
.ls66{letter-spacing:1.852800px;}
.ls74{letter-spacing:1.860000px;}
.ls75{letter-spacing:1.920000px;}
.ls24{letter-spacing:1.980000px;}
.ls27{letter-spacing:2.016000px;}
.ls7b{letter-spacing:2.070000px;}
.ls9{letter-spacing:2.100000px;}
.ls12{letter-spacing:2.142000px;}
.ls65{letter-spacing:2.168400px;}
.ls4{letter-spacing:2.190000px;}
.ls84{letter-spacing:2.399400px;}
.ls70{letter-spacing:2.400000px;}
.ls6b{letter-spacing:2.412000px;}
.ls6e{letter-spacing:2.413200px;}
.ls4e{letter-spacing:2.414400px;}
.ls83{letter-spacing:2.421600px;}
.ls88{letter-spacing:2.443200px;}
.ls57{letter-spacing:2.619300px;}
.ls6a{letter-spacing:2.975400px;}
.ls40{letter-spacing:3.037500px;}
.lsf{letter-spacing:3.127761px;}
.ls16{letter-spacing:3.150000px;}
.ls30{letter-spacing:3.432000px;}
.lsd{letter-spacing:3.456000px;}
.lse{letter-spacing:3.501225px;}
.ls5b{letter-spacing:3.514200px;}
.ls31{letter-spacing:3.696000px;}
.ls9f{letter-spacing:3.720000px;}
.ls41{letter-spacing:3.780000px;}
.ls8{letter-spacing:3.960000px;}
.ls72{letter-spacing:3.990000px;}
.ls60{letter-spacing:4.212600px;}
.lsb{letter-spacing:4.320000px;}
.ls6d{letter-spacing:4.435200px;}
.lsa{letter-spacing:4.901400px;}
.ls3e{letter-spacing:5.520000px;}
.ls11{letter-spacing:5.575500px;}
.ls1d{letter-spacing:5.628600px;}
.ls1c{letter-spacing:5.681700px;}
.ls8e{letter-spacing:5.733000px;}
.ls9d{letter-spacing:5.859000px;}
.ls6{letter-spacing:6.120000px;}
.ls63{letter-spacing:6.227400px;}
.ls7{letter-spacing:6.390000px;}
.ls69{letter-spacing:6.928200px;}
.ls6c{letter-spacing:6.940200px;}
.ls2d{letter-spacing:7.410000px;}
.ls10{letter-spacing:9.557400px;}
.ls39{letter-spacing:11.766000px;}
.ls2c{letter-spacing:14.889600px;}
.ls2a{letter-spacing:14.934000px;}
.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;}
}
.wsa{word-spacing:-116.640000px;}
.ws1{word-spacing:-87.330000px;}
.wsb{word-spacing:-83.070000px;}
.ws0{word-spacing:-70.956000px;}
.ws8{word-spacing:-68.766000px;}
.ws2f{word-spacing:-30.492000px;}
.ws49{word-spacing:-26.220000px;}
.ws4a{word-spacing:-25.137000px;}
.ws3d{word-spacing:-23.028000px;}
.ws3f{word-spacing:-21.489000px;}
.ws29{word-spacing:-21.261000px;}
.ws28{word-spacing:-19.812000px;}
.ws36{word-spacing:-18.069000px;}
.ws35{word-spacing:-16.929000px;}
.ws47{word-spacing:-16.758000px;}
.ws39{word-spacing:-16.017000px;}
.wse7{word-spacing:-15.939000px;}
.ws37{word-spacing:-15.846000px;}
.wse8{word-spacing:-15.813000px;}
.ws9{word-spacing:-15.624000px;}
.ws44{word-spacing:-15.504000px;}
.ws34{word-spacing:-15.333000px;}
.ws50{word-spacing:-15.120000px;}
.ws42{word-spacing:-15.060000px;}
.ws38{word-spacing:-14.763000px;}
.ws9d{word-spacing:-14.679000px;}
.ws3c{word-spacing:-14.364000px;}
.ws12{word-spacing:-14.018400px;}
.ws13{word-spacing:-13.965300px;}
.ws19{word-spacing:-13.920000px;}
.ws14{word-spacing:-13.912200px;}
.ws9b{word-spacing:-13.860000px;}
.ws9a{word-spacing:-13.800000px;}
.ws9f{word-spacing:-13.734000px;}
.ws2b{word-spacing:-13.509000px;}
.ws10{word-spacing:-13.440000px;}
.ws11{word-spacing:-13.200000px;}
.ws9c{word-spacing:-12.978000px;}
.ws4d{word-spacing:-12.915000px;}
.ws2{word-spacing:-12.852000px;}
.ws152{word-spacing:-12.663000px;}
.ws4e{word-spacing:-12.537000px;}
.wse6{word-spacing:-12.384000px;}
.wsf{word-spacing:-12.222000px;}
.ws27{word-spacing:-12.084000px;}
.ws4c{word-spacing:-12.033000px;}
.wsa0{word-spacing:-11.184000px;}
.wsa4{word-spacing:-11.025000px;}
.wsde{word-spacing:-10.896000px;}
.wse0{word-spacing:-10.800000px;}
.wsa2{word-spacing:-10.755000px;}
.wse{word-spacing:-10.597041px;}
.wse5{word-spacing:-10.560000px;}
.wsdd{word-spacing:-10.464000px;}
.wsdf{word-spacing:-10.416000px;}
.ws4f{word-spacing:-10.128000px;}
.ws41{word-spacing:-10.089000px;}
.wse2{word-spacing:-9.840000px;}
.wse3{word-spacing:-9.792000px;}
.wsa3{word-spacing:-9.600000px;}
.wsa1{word-spacing:-9.504000px;}
.wse1{word-spacing:-9.216000px;}
.ws9e{word-spacing:-9.180000px;}
.wse4{word-spacing:-9.024000px;}
.wsdc{word-spacing:-8.976000px;}
.wsd{word-spacing:-8.136000px;}
.wsa6{word-spacing:-7.560000px;}
.ws110{word-spacing:-7.410000px;}
.wsa5{word-spacing:-7.110000px;}
.ws22{word-spacing:-5.681700px;}
.ws13d{word-spacing:-5.664000px;}
.ws7{word-spacing:-5.040000px;}
.ws17{word-spacing:-4.822138px;}
.ws120{word-spacing:-3.744000px;}
.ws15{word-spacing:-3.697297px;}
.ws30{word-spacing:-3.696000px;}
.ws16{word-spacing:-3.551988px;}
.ws20{word-spacing:-3.501225px;}
.wsca{word-spacing:-3.150000px;}
.wscb{word-spacing:-3.000000px;}
.ws7b{word-spacing:-2.961000px;}
.wsb1{word-spacing:-2.772000px;}
.ws79{word-spacing:-2.520000px;}
.ws112{word-spacing:-2.448000px;}
.ws72{word-spacing:-2.205000px;}
.ws5{word-spacing:-2.190000px;}
.wsbe{word-spacing:-1.890000px;}
.ws52{word-spacing:-1.800000px;}
.wsce{word-spacing:-1.764000px;}
.ws40{word-spacing:-1.716000px;}
.ws61{word-spacing:-1.701000px;}
.ws6c{word-spacing:-1.512000px;}
.ws31{word-spacing:-1.452000px;}
.ws76{word-spacing:-1.449000px;}
.ws2c{word-spacing:-1.425000px;}
.ws59{word-spacing:-1.386000px;}
.ws86{word-spacing:-1.248000px;}
.ws18{word-spacing:-0.839561px;}
.ws23{word-spacing:-0.796500px;}
.wsf9{word-spacing:-0.768000px;}
.ws87{word-spacing:-0.672000px;}
.wsa7{word-spacing:-0.630000px;}
.ws63{word-spacing:-0.567000px;}
.ws53{word-spacing:-0.540000px;}
.wsbc{word-spacing:-0.504000px;}
.wsd6{word-spacing:-0.480000px;}
.wsff{word-spacing:-0.432000px;}
.wsed{word-spacing:-0.384000px;}
.ws100{word-spacing:-0.336000px;}
.wsba{word-spacing:-0.315000px;}
.ws114{word-spacing:-0.288000px;}
.ws25{word-spacing:-0.161454px;}
.ws111{word-spacing:-0.144000px;}
.ws102{word-spacing:-0.048000px;}
.ws1c{word-spacing:-0.036000px;}
.ws3{word-spacing:0.000000px;}
.wsec{word-spacing:0.048000px;}
.ws85{word-spacing:0.144000px;}
.wsf2{word-spacing:0.192000px;}
.ws1a{word-spacing:0.252000px;}
.ws2d{word-spacing:0.264000px;}
.wsda{word-spacing:0.288000px;}
.ws26{word-spacing:0.296004px;}
.ws48{word-spacing:0.315000px;}
.ws3a{word-spacing:0.378000px;}
.ws6{word-spacing:0.438000px;}
.ws45{word-spacing:0.441000px;}
.ws43{word-spacing:0.528000px;}
.ws1d{word-spacing:0.540000px;}
.ws46{word-spacing:0.567000px;}
.ws10e{word-spacing:0.576000px;}
.ws33{word-spacing:0.630000px;}
.wsf5{word-spacing:0.672000px;}
.ws3e{word-spacing:0.693000px;}
.wsd3{word-spacing:0.816000px;}
.wsac{word-spacing:0.819000px;}
.wsf0{word-spacing:0.912000px;}
.wsab{word-spacing:0.945000px;}
.ws6e{word-spacing:1.008000px;}
.wsbf{word-spacing:1.071000px;}
.ws24{word-spacing:1.197000px;}
.wsaf{word-spacing:1.260000px;}
.ws92{word-spacing:1.344000px;}
.wsb4{word-spacing:1.386000px;}
.ws88{word-spacing:1.392000px;}
.ws2a{word-spacing:1.425000px;}
.wse9{word-spacing:1.440000px;}
.ws32{word-spacing:1.452000px;}
.ws3b{word-spacing:1.518000px;}
.ws8f{word-spacing:1.584000px;}
.ws2e{word-spacing:1.650000px;}
.ws5f{word-spacing:1.701000px;}
.wsfb{word-spacing:1.776000px;}
.wsf6{word-spacing:1.872000px;}
.ws60{word-spacing:1.890000px;}
.wsee{word-spacing:1.920000px;}
.ws10d{word-spacing:1.968000px;}
.wsd4{word-spacing:2.016000px;}
.ws103{word-spacing:2.064000px;}
.ws90{word-spacing:2.304000px;}
.wsfe{word-spacing:2.352000px;}
.wsd1{word-spacing:2.457000px;}
.wsea{word-spacing:2.592000px;}
.ws54{word-spacing:2.709000px;}
.wsb6{word-spacing:2.772000px;}
.ws91{word-spacing:2.928000px;}
.ws8d{word-spacing:2.976000px;}
.wsd9{word-spacing:3.072000px;}
.ws97{word-spacing:3.213000px;}
.ws106{word-spacing:3.264000px;}
.wsd8{word-spacing:3.360000px;}
.ws108{word-spacing:3.408000px;}
.wsf7{word-spacing:3.504000px;}
.ws99{word-spacing:3.591000px;}
.wsc{word-spacing:3.600000px;}
.ws21{word-spacing:3.654000px;}
.ws109{word-spacing:3.744000px;}
.ws80{word-spacing:3.792000px;}
.wsf1{word-spacing:3.840000px;}
.wsf8{word-spacing:3.888000px;}
.wsc4{word-spacing:3.906000px;}
.wsd5{word-spacing:3.936000px;}
.wseb{word-spacing:4.128000px;}
.wsbd{word-spacing:4.221000px;}
.ws5c{word-spacing:4.284000px;}
.wsd7{word-spacing:4.320000px;}
.wsfc{word-spacing:4.608000px;}
.wsef{word-spacing:4.656000px;}
.ws5b{word-spacing:4.725000px;}
.ws8e{word-spacing:4.848000px;}
.ws10a{word-spacing:4.896000px;}
.wsc1{word-spacing:4.914000px;}
.wsc6{word-spacing:5.418000px;}
.ws107{word-spacing:5.472000px;}
.wscc{word-spacing:5.640000px;}
.wsc0{word-spacing:5.859000px;}
.wsb3{word-spacing:5.922000px;}
.ws6a{word-spacing:5.985000px;}
.ws74{word-spacing:6.048000px;}
.wsc3{word-spacing:6.111000px;}
.ws7c{word-spacing:6.300000px;}
.wsb7{word-spacing:6.363000px;}
.wsb9{word-spacing:6.426000px;}
.ws84{word-spacing:6.432000px;}
.ws8a{word-spacing:6.480000px;}
.ws75{word-spacing:6.552000px;}
.ws62{word-spacing:6.804000px;}
.ws70{word-spacing:6.867000px;}
.wscd{word-spacing:6.930000px;}
.ws89{word-spacing:7.056000px;}
.wsf3{word-spacing:7.104000px;}
.ws77{word-spacing:7.182000px;}
.ws81{word-spacing:7.248000px;}
.wsfa{word-spacing:7.392000px;}
.ws93{word-spacing:7.440000px;}
.ws7a{word-spacing:7.623000px;}
.wsf4{word-spacing:8.064000px;}
.ws94{word-spacing:8.160000px;}
.ws1e{word-spacing:8.172000px;}
.wsb5{word-spacing:8.253000px;}
.ws7f{word-spacing:8.379000px;}
.wsd0{word-spacing:8.631000px;}
.ws8c{word-spacing:8.688000px;}
.ws5e{word-spacing:8.946000px;}
.ws5a{word-spacing:9.009000px;}
.wsad{word-spacing:9.072000px;}
.wsb0{word-spacing:9.198000px;}
.ws64{word-spacing:9.261000px;}
.ws55{word-spacing:9.576000px;}
.ws56{word-spacing:9.702000px;}
.ws78{word-spacing:9.828000px;}
.ws10b{word-spacing:9.840000px;}
.ws10c{word-spacing:9.888000px;}
.wsb8{word-spacing:9.954000px;}
.wsae{word-spacing:10.080000px;}
.ws101{word-spacing:10.128000px;}
.wsd2{word-spacing:10.269000px;}
.ws5d{word-spacing:10.458000px;}
.ws6f{word-spacing:10.710000px;}
.wsc8{word-spacing:10.773000px;}
.ws1b{word-spacing:11.052000px;}
.ws8b{word-spacing:11.328000px;}
.wsbb{word-spacing:11.340000px;}
.wsfd{word-spacing:11.568000px;}
.ws57{word-spacing:11.655000px;}
.wscf{word-spacing:12.033000px;}
.ws6b{word-spacing:12.285000px;}
.ws95{word-spacing:12.726000px;}
.ws6d{word-spacing:13.167000px;}
.wsc2{word-spacing:13.482000px;}
.ws73{word-spacing:13.671000px;}
.wsc9{word-spacing:13.860000px;}
.ws96{word-spacing:13.923000px;}
.ws98{word-spacing:13.986000px;}
.wsb2{word-spacing:14.175000px;}
.ws105{word-spacing:14.400000px;}
.ws58{word-spacing:14.427000px;}
.ws104{word-spacing:14.496000px;}
.ws66{word-spacing:14.805000px;}
.ws4{word-spacing:14.892000px;}
.wsaa{word-spacing:14.994000px;}
.wsa9{word-spacing:15.120000px;}
.ws68{word-spacing:15.372000px;}
.ws7d{word-spacing:15.435000px;}
.ws1f{word-spacing:15.444000px;}
.wsc5{word-spacing:15.561000px;}
.ws67{word-spacing:15.939000px;}
.ws83{word-spacing:16.080000px;}
.ws69{word-spacing:16.128000px;}
.ws7e{word-spacing:17.955000px;}
.wsa8{word-spacing:18.144000px;}
.ws71{word-spacing:18.396000px;}
.ws82{word-spacing:18.624000px;}
.wsc7{word-spacing:20.601000px;}
.ws65{word-spacing:24.822000px;}
.ws51{word-spacing:36.036000px;}
.ws10f{word-spacing:38.136000px;}
.wsdb{word-spacing:41.728500px;}
.ws129{word-spacing:104.784000px;}
.ws13e{word-spacing:109.392000px;}
.ws12a{word-spacing:125.040000px;}
.ws131{word-spacing:127.008000px;}
.ws124{word-spacing:141.456000px;}
.ws13b{word-spacing:144.912000px;}
.ws130{word-spacing:145.536000px;}
.ws11b{word-spacing:149.232000px;}
.ws14f{word-spacing:151.104000px;}
.ws123{word-spacing:154.032000px;}
.ws116{word-spacing:155.952000px;}
.ws150{word-spacing:159.120000px;}
.ws113{word-spacing:162.288000px;}
.ws126{word-spacing:162.528000px;}
.ws149{word-spacing:162.624000px;}
.ws125{word-spacing:165.600000px;}
.ws13a{word-spacing:165.744000px;}
.ws12f{word-spacing:166.320000px;}
.ws145{word-spacing:167.952000px;}
.ws144{word-spacing:168.768000px;}
.ws13f{word-spacing:170.208000px;}
.ws14e{word-spacing:171.552000px;}
.ws115{word-spacing:171.744000px;}
.ws11c{word-spacing:172.368000px;}
.ws4b{word-spacing:175.105800px;}
.ws121{word-spacing:176.496000px;}
.ws11a{word-spacing:178.272000px;}
.ws11f{word-spacing:178.416000px;}
.ws134{word-spacing:178.992000px;}
.ws142{word-spacing:179.952000px;}
.ws14a{word-spacing:182.160000px;}
.ws119{word-spacing:183.600000px;}
.ws138{word-spacing:191.712000px;}
.ws14c{word-spacing:193.008000px;}
.ws118{word-spacing:193.584000px;}
.ws12b{word-spacing:194.256000px;}
.ws143{word-spacing:195.216000px;}
.ws127{word-spacing:197.664000px;}
.ws12c{word-spacing:198.864000px;}
.ws137{word-spacing:198.912000px;}
.ws11d{word-spacing:205.152000px;}
.ws139{word-spacing:206.112000px;}
.ws122{word-spacing:206.208000px;}
.ws133{word-spacing:207.792000px;}
.ws14b{word-spacing:207.888000px;}
.ws128{word-spacing:208.752000px;}
.ws12d{word-spacing:210.912000px;}
.ws11e{word-spacing:212.736000px;}
.ws12e{word-spacing:213.552000px;}
.ws132{word-spacing:218.688000px;}
.ws117{word-spacing:220.464000px;}
.ws136{word-spacing:221.568000px;}
.ws151{word-spacing:222.000000px;}
.ws14d{word-spacing:222.720000px;}
.ws13c{word-spacing:223.920000px;}
.ws148{word-spacing:224.016000px;}
.ws140{word-spacing:224.784000px;}
.ws141{word-spacing:224.832000px;}
.ws147{word-spacing:229.536000px;}
.ws135{word-spacing:235.152000px;}
.ws146{word-spacing:235.344000px;}
._24{margin-left:-33.516000px;}
._1c{margin-left:-29.215200px;}
._21{margin-left:-27.615600px;}
._1d{margin-left:-25.904400px;}
._23{margin-left:-22.557900px;}
._25{margin-left:-21.496800px;}
._1e{margin-left:-18.189600px;}
._1a{margin-left:-15.230400px;}
._19{margin-left:-14.013000px;}
._1f{margin-left:-12.144000px;}
._20{margin-left:-10.176000px;}
._1b{margin-left:-8.343600px;}
._14{margin-left:-6.695100px;}
._d{margin-left:-5.670000px;}
._15{margin-left:-4.498500px;}
._f{margin-left:-2.697600px;}
._b{margin-left:-1.394400px;}
._e{width:1.035600px;}
._7{width:2.058600px;}
._6{width:3.547800px;}
._10{width:4.878000px;}
._11{width:6.749400px;}
._c{width:8.010000px;}
._18{width:9.733200px;}
._13{width:11.538600px;}
._9{width:12.921000px;}
._a{width:15.330000px;}
._5{width:17.082000px;}
._2{width:18.439800px;}
._16{width:20.196000px;}
._4{width:24.440400px;}
._1{width:25.710600px;}
._17{width:28.241100px;}
._22{width:32.658000px;}
._0{width:34.076400px;}
._3{width:35.784600px;}
._26{width:38.178000px;}
._8{width:41.128200px;}
._34{width:64.377600px;}
._2d{width:71.817600px;}
._2b{width:78.684000px;}
._36{width:80.354400px;}
._45{width:83.760000px;}
._35{width:94.706400px;}
._12{width:97.216200px;}
._37{width:112.080000px;}
._4a{width:116.889600px;}
._38{width:120.240000px;}
._2c{width:124.233600px;}
._43{width:127.460400px;}
._44{width:135.312000px;}
._3d{width:137.616000px;}
._39{width:143.961600px;}
._41{width:146.405400px;}
._48{width:147.696000px;}
._3f{width:150.192000px;}
._42{width:151.270800px;}
._32{width:154.464000px;}
._49{width:156.768000px;}
._33{width:162.576000px;}
._2f{width:164.352000px;}
._3e{width:165.696000px;}
._3a{width:166.848000px;}
._27{width:169.104000px;}
._2e{width:173.817600px;}
._2a{width:175.056000px;}
._40{width:177.504000px;}
._28{width:178.992000px;}
._30{width:181.776000px;}
._47{width:182.832000px;}
._46{width:184.320000px;}
._4b{width:186.288000px;}
._4e{width:189.936000px;}
._31{width:191.184000px;}
._4d{width:192.240000px;}
._4c{width:194.793600px;}
._3c{width:200.736000px;}
._3b{width:202.752000px;}
._29{width:206.976000px;}
.fc3{color:rgb(39,68,160);}
.fc4{color:rgb(127,96,31);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs11{font-size:5.374200px;}
.fsb{font-size:14.800200px;}
.fs9{font-size:16.145400px;}
.fsa{font-size:21.527400px;}
.fse{font-size:27.000000px;}
.fsc{font-size:30.420000px;}
.fsf{font-size:33.120000px;}
.fs10{font-size:36.000000px;}
.fs15{font-size:40.500000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:42.120000px;}
.fs19{font-size:45.000000px;}
.fs1a{font-size:46.500000px;}
.fs6{font-size:46.683000px;}
.fs17{font-size:48.000000px;}
.fs18{font-size:49.500000px;}
.fs8{font-size:53.100000px;}
.fs13{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs12{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs14{font-size:78.000000px;}
.fs16{font-size:108.000000px;}
.fs2{font-size:426.000000px;}
.fs5{font-size:432.000000px;}
.fs1{font-size:438.000000px;}
.y36{bottom:-16.460636px;}
.y35{bottom:-11.413768px;}
.y34{bottom:-6.366900px;}
.y51{bottom:-0.004800px;}
.y0{bottom:0.000000px;}
.y3b{bottom:2.859930px;}
.y19{bottom:3.735600px;}
.y2d{bottom:21.236250px;}
.y4c{bottom:21.659550px;}
.y2b{bottom:39.986250px;}
.y3a{bottom:42.588450px;}
.y96{bottom:52.618200px;}
.y9c{bottom:52.724400px;}
.y29{bottom:58.736250px;}
.y95{bottom:67.018200px;}
.y7d{bottom:72.608250px;}
.y27{bottom:77.486250px;}
.y8{bottom:79.110600px;}
.y157{bottom:79.853550px;}
.y94{bottom:81.418200px;}
.y13{bottom:91.600800px;}
.y93{bottom:95.818200px;}
.y25{bottom:96.236250px;}
.y7{bottom:99.360600px;}
.y156{bottom:100.103550px;}
.y52{bottom:110.108250px;}
.y92{bottom:110.218200px;}
.y12{bottom:110.350800px;}
.y13d{bottom:118.680750px;}
.y105{bottom:118.798800px;}
.y91{bottom:124.618200px;}
.y7c{bottom:128.858250px;}
.y13c{bottom:133.080750px;}
.y104{bottom:133.198800px;}
.y90{bottom:139.018200px;}
.y13b{bottom:147.480900px;}
.y103{bottom:147.598800px;}
.y66{bottom:147.608250px;}
.y23{bottom:147.631950px;}
.y8f{bottom:153.418200px;}
.y33{bottom:156.925500px;}
.y37{bottom:160.948050px;}
.y30{bottom:160.956300px;}
.y13a{bottom:161.880750px;}
.y102{bottom:161.998800px;}
.y2f{bottom:164.992650px;}
.y65{bottom:166.358250px;}
.y8e{bottom:167.818200px;}
.y32{bottom:176.031030px;}
.y139{bottom:176.280750px;}
.y101{bottom:176.398800px;}
.y8d{bottom:182.218200px;}
.y31{bottom:182.489250px;}
.y77{bottom:185.108250px;}
.y22{bottom:185.131950px;}
.y138{bottom:190.680750px;}
.y100{bottom:190.798800px;}
.y8c{bottom:196.618200px;}
.y64{bottom:203.858250px;}
.y21{bottom:203.881950px;}
.y137{bottom:205.080750px;}
.yff{bottom:205.198800px;}
.y8b{bottom:211.018200px;}
.y136{bottom:219.480750px;}
.yfe{bottom:219.598800px;}
.y63{bottom:222.608250px;}
.y20{bottom:222.631950px;}
.y8a{bottom:225.418200px;}
.y135{bottom:233.880750px;}
.yfd{bottom:233.998800px;}
.y89{bottom:239.818200px;}
.y62{bottom:241.358250px;}
.y134{bottom:248.280750px;}
.yfc{bottom:248.398800px;}
.y88{bottom:254.218200px;}
.y76{bottom:260.108250px;}
.y1f{bottom:260.131950px;}
.y133{bottom:262.680750px;}
.yfb{bottom:262.798800px;}
.y87{bottom:268.618200px;}
.y132{bottom:277.080750px;}
.yfa{bottom:277.198800px;}
.y61{bottom:278.858250px;}
.y1e{bottom:278.881950px;}
.y86{bottom:283.018200px;}
.y131{bottom:291.480750px;}
.yf9{bottom:291.598800px;}
.y85{bottom:297.418200px;}
.y60{bottom:297.608250px;}
.y1d{bottom:297.631950px;}
.y130{bottom:305.880750px;}
.yf8{bottom:305.998800px;}
.y84{bottom:311.818200px;}
.y5f{bottom:316.358250px;}
.y12f{bottom:320.280750px;}
.yf7{bottom:320.398800px;}
.y83{bottom:326.218200px;}
.y12e{bottom:334.680750px;}
.yf6{bottom:334.798800px;}
.y75{bottom:335.108250px;}
.y12d{bottom:349.080750px;}
.yf5{bottom:349.198800px;}
.y5e{bottom:353.858250px;}
.y12c{bottom:363.480750px;}
.yf4{bottom:363.598800px;}
.y5d{bottom:372.608250px;}
.y1c{bottom:372.631950px;}
.y12b{bottom:377.880750px;}
.yf3{bottom:377.998800px;}
.y74{bottom:391.358250px;}
.y12a{bottom:392.280750px;}
.yf2{bottom:392.398800px;}
.y129{bottom:406.680750px;}
.yf1{bottom:406.798800px;}
.y5c{bottom:410.108250px;}
.y1b{bottom:410.131950px;}
.y128{bottom:421.080750px;}
.yf0{bottom:421.198800px;}
.y5b{bottom:428.858250px;}
.y1a{bottom:428.881950px;}
.y127{bottom:435.480750px;}
.yef{bottom:435.598800px;}
.y24{bottom:445.122000px;}
.y5a{bottom:447.608250px;}
.y126{bottom:449.880750px;}
.yee{bottom:449.998800px;}
.yce{bottom:450.158250px;}
.y125{bottom:464.280750px;}
.yed{bottom:464.398800px;}
.ycd{bottom:464.558250px;}
.y2e{bottom:466.358250px;}
.y124{bottom:478.680750px;}
.yec{bottom:478.798800px;}
.ycc{bottom:478.958250px;}
.y2c{bottom:485.108250px;}
.y123{bottom:493.080750px;}
.ycb{bottom:493.358250px;}
.y2a{bottom:503.858250px;}
.y122{bottom:507.480750px;}
.yca{bottom:507.758250px;}
.y121{bottom:521.880750px;}
.yc9{bottom:522.158250px;}
.y28{bottom:522.608250px;}
.y120{bottom:536.280750px;}
.yeb{bottom:536.398800px;}
.yc8{bottom:536.558250px;}
.y26{bottom:541.358250px;}
.y11f{bottom:550.680750px;}
.yea{bottom:550.798800px;}
.yc7{bottom:550.958250px;}
.y59{bottom:560.108250px;}
.y11e{bottom:565.080750px;}
.ye9{bottom:565.198800px;}
.yc6{bottom:565.358250px;}
.y58{bottom:578.858250px;}
.y11d{bottom:579.480750px;}
.ye8{bottom:579.598800px;}
.yc5{bottom:579.758250px;}
.y11c{bottom:593.880750px;}
.ye7{bottom:593.998800px;}
.yc4{bottom:594.158250px;}
.y47{bottom:597.608250px;}
.y11b{bottom:608.280750px;}
.ye6{bottom:608.398800px;}
.yc3{bottom:608.558250px;}
.y46{bottom:616.358250px;}
.y11a{bottom:622.680750px;}
.ye5{bottom:622.798800px;}
.yc2{bottom:622.958250px;}
.y45{bottom:635.108250px;}
.y119{bottom:637.080750px;}
.ye4{bottom:637.198800px;}
.yc1{bottom:637.358250px;}
.y118{bottom:651.480750px;}
.ye3{bottom:651.598800px;}
.yc0{bottom:651.758250px;}
.y44{bottom:653.858250px;}
.yb{bottom:664.863450px;}
.y117{bottom:665.880750px;}
.ye2{bottom:665.998800px;}
.ybf{bottom:666.158250px;}
.y43{bottom:672.608250px;}
.y116{bottom:680.280750px;}
.ye1{bottom:680.398800px;}
.ybe{bottom:680.558250px;}
.ya{bottom:683.613450px;}
.y42{bottom:691.358250px;}
.y115{bottom:694.680750px;}
.ye0{bottom:694.798800px;}
.ybd{bottom:694.958250px;}
.y9{bottom:702.363450px;}
.y114{bottom:709.080750px;}
.ydf{bottom:709.198800px;}
.ybc{bottom:709.358250px;}
.y41{bottom:710.108250px;}
.y113{bottom:723.480750px;}
.yde{bottom:723.598800px;}
.ybb{bottom:723.758250px;}
.y82{bottom:726.096300px;}
.y40{bottom:728.858250px;}
.y112{bottom:737.880750px;}
.ydd{bottom:737.998800px;}
.yba{bottom:738.158250px;}
.y3f{bottom:747.608250px;}
.y81{bottom:747.708600px;}
.y111{bottom:752.280750px;}
.ydc{bottom:752.398800px;}
.yb9{bottom:752.558250px;}
.y6{bottom:760.673100px;}
.y3e{bottom:766.358250px;}
.y110{bottom:766.680750px;}
.ydb{bottom:766.798800px;}
.yb8{bottom:766.958250px;}
.y80{bottom:777.708600px;}
.y10f{bottom:781.080750px;}
.yda{bottom:781.198800px;}
.yb7{bottom:781.358250px;}
.y3d{bottom:785.108250px;}
.y11{bottom:787.885650px;}
.y10e{bottom:795.480900px;}
.yd9{bottom:795.598800px;}
.yb6{bottom:795.758250px;}
.y5{bottom:798.173100px;}
.y57{bottom:803.858250px;}
.y7f{bottom:807.708600px;}
.y10d{bottom:809.880750px;}
.yd8{bottom:809.998800px;}
.y155{bottom:810.079200px;}
.yb5{bottom:810.158250px;}
.y7b{bottom:822.608250px;}
.y10c{bottom:824.280750px;}
.yd7{bottom:824.398800px;}
.y154{bottom:824.479200px;}
.yb4{bottom:824.558250px;}
.y10{bottom:825.385650px;}
.y10b{bottom:838.680750px;}
.yd6{bottom:838.798800px;}
.y153{bottom:838.879200px;}
.yb3{bottom:838.958250px;}
.y56{bottom:841.358250px;}
.y4f{bottom:843.076050px;}
.y10a{bottom:853.080750px;}
.yd5{bottom:853.198800px;}
.y152{bottom:853.279200px;}
.yb2{bottom:853.358250px;}
.y4e{bottom:853.876050px;}
.y73{bottom:860.108250px;}
.y4d{bottom:864.676050px;}
.yd4{bottom:867.598800px;}
.y151{bottom:867.679200px;}
.yb1{bottom:867.758250px;}
.y72{bottom:878.858250px;}
.y55{bottom:878.858400px;}
.yd3{bottom:881.998800px;}
.y150{bottom:882.079200px;}
.yb0{bottom:882.158250px;}
.y4{bottom:884.423100px;}
.yd2{bottom:896.398800px;}
.y14f{bottom:896.479200px;}
.yaf{bottom:896.558250px;}
.y71{bottom:897.608250px;}
.y109{bottom:910.680750px;}
.y14e{bottom:910.879200px;}
.yae{bottom:910.958250px;}
.yf{bottom:911.635650px;}
.y7a{bottom:916.358250px;}
.y54{bottom:916.358400px;}
.y108{bottom:925.080750px;}
.y14d{bottom:925.279200px;}
.yad{bottom:925.358250px;}
.y16{bottom:930.088050px;}
.y70{bottom:935.108250px;}
.y53{bottom:935.108400px;}
.y107{bottom:939.480900px;}
.yd1{bottom:939.598800px;}
.y14c{bottom:939.679200px;}
.yac{bottom:939.758250px;}
.y15{bottom:948.838050px;}
.y6f{bottom:953.858250px;}
.y106{bottom:953.880750px;}
.yd0{bottom:953.998800px;}
.y14b{bottom:954.079200px;}
.yab{bottom:954.158250px;}
.y4b{bottom:955.990500px;}
.y14{bottom:967.588050px;}
.y14a{bottom:968.479200px;}
.yaa{bottom:968.558250px;}
.y3{bottom:970.673100px;}
.y4a{bottom:971.425200px;}
.y6e{bottom:972.608250px;}
.y50{bottom:976.222500px;}
.y49{bottom:979.180050px;}
.y149{bottom:982.879200px;}
.ya9{bottom:982.958250px;}
.y79{bottom:991.358250px;}
.y148{bottom:997.279200px;}
.ya8{bottom:997.358250px;}
.ye{bottom:997.885650px;}
.y6d{bottom:1010.108250px;}
.y147{bottom:1011.679200px;}
.ya7{bottom:1011.758250px;}
.y9e{bottom:1013.835900px;}
.y48{bottom:1016.170050px;}
.y146{bottom:1026.079200px;}
.ya6{bottom:1026.158250px;}
.y9d{bottom:1028.835900px;}
.y6c{bottom:1028.858250px;}
.y145{bottom:1040.479200px;}
.ya5{bottom:1040.558250px;}
.y6b{bottom:1047.608250px;}
.y144{bottom:1054.879200px;}
.ya4{bottom:1054.958250px;}
.y2{bottom:1056.923100px;}
.y78{bottom:1066.358250px;}
.y9b{bottom:1066.358400px;}
.y143{bottom:1069.279200px;}
.ya3{bottom:1069.358250px;}
.y142{bottom:1083.679200px;}
.ya2{bottom:1083.758250px;}
.yd{bottom:1084.135650px;}
.y6a{bottom:1085.108250px;}
.y9a{bottom:1085.108400px;}
.y141{bottom:1098.079200px;}
.ya1{bottom:1098.158250px;}
.y39{bottom:1102.843500px;}
.y69{bottom:1103.858250px;}
.y99{bottom:1103.858400px;}
.y140{bottom:1112.479200px;}
.ya0{bottom:1112.558250px;}
.y18{bottom:1119.234000px;}
.y68{bottom:1122.608250px;}
.y98{bottom:1122.608400px;}
.y13f{bottom:1126.879200px;}
.y9f{bottom:1126.958250px;}
.y3c{bottom:1127.241600px;}
.y17{bottom:1136.879400px;}
.ycf{bottom:1137.020700px;}
.y13e{bottom:1141.279200px;}
.y67{bottom:1141.358250px;}
.y97{bottom:1141.358400px;}
.y38{bottom:1145.431950px;}
.y7e{bottom:1187.797050px;}
.yc{bottom:1187.827350px;}
.y1{bottom:1344.174000px;}
.h20{height:3.581925px;}
.h13{height:10.656144px;}
.h14{height:10.804146px;}
.h15{height:11.447089px;}
.hf{height:11.786142px;}
.h10{height:15.069180px;}
.h11{height:17.329557px;}
.h1a{height:19.406250px;}
.h1b{height:19.656738px;}
.h16{height:22.145760px;}
.h18{height:22.176180px;}
.h1d{height:23.805000px;}
.h1e{height:27.432000px;}
.h1c{height:29.311500px;}
.h19{height:30.705480px;}
.hc{height:32.766000px;}
.h1f{height:32.848500px;}
.h12{height:33.420000px;}
.hb{height:33.751809px;}
.ha{height:34.356000px;}
.h2d{height:38.037000px;}
.h26{height:38.544000px;}
.h2b{height:39.120000px;}
.h2a{height:39.264000px;}
.h29{height:40.491000px;}
.h28{height:41.679000px;}
.he{height:43.435800px;}
.h24{height:44.100000px;}
.h22{height:48.258000px;}
.h6{height:50.589000px;}
.h27{height:51.534000px;}
.h21{height:52.536000px;}
.h2c{height:53.676000px;}
.h7{height:55.368000px;}
.h2{height:57.312000px;}
.h4{height:58.896000px;}
.h17{height:61.296000px;}
.h23{height:65.676000px;}
.h25{height:85.968000px;}
.hd{height:120.030000px;}
.h3{height:303.534000px;}
.h5{height:339.096000px;}
.h8{height:1262.835000px;}
.h9{height:1263.000000px;}
.h1{height:1292.250000px;}
.h0{height:1292.598450px;}
.w9{width:-83.868000px;}
.w8{width:-13.651500px;}
.wa{width:29.949000px;}
.w6{width:95.325000px;}
.w4{width:155.143500px;}
.w7{width:189.876000px;}
.w5{width:623.835000px;}
.w2{width:892.914000px;}
.w3{width:893.250000px;}
.w0{width:914.173500px;}
.wb{width:914.173950px;}
.w1{width:914.250000px;}
.x1{left:-1.381800px;}
.x0{left:0.000000px;}
.x13{left:5.372550px;}
.x1d{left:29.344350px;}
.xa{left:31.846350px;}
.x25{left:42.519600px;}
.x1e{left:55.275600px;}
.x3{left:60.797250px;}
.x2{left:62.406600px;}
.xb{left:110.444850px;}
.x27{left:122.104200px;}
.x5{left:123.307050px;}
.x6{left:124.703850px;}
.x20{left:136.099050px;}
.x10{left:148.817100px;}
.xc{left:187.342650px;}
.xd{left:195.955200px;}
.xf{left:210.873450px;}
.x9{left:246.640500px;}
.x1f{left:258.867000px;}
.x23{left:259.956000px;}
.x4{left:270.298650px;}
.x8{left:278.486850px;}
.x29{left:322.082250px;}
.x18{left:363.296100px;}
.x7{left:394.459950px;}
.xe{left:436.797300px;}
.x12{left:444.825000px;}
.x17{left:450.708600px;}
.x21{left:463.881600px;}
.x22{left:475.350450px;}
.x11{left:477.045300px;}
.x14{left:489.224850px;}
.x19{left:490.935000px;}
.x26{left:518.778600px;}
.x28{left:531.710850px;}
.x1c{left:545.878500px;}
.x1b{left:547.520250px;}
.x1a{left:561.151500px;}
.x24{left:644.472000px;}
.x16{left:647.599500px;}
.x15{left:678.391500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.250667pt;}
.ls3{letter-spacing:-13.237333pt;}
.ls28{letter-spacing:-6.880000pt;}
.lsa6{letter-spacing:-4.010667pt;}
.ls9c{letter-spacing:-3.840000pt;}
.ls1b{letter-spacing:-2.968000pt;}
.lsa7{letter-spacing:-2.517333pt;}
.ls76{letter-spacing:-2.453333pt;}
.ls94{letter-spacing:-2.048000pt;}
.ls8f{letter-spacing:-1.962667pt;}
.ls3d{letter-spacing:-1.773333pt;}
.lsa3{letter-spacing:-1.749333pt;}
.ls7c{letter-spacing:-1.640000pt;}
.ls98{letter-spacing:-1.493333pt;}
.ls97{letter-spacing:-1.450667pt;}
.ls9a{letter-spacing:-1.365333pt;}
.ls91{letter-spacing:-1.280000pt;}
.ls7e{letter-spacing:-1.240000pt;}
.ls95{letter-spacing:-1.237333pt;}
.ls93{letter-spacing:-1.066667pt;}
.ls1e{letter-spacing:-1.064000pt;}
.ls96{letter-spacing:-0.554667pt;}
.ls26{letter-spacing:-0.512000pt;}
.ls56{letter-spacing:-0.469333pt;}
.ls54{letter-spacing:-0.448000pt;}
.ls77{letter-spacing:-0.392000pt;}
.ls5{letter-spacing:-0.389333pt;}
.ls38{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.280000pt;}
.ls20{letter-spacing:-0.263115pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls3c{letter-spacing:-0.224000pt;}
.lsa4{letter-spacing:-0.170667pt;}
.ls1f{letter-spacing:-0.133948pt;}
.ls3b{letter-spacing:-0.112000pt;}
.ls7a{letter-spacing:-0.085333pt;}
.ls36{letter-spacing:-0.056000pt;}
.ls90{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls92{letter-spacing:0.042667pt;}
.ls18{letter-spacing:0.056000pt;}
.lsa5{letter-spacing:0.085333pt;}
.ls58{letter-spacing:0.093867pt;}
.ls46{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.108160pt;}
.ls55{letter-spacing:0.112000pt;}
.ls37{letter-spacing:0.117333pt;}
.ls9b{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.129163pt;}
.ls14{letter-spacing:0.143515pt;}
.ls15{letter-spacing:0.153084pt;}
.ls7d{letter-spacing:0.170667pt;}
.ls32{letter-spacing:0.176000pt;}
.ls99{letter-spacing:0.213333pt;}
.ls23{letter-spacing:0.243360pt;}
.ls62{letter-spacing:0.266667pt;}
.ls35{letter-spacing:0.278933pt;}
.ls44{letter-spacing:0.279467pt;}
.ls0{letter-spacing:0.280000pt;}
.ls5c{letter-spacing:0.281067pt;}
.ls42{letter-spacing:0.292267pt;}
.ls61{letter-spacing:0.308000pt;}
.ls43{letter-spacing:0.308267pt;}
.lsc{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.323200pt;}
.ls45{letter-spacing:0.336000pt;}
.lsa1{letter-spacing:0.340800pt;}
.ls7f{letter-spacing:0.341333pt;}
.ls89{letter-spacing:0.384000pt;}
.ls50{letter-spacing:0.426133pt;}
.ls4c{letter-spacing:0.426667pt;}
.ls48{letter-spacing:0.436800pt;}
.ls4d{letter-spacing:0.445333pt;}
.ls51{letter-spacing:0.448533pt;}
.ls4a{letter-spacing:0.469333pt;}
.ls4b{letter-spacing:0.469867pt;}
.ls49{letter-spacing:0.476800pt;}
.ls53{letter-spacing:0.560000pt;}
.ls5d{letter-spacing:0.576000pt;}
.ls52{letter-spacing:0.616000pt;}
.ls6f{letter-spacing:0.640000pt;}
.ls8c{letter-spacing:0.658933pt;}
.ls8d{letter-spacing:0.659733pt;}
.ls21{letter-spacing:0.731925pt;}
.ls9e{letter-spacing:0.800533pt;}
.ls4f{letter-spacing:0.823467pt;}
.ls59{letter-spacing:0.877867pt;}
.ls67{letter-spacing:0.879200pt;}
.ls71{letter-spacing:0.879467pt;}
.ls73{letter-spacing:0.933333pt;}
.ls5f{letter-spacing:0.968000pt;}
.ls78{letter-spacing:1.064000pt;}
.lsa2{letter-spacing:1.066667pt;}
.ls5e{letter-spacing:1.079467pt;}
.ls64{letter-spacing:1.080000pt;}
.ls8a{letter-spacing:1.109333pt;}
.ls1a{letter-spacing:1.120000pt;}
.ls8b{letter-spacing:1.120533pt;}
.ls5a{letter-spacing:1.122667pt;}
.ls86{letter-spacing:1.194667pt;}
.lsa0{letter-spacing:1.195200pt;}
.ls33{letter-spacing:1.265600pt;}
.ls34{letter-spacing:1.266133pt;}
.ls2e{letter-spacing:1.266667pt;}
.ls3a{letter-spacing:1.290667pt;}
.ls68{letter-spacing:1.320000pt;}
.ls80{letter-spacing:1.322667pt;}
.ls19{letter-spacing:1.333333pt;}
.ls81{letter-spacing:1.333867pt;}
.ls85{letter-spacing:1.342400pt;}
.ls87{letter-spacing:1.361600pt;}
.ls82{letter-spacing:1.408000pt;}
.ls79{letter-spacing:1.450667pt;}
.ls29{letter-spacing:1.465600pt;}
.ls2b{letter-spacing:1.466133pt;}
.ls2f{letter-spacing:1.525333pt;}
.ls2{letter-spacing:1.557333pt;}
.ls3f{letter-spacing:1.600000pt;}
.ls66{letter-spacing:1.646933pt;}
.ls74{letter-spacing:1.653333pt;}
.ls75{letter-spacing:1.706667pt;}
.ls24{letter-spacing:1.760000pt;}
.ls27{letter-spacing:1.792000pt;}
.ls7b{letter-spacing:1.840000pt;}
.ls9{letter-spacing:1.866667pt;}
.ls12{letter-spacing:1.904000pt;}
.ls65{letter-spacing:1.927467pt;}
.ls4{letter-spacing:1.946667pt;}
.ls84{letter-spacing:2.132800pt;}
.ls70{letter-spacing:2.133333pt;}
.ls6b{letter-spacing:2.144000pt;}
.ls6e{letter-spacing:2.145067pt;}
.ls4e{letter-spacing:2.146133pt;}
.ls83{letter-spacing:2.152533pt;}
.ls88{letter-spacing:2.171733pt;}
.ls57{letter-spacing:2.328267pt;}
.ls6a{letter-spacing:2.644800pt;}
.ls40{letter-spacing:2.700000pt;}
.lsf{letter-spacing:2.780232pt;}
.ls16{letter-spacing:2.800000pt;}
.ls30{letter-spacing:3.050667pt;}
.lsd{letter-spacing:3.072000pt;}
.lse{letter-spacing:3.112200pt;}
.ls5b{letter-spacing:3.123733pt;}
.ls31{letter-spacing:3.285333pt;}
.ls9f{letter-spacing:3.306667pt;}
.ls41{letter-spacing:3.360000pt;}
.ls8{letter-spacing:3.520000pt;}
.ls72{letter-spacing:3.546667pt;}
.ls60{letter-spacing:3.744533pt;}
.lsb{letter-spacing:3.840000pt;}
.ls6d{letter-spacing:3.942400pt;}
.lsa{letter-spacing:4.356800pt;}
.ls3e{letter-spacing:4.906667pt;}
.ls11{letter-spacing:4.956000pt;}
.ls1d{letter-spacing:5.003200pt;}
.ls1c{letter-spacing:5.050400pt;}
.ls8e{letter-spacing:5.096000pt;}
.ls9d{letter-spacing:5.208000pt;}
.ls6{letter-spacing:5.440000pt;}
.ls63{letter-spacing:5.535467pt;}
.ls7{letter-spacing:5.680000pt;}
.ls69{letter-spacing:6.158400pt;}
.ls6c{letter-spacing:6.169067pt;}
.ls2d{letter-spacing:6.586667pt;}
.ls10{letter-spacing:8.495467pt;}
.ls39{letter-spacing:10.458667pt;}
.ls2c{letter-spacing:13.235200pt;}
.ls2a{letter-spacing:13.274667pt;}
.wsa{word-spacing:-103.680000pt;}
.ws1{word-spacing:-77.626667pt;}
.wsb{word-spacing:-73.840000pt;}
.ws0{word-spacing:-63.072000pt;}
.ws8{word-spacing:-61.125333pt;}
.ws2f{word-spacing:-27.104000pt;}
.ws49{word-spacing:-23.306667pt;}
.ws4a{word-spacing:-22.344000pt;}
.ws3d{word-spacing:-20.469333pt;}
.ws3f{word-spacing:-19.101333pt;}
.ws29{word-spacing:-18.898667pt;}
.ws28{word-spacing:-17.610667pt;}
.ws36{word-spacing:-16.061333pt;}
.ws35{word-spacing:-15.048000pt;}
.ws47{word-spacing:-14.896000pt;}
.ws39{word-spacing:-14.237333pt;}
.wse7{word-spacing:-14.168000pt;}
.ws37{word-spacing:-14.085333pt;}
.wse8{word-spacing:-14.056000pt;}
.ws9{word-spacing:-13.888000pt;}
.ws44{word-spacing:-13.781333pt;}
.ws34{word-spacing:-13.629333pt;}
.ws50{word-spacing:-13.440000pt;}
.ws42{word-spacing:-13.386667pt;}
.ws38{word-spacing:-13.122667pt;}
.ws9d{word-spacing:-13.048000pt;}
.ws3c{word-spacing:-12.768000pt;}
.ws12{word-spacing:-12.460800pt;}
.ws13{word-spacing:-12.413600pt;}
.ws19{word-spacing:-12.373333pt;}
.ws14{word-spacing:-12.366400pt;}
.ws9b{word-spacing:-12.320000pt;}
.ws9a{word-spacing:-12.266667pt;}
.ws9f{word-spacing:-12.208000pt;}
.ws2b{word-spacing:-12.008000pt;}
.ws10{word-spacing:-11.946667pt;}
.ws11{word-spacing:-11.733333pt;}
.ws9c{word-spacing:-11.536000pt;}
.ws4d{word-spacing:-11.480000pt;}
.ws2{word-spacing:-11.424000pt;}
.ws152{word-spacing:-11.256000pt;}
.ws4e{word-spacing:-11.144000pt;}
.wse6{word-spacing:-11.008000pt;}
.wsf{word-spacing:-10.864000pt;}
.ws27{word-spacing:-10.741333pt;}
.ws4c{word-spacing:-10.696000pt;}
.wsa0{word-spacing:-9.941333pt;}
.wsa4{word-spacing:-9.800000pt;}
.wsde{word-spacing:-9.685333pt;}
.wse0{word-spacing:-9.600000pt;}
.wsa2{word-spacing:-9.560000pt;}
.wse{word-spacing:-9.419592pt;}
.wse5{word-spacing:-9.386667pt;}
.wsdd{word-spacing:-9.301333pt;}
.wsdf{word-spacing:-9.258667pt;}
.ws4f{word-spacing:-9.002667pt;}
.ws41{word-spacing:-8.968000pt;}
.wse2{word-spacing:-8.746667pt;}
.wse3{word-spacing:-8.704000pt;}
.wsa3{word-spacing:-8.533333pt;}
.wsa1{word-spacing:-8.448000pt;}
.wse1{word-spacing:-8.192000pt;}
.ws9e{word-spacing:-8.160000pt;}
.wse4{word-spacing:-8.021333pt;}
.wsdc{word-spacing:-7.978667pt;}
.wsd{word-spacing:-7.232000pt;}
.wsa6{word-spacing:-6.720000pt;}
.ws110{word-spacing:-6.586667pt;}
.wsa5{word-spacing:-6.320000pt;}
.ws22{word-spacing:-5.050400pt;}
.ws13d{word-spacing:-5.034667pt;}
.ws7{word-spacing:-4.480000pt;}
.ws17{word-spacing:-4.286345pt;}
.ws120{word-spacing:-3.328000pt;}
.ws15{word-spacing:-3.286486pt;}
.ws30{word-spacing:-3.285333pt;}
.ws16{word-spacing:-3.157323pt;}
.ws20{word-spacing:-3.112200pt;}
.wsca{word-spacing:-2.800000pt;}
.wscb{word-spacing:-2.666667pt;}
.ws7b{word-spacing:-2.632000pt;}
.wsb1{word-spacing:-2.464000pt;}
.ws79{word-spacing:-2.240000pt;}
.ws112{word-spacing:-2.176000pt;}
.ws72{word-spacing:-1.960000pt;}
.ws5{word-spacing:-1.946667pt;}
.wsbe{word-spacing:-1.680000pt;}
.ws52{word-spacing:-1.600000pt;}
.wsce{word-spacing:-1.568000pt;}
.ws40{word-spacing:-1.525333pt;}
.ws61{word-spacing:-1.512000pt;}
.ws6c{word-spacing:-1.344000pt;}
.ws31{word-spacing:-1.290667pt;}
.ws76{word-spacing:-1.288000pt;}
.ws2c{word-spacing:-1.266667pt;}
.ws59{word-spacing:-1.232000pt;}
.ws86{word-spacing:-1.109333pt;}
.ws18{word-spacing:-0.746276pt;}
.ws23{word-spacing:-0.708000pt;}
.wsf9{word-spacing:-0.682667pt;}
.ws87{word-spacing:-0.597333pt;}
.wsa7{word-spacing:-0.560000pt;}
.ws63{word-spacing:-0.504000pt;}
.ws53{word-spacing:-0.480000pt;}
.wsbc{word-spacing:-0.448000pt;}
.wsd6{word-spacing:-0.426667pt;}
.wsff{word-spacing:-0.384000pt;}
.wsed{word-spacing:-0.341333pt;}
.ws100{word-spacing:-0.298667pt;}
.wsba{word-spacing:-0.280000pt;}
.ws114{word-spacing:-0.256000pt;}
.ws25{word-spacing:-0.143515pt;}
.ws111{word-spacing:-0.128000pt;}
.ws102{word-spacing:-0.042667pt;}
.ws1c{word-spacing:-0.032000pt;}
.ws3{word-spacing:0.000000pt;}
.wsec{word-spacing:0.042667pt;}
.ws85{word-spacing:0.128000pt;}
.wsf2{word-spacing:0.170667pt;}
.ws1a{word-spacing:0.224000pt;}
.ws2d{word-spacing:0.234667pt;}
.wsda{word-spacing:0.256000pt;}
.ws26{word-spacing:0.263115pt;}
.ws48{word-spacing:0.280000pt;}
.ws3a{word-spacing:0.336000pt;}
.ws6{word-spacing:0.389333pt;}
.ws45{word-spacing:0.392000pt;}
.ws43{word-spacing:0.469333pt;}
.ws1d{word-spacing:0.480000pt;}
.ws46{word-spacing:0.504000pt;}
.ws10e{word-spacing:0.512000pt;}
.ws33{word-spacing:0.560000pt;}
.wsf5{word-spacing:0.597333pt;}
.ws3e{word-spacing:0.616000pt;}
.wsd3{word-spacing:0.725333pt;}
.wsac{word-spacing:0.728000pt;}
.wsf0{word-spacing:0.810667pt;}
.wsab{word-spacing:0.840000pt;}
.ws6e{word-spacing:0.896000pt;}
.wsbf{word-spacing:0.952000pt;}
.ws24{word-spacing:1.064000pt;}
.wsaf{word-spacing:1.120000pt;}
.ws92{word-spacing:1.194667pt;}
.wsb4{word-spacing:1.232000pt;}
.ws88{word-spacing:1.237333pt;}
.ws2a{word-spacing:1.266667pt;}
.wse9{word-spacing:1.280000pt;}
.ws32{word-spacing:1.290667pt;}
.ws3b{word-spacing:1.349333pt;}
.ws8f{word-spacing:1.408000pt;}
.ws2e{word-spacing:1.466667pt;}
.ws5f{word-spacing:1.512000pt;}
.wsfb{word-spacing:1.578667pt;}
.wsf6{word-spacing:1.664000pt;}
.ws60{word-spacing:1.680000pt;}
.wsee{word-spacing:1.706667pt;}
.ws10d{word-spacing:1.749333pt;}
.wsd4{word-spacing:1.792000pt;}
.ws103{word-spacing:1.834667pt;}
.ws90{word-spacing:2.048000pt;}
.wsfe{word-spacing:2.090667pt;}
.wsd1{word-spacing:2.184000pt;}
.wsea{word-spacing:2.304000pt;}
.ws54{word-spacing:2.408000pt;}
.wsb6{word-spacing:2.464000pt;}
.ws91{word-spacing:2.602667pt;}
.ws8d{word-spacing:2.645333pt;}
.wsd9{word-spacing:2.730667pt;}
.ws97{word-spacing:2.856000pt;}
.ws106{word-spacing:2.901333pt;}
.wsd8{word-spacing:2.986667pt;}
.ws108{word-spacing:3.029333pt;}
.wsf7{word-spacing:3.114667pt;}
.ws99{word-spacing:3.192000pt;}
.wsc{word-spacing:3.200000pt;}
.ws21{word-spacing:3.248000pt;}
.ws109{word-spacing:3.328000pt;}
.ws80{word-spacing:3.370667pt;}
.wsf1{word-spacing:3.413333pt;}
.wsf8{word-spacing:3.456000pt;}
.wsc4{word-spacing:3.472000pt;}
.wsd5{word-spacing:3.498667pt;}
.wseb{word-spacing:3.669333pt;}
.wsbd{word-spacing:3.752000pt;}
.ws5c{word-spacing:3.808000pt;}
.wsd7{word-spacing:3.840000pt;}
.wsfc{word-spacing:4.096000pt;}
.wsef{word-spacing:4.138667pt;}
.ws5b{word-spacing:4.200000pt;}
.ws8e{word-spacing:4.309333pt;}
.ws10a{word-spacing:4.352000pt;}
.wsc1{word-spacing:4.368000pt;}
.wsc6{word-spacing:4.816000pt;}
.ws107{word-spacing:4.864000pt;}
.wscc{word-spacing:5.013333pt;}
.wsc0{word-spacing:5.208000pt;}
.wsb3{word-spacing:5.264000pt;}
.ws6a{word-spacing:5.320000pt;}
.ws74{word-spacing:5.376000pt;}
.wsc3{word-spacing:5.432000pt;}
.ws7c{word-spacing:5.600000pt;}
.wsb7{word-spacing:5.656000pt;}
.wsb9{word-spacing:5.712000pt;}
.ws84{word-spacing:5.717333pt;}
.ws8a{word-spacing:5.760000pt;}
.ws75{word-spacing:5.824000pt;}
.ws62{word-spacing:6.048000pt;}
.ws70{word-spacing:6.104000pt;}
.wscd{word-spacing:6.160000pt;}
.ws89{word-spacing:6.272000pt;}
.wsf3{word-spacing:6.314667pt;}
.ws77{word-spacing:6.384000pt;}
.ws81{word-spacing:6.442667pt;}
.wsfa{word-spacing:6.570667pt;}
.ws93{word-spacing:6.613333pt;}
.ws7a{word-spacing:6.776000pt;}
.wsf4{word-spacing:7.168000pt;}
.ws94{word-spacing:7.253333pt;}
.ws1e{word-spacing:7.264000pt;}
.wsb5{word-spacing:7.336000pt;}
.ws7f{word-spacing:7.448000pt;}
.wsd0{word-spacing:7.672000pt;}
.ws8c{word-spacing:7.722667pt;}
.ws5e{word-spacing:7.952000pt;}
.ws5a{word-spacing:8.008000pt;}
.wsad{word-spacing:8.064000pt;}
.wsb0{word-spacing:8.176000pt;}
.ws64{word-spacing:8.232000pt;}
.ws55{word-spacing:8.512000pt;}
.ws56{word-spacing:8.624000pt;}
.ws78{word-spacing:8.736000pt;}
.ws10b{word-spacing:8.746667pt;}
.ws10c{word-spacing:8.789333pt;}
.wsb8{word-spacing:8.848000pt;}
.wsae{word-spacing:8.960000pt;}
.ws101{word-spacing:9.002667pt;}
.wsd2{word-spacing:9.128000pt;}
.ws5d{word-spacing:9.296000pt;}
.ws6f{word-spacing:9.520000pt;}
.wsc8{word-spacing:9.576000pt;}
.ws1b{word-spacing:9.824000pt;}
.ws8b{word-spacing:10.069333pt;}
.wsbb{word-spacing:10.080000pt;}
.wsfd{word-spacing:10.282667pt;}
.ws57{word-spacing:10.360000pt;}
.wscf{word-spacing:10.696000pt;}
.ws6b{word-spacing:10.920000pt;}
.ws95{word-spacing:11.312000pt;}
.ws6d{word-spacing:11.704000pt;}
.wsc2{word-spacing:11.984000pt;}
.ws73{word-spacing:12.152000pt;}
.wsc9{word-spacing:12.320000pt;}
.ws96{word-spacing:12.376000pt;}
.ws98{word-spacing:12.432000pt;}
.wsb2{word-spacing:12.600000pt;}
.ws105{word-spacing:12.800000pt;}
.ws58{word-spacing:12.824000pt;}
.ws104{word-spacing:12.885333pt;}
.ws66{word-spacing:13.160000pt;}
.ws4{word-spacing:13.237333pt;}
.wsaa{word-spacing:13.328000pt;}
.wsa9{word-spacing:13.440000pt;}
.ws68{word-spacing:13.664000pt;}
.ws7d{word-spacing:13.720000pt;}
.ws1f{word-spacing:13.728000pt;}
.wsc5{word-spacing:13.832000pt;}
.ws67{word-spacing:14.168000pt;}
.ws83{word-spacing:14.293333pt;}
.ws69{word-spacing:14.336000pt;}
.ws7e{word-spacing:15.960000pt;}
.wsa8{word-spacing:16.128000pt;}
.ws71{word-spacing:16.352000pt;}
.ws82{word-spacing:16.554667pt;}
.wsc7{word-spacing:18.312000pt;}
.ws65{word-spacing:22.064000pt;}
.ws51{word-spacing:32.032000pt;}
.ws10f{word-spacing:33.898667pt;}
.wsdb{word-spacing:37.092000pt;}
.ws129{word-spacing:93.141333pt;}
.ws13e{word-spacing:97.237333pt;}
.ws12a{word-spacing:111.146667pt;}
.ws131{word-spacing:112.896000pt;}
.ws124{word-spacing:125.738667pt;}
.ws13b{word-spacing:128.810667pt;}
.ws130{word-spacing:129.365333pt;}
.ws11b{word-spacing:132.650667pt;}
.ws14f{word-spacing:134.314667pt;}
.ws123{word-spacing:136.917333pt;}
.ws116{word-spacing:138.624000pt;}
.ws150{word-spacing:141.440000pt;}
.ws113{word-spacing:144.256000pt;}
.ws126{word-spacing:144.469333pt;}
.ws149{word-spacing:144.554667pt;}
.ws125{word-spacing:147.200000pt;}
.ws13a{word-spacing:147.328000pt;}
.ws12f{word-spacing:147.840000pt;}
.ws145{word-spacing:149.290667pt;}
.ws144{word-spacing:150.016000pt;}
.ws13f{word-spacing:151.296000pt;}
.ws14e{word-spacing:152.490667pt;}
.ws115{word-spacing:152.661333pt;}
.ws11c{word-spacing:153.216000pt;}
.ws4b{word-spacing:155.649600pt;}
.ws121{word-spacing:156.885333pt;}
.ws11a{word-spacing:158.464000pt;}
.ws11f{word-spacing:158.592000pt;}
.ws134{word-spacing:159.104000pt;}
.ws142{word-spacing:159.957333pt;}
.ws14a{word-spacing:161.920000pt;}
.ws119{word-spacing:163.200000pt;}
.ws138{word-spacing:170.410667pt;}
.ws14c{word-spacing:171.562667pt;}
.ws118{word-spacing:172.074667pt;}
.ws12b{word-spacing:172.672000pt;}
.ws143{word-spacing:173.525333pt;}
.ws127{word-spacing:175.701333pt;}
.ws12c{word-spacing:176.768000pt;}
.ws137{word-spacing:176.810667pt;}
.ws11d{word-spacing:182.357333pt;}
.ws139{word-spacing:183.210667pt;}
.ws122{word-spacing:183.296000pt;}
.ws133{word-spacing:184.704000pt;}
.ws14b{word-spacing:184.789333pt;}
.ws128{word-spacing:185.557333pt;}
.ws12d{word-spacing:187.477333pt;}
.ws11e{word-spacing:189.098667pt;}
.ws12e{word-spacing:189.824000pt;}
.ws132{word-spacing:194.389333pt;}
.ws117{word-spacing:195.968000pt;}
.ws136{word-spacing:196.949333pt;}
.ws151{word-spacing:197.333333pt;}
.ws14d{word-spacing:197.973333pt;}
.ws13c{word-spacing:199.040000pt;}
.ws148{word-spacing:199.125333pt;}
.ws140{word-spacing:199.808000pt;}
.ws141{word-spacing:199.850667pt;}
.ws147{word-spacing:204.032000pt;}
.ws135{word-spacing:209.024000pt;}
.ws146{word-spacing:209.194667pt;}
._24{margin-left:-29.792000pt;}
._1c{margin-left:-25.969067pt;}
._21{margin-left:-24.547200pt;}
._1d{margin-left:-23.026133pt;}
._23{margin-left:-20.051467pt;}
._25{margin-left:-19.108267pt;}
._1e{margin-left:-16.168533pt;}
._1a{margin-left:-13.538133pt;}
._19{margin-left:-12.456000pt;}
._1f{margin-left:-10.794667pt;}
._20{margin-left:-9.045333pt;}
._1b{margin-left:-7.416533pt;}
._14{margin-left:-5.951200pt;}
._d{margin-left:-5.040000pt;}
._15{margin-left:-3.998667pt;}
._f{margin-left:-2.397867pt;}
._b{margin-left:-1.239467pt;}
._e{width:0.920533pt;}
._7{width:1.829867pt;}
._6{width:3.153600pt;}
._10{width:4.336000pt;}
._11{width:5.999467pt;}
._c{width:7.120000pt;}
._18{width:8.651733pt;}
._13{width:10.256533pt;}
._9{width:11.485333pt;}
._a{width:13.626667pt;}
._5{width:15.184000pt;}
._2{width:16.390933pt;}
._16{width:17.952000pt;}
._4{width:21.724800pt;}
._1{width:22.853867pt;}
._17{width:25.103200pt;}
._22{width:29.029333pt;}
._0{width:30.290133pt;}
._3{width:31.808533pt;}
._26{width:33.936000pt;}
._8{width:36.558400pt;}
._34{width:57.224533pt;}
._2d{width:63.837867pt;}
._2b{width:69.941333pt;}
._36{width:71.426133pt;}
._45{width:74.453333pt;}
._35{width:84.183467pt;}
._12{width:86.414400pt;}
._37{width:99.626667pt;}
._4a{width:103.901867pt;}
._38{width:106.880000pt;}
._2c{width:110.429867pt;}
._43{width:113.298133pt;}
._44{width:120.277333pt;}
._3d{width:122.325333pt;}
._39{width:127.965867pt;}
._41{width:130.138133pt;}
._48{width:131.285333pt;}
._3f{width:133.504000pt;}
._42{width:134.462933pt;}
._32{width:137.301333pt;}
._49{width:139.349333pt;}
._33{width:144.512000pt;}
._2f{width:146.090667pt;}
._3e{width:147.285333pt;}
._3a{width:148.309333pt;}
._27{width:150.314667pt;}
._2e{width:154.504533pt;}
._2a{width:155.605333pt;}
._40{width:157.781333pt;}
._28{width:159.104000pt;}
._30{width:161.578667pt;}
._47{width:162.517333pt;}
._46{width:163.840000pt;}
._4b{width:165.589333pt;}
._4e{width:168.832000pt;}
._31{width:169.941333pt;}
._4d{width:170.880000pt;}
._4c{width:173.149867pt;}
._3c{width:178.432000pt;}
._3b{width:180.224000pt;}
._29{width:183.978667pt;}
.fs11{font-size:4.777067pt;}
.fsb{font-size:13.155733pt;}
.fs9{font-size:14.351467pt;}
.fsa{font-size:19.135467pt;}
.fse{font-size:24.000000pt;}
.fsc{font-size:27.040000pt;}
.fsf{font-size:29.440000pt;}
.fs10{font-size:32.000000pt;}
.fs15{font-size:36.000000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:37.440000pt;}
.fs19{font-size:40.000000pt;}
.fs1a{font-size:41.333333pt;}
.fs6{font-size:41.496000pt;}
.fs17{font-size:42.666667pt;}
.fs18{font-size:44.000000pt;}
.fs8{font-size:47.200000pt;}
.fs13{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs12{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs14{font-size:69.333333pt;}
.fs16{font-size:96.000000pt;}
.fs2{font-size:378.666667pt;}
.fs5{font-size:384.000000pt;}
.fs1{font-size:389.333333pt;}
.y36{bottom:-14.631677pt;}
.y35{bottom:-10.145572pt;}
.y34{bottom:-5.659467pt;}
.y51{bottom:-0.004267pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.542160pt;}
.y19{bottom:3.320533pt;}
.y2d{bottom:18.876667pt;}
.y4c{bottom:19.252933pt;}
.y2b{bottom:35.543333pt;}
.y3a{bottom:37.856400pt;}
.y96{bottom:46.771733pt;}
.y9c{bottom:46.866133pt;}
.y29{bottom:52.210000pt;}
.y95{bottom:59.571733pt;}
.y7d{bottom:64.540667pt;}
.y27{bottom:68.876667pt;}
.y8{bottom:70.320533pt;}
.y157{bottom:70.980933pt;}
.y94{bottom:72.371733pt;}
.y13{bottom:81.422933pt;}
.y93{bottom:85.171733pt;}
.y25{bottom:85.543333pt;}
.y7{bottom:88.320533pt;}
.y156{bottom:88.980933pt;}
.y52{bottom:97.874000pt;}
.y92{bottom:97.971733pt;}
.y12{bottom:98.089600pt;}
.y13d{bottom:105.494000pt;}
.y105{bottom:105.598933pt;}
.y91{bottom:110.771733pt;}
.y7c{bottom:114.540667pt;}
.y13c{bottom:118.294000pt;}
.y104{bottom:118.398933pt;}
.y90{bottom:123.571733pt;}
.y13b{bottom:131.094133pt;}
.y103{bottom:131.198933pt;}
.y66{bottom:131.207333pt;}
.y23{bottom:131.228400pt;}
.y8f{bottom:136.371733pt;}
.y33{bottom:139.489333pt;}
.y37{bottom:143.064933pt;}
.y30{bottom:143.072267pt;}
.y13a{bottom:143.894000pt;}
.y102{bottom:143.998933pt;}
.y2f{bottom:146.660133pt;}
.y65{bottom:147.874000pt;}
.y8e{bottom:149.171733pt;}
.y32{bottom:156.472027pt;}
.y139{bottom:156.694000pt;}
.y101{bottom:156.798933pt;}
.y8d{bottom:161.971733pt;}
.y31{bottom:162.212667pt;}
.y77{bottom:164.540667pt;}
.y22{bottom:164.561733pt;}
.y138{bottom:169.494000pt;}
.y100{bottom:169.598933pt;}
.y8c{bottom:174.771733pt;}
.y64{bottom:181.207333pt;}
.y21{bottom:181.228400pt;}
.y137{bottom:182.294000pt;}
.yff{bottom:182.398933pt;}
.y8b{bottom:187.571733pt;}
.y136{bottom:195.094000pt;}
.yfe{bottom:195.198933pt;}
.y63{bottom:197.874000pt;}
.y20{bottom:197.895067pt;}
.y8a{bottom:200.371733pt;}
.y135{bottom:207.894000pt;}
.yfd{bottom:207.998933pt;}
.y89{bottom:213.171733pt;}
.y62{bottom:214.540667pt;}
.y134{bottom:220.694000pt;}
.yfc{bottom:220.798933pt;}
.y88{bottom:225.971733pt;}
.y76{bottom:231.207333pt;}
.y1f{bottom:231.228400pt;}
.y133{bottom:233.494000pt;}
.yfb{bottom:233.598933pt;}
.y87{bottom:238.771733pt;}
.y132{bottom:246.294000pt;}
.yfa{bottom:246.398933pt;}
.y61{bottom:247.874000pt;}
.y1e{bottom:247.895067pt;}
.y86{bottom:251.571733pt;}
.y131{bottom:259.094000pt;}
.yf9{bottom:259.198933pt;}
.y85{bottom:264.371733pt;}
.y60{bottom:264.540667pt;}
.y1d{bottom:264.561733pt;}
.y130{bottom:271.894000pt;}
.yf8{bottom:271.998933pt;}
.y84{bottom:277.171733pt;}
.y5f{bottom:281.207333pt;}
.y12f{bottom:284.694000pt;}
.yf7{bottom:284.798933pt;}
.y83{bottom:289.971733pt;}
.y12e{bottom:297.494000pt;}
.yf6{bottom:297.598933pt;}
.y75{bottom:297.874000pt;}
.y12d{bottom:310.294000pt;}
.yf5{bottom:310.398933pt;}
.y5e{bottom:314.540667pt;}
.y12c{bottom:323.094000pt;}
.yf4{bottom:323.198933pt;}
.y5d{bottom:331.207333pt;}
.y1c{bottom:331.228400pt;}
.y12b{bottom:335.894000pt;}
.yf3{bottom:335.998933pt;}
.y74{bottom:347.874000pt;}
.y12a{bottom:348.694000pt;}
.yf2{bottom:348.798933pt;}
.y129{bottom:361.494000pt;}
.yf1{bottom:361.598933pt;}
.y5c{bottom:364.540667pt;}
.y1b{bottom:364.561733pt;}
.y128{bottom:374.294000pt;}
.yf0{bottom:374.398933pt;}
.y5b{bottom:381.207333pt;}
.y1a{bottom:381.228400pt;}
.y127{bottom:387.094000pt;}
.yef{bottom:387.198933pt;}
.y24{bottom:395.664000pt;}
.y5a{bottom:397.874000pt;}
.y126{bottom:399.894000pt;}
.yee{bottom:399.998933pt;}
.yce{bottom:400.140667pt;}
.y125{bottom:412.694000pt;}
.yed{bottom:412.798933pt;}
.ycd{bottom:412.940667pt;}
.y2e{bottom:414.540667pt;}
.y124{bottom:425.494000pt;}
.yec{bottom:425.598933pt;}
.ycc{bottom:425.740667pt;}
.y2c{bottom:431.207333pt;}
.y123{bottom:438.294000pt;}
.ycb{bottom:438.540667pt;}
.y2a{bottom:447.874000pt;}
.y122{bottom:451.094000pt;}
.yca{bottom:451.340667pt;}
.y121{bottom:463.894000pt;}
.yc9{bottom:464.140667pt;}
.y28{bottom:464.540667pt;}
.y120{bottom:476.694000pt;}
.yeb{bottom:476.798933pt;}
.yc8{bottom:476.940667pt;}
.y26{bottom:481.207333pt;}
.y11f{bottom:489.494000pt;}
.yea{bottom:489.598933pt;}
.yc7{bottom:489.740667pt;}
.y59{bottom:497.874000pt;}
.y11e{bottom:502.294000pt;}
.ye9{bottom:502.398933pt;}
.yc6{bottom:502.540667pt;}
.y58{bottom:514.540667pt;}
.y11d{bottom:515.094000pt;}
.ye8{bottom:515.198933pt;}
.yc5{bottom:515.340667pt;}
.y11c{bottom:527.894000pt;}
.ye7{bottom:527.998933pt;}
.yc4{bottom:528.140667pt;}
.y47{bottom:531.207333pt;}
.y11b{bottom:540.694000pt;}
.ye6{bottom:540.798933pt;}
.yc3{bottom:540.940667pt;}
.y46{bottom:547.874000pt;}
.y11a{bottom:553.494000pt;}
.ye5{bottom:553.598933pt;}
.yc2{bottom:553.740667pt;}
.y45{bottom:564.540667pt;}
.y119{bottom:566.294000pt;}
.ye4{bottom:566.398933pt;}
.yc1{bottom:566.540667pt;}
.y118{bottom:579.094000pt;}
.ye3{bottom:579.198933pt;}
.yc0{bottom:579.340667pt;}
.y44{bottom:581.207333pt;}
.yb{bottom:590.989733pt;}
.y117{bottom:591.894000pt;}
.ye2{bottom:591.998933pt;}
.ybf{bottom:592.140667pt;}
.y43{bottom:597.874000pt;}
.y116{bottom:604.694000pt;}
.ye1{bottom:604.798933pt;}
.ybe{bottom:604.940667pt;}
.ya{bottom:607.656400pt;}
.y42{bottom:614.540667pt;}
.y115{bottom:617.494000pt;}
.ye0{bottom:617.598933pt;}
.ybd{bottom:617.740667pt;}
.y9{bottom:624.323067pt;}
.y114{bottom:630.294000pt;}
.ydf{bottom:630.398933pt;}
.ybc{bottom:630.540667pt;}
.y41{bottom:631.207333pt;}
.y113{bottom:643.094000pt;}
.yde{bottom:643.198933pt;}
.ybb{bottom:643.340667pt;}
.y82{bottom:645.418933pt;}
.y40{bottom:647.874000pt;}
.y112{bottom:655.894000pt;}
.ydd{bottom:655.998933pt;}
.yba{bottom:656.140667pt;}
.y3f{bottom:664.540667pt;}
.y81{bottom:664.629867pt;}
.y111{bottom:668.694000pt;}
.ydc{bottom:668.798933pt;}
.yb9{bottom:668.940667pt;}
.y6{bottom:676.153867pt;}
.y3e{bottom:681.207333pt;}
.y110{bottom:681.494000pt;}
.ydb{bottom:681.598933pt;}
.yb8{bottom:681.740667pt;}
.y80{bottom:691.296533pt;}
.y10f{bottom:694.294000pt;}
.yda{bottom:694.398933pt;}
.yb7{bottom:694.540667pt;}
.y3d{bottom:697.874000pt;}
.y11{bottom:700.342800pt;}
.y10e{bottom:707.094133pt;}
.yd9{bottom:707.198933pt;}
.yb6{bottom:707.340667pt;}
.y5{bottom:709.487200pt;}
.y57{bottom:714.540667pt;}
.y7f{bottom:717.963200pt;}
.y10d{bottom:719.894000pt;}
.yd8{bottom:719.998933pt;}
.y155{bottom:720.070400pt;}
.yb5{bottom:720.140667pt;}
.y7b{bottom:731.207333pt;}
.y10c{bottom:732.694000pt;}
.yd7{bottom:732.798933pt;}
.y154{bottom:732.870400pt;}
.yb4{bottom:732.940667pt;}
.y10{bottom:733.676133pt;}
.y10b{bottom:745.494000pt;}
.yd6{bottom:745.598933pt;}
.y153{bottom:745.670400pt;}
.yb3{bottom:745.740667pt;}
.y56{bottom:747.874000pt;}
.y4f{bottom:749.400933pt;}
.y10a{bottom:758.294000pt;}
.yd5{bottom:758.398933pt;}
.y152{bottom:758.470400pt;}
.yb2{bottom:758.540667pt;}
.y4e{bottom:759.000933pt;}
.y73{bottom:764.540667pt;}
.y4d{bottom:768.600933pt;}
.yd4{bottom:771.198933pt;}
.y151{bottom:771.270400pt;}
.yb1{bottom:771.340667pt;}
.y72{bottom:781.207333pt;}
.y55{bottom:781.207467pt;}
.yd3{bottom:783.998933pt;}
.y150{bottom:784.070400pt;}
.yb0{bottom:784.140667pt;}
.y4{bottom:786.153867pt;}
.yd2{bottom:796.798933pt;}
.y14f{bottom:796.870400pt;}
.yaf{bottom:796.940667pt;}
.y71{bottom:797.874000pt;}
.y109{bottom:809.494000pt;}
.y14e{bottom:809.670400pt;}
.yae{bottom:809.740667pt;}
.yf{bottom:810.342800pt;}
.y7a{bottom:814.540667pt;}
.y54{bottom:814.540800pt;}
.y108{bottom:822.294000pt;}
.y14d{bottom:822.470400pt;}
.yad{bottom:822.540667pt;}
.y16{bottom:826.744933pt;}
.y70{bottom:831.207333pt;}
.y53{bottom:831.207467pt;}
.y107{bottom:835.094133pt;}
.yd1{bottom:835.198933pt;}
.y14c{bottom:835.270400pt;}
.yac{bottom:835.340667pt;}
.y15{bottom:843.411600pt;}
.y6f{bottom:847.874000pt;}
.y106{bottom:847.894000pt;}
.yd0{bottom:847.998933pt;}
.y14b{bottom:848.070400pt;}
.yab{bottom:848.140667pt;}
.y4b{bottom:849.769333pt;}
.y14{bottom:860.078267pt;}
.y14a{bottom:860.870400pt;}
.yaa{bottom:860.940667pt;}
.y3{bottom:862.820533pt;}
.y4a{bottom:863.489067pt;}
.y6e{bottom:864.540667pt;}
.y50{bottom:867.753333pt;}
.y49{bottom:870.382267pt;}
.y149{bottom:873.670400pt;}
.ya9{bottom:873.740667pt;}
.y79{bottom:881.207333pt;}
.y148{bottom:886.470400pt;}
.ya8{bottom:886.540667pt;}
.ye{bottom:887.009467pt;}
.y6d{bottom:897.874000pt;}
.y147{bottom:899.270400pt;}
.ya7{bottom:899.340667pt;}
.y9e{bottom:901.187467pt;}
.y48{bottom:903.262267pt;}
.y146{bottom:912.070400pt;}
.ya6{bottom:912.140667pt;}
.y9d{bottom:914.520800pt;}
.y6c{bottom:914.540667pt;}
.y145{bottom:924.870400pt;}
.ya5{bottom:924.940667pt;}
.y6b{bottom:931.207333pt;}
.y144{bottom:937.670400pt;}
.ya4{bottom:937.740667pt;}
.y2{bottom:939.487200pt;}
.y78{bottom:947.874000pt;}
.y9b{bottom:947.874133pt;}
.y143{bottom:950.470400pt;}
.ya3{bottom:950.540667pt;}
.y142{bottom:963.270400pt;}
.ya2{bottom:963.340667pt;}
.yd{bottom:963.676133pt;}
.y6a{bottom:964.540667pt;}
.y9a{bottom:964.540800pt;}
.y141{bottom:976.070400pt;}
.ya1{bottom:976.140667pt;}
.y39{bottom:980.305333pt;}
.y69{bottom:981.207333pt;}
.y99{bottom:981.207467pt;}
.y140{bottom:988.870400pt;}
.ya0{bottom:988.940667pt;}
.y18{bottom:994.874667pt;}
.y68{bottom:997.874000pt;}
.y98{bottom:997.874133pt;}
.y13f{bottom:1001.670400pt;}
.y9f{bottom:1001.740667pt;}
.y3c{bottom:1001.992533pt;}
.y17{bottom:1010.559467pt;}
.ycf{bottom:1010.685067pt;}
.y13e{bottom:1014.470400pt;}
.y67{bottom:1014.540667pt;}
.y97{bottom:1014.540800pt;}
.y38{bottom:1018.161733pt;}
.y7e{bottom:1055.819600pt;}
.yc{bottom:1055.846533pt;}
.y1{bottom:1194.821333pt;}
.h20{height:3.183934pt;}
.h13{height:9.472128pt;}
.h14{height:9.603685pt;}
.h15{height:10.175190pt;}
.hf{height:10.476571pt;}
.h10{height:13.394827pt;}
.h11{height:15.404051pt;}
.h1a{height:17.250000pt;}
.h1b{height:17.472656pt;}
.h16{height:19.685120pt;}
.h18{height:19.712160pt;}
.h1d{height:21.160000pt;}
.h1e{height:24.384000pt;}
.h1c{height:26.054667pt;}
.h19{height:27.293760pt;}
.hc{height:29.125333pt;}
.h1f{height:29.198667pt;}
.h12{height:29.706667pt;}
.hb{height:30.001608pt;}
.ha{height:30.538667pt;}
.h2d{height:33.810667pt;}
.h26{height:34.261333pt;}
.h2b{height:34.773333pt;}
.h2a{height:34.901333pt;}
.h29{height:35.992000pt;}
.h28{height:37.048000pt;}
.he{height:38.609600pt;}
.h24{height:39.200000pt;}
.h22{height:42.896000pt;}
.h6{height:44.968000pt;}
.h27{height:45.808000pt;}
.h21{height:46.698667pt;}
.h2c{height:47.712000pt;}
.h7{height:49.216000pt;}
.h2{height:50.944000pt;}
.h4{height:52.352000pt;}
.h17{height:54.485333pt;}
.h23{height:58.378667pt;}
.h25{height:76.416000pt;}
.hd{height:106.693333pt;}
.h3{height:269.808000pt;}
.h5{height:301.418667pt;}
.h8{height:1122.520000pt;}
.h9{height:1122.666667pt;}
.h1{height:1148.666667pt;}
.h0{height:1148.976400pt;}
.w9{width:-74.549333pt;}
.w8{width:-12.134667pt;}
.wa{width:26.621333pt;}
.w6{width:84.733333pt;}
.w4{width:137.905333pt;}
.w7{width:168.778667pt;}
.w5{width:554.520000pt;}
.w2{width:793.701333pt;}
.w3{width:794.000000pt;}
.w0{width:812.598667pt;}
.wb{width:812.599067pt;}
.w1{width:812.666667pt;}
.x1{left:-1.228267pt;}
.x0{left:0.000000pt;}
.x13{left:4.775600pt;}
.x1d{left:26.083867pt;}
.xa{left:28.307867pt;}
.x25{left:37.795200pt;}
.x1e{left:49.133867pt;}
.x3{left:54.042000pt;}
.x2{left:55.472533pt;}
.xb{left:98.173200pt;}
.x27{left:108.537067pt;}
.x5{left:109.606267pt;}
.x6{left:110.847867pt;}
.x20{left:120.976933pt;}
.x10{left:132.281867pt;}
.xc{left:166.526800pt;}
.xd{left:174.182400pt;}
.xf{left:187.443067pt;}
.x9{left:219.236000pt;}
.x1f{left:230.104000pt;}
.x23{left:231.072000pt;}
.x4{left:240.265467pt;}
.x8{left:247.543867pt;}
.x29{left:286.295333pt;}
.x18{left:322.929867pt;}
.x7{left:350.631067pt;}
.xe{left:388.264267pt;}
.x12{left:395.400000pt;}
.x17{left:400.629867pt;}
.x21{left:412.339200pt;}
.x22{left:422.533733pt;}
.x11{left:424.040267pt;}
.x14{left:434.866533pt;}
.x19{left:436.386667pt;}
.x26{left:461.136533pt;}
.x28{left:472.631867pt;}
.x1c{left:485.225333pt;}
.x1b{left:486.684667pt;}
.x1a{left:498.801333pt;}
.x24{left:572.864000pt;}
.x16{left:575.644000pt;}
.x15{left:603.014667pt;}
}




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