
    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_cc24917e2bd1e30fe4293702.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_70065496055ae5ba3e738a85.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0df7920e45c12c96729c1b45.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ead0d462fe2fdb601611fc66.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50ab86202615b28339b08367.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8b8a383172064eda69e51b93.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.451000;font-style:normal;font-weight: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_05f54f3c913c8f2d140a6971.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7c221228f45d51a80b090582.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898000;font-style:normal;font-weight: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_f59fee63178aaed58d5341ce.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2c1bec6cf819682d9fd0300f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.716000;font-style:normal;font-weight: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_f491fcf8424392c4a6a0af64.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_042b01bd0c91f71da3e3e16f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929000;font-style:normal;font-weight: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_5529e77b84196ccb48506cf7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.685000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_695518e7d5e290d6ccb2cf29.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.677000;font-style:normal;font-weight: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_7b3bbde43ad335a8c7f2490b.woff2')format("woff");}.fff{font-family:fff;line-height:3.009000;font-style:normal;font-weight: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_ec4b9b463f90c391f9007823.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.510000;font-style:normal;font-weight: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_7a075ac1c0b7c4896402ebff.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.918000;font-style:normal;font-weight: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_8d9f37f5d48787fc825aeb2a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.918000;font-style:normal;font-weight: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_363ad07b54ae23a0a47456d2.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b0d168e7b1f68586de33eadc.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.731000;font-style:normal;font-weight: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_26cdee011f332edbd815d626.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_b0d168e7b1f68586de33eadc.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.731000;font-style:normal;font-weight: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_2be8cf52d973195422685c6b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ed6fd96dfee45730b26c4382.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_b0d168e7b1f68586de33eadc.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.731000;font-style:normal;font-weight: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_b0d168e7b1f68586de33eadc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.731000;font-style:normal;font-weight: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_7f83711cdfcedab10923b19e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.915000;font-style:normal;font-weight: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_e9168184f72362c3b67937c0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.727000;font-style:normal;font-weight: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_7f83711cdfcedab10923b19e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.915000;font-style:normal;font-weight: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_e9168184f72362c3b67937c0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.727000;font-style:normal;font-weight: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_7f83711cdfcedab10923b19e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.915000;font-style:normal;font-weight: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_e9168184f72362c3b67937c0.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.727000;font-style:normal;font-weight: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_642749215d46583f2327eed5.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.687000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_2a2dbe404c0ecfe4ac527d4a.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.923000;font-style:normal;font-weight: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_d3727178a03422d96032f4cb.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_ea67f6542042c69942ea2fb0.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.690000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_0c9ab04e38a6356f4869385d.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.922000;font-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);}
