
    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_0b93b2533a1bf3e2d4ffc91b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;font-style:normal;font-weight: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_e1b7d40b8b2ca1d6c39cf465.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_940ed4731d227137f6da77e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d1c15607437bdee60564b6a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898438;font-style:normal;font-weight: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_f9c13b16d4a095a8309ca021.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3a4ac824ccfb9239452b1b4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.687500;font-style:normal;font-weight: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_af9502d4f5b3fef909238985.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.704590;font-style:normal;font-weight: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_6a36a1fee8886cea73fb5746.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909668;font-style:normal;font-weight: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_d88ac7c1874c1a91afb8de3b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.894531;font-style:normal;font-weight: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_20adca66d3d50d0a175ef175.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;font-style:normal;font-weight: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_6d906a1d2c0d1f821a51fcbd.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7d9ffeb3ff13709e818c336a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight: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_377654e8db18258e976f21ce.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.887695;font-style:normal;font-weight: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_4fec1450be13c3dc16c557d8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.894531;font-style:normal;font-weight: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_686487fefa09163b0ca7089b.woff2')format("woff");}.fff{font-family:fff;line-height:0.668945;font-style:normal;font-weight: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_1d92419012a3fe769b2d7fe5.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_012d29258f056d4367429dd7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.905762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b40d8616b9a789872b7f6ab1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.875000;font-style:normal;font-weight: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_a8ac8e3cb61292129f0f92e1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893066;font-style:normal;font-weight: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_cc6c6013060869b7992d4936.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_4d27247363dde4836350b201.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_e08e16700704542d78db9e2f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.704590;font-style:normal;font-weight: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_0031c094c78318b94ca6d1da.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_036ce80ac75030e241ff0942.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_3ab69e76283eb84d4ceab90d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_06778ffd1f3eda8a21341754.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.668945;font-style:normal;font-weight: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_1099d67df2d1246c080d7804.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.873535;font-style:normal;font-weight: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_1afff0df4f1a16f19ffd4557.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.677246;font-style:normal;font-weight: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_f0c576df3cff99952cf8b428.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.867676;font-style:normal;font-weight: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_c35bb9ed65a2dd2262d99120.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_475bc2e98bd1f8141a6f5199.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.857910;font-style:normal;font-weight: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_d7d77aa37f75ff9a20985af4.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_83ebf2e6197fcaedcb99dfea.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.683594;font-style:normal;font-weight: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_b0a03e7f39d40b7cbc23cb26.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_40a85def78c6e4a64debda98.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.929199;font-style:normal;font-weight: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_0f99e765286f99f61d237480.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_869cd5bdbdfd53589026f740.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_37d6e543a37f4f34d4641cfa.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.718750;font-style:normal;font-weight: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_f45b855d4d0413b99731e5fe.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.903320;font-style:normal;font-weight: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_2362a8274a16e07a318f4e58.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.893066;font-style:normal;font-weight: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_3590b58adf71401f4f77f3f8.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_937a69da074cc4ac15b65444.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.895996;font-style:normal;font-weight: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_3f71350d9ece6c8e3c97bd83.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_c55b1df9639377e3ac372935.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.925781;font-style:normal;font-weight: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_eb9986a363f144bf7a5c7320.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_e1df390777fc63e4b2390952.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.928223;font-style:normal;font-weight: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_dbafa1d21242702404192eeb.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.882324;font-style:normal;font-weight: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_57d4bf0ca6b605cb41431587.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.682129;font-style:normal;font-weight: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_7a1881d220fdf1a55081d8aa.woff2')format("woff");}.ff31{font-family:ff31;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;}