.v11{vertical-align:-34.656000px;}
.v14{vertical-align:-21.522000px;}
.v1{vertical-align:-14.610000px;}
.v9{vertical-align:-13.446000px;}
.v19{vertical-align:-10.794000px;}
.v2{vertical-align:-8.964000px;}
.v17{vertical-align:-3.588000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.640594px;}
.ve{vertical-align:5.382000px;}
.v1a{vertical-align:9.816000px;}
.v8{vertical-align:20.616000px;}
.v4{vertical-align:21.690000px;}
.v7{vertical-align:23.532000px;}
.vd{vertical-align:34.656000px;}
.v6{vertical-align:40.764000px;}
.vb{vertical-align:44.298000px;}
.v12{vertical-align:58.344000px;}
.vc{vertical-align:78.954000px;}
.v5{vertical-align:102.216000px;}
.v15{vertical-align:107.598000px;}
.vf{vertical-align:120.150000px;}
.v16{vertical-align:125.532000px;}
.va{vertical-align:138.084000px;}
.v18{vertical-align:143.466000px;}
.v10{vertical-align:191.286000px;}
.v13{vertical-align:221.412000px;}
.ls13{letter-spacing:0.000000px;}
.lsb7{letter-spacing:0.000369px;}
.lsa8{letter-spacing:0.000532px;}
.lsb4{letter-spacing:0.000767px;}
.ls46{letter-spacing:0.000777px;}
.ls9d{letter-spacing:0.001326px;}
.lsa4{letter-spacing:0.001506px;}
.lsd6{letter-spacing:0.001649px;}
.ls9a{letter-spacing:0.002222px;}
.lscb{letter-spacing:0.002847px;}
.ls2f{letter-spacing:0.004003px;}
.ls2c{letter-spacing:0.004179px;}
.lsb5{letter-spacing:0.004200px;}
.lsf{letter-spacing:0.004208px;}
.lsa0{letter-spacing:0.004420px;}
.lsca{letter-spacing:0.007261px;}
.lsa2{letter-spacing:0.008205px;}
.ls65{letter-spacing:0.009158px;}
.ls26{letter-spacing:0.010092px;}
.ls96{letter-spacing:0.012251px;}
.lsd5{letter-spacing:0.012375px;}
.ls21{letter-spacing:0.012543px;}
.ls4b{letter-spacing:0.014245px;}
.lsce{letter-spacing:0.015339px;}
.lsb9{letter-spacing:0.015953px;}
.lsd0{letter-spacing:0.017852px;}
.ls35{letter-spacing:0.017880px;}
.ls60{letter-spacing:0.017923px;}
.ls6d{letter-spacing:0.018147px;}
.ls6b{letter-spacing:0.018441px;}
.lsc6{letter-spacing:0.018581px;}
.ls63{letter-spacing:0.020455px;}
.ls54{letter-spacing:0.020612px;}
.lsd{letter-spacing:0.020624px;}
.ls9e{letter-spacing:0.020675px;}
.ls1d{letter-spacing:0.021333px;}
.ls37{letter-spacing:0.021440px;}
.ls9c{letter-spacing:0.022322px;}
.ls9{letter-spacing:0.022596px;}
.ls3e{letter-spacing:0.023524px;}
.ls51{letter-spacing:0.023532px;}
.ls8c{letter-spacing:0.024958px;}
.lsc0{letter-spacing:0.025063px;}
.ls52{letter-spacing:0.026459px;}
.ls56{letter-spacing:0.026612px;}
.ls4d{letter-spacing:0.029191px;}
.lsd1{letter-spacing:0.030002px;}
.ls98{letter-spacing:0.030787px;}
.ls4f{letter-spacing:0.033433px;}
.lsbb{letter-spacing:1.506341px;}
.ls3b{letter-spacing:2.092146px;}
.ls5c{letter-spacing:2.132026px;}
.ls2b{letter-spacing:2.151922px;}
.ls6a{letter-spacing:2.163072px;}
.ls57{letter-spacing:2.170689px;}
.ls28{letter-spacing:2.979789px;}
.lsba{letter-spacing:2.983140px;}
.lscf{letter-spacing:2.984177px;}
.ls7{letter-spacing:2.984525px;}
.ls29{letter-spacing:2.985789px;}
.ls67{letter-spacing:2.986982px;}
.lsc9{letter-spacing:2.987251px;}
.lsa{letter-spacing:2.988615px;}
.lsc7{letter-spacing:2.990017px;}
.lsc8{letter-spacing:2.990177px;}
.ls5{letter-spacing:2.990525px;}
.ls77{letter-spacing:2.991340px;}
.ls49{letter-spacing:3.407209px;}
.lsd2{letter-spacing:5.402908px;}
.ls3{letter-spacing:5.408908px;}
.ls25{letter-spacing:6.395989px;}
.ls1f{letter-spacing:6.455765px;}
.lsad{letter-spacing:7.157622px;}
.lsc3{letter-spacing:7.166525px;}
.lsaa{letter-spacing:7.170538px;}
.lsa7{letter-spacing:7.171138px;}
.lsc1{letter-spacing:7.172525px;}
.lsbd{letter-spacing:9.922750px;}
.lsb0{letter-spacing:9.958350px;}
.lsae{letter-spacing:9.964350px;}
.ls3d{letter-spacing:9.982525px;}
.ls41{letter-spacing:13.270183px;}
.ls48{letter-spacing:13.329959px;}
.ls5e{letter-spacing:13.389734px;}
.ls8b{letter-spacing:13.569061px;}
.ls40{letter-spacing:13.640753px;}
.ls68{letter-spacing:14.286368px;}
.ls89{letter-spacing:14.824349px;}
.ls88{letter-spacing:14.884124px;}
.ls16{letter-spacing:15.362329px;}
.ls17{letter-spacing:15.422105px;}
.lsd3{letter-spacing:15.481880px;}
.ls5a{letter-spacing:15.541656px;}
.ls85{letter-spacing:15.960085px;}
.ls5d{letter-spacing:16.354982px;}
.ls69{letter-spacing:16.438290px;}
.ls34{letter-spacing:16.557841px;}
.ls0{letter-spacing:16.617617px;}
.ls47{letter-spacing:16.677392px;}
.ls62{letter-spacing:16.796525px;}
.ls59{letter-spacing:16.796944px;}
.ls32{letter-spacing:16.856719px;}
.lsc5{letter-spacing:17.036046px;}
.ls6c{letter-spacing:17.394700px;}
.lsbf{letter-spacing:17.514251px;}
.ls1c{letter-spacing:17.813129px;}
.ls1a{letter-spacing:17.872904px;}
.ls75{letter-spacing:17.882525px;}
.ls76{letter-spacing:18.231558px;}
.ls2e{letter-spacing:18.649987px;}
.lsb6{letter-spacing:18.709763px;}
.ls3c{letter-spacing:18.769538px;}
.ls15{letter-spacing:18.889090px;}
.ls5b{letter-spacing:19.008641px;}
.ls2{letter-spacing:19.068416px;}
.ls33{letter-spacing:19.076525px;}
.ls74{letter-spacing:19.307519px;}
.ls95{letter-spacing:19.367294px;}
.ls87{letter-spacing:19.586525px;}
.ls53{letter-spacing:19.590615px;}
.ls36{letter-spacing:19.592525px;}
.ls79{letter-spacing:19.598525px;}
.lsbe{letter-spacing:19.725948px;}
.ls50{letter-spacing:19.746615px;}
.ls58{letter-spacing:19.804982px;}
.lsb8{letter-spacing:19.905275px;}
.lsd4{letter-spacing:19.965050px;}
.ls44{letter-spacing:20.024826px;}
.ls9b{letter-spacing:20.108525px;}
.ls8a{letter-spacing:20.204153px;}
.ls24{letter-spacing:20.562806px;}
.ls7a{letter-spacing:20.564525px;}
.ls1{letter-spacing:20.610679px;}
.ls1b{letter-spacing:20.816525px;}
.lsc4{letter-spacing:20.838538px;}
.lsc2{letter-spacing:20.844538px;}
.ls72{letter-spacing:20.861684px;}
.ls30{letter-spacing:21.321789px;}
.ls31{letter-spacing:21.326525px;}
.ls2a{letter-spacing:21.399665px;}
.ls7b{letter-spacing:21.414532px;}
.ls7c{letter-spacing:21.420532px;}
.ls18{letter-spacing:21.937645px;}
.lsc{letter-spacing:21.997421px;}
.ls42{letter-spacing:22.016908px;}
.ls38{letter-spacing:22.236523px;}
.ls91{letter-spacing:22.356074px;}
.ls99{letter-spacing:22.370525px;}
.ls94{letter-spacing:22.376525px;}
.ls14{letter-spacing:22.526525px;}
.lsd7{letter-spacing:22.619144px;}
.ls4c{letter-spacing:22.692615px;}
.ls23{letter-spacing:22.714728px;}
.ls70{letter-spacing:22.910525px;}
.ls43{letter-spacing:22.914615px;}
.lsbc{letter-spacing:22.915614px;}
.ls6f{letter-spacing:22.916525px;}
.lsa1{letter-spacing:22.953830px;}
.ls4e{letter-spacing:23.004615px;}
.ls7f{letter-spacing:23.013606px;}
.ls83{letter-spacing:23.096525px;}
.ls84{letter-spacing:23.102525px;}
.lsb{letter-spacing:23.252708px;}
.ls3f{letter-spacing:23.790689px;}
.ls86{letter-spacing:23.850464px;}
.ls10{letter-spacing:23.936525px;}
.ls3a{letter-spacing:23.970016px;}
.ls61{letter-spacing:23.999933px;}
.ls8e{letter-spacing:24.038525px;}
.ls71{letter-spacing:24.051789px;}
.ls27{letter-spacing:24.089567px;}
.ls19{letter-spacing:24.268894px;}
.ls66{letter-spacing:24.492615px;}
.ls97{letter-spacing:24.584525px;}
.ls80{letter-spacing:24.627547px;}
.ls1e{letter-spacing:25.052525px;}
.ls5f{letter-spacing:25.460908px;}
.ls8f{letter-spacing:25.464406px;}
.ls92{letter-spacing:25.718525px;}
.ls82{letter-spacing:25.736525px;}
.lscc{letter-spacing:25.900363px;}
.lsa3{letter-spacing:25.970525px;}
.ls6{letter-spacing:26.062162px;}
.ls39{letter-spacing:26.121937px;}
.ls2d{letter-spacing:26.156525px;}
.lse{letter-spacing:26.234525px;}
.ls22{letter-spacing:26.546525px;}
.ls9f{letter-spacing:26.738525px;}
.ls11{letter-spacing:27.735878px;}
.ls12{letter-spacing:27.795654px;}
.ls8{letter-spacing:27.830525px;}
.ls7e{letter-spacing:28.214083px;}
.ls4{letter-spacing:28.273859px;}
.ls78{letter-spacing:28.658525px;}
.ls20{letter-spacing:29.536363px;}
.ls64{letter-spacing:29.600908px;}
.ls45{letter-spacing:29.887800px;}
.ls7d{letter-spacing:30.126902px;}
.ls8d{letter-spacing:30.854525px;}
.ls90{letter-spacing:31.083312px;}
.ls81{letter-spacing:31.202863px;}
.ls73{letter-spacing:31.441966px;}
.ls93{letter-spacing:32.426525px;}
.ls6e{letter-spacing:40.408306px;}
.lsa6{letter-spacing:59.775600px;}
.lsb3{letter-spacing:66.944525px;}
.lsaf{letter-spacing:83.028308px;}
.lsb2{letter-spacing:86.582525px;}
.lsb1{letter-spacing:90.188525px;}
.lsac{letter-spacing:91.337117px;}
.lsab{letter-spacing:98.498525px;}
.lsa9{letter-spacing:118.714342px;}
.lsa5{letter-spacing:121.742525px;}
.ls55{letter-spacing:131.506320px;}
.ls4a{letter-spacing:263.789723px;}
.lscd{letter-spacing:2086.172177px;}
.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;}
}
.wse9{word-spacing:-135.320003px;}
.wseb{word-spacing:-99.633970px;}
.ws4f{word-spacing:-59.835376px;}
.ws3c{word-spacing:-59.775600px;}
.ws69{word-spacing:-49.852850px;}
.ws6b{word-spacing:-43.217759px;}
.ws58{word-spacing:-43.157983px;}
.wsb7{word-spacing:-41.902696px;}
.ws62{word-spacing:-40.109428px;}
.wsbb{word-spacing:-39.571447px;}
.ws3b{word-spacing:-38.937826px;}
.wsc3{word-spacing:-36.013410px;}
.wsb1{word-spacing:-35.984911px;}
.wsb2{word-spacing:-35.925136px;}
.wsc6{word-spacing:-35.285220px;}
.wsac{word-spacing:-35.267604px;}
.wsad{word-spacing:-35.207828px;}
.wsc1{word-spacing:-34.484940px;}
.wsf9{word-spacing:-33.223278px;}
.ws3d{word-spacing:-31.633157px;}
.ws5f{word-spacing:-31.621292px;}
.ws59{word-spacing:-28.955301px;}
.ws67{word-spacing:-23.515721px;}
.ws5d{word-spacing:-22.379985px;}
.ws1c{word-spacing:-19.092327px;}
.ws66{word-spacing:-19.032551px;}
.ws68{word-spacing:-18.913000px;}
.ws91{word-spacing:-17.683534px;}
.ws38{word-spacing:-16.605662px;}
.ws6d{word-spacing:-9.622896px;}
.wsef{word-spacing:-9.050026px;}
.wsf7{word-spacing:-8.870985px;}
.ws4e{word-spacing:-6.682912px;}
.ws4c{word-spacing:-6.623136px;}
.ws5b{word-spacing:-3.335478px;}
.ws6c{word-spacing:-3.275703px;}
.ws9d{word-spacing:-3.096376px;}
.wsbe{word-spacing:-2.976825px;}
.wsc0{word-spacing:-2.857274px;}
.ws9f{word-spacing:-2.773588px;}
.wsa0{word-spacing:-2.438844px;}
.ws73{word-spacing:-2.319293px;}
.ws74{word-spacing:-2.259518px;}
.ws6f{word-spacing:-2.032896px;}
.ws1b{word-spacing:-2.020415px;}
.ws82{word-spacing:-1.721537px;}
.wsd5{word-spacing:-1.542210px;}
.ws8f{word-spacing:-1.482435px;}
.wsa2{word-spacing:-1.362884px;}
.ws54{word-spacing:-1.303108px;}
.ws89{word-spacing:-1.183557px;}
.wsbc{word-spacing:-0.944454px;}
.ws9c{word-spacing:-0.765128px;}
.ws4{word-spacing:-0.722091px;}
.ws1a{word-spacing:-0.645576px;}
.wsab{word-spacing:-0.585801px;}
.ws45{word-spacing:-0.526025px;}
.wsbf{word-spacing:-0.466250px;}
.ws18{word-spacing:-0.167372px;}
.wsd{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047820px;}
.wse8{word-spacing:-0.041843px;}
.ws5a{word-spacing:-0.018896px;}
.wse7{word-spacing:-0.015471px;}
.wsee{word-spacing:-0.006785px;}
.wsf0{word-spacing:-0.000785px;}
.ws2b{word-spacing:0.000000px;}
.ws4d{word-spacing:0.011955px;}
.ws2a{word-spacing:0.071731px;}
.ws65{word-spacing:0.131506px;}
.ws8{word-spacing:0.186500px;}
.ws46{word-spacing:0.251058px;}
.wse1{word-spacing:0.370609px;}
.ws96{word-spacing:0.430384px;}
.wse4{word-spacing:0.490160px;}
.wsf8{word-spacing:0.729262px;}
.ws1e{word-spacing:0.789038px;}
.wsff{word-spacing:0.951630px;}
.ws8d{word-spacing:0.968365px;}
.ws8c{word-spacing:1.028140px;}
.ws28{word-spacing:1.147692px;}
.ws7{word-spacing:1.190733px;}
.ws29{word-spacing:1.207467px;}
.wsb8{word-spacing:1.267243px;}
.ws13{word-spacing:1.279198px;}
.wsf1{word-spacing:1.327018px;}
.wse0{word-spacing:1.386794px;}
.wsb5{word-spacing:1.446570px;}
.wsfb{word-spacing:1.506345px;}
.ws85{word-spacing:1.566121px;}
.wsa{word-spacing:1.573298px;}
.ws83{word-spacing:1.625896px;}
.wsb4{word-spacing:1.649807px;}
.ws44{word-spacing:1.685672px;}
.ws43{word-spacing:1.745448px;}
.wscc{word-spacing:1.864999px;}
.ws1f{word-spacing:2.044326px;}
.ws5{word-spacing:2.147145px;}
.ws20{word-spacing:2.223652px;}
.ws35{word-spacing:2.283428px;}
.ws19{word-spacing:2.462755px;}
.ws21{word-spacing:2.522530px;}
.ws97{word-spacing:2.582306px;}
.ws81{word-spacing:2.701857px;}
.wse3{word-spacing:2.761633px;}
.ws2{word-spacing:2.816633px;}
.ws10d{word-spacing:2.864454px;}
.ws33{word-spacing:2.940960px;}
.ws16{word-spacing:2.952915px;}
.ws9e{word-spacing:3.000735px;}
.ws60{word-spacing:3.060511px;}
.ws61{word-spacing:3.120286px;}
.wsa9{word-spacing:3.180062px;}
.wsa8{word-spacing:3.239838px;}
.wsf{word-spacing:3.299613px;}
.ws24{word-spacing:3.359389px;}
.ws9a{word-spacing:3.383299px;}
.ws63{word-spacing:3.419164px;}
.ws7a{word-spacing:3.478940px;}
.ws17{word-spacing:3.550671px;}
.wsba{word-spacing:3.598491px;}
.wse5{word-spacing:3.658267px;}
.wsa7{word-spacing:3.741953px;}
.ws76{word-spacing:3.777818px;}
.wsbd{word-spacing:3.837594px;}
.ws57{word-spacing:3.861504px;}
.wsf3{word-spacing:3.897369px;}
.wsb9{word-spacing:4.076696px;}
.ws6{word-spacing:4.155610px;}
.ws7e{word-spacing:4.196247px;}
.ws26{word-spacing:4.315798px;}
.ws27{word-spacing:4.375574px;}
.ws75{word-spacing:4.399484px;}
.ws7b{word-spacing:4.435350px;}
.ws8a{word-spacing:4.614676px;}
.wsb{word-spacing:4.633816px;}
.wsfc{word-spacing:4.674452px;}
.ws39{word-spacing:4.698362px;}
.wsca{word-spacing:4.734228px;}
.ws72{word-spacing:4.853779px;}
.ws71{word-spacing:4.913554px;}
.wse2{word-spacing:4.973330px;}
.ws2f{word-spacing:5.391759px;}
.wsa6{word-spacing:5.451535px;}
.wsaf{word-spacing:5.511310px;}
.wsde{word-spacing:5.571086px;}
.ws49{word-spacing:5.630862px;}
.wsb6{word-spacing:5.690637px;}
.ws80{word-spacing:5.714547px;}
.ws2d{word-spacing:5.869964px;}
.ws12{word-spacing:6.001470px;}
.wsd6{word-spacing:6.109066px;}
.ws40{word-spacing:6.121021px;}
.wsdf{word-spacing:6.168842px;}
.ws64{word-spacing:6.180797px;}
.ws36{word-spacing:6.467720px;}
.ws25{word-spacing:6.527496px;}
.ws31{word-spacing:6.551406px;}
.ws41{word-spacing:6.587271px;}
.ws22{word-spacing:6.647047px;}
.ws32{word-spacing:6.670957px;}
.ws9{word-spacing:6.737923px;}
.ws3a{word-spacing:6.778553px;}
.wscb{word-spacing:6.826374px;}
.wsa5{word-spacing:7.005700px;}
.wsdd{word-spacing:7.065476px;}
.wse6{word-spacing:7.125252px;}
.ws95{word-spacing:7.149162px;}
.ws51{word-spacing:7.185027px;}
.wsb0{word-spacing:7.244803px;}
.ws9b{word-spacing:7.304578px;}
.ws4a{word-spacing:7.364354px;}
.wsaa{word-spacing:7.424130px;}
.wsfd{word-spacing:7.503052px;}
.ws70{word-spacing:7.543681px;}
.ws6e{word-spacing:7.603456px;}
.wsb3{word-spacing:7.663232px;}
.wse{word-spacing:7.782783px;}
.wsd2{word-spacing:7.806693px;}
.ws98{word-spacing:7.842559px;}
.ws79{word-spacing:7.902334px;}
.wsae{word-spacing:7.962110px;}
.ws5c{word-spacing:8.021886px;}
.wsa4{word-spacing:8.081661px;}
.wsa3{word-spacing:8.141437px;}
.ws1d{word-spacing:8.260988px;}
.ws3e{word-spacing:8.272943px;}
.ws4b{word-spacing:8.380539px;}
.ws52{word-spacing:8.500090px;}
.wsdc{word-spacing:8.559866px;}
.wsce{word-spacing:8.619642px;}
.wscd{word-spacing:8.679417px;}
.ws11{word-spacing:8.691372px;}
.wsc9{word-spacing:8.763103px;}
.ws3f{word-spacing:8.810923px;}
.ws88{word-spacing:9.038071px;}
.ws87{word-spacing:9.097846px;}
.ws78{word-spacing:9.121757px;}
.ws14{word-spacing:9.169577px;}
.ws42{word-spacing:9.456500px;}
.ws15{word-spacing:9.528231px;}
.ws37{word-spacing:9.576051px;}
.ws86{word-spacing:9.695602px;}
.ws2e{word-spacing:9.815154px;}
.wsd8{word-spacing:10.317269px;}
.ws10{word-spacing:10.484640px;}
.ws0{word-spacing:10.675922px;}
.ws47{word-spacing:10.795473px;}
.ws84{word-spacing:10.855249px;}
.ws102{word-spacing:10.993956px;}
.wsa1{word-spacing:11.010666px;}
.ws8e{word-spacing:11.070441px;}
.ws10a{word-spacing:11.089597px;}
.ws8b{word-spacing:11.189992px;}
.wsda{word-spacing:11.369319px;}
.ws48{word-spacing:11.500825px;}
.ws5e{word-spacing:11.608422px;}
.ws104{word-spacing:11.711265px;}
.ws55{word-spacing:11.907300px;}
.wscf{word-spacing:12.026851px;}
.wsdb{word-spacing:12.265953px;}
.ws6a{word-spacing:12.517011px;}
.wsd3{word-spacing:12.648517px;}
.wsd4{word-spacing:12.744158px;}
.ws50{word-spacing:13.114767px;}
.ws93{word-spacing:13.186497px;}
.wsc{word-spacing:13.282138px;}
.ws94{word-spacing:13.521241px;}
.ws56{word-spacing:14.011401px;}
.ws109{word-spacing:14.389219px;}
.wsd0{word-spacing:14.417875px;}
.wsf2{word-spacing:14.609157px;}
.ws7c{word-spacing:14.668932px;}
.ws2c{word-spacing:16.067635px;}
.ws7d{word-spacing:16.163322px;}
.ws100{word-spacing:16.545928px;}
.wsf4{word-spacing:16.612100px;}
.wsf5{word-spacing:16.618100px;}
.ws10c{word-spacing:16.928492px;}
.ws10e{word-spacing:18.028366px;}
.ws10b{word-spacing:18.315290px;}
.wsc5{word-spacing:18.345254px;}
.ws90{word-spacing:18.399053px;}
.ws101{word-spacing:20.706320px;}
.ws53{word-spacing:20.879557px;}
.ws23{word-spacing:21.244248px;}
.ws99{word-spacing:22.475626px;}
.ws34{word-spacing:22.535401px;}
.wsfe{word-spacing:22.666964px;}
.ws7f{word-spacing:24.209118px;}
.ws105{word-spacing:24.240262px;}
.ws30{word-spacing:25.045976px;}
.ws103{word-spacing:25.966586px;}
.wsd1{word-spacing:26.121937px;}
.ws107{word-spacing:27.061678px;}
.wsc8{word-spacing:27.078347px;}
.ws77{word-spacing:27.377225px;}
.wsd7{word-spacing:28.512961px;}
.ws108{word-spacing:29.074925px;}
.ws3{word-spacing:29.840054px;}
.wsea{word-spacing:30.820299px;}
.ws92{word-spacing:31.023536px;}
.wsd9{word-spacing:31.657158px;}
.wsc4{word-spacing:36.392271px;}
.ws106{word-spacing:38.208659px;}
.wsec{word-spacing:43.169938px;}
.wsc7{word-spacing:54.634694px;}
.wsed{word-spacing:70.547163px;}
.wsc2{word-spacing:92.915303px;}
.wsf6{word-spacing:365.780066px;}
.wsfa{word-spacing:763.107265px;}
._31{margin-left:-865.682201px;}
._44{margin-left:-737.118048px;}
._1d{margin-left:-696.324763px;}
._13{margin-left:-664.766702px;}
._21{margin-left:-519.807444px;}
._1a{margin-left:-475.418337px;}
._3b{margin-left:-377.909371px;}
._3d{margin-left:-346.247486px;}
._17{margin-left:-343.991330px;}
._3c{margin-left:-334.021230px;}
._14{margin-left:-324.192495px;}
._16{margin-left:-322.406001px;}
._15{margin-left:-320.897372px;}
._1f{margin-left:-316.984942px;}
._20{margin-left:-315.348926px;}
._18{margin-left:-307.587952px;}
._19{margin-left:-305.025976px;}
._1b{margin-left:-303.092852px;}
._41{margin-left:-118.714342px;}
._42{margin-left:-83.028308px;}
._46{margin-left:-16.780687px;}
._0{margin-left:-5.738458px;}
._3{margin-left:-4.256033px;}
._9{margin-left:-3.048556px;}
._2{margin-left:-1.386797px;}
._5{width:1.291156px;}
._f{width:2.486675px;}
._b{width:3.586536px;}
._47{width:5.163408px;}
._2e{width:7.065479px;}
._26{width:9.277184px;}
._27{width:10.628091px;}
._45{width:11.650855px;}
._2d{width:13.210408px;}
._4{width:14.489642px;}
._3a{width:15.792602px;}
._2c{width:16.976270px;}
._d{width:17.992456px;}
._e{width:19.247743px;}
._29{width:20.562806px;}
._6{width:22.140938px;}
._25{width:24.089567px;}
._8{width:25.464406px;}
._a{width:26.899020px;}
._11{width:28.417317px;}
._1{width:29.887800px;}
._38{width:31.465883px;}
._32{width:32.996131px;}
._7{width:34.048267px;}
._c{width:35.088277px;}
._2a{width:37.682535px;}
._28{width:38.734589px;}
._36{width:39.822508px;}
._39{width:41.245164px;}
._3e{width:42.440676px;}
._49{width:43.708028px;}
._34{width:45.357729px;}
._4a{width:47.175086px;}
._3f{width:49.087726px;}
._35{width:50.414748px;}
._30{width:51.703127px;}
._37{width:53.020957px;}
._22{width:58.826919px;}
._2f{width:60.350000px;}
._12{width:123.062967px;}
._43{width:134.196222px;}
._1e{width:155.553915px;}
._1c{width:195.284744px;}
._23{width:232.747626px;}
._33{width:289.161018px;}
._40{width:355.000238px;}
._24{width:357.087155px;}
._48{width:374.869645px;}
._10{width:398.678198px;}
._2b{width:505.466969px;}
.fc7{color:rgb(14,15,14);}
.fc6{color:transparent;}
.fc4{color:rgb(43,49,136);}
.fc3{color:rgb(151,26,31);}
.fc2{color:rgb(16,15,13);}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(45,157,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.887800px;}
.fsb{font-size:35.865600px;}
.fs3{font-size:38.485440px;}
.fs7{font-size:41.820480px;}
.fs2{font-size:41.842800px;}
.fs8{font-size:44.995440px;}
.fsd{font-size:45.288600px;}
.fsa{font-size:45.587640px;}
.fsc{font-size:45.889200px;}
.fse{font-size:45.979920px;}
.fs10{font-size:47.046960px;}
.fs1{font-size:47.820600px;}
.fsf{font-size:48.017880px;}
.fs6{font-size:49.524720px;}
.fs4{font-size:51.313920px;}
.fs9{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.y43{bottom:-6.639540px;}
.y3d{bottom:-6.629919px;}
.y90{bottom:-0.205617px;}
.y0{bottom:0.000000px;}
.y41{bottom:0.966947px;}
.y84{bottom:1.512892px;}
.y3f{bottom:1.914570px;}
.y45{bottom:1.914651px;}
.ye9{bottom:3.732101px;}
.yf3{bottom:3.818449px;}
.yee{bottom:3.898785px;}
.y38{bottom:4.166129px;}
.ybb{bottom:4.807490px;}
.yac{bottom:4.867703px;}
.yb8{bottom:4.870975px;}
.yb4{bottom:4.931769px;}
.yb1{bottom:24.979747px;}
.yba{bottom:25.821700px;}
.yb7{bottom:26.055970px;}
.yae{bottom:26.574789px;}
.y59{bottom:26.911172px;}
.y37{bottom:30.236808px;}
.yf2{bottom:35.371211px;}
.yef{bottom:38.705746px;}
.yed{bottom:38.873808px;}
.yb3{bottom:45.026993px;}
.yad{bottom:46.130048px;}
.yb9{bottom:46.835934px;}
.yb6{bottom:47.240965px;}
.y58{bottom:48.310552px;}
.y5a{bottom:51.221061px;}
.ye8{bottom:52.595473px;}
.y35{bottom:61.338656px;}
.yb2{bottom:65.074647px;}
.y91{bottom:65.138883px;}
.yaf{bottom:66.271936px;}
.ybc{bottom:67.849787px;}
.yb5{bottom:68.425960px;}
.y39{bottom:69.792463px;}
.yec{bottom:77.970633px;}
.yf1{bottom:81.938815px;}
.yf4{bottom:82.632300px;}
.y57{bottom:92.648986px;}
.y52{bottom:93.024167px;}
.y36{bottom:98.797737px;}
.y53{bottom:100.252398px;}
.y54{bottom:100.615391px;}
.ye7{bottom:103.916535px;}
.yf0{bottom:111.801873px;}
.yeb{bottom:112.228456px;}
.y51{bottom:117.485673px;}
.y55{bottom:119.881604px;}
.y2a{bottom:123.265500px;}
.y3b{bottom:125.038954px;}
.y8f{bottom:128.865453px;}
.y34{bottom:134.877837px;}
.y29{bottom:141.198000px;}
.ybf{bottom:146.578500px;}
.y4e{bottom:147.731300px;}
.y4d{bottom:150.492743px;}
.y56{bottom:150.650553px;}
.y161{bottom:156.142500px;}
.y28{bottom:159.130500px;}
.ybe{bottom:164.511000px;}
.y4f{bottom:164.818916px;}
.y3a{bottom:164.879563px;}
.y14d{bottom:169.893000px;}
.y33{bottom:170.677314px;}
.y160{bottom:171.085500px;}
.y27{bottom:177.063000px;}
.y4b{bottom:177.799927px;}
.y50{bottom:178.151635px;}
.y13a{bottom:179.965500px;}
.y131{bottom:181.489500px;}
.ybd{bottom:182.443500px;}
.y139{bottom:185.119500px;}
.y8d{bottom:186.030000px;}
.y130{bottom:186.643500px;}
.y12c{bottom:188.203500px;}
.ye5{bottom:190.546500px;}
.y26{bottom:194.995500px;}
.y138{bottom:197.971500px;}
.y14c{bottom:198.589500px;}
.y15f{bottom:200.973000px;}
.y13c{bottom:203.124000px;}
.y4c{bottom:204.104885px;}
.y134{bottom:204.642000px;}
.y12f{bottom:204.648000px;}
.y32{bottom:204.713196px;}
.y128{bottom:205.987500px;}
.y12b{bottom:206.136000px;}
.y48{bottom:207.806784px;}
.ye4{bottom:208.479000px;}
.y129{bottom:209.125500px;}
.y25{bottom:212.929500px;}
.y133{bottom:214.206000px;}
.y15e{bottom:215.917500px;}
.y14b{bottom:216.522000px;}
.y12e{bottom:217.428000px;}
.y137{bottom:217.710000px;}
.yb0{bottom:217.860000px;}
.y136{bottom:218.952000px;}
.y4a{bottom:221.687039px;}
.y47{bottom:221.999252px;}
.y12d{bottom:222.580500px;}
.y12a{bottom:224.068500px;}
.ye3{bottom:226.411500px;}
.y8c{bottom:227.715000px;}
.y24{bottom:230.862000px;}
.y14a{bottom:234.454500px;}
.y132{bottom:236.025000px;}
.y49{bottom:237.243415px;}
.y102{bottom:238.222500px;}
.yab{bottom:238.333500px;}
.y31{bottom:238.427724px;}
.y135{bottom:238.690500px;}
.y15d{bottom:239.827500px;}
.y13b{bottom:240.508500px;}
.ye2{bottom:244.344000px;}
.y8b{bottom:245.647500px;}
.y23{bottom:248.794500px;}
.y127{bottom:252.843000px;}
.y101{bottom:256.155000px;}
.y6c{bottom:257.761500px;}
.ye1{bottom:262.276500px;}
.y149{bottom:263.151000px;}
.y8a{bottom:263.581500px;}
.y22{bottom:266.727000px;}
.y100{bottom:274.089000px;}
.y11f{bottom:277.735500px;}
.y15c{bottom:282.093000px;}
.y11e{bottom:282.889500px;}
.y21{bottom:284.659500px;}
.y123{bottom:285.937500px;}
.y6b{bottom:291.742500px;}
.y148{bottom:291.846000px;}
.yff{bottom:292.021500px;}
.y89{bottom:292.720500px;}
.ye0{bottom:293.692500px;}
.y126{bottom:295.669500px;}
.y15b{bottom:300.025500px;}
.y125{bottom:300.822000px;}
.y11a{bottom:302.376000px;}
.y20{bottom:302.592000px;}
.y118{bottom:303.721500px;}
.y11d{bottom:303.870000px;}
.y121{bottom:306.859500px;}
.y6a{bottom:309.675000px;}
.y88{bottom:310.653000px;}
.ydf{bottom:311.625000px;}
.y119{bottom:311.940000px;}
.y11c{bottom:316.650000px;}
.y15a{bottom:317.958000px;}
.y1f{bottom:320.526000px;}
.y122{bottom:321.804000px;}
.y69{bottom:327.607500px;}
.y11b{bottom:327.687000px;}
.yde{bottom:329.557500px;}
.y159{bottom:335.890500px;}
.y124{bottom:336.388500px;}
.y120{bottom:338.242500px;}
.y1e{bottom:338.458500px;}
.y147{bottom:339.501000px;}
.yaa{bottom:345.408000px;}
.y68{bottom:345.540000px;}
.ydd{bottom:347.491500px;}
.y117{bottom:351.408000px;}
.y158{bottom:353.824500px;}
.y1d{bottom:356.391000px;}
.ya9{bottom:363.342000px;}
.y87{bottom:364.968000px;}
.ydc{bottom:365.424000px;}
.y116{bottom:369.340500px;}
.y157{bottom:371.757000px;}
.y67{bottom:373.138500px;}
.y1c{bottom:374.323500px;}
.y143{bottom:377.208000px;}
.ya8{bottom:381.274500px;}
.y86{bottom:382.900500px;}
.y115{bottom:387.273000px;}
.y156{bottom:389.689500px;}
.y66{bottom:391.071000px;}
.y1b{bottom:392.256000px;}
.ydb{bottom:396.838500px;}
.ya7{bottom:399.207000px;}
.y85{bottom:400.834500px;}
.y114{bottom:405.205500px;}
.y155{bottom:407.622000px;}
.y65{bottom:409.003500px;}
.y1a{bottom:410.188500px;}
.yda{bottom:414.772500px;}
.ya6{bottom:417.139500px;}
.y19{bottom:428.122500px;}
.y83{bottom:431.319000px;}
.yd9{bottom:432.705000px;}
.y113{bottom:434.226000px;}
.y154{bottom:434.521500px;}
.ya5{bottom:435.072000px;}
.y64{bottom:436.602000px;}
.y18{bottom:446.055000px;}
.y146{bottom:446.080500px;}
.yd8{bottom:450.637500px;}
.y112{bottom:452.160000px;}
.y63{bottom:454.534500px;}
.ya4{bottom:466.818000px;}
.y17{bottom:467.665500px;}
.yd7{bottom:468.570000px;}
.y111{bottom:470.092500px;}
.y62{bottom:472.467000px;}
.y153{bottom:476.785500px;}
.y82{bottom:481.584000px;}
.ya3{bottom:484.752000px;}
.y16{bottom:485.598000px;}
.yd6{bottom:486.502500px;}
.y110{bottom:488.025000px;}
.y61{bottom:490.399500px;}
.y152{bottom:494.719500px;}
.y81{bottom:499.516500px;}
.ya2{bottom:502.684500px;}
.y15{bottom:503.532000px;}
.y10f{bottom:505.957500px;}
.y60{bottom:508.333500px;}
.y151{bottom:512.652000px;}
.yd5{bottom:517.918500px;}
.ya1{bottom:520.617000px;}
.y14{bottom:521.464500px;}
.y10e{bottom:523.890000px;}
.y150{bottom:530.584500px;}
.y145{bottom:532.479000px;}
.y5f{bottom:535.231500px;}
.yd4{bottom:535.851000px;}
.ya0{bottom:538.549500px;}
.y13{bottom:539.397000px;}
.y10d{bottom:541.822500px;}
.y14f{bottom:548.517000px;}
.yd3{bottom:553.783500px;}
.y9f{bottom:556.482000px;}
.y12{bottom:557.329500px;}
.y10c{bottom:559.756500px;}
.y80{bottom:560.254500px;}
.yd2{bottom:571.716000px;}
.y11{bottom:575.262000px;}
.y10b{bottom:577.689000px;}
.y7f{bottom:578.187000px;}
.y9e{bottom:588.229500px;}
.yd1{bottom:589.650000px;}
.y5e{bottom:591.367500px;}
.y10{bottom:593.194500px;}
.y10a{bottom:595.621500px;}
.y14e{bottom:595.651500px;}
.y7e{bottom:596.119500px;}
.y9d{bottom:606.162000px;}
.yd0{bottom:607.582500px;}
.y5d{bottom:609.300000px;}
.y109{bottom:613.554000px;}
.y7d{bottom:614.052000px;}
.yf{bottom:614.806500px;}
.y144{bottom:618.877500px;}
.y9c{bottom:624.094500px;}
.ycf{bottom:625.515000px;}
.y5c{bottom:627.232500px;}
.y108{bottom:631.486500px;}
.y7c{bottom:631.986000px;}
.ye{bottom:632.739000px;}
.y9b{bottom:642.027000px;}
.yfe{bottom:642.604500px;}
.yce{bottom:643.447500px;}
.y7b{bottom:644.764500px;}
.y5b{bottom:645.166500px;}
.y7a{bottom:649.918500px;}
.yd{bottom:659.638500px;}
.y9a{bottom:659.959500px;}
.yfd{bottom:660.537000px;}
.ycd{bottom:661.380000px;}
.y79{bottom:668.836500px;}
.y107{bottom:670.512000px;}
.y30{bottom:675.651000px;}
.yfc{bottom:678.471000px;}
.ycc{bottom:679.314000px;}
.y106{bottom:688.444500px;}
.y99{bottom:691.705500px;}
.yfb{bottom:696.403500px;}
.ycb{bottom:697.246500px;}
.y78{bottom:697.975500px;}
.y105{bottom:706.377000px;}
.y98{bottom:709.639500px;}
.yfa{bottom:714.336000px;}
.yca{bottom:715.179000px;}
.y104{bottom:724.311000px;}
.y77{bottom:726.105000px;}
.y97{bottom:727.572000px;}
.yc{bottom:731.028000px;}
.yf9{bottom:732.268500px;}
.yc9{bottom:733.111500px;}
.y3e{bottom:743.528893px;}
.y76{bottom:744.037500px;}
.y96{bottom:745.504500px;}
.yb{bottom:745.971000px;}
.y103{bottom:759.727500px;}
.ya{bottom:760.915500px;}
.yc8{bottom:760.941000px;}
.y75{bottom:761.970000px;}
.y95{bottom:763.437000px;}
.y9{bottom:775.860000px;}
.yc7{bottom:778.873500px;}
.y74{bottom:779.902500px;}
.yf8{bottom:781.524000px;}
.y8{bottom:790.803000px;}
.yc6{bottom:796.806000px;}
.y46{bottom:798.775544px;}
.yf7{bottom:799.456500px;}
.y7{bottom:805.747500px;}
.y3c{bottom:807.320113px;}
.y42{bottom:807.329735px;}
.y73{bottom:810.154500px;}
.y94{bottom:810.793500px;}
.yc5{bottom:814.738500px;}
.yf6{bottom:817.390500px;}
.y6{bottom:820.692000px;}
.y72{bottom:821.482500px;}
.y93{bottom:828.726000px;}
.yc4{bottom:832.671000px;}
.yf5{bottom:835.323000px;}
.y5{bottom:835.635000px;}
.y142{bottom:838.321500px;}
.y44{bottom:838.615992px;}
.y40{bottom:839.563696px;}
.y92{bottom:846.658500px;}
.y4{bottom:850.579500px;}
.yc3{bottom:850.605000px;}
.y16a{bottom:851.410500px;}
.y71{bottom:863.601000px;}
.y3{bottom:865.524000px;}
.y169{bottom:866.353500px;}
.yc2{bottom:868.537500px;}
.yea{bottom:870.739500px;}
.y8e{bottom:877.144500px;}
.y141{bottom:879.309000px;}
.yc1{bottom:886.470000px;}
.ye6{bottom:891.213000px;}
.y168{bottom:894.373500px;}
.y140{bottom:897.241500px;}
.y70{bottom:898.339500px;}
.y2{bottom:906.328500px;}
.y167{bottom:909.318000px;}
.yc0{bottom:913.369500px;}
.y13f{bottom:915.174000px;}
.y6f{bottom:916.272000px;}
.y166{bottom:924.261000px;}
.y13e{bottom:928.038000px;}
.y13d{bottom:933.190500px;}
.y6e{bottom:934.204500px;}
.y165{bottom:939.205500px;}
.y2f{bottom:945.183000px;}
.y1{bottom:951.160500px;}
.y164{bottom:954.150000px;}
.y6d{bottom:959.196000px;}
.y2e{bottom:963.115500px;}
.y163{bottom:969.093000px;}
.y2d{bottom:981.048000px;}
.y162{bottom:984.037500px;}
.y2c{bottom:998.982000px;}
.y2b{bottom:1034.847000px;}
.ha{height:0.278218px;}
.h7{height:0.287839px;}
.hc{height:0.683117px;}
.hb{height:1.249975px;}
.hd{height:1.801519px;}
.h8{height:2.260939px;}
.h9{height:2.563291px;}
.h28{height:2.988780px;}
.h14{height:11.788652px;}
.h2e{height:23.390125px;}
.h5{height:27.671031px;}
.h17{height:30.068925px;}
.he{height:31.311626px;}
.h3{height:31.382100px;}
.h19{height:32.351721px;}
.h20{height:32.562503px;}
.h1c{height:32.777513px;}
.h22{height:32.921623px;}
.h1e{height:32.994335px;}
.h38{height:33.187496px;}
.h26{height:33.685623px;}
.h39{height:34.239550px;}
.h24{height:34.380802px;}
.h15{height:35.608274px;}
.h2{height:35.865450px;}
.h6{height:36.894708px;}
.h1a{height:40.348800px;}
.h37{height:42.799330px;}
.h1{height:44.831700px;}
.h13{height:45.080125px;}
.h32{height:50.213700px;}
.hf{height:53.072100px;}
.h11{height:54.914100px;}
.h36{height:54.920100px;}
.h30{height:65.441700px;}
.h12{height:65.447700px;}
.h2b{height:75.530100px;}
.h1b{height:78.073962px;}
.h18{height:79.102626px;}
.h1f{height:80.764131px;}
.h1d{height:81.510937px;}
.h2a{height:81.728125px;}
.h2f{height:81.734125px;}
.h29{height:102.344125px;}
.h10{height:105.204780px;}
.h34{height:110.586780px;}
.h21{height:113.781144px;}
.h25{height:121.895406px;}
.h23{height:122.530292px;}
.h33{height:123.138780px;}
.h2c{height:128.520780px;}
.h16{height:136.780850px;}
.h27{height:141.072780px;}
.h35{height:146.454780px;}
.h2d{height:194.274780px;}
.h31{height:224.400780px;}
.h4{height:246.684454px;}
.h0{height:1188.000000px;}
.w5{width:0.624587px;}
.w2{width:0.638217px;}
.w7{width:1.169797px;}
.w6{width:2.240975px;}
.w8{width:4.386538px;}
.w4{width:7.213615px;}
.w3{width:7.370764px;}
.wd{width:123.464073px;}
.wc{width:123.466796px;}
.we{width:123.592589px;}
.wb{width:123.736657px;}
.w10{width:161.155341px;}
.w11{width:161.388062px;}
.wf{width:177.532941px;}
.wa{width:215.193379px;}
.w9{width:215.193752px;}
.w1{width:537.336119px;}
.w0{width:918.000000px;}
.x17{left:-26.932592px;}
.x19{left:-24.994690px;}
.x15{left:-21.037104px;}
.x13{left:-15.987493px;}
.x1b{left:-13.542866px;}
.x1e{left:-5.475356px;}
.x0{left:0.000000px;}
.x47{left:1.443527px;}
.x3c{left:10.409030px;}
.x4a{left:38.602908px;}
.x39{left:42.356392px;}
.x45{left:43.971300px;}
.xe{left:83.873208px;}
.x4c{left:89.407845px;}
.x4f{left:92.885741px;}
.xd{left:106.190915px;}
.x9{left:107.405647px;}
.x3f{left:112.227815px;}
.x3d{left:117.479880px;}
.x4b{left:128.254470px;}
.x3a{left:143.711810px;}
.x46{left:144.776208px;}
.xb{left:172.822842px;}
.x3b{left:175.077170px;}
.x6{left:190.008000px;}
.x38{left:191.538623px;}
.xc{left:194.992059px;}
.xa{left:197.250834px;}
.x5{left:207.942000px;}
.x77{left:209.767500px;}
.x37{left:215.413500px;}
.x48{left:223.567500px;}
.x51{left:231.139500px;}
.x7{left:241.980000px;}
.x3{left:243.807000px;}
.x76{left:247.396500px;}
.x54{left:257.602500px;}
.x1{left:261.834000px;}
.x52{left:273.094500px;}
.x2d{left:278.523940px;}
.x27{left:280.187473px;}
.x2{left:283.449000px;}
.x35{left:292.923000px;}
.x2c{left:295.284269px;}
.x62{left:308.974500px;}
.x2e{left:316.403314px;}
.x21{left:318.832628px;}
.x31{left:322.345500px;}
.x26{left:324.107458px;}
.x3e{left:328.092000px;}
.x75{left:333.982500px;}
.x2b{left:345.729059px;}
.x33{left:350.505000px;}
.x53{left:353.206500px;}
.x44{left:355.972500px;}
.x11{left:358.668711px;}
.x23{left:361.474495px;}
.x55{left:368.844000px;}
.xf{left:372.894052px;}
.x72{left:376.501500px;}
.x32{left:380.544000px;}
.x63{left:381.660000px;}
.x49{left:386.371500px;}
.x2f{left:389.843075px;}
.x64{left:394.737000px;}
.x20{left:396.428335px;}
.x4{left:398.668500px;}
.x30{left:401.914500px;}
.x10{left:405.686854px;}
.x25{left:409.603665px;}
.x4d{left:411.477000px;}
.x65{left:416.040000px;}
.x34{left:431.881500px;}
.x1f{left:440.429781px;}
.x2a{left:451.214443px;}
.x8{left:456.021000px;}
.x56{left:460.513500px;}
.x40{left:466.174500px;}
.x24{left:468.356580px;}
.x57{left:473.590500px;}
.x22{left:480.245374px;}
.x41{left:483.870000px;}
.x29{left:487.556725px;}
.x66{left:496.891500px;}
.x28{left:498.371054px;}
.x69{left:509.967000px;}
.x67{left:512.662500px;}
.x74{left:516.432000px;}
.x68{left:517.572000px;}
.x6a{left:523.383000px;}
.x6b{left:531.133500px;}
.x58{left:537.517500px;}
.x73{left:558.952500px;}
.x12{left:564.664560px;}
.x4e{left:566.595000px;}
.x1d{left:568.377603px;}
.x1c{left:569.653235px;}
.x18{left:573.671757px;}
.x14{left:583.939351px;}
.x50{left:592.468500px;}
.x6c{left:596.347500px;}
.x42{left:604.257000px;}
.x1a{left:609.237916px;}
.x6f{left:614.332500px;}
.x6d{left:617.028000px;}
.x43{left:621.184500px;}
.x16{left:622.627642px;}
.x6e{left:627.748500px;}
.x59{left:629.187000px;}
.x70{left:640.407000px;}
.x5e{left:642.262500px;}
.x5a{left:647.172000px;}
.x60{left:654.019500px;}
.x5b{left:660.588000px;}
.x71{left:685.438500px;}
.x5c{left:690.886500px;}
.x5d{left:695.796000px;}
.x5f{left:701.607000px;}
.x36{left:713.683500px;}
.x61{left:731.773500px;}
@media print{
.v11{vertical-align:-30.805333pt;}
.v14{vertical-align:-19.130667pt;}
.v1{vertical-align:-12.986667pt;}
.v9{vertical-align:-11.952000pt;}
.v19{vertical-align:-9.594667pt;}
.v2{vertical-align:-7.968000pt;}
.v17{vertical-align:-3.189333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.236084pt;}
.ve{vertical-align:4.784000pt;}
.v1a{vertical-align:8.725333pt;}
.v8{vertical-align:18.325333pt;}
.v4{vertical-align:19.280000pt;}
.v7{vertical-align:20.917333pt;}
.vd{vertical-align:30.805333pt;}
.v6{vertical-align:36.234667pt;}
.vb{vertical-align:39.376000pt;}
.v12{vertical-align:51.861333pt;}
.vc{vertical-align:70.181333pt;}
.v5{vertical-align:90.858667pt;}
.v15{vertical-align:95.642667pt;}
.vf{vertical-align:106.800000pt;}
.v16{vertical-align:111.584000pt;}
.va{vertical-align:122.741333pt;}
.v18{vertical-align:127.525333pt;}
.v10{vertical-align:170.032000pt;}
.v13{vertical-align:196.810667pt;}
.ls13{letter-spacing:0.000000pt;}
.lsb7{letter-spacing:0.000328pt;}
.lsa8{letter-spacing:0.000473pt;}
.lsb4{letter-spacing:0.000681pt;}
.ls46{letter-spacing:0.000690pt;}
.ls9d{letter-spacing:0.001178pt;}
.lsa4{letter-spacing:0.001339pt;}
.lsd6{letter-spacing:0.001466pt;}
.ls9a{letter-spacing:0.001975pt;}
.lscb{letter-spacing:0.002531pt;}
.ls2f{letter-spacing:0.003558pt;}
.ls2c{letter-spacing:0.003715pt;}
.lsb5{letter-spacing:0.003733pt;}
.lsf{letter-spacing:0.003740pt;}
.lsa0{letter-spacing:0.003929pt;}
.lsca{letter-spacing:0.006454pt;}
.lsa2{letter-spacing:0.007293pt;}
.ls65{letter-spacing:0.008141pt;}
.ls26{letter-spacing:0.008970pt;}
.ls96{letter-spacing:0.010890pt;}
.lsd5{letter-spacing:0.011000pt;}
.ls21{letter-spacing:0.011149pt;}
.ls4b{letter-spacing:0.012662pt;}
.lsce{letter-spacing:0.013635pt;}
.lsb9{letter-spacing:0.014180pt;}
.lsd0{letter-spacing:0.015868pt;}
.ls35{letter-spacing:0.015893pt;}
.ls60{letter-spacing:0.015932pt;}
.ls6d{letter-spacing:0.016130pt;}
.ls6b{letter-spacing:0.016392pt;}
.lsc6{letter-spacing:0.016517pt;}
.ls63{letter-spacing:0.018183pt;}
.ls54{letter-spacing:0.018322pt;}
.lsd{letter-spacing:0.018333pt;}
.ls9e{letter-spacing:0.018378pt;}
.ls1d{letter-spacing:0.018963pt;}
.ls37{letter-spacing:0.019057pt;}
.ls9c{letter-spacing:0.019842pt;}
.ls9{letter-spacing:0.020086pt;}
.ls3e{letter-spacing:0.020910pt;}
.ls51{letter-spacing:0.020917pt;}
.ls8c{letter-spacing:0.022185pt;}
.lsc0{letter-spacing:0.022278pt;}
.ls52{letter-spacing:0.023519pt;}
.ls56{letter-spacing:0.023655pt;}
.ls4d{letter-spacing:0.025948pt;}
.lsd1{letter-spacing:0.026668pt;}
.ls98{letter-spacing:0.027366pt;}
.ls4f{letter-spacing:0.029718pt;}
.lsbb{letter-spacing:1.338970pt;}
.ls3b{letter-spacing:1.859685pt;}
.ls5c{letter-spacing:1.895135pt;}
.ls2b{letter-spacing:1.912819pt;}
.ls6a{letter-spacing:1.922731pt;}
.ls57{letter-spacing:1.929502pt;}
.ls28{letter-spacing:2.648701pt;}
.lsba{letter-spacing:2.651680pt;}
.lscf{letter-spacing:2.652602pt;}
.ls7{letter-spacing:2.652911pt;}
.ls29{letter-spacing:2.654034pt;}
.ls67{letter-spacing:2.655095pt;}
.lsc9{letter-spacing:2.655334pt;}
.lsa{letter-spacing:2.656546pt;}
.lsc7{letter-spacing:2.657793pt;}
.lsc8{letter-spacing:2.657935pt;}
.ls5{letter-spacing:2.658245pt;}
.ls77{letter-spacing:2.658969pt;}
.ls49{letter-spacing:3.028630pt;}
.lsd2{letter-spacing:4.802585pt;}
.ls3{letter-spacing:4.807919pt;}
.ls25{letter-spacing:5.685324pt;}
.ls1f{letter-spacing:5.738458pt;}
.lsad{letter-spacing:6.362330pt;}
.lsc3{letter-spacing:6.370245pt;}
.lsaa{letter-spacing:6.373812pt;}
.lsa7{letter-spacing:6.374345pt;}
.lsc1{letter-spacing:6.375578pt;}
.lsbd{letter-spacing:8.820222pt;}
.lsb0{letter-spacing:8.851867pt;}
.lsae{letter-spacing:8.857200pt;}
.ls3d{letter-spacing:8.873356pt;}
.ls41{letter-spacing:11.795718pt;}
.ls48{letter-spacing:11.848852pt;}
.ls5e{letter-spacing:11.901986pt;}
.ls8b{letter-spacing:12.061388pt;}
.ls40{letter-spacing:12.125114pt;}
.ls68{letter-spacing:12.698994pt;}
.ls89{letter-spacing:13.177199pt;}
.ls88{letter-spacing:13.230333pt;}
.ls16{letter-spacing:13.655404pt;}
.ls17{letter-spacing:13.708538pt;}
.lsd3{letter-spacing:13.761671pt;}
.ls5a{letter-spacing:13.814805pt;}
.ls85{letter-spacing:14.186742pt;}
.ls5d{letter-spacing:14.537761pt;}
.ls69{letter-spacing:14.611813pt;}
.ls34{letter-spacing:14.718081pt;}
.ls0{letter-spacing:14.771215pt;}
.ls47{letter-spacing:14.824349pt;}
.ls62{letter-spacing:14.930245pt;}
.ls59{letter-spacing:14.930617pt;}
.ls32{letter-spacing:14.983750pt;}
.lsc5{letter-spacing:15.143152pt;}
.ls6c{letter-spacing:15.461955pt;}
.lsbf{letter-spacing:15.568223pt;}
.ls1c{letter-spacing:15.833892pt;}
.ls1a{letter-spacing:15.887026pt;}
.ls75{letter-spacing:15.895578pt;}
.ls76{letter-spacing:16.205829pt;}
.ls2e{letter-spacing:16.577766pt;}
.lsb6{letter-spacing:16.630900pt;}
.ls3c{letter-spacing:16.684034pt;}
.ls15{letter-spacing:16.790302pt;}
.ls5b{letter-spacing:16.896570pt;}
.ls2{letter-spacing:16.949703pt;}
.ls33{letter-spacing:16.956911pt;}
.ls74{letter-spacing:17.162239pt;}
.ls95{letter-spacing:17.215373pt;}
.ls87{letter-spacing:17.410245pt;}
.ls53{letter-spacing:17.413880pt;}
.ls36{letter-spacing:17.415578pt;}
.ls79{letter-spacing:17.420911pt;}
.lsbe{letter-spacing:17.534176pt;}
.ls50{letter-spacing:17.552546pt;}
.ls58{letter-spacing:17.604428pt;}
.lsb8{letter-spacing:17.693578pt;}
.lsd4{letter-spacing:17.746711pt;}
.ls44{letter-spacing:17.799845pt;}
.ls9b{letter-spacing:17.874245pt;}
.ls8a{letter-spacing:17.959247pt;}
.ls24{letter-spacing:18.278050pt;}
.ls7a{letter-spacing:18.279578pt;}
.ls1{letter-spacing:18.320603pt;}
.ls1b{letter-spacing:18.503578pt;}
.lsc4{letter-spacing:18.523145pt;}
.lsc2{letter-spacing:18.528479pt;}
.ls72{letter-spacing:18.543719pt;}
.ls30{letter-spacing:18.952701pt;}
.ls31{letter-spacing:18.956911pt;}
.ls2a{letter-spacing:19.021924pt;}
.ls7b{letter-spacing:19.035139pt;}
.ls7c{letter-spacing:19.040473pt;}
.ls18{letter-spacing:19.500129pt;}
.lsc{letter-spacing:19.553263pt;}
.ls42{letter-spacing:19.570585pt;}
.ls38{letter-spacing:19.765798pt;}
.ls91{letter-spacing:19.872066pt;}
.ls99{letter-spacing:19.884911pt;}
.ls94{letter-spacing:19.890245pt;}
.ls14{letter-spacing:20.023578pt;}
.lsd7{letter-spacing:20.105906pt;}
.ls4c{letter-spacing:20.171213pt;}
.ls23{letter-spacing:20.190869pt;}
.ls70{letter-spacing:20.364911pt;}
.ls43{letter-spacing:20.368546pt;}
.lsbc{letter-spacing:20.369435pt;}
.ls6f{letter-spacing:20.370245pt;}
.lsa1{letter-spacing:20.403405pt;}
.ls4e{letter-spacing:20.448546pt;}
.ls7f{letter-spacing:20.456539pt;}
.ls83{letter-spacing:20.530245pt;}
.ls84{letter-spacing:20.535578pt;}
.lsb{letter-spacing:20.669074pt;}
.ls3f{letter-spacing:21.147279pt;}
.ls86{letter-spacing:21.200413pt;}
.ls10{letter-spacing:21.276911pt;}
.ls3a{letter-spacing:21.306681pt;}
.ls61{letter-spacing:21.333274pt;}
.ls8e{letter-spacing:21.367578pt;}
.ls71{letter-spacing:21.379368pt;}
.ls27{letter-spacing:21.412948pt;}
.ls19{letter-spacing:21.572350pt;}
.ls66{letter-spacing:21.771213pt;}
.ls97{letter-spacing:21.852911pt;}
.ls80{letter-spacing:21.891153pt;}
.ls1e{letter-spacing:22.268911pt;}
.ls5f{letter-spacing:22.631919pt;}
.ls8f{letter-spacing:22.635027pt;}
.ls92{letter-spacing:22.860911pt;}
.ls82{letter-spacing:22.876911pt;}
.lscc{letter-spacing:23.022545pt;}
.lsa3{letter-spacing:23.084911pt;}
.ls6{letter-spacing:23.166366pt;}
.ls39{letter-spacing:23.219500pt;}
.ls2d{letter-spacing:23.250245pt;}
.lse{letter-spacing:23.319578pt;}
.ls22{letter-spacing:23.596911pt;}
.ls9f{letter-spacing:23.767578pt;}
.ls11{letter-spacing:24.654114pt;}
.ls12{letter-spacing:24.707248pt;}
.ls8{letter-spacing:24.738245pt;}
.ls7e{letter-spacing:25.079185pt;}
.ls4{letter-spacing:25.132319pt;}
.ls78{letter-spacing:25.474245pt;}
.ls20{letter-spacing:26.254545pt;}
.ls64{letter-spacing:26.311919pt;}
.ls45{letter-spacing:26.566933pt;}
.ls7d{letter-spacing:26.779469pt;}
.ls8d{letter-spacing:27.426245pt;}
.ls90{letter-spacing:27.629611pt;}
.ls81{letter-spacing:27.735878pt;}
.ls73{letter-spacing:27.948414pt;}
.ls93{letter-spacing:28.823578pt;}
.ls6e{letter-spacing:35.918494pt;}
.lsa6{letter-spacing:53.133867pt;}
.lsb3{letter-spacing:59.506245pt;}
.lsaf{letter-spacing:73.802941pt;}
.lsb2{letter-spacing:76.962245pt;}
.lsb1{letter-spacing:80.167578pt;}
.lsac{letter-spacing:81.188548pt;}
.lsab{letter-spacing:87.554245pt;}
.lsa9{letter-spacing:105.523859pt;}
.lsa5{letter-spacing:108.215578pt;}
.ls55{letter-spacing:116.894507pt;}
.ls4a{letter-spacing:234.479754pt;}
.lscd{letter-spacing:1854.375269pt;}
.wse9{word-spacing:-120.284447pt;}
.wseb{word-spacing:-88.563529pt;}
.ws4f{word-spacing:-53.187001pt;}
.ws3c{word-spacing:-53.133867pt;}
.ws69{word-spacing:-44.313645pt;}
.ws6b{word-spacing:-38.415786pt;}
.ws58{word-spacing:-38.362652pt;}
.wsb7{word-spacing:-37.246841pt;}
.ws62{word-spacing:-35.652825pt;}
.wsbb{word-spacing:-35.174620pt;}
.ws3b{word-spacing:-34.611401pt;}
.wsc3{word-spacing:-32.011920pt;}
.wsb1{word-spacing:-31.986588pt;}
.wsb2{word-spacing:-31.933454pt;}
.wsc6{word-spacing:-31.364640pt;}
.wsac{word-spacing:-31.348981pt;}
.wsad{word-spacing:-31.295847pt;}
.wsc1{word-spacing:-30.653280pt;}
.wsf9{word-spacing:-29.531803pt;}
.ws3d{word-spacing:-28.118362pt;}
.ws5f{word-spacing:-28.107815pt;}
.ws59{word-spacing:-25.738045pt;}
.ws67{word-spacing:-20.902863pt;}
.ws5d{word-spacing:-19.893320pt;}
.ws1c{word-spacing:-16.970957pt;}
.ws66{word-spacing:-16.917823pt;}
.ws68{word-spacing:-16.811555pt;}
.ws91{word-spacing:-15.718697pt;}
.ws38{word-spacing:-14.760588pt;}
.ws6d{word-spacing:-8.553685pt;}
.wsef{word-spacing:-8.044467pt;}
.wsf7{word-spacing:-7.885320pt;}
.ws4e{word-spacing:-5.940366pt;}
.ws4c{word-spacing:-5.887232pt;}
.ws5b{word-spacing:-2.964870pt;}
.ws6c{word-spacing:-2.911736pt;}
.ws9d{word-spacing:-2.752334pt;}
.wsbe{word-spacing:-2.646067pt;}
.wsc0{word-spacing:-2.539799pt;}
.ws9f{word-spacing:-2.465411pt;}
.wsa0{word-spacing:-2.167862pt;}
.ws73{word-spacing:-2.061594pt;}
.ws74{word-spacing:-2.008460pt;}
.ws6f{word-spacing:-1.807018pt;}
.ws1b{word-spacing:-1.795925pt;}
.ws82{word-spacing:-1.530255pt;}
.wsd5{word-spacing:-1.370854pt;}
.ws8f{word-spacing:-1.317720pt;}
.wsa2{word-spacing:-1.211452pt;}
.ws54{word-spacing:-1.158318pt;}
.ws89{word-spacing:-1.052051pt;}
.wsbc{word-spacing:-0.839515pt;}
.ws9c{word-spacing:-0.680113pt;}
.ws4{word-spacing:-0.641859pt;}
.ws1a{word-spacing:-0.573846pt;}
.wsab{word-spacing:-0.520712pt;}
.ws45{word-spacing:-0.467578pt;}
.wsbf{word-spacing:-0.414444pt;}
.ws18{word-spacing:-0.148775pt;}
.wsd{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.wse8{word-spacing:-0.037194pt;}
.ws5a{word-spacing:-0.016796pt;}
.wse7{word-spacing:-0.013752pt;}
.wsee{word-spacing:-0.006031pt;}
.wsf0{word-spacing:-0.000698pt;}
.ws2b{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.010627pt;}
.ws2a{word-spacing:0.063761pt;}
.ws65{word-spacing:0.116895pt;}
.ws8{word-spacing:0.165778pt;}
.ws46{word-spacing:0.223162pt;}
.wse1{word-spacing:0.329430pt;}
.ws96{word-spacing:0.382564pt;}
.wse4{word-spacing:0.435698pt;}
.wsf8{word-spacing:0.648233pt;}
.ws1e{word-spacing:0.701367pt;}
.wsff{word-spacing:0.845893pt;}
.ws8d{word-spacing:0.860769pt;}
.ws8c{word-spacing:0.913903pt;}
.ws28{word-spacing:1.020170pt;}
.ws7{word-spacing:1.058429pt;}
.ws29{word-spacing:1.073304pt;}
.wsb8{word-spacing:1.126438pt;}
.ws13{word-spacing:1.137065pt;}
.wsf1{word-spacing:1.179572pt;}
.wse0{word-spacing:1.232706pt;}
.wsb5{word-spacing:1.285840pt;}
.wsfb{word-spacing:1.338973pt;}
.ws85{word-spacing:1.392107pt;}
.wsa{word-spacing:1.398487pt;}
.ws83{word-spacing:1.445241pt;}
.wsb4{word-spacing:1.466495pt;}
.ws44{word-spacing:1.498375pt;}
.ws43{word-spacing:1.551509pt;}
.wscc{word-spacing:1.657777pt;}
.ws1f{word-spacing:1.817178pt;}
.ws5{word-spacing:1.908573pt;}
.ws20{word-spacing:1.976580pt;}
.ws35{word-spacing:2.029714pt;}
.ws19{word-spacing:2.189115pt;}
.ws21{word-spacing:2.242249pt;}
.ws97{word-spacing:2.295383pt;}
.ws81{word-spacing:2.401651pt;}
.wse3{word-spacing:2.454785pt;}
.ws2{word-spacing:2.503674pt;}
.ws10d{word-spacing:2.546181pt;}
.ws33{word-spacing:2.614186pt;}
.ws16{word-spacing:2.624813pt;}
.ws9e{word-spacing:2.667320pt;}
.ws60{word-spacing:2.720454pt;}
.ws61{word-spacing:2.773588pt;}
.wsa9{word-spacing:2.826722pt;}
.wsa8{word-spacing:2.879856pt;}
.wsf{word-spacing:2.932989pt;}
.ws24{word-spacing:2.986123pt;}
.ws9a{word-spacing:3.007377pt;}
.ws63{word-spacing:3.039257pt;}
.ws7a{word-spacing:3.092391pt;}
.ws17{word-spacing:3.156152pt;}
.wsba{word-spacing:3.198659pt;}
.wse5{word-spacing:3.251793pt;}
.wsa7{word-spacing:3.326180pt;}
.ws76{word-spacing:3.358060pt;}
.wsbd{word-spacing:3.411194pt;}
.ws57{word-spacing:3.432448pt;}
.wsf3{word-spacing:3.464328pt;}
.wsb9{word-spacing:3.623730pt;}
.ws6{word-spacing:3.693876pt;}
.ws7e{word-spacing:3.729997pt;}
.ws26{word-spacing:3.836265pt;}
.ws27{word-spacing:3.889399pt;}
.ws75{word-spacing:3.910653pt;}
.ws7b{word-spacing:3.942533pt;}
.ws8a{word-spacing:4.101935pt;}
.wsb{word-spacing:4.118948pt;}
.wsfc{word-spacing:4.155068pt;}
.ws39{word-spacing:4.176322pt;}
.wsca{word-spacing:4.208202pt;}
.ws72{word-spacing:4.314470pt;}
.ws71{word-spacing:4.367604pt;}
.wse2{word-spacing:4.420738pt;}
.ws2f{word-spacing:4.792675pt;}
.wsa6{word-spacing:4.845809pt;}
.wsaf{word-spacing:4.898943pt;}
.wsde{word-spacing:4.952076pt;}
.ws49{word-spacing:5.005210pt;}
.wsb6{word-spacing:5.058344pt;}
.ws80{word-spacing:5.079598pt;}
.ws2d{word-spacing:5.217746pt;}
.ws12{word-spacing:5.334640pt;}
.wsd6{word-spacing:5.430281pt;}
.ws40{word-spacing:5.440908pt;}
.wsdf{word-spacing:5.483415pt;}
.ws64{word-spacing:5.494042pt;}
.ws36{word-spacing:5.749084pt;}
.ws25{word-spacing:5.802218pt;}
.ws31{word-spacing:5.823472pt;}
.ws41{word-spacing:5.855352pt;}
.ws22{word-spacing:5.908486pt;}
.ws32{word-spacing:5.929740pt;}
.ws9{word-spacing:5.989264pt;}
.ws3a{word-spacing:6.025380pt;}
.wscb{word-spacing:6.067888pt;}
.wsa5{word-spacing:6.227289pt;}
.wsdd{word-spacing:6.280423pt;}
.wse6{word-spacing:6.333557pt;}
.ws95{word-spacing:6.354810pt;}
.ws51{word-spacing:6.386691pt;}
.wsb0{word-spacing:6.439825pt;}
.ws9b{word-spacing:6.492959pt;}
.ws4a{word-spacing:6.546092pt;}
.wsaa{word-spacing:6.599226pt;}
.wsfd{word-spacing:6.669380pt;}
.ws70{word-spacing:6.705494pt;}
.ws6e{word-spacing:6.758628pt;}
.wsb3{word-spacing:6.811762pt;}
.wse{word-spacing:6.918029pt;}
.wsd2{word-spacing:6.939283pt;}
.ws98{word-spacing:6.971163pt;}
.ws79{word-spacing:7.024297pt;}
.wsae{word-spacing:7.077431pt;}
.ws5c{word-spacing:7.130565pt;}
.wsa4{word-spacing:7.183699pt;}
.wsa3{word-spacing:7.236833pt;}
.ws1d{word-spacing:7.343100pt;}
.ws3e{word-spacing:7.353727pt;}
.ws4b{word-spacing:7.449368pt;}
.ws52{word-spacing:7.555636pt;}
.wsdc{word-spacing:7.608770pt;}
.wsce{word-spacing:7.661904pt;}
.wscd{word-spacing:7.715037pt;}
.ws11{word-spacing:7.725664pt;}
.wsc9{word-spacing:7.789425pt;}
.ws3f{word-spacing:7.831932pt;}
.ws88{word-spacing:8.033841pt;}
.ws87{word-spacing:8.086975pt;}
.ws78{word-spacing:8.108228pt;}
.ws14{word-spacing:8.150735pt;}
.ws42{word-spacing:8.405778pt;}
.ws15{word-spacing:8.469538pt;}
.ws37{word-spacing:8.512045pt;}
.ws86{word-spacing:8.618313pt;}
.ws2e{word-spacing:8.724581pt;}
.wsd8{word-spacing:9.170905pt;}
.ws10{word-spacing:9.319680pt;}
.ws0{word-spacing:9.489709pt;}
.ws47{word-spacing:9.595976pt;}
.ws84{word-spacing:9.649110pt;}
.ws102{word-spacing:9.772405pt;}
.wsa1{word-spacing:9.787258pt;}
.ws8e{word-spacing:9.840392pt;}
.ws10a{word-spacing:9.857420pt;}
.ws8b{word-spacing:9.946660pt;}
.wsda{word-spacing:10.106061pt;}
.ws48{word-spacing:10.222956pt;}
.ws5e{word-spacing:10.318597pt;}
.ws104{word-spacing:10.410013pt;}
.ws55{word-spacing:10.584266pt;}
.wscf{word-spacing:10.690534pt;}
.wsdb{word-spacing:10.903069pt;}
.ws6a{word-spacing:11.126232pt;}
.wsd3{word-spacing:11.243126pt;}
.wsd4{word-spacing:11.328140pt;}
.ws50{word-spacing:11.657570pt;}
.ws93{word-spacing:11.721331pt;}
.wsc{word-spacing:11.806345pt;}
.ws94{word-spacing:12.018881pt;}
.ws56{word-spacing:12.454578pt;}
.ws109{word-spacing:12.790416pt;}
.wsd0{word-spacing:12.815889pt;}
.wsf2{word-spacing:12.985917pt;}
.ws7c{word-spacing:13.039051pt;}
.ws2c{word-spacing:14.282342pt;}
.ws7d{word-spacing:14.367398pt;}
.ws100{word-spacing:14.707491pt;}
.wsf4{word-spacing:14.766311pt;}
.wsf5{word-spacing:14.771644pt;}
.ws10c{word-spacing:15.047549pt;}
.ws10e{word-spacing:16.025214pt;}
.ws10b{word-spacing:16.280258pt;}
.wsc5{word-spacing:16.306893pt;}
.ws90{word-spacing:16.354714pt;}
.ws101{word-spacing:18.405618pt;}
.ws53{word-spacing:18.559606pt;}
.ws23{word-spacing:18.883776pt;}
.ws99{word-spacing:19.978334pt;}
.ws34{word-spacing:20.031468pt;}
.wsfe{word-spacing:20.148413pt;}
.ws7f{word-spacing:21.519216pt;}
.ws105{word-spacing:21.546900pt;}
.ws30{word-spacing:22.263090pt;}
.ws103{word-spacing:23.081410pt;}
.wsd1{word-spacing:23.219500pt;}
.ws107{word-spacing:24.054824pt;}
.wsc8{word-spacing:24.069642pt;}
.ws77{word-spacing:24.335311pt;}
.wsd7{word-spacing:25.344854pt;}
.ws108{word-spacing:25.844378pt;}
.ws3{word-spacing:26.524493pt;}
.wsea{word-spacing:27.395822pt;}
.ws92{word-spacing:27.576477pt;}
.wsd9{word-spacing:28.139696pt;}
.wsc4{word-spacing:32.348685pt;}
.ws106{word-spacing:33.963253pt;}
.wsec{word-spacing:38.373279pt;}
.wsc7{word-spacing:48.564172pt;}
.wsed{word-spacing:62.708589pt;}
.wsc2{word-spacing:82.591380pt;}
.wsf6{word-spacing:325.137836pt;}
.wsfa{word-spacing:678.317569pt;}
._31{margin-left:-769.495289pt;}
._44{margin-left:-655.216043pt;}
._1d{margin-left:-618.955345pt;}
._13{margin-left:-590.903735pt;}
._21{margin-left:-462.051061pt;}
._1a{margin-left:-422.594078pt;}
._3b{margin-left:-335.919441pt;}
._3d{margin-left:-307.775543pt;}
._17{margin-left:-305.770071pt;}
._3c{margin-left:-296.907760pt;}
._14{margin-left:-288.171107pt;}
._16{margin-left:-286.583112pt;}
._15{margin-left:-285.242108pt;}
._1f{margin-left:-281.764393pt;}
._20{margin-left:-280.310156pt;}
._18{margin-left:-273.411513pt;}
._19{margin-left:-271.134201pt;}
._1b{margin-left:-269.415869pt;}
._41{margin-left:-105.523859pt;}
._42{margin-left:-73.802941pt;}
._46{margin-left:-14.916166pt;}
._0{margin-left:-5.100851pt;}
._3{margin-left:-3.783141pt;}
._9{margin-left:-2.709827pt;}
._2{margin-left:-1.232709pt;}
._5{width:1.147694pt;}
._f{width:2.210378pt;}
._b{width:3.188032pt;}
._47{width:4.589696pt;}
._2e{width:6.280426pt;}
._26{width:8.246386pt;}
._27{width:9.447192pt;}
._45{width:10.356316pt;}
._2d{width:11.742585pt;}
._4{width:12.879682pt;}
._3a{width:14.037869pt;}
._2c{width:15.090018pt;}
._d{width:15.993294pt;}
._e{width:17.109105pt;}
._29{width:18.278050pt;}
._6{width:19.680834pt;}
._25{width:21.412948pt;}
._8{width:22.635027pt;}
._a{width:23.910240pt;}
._11{width:25.259837pt;}
._1{width:26.566933pt;}
._38{width:27.969674pt;}
._32{width:29.329894pt;}
._7{width:30.265126pt;}
._c{width:31.189580pt;}
._2a{width:33.495587pt;}
._28{width:34.430746pt;}
._36{width:35.397785pt;}
._39{width:36.662368pt;}
._3e{width:37.725045pt;}
._49{width:38.851581pt;}
._34{width:40.317981pt;}
._4a{width:41.933410pt;}
._3f{width:43.633534pt;}
._35{width:44.813109pt;}
._30{width:45.958335pt;}
._37{width:47.129740pt;}
._22{width:52.290595pt;}
._2f{width:53.644445pt;}
._12{width:109.389304pt;}
._43{width:119.285531pt;}
._1e{width:138.270147pt;}
._1c{width:173.586439pt;}
._23{width:206.886778pt;}
._33{width:257.032016pt;}
._40{width:315.555767pt;}
._24{width:317.410804pt;}
._48{width:333.217462pt;}
._10{width:354.380621pt;}
._2b{width:449.303973pt;}
.fs5{font-size:26.566933pt;}
.fsb{font-size:31.880533pt;}
.fs3{font-size:34.209280pt;}
.fs7{font-size:37.173760pt;}
.fs2{font-size:37.193600pt;}
.fs8{font-size:39.995947pt;}
.fsd{font-size:40.256533pt;}
.fsa{font-size:40.522347pt;}
.fsc{font-size:40.790400pt;}
.fse{font-size:40.871040pt;}
.fs10{font-size:41.819520pt;}
.fs1{font-size:42.507200pt;}
.fsf{font-size:42.682560pt;}
.fs6{font-size:44.021973pt;}
.fs4{font-size:45.612373pt;}
.fs9{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.y43{bottom:-5.901813pt;}
.y3d{bottom:-5.893261pt;}
.y90{bottom:-0.182771pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:0.859508pt;}
.y84{bottom:1.344793pt;}
.y3f{bottom:1.701840pt;}
.y45{bottom:1.701912pt;}
.ye9{bottom:3.317423pt;}
.yf3{bottom:3.394177pt;}
.yee{bottom:3.465587pt;}
.y38{bottom:3.703226pt;}
.ybb{bottom:4.273324pt;}
.yac{bottom:4.326847pt;}
.yb8{bottom:4.329755pt;}
.yb4{bottom:4.383794pt;}
.yb1{bottom:22.204220pt;}
.yba{bottom:22.952622pt;}
.yb7{bottom:23.160862pt;}
.yae{bottom:23.622035pt;}
.y59{bottom:23.921041pt;}
.y37{bottom:26.877162pt;}
.yf2{bottom:31.441077pt;}
.yef{bottom:34.405107pt;}
.yed{bottom:34.554496pt;}
.yb3{bottom:40.023994pt;}
.yad{bottom:41.004487pt;}
.yb9{bottom:41.631941pt;}
.yb6{bottom:41.991969pt;}
.y58{bottom:42.942712pt;}
.y5a{bottom:45.529832pt;}
.ye8{bottom:46.751531pt;}
.y35{bottom:54.523249pt;}
.yb2{bottom:57.844130pt;}
.y91{bottom:57.901229pt;}
.yaf{bottom:58.908387pt;}
.ybc{bottom:60.310922pt;}
.yb5{bottom:60.823075pt;}
.y39{bottom:62.037745pt;}
.yec{bottom:69.307230pt;}
.yf1{bottom:72.834502pt;}
.yf4{bottom:73.450934pt;}
.y57{bottom:82.354654pt;}
.y52{bottom:82.688149pt;}
.y36{bottom:87.820211pt;}
.y53{bottom:89.113243pt;}
.y54{bottom:89.435904pt;}
.ye7{bottom:92.370253pt;}
.yf0{bottom:99.379443pt;}
.yeb{bottom:99.758628pt;}
.y51{bottom:104.431710pt;}
.y55{bottom:106.561425pt;}
.y2a{bottom:109.569333pt;}
.y3b{bottom:111.145737pt;}
.y8f{bottom:114.547069pt;}
.y34{bottom:119.891411pt;}
.y29{bottom:125.509333pt;}
.ybf{bottom:130.292000pt;}
.y4e{bottom:131.316711pt;}
.y4d{bottom:133.771327pt;}
.y56{bottom:133.911602pt;}
.y161{bottom:138.793333pt;}
.y28{bottom:141.449333pt;}
.ybe{bottom:146.232000pt;}
.y4f{bottom:146.505703pt;}
.y3a{bottom:146.559611pt;}
.y14d{bottom:151.016000pt;}
.y33{bottom:151.713168pt;}
.y160{bottom:152.076000pt;}
.y27{bottom:157.389333pt;}
.y4b{bottom:158.044379pt;}
.y50{bottom:158.357009pt;}
.y13a{bottom:159.969333pt;}
.y131{bottom:161.324000pt;}
.ybd{bottom:162.172000pt;}
.y139{bottom:164.550667pt;}
.y8d{bottom:165.360000pt;}
.y130{bottom:165.905333pt;}
.y12c{bottom:167.292000pt;}
.ye5{bottom:169.374667pt;}
.y26{bottom:173.329333pt;}
.y138{bottom:175.974667pt;}
.y14c{bottom:176.524000pt;}
.y15f{bottom:178.642667pt;}
.y13c{bottom:180.554667pt;}
.y4c{bottom:181.426565pt;}
.y134{bottom:181.904000pt;}
.y12f{bottom:181.909333pt;}
.y32{bottom:181.967285pt;}
.y128{bottom:183.100000pt;}
.y12b{bottom:183.232000pt;}
.y48{bottom:184.717141pt;}
.ye4{bottom:185.314667pt;}
.y129{bottom:185.889333pt;}
.y25{bottom:189.270667pt;}
.y133{bottom:190.405333pt;}
.y15e{bottom:191.926667pt;}
.y14b{bottom:192.464000pt;}
.y12e{bottom:193.269333pt;}
.y137{bottom:193.520000pt;}
.yb0{bottom:193.653333pt;}
.y136{bottom:194.624000pt;}
.y4a{bottom:197.055145pt;}
.y47{bottom:197.332668pt;}
.y12d{bottom:197.849333pt;}
.y12a{bottom:199.172000pt;}
.ye3{bottom:201.254667pt;}
.y8c{bottom:202.413333pt;}
.y24{bottom:205.210667pt;}
.y14a{bottom:208.404000pt;}
.y132{bottom:209.800000pt;}
.y49{bottom:210.883035pt;}
.y102{bottom:211.753333pt;}
.yab{bottom:211.852000pt;}
.y31{bottom:211.935755pt;}
.y135{bottom:212.169333pt;}
.y15d{bottom:213.180000pt;}
.y13b{bottom:213.785333pt;}
.ye2{bottom:217.194667pt;}
.y8b{bottom:218.353333pt;}
.y23{bottom:221.150667pt;}
.y127{bottom:224.749333pt;}
.y101{bottom:227.693333pt;}
.y6c{bottom:229.121333pt;}
.ye1{bottom:233.134667pt;}
.y149{bottom:233.912000pt;}
.y8a{bottom:234.294667pt;}
.y22{bottom:237.090667pt;}
.y100{bottom:243.634667pt;}
.y11f{bottom:246.876000pt;}
.y15c{bottom:250.749333pt;}
.y11e{bottom:251.457333pt;}
.y21{bottom:253.030667pt;}
.y123{bottom:254.166667pt;}
.y6b{bottom:259.326667pt;}
.y148{bottom:259.418667pt;}
.yff{bottom:259.574667pt;}
.y89{bottom:260.196000pt;}
.ye0{bottom:261.060000pt;}
.y126{bottom:262.817333pt;}
.y15b{bottom:266.689333pt;}
.y125{bottom:267.397333pt;}
.y11a{bottom:268.778667pt;}
.y20{bottom:268.970667pt;}
.y118{bottom:269.974667pt;}
.y11d{bottom:270.106667pt;}
.y121{bottom:272.764000pt;}
.y6a{bottom:275.266667pt;}
.y88{bottom:276.136000pt;}
.ydf{bottom:277.000000pt;}
.y119{bottom:277.280000pt;}
.y11c{bottom:281.466667pt;}
.y15a{bottom:282.629333pt;}
.y1f{bottom:284.912000pt;}
.y122{bottom:286.048000pt;}
.y69{bottom:291.206667pt;}
.y11b{bottom:291.277333pt;}
.yde{bottom:292.940000pt;}
.y159{bottom:298.569333pt;}
.y124{bottom:299.012000pt;}
.y120{bottom:300.660000pt;}
.y1e{bottom:300.852000pt;}
.y147{bottom:301.778667pt;}
.yaa{bottom:307.029333pt;}
.y68{bottom:307.146667pt;}
.ydd{bottom:308.881333pt;}
.y117{bottom:312.362667pt;}
.y158{bottom:314.510667pt;}
.y1d{bottom:316.792000pt;}
.ya9{bottom:322.970667pt;}
.y87{bottom:324.416000pt;}
.ydc{bottom:324.821333pt;}
.y116{bottom:328.302667pt;}
.y157{bottom:330.450667pt;}
.y67{bottom:331.678667pt;}
.y1c{bottom:332.732000pt;}
.y143{bottom:335.296000pt;}
.ya8{bottom:338.910667pt;}
.y86{bottom:340.356000pt;}
.y115{bottom:344.242667pt;}
.y156{bottom:346.390667pt;}
.y66{bottom:347.618667pt;}
.y1b{bottom:348.672000pt;}
.ydb{bottom:352.745333pt;}
.ya7{bottom:354.850667pt;}
.y85{bottom:356.297333pt;}
.y114{bottom:360.182667pt;}
.y155{bottom:362.330667pt;}
.y65{bottom:363.558667pt;}
.y1a{bottom:364.612000pt;}
.yda{bottom:368.686667pt;}
.ya6{bottom:370.790667pt;}
.y19{bottom:380.553333pt;}
.y83{bottom:383.394667pt;}
.yd9{bottom:384.626667pt;}
.y113{bottom:385.978667pt;}
.y154{bottom:386.241333pt;}
.ya5{bottom:386.730667pt;}
.y64{bottom:388.090667pt;}
.y18{bottom:396.493333pt;}
.y146{bottom:396.516000pt;}
.yd8{bottom:400.566667pt;}
.y112{bottom:401.920000pt;}
.y63{bottom:404.030667pt;}
.ya4{bottom:414.949333pt;}
.y17{bottom:415.702667pt;}
.yd7{bottom:416.506667pt;}
.y111{bottom:417.860000pt;}
.y62{bottom:419.970667pt;}
.y153{bottom:423.809333pt;}
.y82{bottom:428.074667pt;}
.ya3{bottom:430.890667pt;}
.y16{bottom:431.642667pt;}
.yd6{bottom:432.446667pt;}
.y110{bottom:433.800000pt;}
.y61{bottom:435.910667pt;}
.y152{bottom:439.750667pt;}
.y81{bottom:444.014667pt;}
.ya2{bottom:446.830667pt;}
.y15{bottom:447.584000pt;}
.y10f{bottom:449.740000pt;}
.y60{bottom:451.852000pt;}
.y151{bottom:455.690667pt;}
.yd5{bottom:460.372000pt;}
.ya1{bottom:462.770667pt;}
.y14{bottom:463.524000pt;}
.y10e{bottom:465.680000pt;}
.y150{bottom:471.630667pt;}
.y145{bottom:473.314667pt;}
.y5f{bottom:475.761333pt;}
.yd4{bottom:476.312000pt;}
.ya0{bottom:478.710667pt;}
.y13{bottom:479.464000pt;}
.y10d{bottom:481.620000pt;}
.y14f{bottom:487.570667pt;}
.yd3{bottom:492.252000pt;}
.y9f{bottom:494.650667pt;}
.y12{bottom:495.404000pt;}
.y10c{bottom:497.561333pt;}
.y80{bottom:498.004000pt;}
.yd2{bottom:508.192000pt;}
.y11{bottom:511.344000pt;}
.y10b{bottom:513.501333pt;}
.y7f{bottom:513.944000pt;}
.y9e{bottom:522.870667pt;}
.yd1{bottom:524.133333pt;}
.y5e{bottom:525.660000pt;}
.y10{bottom:527.284000pt;}
.y10a{bottom:529.441333pt;}
.y14e{bottom:529.468000pt;}
.y7e{bottom:529.884000pt;}
.y9d{bottom:538.810667pt;}
.yd0{bottom:540.073333pt;}
.y5d{bottom:541.600000pt;}
.y109{bottom:545.381333pt;}
.y7d{bottom:545.824000pt;}
.yf{bottom:546.494667pt;}
.y144{bottom:550.113333pt;}
.y9c{bottom:554.750667pt;}
.ycf{bottom:556.013333pt;}
.y5c{bottom:557.540000pt;}
.y108{bottom:561.321333pt;}
.y7c{bottom:561.765333pt;}
.ye{bottom:562.434667pt;}
.y9b{bottom:570.690667pt;}
.yfe{bottom:571.204000pt;}
.yce{bottom:571.953333pt;}
.y7b{bottom:573.124000pt;}
.y5b{bottom:573.481333pt;}
.y7a{bottom:577.705333pt;}
.yd{bottom:586.345333pt;}
.y9a{bottom:586.630667pt;}
.yfd{bottom:587.144000pt;}
.ycd{bottom:587.893333pt;}
.y79{bottom:594.521333pt;}
.y107{bottom:596.010667pt;}
.y30{bottom:600.578667pt;}
.yfc{bottom:603.085333pt;}
.ycc{bottom:603.834667pt;}
.y106{bottom:611.950667pt;}
.y99{bottom:614.849333pt;}
.yfb{bottom:619.025333pt;}
.ycb{bottom:619.774667pt;}
.y78{bottom:620.422667pt;}
.y105{bottom:627.890667pt;}
.y98{bottom:630.790667pt;}
.yfa{bottom:634.965333pt;}
.yca{bottom:635.714667pt;}
.y104{bottom:643.832000pt;}
.y77{bottom:645.426667pt;}
.y97{bottom:646.730667pt;}
.yc{bottom:649.802667pt;}
.yf9{bottom:650.905333pt;}
.yc9{bottom:651.654667pt;}
.y3e{bottom:660.914572pt;}
.y76{bottom:661.366667pt;}
.y96{bottom:662.670667pt;}
.yb{bottom:663.085333pt;}
.y103{bottom:675.313333pt;}
.ya{bottom:676.369333pt;}
.yc8{bottom:676.392000pt;}
.y75{bottom:677.306667pt;}
.y95{bottom:678.610667pt;}
.y9{bottom:689.653333pt;}
.yc7{bottom:692.332000pt;}
.y74{bottom:693.246667pt;}
.yf8{bottom:694.688000pt;}
.y8{bottom:702.936000pt;}
.yc6{bottom:708.272000pt;}
.y46{bottom:710.022706pt;}
.yf7{bottom:710.628000pt;}
.y7{bottom:716.220000pt;}
.y3c{bottom:717.617879pt;}
.y42{bottom:717.626431pt;}
.y73{bottom:720.137333pt;}
.y94{bottom:720.705333pt;}
.yc5{bottom:724.212000pt;}
.yf6{bottom:726.569333pt;}
.y6{bottom:729.504000pt;}
.y72{bottom:730.206667pt;}
.y93{bottom:736.645333pt;}
.yc4{bottom:740.152000pt;}
.yf5{bottom:742.509333pt;}
.y5{bottom:742.786667pt;}
.y142{bottom:745.174667pt;}
.y44{bottom:745.436437pt;}
.y40{bottom:746.278841pt;}
.y92{bottom:752.585333pt;}
.y4{bottom:756.070667pt;}
.yc3{bottom:756.093333pt;}
.y16a{bottom:756.809333pt;}
.y71{bottom:767.645333pt;}
.y3{bottom:769.354667pt;}
.y169{bottom:770.092000pt;}
.yc2{bottom:772.033333pt;}
.yea{bottom:773.990667pt;}
.y8e{bottom:779.684000pt;}
.y141{bottom:781.608000pt;}
.yc1{bottom:787.973333pt;}
.ye6{bottom:792.189333pt;}
.y168{bottom:794.998667pt;}
.y140{bottom:797.548000pt;}
.y70{bottom:798.524000pt;}
.y2{bottom:805.625333pt;}
.y167{bottom:808.282667pt;}
.yc0{bottom:811.884000pt;}
.y13f{bottom:813.488000pt;}
.y6f{bottom:814.464000pt;}
.y166{bottom:821.565333pt;}
.y13e{bottom:824.922667pt;}
.y13d{bottom:829.502667pt;}
.y6e{bottom:830.404000pt;}
.y165{bottom:834.849333pt;}
.y2f{bottom:840.162667pt;}
.y1{bottom:845.476000pt;}
.y164{bottom:848.133333pt;}
.y6d{bottom:852.618667pt;}
.y2e{bottom:856.102667pt;}
.y163{bottom:861.416000pt;}
.y2d{bottom:872.042667pt;}
.y162{bottom:874.700000pt;}
.y2c{bottom:887.984000pt;}
.y2b{bottom:919.864000pt;}
.ha{height:0.247305pt;}
.h7{height:0.255857pt;}
.hc{height:0.607215pt;}
.hb{height:1.111089pt;}
.hd{height:1.601351pt;}
.h8{height:2.009724pt;}
.h9{height:2.278481pt;}
.h28{height:2.656693pt;}
.h14{height:10.478802pt;}
.h2e{height:20.791222pt;}
.h5{height:24.596472pt;}
.h17{height:26.727933pt;}
.he{height:27.832556pt;}
.h3{height:27.895200pt;}
.h19{height:28.757086pt;}
.h20{height:28.944447pt;}
.h1c{height:29.135567pt;}
.h22{height:29.263665pt;}
.h1e{height:29.328298pt;}
.h38{height:29.499997pt;}
.h26{height:29.942776pt;}
.h39{height:30.435155pt;}
.h24{height:30.560713pt;}
.h15{height:31.651799pt;}
.h2{height:31.880400pt;}
.h6{height:32.795296pt;}
.h1a{height:35.865600pt;}
.h37{height:38.043849pt;}
.h1{height:39.850400pt;}
.h13{height:40.071222pt;}
.h32{height:44.634400pt;}
.hf{height:47.175200pt;}
.h11{height:48.812533pt;}
.h36{height:48.817867pt;}
.h30{height:58.170400pt;}
.h12{height:58.175733pt;}
.h2b{height:67.137867pt;}
.h1b{height:69.399077pt;}
.h18{height:70.313446pt;}
.h1f{height:71.790339pt;}
.h1d{height:72.454167pt;}
.h2a{height:72.647222pt;}
.h2f{height:72.652556pt;}
.h29{height:90.972556pt;}
.h10{height:93.515360pt;}
.h34{height:98.299360pt;}
.h21{height:101.138794pt;}
.h25{height:108.351472pt;}
.h23{height:108.915815pt;}
.h33{height:109.456693pt;}
.h2c{height:114.240693pt;}
.h16{height:121.582978pt;}
.h27{height:125.398027pt;}
.h35{height:130.182027pt;}
.h2d{height:172.688693pt;}
.h31{height:199.467360pt;}
.h4{height:219.275071pt;}
.h0{height:1056.000000pt;}
.w5{width:0.555188pt;}
.w2{width:0.567304pt;}
.w7{width:1.039820pt;}
.w6{width:1.991978pt;}
.w8{width:3.899145pt;}
.w4{width:6.412102pt;}
.w3{width:6.551790pt;}
.wd{width:109.745843pt;}
.wc{width:109.748263pt;}
.we{width:109.860079pt;}
.wb{width:109.988139pt;}
.w10{width:143.249192pt;}
.w11{width:143.456055pt;}
.wf{width:157.807059pt;}
.wa{width:191.283003pt;}
.w9{width:191.283335pt;}
.w1{width:477.632105pt;}
.w0{width:816.000000pt;}
.x17{left:-23.940082pt;}
.x19{left:-22.217502pt;}
.x15{left:-18.699648pt;}
.x13{left:-14.211105pt;}
.x1b{left:-12.038103pt;}
.x1e{left:-4.866983pt;}
.x0{left:0.000000pt;}
.x47{left:1.283135pt;}
.x3c{left:9.252471pt;}
.x4a{left:34.313696pt;}
.x39{left:37.650126pt;}
.x45{left:39.085600pt;}
.xe{left:74.553963pt;}
.x4c{left:79.473640pt;}
.x4f{left:82.565103pt;}
.xd{left:94.391924pt;}
.x9{left:95.471686pt;}
.x3f{left:99.758058pt;}
.x3d{left:104.426560pt;}
.x4b{left:114.003974pt;}
.x3a{left:127.743831pt;}
.x46{left:128.689962pt;}
.xb{left:153.620304pt;}
.x3b{left:155.624151pt;}
.x6{left:168.896000pt;}
.x38{left:170.256554pt;}
.xc{left:173.326275pt;}
.xa{left:175.334074pt;}
.x5{left:184.837333pt;}
.x77{left:186.460000pt;}
.x37{left:191.478667pt;}
.x48{left:198.726667pt;}
.x51{left:205.457333pt;}
.x7{left:215.093333pt;}
.x3{left:216.717333pt;}
.x76{left:219.908000pt;}
.x54{left:228.980000pt;}
.x1{left:232.741333pt;}
.x52{left:242.750667pt;}
.x2d{left:247.576836pt;}
.x27{left:249.055532pt;}
.x2{left:251.954667pt;}
.x35{left:260.376000pt;}
.x2c{left:262.474906pt;}
.x62{left:274.644000pt;}
.x2e{left:281.247391pt;}
.x21{left:283.406780pt;}
.x31{left:286.529333pt;}
.x26{left:288.095518pt;}
.x3e{left:291.637333pt;}
.x75{left:296.873333pt;}
.x2b{left:307.314719pt;}
.x33{left:311.560000pt;}
.x53{left:313.961333pt;}
.x44{left:316.420000pt;}
.x11{left:318.816632pt;}
.x23{left:321.310662pt;}
.x55{left:327.861333pt;}
.xf{left:331.461380pt;}
.x72{left:334.668000pt;}
.x32{left:338.261333pt;}
.x63{left:339.253333pt;}
.x49{left:343.441333pt;}
.x2f{left:346.527178pt;}
.x64{left:350.877333pt;}
.x20{left:352.380742pt;}
.x4{left:354.372000pt;}
.x30{left:357.257333pt;}
.x10{left:360.610537pt;}
.x25{left:364.092147pt;}
.x4d{left:365.757333pt;}
.x65{left:369.813333pt;}
.x34{left:383.894667pt;}
.x1f{left:391.493138pt;}
.x2a{left:401.079505pt;}
.x8{left:405.352000pt;}
.x56{left:409.345333pt;}
.x40{left:414.377333pt;}
.x24{left:416.316960pt;}
.x57{left:420.969333pt;}
.x22{left:426.884777pt;}
.x41{left:430.106667pt;}
.x29{left:433.383756pt;}
.x66{left:441.681333pt;}
.x28{left:442.996492pt;}
.x69{left:453.304000pt;}
.x67{left:455.700000pt;}
.x74{left:459.050667pt;}
.x68{left:460.064000pt;}
.x6a{left:465.229333pt;}
.x6b{left:472.118667pt;}
.x58{left:477.793333pt;}
.x73{left:496.846667pt;}
.x12{left:501.924053pt;}
.x4e{left:503.640000pt;}
.x1d{left:505.224536pt;}
.x1c{left:506.358431pt;}
.x18{left:509.930450pt;}
.x14{left:519.057201pt;}
.x50{left:526.638667pt;}
.x6c{left:530.086667pt;}
.x42{left:537.117333pt;}
.x1a{left:541.544814pt;}
.x6f{left:546.073333pt;}
.x6d{left:548.469333pt;}
.x43{left:552.164000pt;}
.x16{left:553.446793pt;}
.x6e{left:557.998667pt;}
.x59{left:559.277333pt;}
.x70{left:569.250667pt;}
.x5e{left:570.900000pt;}
.x5a{left:575.264000pt;}
.x60{left:581.350667pt;}
.x5b{left:587.189333pt;}
.x71{left:609.278667pt;}
.x5c{left:614.121333pt;}
.x5d{left:618.485333pt;}
.x5f{left:623.650667pt;}
.x36{left:634.385333pt;}
.x61{left:650.465333pt;}
}




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