.m1{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m2{transform:matrix(0.241439,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.241439,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.241439,0.000000,-0.080443,0.236704,0,0);}
.m6{transform:matrix(0.241439,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.241439,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.241439,0.000000,-0.080443,0.236704,0,0);}
.m7{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250409,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v8{vertical-align:-23.299794px;}
.v2{vertical-align:-21.600000px;}
.v4{vertical-align:-18.720000px;}
.v5{vertical-align:-7.766598px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:7.766598px;}
.v3{vertical-align:18.720000px;}
.v1{vertical-align:21.600000px;}
.v7{vertical-align:23.299794px;}
.ls34{letter-spacing:-1.739718px;}
.ls4a{letter-spacing:-1.470558px;}
.ls36{letter-spacing:-1.304788px;}
.ls35{letter-spacing:-1.290809px;}
.ls48{letter-spacing:-1.091102px;}
.ls32{letter-spacing:-0.869859px;}
.lsb{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.417312px;}
.ls26{letter-spacing:-0.411264px;}
.ls1b{letter-spacing:-0.381024px;}
.ls17{letter-spacing:-0.338688px;}
.ls27{letter-spacing:-0.332640px;}
.ls11{letter-spacing:-0.320544px;}
.ls3f{letter-spacing:-0.310464px;}
.ls16{letter-spacing:-0.302400px;}
.ls44{letter-spacing:-0.297792px;}
.ls23{letter-spacing:-0.296352px;}
.ls24{letter-spacing:-0.278208px;}
.ls12{letter-spacing:-0.260064px;}
.ls3b{letter-spacing:-0.259776px;}
.ls28{letter-spacing:-0.254016px;}
.lsa{letter-spacing:-0.250848px;}
.ls29{letter-spacing:-0.247968px;}
.ls15{letter-spacing:-0.241920px;}
.ls9{letter-spacing:-0.231552px;}
.ls2a{letter-spacing:-0.229824px;}
.ls19{letter-spacing:-0.223776px;}
.ls25{letter-spacing:-0.205632px;}
.ls3d{letter-spacing:-0.190080px;}
.ls41{letter-spacing:-0.177408px;}
.ls13{letter-spacing:-0.175392px;}
.ls3a{letter-spacing:-0.171072px;}
.ls45{letter-spacing:-0.164736px;}
.ls3e{letter-spacing:-0.158400px;}
.ls18{letter-spacing:-0.157248px;}
.ls3c{letter-spacing:-0.145728px;}
.ls14{letter-spacing:-0.145152px;}
.ls40{letter-spacing:-0.139392px;}
.ls43{letter-spacing:-0.133056px;}
.ls1f{letter-spacing:-0.120960px;}
.ls42{letter-spacing:-0.120384px;}
.ls22{letter-spacing:-0.108864px;}
.lsc{letter-spacing:-0.014400px;}
.ls33{letter-spacing:-0.013980px;}
.ls46{letter-spacing:-0.011817px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000576px;}
.ls4c{letter-spacing:0.002880px;}
.ls47{letter-spacing:0.011817px;}
.ls30{letter-spacing:0.013980px;}
.lsd{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.119952px;}
.lse{letter-spacing:0.120096px;}
.ls7{letter-spacing:0.158688px;}
.ls1c{letter-spacing:0.226080px;}
.ls0{letter-spacing:0.275616px;}
.ls1a{letter-spacing:0.302544px;}
.ls39{letter-spacing:0.387335px;}
.ls31{letter-spacing:0.434929px;}
.ls1d{letter-spacing:0.437760px;}
.ls1e{letter-spacing:0.571680px;}
.lsf{letter-spacing:0.720000px;}
.ls4b{letter-spacing:0.735279px;}
.ls4{letter-spacing:0.760442px;}
.ls5{letter-spacing:0.836486px;}
.ls37{letter-spacing:1.075346px;}
.ls49{letter-spacing:1.076659px;}
.ls38{letter-spacing:1.091102px;}
.ls2f{letter-spacing:1.272169px;}
.ls2c{letter-spacing:1.290809px;}
.ls2b{letter-spacing:1.304788px;}
.ls10{letter-spacing:2.311147px;}
.ls2e{letter-spacing:148.839084px;}
.ls3{letter-spacing:198.000000px;}
.ls2d{letter-spacing:199.321971px;}
.ls21{letter-spacing:846.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-23.869152px;}
.ws0{word-spacing:-21.155616px;}
.ws7{word-spacing:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws34{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.768000px;}
.wse{word-spacing:-15.120000px;}
.ws15{word-spacing:-14.974848px;}
.ws10{word-spacing:-14.962752px;}
.wsd{word-spacing:-14.944608px;}
.ws13{word-spacing:-14.896224px;}
.ws11{word-spacing:-14.878080px;}
.wsc{word-spacing:-14.859936px;}
.wsf{word-spacing:-14.817600px;}
.wsb{word-spacing:-14.799456px;}
.ws12{word-spacing:-14.781312px;}
.ws18{word-spacing:-14.738976px;}
.ws17{word-spacing:-14.702688px;}
.ws37{word-spacing:-14.319360px;}
.ws32{word-spacing:-14.259474px;}
.ws24{word-spacing:-14.226854px;}
.ws39{word-spacing:-14.179968px;}
.ws36{word-spacing:-14.173632px;}
.ws38{word-spacing:-14.160960px;}
.ws3b{word-spacing:-14.154624px;}
.ws3a{word-spacing:-14.129280px;}
.ws33{word-spacing:-14.059584px;}
.ws1c{word-spacing:-13.668480px;}
.ws1d{word-spacing:-13.414464px;}
.ws1b{word-spacing:-13.257216px;}
.ws2e{word-spacing:-12.968665px;}
.ws2d{word-spacing:-12.954685px;}
.ws2f{word-spacing:-12.940706px;}
.ws48{word-spacing:-12.025753px;}
.ws31{word-spacing:-11.649897px;}
.ws2{word-spacing:-10.440000px;}
.ws3f{word-spacing:-9.859306px;}
.ws6{word-spacing:-0.076044px;}
.ws8{word-spacing:-0.074553px;}
.wsa{word-spacing:-0.072000px;}
.ws35{word-spacing:-0.065607px;}
.ws14{word-spacing:-0.060480px;}
.ws19{word-spacing:-0.059294px;}
.ws16{word-spacing:-0.036000px;}
.ws30{word-spacing:-0.031066px;}
.ws9{word-spacing:0.000000px;}
.ws1a{word-spacing:0.114912px;}
.ws2c{word-spacing:8.636457px;}
.ws4e{word-spacing:31.743051px;}
.ws4a{word-spacing:33.926568px;}
.ws40{word-spacing:41.590540px;}
.ws4c{word-spacing:47.055240px;}
.ws4b{word-spacing:47.056553px;}
.ws54{word-spacing:54.720525px;}
.ws56{word-spacing:56.902728px;}
.ws4f{word-spacing:56.904041px;}
.ws53{word-spacing:59.028473px;}
.ws50{word-spacing:60.183911px;}
.ws43{word-spacing:60.185224px;}
.ws23{word-spacing:67.313105px;}
.ws20{word-spacing:68.619447px;}
.ws49{word-spacing:69.988071px;}
.ws45{word-spacing:70.032713px;}
.ws29{word-spacing:71.218150px;}
.ws47{word-spacing:72.158457px;}
.ws51{word-spacing:79.835560px;}
.ws42{word-spacing:79.877576px;}
.ws55{word-spacing:82.005946px;}
.ws46{word-spacing:83.161385px;}
.ws41{word-spacing:83.162698px;}
.ws3c{word-spacing:91.858687px;}
.ws2b{word-spacing:93.175876px;}
.ws3d{word-spacing:94.097349px;}
.ws2a{word-spacing:106.012509px;}
.ws28{word-spacing:117.679493px;}
.ws27{word-spacing:132.004206px;}
.ws1f{word-spacing:156.170753px;}
.ws26{word-spacing:164.330340px;}
.ws25{word-spacing:178.606901px;}
.ws21{word-spacing:179.880623px;}
.ws1e{word-spacing:185.932356px;}
.ws22{word-spacing:230.433409px;}
.ws44{word-spacing:250.570004px;}
.ws4d{word-spacing:276.831287px;}
.ws52{word-spacing:299.806134px;}
.ws3e{word-spacing:484.689450px;}
._76{margin-left:-3042.000000px;}
._93{margin-left:-3039.120000px;}
._b2{margin-left:-3036.735072px;}
._60{margin-left:-3035.160000px;}
._77{margin-left:-3031.840000px;}
._8b{margin-left:-3029.766912px;}
._7d{margin-left:-3028.114368px;}
._a4{margin-left:-3026.420928px;}
._67{margin-left:-3025.368000px;}
._6a{margin-left:-3023.568000px;}
._82{margin-left:-3021.854688px;}
._5e{margin-left:-3019.392000px;}
._68{margin-left:-3015.504000px;}
._79{margin-left:-3013.663392px;}
._95{margin-left:-3011.367024px;}
._6d{margin-left:-3007.512000px;}
._48{margin-left:-3005.496576px;}
._88{margin-left:-3001.164480px;}
._db{margin-left:-2999.808000px;}
._e5{margin-left:-2995.632000px;}
._b1{margin-left:-2993.604912px;}
._5b{margin-left:-2991.528000px;}
._55{margin-left:-2989.512000px;}
._a5{margin-left:-2984.153328px;}
._1c{margin-left:-2981.952000px;}
._63{margin-left:-2979.432000px;}
._35{margin-left:-2976.768000px;}
._2b{margin-left:-2973.888000px;}
._36{margin-left:-2972.232000px;}
._b8{margin-left:-2970.906336px;}
._a8{margin-left:-2969.896320px;}
._a0{margin-left:-2966.152608px;}
._43{margin-left:-2961.964800px;}
._61{margin-left:-2960.525520px;}
._51{margin-left:-2957.544000px;}
._b9{margin-left:-2956.179456px;}
._8f{margin-left:-2953.852992px;}
._7c{margin-left:-2952.802368px;}
._5a{margin-left:-2949.480000px;}
._2d{margin-left:-2947.968000px;}
._7b{margin-left:-2945.825280px;}
._37{margin-left:-2941.848000px;}
._44{margin-left:-2939.616000px;}
._41{margin-left:-2935.612800px;}
._3d{margin-left:-2931.364800px;}
._bd{margin-left:-2929.060224px;}
._3b{margin-left:-2927.520000px;}
._49{margin-left:-2925.864000px;}
._ec{margin-left:-2923.560000px;}
._a1{margin-left:-2922.334848px;}
._5f{margin-left:-2919.384000px;}
._2e{margin-left:-2917.152000px;}
._42{margin-left:-2913.436800px;}
._69{margin-left:-2911.464000px;}
._6f{margin-left:-2909.664000px;}
._54{margin-left:-2907.432000px;}
._7a{margin-left:-2905.243200px;}
._ad{margin-left:-2903.900544px;}
._6b{margin-left:-2901.672000px;}
._26{margin-left:-2899.944000px;}
._53{margin-left:-2897.280000px;}
._25{margin-left:-2895.840000px;}
._3e{margin-left:-2893.320000px;}
._57{margin-left:-2891.736000px;}
._86{margin-left:-2890.594944px;}
._58{margin-left:-2887.704000px;}
._65{margin-left:-2885.832000px;}
._ab{margin-left:-2884.698144px;}
._8c{margin-left:-2882.478528px;}
._29{margin-left:-2879.856000px;}
._4c{margin-left:-2877.768000px;}
._d7{margin-left:-2875.680000px;}
._40{margin-left:-2871.604800px;}
._4d{margin-left:-2865.480048px;}
._27{margin-left:-2859.984000px;}
._df{margin-left:-2857.896000px;}
._50{margin-left:-2847.456000px;}
._2a{margin-left:-2843.510400px;}
._64{margin-left:-2841.480000px;}
._74{margin-left:-2837.376000px;}
._b5{margin-left:-2834.923104px;}
._52{margin-left:-2833.603200px;}
._91{margin-left:-2828.880000px;}
._11{margin-left:-2825.856000px;}
._3f{margin-left:-2819.505600px;}
._6e{margin-left:-2813.640048px;}
._56{margin-left:-2811.672000px;}
._e3{margin-left:-2809.440000px;}
._81{margin-left:-2804.400000px;}
._94{margin-left:-2795.719968px;}
._73{margin-left:-2793.700800px;}
._17{margin-left:-2790.000000px;}
._5d{margin-left:-2779.632000px;}
._83{margin-left:-2771.826192px;}
._59{margin-left:-2765.592000px;}
._e0{margin-left:-2754.000000px;}
._9e{margin-left:-2751.120000px;}
._de{margin-left:-2749.968000px;}
._e9{margin-left:-2745.792000px;}
._9b{margin-left:-2743.200000px;}
._e1{margin-left:-2742.048000px;}
._bc{margin-left:-2739.610080px;}
._99{margin-left:-2733.840000px;}
._97{margin-left:-2729.520000px;}
._3{margin-left:-2725.762320px;}
._30{margin-left:-2712.096000px;}
._8a{margin-left:-2705.040000px;}
._4f{margin-left:-2636.136000px;}
._38{margin-left:-2617.776000px;}
._3a{margin-left:-2613.744000px;}
._a6{margin-left:-2607.336432px;}
._39{margin-left:-2586.182400px;}
._e7{margin-left:-2559.744000px;}
._47{margin-left:-2551.435200px;}
._32{margin-left:-2536.056000px;}
._1e{margin-left:-2523.926880px;}
._23{margin-left:-2511.658080px;}
._a7{margin-left:-2502.000000px;}
._22{margin-left:-2491.863840px;}
._b7{margin-left:-2477.520000px;}
._8e{margin-left:-2451.600000px;}
._4a{margin-left:-2405.448000px;}
._1d{margin-left:-2369.952000px;}
._9a{margin-left:-2342.497968px;}
._14{margin-left:-2340.072000px;}
._c{margin-left:-2336.040000px;}
._1b{margin-left:-2329.963200px;}
._a3{margin-left:-2311.920000px;}
._aa{margin-left:-2306.880000px;}
._9d{margin-left:-2295.182160px;}
._9f{margin-left:-2287.322928px;}
._2c{margin-left:-2283.696000px;}
._bf{margin-left:-2276.440560px;}
._89{margin-left:-2269.005696px;}
._87{margin-left:-2257.272576px;}
._98{margin-left:-2256.211728px;}
._19{margin-left:-2189.905920px;}
._bb{margin-left:-2179.852560px;}
._92{margin-left:-2175.739488px;}
._75{margin-left:-2111.616000px;}
._16{margin-left:-2106.072000px;}
._15{margin-left:-2080.177488px;}
._9{margin-left:-2065.968000px;}
._be{margin-left:-2063.664000px;}
._0{margin-left:-2026.239120px;}
._e{margin-left:-1945.872000px;}
._ae{margin-left:-1917.826272px;}
._b3{margin-left:-1909.768896px;}
._1a{margin-left:-1907.883360px;}
._84{margin-left:-1882.520352px;}
._ed{margin-left:-1873.944576px;}
._20{margin-left:-1865.880000px;}
._ea{margin-left:-1859.832000px;}
._5{margin-left:-1840.799952px;}
._f{margin-left:-1785.758400px;}
._80{margin-left:-1756.177632px;}
._13{margin-left:-1752.106176px;}
._46{margin-left:-1723.968000px;}
._2f{margin-left:-1676.088000px;}
._96{margin-left:-1638.000000px;}
._9c{margin-left:-1635.120000px;}
._e4{margin-left:-1617.840000px;}
._34{margin-left:-1603.944000px;}
._7{margin-left:-1562.184000px;}
._b4{margin-left:-1527.621840px;}
._e2{margin-left:-1514.016000px;}
._4e{margin-left:-1503.936000px;}
._d8{margin-left:-1496.016000px;}
._6{margin-left:-1474.823952px;}
._a2{margin-left:-1448.540064px;}
._6c{margin-left:-1317.960000px;}
._dd{margin-left:-1291.968000px;}
._e6{margin-left:-1287.864000px;}
._10{margin-left:-1245.899808px;}
._e8{margin-left:-1163.880000px;}
._4{margin-left:-1135.913184px;}
._21{margin-left:-1129.968000px;}
._af{margin-left:-1098.000000px;}
._eb{margin-left:-1073.952000px;}
._5c{margin-left:-1055.952000px;}
._c9{margin-left:-1053.864000px;}
._72{margin-left:-1047.915504px;}
._a9{margin-left:-1017.360000px;}
._4b{margin-left:-975.960000px;}
._d6{margin-left:-969.912000px;}
._12{margin-left:-962.064000px;}
._ba{margin-left:-941.397120px;}
._1f{margin-left:-922.032000px;}
._24{margin-left:-906.076800px;}
._70{margin-left:-893.880000px;}
._b{margin-left:-866.088000px;}
._d9{margin-left:-841.968000px;}
._7e{margin-left:-829.122048px;}
._da{margin-left:-821.952000px;}
._28{margin-left:-777.960000px;}
._31{margin-left:-732.024000px;}
._dc{margin-left:-691.992000px;}
._66{margin-left:-613.944000px;}
._d5{margin-left:-569.808000px;}
._ac{margin-left:-485.438400px;}
._45{margin-left:-471.960000px;}
._b6{margin-left:-460.925856px;}
._90{margin-left:-438.868800px;}
._33{margin-left:-414.000000px;}
._8d{margin-left:-410.806080px;}
._b0{margin-left:-351.354240px;}
._71{margin-left:-234.000000px;}
._85{margin-left:-232.560000px;}
._7f{margin-left:-231.120000px;}
._a{margin-left:-198.000000px;}
._1{margin-left:-164.880000px;}
._8{margin-left:-160.272000px;}
._62{margin-left:-5.256000px;}
._3c{margin-left:-4.104000px;}
._c0{margin-left:-2.114313px;}
._2{margin-left:-1.050480px;}
._78{width:1.028160px;}
._18{width:2.087488px;}
._c8{width:3.186242px;}
._c7{width:7.421040px;}
._c2{width:84.459874px;}
._c3{width:92.314275px;}
._c6{width:107.806268px;}
._cb{width:144.655504px;}
._c5{width:182.518160px;}
._d{width:198.000000px;}
._c4{width:232.922564px;}
._d3{width:257.698476px;}
._cc{width:280.627451px;}
._d0{width:303.556425px;}
._d2{width:329.619748px;}
._d1{width:352.548722px;}
._d4{width:362.448649px;}
._cf{width:375.482202px;}
._ce{width:454.681779px;}
._cd{width:722.534971px;}
._ca{width:840.706419px;}
._c1{width:860.736749px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:31.066392px;}
.fs8{font-size:36.000000px;}
.fsf{font-size:39.389954px;}
.fs3{font-size:41.760000px;}
.fsc{font-size:46.599588px;}
.fs10{font-size:52.519939px;}
.fs11{font-size:59.084932px;}
.fsb{font-size:59.294117px;}
.fs6{font-size:60.480000px;}
.fsa{font-size:63.360000px;}
.fs9{font-size:63.877126px;}
.fse{font-size:65.606752px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:74.553137px;}
.fs4{font-size:76.044197px;}
.fs0{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y1d0{bottom:2.461866px;}
.y1da{bottom:2.461873px;}
.y1cc{bottom:2.461945px;}
.y1ce{bottom:2.461952px;}
.y180{bottom:2.912483px;}
.y1ca{bottom:3.282496px;}
.y17e{bottom:3.883299px;}
.y161{bottom:3.883312px;}
.y1d6{bottom:4.103137px;}
.y1d8{bottom:4.103144px;}
.y1d2{bottom:4.103216px;}
.y1d4{bottom:4.103223px;}
.y120{bottom:4.140000px;}
.y129{bottom:4.200000px;}
.y12b{bottom:4.260000px;}
.y12d{bottom:4.320000px;}
.y114{bottom:4.380000px;}
.y116{bottom:4.440000px;}
.y11e{bottom:4.500000px;}
.y127{bottom:4.560000px;}
.y112{bottom:4.740000px;}
.y14b{bottom:4.800000px;}
.y184{bottom:4.854137px;}
.y11c{bottom:4.860000px;}
.y125{bottom:4.920000px;}
.y111{bottom:4.976484px;}
.y141{bottom:4.980000px;}
.y143{bottom:5.040000px;}
.y130{bottom:5.100000px;}
.y137{bottom:5.160000px;}
.y11a{bottom:5.220000px;}
.y123{bottom:5.280000px;}
.y13f{bottom:5.340000px;}
.y10e{bottom:5.400000px;}
.y110{bottom:5.460000px;}
.y135{bottom:5.520000px;}
.y118{bottom:5.580000px;}
.y182{bottom:5.824961px;}
.y193{bottom:6.660000px;}
.y19b{bottom:7.740000px;}
.y197{bottom:7.920000px;}
.y1a2{bottom:8.160000px;}
.y1a0{bottom:8.340000px;}
.y199{bottom:9.420000px;}
.y1c9{bottom:16.412481px;}
.y189{bottom:19.416424px;}
.y18e{bottom:19.416454px;}
.y17d{bottom:19.416495px;}
.y181{bottom:21.358157px;}
.y183{bottom:22.328982px;}
.y195{bottom:24.660000px;}
.y194{bottom:24.903540px;}
.y192{bottom:25.740000px;}
.y18c{bottom:27.183040px;}
.y186{bottom:27.183118px;}
.y1c8{bottom:29.542466px;}
.y188{bottom:34.949620px;}
.y17c{bottom:34.949691px;}
.y1c7{bottom:42.672451px;}
.y18b{bottom:42.716236px;}
.y17b{bottom:50.482887px;}
.y1c6{bottom:55.802435px;}
.y17a{bottom:66.016083px;}
.y1c5{bottom:68.932420px;}
.y179{bottom:81.549279px;}
.y1c4{bottom:82.062405px;}
.y190{bottom:89.315854px;}
.y1c3{bottom:95.192390px;}
.y178{bottom:97.082475px;}
.ydd{bottom:108.720000px;}
.y9b{bottom:111.960000px;}
.y177{bottom:112.615671px;}
.y15e{bottom:114.840000px;}
.y15f{bottom:115.104600px;}
.y20{bottom:115.200000px;}
.y21{bottom:115.464600px;}
.y42{bottom:118.800000px;}
.y97{bottom:120.600000px;}
.yc0{bottom:123.120000px;}
.ya4{bottom:124.560000px;}
.y142{bottom:126.000000px;}
.y176{bottom:128.148867px;}
.y1e3{bottom:128.520000px;}
.y60{bottom:129.600000px;}
.yca{bottom:132.840000px;}
.y8f{bottom:134.280000px;}
.y9a{bottom:137.880000px;}
.ybf{bottom:143.280000px;}
.y175{bottom:143.682063px;}
.y140{bottom:145.500000px;}
.y96{bottom:146.520000px;}
.y105{bottom:146.880000px;}
.y15d{bottom:147.600000px;}
.y1f{bottom:147.960000px;}
.y41{bottom:149.760000px;}
.ya3{bottom:150.480000px;}
.y74{bottom:154.440000px;}
.y1a9{bottom:156.240000px;}
.y1c2{bottom:157.559818px;}
.y1e5{bottom:158.760000px;}
.yc9{bottom:159.120000px;}
.y174{bottom:159.215259px;}
.y1e2{bottom:159.480000px;}
.y8e{bottom:160.200000px;}
.y5f{bottom:160.560000px;}
.y13e{bottom:163.500000px;}
.y99{bottom:163.800000px;}
.y104{bottom:164.160000px;}
.ybe{bottom:170.640000px;}
.y1c1{bottom:170.689802px;}
.y95{bottom:172.800000px;}
.y162{bottom:174.504450px;}
.y15c{bottom:174.600000px;}
.y173{bottom:174.748455px;}
.y185{bottom:175.475250px;}
.ya2{bottom:177.120000px;}
.y1e{bottom:179.280000px;}
.y40{bottom:181.080000px;}
.yc8{bottom:181.440000px;}
.y1a8{bottom:182.520000px;}
.y1aa{bottom:182.622150px;}
.y13d{bottom:183.000000px;}
.y1c0{bottom:183.819787px;}
.yb4{bottom:184.320000px;}
.y73{bottom:185.760000px;}
.y8d{bottom:186.480000px;}
.y98{bottom:186.840000px;}
.y1e4{bottom:189.720000px;}
.y172{bottom:190.281651px;}
.y1e1{bottom:190.800000px;}
.y5e{bottom:191.880000px;}
.yd6{bottom:193.680000px;}
.y94{bottom:195.840000px;}
.ybd{bottom:196.560000px;}
.y1bf{bottom:196.949772px;}
.y103{bottom:200.160000px;}
.y13c{bottom:201.000000px;}
.ye4{bottom:204.120000px;}
.ya1{bottom:204.480000px;}
.y171{bottom:205.814847px;}
.y8c{bottom:209.520000px;}
.y1be{bottom:210.079757px;}
.y1d{bottom:210.240000px;}
.y3f{bottom:212.040000px;}
.y102{bottom:215.280000px;}
.y72{bottom:216.720000px;}
.yd5{bottom:217.080000px;}
.y13b{bottom:219.000000px;}
.y170{bottom:221.348043px;}
.yad{bottom:221.400000px;}
.y1e0{bottom:222.120000px;}
.y5d{bottom:223.200000px;}
.y1bd{bottom:223.209742px;}
.ye3{bottom:224.640000px;}
.y8b{bottom:228.960000px;}
.ya0{bottom:230.400000px;}
.y1bc{bottom:236.339726px;}
.yb3{bottom:236.880000px;}
.y16f{bottom:236.881239px;}
.y13a{bottom:237.000000px;}
.y18d{bottom:237.608100px;}
.y1b{bottom:242.280000px;}
.y1c{bottom:242.544600px;}
.y3e{bottom:243.360000px;}
.yac{bottom:247.320000px;}
.y71{bottom:248.040000px;}
.y1bb{bottom:249.469711px;}
.ybc{bottom:250.560000px;}
.y16e{bottom:252.414435px;}
.y1df{bottom:253.080000px;}
.y5c{bottom:253.440000px;}
.ye2{bottom:253.800000px;}
.y8a{bottom:254.880000px;}
.y139{bottom:255.000000px;}
.y9f{bottom:256.320000px;}
.yd4{bottom:257.040000px;}
.yb2{bottom:264.240000px;}
.y16d{bottom:267.947631px;}
.yab{bottom:273.960000px;}
.y138{bottom:274.500000px;}
.y3d{bottom:274.680000px;}
.y19{bottom:275.760000px;}
.y1a{bottom:276.024600px;}
.ybb{bottom:276.480000px;}
.yd3{bottom:276.840000px;}
.y70{bottom:279.000000px;}
.y89{bottom:280.800000px;}
.ye1{bottom:281.160000px;}
.y9e{bottom:282.600000px;}
.yc3{bottom:282.960000px;}
.y16c{bottom:283.480827px;}
.y18a{bottom:284.207700px;}
.y1de{bottom:284.400000px;}
.y5b{bottom:285.120000px;}
.y1d3{bottom:288.482550px;}
.yb1{bottom:290.160000px;}
.y136{bottom:294.000000px;}
.yd2{bottom:296.640000px;}
.y16b{bottom:299.014023px;}
.yaa{bottom:301.320000px;}
.yba{bottom:302.400000px;}
.yc2{bottom:305.280000px;}
.y3c{bottom:305.640000px;}
.y88{bottom:307.080000px;}
.y1cd{bottom:308.177550px;}
.y9d{bottom:308.520000px;}
.y18{bottom:308.880000px;}
.y6f{bottom:309.960000px;}
.y1ba{bottom:311.837139px;}
.y134{bottom:312.000000px;}
.y16a{bottom:314.547219px;}
.yf9{bottom:314.640000px;}
.y1dd{bottom:315.360000px;}
.yb0{bottom:316.080000px;}
.y5a{bottom:316.440000px;}
.yd1{bottom:316.800000px;}
.y1b9{bottom:324.967124px;}
.ya9{bottom:327.960000px;}
.yb9{bottom:328.320000px;}
.y169{bottom:330.080415px;}
.y133{bottom:331.500000px;}
.ye0{bottom:331.560000px;}
.y9c{bottom:332.640000px;}
.y87{bottom:333.000000px;}
.y3b{bottom:336.960000px;}
.y1b8{bottom:338.097109px;}
.y17{bottom:339.840000px;}
.y6e{bottom:340.920000px;}
.yaf{bottom:342.000000px;}
.yf8{bottom:345.600000px;}
.y168{bottom:345.613611px;}
.y1dc{bottom:346.680000px;}
.y59{bottom:347.760000px;}
.y132{bottom:349.500000px;}
.y1b7{bottom:351.227093px;}
.yb8{bottom:354.600000px;}
.ya8{bottom:355.320000px;}
.y86{bottom:357.120000px;}
.y167{bottom:361.146807px;}
.y18f{bottom:361.873650px;}
.y85{bottom:363.960000px;}
.yae{bottom:364.320000px;}
.y1b6{bottom:364.357078px;}
.y131{bottom:367.500000px;}
.y3a{bottom:367.920000px;}
.y16{bottom:371.880000px;}
.y6d{bottom:373.680000px;}
.yf7{bottom:374.040000px;}
.y7c{bottom:374.760000px;}
.y166{bottom:376.680003px;}
.y1b5{bottom:377.487063px;}
.y1db{bottom:378.000000px;}
.y58{bottom:378.720000px;}
.yb7{bottom:380.520000px;}
.ya7{bottom:381.240000px;}
.ydc{bottom:384.840000px;}
.y12f{bottom:385.500000px;}
.y84{bottom:389.880000px;}
.y1b4{bottom:390.617048px;}
.y165{bottom:392.213199px;}
.y39{bottom:399.240000px;}
.yf6{bottom:400.320000px;}
.y12e{bottom:403.500000px;}
.y1b3{bottom:403.747033px;}
.y15{bottom:404.640000px;}
.yb6{bottom:406.440000px;}
.y7b{bottom:406.800000px;}
.y6c{bottom:407.160000px;}
.y164{bottom:407.746395px;}
.y57{bottom:408.960000px;}
.ydb{bottom:411.120000px;}
.y83{bottom:416.160000px;}
.y12c{bottom:423.000000px;}
.y163{bottom:423.279591px;}
.yf5{bottom:426.240000px;}
.yb5{bottom:428.760000px;}
.y38{bottom:430.560000px;}
.ya6{bottom:433.440000px;}
.y14{bottom:435.960000px;}
.yda{bottom:437.040000px;}
.y7a{bottom:437.760000px;}
.yd0{bottom:438.480000px;}
.y6b{bottom:440.280000px;}
.y56{bottom:441.000000px;}
.y82{bottom:442.080000px;}
.y12a{bottom:442.500000px;}
.y1d7{bottom:442.759950px;}
.yf4{bottom:448.560000px;}
.y101{bottom:451.440000px;}
.yec{bottom:451.800000px;}
.ya5{bottom:455.760000px;}
.ycf{bottom:458.280000px;}
.y37{bottom:461.520000px;}
.y128{bottom:462.000000px;}
.y1d9{bottom:462.454950px;}
.yd9{bottom:462.960000px;}
.y1b2{bottom:466.114460px;}
.y13{bottom:467.280000px;}
.y81{bottom:468.000000px;}
.y79{bottom:469.080000px;}
.y6a{bottom:471.240000px;}
.y55{bottom:472.320000px;}
.yce{bottom:478.440000px;}
.y1b1{bottom:479.244445px;}
.y126{bottom:480.000000px;}
.yee{bottom:484.920000px;}
.yeb{bottom:486.360000px;}
.y100{bottom:487.800000px;}
.yd8{bottom:488.880000px;}
.y1b0{bottom:492.374430px;}
.y36{bottom:492.840000px;}
.ye8{bottom:493.200000px;}
.y80{bottom:493.920000px;}
.y124{bottom:498.000000px;}
.y12{bottom:498.240000px;}
.ycd{bottom:499.680000px;}
.y78{bottom:500.400000px;}
.y69{bottom:502.560000px;}
.y54{bottom:503.280000px;}
.yea{bottom:503.640000px;}
.y1af{bottom:505.504415px;}
.ye7{bottom:510.480000px;}
.yff{bottom:511.920000px;}
.yd7{bottom:513.000000px;}
.y122{bottom:516.000000px;}
.y1ae{bottom:518.634400px;}
.y7f{bottom:519.840000px;}
.ye9{bottom:520.920000px;}
.y35{bottom:524.160000px;}
.ye6{bottom:527.760000px;}
.y11{bottom:529.560000px;}
.y1ad{bottom:531.764384px;}
.y76{bottom:532.080000px;}
.y77{bottom:532.344600px;}
.y68{bottom:533.880000px;}
.y53{bottom:534.600000px;}
.y121{bottom:535.500000px;}
.yed{bottom:538.200000px;}
.ycc{bottom:541.440000px;}
.y1ac{bottom:544.894369px;}
.y7e{bottom:545.760000px;}
.y187{bottom:548.272050px;}
.ye5{bottom:551.880000px;}
.y11f{bottom:553.500000px;}
.y34{bottom:555.120000px;}
.y1ab{bottom:558.024354px;}
.y10{bottom:561.240000px;}
.y75{bottom:564.120000px;}
.y67{bottom:564.840000px;}
.y52{bottom:565.560000px;}
.yc7{bottom:569.160000px;}
.y7d{bottom:569.880000px;}
.y11d{bottom:571.500000px;}
.ycb{bottom:577.440000px;}
.y33{bottom:587.160000px;}
.y11b{bottom:589.500000px;}
.yf3{bottom:593.640000px;}
.yf{bottom:594.360000px;}
.yc6{bottom:595.080000px;}
.y66{bottom:596.160000px;}
.y51{bottom:596.880000px;}
.y1d1{bottom:597.037200px;}
.y119{bottom:607.500000px;}
.y160{bottom:610.404750px;}
.yf2{bottom:610.920000px;}
.y1cb{bottom:616.732200px;}
.y32{bottom:619.920000px;}
.yc5{bottom:621.000000px;}
.y117{bottom:625.500000px;}
.ye{bottom:625.680000px;}
.y65{bottom:627.120000px;}
.y17f{bottom:627.879600px;}
.y50{bottom:628.200000px;}
.yc4{bottom:643.320000px;}
.y115{bottom:645.000000px;}
.yf1{bottom:645.480000px;}
.y15b{bottom:650.160000px;}
.y31{bottom:651.960000px;}
.yd{bottom:656.640000px;}
.y4f{bottom:658.440000px;}
.yf0{bottom:662.760000px;}
.y113{bottom:664.500000px;}
.y15a{bottom:670.680000px;}
.y10f{bottom:682.500000px;}
.y30{bottom:684.720000px;}
.yef{bottom:686.880000px;}
.yc{bottom:687.960000px;}
.y64{bottom:689.760000px;}
.y4e{bottom:690.480000px;}
.y159{bottom:691.560000px;}
.y10d{bottom:702.000000px;}
.yc1{bottom:712.080000px;}
.y158{bottom:712.440000px;}
.y2f{bottom:716.040000px;}
.yb{bottom:718.920000px;}
.y63{bottom:720.720000px;}
.y4d{bottom:721.440000px;}
.y10c{bottom:727.560000px;}
.y157{bottom:733.320000px;}
.y2e{bottom:747.000000px;}
.y10b{bottom:748.440000px;}
.y156{bottom:750.000000px;}
.ya{bottom:750.240000px;}
.y1d5{bottom:751.314600px;}
.y62{bottom:752.040000px;}
.y4c{bottom:752.400000px;}
.yfe{bottom:757.440000px;}
.y155{bottom:768.000000px;}
.y10a{bottom:768.240000px;}
.y1cf{bottom:771.009600px;}
.yfd{bottom:775.440000px;}
.y2d{bottom:778.320000px;}
.y9{bottom:782.280000px;}
.y4b{bottom:783.360000px;}
.y154{bottom:786.000000px;}
.y1a7{bottom:792.000000px;}
.yfc{bottom:792.720000px;}
.y109{bottom:795.600000px;}
.y153{bottom:804.000000px;}
.y2c{bottom:809.640000px;}
.yfb{bottom:811.440000px;}
.y1a6{bottom:812.880000px;}
.y108{bottom:813.600000px;}
.y8{bottom:814.320000px;}
.y4a{bottom:814.680000px;}
.y152{bottom:823.500000px;}
.yfa{bottom:826.560000px;}
.y107{bottom:832.320000px;}
.y1a5{bottom:833.760000px;}
.y2b{bottom:840.600000px;}
.y151{bottom:841.500000px;}
.y49{bottom:845.640000px;}
.y106{bottom:847.440000px;}
.y7{bottom:851.040000px;}
.y150{bottom:859.500000px;}
.y1a4{bottom:864.720000px;}
.y2a{bottom:871.920000px;}
.y48{bottom:876.600000px;}
.y14f{bottom:877.500000px;}
.y1a3{bottom:880.500000px;}
.y6{bottom:882.000000px;}
.y14e{bottom:895.500000px;}
.y1a1{bottom:903.000000px;}
.y28{bottom:903.600000px;}
.y29{bottom:903.864706px;}
.y47{bottom:907.560000px;}
.y5{bottom:907.920000px;}
.y14d{bottom:913.500000px;}
.y19f{bottom:925.500000px;}
.y14c{bottom:933.000000px;}
.y26{bottom:937.440000px;}
.y27{bottom:937.704704px;}
.y46{bottom:938.880000px;}
.y61{bottom:939.240000px;}
.y4{bottom:943.920000px;}
.y19e{bottom:949.500000px;}
.y14a{bottom:951.000000px;}
.ydf{bottom:960.120000px;}
.y149{bottom:969.000000px;}
.y45{bottom:969.840000px;}
.y25{bottom:970.200000px;}
.y19d{bottom:970.500000px;}
.y19c{bottom:972.000000px;}
.y3{bottom:985.680000px;}
.y93{bottom:986.760000px;}
.y148{bottom:987.000000px;}
.yde{bottom:988.200000px;}
.y19a{bottom:994.500000px;}
.y44{bottom:1000.800000px;}
.y24{bottom:1001.520000px;}
.y147{bottom:1006.500000px;}
.y92{bottom:1014.480000px;}
.y198{bottom:1015.500000px;}
.y196{bottom:1017.000000px;}
.y146{bottom:1024.500000px;}
.y2{bottom:1024.560000px;}
.y43{bottom:1031.760000px;}
.y23{bottom:1032.480000px;}
.y191{bottom:1039.500000px;}
.y91{bottom:1040.400000px;}
.y145{bottom:1042.500000px;}
.y144{bottom:1060.500000px;}
.y1{bottom:1060.920000px;}
.y22{bottom:1063.800000px;}
.y90{bottom:1066.320000px;}
.h2a{height:15.591855px;}
.h17{height:16.504020px;}
.h2c{height:18.874350px;}
.h14{height:19.500000px;}
.h10{height:21.000000px;}
.h27{height:22.500000px;}
.h24{height:24.000000px;}
.h26{height:25.500000px;}
.h6{height:28.261406px;}
.h29{height:28.676964px;}
.h18{height:33.925774px;}
.h1b{height:33.978870px;}
.h2b{height:38.364174px;}
.h2e{height:39.380338px;}
.h12{height:40.156709px;}
.h2d{height:40.303540px;}
.h15{height:40.310156px;}
.h20{height:40.500000px;}
.h13{height:40.959844px;}
.h16{height:41.137031px;}
.he{height:41.491406px;}
.h11{height:42.052500px;}
.h23{height:42.384375px;}
.hf{height:43.260534px;}
.h22{height:44.431917px;}
.h25{height:45.478125px;}
.h1e{height:45.628755px;}
.h1a{height:45.628763px;}
.h21{height:46.004063px;}
.h5{height:47.988281px;}
.ha{height:49.394531px;}
.h7{height:49.464844px;}
.hd{height:49.640625px;}
.h4{height:49.861406px;}
.hc{height:50.027344px;}
.hb{height:50.490821px;}
.h8{height:50.589844px;}
.h9{height:51.500635px;}
.h2{height:56.441250px;}
.h1{height:57.012188px;}
.h1c{height:61.161960px;}
.h3{height:66.659766px;}
.h1d{height:76.695150px;}
.h1f{height:185.427450px;}
.h19{height:469.879200px;}
.h28{height:603.979350px;}
.h0{height:1188.000000px;}
.w3{width:60.000000px;}
.w8{width:63.000000px;}
.w4{width:64.500000px;}
.w12{width:76.500000px;}
.wb{width:86.544825px;}
.wc{width:89.462070px;}
.we{width:91.406895px;}
.w6{width:96.000000px;}
.w7{width:97.500000px;}
.wd{width:101.131035px;}
.w2{width:111.000000px;}
.w11{width:118.500000px;}
.wf{width:129.000000px;}
.wa{width:140.027580px;}
.w13{width:168.000000px;}
.w5{width:192.000000px;}
.w10{width:216.000000px;}
.w17{width:265.874550px;}
.w1{width:423.000000px;}
.w16{width:585.908700px;}
.w15{width:586.729350px;}
.w9{width:675.827550px;}
.w14{width:702.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7b{left:1.944837px;}
.x8c{left:3.282398px;}
.x7a{left:6.806906px;}
.x52{left:8.760144px;}
.x65{left:10.671000px;}
.x5d{left:12.176160px;}
.x5c{left:14.161020px;}
.x5f{left:15.977436px;}
.x53{left:18.420000px;}
.x69{left:20.463504px;}
.x61{left:21.968628px;}
.x79{left:23.337941px;}
.x58{left:25.080000px;}
.x67{left:28.066056px;}
.x56{left:29.523552px;}
.x77{left:31.117327px;}
.x82{left:33.116040px;}
.x6b{left:34.134720px;}
.x54{left:36.598740px;}
.x62{left:37.936320px;}
.x5e{left:40.232400px;}
.x60{left:41.737560px;}
.x63{left:44.033640px;}
.x59{left:45.705840px;}
.x64{left:47.619876px;}
.x5b{left:51.015012px;}
.x88{left:52.122000px;}
.x84{left:54.439464px;}
.x8b{left:58.262631px;}
.x83{left:68.473080px;}
.x80{left:70.086192px;}
.x3{left:72.000000px;}
.x85{left:74.380728px;}
.x86{left:77.238276px;}
.x7d{left:80.782764px;}
.x87{left:87.360600px;}
.x7e{left:90.623292px;}
.x89{left:96.123600px;}
.x5a{left:101.685072px;}
.x50{left:105.000000px;}
.x74{left:106.965532px;}
.x2{left:108.000000px;}
.x73{left:110.855188px;}
.x3a{left:111.868632px;}
.x72{left:114.744843px;}
.x70{left:117.662085px;}
.x3e{left:121.680000px;}
.x71{left:126.413809px;}
.x91{left:128.834274px;}
.x3f{left:129.908196px;}
.x7f{left:130.967160px;}
.x48{left:135.203616px;}
.x4c{left:136.250964px;}
.x41{left:139.371084px;}
.x66{left:144.888060px;}
.x68{left:156.804564px;}
.x6a{left:159.829500px;}
.x4{left:162.000000px;}
.x51{left:168.193740px;}
.x22{left:175.049964px;}
.x45{left:182.913588px;}
.x23{left:185.229504px;}
.x24{left:200.249964px;}
.x25{left:214.962876px;}
.x7c{left:232.500000px;}
.x5{left:233.640000px;}
.x92{left:237.974140px;}
.x8e{left:240.435942px;}
.x8d{left:242.897743px;}
.x8f{left:248.641947px;}
.x6{left:257.748048px;}
.x7{left:262.080000px;}
.x55{left:273.000000px;}
.x8{left:276.626952px;}
.x31{left:282.134772px;}
.x6d{left:284.844744px;}
.x9{left:288.035172px;}
.x33{left:294.010956px;}
.x35{left:295.889652px;}
.x2f{left:303.594732px;}
.x6e{left:305.009964px;}
.x46{left:308.160000px;}
.x47{left:316.558584px;}
.x40{left:322.758540px;}
.x6f{left:330.952140px;}
.x16{left:334.889964px;}
.x57{left:336.000000px;}
.x1{left:344.684340px;}
.x17{left:346.350600px;}
.x18{left:366.570000px;}
.x3b{left:380.520000px;}
.x19{left:387.957960px;}
.x76{left:393.889650px;}
.x49{left:403.920000px;}
.x4d{left:405.000000px;}
.x42{left:408.240000px;}
.x4a{left:412.212960px;}
.x4e{left:413.260200px;}
.x43{left:416.380320px;}
.x3c{left:419.040000px;}
.x3d{left:427.110480px;}
.x90{left:428.854800px;}
.x1a{left:431.010000px;}
.xe{left:434.970000px;}
.x1b{left:442.318320px;}
.xf{left:446.361480px;}
.x4b{left:450.445320px;}
.x4f{left:451.492560px;}
.x44{left:454.612680px;}
.x2e{left:459.000000px;}
.x1c{left:462.330000px;}
.x10{left:466.290000px;}
.x75{left:481.406850px;}
.x1d{left:483.925680px;}
.x11{left:487.968840px;}
.xa{left:505.530000px;}
.xb{left:516.867120px;}
.x1e{left:530.370000px;}
.x12{left:533.610000px;}
.xc{left:536.850000px;}
.x1f{left:541.792800px;}
.x13{left:544.860360px;}
.xd{left:558.474480px;}
.x20{left:562.050000px;}
.x14{left:564.930000px;}
.x21{left:583.400520px;}
.x15{left:586.467720px;}
.x38{left:626.220000px;}
.x36{left:628.200000px;}
.x81{left:639.000000px;}
.x2c{left:663.120000px;}
.x39{left:669.600000px;}
.x37{left:675.000000px;}
.x78{left:692.420700px;}
.x8a{left:695.880000px;}
.x27{left:704.160000px;}
.x2b{left:725.760000px;}
.x2a{left:731.520000px;}
.x30{left:733.680000px;}
.x32{left:736.020000px;}
.x34{left:738.000000px;}
.x29{left:742.680000px;}
.x28{left:750.960000px;}
.x2d{left:757.440000px;}
.x6c{left:784.800000px;}
.x26{left:810.000000px;}
@media print{
.v8{vertical-align:-20.710928pt;}
.v2{vertical-align:-19.200000pt;}
.v4{vertical-align:-16.640000pt;}
.v5{vertical-align:-6.903643pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.903643pt;}
.v3{vertical-align:16.640000pt;}
.v1{vertical-align:19.200000pt;}
.v7{vertical-align:20.710928pt;}
.ls34{letter-spacing:-1.546416pt;}
.ls4a{letter-spacing:-1.307163pt;}
.ls36{letter-spacing:-1.159812pt;}
.ls35{letter-spacing:-1.147385pt;}
.ls48{letter-spacing:-0.969868pt;}
.ls32{letter-spacing:-0.773208pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.370944pt;}
.ls26{letter-spacing:-0.365568pt;}
.ls1b{letter-spacing:-0.338688pt;}
.ls17{letter-spacing:-0.301056pt;}
.ls27{letter-spacing:-0.295680pt;}
.ls11{letter-spacing:-0.284928pt;}
.ls3f{letter-spacing:-0.275968pt;}
.ls16{letter-spacing:-0.268800pt;}
.ls44{letter-spacing:-0.264704pt;}
.ls23{letter-spacing:-0.263424pt;}
.ls24{letter-spacing:-0.247296pt;}
.ls12{letter-spacing:-0.231168pt;}
.ls3b{letter-spacing:-0.230912pt;}
.ls28{letter-spacing:-0.225792pt;}
.lsa{letter-spacing:-0.222976pt;}
.ls29{letter-spacing:-0.220416pt;}
.ls15{letter-spacing:-0.215040pt;}
.ls9{letter-spacing:-0.205824pt;}
.ls2a{letter-spacing:-0.204288pt;}
.ls19{letter-spacing:-0.198912pt;}
.ls25{letter-spacing:-0.182784pt;}
.ls3d{letter-spacing:-0.168960pt;}
.ls41{letter-spacing:-0.157696pt;}
.ls13{letter-spacing:-0.155904pt;}
.ls3a{letter-spacing:-0.152064pt;}
.ls45{letter-spacing:-0.146432pt;}
.ls3e{letter-spacing:-0.140800pt;}
.ls18{letter-spacing:-0.139776pt;}
.ls3c{letter-spacing:-0.129536pt;}
.ls14{letter-spacing:-0.129024pt;}
.ls40{letter-spacing:-0.123904pt;}
.ls43{letter-spacing:-0.118272pt;}
.ls1f{letter-spacing:-0.107520pt;}
.ls42{letter-spacing:-0.107008pt;}
.ls22{letter-spacing:-0.096768pt;}
.lsc{letter-spacing:-0.012800pt;}
.ls33{letter-spacing:-0.012427pt;}
.ls46{letter-spacing:-0.010504pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000512pt;}
.ls4c{letter-spacing:0.002560pt;}
.ls47{letter-spacing:0.010504pt;}
.ls30{letter-spacing:0.012427pt;}
.lsd{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.106624pt;}
.lse{letter-spacing:0.106752pt;}
.ls7{letter-spacing:0.141056pt;}
.ls1c{letter-spacing:0.200960pt;}
.ls0{letter-spacing:0.244992pt;}
.ls1a{letter-spacing:0.268928pt;}
.ls39{letter-spacing:0.344297pt;}
.ls31{letter-spacing:0.386604pt;}
.ls1d{letter-spacing:0.389120pt;}
.ls1e{letter-spacing:0.508160pt;}
.lsf{letter-spacing:0.640000pt;}
.ls4b{letter-spacing:0.653581pt;}
.ls4{letter-spacing:0.675948pt;}
.ls5{letter-spacing:0.743543pt;}
.ls37{letter-spacing:0.955863pt;}
.ls49{letter-spacing:0.957030pt;}
.ls38{letter-spacing:0.969868pt;}
.ls2f{letter-spacing:1.130817pt;}
.ls2c{letter-spacing:1.147385pt;}
.ls2b{letter-spacing:1.159812pt;}
.ls10{letter-spacing:2.054353pt;}
.ls2e{letter-spacing:132.301408pt;}
.ls3{letter-spacing:176.000000pt;}
.ls2d{letter-spacing:177.175085pt;}
.ls21{letter-spacing:752.000000pt;}
.ws1{word-spacing:-21.217024pt;}
.ws0{word-spacing:-18.804992pt;}
.ws7{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws34{word-spacing:-14.080000pt;}
.ws4{word-spacing:-14.016000pt;}
.wse{word-spacing:-13.440000pt;}
.ws15{word-spacing:-13.310976pt;}
.ws10{word-spacing:-13.300224pt;}
.wsd{word-spacing:-13.284096pt;}
.ws13{word-spacing:-13.241088pt;}
.ws11{word-spacing:-13.224960pt;}
.wsc{word-spacing:-13.208832pt;}
.wsf{word-spacing:-13.171200pt;}
.wsb{word-spacing:-13.155072pt;}
.ws12{word-spacing:-13.138944pt;}
.ws18{word-spacing:-13.101312pt;}
.ws17{word-spacing:-13.069056pt;}
.ws37{word-spacing:-12.728320pt;}
.ws32{word-spacing:-12.675088pt;}
.ws24{word-spacing:-12.646093pt;}
.ws39{word-spacing:-12.604416pt;}
.ws36{word-spacing:-12.598784pt;}
.ws38{word-spacing:-12.587520pt;}
.ws3b{word-spacing:-12.581888pt;}
.ws3a{word-spacing:-12.559360pt;}
.ws33{word-spacing:-12.497408pt;}
.ws1c{word-spacing:-12.149760pt;}
.ws1d{word-spacing:-11.923968pt;}
.ws1b{word-spacing:-11.784192pt;}
.ws2e{word-spacing:-11.527703pt;}
.ws2d{word-spacing:-11.515276pt;}
.ws2f{word-spacing:-11.502849pt;}
.ws48{word-spacing:-10.689558pt;}
.ws31{word-spacing:-10.355464pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3f{word-spacing:-8.763827pt;}
.ws6{word-spacing:-0.067595pt;}
.ws8{word-spacing:-0.066269pt;}
.wsa{word-spacing:-0.064000pt;}
.ws35{word-spacing:-0.058317pt;}
.ws14{word-spacing:-0.053760pt;}
.ws19{word-spacing:-0.052706pt;}
.ws16{word-spacing:-0.032000pt;}
.ws30{word-spacing:-0.027615pt;}
.ws9{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.102144pt;}
.ws2c{word-spacing:7.676851pt;}
.ws4e{word-spacing:28.216046pt;}
.ws4a{word-spacing:30.156949pt;}
.ws40{word-spacing:36.969369pt;}
.ws4c{word-spacing:41.826880pt;}
.ws4b{word-spacing:41.828047pt;}
.ws54{word-spacing:48.640466pt;}
.ws56{word-spacing:50.580203pt;}
.ws4f{word-spacing:50.581370pt;}
.ws53{word-spacing:52.469753pt;}
.ws50{word-spacing:53.496810pt;}
.ws43{word-spacing:53.497977pt;}
.ws23{word-spacing:59.833871pt;}
.ws20{word-spacing:60.995064pt;}
.ws49{word-spacing:62.211619pt;}
.ws45{word-spacing:62.251300pt;}
.ws29{word-spacing:63.305023pt;}
.ws47{word-spacing:64.140851pt;}
.ws51{word-spacing:70.964942pt;}
.ws42{word-spacing:71.002289pt;}
.ws55{word-spacing:72.894174pt;}
.ws46{word-spacing:73.921231pt;}
.ws41{word-spacing:73.922398pt;}
.ws3c{word-spacing:81.652166pt;}
.ws2b{word-spacing:82.823001pt;}
.ws3d{word-spacing:83.642088pt;}
.ws2a{word-spacing:94.233342pt;}
.ws28{word-spacing:104.603994pt;}
.ws27{word-spacing:117.337072pt;}
.ws1f{word-spacing:138.818447pt;}
.ws26{word-spacing:146.071414pt;}
.ws25{word-spacing:158.761690pt;}
.ws21{word-spacing:159.893887pt;}
.ws1e{word-spacing:165.273205pt;}
.ws22{word-spacing:204.829697pt;}
.ws44{word-spacing:222.728892pt;}
.ws4d{word-spacing:246.072255pt;}
.ws52{word-spacing:266.494341pt;}
.ws3e{word-spacing:430.835067pt;}
._76{margin-left:-2704.000000pt;}
._93{margin-left:-2701.440000pt;}
._b2{margin-left:-2699.320064pt;}
._60{margin-left:-2697.920000pt;}
._77{margin-left:-2694.968889pt;}
._8b{margin-left:-2693.126144pt;}
._7d{margin-left:-2691.657216pt;}
._a4{margin-left:-2690.151936pt;}
._67{margin-left:-2689.216000pt;}
._6a{margin-left:-2687.616000pt;}
._82{margin-left:-2686.093056pt;}
._5e{margin-left:-2683.904000pt;}
._68{margin-left:-2680.448000pt;}
._79{margin-left:-2678.811904pt;}
._95{margin-left:-2676.770688pt;}
._6d{margin-left:-2673.344000pt;}
._48{margin-left:-2671.552512pt;}
._88{margin-left:-2667.701760pt;}
._db{margin-left:-2666.496000pt;}
._e5{margin-left:-2662.784000pt;}
._b1{margin-left:-2660.982144pt;}
._5b{margin-left:-2659.136000pt;}
._55{margin-left:-2657.344000pt;}
._a5{margin-left:-2652.580736pt;}
._1c{margin-left:-2650.624000pt;}
._63{margin-left:-2648.384000pt;}
._35{margin-left:-2646.016000pt;}
._2b{margin-left:-2643.456000pt;}
._36{margin-left:-2641.984000pt;}
._b8{margin-left:-2640.805632pt;}
._a8{margin-left:-2639.907840pt;}
._a0{margin-left:-2636.580096pt;}
._43{margin-left:-2632.857600pt;}
._61{margin-left:-2631.578240pt;}
._51{margin-left:-2628.928000pt;}
._b9{margin-left:-2627.715072pt;}
._8f{margin-left:-2625.647104pt;}
._7c{margin-left:-2624.713216pt;}
._5a{margin-left:-2621.760000pt;}
._2d{margin-left:-2620.416000pt;}
._7b{margin-left:-2618.511360pt;}
._37{margin-left:-2614.976000pt;}
._44{margin-left:-2612.992000pt;}
._41{margin-left:-2609.433600pt;}
._3d{margin-left:-2605.657600pt;}
._bd{margin-left:-2603.609088pt;}
._3b{margin-left:-2602.240000pt;}
._49{margin-left:-2600.768000pt;}
._ec{margin-left:-2598.720000pt;}
._a1{margin-left:-2597.630976pt;}
._5f{margin-left:-2595.008000pt;}
._2e{margin-left:-2593.024000pt;}
._42{margin-left:-2589.721600pt;}
._69{margin-left:-2587.968000pt;}
._6f{margin-left:-2586.368000pt;}
._54{margin-left:-2584.384000pt;}
._7a{margin-left:-2582.438400pt;}
._ad{margin-left:-2581.244928pt;}
._6b{margin-left:-2579.264000pt;}
._26{margin-left:-2577.728000pt;}
._53{margin-left:-2575.360000pt;}
._25{margin-left:-2574.080000pt;}
._3e{margin-left:-2571.840000pt;}
._57{margin-left:-2570.432000pt;}
._86{margin-left:-2569.417728pt;}
._58{margin-left:-2566.848000pt;}
._65{margin-left:-2565.184000pt;}
._ab{margin-left:-2564.176128pt;}
._8c{margin-left:-2562.203136pt;}
._29{margin-left:-2559.872000pt;}
._4c{margin-left:-2558.016000pt;}
._d7{margin-left:-2556.160000pt;}
._40{margin-left:-2552.537600pt;}
._4d{margin-left:-2547.093376pt;}
._27{margin-left:-2542.208000pt;}
._df{margin-left:-2540.352000pt;}
._50{margin-left:-2531.072000pt;}
._2a{margin-left:-2527.564800pt;}
._64{margin-left:-2525.760000pt;}
._74{margin-left:-2522.112000pt;}
._b5{margin-left:-2519.931648pt;}
._52{margin-left:-2518.758400pt;}
._91{margin-left:-2514.560000pt;}
._11{margin-left:-2511.872000pt;}
._3f{margin-left:-2506.227200pt;}
._6e{margin-left:-2501.013376pt;}
._56{margin-left:-2499.264000pt;}
._e3{margin-left:-2497.280000pt;}
._81{margin-left:-2492.800000pt;}
._94{margin-left:-2485.084416pt;}
._73{margin-left:-2483.289600pt;}
._17{margin-left:-2480.000000pt;}
._5d{margin-left:-2470.784000pt;}
._83{margin-left:-2463.845504pt;}
._59{margin-left:-2458.304000pt;}
._e0{margin-left:-2448.000000pt;}
._9e{margin-left:-2445.440000pt;}
._de{margin-left:-2444.416000pt;}
._e9{margin-left:-2440.704000pt;}
._9b{margin-left:-2438.400000pt;}
._e1{margin-left:-2437.376000pt;}
._bc{margin-left:-2435.208960pt;}
._99{margin-left:-2430.080000pt;}
._97{margin-left:-2426.240000pt;}
._3{margin-left:-2422.899840pt;}
._30{margin-left:-2410.752000pt;}
._8a{margin-left:-2404.480000pt;}
._4f{margin-left:-2343.232000pt;}
._38{margin-left:-2326.912000pt;}
._3a{margin-left:-2323.328000pt;}
._a6{margin-left:-2317.632384pt;}
._39{margin-left:-2298.828800pt;}
._e7{margin-left:-2275.328000pt;}
._47{margin-left:-2267.942400pt;}
._32{margin-left:-2254.272000pt;}
._1e{margin-left:-2243.490560pt;}
._23{margin-left:-2232.584960pt;}
._a7{margin-left:-2224.000000pt;}
._22{margin-left:-2214.990080pt;}
._b7{margin-left:-2202.240000pt;}
._8e{margin-left:-2179.200000pt;}
._4a{margin-left:-2138.176000pt;}
._1d{margin-left:-2106.624000pt;}
._9a{margin-left:-2082.220416pt;}
._14{margin-left:-2080.064000pt;}
._c{margin-left:-2076.480000pt;}
._1b{margin-left:-2071.078400pt;}
._a3{margin-left:-2055.040000pt;}
._aa{margin-left:-2050.560000pt;}
._9d{margin-left:-2040.161920pt;}
._9f{margin-left:-2033.175936pt;}
._2c{margin-left:-2029.952000pt;}
._bf{margin-left:-2023.502720pt;}
._89{margin-left:-2016.893952pt;}
._87{margin-left:-2006.464512pt;}
._98{margin-left:-2005.521536pt;}
._19{margin-left:-1946.583040pt;}
._bb{margin-left:-1937.646720pt;}
._92{margin-left:-1933.990656pt;}
._75{margin-left:-1876.992000pt;}
._16{margin-left:-1872.064000pt;}
._15{margin-left:-1849.046656pt;}
._9{margin-left:-1836.416000pt;}
._be{margin-left:-1834.368000pt;}
._0{margin-left:-1801.101440pt;}
._e{margin-left:-1729.664000pt;}
._ae{margin-left:-1704.734464pt;}
._b3{margin-left:-1697.572352pt;}
._1a{margin-left:-1695.896320pt;}
._84{margin-left:-1673.351424pt;}
._ed{margin-left:-1665.728512pt;}
._20{margin-left:-1658.560000pt;}
._ea{margin-left:-1653.184000pt;}
._5{margin-left:-1636.266624pt;}
._f{margin-left:-1587.340800pt;}
._80{margin-left:-1561.046784pt;}
._13{margin-left:-1557.427712pt;}
._46{margin-left:-1532.416000pt;}
._2f{margin-left:-1489.856000pt;}
._96{margin-left:-1456.000000pt;}
._9c{margin-left:-1453.440000pt;}
._e4{margin-left:-1438.080000pt;}
._34{margin-left:-1425.728000pt;}
._7{margin-left:-1388.608000pt;}
._b4{margin-left:-1357.886080pt;}
._e2{margin-left:-1345.792000pt;}
._4e{margin-left:-1336.832000pt;}
._d8{margin-left:-1329.792000pt;}
._6{margin-left:-1310.954624pt;}
._a2{margin-left:-1287.591168pt;}
._6c{margin-left:-1171.520000pt;}
._dd{margin-left:-1148.416000pt;}
._e6{margin-left:-1144.768000pt;}
._10{margin-left:-1107.466496pt;}
._e8{margin-left:-1034.560000pt;}
._4{margin-left:-1009.700608pt;}
._21{margin-left:-1004.416000pt;}
._af{margin-left:-976.000000pt;}
._eb{margin-left:-954.624000pt;}
._5c{margin-left:-938.624000pt;}
._c9{margin-left:-936.768000pt;}
._72{margin-left:-931.480448pt;}
._a9{margin-left:-904.320000pt;}
._4b{margin-left:-867.520000pt;}
._d6{margin-left:-862.144000pt;}
._12{margin-left:-855.168000pt;}
._ba{margin-left:-836.797440pt;}
._1f{margin-left:-819.584000pt;}
._24{margin-left:-805.401600pt;}
._70{margin-left:-794.560000pt;}
._b{margin-left:-769.856000pt;}
._d9{margin-left:-748.416000pt;}
._7e{margin-left:-736.997376pt;}
._da{margin-left:-730.624000pt;}
._28{margin-left:-691.520000pt;}
._31{margin-left:-650.688000pt;}
._dc{margin-left:-615.104000pt;}
._66{margin-left:-545.728000pt;}
._d5{margin-left:-506.496000pt;}
._ac{margin-left:-431.500800pt;}
._45{margin-left:-419.520000pt;}
._b6{margin-left:-409.711872pt;}
._90{margin-left:-390.105600pt;}
._33{margin-left:-368.000000pt;}
._8d{margin-left:-365.160960pt;}
._b0{margin-left:-312.314880pt;}
._71{margin-left:-208.000000pt;}
._85{margin-left:-206.720000pt;}
._7f{margin-left:-205.440000pt;}
._a{margin-left:-176.000000pt;}
._1{margin-left:-146.560000pt;}
._8{margin-left:-142.464000pt;}
._62{margin-left:-4.672000pt;}
._3c{margin-left:-3.648000pt;}
._c0{margin-left:-1.879390pt;}
._2{margin-left:-0.933760pt;}
._78{width:0.913920pt;}
._18{width:1.855545pt;}
._c8{width:2.832215pt;}
._c7{width:6.596480pt;}
._c2{width:75.075444pt;}
._c3{width:82.057133pt;}
._c6{width:95.827793pt;}
._cb{width:128.582670pt;}
._c5{width:162.238364pt;}
._d{width:176.000000pt;}
._c4{width:207.042279pt;}
._d3{width:229.065312pt;}
._cc{width:249.446623pt;}
._d0{width:269.827934pt;}
._d2{width:292.995331pt;}
._d1{width:313.376642pt;}
._d4{width:322.176577pt;}
._cf{width:333.761958pt;}
._ce{width:404.161581pt;}
._cd{width:642.253308pt;}
._ca{width:747.294595pt;}
._c1{width:765.099333pt;}
.fsd{font-size:27.614571pt;}
.fs8{font-size:32.000000pt;}
.fsf{font-size:35.013293pt;}
.fs3{font-size:37.120000pt;}
.fsc{font-size:41.421856pt;}
.fs10{font-size:46.684390pt;}
.fs11{font-size:52.519939pt;}
.fsb{font-size:52.705882pt;}
.fs6{font-size:53.760000pt;}
.fsa{font-size:56.320000pt;}
.fs9{font-size:56.779667pt;}
.fse{font-size:58.317113pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:66.269455pt;}
.fs4{font-size:67.594842pt;}
.fs0{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y1d0{bottom:2.188325pt;}
.y1da{bottom:2.188332pt;}
.y1cc{bottom:2.188395pt;}
.y1ce{bottom:2.188402pt;}
.y180{bottom:2.588873pt;}
.y1ca{bottom:2.917774pt;}
.y17e{bottom:3.451821pt;}
.y161{bottom:3.451833pt;}
.y1d6{bottom:3.647233pt;}
.y1d8{bottom:3.647239pt;}
.y1d2{bottom:3.647303pt;}
.y1d4{bottom:3.647309pt;}
.y120{bottom:3.680000pt;}
.y129{bottom:3.733333pt;}
.y12b{bottom:3.786667pt;}
.y12d{bottom:3.840000pt;}
.y114{bottom:3.893333pt;}
.y116{bottom:3.946667pt;}
.y11e{bottom:4.000000pt;}
.y127{bottom:4.053333pt;}
.y112{bottom:4.213333pt;}
.y14b{bottom:4.266667pt;}
.y184{bottom:4.314788pt;}
.y11c{bottom:4.320000pt;}
.y125{bottom:4.373333pt;}
.y111{bottom:4.423541pt;}
.y141{bottom:4.426667pt;}
.y143{bottom:4.480000pt;}
.y130{bottom:4.533333pt;}
.y137{bottom:4.586667pt;}
.y11a{bottom:4.640000pt;}
.y123{bottom:4.693333pt;}
.y13f{bottom:4.746667pt;}
.y10e{bottom:4.800000pt;}
.y110{bottom:4.853333pt;}
.y135{bottom:4.906667pt;}
.y118{bottom:4.960000pt;}
.y182{bottom:5.177743pt;}
.y193{bottom:5.920000pt;}
.y19b{bottom:6.880000pt;}
.y197{bottom:7.040000pt;}
.y1a2{bottom:7.253333pt;}
.y1a0{bottom:7.413333pt;}
.y199{bottom:8.373333pt;}
.y1c9{bottom:14.588872pt;}
.y189{bottom:17.259043pt;}
.y18e{bottom:17.259070pt;}
.y17d{bottom:17.259107pt;}
.y181{bottom:18.985029pt;}
.y183{bottom:19.847984pt;}
.y195{bottom:21.920000pt;}
.y194{bottom:22.136480pt;}
.y192{bottom:22.880000pt;}
.y18c{bottom:24.162702pt;}
.y186{bottom:24.162771pt;}
.y1c8{bottom:26.259970pt;}
.y188{bottom:31.066329pt;}
.y17c{bottom:31.066392pt;}
.y1c7{bottom:37.931067pt;}
.y18b{bottom:37.969987pt;}
.y17b{bottom:44.873677pt;}
.y1c6{bottom:49.602165pt;}
.y17a{bottom:58.680963pt;}
.y1c5{bottom:61.273262pt;}
.y179{bottom:72.488248pt;}
.y1c4{bottom:72.944360pt;}
.y190{bottom:79.391870pt;}
.y1c3{bottom:84.615458pt;}
.y178{bottom:86.295533pt;}
.ydd{bottom:96.640000pt;}
.y9b{bottom:99.520000pt;}
.y177{bottom:100.102819pt;}
.y15e{bottom:102.080000pt;}
.y15f{bottom:102.315200pt;}
.y20{bottom:102.400000pt;}
.y21{bottom:102.635200pt;}
.y42{bottom:105.600000pt;}
.y97{bottom:107.200000pt;}
.yc0{bottom:109.440000pt;}
.ya4{bottom:110.720000pt;}
.y142{bottom:112.000000pt;}
.y176{bottom:113.910104pt;}
.y1e3{bottom:114.240000pt;}
.y60{bottom:115.200000pt;}
.yca{bottom:118.080000pt;}
.y8f{bottom:119.360000pt;}
.y9a{bottom:122.560000pt;}
.ybf{bottom:127.360000pt;}
.y175{bottom:127.717389pt;}
.y140{bottom:129.333333pt;}
.y96{bottom:130.240000pt;}
.y105{bottom:130.560000pt;}
.y15d{bottom:131.200000pt;}
.y1f{bottom:131.520000pt;}
.y41{bottom:133.120000pt;}
.ya3{bottom:133.760000pt;}
.y74{bottom:137.280000pt;}
.y1a9{bottom:138.880000pt;}
.y1c2{bottom:140.053171pt;}
.y1e5{bottom:141.120000pt;}
.yc9{bottom:141.440000pt;}
.y174{bottom:141.524675pt;}
.y1e2{bottom:141.760000pt;}
.y8e{bottom:142.400000pt;}
.y5f{bottom:142.720000pt;}
.y13e{bottom:145.333333pt;}
.y99{bottom:145.600000pt;}
.y104{bottom:145.920000pt;}
.ybe{bottom:151.680000pt;}
.y1c1{bottom:151.724269pt;}
.y95{bottom:153.600000pt;}
.y162{bottom:155.115067pt;}
.y15c{bottom:155.200000pt;}
.y173{bottom:155.331960pt;}
.y185{bottom:155.978000pt;}
.ya2{bottom:157.440000pt;}
.y1e{bottom:159.360000pt;}
.y40{bottom:160.960000pt;}
.yc8{bottom:161.280000pt;}
.y1a8{bottom:162.240000pt;}
.y1aa{bottom:162.330800pt;}
.y13d{bottom:162.666667pt;}
.y1c0{bottom:163.395366pt;}
.yb4{bottom:163.840000pt;}
.y73{bottom:165.120000pt;}
.y8d{bottom:165.760000pt;}
.y98{bottom:166.080000pt;}
.y1e4{bottom:168.640000pt;}
.y172{bottom:169.139245pt;}
.y1e1{bottom:169.600000pt;}
.y5e{bottom:170.560000pt;}
.yd6{bottom:172.160000pt;}
.y94{bottom:174.080000pt;}
.ybd{bottom:174.720000pt;}
.y1bf{bottom:175.066464pt;}
.y103{bottom:177.920000pt;}
.y13c{bottom:178.666667pt;}
.ye4{bottom:181.440000pt;}
.ya1{bottom:181.760000pt;}
.y171{bottom:182.946531pt;}
.y8c{bottom:186.240000pt;}
.y1be{bottom:186.737562pt;}
.y1d{bottom:186.880000pt;}
.y3f{bottom:188.480000pt;}
.y102{bottom:191.360000pt;}
.y72{bottom:192.640000pt;}
.yd5{bottom:192.960000pt;}
.y13b{bottom:194.666667pt;}
.y170{bottom:196.753816pt;}
.yad{bottom:196.800000pt;}
.y1e0{bottom:197.440000pt;}
.y5d{bottom:198.400000pt;}
.y1bd{bottom:198.408659pt;}
.ye3{bottom:199.680000pt;}
.y8b{bottom:203.520000pt;}
.ya0{bottom:204.800000pt;}
.y1bc{bottom:210.079757pt;}
.yb3{bottom:210.560000pt;}
.y16f{bottom:210.561101pt;}
.y13a{bottom:210.666667pt;}
.y18d{bottom:211.207200pt;}
.y1b{bottom:215.360000pt;}
.y1c{bottom:215.595200pt;}
.y3e{bottom:216.320000pt;}
.yac{bottom:219.840000pt;}
.y71{bottom:220.480000pt;}
.y1bb{bottom:221.750854pt;}
.ybc{bottom:222.720000pt;}
.y16e{bottom:224.368387pt;}
.y1df{bottom:224.960000pt;}
.y5c{bottom:225.280000pt;}
.ye2{bottom:225.600000pt;}
.y8a{bottom:226.560000pt;}
.y139{bottom:226.666667pt;}
.y9f{bottom:227.840000pt;}
.yd4{bottom:228.480000pt;}
.yb2{bottom:234.880000pt;}
.y16d{bottom:238.175672pt;}
.yab{bottom:243.520000pt;}
.y138{bottom:244.000000pt;}
.y3d{bottom:244.160000pt;}
.y19{bottom:245.120000pt;}
.y1a{bottom:245.355200pt;}
.ybb{bottom:245.760000pt;}
.yd3{bottom:246.080000pt;}
.y70{bottom:248.000000pt;}
.y89{bottom:249.600000pt;}
.ye1{bottom:249.920000pt;}
.y9e{bottom:251.200000pt;}
.yc3{bottom:251.520000pt;}
.y16c{bottom:251.982957pt;}
.y18a{bottom:252.629067pt;}
.y1de{bottom:252.800000pt;}
.y5b{bottom:253.440000pt;}
.y1d3{bottom:256.428933pt;}
.yb1{bottom:257.920000pt;}
.y136{bottom:261.333333pt;}
.yd2{bottom:263.680000pt;}
.y16b{bottom:265.790243pt;}
.yaa{bottom:267.840000pt;}
.yba{bottom:268.800000pt;}
.yc2{bottom:271.360000pt;}
.y3c{bottom:271.680000pt;}
.y88{bottom:272.960000pt;}
.y1cd{bottom:273.935600pt;}
.y9d{bottom:274.240000pt;}
.y18{bottom:274.560000pt;}
.y6f{bottom:275.520000pt;}
.y1ba{bottom:277.188568pt;}
.y134{bottom:277.333333pt;}
.y16a{bottom:279.597528pt;}
.yf9{bottom:279.680000pt;}
.y1dd{bottom:280.320000pt;}
.yb0{bottom:280.960000pt;}
.y5a{bottom:281.280000pt;}
.yd1{bottom:281.600000pt;}
.y1b9{bottom:288.859666pt;}
.ya9{bottom:291.520000pt;}
.yb9{bottom:291.840000pt;}
.y169{bottom:293.404813pt;}
.y133{bottom:294.666667pt;}
.ye0{bottom:294.720000pt;}
.y9c{bottom:295.680000pt;}
.y87{bottom:296.000000pt;}
.y3b{bottom:299.520000pt;}
.y1b8{bottom:300.530763pt;}
.y17{bottom:302.080000pt;}
.y6e{bottom:303.040000pt;}
.yaf{bottom:304.000000pt;}
.yf8{bottom:307.200000pt;}
.y168{bottom:307.212099pt;}
.y1dc{bottom:308.160000pt;}
.y59{bottom:309.120000pt;}
.y132{bottom:310.666667pt;}
.y1b7{bottom:312.201861pt;}
.yb8{bottom:315.200000pt;}
.ya8{bottom:315.840000pt;}
.y86{bottom:317.440000pt;}
.y167{bottom:321.019384pt;}
.y18f{bottom:321.665467pt;}
.y85{bottom:323.520000pt;}
.yae{bottom:323.840000pt;}
.y1b6{bottom:323.872958pt;}
.y131{bottom:326.666667pt;}
.y3a{bottom:327.040000pt;}
.y16{bottom:330.560000pt;}
.y6d{bottom:332.160000pt;}
.yf7{bottom:332.480000pt;}
.y7c{bottom:333.120000pt;}
.y166{bottom:334.826669pt;}
.y1b5{bottom:335.544056pt;}
.y1db{bottom:336.000000pt;}
.y58{bottom:336.640000pt;}
.yb7{bottom:338.240000pt;}
.ya7{bottom:338.880000pt;}
.ydc{bottom:342.080000pt;}
.y12f{bottom:342.666667pt;}
.y84{bottom:346.560000pt;}
.y1b4{bottom:347.215154pt;}
.y165{bottom:348.633955pt;}
.y39{bottom:354.880000pt;}
.yf6{bottom:355.840000pt;}
.y12e{bottom:358.666667pt;}
.y1b3{bottom:358.886251pt;}
.y15{bottom:359.680000pt;}
.yb6{bottom:361.280000pt;}
.y7b{bottom:361.600000pt;}
.y6c{bottom:361.920000pt;}
.y164{bottom:362.441240pt;}
.y57{bottom:363.520000pt;}
.ydb{bottom:365.440000pt;}
.y83{bottom:369.920000pt;}
.y12c{bottom:376.000000pt;}
.y163{bottom:376.248525pt;}
.yf5{bottom:378.880000pt;}
.yb5{bottom:381.120000pt;}
.y38{bottom:382.720000pt;}
.ya6{bottom:385.280000pt;}
.y14{bottom:387.520000pt;}
.yda{bottom:388.480000pt;}
.y7a{bottom:389.120000pt;}
.yd0{bottom:389.760000pt;}
.y6b{bottom:391.360000pt;}
.y56{bottom:392.000000pt;}
.y82{bottom:392.960000pt;}
.y12a{bottom:393.333333pt;}
.y1d7{bottom:393.564400pt;}
.yf4{bottom:398.720000pt;}
.y101{bottom:401.280000pt;}
.yec{bottom:401.600000pt;}
.ya5{bottom:405.120000pt;}
.ycf{bottom:407.360000pt;}
.y37{bottom:410.240000pt;}
.y128{bottom:410.666667pt;}
.y1d9{bottom:411.071067pt;}
.yd9{bottom:411.520000pt;}
.y1b2{bottom:414.323965pt;}
.y13{bottom:415.360000pt;}
.y81{bottom:416.000000pt;}
.y79{bottom:416.960000pt;}
.y6a{bottom:418.880000pt;}
.y55{bottom:419.840000pt;}
.yce{bottom:425.280000pt;}
.y1b1{bottom:425.995062pt;}
.y126{bottom:426.666667pt;}
.yee{bottom:431.040000pt;}
.yeb{bottom:432.320000pt;}
.y100{bottom:433.600000pt;}
.yd8{bottom:434.560000pt;}
.y1b0{bottom:437.666160pt;}
.y36{bottom:438.080000pt;}
.ye8{bottom:438.400000pt;}
.y80{bottom:439.040000pt;}
.y124{bottom:442.666667pt;}
.y12{bottom:442.880000pt;}
.ycd{bottom:444.160000pt;}
.y78{bottom:444.800000pt;}
.y69{bottom:446.720000pt;}
.y54{bottom:447.360000pt;}
.yea{bottom:447.680000pt;}
.y1af{bottom:449.337258pt;}
.ye7{bottom:453.760000pt;}
.yff{bottom:455.040000pt;}
.yd7{bottom:456.000000pt;}
.y122{bottom:458.666667pt;}
.y1ae{bottom:461.008355pt;}
.y7f{bottom:462.080000pt;}
.ye9{bottom:463.040000pt;}
.y35{bottom:465.920000pt;}
.ye6{bottom:469.120000pt;}
.y11{bottom:470.720000pt;}
.y1ad{bottom:472.679453pt;}
.y76{bottom:472.960000pt;}
.y77{bottom:473.195200pt;}
.y68{bottom:474.560000pt;}
.y53{bottom:475.200000pt;}
.y121{bottom:476.000000pt;}
.yed{bottom:478.400000pt;}
.ycc{bottom:481.280000pt;}
.y1ac{bottom:484.350550pt;}
.y7e{bottom:485.120000pt;}
.y187{bottom:487.352933pt;}
.ye5{bottom:490.560000pt;}
.y11f{bottom:492.000000pt;}
.y34{bottom:493.440000pt;}
.y1ab{bottom:496.021648pt;}
.y10{bottom:498.880000pt;}
.y75{bottom:501.440000pt;}
.y67{bottom:502.080000pt;}
.y52{bottom:502.720000pt;}
.yc7{bottom:505.920000pt;}
.y7d{bottom:506.560000pt;}
.y11d{bottom:508.000000pt;}
.ycb{bottom:513.280000pt;}
.y33{bottom:521.920000pt;}
.y11b{bottom:524.000000pt;}
.yf3{bottom:527.680000pt;}
.yf{bottom:528.320000pt;}
.yc6{bottom:528.960000pt;}
.y66{bottom:529.920000pt;}
.y51{bottom:530.560000pt;}
.y1d1{bottom:530.699733pt;}
.y119{bottom:540.000000pt;}
.y160{bottom:542.582000pt;}
.yf2{bottom:543.040000pt;}
.y1cb{bottom:548.206400pt;}
.y32{bottom:551.040000pt;}
.yc5{bottom:552.000000pt;}
.y117{bottom:556.000000pt;}
.ye{bottom:556.160000pt;}
.y65{bottom:557.440000pt;}
.y17f{bottom:558.115200pt;}
.y50{bottom:558.400000pt;}
.yc4{bottom:571.840000pt;}
.y115{bottom:573.333333pt;}
.yf1{bottom:573.760000pt;}
.y15b{bottom:577.920000pt;}
.y31{bottom:579.520000pt;}
.yd{bottom:583.680000pt;}
.y4f{bottom:585.280000pt;}
.yf0{bottom:589.120000pt;}
.y113{bottom:590.666667pt;}
.y15a{bottom:596.160000pt;}
.y10f{bottom:606.666667pt;}
.y30{bottom:608.640000pt;}
.yef{bottom:610.560000pt;}
.yc{bottom:611.520000pt;}
.y64{bottom:613.120000pt;}
.y4e{bottom:613.760000pt;}
.y159{bottom:614.720000pt;}
.y10d{bottom:624.000000pt;}
.yc1{bottom:632.960000pt;}
.y158{bottom:633.280000pt;}
.y2f{bottom:636.480000pt;}
.yb{bottom:639.040000pt;}
.y63{bottom:640.640000pt;}
.y4d{bottom:641.280000pt;}
.y10c{bottom:646.720000pt;}
.y157{bottom:651.840000pt;}
.y2e{bottom:664.000000pt;}
.y10b{bottom:665.280000pt;}
.y156{bottom:666.666667pt;}
.ya{bottom:666.880000pt;}
.y1d5{bottom:667.835200pt;}
.y62{bottom:668.480000pt;}
.y4c{bottom:668.800000pt;}
.yfe{bottom:673.280000pt;}
.y155{bottom:682.666667pt;}
.y10a{bottom:682.880000pt;}
.y1cf{bottom:685.341867pt;}
.yfd{bottom:689.280000pt;}
.y2d{bottom:691.840000pt;}
.y9{bottom:695.360000pt;}
.y4b{bottom:696.320000pt;}
.y154{bottom:698.666667pt;}
.y1a7{bottom:704.000000pt;}
.yfc{bottom:704.640000pt;}
.y109{bottom:707.200000pt;}
.y153{bottom:714.666667pt;}
.y2c{bottom:719.680000pt;}
.yfb{bottom:721.280000pt;}
.y1a6{bottom:722.560000pt;}
.y108{bottom:723.200000pt;}
.y8{bottom:723.840000pt;}
.y4a{bottom:724.160000pt;}
.y152{bottom:732.000000pt;}
.yfa{bottom:734.720000pt;}
.y107{bottom:739.840000pt;}
.y1a5{bottom:741.120000pt;}
.y2b{bottom:747.200000pt;}
.y151{bottom:748.000000pt;}
.y49{bottom:751.680000pt;}
.y106{bottom:753.280000pt;}
.y7{bottom:756.480000pt;}
.y150{bottom:764.000000pt;}
.y1a4{bottom:768.640000pt;}
.y2a{bottom:775.040000pt;}
.y48{bottom:779.200000pt;}
.y14f{bottom:780.000000pt;}
.y1a3{bottom:782.666667pt;}
.y6{bottom:784.000000pt;}
.y14e{bottom:796.000000pt;}
.y1a1{bottom:802.666667pt;}
.y28{bottom:803.200000pt;}
.y29{bottom:803.435294pt;}
.y47{bottom:806.720000pt;}
.y5{bottom:807.040000pt;}
.y14d{bottom:812.000000pt;}
.y19f{bottom:822.666667pt;}
.y14c{bottom:829.333333pt;}
.y26{bottom:833.280000pt;}
.y27{bottom:833.515293pt;}
.y46{bottom:834.560000pt;}
.y61{bottom:834.880000pt;}
.y4{bottom:839.040000pt;}
.y19e{bottom:844.000000pt;}
.y14a{bottom:845.333333pt;}
.ydf{bottom:853.440000pt;}
.y149{bottom:861.333333pt;}
.y45{bottom:862.080000pt;}
.y25{bottom:862.400000pt;}
.y19d{bottom:862.666667pt;}
.y19c{bottom:864.000000pt;}
.y3{bottom:876.160000pt;}
.y93{bottom:877.120000pt;}
.y148{bottom:877.333333pt;}
.yde{bottom:878.400000pt;}
.y19a{bottom:884.000000pt;}
.y44{bottom:889.600000pt;}
.y24{bottom:890.240000pt;}
.y147{bottom:894.666667pt;}
.y92{bottom:901.760000pt;}
.y198{bottom:902.666667pt;}
.y196{bottom:904.000000pt;}
.y146{bottom:910.666667pt;}
.y2{bottom:910.720000pt;}
.y43{bottom:917.120000pt;}
.y23{bottom:917.760000pt;}
.y191{bottom:924.000000pt;}
.y91{bottom:924.800000pt;}
.y145{bottom:926.666667pt;}
.y144{bottom:942.666667pt;}
.y1{bottom:943.040000pt;}
.y22{bottom:945.600000pt;}
.y90{bottom:947.840000pt;}
.h2a{height:13.859427pt;}
.h17{height:14.670240pt;}
.h2c{height:16.777200pt;}
.h14{height:17.333333pt;}
.h10{height:18.666667pt;}
.h27{height:20.000000pt;}
.h24{height:21.333333pt;}
.h26{height:22.666667pt;}
.h6{height:25.121250pt;}
.h29{height:25.490635pt;}
.h18{height:30.156244pt;}
.h1b{height:30.203440pt;}
.h2b{height:34.101488pt;}
.h2e{height:35.004745pt;}
.h12{height:35.694852pt;}
.h2d{height:35.825369pt;}
.h15{height:35.831250pt;}
.h20{height:36.000000pt;}
.h13{height:36.408750pt;}
.h16{height:36.566250pt;}
.he{height:36.881250pt;}
.h11{height:37.380000pt;}
.h23{height:37.675000pt;}
.hf{height:38.453808pt;}
.h22{height:39.495037pt;}
.h25{height:40.425000pt;}
.h1e{height:40.558893pt;}
.h1a{height:40.558901pt;}
.h21{height:40.892500pt;}
.h5{height:42.656250pt;}
.ha{height:43.906250pt;}
.h7{height:43.968750pt;}
.hd{height:44.125000pt;}
.h4{height:44.321250pt;}
.hc{height:44.468750pt;}
.hb{height:44.880730pt;}
.h8{height:44.968750pt;}
.h9{height:45.778343pt;}
.h2{height:50.170000pt;}
.h1{height:50.677500pt;}
.h1c{height:54.366187pt;}
.h3{height:59.253125pt;}
.h1d{height:68.173467pt;}
.h1f{height:164.824400pt;}
.h19{height:417.670400pt;}
.h28{height:536.870533pt;}
.h0{height:1056.000000pt;}
.w3{width:53.333333pt;}
.w8{width:56.000000pt;}
.w4{width:57.333333pt;}
.w12{width:68.000000pt;}
.wb{width:76.928733pt;}
.wc{width:79.521840pt;}
.we{width:81.250573pt;}
.w6{width:85.333333pt;}
.w7{width:86.666667pt;}
.wd{width:89.894253pt;}
.w2{width:98.666667pt;}
.w11{width:105.333333pt;}
.wf{width:114.666667pt;}
.wa{width:124.468960pt;}
.w13{width:149.333333pt;}
.w5{width:170.666667pt;}
.w10{width:192.000000pt;}
.w17{width:236.332933pt;}
.w1{width:376.000000pt;}
.w16{width:520.807733pt;}
.w15{width:521.537200pt;}
.w9{width:600.735600pt;}
.w14{width:624.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7b{left:1.728744pt;}
.x8c{left:2.917687pt;}
.x7a{left:6.050583pt;}
.x52{left:7.786795pt;}
.x65{left:9.485333pt;}
.x5d{left:10.823253pt;}
.x5c{left:12.587573pt;}
.x5f{left:14.202165pt;}
.x53{left:16.373333pt;}
.x69{left:18.189781pt;}
.x61{left:19.527669pt;}
.x79{left:20.744837pt;}
.x58{left:22.293333pt;}
.x67{left:24.947605pt;}
.x56{left:26.243157pt;}
.x77{left:27.659846pt;}
.x82{left:29.436480pt;}
.x6b{left:30.341973pt;}
.x54{left:32.532213pt;}
.x62{left:33.721173pt;}
.x5e{left:35.762133pt;}
.x60{left:37.100053pt;}
.x63{left:39.141013pt;}
.x59{left:40.627413pt;}
.x64{left:42.328779pt;}
.x5b{left:45.346677pt;}
.x88{left:46.330667pt;}
.x84{left:48.390635pt;}
.x8b{left:51.789005pt;}
.x83{left:60.864960pt;}
.x80{left:62.298837pt;}
.x3{left:64.000000pt;}
.x85{left:66.116203pt;}
.x86{left:68.656245pt;}
.x7d{left:71.806901pt;}
.x87{left:77.653867pt;}
.x7e{left:80.554037pt;}
.x89{left:85.443200pt;}
.x5a{left:90.386731pt;}
.x50{left:93.333333pt;}
.x74{left:95.080473pt;}
.x2{left:96.000000pt;}
.x73{left:98.537945pt;}
.x3a{left:99.438784pt;}
.x72{left:101.995416pt;}
.x70{left:104.588520pt;}
.x3e{left:108.160000pt;}
.x71{left:112.367831pt;}
.x91{left:114.519355pt;}
.x3f{left:115.473952pt;}
.x7f{left:116.415253pt;}
.x48{left:120.180992pt;}
.x4c{left:121.111968pt;}
.x41{left:123.885408pt;}
.x66{left:128.789387pt;}
.x68{left:139.381835pt;}
.x6a{left:142.070667pt;}
.x4{left:144.000000pt;}
.x51{left:149.505547pt;}
.x22{left:155.599968pt;}
.x45{left:162.589856pt;}
.x23{left:164.648448pt;}
.x24{left:177.999968pt;}
.x25{left:191.078112pt;}
.x7c{left:206.666667pt;}
.x5{left:207.680000pt;}
.x92{left:211.532569pt;}
.x8e{left:213.720837pt;}
.x8d{left:215.909105pt;}
.x8f{left:221.015064pt;}
.x6{left:229.109376pt;}
.x7{left:232.960000pt;}
.x55{left:242.666667pt;}
.x8{left:245.890624pt;}
.x31{left:250.786464pt;}
.x6d{left:253.195328pt;}
.x9{left:256.031264pt;}
.x33{left:261.343072pt;}
.x35{left:263.013024pt;}
.x2f{left:269.861984pt;}
.x6e{left:271.119968pt;}
.x46{left:273.920000pt;}
.x47{left:281.385408pt;}
.x40{left:286.896480pt;}
.x6f{left:294.179680pt;}
.x16{left:297.679968pt;}
.x57{left:298.666667pt;}
.x1{left:306.386080pt;}
.x17{left:307.867200pt;}
.x18{left:325.840000pt;}
.x3b{left:338.240000pt;}
.x19{left:344.851520pt;}
.x76{left:350.124133pt;}
.x49{left:359.040000pt;}
.x4d{left:360.000000pt;}
.x42{left:362.880000pt;}
.x4a{left:366.411520pt;}
.x4e{left:367.342400pt;}
.x43{left:370.115840pt;}
.x3c{left:372.480000pt;}
.x3d{left:379.653760pt;}
.x90{left:381.204267pt;}
.x1a{left:383.120000pt;}
.xe{left:386.640000pt;}
.x1b{left:393.171840pt;}
.xf{left:396.765760pt;}
.x4b{left:400.395840pt;}
.x4f{left:401.326720pt;}
.x44{left:404.100160pt;}
.x2e{left:408.000000pt;}
.x1c{left:410.960000pt;}
.x10{left:414.480000pt;}
.x75{left:427.917200pt;}
.x1d{left:430.156160pt;}
.x11{left:433.750080pt;}
.xa{left:449.360000pt;}
.xb{left:459.437440pt;}
.x1e{left:471.440000pt;}
.x12{left:474.320000pt;}
.xc{left:477.200000pt;}
.x1f{left:481.593600pt;}
.x13{left:484.320320pt;}
.xd{left:496.421760pt;}
.x20{left:499.600000pt;}
.x14{left:502.160000pt;}
.x21{left:518.578240pt;}
.x15{left:521.304640pt;}
.x38{left:556.640000pt;}
.x36{left:558.400000pt;}
.x81{left:568.000000pt;}
.x2c{left:589.440000pt;}
.x39{left:595.200000pt;}
.x37{left:600.000000pt;}
.x78{left:615.485067pt;}
.x8a{left:618.560000pt;}
.x27{left:625.920000pt;}
.x2b{left:645.120000pt;}
.x2a{left:650.240000pt;}
.x30{left:652.160000pt;}
.x32{left:654.240000pt;}
.x34{left:656.000000pt;}
.x29{left:660.160000pt;}
.x28{left:667.520000pt;}
.x2d{left:673.280000pt;}
.x6c{left:697.600000pt;}
.x26{left:720.000000pt;}
}




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