
    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_729ac70713d2880b44fb36ec.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;font-style:normal;font-weight: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_094d1d2e8179c75056773cda.woff')format("woff");}.ff2{font-family:ff2;line-height:0.953125;font-style:normal;font-weight: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_1116e548f3a79f1160e29da4.woff')format("woff");}.ff3{font-family:ff3;line-height:1.022461;font-style:normal;font-weight: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_06eebfd428e6e92aec6ad1c6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.953125;font-style:normal;font-weight: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_85c28c8fa46861eda41b65a2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.175293;font-style:normal;font-weight: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_e24cc94facb4d4e17d64d9ae.woff')format("woff");}.ff6{font-family:ff6;line-height:1.176270;font-style:normal;font-weight: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_43de8a2702e1a5ff002627b5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.026855;font-style:normal;font-weight: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_f3319ff010e9db9bb2e3b452.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973633;font-style:normal;font-weight: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_b44bd83cd4de3e0a2c39db5a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976118;font-style:normal;font-weight: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_484186954f3d21f05a2ae5c8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;font-style:normal;font-weight: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_94920ac73c4d6f48b9863f87.woff')format("woff");}.ffb{font-family:ffb;line-height:1.026855;font-style:normal;font-weight: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_bcbfd1c744964971fe485536.woff')format("woff");}.ffc{font-family:ffc;line-height:0.953125;font-style:normal;font-weight: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_d49afe58ef0115582c744992.woff')format("woff");}.ffd{font-family:ffd;line-height:0.970370;font-style:normal;font-weight: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_66e5c89471b9ce1c7b1ada8c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.895508;font-style:normal;font-weight: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_8b46197aa898a4edbf60edab.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight: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_1c7ffc569a8de22633621409.woff')format("woff");}.ff10{font-family:ff10;line-height:0.861816;font-style:normal;font-weight: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_8133749a92221365669439ef.woff')format("woff");}.ff11{font-family:ff11;line-height:0.861816;font-style:normal;font-weight: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_bfd37dcd257d90604993d2e7.woff')format("woff");}.ff12{font-family:ff12;line-height:0.904297;font-style:normal;font-weight: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_ad4fb082141b311b626dae2d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.861816;font-style:normal;font-weight: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_f03c04256fc9a4ad99d33546.woff')format("woff");}.ff14{font-family:ff14;line-height:0.893555;font-style:normal;font-weight: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_f82a8141730940d77f2a336d.woff')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight: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_e5b9007e65ffd80ea9d18d36.woff')format("woff");}.ff16{font-family:ff16;line-height:0.895508;font-style:normal;font-weight: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_2c57d13b74c1f5a863c65f23.woff')format("woff");}.ff17{font-family:ff17;line-height:0.861816;font-style:normal;font-weight: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_f0195b3a2de147ba9550944b.woff')format("woff");}.ff18{font-family:ff18;line-height:0.861816;font-style:normal;font-weight: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_f132b01349324829cbabffc3.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_dc094a9235187ddd575e14de.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.861816;font-style:normal;font-weight: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_cbcb52c9858720afe617149a.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.904297;font-style:normal;font-weight: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_7bce47fbbfd51dc1ab3d1cde.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.895508;font-style:normal;font-weight: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_2bd6fc1aef61c06be95b938d.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.861816;font-style:normal;font-weight: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_49a7452337e9c5042447757c.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.904297;font-style:normal;font-weight: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_44975ec0290aa781e1388ed0.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.861816;font-style:normal;font-weight: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_f132b01349324829cbabffc3.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_49651b59af3ac74abd42a05d.woff')format("woff");}.ff21{font-family:ff21;line-height:0.861816;font-style:normal;font-weight: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_ed5a104033658531e117da80.woff')format("woff");}.ff22{font-family:ff22;line-height:0.895508;font-style:normal;font-weight: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_8f40aa75921e0fcac9b88f5d.woff')format("woff");}.ff23{font-family:ff23;line-height:0.904297;font-style:normal;font-weight: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_d64275ac9a29ed0dff9e56a9.woff')format("woff");}.ff24{font-family:ff24;line-height:0.861816;font-style:normal;font-weight: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_f59f627c34af47cc081adbbe.woff')format("woff");}.ff25{font-family:ff25;line-height:0.861816;font-style:normal;font-weight: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_c5456badff84d3c8dbd89459.woff')format("woff");}.ff26{font-family:ff26;line-height:0.861816;font-style:normal;font-weight: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_f132b01349324829cbabffc3.woff')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_deab9e9d2683143f0a47ed6d.woff')format("woff");}.ff28{font-family:ff28;line-height:0.861816;font-style:normal;font-weight: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_6fce2fe3ec4b06a36d8c369c.woff')format("woff");}.ff29{font-family:ff29;line-height:0.893555;font-style:normal;font-weight: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_1b0d5bb8549bad5882d4bce5.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.895508;font-style:normal;font-weight: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_7cd19f51b7e9e2d92a78797f.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.861816;font-style:normal;font-weight: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_4dd75dfae5f5c4a4889ac5d9.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.904297;font-style:normal;font-weight: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_933fbf6954f739a5350c0ce3.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.861816;font-style:normal;font-weight: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_44975ec0290aa781e1388ed0.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.861816;font-style:normal;font-weight: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_f132b01349324829cbabffc3.woff')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_927a684c474118f6b1b5e46c.woff')format("woff");}.ff30{font-family:ff30;line-height:0.964844;font-style:normal;font-weight: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_4f530d7678077ae2adcacf12.woff')format("woff");}.ff31{font-family:ff31;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.md{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249858,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,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);}
.mb{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-36.162000px;}
.v5{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.983600px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:27.006000px;}
.lsb{letter-spacing:-3.240000px;}
.lsb1{letter-spacing:-3.000000px;}
.lsa1{letter-spacing:-2.184000px;}
.ls2c{letter-spacing:-1.534946px;}
.ls2b{letter-spacing:-1.390855px;}
.lsd{letter-spacing:-1.200000px;}
.ls7b{letter-spacing:-1.098958px;}
.lse{letter-spacing:-1.080000px;}
.lsa9{letter-spacing:-1.020000px;}
.lsae{letter-spacing:-0.960000px;}
.lsaf{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.840000px;}
.ls4c{letter-spacing:-0.767133px;}
.ls8{letter-spacing:-0.691200px;}
.ls94{letter-spacing:-0.660000px;}
.lsb0{letter-spacing:-0.600000px;}
.lsb2{letter-spacing:-0.594000px;}
.lsa0{letter-spacing:-0.588000px;}
.ls7d{letter-spacing:-0.552738px;}
.ls4f{letter-spacing:-0.536333px;}
.ls4e{letter-spacing:-0.468140px;}
.lsa2{letter-spacing:-0.465234px;}
.ls44{letter-spacing:-0.409138px;}
.ls6{letter-spacing:-0.408000px;}
.ls25{letter-spacing:-0.396115px;}
.ls7f{letter-spacing:-0.386917px;}
.lsb3{letter-spacing:-0.378000px;}
.lsad{letter-spacing:-0.360000px;}
.ls70{letter-spacing:-0.338141px;}
.ls30{letter-spacing:-0.324543px;}
.lsa{letter-spacing:-0.240000px;}
.ls89{letter-spacing:-0.213971px;}
.ls8e{letter-spacing:-0.185138px;}
.ls9{letter-spacing:-0.180000px;}
.ls78{letter-spacing:-0.169070px;}
.lsac{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.102000px;}
.ls5{letter-spacing:0.000000px;}
.lsab{letter-spacing:0.036000px;}
.ls68{letter-spacing:0.084535px;}
.ls81{letter-spacing:0.092867px;}
.ls15{letter-spacing:0.099029px;}
.ls54{letter-spacing:0.099650px;}
.ls56{letter-spacing:0.099971px;}
.ls4b{letter-spacing:0.102611px;}
.ls6d{letter-spacing:0.126803px;}
.ls2f{letter-spacing:0.129817px;}
.ls84{letter-spacing:0.138854px;}
.ls86{letter-spacing:0.139300px;}
.ls19{letter-spacing:0.148543px;}
.ls1b{letter-spacing:0.149020px;}
.ls55{letter-spacing:0.149476px;}
.ls53{letter-spacing:0.149956px;}
.ls46{letter-spacing:0.153427px;}
.ls3b{letter-spacing:0.153916px;}
.ls27{letter-spacing:0.198694px;}
.ls57{letter-spacing:0.199301px;}
.ls13{letter-spacing:0.255878px;}
.ls77{letter-spacing:0.295873px;}
.ls7c{letter-spacing:0.339226px;}
.ls29{letter-spacing:0.346601px;}
.ls48{letter-spacing:0.357995px;}
.ls2e{letter-spacing:0.397387px;}
.ls61{letter-spacing:0.399883px;}
.ls21{letter-spacing:0.496734px;}
.ls93{letter-spacing:0.510767px;}
.ls24{letter-spacing:0.544658px;}
.ls6b{letter-spacing:0.678451px;}
.ls67{letter-spacing:0.718549px;}
.lsb4{letter-spacing:0.720000px;}
.ls76{letter-spacing:0.805661px;}
.ls41{letter-spacing:0.820886px;}
.ls7e{letter-spacing:0.884381px;}
.ls79{letter-spacing:0.890467px;}
.lsa6{letter-spacing:0.900000px;}
.ls71{letter-spacing:0.929887px;}
.ls63{letter-spacing:0.932870px;}
.ls65{letter-spacing:0.972155px;}
.ls43{letter-spacing:0.974803px;}
.ls8a{letter-spacing:0.975101px;}
.ls28{letter-spacing:0.990288px;}
.ls75{letter-spacing:1.017677px;}
.ls8c{letter-spacing:1.018261px;}
.ls42{letter-spacing:1.022844px;}
.ls1f{letter-spacing:1.043141px;}
.ls5c{letter-spacing:1.049693px;}
.ls82{letter-spacing:1.067968px;}
.ls3f{letter-spacing:1.077413px;}
.ls22{letter-spacing:1.089317px;}
.ls5b{letter-spacing:1.096154px;}
.ls7a{letter-spacing:1.098958px;}
.ls92{letter-spacing:1.114402px;}
.ls3d{letter-spacing:1.125128px;}
.ls16{letter-spacing:1.138831px;}
.ls36{letter-spacing:1.176271px;}
.ls26{letter-spacing:1.188346px;}
.ls2a{letter-spacing:1.192162px;}
.ls5f{letter-spacing:1.199650px;}
.ls91{letter-spacing:1.203400px;}
.ls34{letter-spacing:1.227413px;}
.ls74{letter-spacing:1.229693px;}
.ls49{letter-spacing:1.231330px;}
.ls83{letter-spacing:1.249684px;}
.ls6f{letter-spacing:1.268028px;}
.ls20{letter-spacing:1.287374px;}
.ls5d{letter-spacing:1.295455px;}
.ls6e{letter-spacing:1.310296px;}
.ls47{letter-spacing:1.329697px;}
.ls8b{letter-spacing:1.346569px;}
.ls4{letter-spacing:1.350000px;}
.ls72{letter-spacing:1.356902px;}
.ls8d{letter-spacing:1.388538px;}
.ls87{letter-spacing:1.434823px;}
.ls73{letter-spacing:1.437098px;}
.ls1d{letter-spacing:1.440529px;}
.ls58{letter-spacing:1.449577px;}
.ls1c{letter-spacing:1.485432px;}
.ls90{letter-spacing:1.485869px;}
.ls40{letter-spacing:1.487857px;}
.ls5a{letter-spacing:1.494756px;}
.ls3{letter-spacing:1.512000px;}
.ls88{letter-spacing:1.532302px;}
.ls3e{letter-spacing:1.534266px;}
.ls2d{letter-spacing:1.534946px;}
.lsa4{letter-spacing:1.539000px;}
.ls59{letter-spacing:1.544581px;}
.ls8f{letter-spacing:1.573676px;}
.ls3c{letter-spacing:1.585408px;}
.ls23{letter-spacing:1.589549px;}
.ls60{letter-spacing:1.599533px;}
.ls4a{letter-spacing:1.641773px;}
.ls1e{letter-spacing:1.683490px;}
.ls4d{letter-spacing:1.693078px;}
.ls5e{letter-spacing:1.694057px;}
.ls45{letter-spacing:1.738835px;}
.ls11{letter-spacing:1.782518px;}
.ls51{letter-spacing:1.793707px;}
.lsa3{letter-spacing:2.520000px;}
.lsaa{letter-spacing:2.640000px;}
.lsa8{letter-spacing:7.410000px;}
.lsa7{letter-spacing:7.440000px;}
.ls2{letter-spacing:7.938000px;}
.ls35{letter-spacing:11.353568px;}
.ls69{letter-spacing:11.496787px;}
.ls39{letter-spacing:11.864990px;}
.ls6c{letter-spacing:12.511210px;}
.ls38{letter-spacing:12.569823px;}
.ls1a{letter-spacing:12.626172px;}
.ls32{letter-spacing:13.041261px;}
.ls50{letter-spacing:13.602280px;}
.ls12{letter-spacing:13.660185px;}
.lsf{letter-spacing:13.665974px;}
.ls64{letter-spacing:13.696234px;}
.ls66{letter-spacing:14.455519px;}
.ls62{letter-spacing:14.624590px;}
.ls10{letter-spacing:14.804806px;}
.ls52{letter-spacing:14.845664px;}
.ls3a{letter-spacing:15.342660px;}
.ls14{letter-spacing:15.498007px;}
.ls31{letter-spacing:15.598371px;}
.ls17{letter-spacing:15.646550px;}
.ls80{letter-spacing:16.014472px;}
.ls33{letter-spacing:16.469033px;}
.ls37{letter-spacing:16.928068px;}
.ls85{letter-spacing:18.374986px;}
.lsa5{letter-spacing:18.966000px;}
.ls6a{letter-spacing:19.231758px;}
.ls18{letter-spacing:20.994106px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.ls98{letter-spacing:59.873214px;}
.ls9f{letter-spacing:60.293058px;}
.ls9c{letter-spacing:77.283858px;}
.ls9b{letter-spacing:110.606784px;}
.ls9d{letter-spacing:123.978384px;}
.ls96{letter-spacing:126.028584px;}
.ls9e{letter-spacing:135.770184px;}
.ls95{letter-spacing:158.130000px;}
.ls99{letter-spacing:161.271384px;}
.ls9a{letter-spacing:165.711384px;}
.ls97{letter-spacing:170.109984px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf7{word-spacing:-55.273800px;}
.ws83{word-spacing:-51.142200px;}
.ws6{word-spacing:-17.928000px;}
.ws110{word-spacing:-17.830950px;}
.ws15b{word-spacing:-16.434000px;}
.ws13a{word-spacing:-16.302000px;}
.ws9e{word-spacing:-15.151402px;}
.ws9d{word-spacing:-15.114247px;}
.ws4{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.880000px;}
.ws15c{word-spacing:-14.820000px;}
.ws2c{word-spacing:-14.700000px;}
.ws5b{word-spacing:-14.669344px;}
.ws179{word-spacing:-14.580000px;}
.ws1d{word-spacing:-14.520000px;}
.ws1e{word-spacing:-14.460000px;}
.ws17a{word-spacing:-14.340000px;}
.ws13b{word-spacing:-14.220000px;}
.ws168{word-spacing:-13.920000px;}
.ws2b{word-spacing:-13.860000px;}
.ws35{word-spacing:-13.800000px;}
.ws36{word-spacing:-13.620000px;}
.ws2d{word-spacing:-13.500000px;}
.ws166{word-spacing:-13.446000px;}
.wsb3{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.ws8e{word-spacing:-13.082877px;}
.ws1bf{word-spacing:-13.014000px;}
.ws1be{word-spacing:-12.852000px;}
.ws1ac{word-spacing:-12.798000px;}
.wsf8{word-spacing:-12.491879px;}
.ws76{word-spacing:-12.415907px;}
.ws7{word-spacing:-12.366000px;}
.ws9{word-spacing:-12.150000px;}
.ws8{word-spacing:-12.042000px;}
.ws72{word-spacing:-11.595020px;}
.ws73{word-spacing:-11.558137px;}
.wsb7{word-spacing:-11.296700px;}
.wsb4{word-spacing:-11.260495px;}
.ws3c{word-spacing:-11.226188px;}
.ws3a{word-spacing:-11.190254px;}
.wsa{word-spacing:-10.992000px;}
.ws2{word-spacing:-10.896000px;}
.ws1c{word-spacing:-10.800000px;}
.ws99{word-spacing:-10.791004px;}
.wse0{word-spacing:-10.600800px;}
.ws11e{word-spacing:-10.586815px;}
.ws113{word-spacing:-10.493948px;}
.ws111{word-spacing:-10.460320px;}
.ws150{word-spacing:-10.416000px;}
.wse2{word-spacing:-10.388784px;}
.ws14d{word-spacing:-10.290000px;}
.wsdc{word-spacing:-10.271027px;}
.wsda{word-spacing:-10.261574px;}
.ws3{word-spacing:-9.892800px;}
.ws1{word-spacing:-9.618000px;}
.wsd9{word-spacing:-9.583123px;}
.wsd7{word-spacing:-9.552478px;}
.ws0{word-spacing:-9.542544px;}
.wsec{word-spacing:-9.214337px;}
.ws14c{word-spacing:-8.232000px;}
.ws143{word-spacing:-6.097014px;}
.ws2e{word-spacing:-3.600000px;}
.ws195{word-spacing:-3.360000px;}
.ws4a{word-spacing:-3.168922px;}
.ws127{word-spacing:-3.018171px;}
.ws159{word-spacing:-2.814000px;}
.ws19b{word-spacing:-2.700000px;}
.ws5a{word-spacing:-2.654734px;}
.wsf6{word-spacing:-2.597869px;}
.ws177{word-spacing:-2.538000px;}
.ws2a{word-spacing:-2.520000px;}
.wsf4{word-spacing:-2.332176px;}
.ws71{word-spacing:-2.160000px;}
.ws185{word-spacing:-1.980000px;}
.wscc{word-spacing:-1.944000px;}
.ws9c{word-spacing:-1.872562px;}
.ws59{word-spacing:-1.812989px;}
.ws31{word-spacing:-1.800000px;}
.wsa6{word-spacing:-1.738835px;}
.wsd2{word-spacing:-1.694057px;}
.wsb0{word-spacing:-1.693078px;}
.ws5e{word-spacing:-1.683490px;}
.wsf5{word-spacing:-1.662282px;}
.wsad{word-spacing:-1.641773px;}
.ws172{word-spacing:-1.620000px;}
.wsd5{word-spacing:-1.599533px;}
.wsb9{word-spacing:-1.594406px;}
.ws63{word-spacing:-1.589549px;}
.wsaf{word-spacing:-1.585408px;}
.ws132{word-spacing:-1.573676px;}
.wsd3{word-spacing:-1.544581px;}
.ws43{word-spacing:-1.534946px;}
.wsa0{word-spacing:-1.534266px;}
.wscb{word-spacing:-1.512000px;}
.ws28{word-spacing:-1.500000px;}
.wscd{word-spacing:-1.494756px;}
.wsfa{word-spacing:-1.492393px;}
.wsa2{word-spacing:-1.487857px;}
.ws133{word-spacing:-1.485869px;}
.ws5c{word-spacing:-1.485432px;}
.wsce{word-spacing:-1.449577px;}
.ws5d{word-spacing:-1.440529px;}
.wsff{word-spacing:-1.437098px;}
.ws137{word-spacing:-1.434823px;}
.ws1ae{word-spacing:-1.404000px;}
.wsbd{word-spacing:-1.399591px;}
.ws130{word-spacing:-1.388538px;}
.ws17b{word-spacing:-1.380000px;}
.wsfe{word-spacing:-1.356902px;}
.ws1c5{word-spacing:-1.350000px;}
.ws12e{word-spacing:-1.346569px;}
.wsc2{word-spacing:-1.345280px;}
.wsa9{word-spacing:-1.329697px;}
.ws17d{word-spacing:-1.320000px;}
.ws109{word-spacing:-1.310296px;}
.wsd1{word-spacing:-1.295455px;}
.ws60{word-spacing:-1.287374px;}
.wsfb{word-spacing:-1.268028px;}
.wsac{word-spacing:-1.231330px;}
.ws100{word-spacing:-1.229693px;}
.wsab{word-spacing:-1.227413px;}
.ws135{word-spacing:-1.203400px;}
.ws181{word-spacing:-1.200000px;}
.wsd4{word-spacing:-1.199650px;}
.ws6a{word-spacing:-1.192162px;}
.ws66{word-spacing:-1.188346px;}
.wsa8{word-spacing:-1.176271px;}
.ws9f{word-spacing:-1.125128px;}
.ws136{word-spacing:-1.114402px;}
.ws104{word-spacing:-1.098958px;}
.wscf{word-spacing:-1.096154px;}
.ws62{word-spacing:-1.089317px;}
.wsa1{word-spacing:-1.077413px;}
.wsd0{word-spacing:-1.049693px;}
.ws5f{word-spacing:-1.043141px;}
.ws1a{word-spacing:-1.026000px;}
.wsa3{word-spacing:-1.022844px;}
.ws192{word-spacing:-1.020000px;}
.ws12f{word-spacing:-1.018261px;}
.ws106{word-spacing:-1.017677px;}
.ws68{word-spacing:-0.990288px;}
.ws12d{word-spacing:-0.975101px;}
.wsa4{word-spacing:-0.974803px;}
.wsfd{word-spacing:-0.929887px;}
.ws103{word-spacing:-0.890467px;}
.ws10d{word-spacing:-0.884381px;}
.ws107{word-spacing:-0.760817px;}
.ws1b{word-spacing:-0.756000px;}
.ws10a{word-spacing:-0.720854px;}
.ws1c6{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.714000px;}
.ws16f{word-spacing:-0.660000px;}
.wse{word-spacing:-0.612000px;}
.wsca{word-spacing:-0.594000px;}
.ws64{word-spacing:-0.544658px;}
.ws138{word-spacing:-0.510767px;}
.ws61{word-spacing:-0.496734px;}
.ws15{word-spacing:-0.486000px;}
.ws16c{word-spacing:-0.480000px;}
.ws158{word-spacing:-0.465234px;}
.wsc4{word-spacing:-0.399883px;}
.ws6e{word-spacing:-0.397387px;}
.wsaa{word-spacing:-0.357995px;}
.ws69{word-spacing:-0.346601px;}
.ws10b{word-spacing:-0.339226px;}
.wsc{word-spacing:-0.306000px;}
.ws141{word-spacing:-0.300000px;}
.ws101{word-spacing:-0.295873px;}
.wsf{word-spacing:-0.216000px;}
.wsd6{word-spacing:-0.199301px;}
.ws67{word-spacing:-0.198694px;}
.ws199{word-spacing:-0.180000px;}
.wsa7{word-spacing:-0.153427px;}
.ws6d{word-spacing:-0.148543px;}
.ws139{word-spacing:-0.139300px;}
.ws134{word-spacing:-0.138854px;}
.ws6f{word-spacing:-0.129817px;}
.ws105{word-spacing:-0.126803px;}
.ws1bd{word-spacing:-0.108000px;}
.wsae{word-spacing:-0.102611px;}
.wsc7{word-spacing:-0.099650px;}
.ws182{word-spacing:-0.060000px;}
.ws129{word-spacing:-0.054000px;}
.wsb{word-spacing:0.000000px;}
.ws140{word-spacing:0.060000px;}
.ws41{word-spacing:0.099029px;}
.ws170{word-spacing:0.120000px;}
.ws8d{word-spacing:0.153427px;}
.ws102{word-spacing:0.169070px;}
.ws19{word-spacing:0.180000px;}
.ws131{word-spacing:0.185138px;}
.ws12c{word-spacing:0.213971px;}
.ws23{word-spacing:0.240000px;}
.ws1c1{word-spacing:0.270000px;}
.ws18c{word-spacing:0.300000px;}
.ws70{word-spacing:0.324543px;}
.wsfc{word-spacing:0.338141px;}
.ws21{word-spacing:0.360000px;}
.ws1ad{word-spacing:0.378000px;}
.ws10e{word-spacing:0.386917px;}
.ws65{word-spacing:0.396115px;}
.wsa5{word-spacing:0.409138px;}
.ws171{word-spacing:0.420000px;}
.ws16{word-spacing:0.432000px;}
.ws53{word-spacing:0.445630px;}
.ws15a{word-spacing:0.465234px;}
.wsb1{word-spacing:0.468140px;}
.ws13e{word-spacing:0.480000px;}
.ws4d{word-spacing:0.495144px;}
.ws7e{word-spacing:0.511422px;}
.wsb2{word-spacing:0.536333px;}
.ws10c{word-spacing:0.552738px;}
.ws1b1{word-spacing:0.594000px;}
.ws1a2{word-spacing:0.600000px;}
.ws9b{word-spacing:0.613706px;}
.ws32{word-spacing:0.660000px;}
.ws10{word-spacing:0.691200px;}
.ws79{word-spacing:0.715991px;}
.ws1a0{word-spacing:0.720000px;}
.ws12b{word-spacing:0.756000px;}
.ws12a{word-spacing:0.810000px;}
.ws98{word-spacing:0.818275px;}
.ws16b{word-spacing:0.960000px;}
.ws174{word-spacing:1.020000px;}
.ws87{word-spacing:1.022844px;}
.ws96{word-spacing:1.077413px;}
.ws38{word-spacing:1.080000px;}
.ws108{word-spacing:1.098958px;}
.ws1a6{word-spacing:1.140000px;}
.ws34{word-spacing:1.200000px;}
.ws74{word-spacing:1.231330px;}
.ws2f{word-spacing:1.260000px;}
.ws6b{word-spacing:1.390855px;}
.wse5{word-spacing:1.399306px;}
.ws167{word-spacing:1.404000px;}
.ws196{word-spacing:1.500000px;}
.ws1b0{word-spacing:1.512000px;}
.ws6c{word-spacing:1.534946px;}
.ws14{word-spacing:1.566000px;}
.ws1b4{word-spacing:1.728000px;}
.wsde{word-spacing:1.732972px;}
.ws119{word-spacing:1.758815px;}
.ws169{word-spacing:1.800000px;}
.wse9{word-spacing:1.902042px;}
.ws116{word-spacing:1.943953px;}
.ws1ba{word-spacing:1.944000px;}
.ws194{word-spacing:2.040000px;}
.ws18{word-spacing:2.052000px;}
.ws17{word-spacing:2.106000px;}
.ws25{word-spacing:2.160000px;}
.ws24{word-spacing:2.220000px;}
.ws118{word-spacing:2.267945px;}
.ws193{word-spacing:2.340000px;}
.ws78{word-spacing:2.411354px;}
.ws1c2{word-spacing:2.484000px;}
.ws15e{word-spacing:2.520000px;}
.ws160{word-spacing:2.580000px;}
.ws1a8{word-spacing:2.592000px;}
.ws27{word-spacing:2.640000px;}
.ws165{word-spacing:2.700000px;}
.ws91{word-spacing:2.710537px;}
.ws1b5{word-spacing:2.754000px;}
.ws188{word-spacing:2.760000px;}
.ws1b6{word-spacing:2.808000px;}
.ws39{word-spacing:2.820000px;}
.ws1b2{word-spacing:2.862000px;}
.ws3e{word-spacing:2.930731px;}
.ws16d{word-spacing:2.940000px;}
.ws45{word-spacing:2.970864px;}
.ws198{word-spacing:3.000000px;}
.wse8{word-spacing:3.010627px;}
.ws190{word-spacing:3.060000px;}
.ws13d{word-spacing:3.120000px;}
.ws1c0{word-spacing:3.132000px;}
.ws19e{word-spacing:3.180000px;}
.ws122{word-spacing:3.239922px;}
.ws26{word-spacing:3.240000px;}
.ws81{word-spacing:3.273101px;}
.ws20{word-spacing:3.300000px;}
.ws11d{word-spacing:3.389638px;}
.wsee{word-spacing:3.434659px;}
.ws19a{word-spacing:3.480000px;}
.ws7f{word-spacing:3.540073px;}
.ws125{word-spacing:3.563914px;}
.ws3d{word-spacing:3.576485px;}
.ws82{word-spacing:3.591378px;}
.ws1b3{word-spacing:3.618000px;}
.ws7d{word-spacing:3.631096px;}
.ws1a1{word-spacing:3.660000px;}
.ws4b{word-spacing:3.675832px;}
.wsc0{word-spacing:3.698920px;}
.wse3{word-spacing:3.719549px;}
.ws17f{word-spacing:3.720000px;}
.ws57{word-spacing:3.725505px;}
.ws95{word-spacing:3.745294px;}
.wsef{word-spacing:3.761816px;}
.ws1af{word-spacing:3.780000px;}
.ws47{word-spacing:3.824852px;}
.ws48{word-spacing:3.874525px;}
.wsb8{word-spacing:3.886366px;}
.ws178{word-spacing:3.888000px;}
.wsf1{word-spacing:3.888619px;}
.ws54{word-spacing:3.911638px;}
.ws114{word-spacing:3.934191px;}
.ws77{word-spacing:3.937949px;}
.ws8c{word-spacing:4.001821px;}
.wsbc{word-spacing:4.035841px;}
.ws15f{word-spacing:4.080000px;}
.ws55{word-spacing:4.122892px;}
.ws94{word-spacing:4.142518px;}
.ws7c{word-spacing:4.155737px;}
.ws128{word-spacing:4.179006px;}
.ws19f{word-spacing:4.200000px;}
.ws42{word-spacing:4.208724px;}
.wsb6{word-spacing:4.248759px;}
.ws117{word-spacing:4.258183px;}
.ws56{word-spacing:4.258238px;}
.ws86{word-spacing:4.258348px;}
.ws183{word-spacing:4.260000px;}
.wsdd{word-spacing:4.269028px;}
.ws11f{word-spacing:4.318306px;}
.ws3f{word-spacing:4.321586px;}
.ws92{word-spacing:4.347087px;}
.wsea{word-spacing:4.367530px;}
.wsb5{word-spacing:4.384618px;}
.ws7a{word-spacing:4.398229px;}
.ws49{word-spacing:4.406782px;}
.ws8b{word-spacing:4.449371px;}
.ws46{word-spacing:4.456296px;}
.ws126{word-spacing:4.489606px;}
.ws85{word-spacing:4.551656px;}
.ws40{word-spacing:4.604839px;}
.ws88{word-spacing:4.653940px;}
.ws18a{word-spacing:4.680000px;}
.ws7b{word-spacing:4.705082px;}
.wseb{word-spacing:4.733971px;}
.ws13f{word-spacing:4.740000px;}
.ws120{word-spacing:4.782640px;}
.ws17c{word-spacing:4.860000px;}
.wsf3{word-spacing:4.860774px;}
.ws4c{word-spacing:4.901926px;}
.wsd8{word-spacing:4.903042px;}
.ws90{word-spacing:4.925318px;}
.ws1c3{word-spacing:4.968000px;}
.ws1c4{word-spacing:5.022000px;}
.ws176{word-spacing:5.040000px;}
.wsf2{word-spacing:5.072112px;}
.ws15d{word-spacing:5.100000px;}
.ws33{word-spacing:5.160000px;}
.ws184{word-spacing:5.280000px;}
.ws8f{word-spacing:5.421073px;}
.ws191{word-spacing:5.520000px;}
.ws11b{word-spacing:5.572008px;}
.ws22{word-spacing:5.580000px;}
.ws30{word-spacing:5.640000px;}
.ws11a{word-spacing:5.693006px;}
.ws18d{word-spacing:5.700000px;}
.ws1a9{word-spacing:5.832000px;}
.ws1aa{word-spacing:5.886000px;}
.ws18b{word-spacing:5.940000px;}
.ws75{word-spacing:6.054037px;}
.ws189{word-spacing:6.060000px;}
.wsed{word-spacing:6.297872px;}
.ws175{word-spacing:6.300000px;}
.ws3b{word-spacing:6.358195px;}
.ws1a7{word-spacing:6.372000px;}
.ws11c{word-spacing:6.379949px;}
.wsc8{word-spacing:6.398131px;}
.ws37{word-spacing:6.420000px;}
.ws124{word-spacing:6.479844px;}
.ws13c{word-spacing:6.540000px;}
.ws51{word-spacing:6.585415px;}
.wsc3{word-spacing:6.648058px;}
.ws93{word-spacing:6.669702px;}
.ws186{word-spacing:6.720000px;}
.wsbf{word-spacing:6.726402px;}
.wsbb{word-spacing:6.776227px;}
.ws187{word-spacing:6.780000px;}
.ws19c{word-spacing:6.840000px;}
.ws1b7{word-spacing:6.858000px;}
.wse7{word-spacing:6.889619px;}
.ws19d{word-spacing:6.900000px;}
.wse1{word-spacing:6.911722px;}
.wsc9{word-spacing:6.947971px;}
.ws18f{word-spacing:6.960000px;}
.ws1b8{word-spacing:6.966000px;}
.ws16e{word-spacing:7.020000px;}
.ws4f{word-spacing:7.103296px;}
.wse6{word-spacing:7.123738px;}
.ws58{word-spacing:7.252316px;}
.ws180{word-spacing:7.320000px;}
.ws173{word-spacing:7.380000px;}
.wsdf{word-spacing:7.396830px;}
.ws84{word-spacing:7.466761px;}
.ws10f{word-spacing:7.506000px;}
.wsc5{word-spacing:7.547795px;}
.wsc1{word-spacing:7.597781px;}
.ws50{word-spacing:7.724246px;}
.wsf0{word-spacing:7.777238px;}
.wsbe{word-spacing:7.797722px;}
.ws9a{word-spacing:7.824757px;}
.wsba{word-spacing:7.872382px;}
.ws4e{word-spacing:7.872790px;}
.ws11{word-spacing:7.884000px;}
.ws161{word-spacing:7.920000px;}
.ws44{word-spacing:7.922304px;}
.ws123{word-spacing:7.940111px;}
.ws13{word-spacing:7.992000px;}
.ws89{word-spacing:8.003642px;}
.wsc6{word-spacing:8.021857px;}
.ws162{word-spacing:8.040000px;}
.ws12{word-spacing:8.046000px;}
.ws1bc{word-spacing:8.100000px;}
.ws97{word-spacing:8.285036px;}
.ws29{word-spacing:8.340000px;}
.ws80{word-spacing:8.387321px;}
.ws1a3{word-spacing:8.520000px;}
.ws1ab{word-spacing:8.532000px;}
.ws18e{word-spacing:8.580000px;}
.ws1a4{word-spacing:8.640000px;}
.ws1bb{word-spacing:8.802000px;}
.ws115{word-spacing:9.008080px;}
.ws164{word-spacing:9.060000px;}
.ws112{word-spacing:9.518847px;}
.ws121{word-spacing:9.673481px;}
.ws17e{word-spacing:9.780000px;}
.wsdb{word-spacing:10.059689px;}
.ws52{word-spacing:10.893168px;}
.ws197{word-spacing:11.100000px;}
.wsf9{word-spacing:11.303518px;}
.ws163{word-spacing:11.400000px;}
.wse4{word-spacing:11.576074px;}
.ws1a5{word-spacing:11.640000px;}
.ws8a{word-spacing:13.143545px;}
.ws1b9{word-spacing:15.768000px;}
.ws16a{word-spacing:19.140000px;}
.ws152{word-spacing:49.224000px;}
.ws157{word-spacing:50.467200px;}
.ws155{word-spacing:50.967000px;}
.ws153{word-spacing:51.240000px;}
.ws14b{word-spacing:55.902000px;}
.ws14e{word-spacing:85.008000px;}
.ws14f{word-spacing:117.768000px;}
.ws151{word-spacing:128.083200px;}
.ws142{word-spacing:150.364200px;}
.ws149{word-spacing:153.258000px;}
.ws148{word-spacing:162.456000px;}
.ws14a{word-spacing:175.350000px;}
.ws147{word-spacing:183.241800px;}
.ws146{word-spacing:197.106000px;}
.ws154{word-spacing:201.852000px;}
.ws156{word-spacing:234.024000px;}
.ws144{word-spacing:482.840400px;}
.ws145{word-spacing:680.190000px;}
._d{margin-left:-10.636800px;}
._16{margin-left:-8.848200px;}
._5{margin-left:-7.833600px;}
._e{margin-left:-6.370800px;}
._2{margin-left:-4.447200px;}
._4{margin-left:-3.439200px;}
._1{margin-left:-1.795200px;}
._0{width:1.387200px;}
._6{width:2.430000px;}
._7{width:3.861000px;}
._a{width:5.097000px;}
._b{width:6.099000px;}
._8{width:7.371000px;}
._9{width:8.532000px;}
._c{width:9.652800px;}
._17{width:10.912800px;}
._1b{width:12.049508px;}
._18{width:13.246492px;}
._10{width:14.247864px;}
._f{width:15.599028px;}
._15{width:16.912038px;}
._12{width:18.444322px;}
._11{width:19.670297px;}
._19{width:20.713622px;}
._1a{width:21.739180px;}
._13{width:22.963610px;}
._14{width:24.241042px;}
._3a{width:25.381390px;}
._3{width:36.369600px;}
._39{width:43.052400px;}
._28{width:52.642800px;}
._29{width:54.138000px;}
._31{width:60.816000px;}
._38{width:61.978800px;}
._22{width:67.536000px;}
._2a{width:70.350000px;}
._34{width:77.994000px;}
._2f{width:79.632000px;}
._35{width:89.796000px;}
._25{width:95.424000px;}
._2b{width:101.968200px;}
._2d{width:121.758000px;}
._2c{width:138.343200px;}
._21{width:144.973200px;}
._30{width:170.772000px;}
._20{width:177.370200px;}
._2e{width:187.629000px;}
._26{width:204.708000px;}
._1d{width:209.832000px;}
._1e{width:321.594000px;}
._27{width:336.688164px;}
._24{width:346.920000px;}
._33{width:372.193200px;}
._37{width:374.808000px;}
._23{width:447.888486px;}
._36{width:622.308000px;}
._1c{width:657.510324px;}
._32{width:663.012600px;}
._1f{width:859.026000px;}
.fc4{color:transparent;}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs21{font-size:24.486000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs19{font-size:42.267600px;}
.fs1a{font-size:42.403200px;}
.fs5{font-size:43.200000px;}
.fs1f{font-size:46.284600px;}
.fs20{font-size:46.433400px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:49.514400px;}
.fsc{font-size:49.673400px;}
.fs16{font-size:49.825200px;}
.fs17{font-size:49.985400px;}
.fs12{font-size:51.142200px;}
.fs11{font-size:51.305400px;}
.fs6{font-size:54.000000px;}
.fs1b{font-size:55.273800px;}
.fs1c{font-size:55.409400px;}
.fs18{font-size:59.892000px;}
.fs7{font-size:60.000000px;}
.fse{font-size:64.749600px;}
.fsd{font-size:64.908600px;}
.fs1e{font-size:65.618400px;}
.fs2{font-size:66.000000px;}
.fs14{font-size:66.877200px;}
.fs13{font-size:67.041600px;}
.fs9{font-size:70.173600px;}
.fs15{font-size:70.657800px;}
.fs1d{font-size:71.323800px;}
.fs8{font-size:72.000000px;}
.fs10{font-size:72.471000px;}
.fsa{font-size:76.275600px;}
.fsf{font-size:78.772800px;}
.fs1{font-size:102.000000px;}
.y115{bottom:-67.781400px;}
.y275{bottom:-41.875893px;}
.y193{bottom:-33.180995px;}
.y1e7{bottom:-31.711284px;}
.y114{bottom:-30.906294px;}
.ya1{bottom:-28.365150px;}
.y274{bottom:-7.283850px;}
.y192{bottom:-0.731400px;}
.y1e6{bottom:-0.148200px;}
.y0{bottom:0.000000px;}
.y113{bottom:1.981350px;}
.y1e8{bottom:3.014550px;}
.ya0{bottom:3.480000px;}
.y2c4{bottom:3.705300px;}
.y117{bottom:4.371000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y2f6{bottom:110.551050px;}
.y2c8{bottom:110.551200px;}
.y2f7{bottom:110.551800px;}
.y362{bottom:112.790850px;}
.y9e{bottom:113.078700px;}
.y6d{bottom:113.078850px;}
.y2d2{bottom:114.786000px;}
.y2eb{bottom:114.787500px;}
.y2cd{bottom:114.795150px;}
.y2f4{bottom:114.797400px;}
.yc{bottom:117.205050px;}
.y2a{bottom:117.212550px;}
.y111{bottom:120.458850px;}
.y26c{bottom:120.478200px;}
.yb{bottom:131.601450px;}
.y361{bottom:133.796850px;}
.y332{bottom:133.892700px;}
.y30a{bottom:134.072850px;}
.y9d{bottom:134.078700px;}
.y6c{bottom:134.078850px;}
.y2c9{bottom:137.946450px;}
.y29{bottom:138.212550px;}
.y110{bottom:140.263350px;}
.y26b{bottom:140.282700px;}
.ya{bottom:145.997850px;}
.y360{bottom:154.802850px;}
.y331{bottom:154.898700px;}
.y9c{bottom:155.078700px;}
.y6b{bottom:155.078850px;}
.y28{bottom:159.212550px;}
.y10f{bottom:160.067850px;}
.y26a{bottom:160.087200px;}
.y9{bottom:160.397850px;}
.y35f{bottom:175.808850px;}
.y330{bottom:175.904700px;}
.y9b{bottom:176.078700px;}
.y6a{bottom:176.078850px;}
.y10e{bottom:179.872350px;}
.y269{bottom:179.891700px;}
.y27{bottom:180.212550px;}
.y309{bottom:181.529400px;}
.y35e{bottom:196.814850px;}
.y32f{bottom:196.910700px;}
.y9a{bottom:197.078700px;}
.y69{bottom:197.078850px;}
.y10d{bottom:199.676850px;}
.y268{bottom:199.696200px;}
.y2d3{bottom:201.106500px;}
.y2ec{bottom:201.108000px;}
.y26{bottom:201.212550px;}
.y37{bottom:203.451900px;}
.y300{bottom:206.270700px;}
.y2ca{bottom:206.280450px;}
.y303{bottom:207.427200px;}
.y1e4{bottom:211.440900px;}
.y2d4{bottom:213.391500px;}
.y2ed{bottom:213.393000px;}
.y35d{bottom:217.820850px;}
.y32e{bottom:217.916700px;}
.y99{bottom:218.078700px;}
.y68{bottom:218.078850px;}
.y10c{bottom:219.481350px;}
.y267{bottom:219.500700px;}
.y36{bottom:221.447400px;}
.y25{bottom:222.212550px;}
.y2ff{bottom:226.075200px;}
.y302{bottom:227.231700px;}
.y35c{bottom:238.826850px;}
.y32d{bottom:238.922700px;}
.y98{bottom:239.078700px;}
.y67{bottom:239.078850px;}
.y35{bottom:239.442900px;}
.y9f{bottom:239.811000px;}
.y1e5{bottom:239.830500px;}
.y24{bottom:243.212550px;}
.y308{bottom:244.529400px;}
.y2fe{bottom:245.879700px;}
.y301{bottom:247.036200px;}
.y258{bottom:247.655550px;}
.y208{bottom:252.023550px;}
.ya2{bottom:255.001050px;}
.y34{bottom:257.438400px;}
.y35b{bottom:259.832850px;}
.y32c{bottom:259.928700px;}
.y97{bottom:260.078700px;}
.y66{bottom:260.078850px;}
.y259{bottom:260.589436px;}
.y23{bottom:264.212550px;}
.y222{bottom:265.538699px;}
.y2fd{bottom:265.684200px;}
.y2cf{bottom:268.221150px;}
.y2d8{bottom:268.495500px;}
.y2d1{bottom:268.506000px;}
.y2e4{bottom:269.006250px;}
.y2f5{bottom:269.220900px;}
.y2ee{bottom:270.502500px;}
.y2ef{bottom:270.966150px;}
.y2d5{bottom:270.973500px;}
.y2f2{bottom:270.995400px;}
.y2e8{bottom:270.999450px;}
.y2e7{bottom:271.003950px;}
.y33{bottom:275.433900px;}
.y22d{bottom:277.596404px;}
.y1fd{bottom:278.780250px;}
.y35a{bottom:280.838850px;}
.y32b{bottom:280.934700px;}
.y96{bottom:281.078700px;}
.y65{bottom:281.078850px;}
.y18b{bottom:284.749050px;}
.y22{bottom:285.212550px;}
.y2cc{bottom:289.872150px;}
.yc4{bottom:291.144836px;}
.y22b{bottom:292.020222px;}
.y32{bottom:293.429400px;}
.y359{bottom:301.844850px;}
.y32a{bottom:301.940700px;}
.y95{bottom:302.078700px;}
.y64{bottom:302.078850px;}
.yd1{bottom:303.049855px;}
.y112{bottom:305.079000px;}
.y21a{bottom:305.270243px;}
.y21{bottom:306.212550px;}
.y116{bottom:306.978000px;}
.y307{bottom:307.529400px;}
.y31{bottom:311.424900px;}
.yc7{bottom:314.946582px;}
.y200{bottom:318.508650px;}
.y17d{bottom:319.258050px;}
.y358{bottom:322.850850px;}
.y329{bottom:322.946700px;}
.y94{bottom:323.078700px;}
.y63{bottom:323.078850px;}
.yd0{bottom:326.891038px;}
.y20{bottom:327.212550px;}
.y25d{bottom:328.160100px;}
.y30{bottom:329.420400px;}
.y255{bottom:331.426121px;}
.y223{bottom:331.750895px;}
.y256{bottom:334.511656px;}
.y11b{bottom:335.608200px;}
.y230{bottom:336.031361px;}
.yfa{bottom:338.474614px;}
.yd9{bottom:338.793688px;}
.y17f{bottom:341.754150px;}
.y357{bottom:343.856850px;}
.y328{bottom:343.952700px;}
.y93{bottom:344.078700px;}
.y62{bottom:344.078850px;}
.y257{bottom:344.095834px;}
.y21c{bottom:344.991221px;}
.y23e{bottom:346.790393px;}
.y2f{bottom:347.415900px;}
.y152{bottom:347.614737px;}
.y1f{bottom:348.212550px;}
.ye6{bottom:350.697600px;}
.y245{bottom:357.019153px;}
.y20e{bottom:358.472850px;}
.y164{bottom:358.803150px;}
.y146{bottom:359.951451px;}
.yb7{bottom:362.638800px;}
.y2cb{bottom:362.982450px;}
.y356{bottom:364.862850px;}
.y327{bottom:364.958700px;}
.y92{bottom:365.078700px;}
.y61{bottom:365.078850px;}
.y18a{bottom:365.317800px;}
.y1e{bottom:369.212550px;}
.y306{bottom:370.937100px;}
.y1f3{bottom:371.749350px;}
.y12a{bottom:372.243025px;}
.y22e{bottom:372.296962px;}
.y272{bottom:373.982400px;}
.ye3{bottom:374.541450px;}
.y2e{bottom:382.421400px;}
.y221{bottom:384.986937px;}
.y14f{bottom:385.152150px;}
.y231{bottom:385.230847px;}
.y355{bottom:385.868850px;}
.y326{bottom:385.964700px;}
.y91{bottom:386.078700px;}
.y60{bottom:386.078850px;}
.ye4{bottom:386.443950px;}
.y25f{bottom:388.744800px;}
.y1d{bottom:390.212550px;}
.y271{bottom:393.786900px;}
.y135{bottom:397.478356px;}
.y205{bottom:398.232585px;}
.yce{bottom:398.389832px;}
.y6f{bottom:399.513600px;}
.y2d{bottom:400.421400px;}
.y305{bottom:400.441050px;}
.y236{bottom:405.045713px;}
.y25e{bottom:405.045956px;}
.y354{bottom:406.874850px;}
.y325{bottom:406.970700px;}
.y90{bottom:407.078700px;}
.y5f{bottom:407.078850px;}
.y162{bottom:407.857606px;}
.y17c{bottom:408.468900px;}
.y121{bottom:409.781805px;}
.ye5{bottom:410.290800px;}
.y1f1{bottom:411.483863px;}
.y270{bottom:413.591400px;}
.y2db{bottom:415.326900px;}
.y2c{bottom:418.421400px;}
.y24f{bottom:421.519510px;}
.y11f{bottom:422.073600px;}
.ybb{bottom:422.197709px;}
.y17e{bottom:423.960000px;}
.y218{bottom:424.718481px;}
.y2f3{bottom:425.366400px;}
.y1c{bottom:425.700300px;}
.y2de{bottom:425.805900px;}
.yf4{bottom:427.545114px;}
.y2e1{bottom:427.654050px;}
.y353{bottom:427.880850px;}
.y324{bottom:427.976700px;}
.y8f{bottom:428.078700px;}
.y5e{bottom:428.078850px;}
.y175{bottom:428.795100px;}
.y176{bottom:430.393050px;}
.y6e{bottom:431.811150px;}
.y26f{bottom:433.395900px;}
.ycc{bottom:434.133166px;}
.y145{bottom:434.414494px;}
.y2b{bottom:436.421400px;}
.y229{bottom:438.192150px;}
.y180{bottom:439.202700px;}
.y2ce{bottom:443.298150px;}
.y2d0{bottom:443.299500px;}
.y266{bottom:443.481874px;}
.y189{bottom:443.505750px;}
.yd6{bottom:446.029500px;}
.y10b{bottom:446.482643px;}
.y154{bottom:446.696470px;}
.y352{bottom:448.886850px;}
.y323{bottom:448.982700px;}
.y8e{bottom:449.078700px;}
.y5d{bottom:449.078850px;}
.y22c{bottom:450.787895px;}
.y190{bottom:450.900600px;}
.y228{bottom:451.442100px;}
.y26e{bottom:453.200400px;}
.y178{bottom:457.849350px;}
.yaa{bottom:457.932000px;}
.y166{bottom:459.412643px;}
.y156{bottom:460.266150px;}
.y249{bottom:462.106973px;}
.y188{bottom:463.176450px;}
.y2c7{bottom:463.441050px;}
.y216{bottom:464.674036px;}
.y10a{bottom:465.551400px;}
.yff{bottom:467.851350px;}
.yb9{bottom:469.834500px;}
.y351{bottom:469.892850px;}
.y322{bottom:469.988700px;}
.y8d{bottom:470.078700px;}
.y5c{bottom:470.078850px;}
.y18f{bottom:470.705100px;}
.y118{bottom:472.600050px;}
.y26d{bottom:473.004900px;}
.y261{bottom:475.692750px;}
.y1f2{bottom:477.927150px;}
.y177{bottom:479.233851px;}
.ye9{bottom:481.466746px;}
.y235{bottom:482.194650px;}
.y12e{bottom:484.893750px;}
.y18e{bottom:490.509600px;}
.y350{bottom:490.898850px;}
.y321{bottom:490.994700px;}
.y36b{bottom:491.036850px;}
.y8c{bottom:491.078700px;}
.y5b{bottom:491.078850px;}
.y20c{bottom:491.166301px;}
.y238{bottom:491.239916px;}
.y260{bottom:491.944808px;}
.y173{bottom:493.169850px;}
.y273{bottom:493.335000px;}
.ydb{bottom:493.402402px;}
.yf5{bottom:494.884698px;}
.y12d{bottom:497.191507px;}
.y15f{bottom:497.598806px;}
.y277{bottom:502.719900px;}
.y24b{bottom:502.726137px;}
.y1ed{bottom:504.412350px;}
.y276{bottom:504.536700px;}
.ycb{bottom:505.310116px;}
.y1b{bottom:506.223450px;}
.y15a{bottom:507.158424px;}
.y143{bottom:509.529600px;}
.y2c1{bottom:509.656200px;}
.y18d{bottom:510.314100px;}
.y34f{bottom:511.904850px;}
.y320{bottom:512.000700px;}
.y36a{bottom:512.042850px;}
.y8b{bottom:512.078700px;}
.y5a{bottom:512.078850px;}
.y247{bottom:514.740702px;}
.y296{bottom:516.664950px;}
.ye2{bottom:517.207200px;}
.y1fb{bottom:517.928418px;}
.y17b{bottom:521.118882px;}
.y157{bottom:521.823450px;}
.yfc{bottom:521.888330px;}
.y2be{bottom:524.714100px;}
.y241{bottom:525.075130px;}
.y1a{bottom:526.027950px;}
.y250{bottom:528.879214px;}
.ya3{bottom:529.744350px;}
.y18c{bottom:530.118600px;}
.y2a3{bottom:530.571479px;}
.y212{bottom:531.171124px;}
.y34e{bottom:532.910850px;}
.y31f{bottom:533.006700px;}
.y369{bottom:533.048850px;}
.y8a{bottom:533.078700px;}
.y59{bottom:533.078850px;}
.y14a{bottom:534.721843px;}
.y248{bottom:538.991737px;}
.yb0{bottom:541.646790px;}
.y1ec{bottom:544.415262px;}
.y29a{bottom:544.517100px;}
.y2a6{bottom:544.665000px;}
.y155{bottom:547.063037px;}
.y263{bottom:550.203000px;}
.y191{bottom:550.447500px;}
.y254{bottom:552.136961px;}
.ybe{bottom:553.549918px;}
.y34d{bottom:553.916850px;}
.y31e{bottom:554.012700px;}
.y368{bottom:554.054850px;}
.y89{bottom:554.078700px;}
.y58{bottom:554.078850px;}
.y194{bottom:557.617800px;}
.y1f9{bottom:557.659962px;}
.y2aa{bottom:558.382206px;}
.y280{bottom:558.424350px;}
.y12f{bottom:559.356793px;}
.y174{bottom:559.440450px;}
.y1e0{bottom:563.168100px;}
.y2e5{bottom:565.360950px;}
.yb1{bottom:565.500352px;}
.y262{bottom:566.493785px;}
.y19{bottom:567.042750px;}
.y2dc{bottom:568.406400px;}
.y2fc{bottom:568.440900px;}
.y246{bottom:568.927765px;}
.y211{bottom:570.892101px;}
.y1b0{bottom:571.392110px;}
.y13d{bottom:571.651800px;}
.y29d{bottom:572.370188px;}
.y2df{bottom:574.454550px;}
.y34c{bottom:574.922850px;}
.y31d{bottom:575.018700px;}
.y367{bottom:575.060850px;}
.y88{bottom:575.078700px;}
.y57{bottom:575.078850px;}
.y2e2{bottom:575.616750px;}
.y2e9{bottom:575.664000px;}
.yd7{bottom:577.403582px;}
.y24e{bottom:577.444687px;}
.y16b{bottom:578.119793px;}
.y1df{bottom:579.845661px;}
.y2d6{bottom:582.813000px;}
.y2d9{bottom:582.833400px;}
.y2f0{bottom:582.834900px;}
.y13f{bottom:583.979400px;}
.y213{bottom:584.142994px;}
.y1bb{bottom:585.006000px;}
.y292{bottom:586.282779px;}
.y18{bottom:586.847250px;}
.yaf{bottom:589.304400px;}
.y2bd{bottom:592.096230px;}
.y23f{bottom:592.808959px;}
.y2b5{bottom:593.434950px;}
.y34b{bottom:595.928850px;}
.y31c{bottom:596.024700px;}
.y366{bottom:596.066850px;}
.y87{bottom:596.078700px;}
.y56{bottom:596.078850px;}
.y150{bottom:596.273250px;}
.y215{bottom:597.374850px;}
.y1ca{bottom:598.498500px;}
.y1ba{bottom:598.618800px;}
.y27f{bottom:600.221550px;}
.ya6{bottom:601.206900px;}
.y17{bottom:606.651750px;}
.y13b{bottom:608.566950px;}
.y2ba{bottom:608.932813px;}
.y206{bottom:610.902014px;}
.y239{bottom:611.237633px;}
.y196{bottom:612.192600px;}
.yac{bottom:613.134887px;}
.y15d{bottom:614.026847px;}
.y284{bottom:614.128950px;}
.y234{bottom:614.785235px;}
.y34a{bottom:616.934850px;}
.y31b{bottom:617.030700px;}
.y365{bottom:617.072850px;}
.y86{bottom:617.078700px;}
.y55{bottom:617.078850px;}
.y2bc{bottom:617.356050px;}
.y138{bottom:620.908950px;}
.y227{bottom:624.129257px;}
.yde{bottom:625.061192px;}
.y19f{bottom:625.606782px;}
.y1cf{bottom:625.688250px;}
.y2b0{bottom:625.774917px;}
.y16{bottom:626.456250px;}
.y278{bottom:628.074600px;}
.y16d{bottom:628.801713px;}
.y1e2{bottom:629.521200px;}
.y158{bottom:633.198376px;}
.y2b1{bottom:636.860892px;}
.y225{bottom:637.387910px;}
.yc9{bottom:637.659150px;}
.y349{bottom:637.940850px;}
.y31a{bottom:638.036700px;}
.y85{bottom:638.078700px;}
.y54{bottom:638.078850px;}
.y1bc{bottom:639.182250px;}
.y299{bottom:641.980350px;}
.y24d{bottom:643.646315px;}
.y125{bottom:645.499625px;}
.y15{bottom:646.260750px;}
.ydd{bottom:649.620334px;}
.y214{bottom:650.619362px;}
.y1b3{bottom:652.798723px;}
.y108{bottom:653.577900px;}
.y161{bottom:655.168500px;}
.y283{bottom:655.923900px;}
.y2bb{bottom:657.675450px;}
.y13c{bottom:657.823950px;}
.y2a7{bottom:657.974104px;}
.y348{bottom:658.946850px;}
.y23a{bottom:659.021155px;}
.y319{bottom:659.042700px;}
.y84{bottom:659.078700px;}
.y53{bottom:659.078850px;}
.yf3{bottom:660.250415px;}
.yc0{bottom:661.515851px;}
.y21f{bottom:663.857995px;}
.y2a9{bottom:664.795950px;}
.y14{bottom:666.065250px;}
.y1aa{bottom:666.363458px;}
.y1e3{bottom:667.250250px;}
.y27b{bottom:669.840779px;}
.y11e{bottom:670.117800px;}
.y232{bottom:672.407488px;}
.y364{bottom:672.513600px;}
.yd3{bottom:673.414800px;}
.y1eb{bottom:677.114392px;}
.yf8{bottom:677.303388px;}
.y1a1{bottom:679.791687px;}
.y347{bottom:679.952850px;}
.y318{bottom:680.048700px;}
.y83{bottom:680.078700px;}
.y52{bottom:680.078850px;}
.y169{bottom:681.836291px;}
.y147{bottom:682.134525px;}
.y185{bottom:682.983900px;}
.y1d2{bottom:683.413540px;}
.y2a1{bottom:683.784900px;}
.y109{bottom:684.717801px;}
.yda{bottom:685.344974px;}
.y13{bottom:685.869750px;}
.y23c{bottom:686.082985px;}
.y2e3{bottom:687.903750px;}
.y1e1{bottom:689.168797px;}
.y1f5{bottom:690.580350px;}
.y1be{bottom:693.366424px;}
.y14b{bottom:694.422727px;}
.y25c{bottom:696.270150px;}
.yd2{bottom:697.258750px;}
.y290{bottom:697.688114px;}
.y253{bottom:700.453969px;}
.y346{bottom:700.958850px;}
.y317{bottom:701.054700px;}
.y82{bottom:701.078700px;}
.y51{bottom:701.078850px;}
.y1c8{bottom:701.464950px;}
.y2ab{bottom:701.585400px;}
.y171{bottom:702.540900px;}
.y184{bottom:702.654600px;}
.y1d0{bottom:702.861900px;}
.y20b{bottom:703.828950px;}
.y2e6{bottom:704.695950px;}
.y2e0{bottom:704.801550px;}
.y363{bottom:704.811150px;}
.y12{bottom:705.674250px;}
.y142{bottom:706.750950px;}
.y1ae{bottom:706.974450px;}
.yb5{bottom:709.155000px;}
.y28b{bottom:711.634409px;}
.y25b{bottom:712.567650px;}
.y2ea{bottom:712.930500px;}
.y2f1{bottom:712.940400px;}
.y2ae{bottom:715.565505px;}
.y2b9{bottom:716.937927px;}
.y220{bottom:717.094037px;}
.y2d7{bottom:719.617500px;}
.y2dd{bottom:719.627400px;}
.y2da{bottom:719.637900px;}
.y144{bottom:719.672900px;}
.y1a5{bottom:720.542131px;}
.yfe{bottom:720.627750px;}
.yc3{bottom:721.103128px;}
.y345{bottom:721.964850px;}
.y316{bottom:722.060700px;}
.y81{bottom:722.078700px;}
.y50{bottom:722.078850px;}
.y1da{bottom:722.907600px;}
.y24c{bottom:725.339019px;}
.y11{bottom:725.478750px;}
.y28c{bottom:725.544450px;}
.y2b7{bottom:726.835950px;}
.y219{bottom:730.344930px;}
.y15b{bottom:730.438800px;}
.y1d4{bottom:730.574765px;}
.y124{bottom:731.962050px;}
.ycd{bottom:733.008147px;}
.y1b9{bottom:733.961960px;}
.y243{bottom:737.459253px;}
.y29c{bottom:737.710350px;}
.yf1{bottom:738.087052px;}
.y1bf{bottom:738.490743px;}
.y344{bottom:742.970850px;}
.y315{bottom:743.066700px;}
.y80{bottom:743.078700px;}
.y4f{bottom:743.078850px;}
.y204{bottom:743.590578px;}
.y139{bottom:744.289507px;}
.yba{bottom:744.913371px;}
.y107{bottom:745.179300px;}
.y10{bottom:745.283250px;}
.y1a8{bottom:747.581550px;}
.y28f{bottom:751.608900px;}
.y2bf{bottom:754.794847px;}
.y131{bottom:756.586687px;}
.y1f4{bottom:756.828320px;}
.yc8{bottom:756.844350px;}
.y1ad{bottom:761.155350px;}
.y23b{bottom:761.953327px;}
.y16f{bottom:762.074100px;}
.y343{bottom:763.976850px;}
.y314{bottom:764.072700px;}
.y7f{bottom:764.078700px;}
.y4e{bottom:764.078850px;}
.y106{bottom:764.223150px;}
.yf{bottom:765.087750px;}
.y2a4{bottom:765.553950px;}
.y2c6{bottom:767.143500px;}
.ye1{bottom:768.747617px;}
.y11d{bottom:768.877350px;}
.y2c0{bottom:768.957934px;}
.y1ea{bottom:770.314450px;}
.y1a2{bottom:774.770974px;}
.y1c1{bottom:777.316650px;}
.y29b{bottom:779.468550px;}
.y1c5{bottom:779.871450px;}
.y2b8{bottom:780.359400px;}
.yc1{bottom:780.649200px;}
.y11a{bottom:781.230441px;}
.y21e{bottom:783.549271px;}
.y342{bottom:784.982850px;}
.y7e{bottom:785.078700px;}
.y4d{bottom:785.078850px;}
.y1a6{bottom:788.147384px;}
.ye7{bottom:792.600000px;}
.y237{bottom:792.703006px;}
.y160{bottom:793.137150px;}
.y281{bottom:793.414800px;}
.y14d{bottom:793.516092px;}
.y2c2{bottom:794.230350px;}
.y1c0{bottom:796.098917px;}
.ye{bottom:796.185300px;}
.y203{bottom:796.794919px;}
.y2c5{bottom:799.441050px;}
.y1b6{bottom:801.750150px;}
.y244{bottom:803.903920px;}
.yae{bottom:804.184350px;}
.y148{bottom:805.806750px;}
.y341{bottom:805.988850px;}
.y7d{bottom:806.078700px;}
.y4c{bottom:806.078850px;}
.y293{bottom:807.317372px;}
.y1dd{bottom:809.091202px;}
.y209{bottom:810.039061px;}
.y2ad{bottom:811.067400px;}
.y159{bottom:811.416158px;}
.y19b{bottom:815.323950px;}
.yb4{bottom:816.105109px;}
.y240{bottom:816.298894px;}
.y141{bottom:818.133963px;}
.yf6{bottom:818.785650px;}
.y313{bottom:820.440900px;}
.y298{bottom:821.263903px;}
.y1db{bottom:822.993970px;}
.y1fc{bottom:823.276500px;}
.y340{bottom:826.994850px;}
.y7c{bottom:827.078700px;}
.y4b{bottom:827.078850px;}
.ybf{bottom:828.020400px;}
.y199{bottom:828.947550px;}
.y2ac{bottom:830.013594px;}
.y120{bottom:830.426400px;}
.y252{bottom:831.145389px;}
.y1c7{bottom:834.293054px;}
.y291{bottom:835.177412px;}
.y201{bottom:836.526450px;}
.yd5{bottom:840.526650px;}
.y17a{bottom:842.112900px;}
.y1b5{bottom:842.312803px;}
.y12c{bottom:842.720550px;}
.yed{bottom:847.610666px;}
.y33f{bottom:848.000850px;}
.y7b{bottom:848.078700px;}
.y4a{bottom:848.078850px;}
.y1d6{bottom:848.790236px;}
.y27d{bottom:849.115544px;}
.y1fe{bottom:850.026864px;}
.ycf{bottom:852.461637px;}
.y129{bottom:855.063750px;}
.y1b8{bottom:855.934050px;}
.y1de{bottom:860.563668px;}
.y285{bottom:863.023582px;}
.y1fa{bottom:863.286411px;}
.yb3{bottom:864.356892px;}
.y22f{bottom:865.253413px;}
.y151{bottom:867.684750px;}
.yee{bottom:867.849677px;}
.y33e{bottom:869.006850px;}
.y312{bottom:869.072700px;}
.y7a{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.y1b4{bottom:869.542350px;}
.y1c4{bottom:869.929240px;}
.y187{bottom:870.470850px;}
.y8{bottom:875.466750px;}
.yb6{bottom:876.268736px;}
.y210{bottom:876.516930px;}
.y28a{bottom:876.963000px;}
.y126{bottom:880.011300px;}
.y163{bottom:880.586700px;}
.y2b2{bottom:882.598053px;}
.y1a4{bottom:883.119644px;}
.y100{bottom:886.708950px;}
.yca{bottom:888.217350px;}
.y217{bottom:889.767750px;}
.y33d{bottom:890.012850px;}
.y79{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.y103{bottom:890.517150px;}
.y27e{bottom:890.878950px;}
.y122{bottom:892.308462px;}
.y7{bottom:893.466750px;}
.y1a0{bottom:896.531307px;}
.y1d3{bottom:897.775928px;}
.ya5{bottom:900.119100px;}
.yf2{bottom:901.026564px;}
.y1f7{bottom:903.007388px;}
.y1dc{bottom:904.275900px;}
.y149{bottom:904.595298px;}
.y28d{bottom:904.823850px;}
.y1b7{bottom:910.104150px;}
.y16e{bottom:910.582450px;}
.y33c{bottom:911.018850px;}
.y78{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.yc5{bottom:912.020850px;}
.y2af{bottom:912.129695px;}
.y1cc{bottom:915.934849px;}
.y20a{bottom:916.253550px;}
.y311{bottom:916.529250px;}
.y119{bottom:916.949055px;}
.y2a0{bottom:918.724050px;}
.y251{bottom:918.977461px;}
.y195{bottom:923.726400px;}
.ybc{bottom:923.955300px;}
.yfd{bottom:925.826806px;}
.y186{bottom:926.317950px;}
.y265{bottom:926.920347px;}
.y11c{bottom:929.235600px;}
.y20f{bottom:929.488800px;}
.y33b{bottom:932.024850px;}
.y77{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.y28e{bottom:932.664037px;}
.y233{bottom:933.010650px;}
.y2b6{bottom:933.152343px;}
.y15e{bottom:933.905700px;}
.y1ce{bottom:934.057950px;}
.ye0{bottom:935.858717px;}
.y19c{bottom:937.300822px;}
.yef{bottom:940.746000px;}
.y133{bottom:941.535078px;}
.y16c{bottom:942.175544px;}
.y1ee{bottom:943.009500px;}
.y264{bottom:943.212300px;}
.y5{bottom:946.474800px;}
.y288{bottom:946.583400px;}
.y2a8{bottom:947.622300px;}
.ya9{bottom:947.760150px;}
.y1d9{bottom:949.624086px;}
.y1b2{bottom:950.716050px;}
.y1d1{bottom:952.822350px;}
.y33a{bottom:953.030850px;}
.y310{bottom:953.072850px;}
.y76{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.y23d{bottom:953.330453px;}
.y13a{bottom:953.857458px;}
.yeb{bottom:954.264683px;}
.y207{bottom:956.249440px;}
.y16a{bottom:958.937400px;}
.ydc{bottom:959.716643px;}
.y29f{bottom:960.535986px;}
.y1af{bottom:964.289850px;}
.y242{bottom:965.091413px;}
.y105{bottom:965.694000px;}
.y130{bottom:966.154638px;}
.y1f0{bottom:969.500718px;}
.y101{bottom:970.458302px;}
.yb8{bottom:971.613300px;}
.y339{bottom:974.036850px;}
.y2fb{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.y1cd{bottom:974.302500px;}
.y2a2{bottom:974.428350px;}
.y19a{bottom:977.899985px;}
.y137{bottom:978.442950px;}
.y183{bottom:981.638700px;}
.y1f8{bottom:981.646258px;}
.y4{bottom:983.288550px;}
.ye8{bottom:983.515800px;}
.y104{bottom:984.738150px;}
.yf0{bottom:987.800550px;}
.y297{bottom:988.374451px;}
.y75{bottom:988.440900px;}
.y1d7{bottom:988.482450px;}
.y153{bottom:990.785550px;}
.y1a9{bottom:991.468500px;}
.y338{bottom:995.042850px;}
.y2fa{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.ya7{bottom:995.450250px;}
.y168{bottom:995.620118px;}
.y1ef{bottom:995.981370px;}
.y24a{bottom:996.453972px;}
.y30f{bottom:1000.529250px;}
.y282{bottom:1002.288000px;}
.y134{bottom:1002.784650px;}
.y2a5{bottom:1004.810619px;}
.y1ac{bottom:1004.880211px;}
.yfb{bottom:1007.240858px;}
.yd8{bottom:1007.349496px;}
.y1c6{bottom:1009.166976px;}
.y1f6{bottom:1009.215300px;}
.y123{bottom:1015.088099px;}
.y337{bottom:1016.048850px;}
.y2f9{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y287{bottom:1016.234400px;}
.y3{bottom:1016.285550px;}
.y170{bottom:1016.959327px;}
.y1a3{bottom:1018.505100px;}
.yab{bottom:1019.251996px;}
.y1ff{bottom:1022.559150px;}
.y1c9{bottom:1024.764600px;}
.yf9{bottom:1025.524050px;}
.y13e{bottom:1027.372016px;}
.y286{bottom:1030.137389px;}
.ya4{bottom:1031.157750px;}
.y1a7{bottom:1032.088632px;}
.y202{bottom:1035.945000px;}
.y167{bottom:1036.305300px;}
.y336{bottom:1037.054850px;}
.y30e{bottom:1037.060850px;}
.y74{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.y14e{bottom:1039.714642px;}
.y1c2{bottom:1040.331424px;}
.yec{bottom:1041.546192px;}
.yc2{bottom:1043.107650px;}
.y27c{bottom:1044.077850px;}
.y1ab{bottom:1045.687050px;}
.y224{bottom:1049.180003px;}
.y2{bottom:1049.282550px;}
.y1c3{bottom:1051.953152px;}
.y12b{bottom:1052.614608px;}
.yd4{bottom:1055.010150px;}
.y2b4{bottom:1055.322450px;}
.y172{bottom:1056.879633px;}
.y182{bottom:1057.663800px;}
.y289{bottom:1057.988735px;}
.y335{bottom:1058.060850px;}
.y30d{bottom:1058.066850px;}
.y73{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.y1bd{bottom:1059.072106px;}
.yf7{bottom:1060.434323px;}
.y226{bottom:1062.454836px;}
.y15c{bottom:1064.257385px;}
.y128{bottom:1064.909250px;}
.yc6{bottom:1066.914930px;}
.y1d8{bottom:1070.088900px;}
.y294{bottom:1071.937350px;}
.y197{bottom:1072.673550px;}
.y21b{bottom:1075.702922px;}
.y102{bottom:1075.879050px;}
.y25a{bottom:1076.478750px;}
.y140{bottom:1077.258705px;}
.y181{bottom:1077.333750px;}
.yad{bottom:1078.842576px;}
.y334{bottom:1079.066850px;}
.y30c{bottom:1079.072850px;}
.y72{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.y2c3{bottom:1080.867300px;}
.y165{bottom:1085.290887px;}
.y295{bottom:1085.838900px;}
.y198{bottom:1086.248700px;}
.y1cb{bottom:1088.242847px;}
.y21d{bottom:1088.932681px;}
.y127{bottom:1089.540893px;}
.ya8{bottom:1090.753091px;}
.y2b3{bottom:1091.401500px;}
.y279{bottom:1099.784101px;}
.y19e{bottom:1099.867948px;}
.y333{bottom:1100.072850px;}
.y71{bottom:1100.078700px;}
.y3e{bottom:1100.078850px;}
.y132{bottom:1101.838800px;}
.y1e9{bottom:1102.421550px;}
.ybd{bottom:1102.652100px;}
.yd{bottom:1109.815500px;}
.y304{bottom:1111.570800px;}
.y2f8{bottom:1112.695800px;}
.y1b1{bottom:1113.246342px;}
.y27a{bottom:1113.697650px;}
.y14c{bottom:1114.164900px;}
.ydf{bottom:1114.605701px;}
.y20d{bottom:1115.670750px;}
.y179{bottom:1118.419201px;}
.yea{bottom:1119.283800px;}
.y70{bottom:1121.078700px;}
.y3d{bottom:1121.078850px;}
.y1d5{bottom:1121.198170px;}
.y30b{bottom:1125.451800px;}
.yb2{bottom:1126.213796px;}
.y136{bottom:1126.459275px;}
.y19d{bottom:1126.860750px;}
.y29e{bottom:1127.646534px;}
.y22a{bottom:1128.897568px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h49{height:25.737633px;}
.h35{height:30.307519px;}
.h31{height:30.338561px;}
.h34{height:30.345039px;}
.h33{height:30.435891px;}
.h32{height:30.689415px;}
.h36{height:30.787870px;}
.h45{height:31.972517px;}
.h3d{height:33.221856px;}
.h3e{height:33.328661px;}
.h43{height:33.448242px;}
.h44{height:33.483925px;}
.h3f{height:33.606055px;}
.h40{height:33.714095px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h15{height:35.540121px;}
.h16{height:35.654247px;}
.h2b{height:35.763205px;}
.h2d{height:35.878192px;}
.h17{height:35.951129px;}
.h18{height:36.066575px;}
.h2e{height:36.176793px;}
.h2c{height:36.293110px;}
.h23{height:36.708513px;}
.h24{height:36.713811px;}
.h22{height:36.825653px;}
.h25{height:36.825791px;}
.h37{height:37.784824px;}
.h3a{height:37.877520px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h46{height:39.723633px;}
.h48{height:39.730833px;}
.h47{height:39.734433px;}
.h39{height:40.132881px;}
.h38{height:40.231337px;}
.h30{height:42.988887px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.h1c{height:44.262422px;}
.h19{height:44.371113px;}
.h5{height:45.421875px;}
.h9{height:45.615234px;}
.h10{height:45.675024px;}
.h26{height:45.829219px;}
.h1a{height:47.013015px;}
.h1b{height:47.128461px;}
.h3c{height:48.338591px;}
.h27{height:48.557811px;}
.h28{height:48.677177px;}
.h41{height:49.500000px;}
.h11{height:50.176758px;}
.h13{height:50.368746px;}
.h2a{height:50.716292px;}
.ha{height:51.073242px;}
.h4a{height:51.097242px;}
.h20{height:52.017759px;}
.h14{height:52.960890px;}
.h1e{height:53.387034px;}
.h1f{height:54.694786px;}
.hb{height:54.738281px;}
.hc{height:56.748047px;}
.h42{height:60.454242px;}
.h4{height:62.422852px;}
.h3{height:81.231445px;}
.h29{height:591.630000px;}
.h3b{height:648.744000px;}
.h21{height:835.101000px;}
.h1d{height:837.000000px;}
.h12{height:901.524000px;}
.h2f{height:902.248500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:537.250500px;}
.w6{width:559.720500px;}
.w2{width:617.362500px;}
.w4{width:644.941500px;}
.w5{width:682.525500px;}
.w8{width:697.221000px;}
.w3{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa1{left:16.796933px;}
.x39{left:18.915641px;}
.x93{left:57.994089px;}
.x67{left:64.680686px;}
.x2{left:73.984200px;}
.xb{left:107.063850px;}
.xc{left:108.289650px;}
.x9f{left:114.853500px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x3a{left:126.868500px;}
.xb8{left:129.711600px;}
.x85{left:131.723700px;}
.x64{left:136.086000px;}
.x5b{left:137.724600px;}
.x8e{left:139.428600px;}
.x5c{left:141.495054px;}
.x63{left:143.583150px;}
.x82{left:147.531900px;}
.x91{left:151.005450px;}
.xd{left:154.783500px;}
.x8f{left:156.586089px;}
.xba{left:159.067800px;}
.xb0{left:160.475318px;}
.x33{left:164.240100px;}
.x79{left:167.049981px;}
.xb5{left:168.927176px;}
.xb7{left:171.103759px;}
.x5e{left:172.836710px;}
.xb9{left:174.859800px;}
.x5f{left:177.016163px;}
.x29{left:178.480691px;}
.x2d{left:180.537972px;}
.x2b{left:182.242950px;}
.x60{left:183.739074px;}
.x2f{left:186.095511px;}
.x31{left:187.208951px;}
.x5a{left:189.015956px;}
.x2c{left:191.167003px;}
.x2a{left:194.501848px;}
.x53{left:196.458464px;}
.x32{left:197.627850px;}
.x27{left:200.291733px;}
.x58{left:201.466736px;}
.x30{left:203.861057px;}
.x2e{left:205.320900px;}
.x28{left:206.675453px;}
.x26{left:209.285850px;}
.xa4{left:213.736215px;}
.x9e{left:215.216755px;}
.xa8{left:216.517500px;}
.x98{left:218.417160px;}
.x9b{left:220.333530px;}
.xf{left:223.480200px;}
.x62{left:226.203986px;}
.x96{left:228.576708px;}
.x97{left:230.479641px;}
.x99{left:231.568542px;}
.x59{left:232.682400px;}
.x9d{left:233.854926px;}
.x56{left:235.099522px;}
.x11{left:236.884350px;}
.x1f{left:238.650715px;}
.x24{left:239.659650px;}
.x9c{left:241.551233px;}
.x5d{left:242.596500px;}
.x1e{left:243.818760px;}
.x87{left:245.336654px;}
.x1a{left:247.788300px;}
.x15{left:249.969300px;}
.xbb{left:251.160000px;}
.x1b{left:252.328659px;}
.x22{left:255.124500px;}
.x84{left:256.355400px;}
.x14{left:257.701950px;}
.x1d{left:259.134304px;}
.x19{left:260.714850px;}
.x1c{left:262.499550px;}
.x21{left:264.791800px;}
.x9a{left:266.387163px;}
.x12{left:267.456000px;}
.x18{left:270.225677px;}
.x17{left:273.404250px;}
.x16{left:274.563941px;}
.x4d{left:275.654850px;}
.x44{left:276.662653px;}
.x40{left:277.908000px;}
.x13{left:278.955150px;}
.x4b{left:280.110748px;}
.x51{left:281.324875px;}
.x25{left:283.356900px;}
.x3f{left:285.076650px;}
.x3e{left:287.108357px;}
.xbc{left:288.169950px;}
.x50{left:289.992750px;}
.x23{left:291.485400px;}
.x20{left:294.619608px;}
.x52{left:296.170200px;}
.x45{left:297.808800px;}
.x4{left:300.189000px;}
.x57{left:301.467853px;}
.x4a{left:303.321407px;}
.x3d{left:305.602753px;}
.x8a{left:306.731221px;}
.x94{left:308.402250px;}
.x54{left:309.902550px;}
.x49{left:310.922362px;}
.x3c{left:314.409000px;}
.x95{left:316.014531px;}
.x5{left:317.199000px;}
.x61{left:319.821702px;}
.x8d{left:322.933118px;}
.x42{left:328.537891px;}
.x55{left:331.643371px;}
.xbd{left:333.685650px;}
.x8c{left:335.314716px;}
.x4e{left:337.349122px;}
.x7f{left:339.357415px;}
.xb4{left:346.025250px;}
.x41{left:348.900900px;}
.x88{left:351.605614px;}
.x43{left:353.563481px;}
.x72{left:354.867595px;}
.x81{left:356.595300px;}
.x4c{left:360.584250px;}
.x46{left:364.654476px;}
.xbe{left:365.689650px;}
.x48{left:367.130717px;}
.xb3{left:371.306731px;}
.x47{left:375.956143px;}
.x86{left:377.673000px;}
.x71{left:380.278447px;}
.x4f{left:383.284754px;}
.x34{left:385.826550px;}
.x6c{left:393.130500px;}
.x3{left:396.050700px;}
.x6a{left:397.761000px;}
.x7a{left:399.357900px;}
.xb6{left:405.057750px;}
.x7b{left:406.335450px;}
.x69{left:412.723200px;}
.x70{left:416.476455px;}
.xab{left:419.054261px;}
.x10{left:420.752700px;}
.x7e{left:424.740620px;}
.x78{left:427.732800px;}
.xbf{left:429.700350px;}
.x74{left:431.288988px;}
.x7c{left:433.304197px;}
.xaf{left:437.567250px;}
.x3b{left:442.509000px;}
.x8b{left:445.378650px;}
.xc0{left:448.201350px;}
.x68{left:457.081950px;}
.x90{left:462.655500px;}
.xb1{left:475.705650px;}
.xaa{left:479.194050px;}
.xc1{left:480.206250px;}
.xa9{left:481.815956px;}
.xa2{left:488.476800px;}
.xc2{left:498.708150px;}
.x77{left:505.084611px;}
.xb2{left:508.050450px;}
.xc3{left:512.215050px;}
.x80{left:513.695790px;}
.x89{left:520.193872px;}
.x83{left:522.740569px;}
.xa6{left:525.678300px;}
.xc4{left:530.716050px;}
.x92{left:537.234900px;}
.xc5{left:544.219050px;}
.x6d{left:547.850202px;}
.x76{left:549.459150px;}
.x73{left:554.840400px;}
.xc6{left:562.724850px;}
.x6e{left:574.048650px;}
.x6f{left:578.408355px;}
.xae{left:582.186750px;}
.xe{left:591.017400px;}
.x7d{left:593.641286px;}
.xc7{left:594.729900px;}
.x6b{left:597.235200px;}
.x35{left:611.005950px;}
.x36{left:613.859700px;}
.xad{left:614.888550px;}
.x75{left:616.197479px;}
.xac{left:618.272207px;}
.x37{left:619.998750px;}
.xa3{left:621.067200px;}
.xa7{left:626.443650px;}
.xa5{left:629.962350px;}
.x65{left:635.281050px;}
.xc8{left:645.235800px;}
.xa{left:646.536300px;}
.xa0{left:654.717000px;}
.x66{left:655.998150px;}
.xc9{left:658.739700px;}
.x38{left:663.986100px;}
.x9{left:668.280300px;}
.xca{left:677.240700px;}
.xcb{left:690.743700px;}
.xcc{left:709.876800px;}
.xcd{left:726.876300px;}
.xce{left:736.876800px;}
.xcf{left:753.876300px;}
.xd0{left:763.876800px;}
.xd1{left:777.376800px;}
.xd2{left:790.876800px;}
.x1{left:801.157500px;}
@media print{
.v4{vertical-align:-32.144000pt;}
.v5{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.429867pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:24.005333pt;}
.lsb{letter-spacing:-2.880000pt;}
.lsb1{letter-spacing:-2.666667pt;}
.lsa1{letter-spacing:-1.941333pt;}
.ls2c{letter-spacing:-1.364397pt;}
.ls2b{letter-spacing:-1.236316pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls7b{letter-spacing:-0.976851pt;}
.lse{letter-spacing:-0.960000pt;}
.lsa9{letter-spacing:-0.906667pt;}
.lsae{letter-spacing:-0.853333pt;}
.lsaf{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.746667pt;}
.ls4c{letter-spacing:-0.681896pt;}
.ls8{letter-spacing:-0.614400pt;}
.ls94{letter-spacing:-0.586667pt;}
.lsb0{letter-spacing:-0.533333pt;}
.lsb2{letter-spacing:-0.528000pt;}
.lsa0{letter-spacing:-0.522667pt;}
.ls7d{letter-spacing:-0.491323pt;}
.ls4f{letter-spacing:-0.476740pt;}
.ls4e{letter-spacing:-0.416125pt;}
.lsa2{letter-spacing:-0.413541pt;}
.ls44{letter-spacing:-0.363678pt;}
.ls6{letter-spacing:-0.362667pt;}
.ls25{letter-spacing:-0.352102pt;}
.ls7f{letter-spacing:-0.343926pt;}
.lsb3{letter-spacing:-0.336000pt;}
.lsad{letter-spacing:-0.320000pt;}
.ls70{letter-spacing:-0.300570pt;}
.ls30{letter-spacing:-0.288483pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls89{letter-spacing:-0.190197pt;}
.ls8e{letter-spacing:-0.164567pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls78{letter-spacing:-0.150285pt;}
.lsac{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.090667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsab{letter-spacing:0.032000pt;}
.ls68{letter-spacing:0.075142pt;}
.ls81{letter-spacing:0.082548pt;}
.ls15{letter-spacing:0.088026pt;}
.ls54{letter-spacing:0.088578pt;}
.ls56{letter-spacing:0.088863pt;}
.ls4b{letter-spacing:0.091210pt;}
.ls6d{letter-spacing:0.112714pt;}
.ls2f{letter-spacing:0.115393pt;}
.ls84{letter-spacing:0.123426pt;}
.ls86{letter-spacing:0.123822pt;}
.ls19{letter-spacing:0.132038pt;}
.ls1b{letter-spacing:0.132462pt;}
.ls55{letter-spacing:0.132867pt;}
.ls53{letter-spacing:0.133294pt;}
.ls46{letter-spacing:0.136379pt;}
.ls3b{letter-spacing:0.136814pt;}
.ls27{letter-spacing:0.176617pt;}
.ls57{letter-spacing:0.177156pt;}
.ls13{letter-spacing:0.227447pt;}
.ls77{letter-spacing:0.262998pt;}
.ls7c{letter-spacing:0.301534pt;}
.ls29{letter-spacing:0.308090pt;}
.ls48{letter-spacing:0.318218pt;}
.ls2e{letter-spacing:0.353233pt;}
.ls61{letter-spacing:0.355452pt;}
.ls21{letter-spacing:0.441541pt;}
.ls93{letter-spacing:0.454015pt;}
.ls24{letter-spacing:0.484141pt;}
.ls6b{letter-spacing:0.603068pt;}
.ls67{letter-spacing:0.638710pt;}
.lsb4{letter-spacing:0.640000pt;}
.ls76{letter-spacing:0.716143pt;}
.ls41{letter-spacing:0.729677pt;}
.ls7e{letter-spacing:0.786116pt;}
.ls79{letter-spacing:0.791526pt;}
.lsa6{letter-spacing:0.800000pt;}
.ls71{letter-spacing:0.826566pt;}
.ls63{letter-spacing:0.829218pt;}
.ls65{letter-spacing:0.864138pt;}
.ls43{letter-spacing:0.866491pt;}
.ls8a{letter-spacing:0.866757pt;}
.ls28{letter-spacing:0.880256pt;}
.ls75{letter-spacing:0.904602pt;}
.ls8c{letter-spacing:0.905121pt;}
.ls42{letter-spacing:0.909195pt;}
.ls1f{letter-spacing:0.927237pt;}
.ls5c{letter-spacing:0.933061pt;}
.ls82{letter-spacing:0.949305pt;}
.ls3f{letter-spacing:0.957701pt;}
.ls22{letter-spacing:0.968282pt;}
.ls5b{letter-spacing:0.974359pt;}
.ls7a{letter-spacing:0.976851pt;}
.ls92{letter-spacing:0.990579pt;}
.ls3d{letter-spacing:1.000114pt;}
.ls16{letter-spacing:1.012294pt;}
.ls36{letter-spacing:1.045574pt;}
.ls26{letter-spacing:1.056307pt;}
.ls2a{letter-spacing:1.059699pt;}
.ls5f{letter-spacing:1.066355pt;}
.ls91{letter-spacing:1.069689pt;}
.ls34{letter-spacing:1.091034pt;}
.ls74{letter-spacing:1.093060pt;}
.ls49{letter-spacing:1.094515pt;}
.ls83{letter-spacing:1.110830pt;}
.ls6f{letter-spacing:1.127136pt;}
.ls20{letter-spacing:1.144333pt;}
.ls5d{letter-spacing:1.151516pt;}
.ls6e{letter-spacing:1.164707pt;}
.ls47{letter-spacing:1.181953pt;}
.ls8b{letter-spacing:1.196950pt;}
.ls4{letter-spacing:1.200000pt;}
.ls72{letter-spacing:1.206135pt;}
.ls8d{letter-spacing:1.234256pt;}
.ls87{letter-spacing:1.275398pt;}
.ls73{letter-spacing:1.277421pt;}
.ls1d{letter-spacing:1.280470pt;}
.ls58{letter-spacing:1.288513pt;}
.ls1c{letter-spacing:1.320384pt;}
.ls90{letter-spacing:1.320772pt;}
.ls40{letter-spacing:1.322539pt;}
.ls5a{letter-spacing:1.328672pt;}
.ls3{letter-spacing:1.344000pt;}
.ls88{letter-spacing:1.362046pt;}
.ls3e{letter-spacing:1.363792pt;}
.ls2d{letter-spacing:1.364397pt;}
.lsa4{letter-spacing:1.368000pt;}
.ls59{letter-spacing:1.372961pt;}
.ls8f{letter-spacing:1.398823pt;}
.ls3c{letter-spacing:1.409252pt;}
.ls23{letter-spacing:1.412932pt;}
.ls60{letter-spacing:1.421807pt;}
.ls4a{letter-spacing:1.459354pt;}
.ls1e{letter-spacing:1.496435pt;}
.ls4d{letter-spacing:1.504958pt;}
.ls5e{letter-spacing:1.505828pt;}
.ls45{letter-spacing:1.545631pt;}
.ls11{letter-spacing:1.584461pt;}
.ls51{letter-spacing:1.594406pt;}
.lsa3{letter-spacing:2.240000pt;}
.lsaa{letter-spacing:2.346667pt;}
.lsa8{letter-spacing:6.586667pt;}
.lsa7{letter-spacing:6.613333pt;}
.ls2{letter-spacing:7.056000pt;}
.ls35{letter-spacing:10.092061pt;}
.ls69{letter-spacing:10.219366pt;}
.ls39{letter-spacing:10.546658pt;}
.ls6c{letter-spacing:11.121075pt;}
.ls38{letter-spacing:11.173176pt;}
.ls1a{letter-spacing:11.223264pt;}
.ls32{letter-spacing:11.592232pt;}
.ls50{letter-spacing:12.090915pt;}
.ls12{letter-spacing:12.142387pt;}
.lsf{letter-spacing:12.147533pt;}
.ls64{letter-spacing:12.174430pt;}
.ls66{letter-spacing:12.849350pt;}
.ls62{letter-spacing:12.999635pt;}
.ls10{letter-spacing:13.159827pt;}
.ls52{letter-spacing:13.196146pt;}
.ls3a{letter-spacing:13.637920pt;}
.ls14{letter-spacing:13.776006pt;}
.ls31{letter-spacing:13.865219pt;}
.ls17{letter-spacing:13.908045pt;}
.ls80{letter-spacing:14.235086pt;}
.ls33{letter-spacing:14.639141pt;}
.ls37{letter-spacing:15.047172pt;}
.ls85{letter-spacing:16.333321pt;}
.lsa5{letter-spacing:16.858667pt;}
.ls6a{letter-spacing:17.094896pt;}
.ls18{letter-spacing:18.661427pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ls98{letter-spacing:53.220635pt;}
.ls9f{letter-spacing:53.593829pt;}
.ls9c{letter-spacing:68.696763pt;}
.ls9b{letter-spacing:98.317141pt;}
.ls9d{letter-spacing:110.203008pt;}
.ls96{letter-spacing:112.025408pt;}
.ls9e{letter-spacing:120.684608pt;}
.ls95{letter-spacing:140.560000pt;}
.ls99{letter-spacing:143.352341pt;}
.ls9a{letter-spacing:147.299008pt;}
.ls97{letter-spacing:151.208875pt;}
.wsf7{word-spacing:-49.132267pt;}
.ws83{word-spacing:-45.459733pt;}
.ws6{word-spacing:-15.936000pt;}
.ws110{word-spacing:-15.849733pt;}
.ws15b{word-spacing:-14.608000pt;}
.ws13a{word-spacing:-14.490667pt;}
.ws9e{word-spacing:-13.467913pt;}
.ws9d{word-spacing:-13.434886pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.226667pt;}
.ws15c{word-spacing:-13.173333pt;}
.ws2c{word-spacing:-13.066667pt;}
.ws5b{word-spacing:-13.039417pt;}
.ws179{word-spacing:-12.960000pt;}
.ws1d{word-spacing:-12.906667pt;}
.ws1e{word-spacing:-12.853333pt;}
.ws17a{word-spacing:-12.746667pt;}
.ws13b{word-spacing:-12.640000pt;}
.ws168{word-spacing:-12.373333pt;}
.ws2b{word-spacing:-12.320000pt;}
.ws35{word-spacing:-12.266667pt;}
.ws36{word-spacing:-12.106667pt;}
.ws2d{word-spacing:-12.000000pt;}
.ws166{word-spacing:-11.952000pt;}
.wsb3{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws8e{word-spacing:-11.629224pt;}
.ws1bf{word-spacing:-11.568000pt;}
.ws1be{word-spacing:-11.424000pt;}
.ws1ac{word-spacing:-11.376000pt;}
.wsf8{word-spacing:-11.103892pt;}
.ws76{word-spacing:-11.036362pt;}
.ws7{word-spacing:-10.992000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws8{word-spacing:-10.704000pt;}
.ws72{word-spacing:-10.306685pt;}
.ws73{word-spacing:-10.273900pt;}
.wsb7{word-spacing:-10.041511pt;}
.wsb4{word-spacing:-10.009329pt;}
.ws3c{word-spacing:-9.978834pt;}
.ws3a{word-spacing:-9.946893pt;}
.wsa{word-spacing:-9.770667pt;}
.ws2{word-spacing:-9.685333pt;}
.ws1c{word-spacing:-9.600000pt;}
.ws99{word-spacing:-9.592004pt;}
.wse0{word-spacing:-9.422933pt;}
.ws11e{word-spacing:-9.410502pt;}
.ws113{word-spacing:-9.327954pt;}
.ws111{word-spacing:-9.298062pt;}
.ws150{word-spacing:-9.258667pt;}
.wse2{word-spacing:-9.234475pt;}
.ws14d{word-spacing:-9.146667pt;}
.wsdc{word-spacing:-9.129802pt;}
.wsda{word-spacing:-9.121399pt;}
.ws3{word-spacing:-8.793600pt;}
.ws1{word-spacing:-8.549333pt;}
.wsd9{word-spacing:-8.518332pt;}
.wsd7{word-spacing:-8.491091pt;}
.ws0{word-spacing:-8.482261pt;}
.wsec{word-spacing:-8.190522pt;}
.ws14c{word-spacing:-7.317333pt;}
.ws143{word-spacing:-5.419568pt;}
.ws2e{word-spacing:-3.200000pt;}
.ws195{word-spacing:-2.986667pt;}
.ws4a{word-spacing:-2.816819pt;}
.ws127{word-spacing:-2.682819pt;}
.ws159{word-spacing:-2.501333pt;}
.ws19b{word-spacing:-2.400000pt;}
.ws5a{word-spacing:-2.359763pt;}
.wsf6{word-spacing:-2.309217pt;}
.ws177{word-spacing:-2.256000pt;}
.ws2a{word-spacing:-2.240000pt;}
.wsf4{word-spacing:-2.073045pt;}
.ws71{word-spacing:-1.920000pt;}
.ws185{word-spacing:-1.760000pt;}
.wscc{word-spacing:-1.728000pt;}
.ws9c{word-spacing:-1.664499pt;}
.ws59{word-spacing:-1.611546pt;}
.ws31{word-spacing:-1.600000pt;}
.wsa6{word-spacing:-1.545631pt;}
.wsd2{word-spacing:-1.505828pt;}
.wsb0{word-spacing:-1.504958pt;}
.ws5e{word-spacing:-1.496435pt;}
.wsf5{word-spacing:-1.477584pt;}
.wsad{word-spacing:-1.459354pt;}
.ws172{word-spacing:-1.440000pt;}
.wsd5{word-spacing:-1.421807pt;}
.wsb9{word-spacing:-1.417250pt;}
.ws63{word-spacing:-1.412932pt;}
.wsaf{word-spacing:-1.409252pt;}
.ws132{word-spacing:-1.398823pt;}
.wsd3{word-spacing:-1.372961pt;}
.ws43{word-spacing:-1.364397pt;}
.wsa0{word-spacing:-1.363792pt;}
.wscb{word-spacing:-1.344000pt;}
.ws28{word-spacing:-1.333333pt;}
.wscd{word-spacing:-1.328672pt;}
.wsfa{word-spacing:-1.326571pt;}
.wsa2{word-spacing:-1.322539pt;}
.ws133{word-spacing:-1.320772pt;}
.ws5c{word-spacing:-1.320384pt;}
.wsce{word-spacing:-1.288513pt;}
.ws5d{word-spacing:-1.280470pt;}
.wsff{word-spacing:-1.277421pt;}
.ws137{word-spacing:-1.275398pt;}
.ws1ae{word-spacing:-1.248000pt;}
.wsbd{word-spacing:-1.244081pt;}
.ws130{word-spacing:-1.234256pt;}
.ws17b{word-spacing:-1.226667pt;}
.wsfe{word-spacing:-1.206135pt;}
.ws1c5{word-spacing:-1.200000pt;}
.ws12e{word-spacing:-1.196950pt;}
.wsc2{word-spacing:-1.195805pt;}
.wsa9{word-spacing:-1.181953pt;}
.ws17d{word-spacing:-1.173333pt;}
.ws109{word-spacing:-1.164707pt;}
.wsd1{word-spacing:-1.151516pt;}
.ws60{word-spacing:-1.144333pt;}
.wsfb{word-spacing:-1.127136pt;}
.wsac{word-spacing:-1.094515pt;}
.ws100{word-spacing:-1.093060pt;}
.wsab{word-spacing:-1.091034pt;}
.ws135{word-spacing:-1.069689pt;}
.ws181{word-spacing:-1.066667pt;}
.wsd4{word-spacing:-1.066355pt;}
.ws6a{word-spacing:-1.059699pt;}
.ws66{word-spacing:-1.056307pt;}
.wsa8{word-spacing:-1.045574pt;}
.ws9f{word-spacing:-1.000114pt;}
.ws136{word-spacing:-0.990579pt;}
.ws104{word-spacing:-0.976851pt;}
.wscf{word-spacing:-0.974359pt;}
.ws62{word-spacing:-0.968282pt;}
.wsa1{word-spacing:-0.957701pt;}
.wsd0{word-spacing:-0.933061pt;}
.ws5f{word-spacing:-0.927237pt;}
.ws1a{word-spacing:-0.912000pt;}
.wsa3{word-spacing:-0.909195pt;}
.ws192{word-spacing:-0.906667pt;}
.ws12f{word-spacing:-0.905121pt;}
.ws106{word-spacing:-0.904602pt;}
.ws68{word-spacing:-0.880256pt;}
.ws12d{word-spacing:-0.866757pt;}
.wsa4{word-spacing:-0.866491pt;}
.wsfd{word-spacing:-0.826566pt;}
.ws103{word-spacing:-0.791526pt;}
.ws10d{word-spacing:-0.786116pt;}
.ws107{word-spacing:-0.676282pt;}
.ws1b{word-spacing:-0.672000pt;}
.ws10a{word-spacing:-0.640759pt;}
.ws1c6{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.634667pt;}
.ws16f{word-spacing:-0.586667pt;}
.wse{word-spacing:-0.544000pt;}
.wsca{word-spacing:-0.528000pt;}
.ws64{word-spacing:-0.484141pt;}
.ws138{word-spacing:-0.454015pt;}
.ws61{word-spacing:-0.441541pt;}
.ws15{word-spacing:-0.432000pt;}
.ws16c{word-spacing:-0.426667pt;}
.ws158{word-spacing:-0.413541pt;}
.wsc4{word-spacing:-0.355452pt;}
.ws6e{word-spacing:-0.353233pt;}
.wsaa{word-spacing:-0.318218pt;}
.ws69{word-spacing:-0.308090pt;}
.ws10b{word-spacing:-0.301534pt;}
.wsc{word-spacing:-0.272000pt;}
.ws141{word-spacing:-0.266667pt;}
.ws101{word-spacing:-0.262998pt;}
.wsf{word-spacing:-0.192000pt;}
.wsd6{word-spacing:-0.177156pt;}
.ws67{word-spacing:-0.176617pt;}
.ws199{word-spacing:-0.160000pt;}
.wsa7{word-spacing:-0.136379pt;}
.ws6d{word-spacing:-0.132038pt;}
.ws139{word-spacing:-0.123822pt;}
.ws134{word-spacing:-0.123426pt;}
.ws6f{word-spacing:-0.115393pt;}
.ws105{word-spacing:-0.112714pt;}
.ws1bd{word-spacing:-0.096000pt;}
.wsae{word-spacing:-0.091210pt;}
.wsc7{word-spacing:-0.088578pt;}
.ws182{word-spacing:-0.053333pt;}
.ws129{word-spacing:-0.048000pt;}
.wsb{word-spacing:0.000000pt;}
.ws140{word-spacing:0.053333pt;}
.ws41{word-spacing:0.088026pt;}
.ws170{word-spacing:0.106667pt;}
.ws8d{word-spacing:0.136379pt;}
.ws102{word-spacing:0.150285pt;}
.ws19{word-spacing:0.160000pt;}
.ws131{word-spacing:0.164567pt;}
.ws12c{word-spacing:0.190197pt;}
.ws23{word-spacing:0.213333pt;}
.ws1c1{word-spacing:0.240000pt;}
.ws18c{word-spacing:0.266667pt;}
.ws70{word-spacing:0.288483pt;}
.wsfc{word-spacing:0.300570pt;}
.ws21{word-spacing:0.320000pt;}
.ws1ad{word-spacing:0.336000pt;}
.ws10e{word-spacing:0.343926pt;}
.ws65{word-spacing:0.352102pt;}
.wsa5{word-spacing:0.363678pt;}
.ws171{word-spacing:0.373333pt;}
.ws16{word-spacing:0.384000pt;}
.ws53{word-spacing:0.396115pt;}
.ws15a{word-spacing:0.413541pt;}
.wsb1{word-spacing:0.416125pt;}
.ws13e{word-spacing:0.426667pt;}
.ws4d{word-spacing:0.440128pt;}
.ws7e{word-spacing:0.454597pt;}
.wsb2{word-spacing:0.476740pt;}
.ws10c{word-spacing:0.491323pt;}
.ws1b1{word-spacing:0.528000pt;}
.ws1a2{word-spacing:0.533333pt;}
.ws9b{word-spacing:0.545517pt;}
.ws32{word-spacing:0.586667pt;}
.ws10{word-spacing:0.614400pt;}
.ws79{word-spacing:0.636436pt;}
.ws1a0{word-spacing:0.640000pt;}
.ws12b{word-spacing:0.672000pt;}
.ws12a{word-spacing:0.720000pt;}
.ws98{word-spacing:0.727356pt;}
.ws16b{word-spacing:0.853333pt;}
.ws174{word-spacing:0.906667pt;}
.ws87{word-spacing:0.909195pt;}
.ws96{word-spacing:0.957701pt;}
.ws38{word-spacing:0.960000pt;}
.ws108{word-spacing:0.976851pt;}
.ws1a6{word-spacing:1.013333pt;}
.ws34{word-spacing:1.066667pt;}
.ws74{word-spacing:1.094515pt;}
.ws2f{word-spacing:1.120000pt;}
.ws6b{word-spacing:1.236316pt;}
.wse5{word-spacing:1.243827pt;}
.ws167{word-spacing:1.248000pt;}
.ws196{word-spacing:1.333333pt;}
.ws1b0{word-spacing:1.344000pt;}
.ws6c{word-spacing:1.364397pt;}
.ws14{word-spacing:1.392000pt;}
.ws1b4{word-spacing:1.536000pt;}
.wsde{word-spacing:1.540419pt;}
.ws119{word-spacing:1.563391pt;}
.ws169{word-spacing:1.600000pt;}
.wse9{word-spacing:1.690704pt;}
.ws116{word-spacing:1.727958pt;}
.ws1ba{word-spacing:1.728000pt;}
.ws194{word-spacing:1.813333pt;}
.ws18{word-spacing:1.824000pt;}
.ws17{word-spacing:1.872000pt;}
.ws25{word-spacing:1.920000pt;}
.ws24{word-spacing:1.973333pt;}
.ws118{word-spacing:2.015951pt;}
.ws193{word-spacing:2.080000pt;}
.ws78{word-spacing:2.143426pt;}
.ws1c2{word-spacing:2.208000pt;}
.ws15e{word-spacing:2.240000pt;}
.ws160{word-spacing:2.293333pt;}
.ws1a8{word-spacing:2.304000pt;}
.ws27{word-spacing:2.346667pt;}
.ws165{word-spacing:2.400000pt;}
.ws91{word-spacing:2.409366pt;}
.ws1b5{word-spacing:2.448000pt;}
.ws188{word-spacing:2.453333pt;}
.ws1b6{word-spacing:2.496000pt;}
.ws39{word-spacing:2.506667pt;}
.ws1b2{word-spacing:2.544000pt;}
.ws3e{word-spacing:2.605094pt;}
.ws16d{word-spacing:2.613333pt;}
.ws45{word-spacing:2.640768pt;}
.ws198{word-spacing:2.666667pt;}
.wse8{word-spacing:2.676113pt;}
.ws190{word-spacing:2.720000pt;}
.ws13d{word-spacing:2.773333pt;}
.ws1c0{word-spacing:2.784000pt;}
.ws19e{word-spacing:2.826667pt;}
.ws122{word-spacing:2.879931pt;}
.ws26{word-spacing:2.880000pt;}
.ws81{word-spacing:2.909423pt;}
.ws20{word-spacing:2.933333pt;}
.ws11d{word-spacing:3.013012pt;}
.wsee{word-spacing:3.053030pt;}
.ws19a{word-spacing:3.093333pt;}
.ws7f{word-spacing:3.146731pt;}
.ws125{word-spacing:3.167924pt;}
.ws3d{word-spacing:3.179098pt;}
.ws82{word-spacing:3.192336pt;}
.ws1b3{word-spacing:3.216000pt;}
.ws7d{word-spacing:3.227641pt;}
.ws1a1{word-spacing:3.253333pt;}
.ws4b{word-spacing:3.267406pt;}
.wsc0{word-spacing:3.287929pt;}
.wse3{word-spacing:3.306266pt;}
.ws17f{word-spacing:3.306667pt;}
.ws57{word-spacing:3.311560pt;}
.ws95{word-spacing:3.329150pt;}
.wsef{word-spacing:3.343837pt;}
.ws1af{word-spacing:3.360000pt;}
.ws47{word-spacing:3.399868pt;}
.ws48{word-spacing:3.444022pt;}
.wsb8{word-spacing:3.454547pt;}
.ws178{word-spacing:3.456000pt;}
.wsf1{word-spacing:3.456550pt;}
.ws54{word-spacing:3.477011pt;}
.ws114{word-spacing:3.497059pt;}
.ws77{word-spacing:3.500399pt;}
.ws8c{word-spacing:3.557174pt;}
.wsbc{word-spacing:3.587414pt;}
.ws15f{word-spacing:3.626667pt;}
.ws55{word-spacing:3.664793pt;}
.ws94{word-spacing:3.682238pt;}
.ws7c{word-spacing:3.693989pt;}
.ws128{word-spacing:3.714672pt;}
.ws19f{word-spacing:3.733333pt;}
.ws42{word-spacing:3.741088pt;}
.wsb6{word-spacing:3.776675pt;}
.ws117{word-spacing:3.785052pt;}
.ws56{word-spacing:3.785101pt;}
.ws86{word-spacing:3.785198pt;}
.ws183{word-spacing:3.786667pt;}
.wsdd{word-spacing:3.794691pt;}
.ws11f{word-spacing:3.838494pt;}
.ws3f{word-spacing:3.841410pt;}
.ws92{word-spacing:3.864077pt;}
.wsea{word-spacing:3.882249pt;}
.wsb5{word-spacing:3.897438pt;}
.ws7a{word-spacing:3.909537pt;}
.ws49{word-spacing:3.917139pt;}
.ws8b{word-spacing:3.954997pt;}
.ws46{word-spacing:3.961152pt;}
.ws126{word-spacing:3.990761pt;}
.ws85{word-spacing:4.045916pt;}
.ws40{word-spacing:4.093190pt;}
.ws88{word-spacing:4.136836pt;}
.ws18a{word-spacing:4.160000pt;}
.ws7b{word-spacing:4.182295pt;}
.wseb{word-spacing:4.207974pt;}
.ws13f{word-spacing:4.213333pt;}
.ws120{word-spacing:4.251236pt;}
.ws17c{word-spacing:4.320000pt;}
.wsf3{word-spacing:4.320688pt;}
.ws4c{word-spacing:4.357267pt;}
.wsd8{word-spacing:4.358259pt;}
.ws90{word-spacing:4.378061pt;}
.ws1c3{word-spacing:4.416000pt;}
.ws1c4{word-spacing:4.464000pt;}
.ws176{word-spacing:4.480000pt;}
.wsf2{word-spacing:4.508544pt;}
.ws15d{word-spacing:4.533333pt;}
.ws33{word-spacing:4.586667pt;}
.ws184{word-spacing:4.693333pt;}
.ws8f{word-spacing:4.818732pt;}
.ws191{word-spacing:4.906667pt;}
.ws11b{word-spacing:4.952896pt;}
.ws22{word-spacing:4.960000pt;}
.ws30{word-spacing:5.013333pt;}
.ws11a{word-spacing:5.060450pt;}
.ws18d{word-spacing:5.066667pt;}
.ws1a9{word-spacing:5.184000pt;}
.ws1aa{word-spacing:5.232000pt;}
.ws18b{word-spacing:5.280000pt;}
.ws75{word-spacing:5.381366pt;}
.ws189{word-spacing:5.386667pt;}
.wsed{word-spacing:5.598109pt;}
.ws175{word-spacing:5.600000pt;}
.ws3b{word-spacing:5.651729pt;}
.ws1a7{word-spacing:5.664000pt;}
.ws11c{word-spacing:5.671066pt;}
.wsc8{word-spacing:5.687228pt;}
.ws37{word-spacing:5.706667pt;}
.ws124{word-spacing:5.759861pt;}
.ws13c{word-spacing:5.813333pt;}
.ws51{word-spacing:5.853702pt;}
.wsc3{word-spacing:5.909385pt;}
.ws93{word-spacing:5.928624pt;}
.ws186{word-spacing:5.973333pt;}
.wsbf{word-spacing:5.979024pt;}
.wsbb{word-spacing:6.023313pt;}
.ws187{word-spacing:6.026667pt;}
.ws19c{word-spacing:6.080000pt;}
.ws1b7{word-spacing:6.096000pt;}
.wse7{word-spacing:6.124106pt;}
.ws19d{word-spacing:6.133333pt;}
.wse1{word-spacing:6.143753pt;}
.wsc9{word-spacing:6.175974pt;}
.ws18f{word-spacing:6.186667pt;}
.ws1b8{word-spacing:6.192000pt;}
.ws16e{word-spacing:6.240000pt;}
.ws4f{word-spacing:6.314041pt;}
.wse6{word-spacing:6.332211pt;}
.ws58{word-spacing:6.446503pt;}
.ws180{word-spacing:6.506667pt;}
.ws173{word-spacing:6.560000pt;}
.wsdf{word-spacing:6.574960pt;}
.ws84{word-spacing:6.637121pt;}
.ws10f{word-spacing:6.672000pt;}
.wsc5{word-spacing:6.709151pt;}
.wsc1{word-spacing:6.753583pt;}
.ws50{word-spacing:6.865997pt;}
.wsf0{word-spacing:6.913101pt;}
.wsbe{word-spacing:6.931309pt;}
.ws9a{word-spacing:6.955339pt;}
.wsba{word-spacing:6.997673pt;}
.ws4e{word-spacing:6.998035pt;}
.ws11{word-spacing:7.008000pt;}
.ws161{word-spacing:7.040000pt;}
.ws44{word-spacing:7.042048pt;}
.ws123{word-spacing:7.057877pt;}
.ws13{word-spacing:7.104000pt;}
.ws89{word-spacing:7.114349pt;}
.wsc6{word-spacing:7.130540pt;}
.ws162{word-spacing:7.146667pt;}
.ws12{word-spacing:7.152000pt;}
.ws1bc{word-spacing:7.200000pt;}
.ws97{word-spacing:7.364477pt;}
.ws29{word-spacing:7.413333pt;}
.ws80{word-spacing:7.455396pt;}
.ws1a3{word-spacing:7.573333pt;}
.ws1ab{word-spacing:7.584000pt;}
.ws18e{word-spacing:7.626667pt;}
.ws1a4{word-spacing:7.680000pt;}
.ws1bb{word-spacing:7.824000pt;}
.ws115{word-spacing:8.007182pt;}
.ws164{word-spacing:8.053333pt;}
.ws112{word-spacing:8.461197pt;}
.ws121{word-spacing:8.598650pt;}
.ws17e{word-spacing:8.693333pt;}
.wsdb{word-spacing:8.941946pt;}
.ws52{word-spacing:9.682816pt;}
.ws197{word-spacing:9.866667pt;}
.wsf9{word-spacing:10.047571pt;}
.ws163{word-spacing:10.133333pt;}
.wse4{word-spacing:10.289843pt;}
.ws1a5{word-spacing:10.346667pt;}
.ws8a{word-spacing:11.683151pt;}
.ws1b9{word-spacing:14.016000pt;}
.ws16a{word-spacing:17.013333pt;}
.ws152{word-spacing:43.754667pt;}
.ws157{word-spacing:44.859733pt;}
.ws155{word-spacing:45.304000pt;}
.ws153{word-spacing:45.546667pt;}
.ws14b{word-spacing:49.690667pt;}
.ws14e{word-spacing:75.562667pt;}
.ws14f{word-spacing:104.682667pt;}
.ws151{word-spacing:113.851733pt;}
.ws142{word-spacing:133.657067pt;}
.ws149{word-spacing:136.229333pt;}
.ws148{word-spacing:144.405333pt;}
.ws14a{word-spacing:155.866667pt;}
.ws147{word-spacing:162.881600pt;}
.ws146{word-spacing:175.205333pt;}
.ws154{word-spacing:179.424000pt;}
.ws156{word-spacing:208.021333pt;}
.ws144{word-spacing:429.191467pt;}
.ws145{word-spacing:604.613333pt;}
._d{margin-left:-9.454933pt;}
._16{margin-left:-7.865067pt;}
._5{margin-left:-6.963200pt;}
._e{margin-left:-5.662933pt;}
._2{margin-left:-3.953067pt;}
._4{margin-left:-3.057067pt;}
._1{margin-left:-1.595733pt;}
._0{width:1.233067pt;}
._6{width:2.160000pt;}
._7{width:3.432000pt;}
._a{width:4.530667pt;}
._b{width:5.421333pt;}
._8{width:6.552000pt;}
._9{width:7.584000pt;}
._c{width:8.580267pt;}
._17{width:9.700267pt;}
._1b{width:10.710674pt;}
._18{width:11.774659pt;}
._10{width:12.664768pt;}
._f{width:13.865803pt;}
._15{width:15.032923pt;}
._12{width:16.394953pt;}
._11{width:17.484708pt;}
._19{width:18.412109pt;}
._1a{width:19.323715pt;}
._13{width:20.412098pt;}
._14{width:21.547593pt;}
._3a{width:22.561235pt;}
._3{width:32.328533pt;}
._39{width:38.268800pt;}
._28{width:46.793600pt;}
._29{width:48.122667pt;}
._31{width:54.058667pt;}
._38{width:55.092267pt;}
._22{width:60.032000pt;}
._2a{width:62.533333pt;}
._34{width:69.328000pt;}
._2f{width:70.784000pt;}
._35{width:79.818667pt;}
._25{width:84.821333pt;}
._2b{width:90.638400pt;}
._2d{width:108.229333pt;}
._2c{width:122.971733pt;}
._21{width:128.865067pt;}
._30{width:151.797333pt;}
._20{width:157.662400pt;}
._2e{width:166.781333pt;}
._26{width:181.962667pt;}
._1d{width:186.517333pt;}
._1e{width:285.861333pt;}
._27{width:299.278368pt;}
._24{width:308.373333pt;}
._33{width:330.838400pt;}
._37{width:333.162667pt;}
._23{width:398.123099pt;}
._36{width:553.162667pt;}
._1c{width:584.453621pt;}
._32{width:589.344533pt;}
._1f{width:763.578667pt;}
.fs21{font-size:21.765333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs19{font-size:37.571200pt;}
.fs1a{font-size:37.691733pt;}
.fs5{font-size:38.400000pt;}
.fs1f{font-size:41.141867pt;}
.fs20{font-size:41.274133pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:44.012800pt;}
.fsc{font-size:44.154133pt;}
.fs16{font-size:44.289067pt;}
.fs17{font-size:44.431467pt;}
.fs12{font-size:45.459733pt;}
.fs11{font-size:45.604800pt;}
.fs6{font-size:48.000000pt;}
.fs1b{font-size:49.132267pt;}
.fs1c{font-size:49.252800pt;}
.fs18{font-size:53.237333pt;}
.fs7{font-size:53.333333pt;}
.fse{font-size:57.555200pt;}
.fsd{font-size:57.696533pt;}
.fs1e{font-size:58.327467pt;}
.fs2{font-size:58.666667pt;}
.fs14{font-size:59.446400pt;}
.fs13{font-size:59.592533pt;}
.fs9{font-size:62.376533pt;}
.fs15{font-size:62.806933pt;}
.fs1d{font-size:63.398933pt;}
.fs8{font-size:64.000000pt;}
.fs10{font-size:64.418667pt;}
.fsa{font-size:67.800533pt;}
.fsf{font-size:70.020267pt;}
.fs1{font-size:90.666667pt;}
.y115{bottom:-60.250133pt;}
.y275{bottom:-37.223016pt;}
.y193{bottom:-29.494217pt;}
.y1e7{bottom:-28.187808pt;}
.y114{bottom:-27.472261pt;}
.ya1{bottom:-25.213467pt;}
.y274{bottom:-6.474533pt;}
.y192{bottom:-0.650133pt;}
.y1e6{bottom:-0.131733pt;}
.y0{bottom:0.000000pt;}
.y113{bottom:1.761200pt;}
.y1e8{bottom:2.679600pt;}
.ya0{bottom:3.093333pt;}
.y2c4{bottom:3.293600pt;}
.y117{bottom:3.885333pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y2f6{bottom:98.267600pt;}
.y2c8{bottom:98.267733pt;}
.y2f7{bottom:98.268267pt;}
.y362{bottom:100.258533pt;}
.y9e{bottom:100.514400pt;}
.y6d{bottom:100.514533pt;}
.y2d2{bottom:102.032000pt;}
.y2eb{bottom:102.033333pt;}
.y2cd{bottom:102.040133pt;}
.y2f4{bottom:102.042133pt;}
.yc{bottom:104.182267pt;}
.y2a{bottom:104.188933pt;}
.y111{bottom:107.074533pt;}
.y26c{bottom:107.091733pt;}
.yb{bottom:116.979067pt;}
.y361{bottom:118.930533pt;}
.y332{bottom:119.015733pt;}
.y30a{bottom:119.175867pt;}
.y9d{bottom:119.181067pt;}
.y6c{bottom:119.181200pt;}
.y2c9{bottom:122.619067pt;}
.y29{bottom:122.855600pt;}
.y110{bottom:124.678533pt;}
.y26b{bottom:124.695733pt;}
.ya{bottom:129.775867pt;}
.y360{bottom:137.602533pt;}
.y331{bottom:137.687733pt;}
.y9c{bottom:137.847733pt;}
.y6b{bottom:137.847867pt;}
.y28{bottom:141.522267pt;}
.y10f{bottom:142.282533pt;}
.y26a{bottom:142.299733pt;}
.y9{bottom:142.575867pt;}
.y35f{bottom:156.274533pt;}
.y330{bottom:156.359733pt;}
.y9b{bottom:156.514400pt;}
.y6a{bottom:156.514533pt;}
.y10e{bottom:159.886533pt;}
.y269{bottom:159.903733pt;}
.y27{bottom:160.188933pt;}
.y309{bottom:161.359467pt;}
.y35e{bottom:174.946533pt;}
.y32f{bottom:175.031733pt;}
.y9a{bottom:175.181067pt;}
.y69{bottom:175.181200pt;}
.y10d{bottom:177.490533pt;}
.y268{bottom:177.507733pt;}
.y2d3{bottom:178.761333pt;}
.y2ec{bottom:178.762667pt;}
.y26{bottom:178.855600pt;}
.y37{bottom:180.846133pt;}
.y300{bottom:183.351733pt;}
.y2ca{bottom:183.360400pt;}
.y303{bottom:184.379733pt;}
.y1e4{bottom:187.947467pt;}
.y2d4{bottom:189.681333pt;}
.y2ed{bottom:189.682667pt;}
.y35d{bottom:193.618533pt;}
.y32e{bottom:193.703733pt;}
.y99{bottom:193.847733pt;}
.y68{bottom:193.847867pt;}
.y10c{bottom:195.094533pt;}
.y267{bottom:195.111733pt;}
.y36{bottom:196.842133pt;}
.y25{bottom:197.522267pt;}
.y2ff{bottom:200.955733pt;}
.y302{bottom:201.983733pt;}
.y35c{bottom:212.290533pt;}
.y32d{bottom:212.375733pt;}
.y98{bottom:212.514400pt;}
.y67{bottom:212.514533pt;}
.y35{bottom:212.838133pt;}
.y9f{bottom:213.165333pt;}
.y1e5{bottom:213.182667pt;}
.y24{bottom:216.188933pt;}
.y308{bottom:217.359467pt;}
.y2fe{bottom:218.559733pt;}
.y301{bottom:219.587733pt;}
.y258{bottom:220.138267pt;}
.y208{bottom:224.020933pt;}
.ya2{bottom:226.667600pt;}
.y34{bottom:228.834133pt;}
.y35b{bottom:230.962533pt;}
.y32c{bottom:231.047733pt;}
.y97{bottom:231.181067pt;}
.y66{bottom:231.181200pt;}
.y259{bottom:231.635054pt;}
.y23{bottom:234.855600pt;}
.y222{bottom:236.034399pt;}
.y2fd{bottom:236.163733pt;}
.y2cf{bottom:238.418800pt;}
.y2d8{bottom:238.662667pt;}
.y2d1{bottom:238.672000pt;}
.y2e4{bottom:239.116667pt;}
.y2f5{bottom:239.307467pt;}
.y2ee{bottom:240.446667pt;}
.y2ef{bottom:240.858800pt;}
.y2d5{bottom:240.865333pt;}
.y2f2{bottom:240.884800pt;}
.y2e8{bottom:240.888400pt;}
.y2e7{bottom:240.892400pt;}
.y33{bottom:244.830133pt;}
.y22d{bottom:246.752359pt;}
.y1fd{bottom:247.804667pt;}
.y35a{bottom:249.634533pt;}
.y32b{bottom:249.719733pt;}
.y96{bottom:249.847733pt;}
.y65{bottom:249.847867pt;}
.y18b{bottom:253.110267pt;}
.y22{bottom:253.522267pt;}
.y2cc{bottom:257.664133pt;}
.yc4{bottom:258.795410pt;}
.y22b{bottom:259.573531pt;}
.y32{bottom:260.826133pt;}
.y359{bottom:268.306533pt;}
.y32a{bottom:268.391733pt;}
.y95{bottom:268.514400pt;}
.y64{bottom:268.514533pt;}
.yd1{bottom:269.377649pt;}
.y112{bottom:271.181333pt;}
.y21a{bottom:271.351327pt;}
.y21{bottom:272.188933pt;}
.y116{bottom:272.869333pt;}
.y307{bottom:273.359467pt;}
.y31{bottom:276.822133pt;}
.yc7{bottom:279.952517pt;}
.y200{bottom:283.118800pt;}
.y17d{bottom:283.784933pt;}
.y358{bottom:286.978533pt;}
.y329{bottom:287.063733pt;}
.y94{bottom:287.181067pt;}
.y63{bottom:287.181200pt;}
.yd0{bottom:290.569812pt;}
.y20{bottom:290.855600pt;}
.y25d{bottom:291.697867pt;}
.y30{bottom:292.818133pt;}
.y255{bottom:294.600996pt;}
.y223{bottom:294.889684pt;}
.y256{bottom:297.343694pt;}
.y11b{bottom:298.318400pt;}
.y230{bottom:298.694543pt;}
.yfa{bottom:300.866324pt;}
.yd9{bottom:301.149945pt;}
.y17f{bottom:303.781467pt;}
.y357{bottom:305.650533pt;}
.y328{bottom:305.735733pt;}
.y93{bottom:305.847733pt;}
.y62{bottom:305.847867pt;}
.y257{bottom:305.862963pt;}
.y21c{bottom:306.658863pt;}
.y23e{bottom:308.258127pt;}
.y2f{bottom:308.814133pt;}
.y152{bottom:308.990877pt;}
.y1f{bottom:309.522267pt;}
.ye6{bottom:311.731200pt;}
.y245{bottom:317.350358pt;}
.y20e{bottom:318.642533pt;}
.y164{bottom:318.936133pt;}
.y146{bottom:319.956845pt;}
.yb7{bottom:322.345600pt;}
.y2cb{bottom:322.651067pt;}
.y356{bottom:324.322533pt;}
.y327{bottom:324.407733pt;}
.y92{bottom:324.514400pt;}
.y61{bottom:324.514533pt;}
.y18a{bottom:324.726933pt;}
.y1e{bottom:328.188933pt;}
.y306{bottom:329.721867pt;}
.y1f3{bottom:330.443867pt;}
.y12a{bottom:330.882689pt;}
.y22e{bottom:330.930633pt;}
.y272{bottom:332.428800pt;}
.ye3{bottom:332.925733pt;}
.y2e{bottom:339.930133pt;}
.y221{bottom:342.210611pt;}
.y14f{bottom:342.357467pt;}
.y231{bottom:342.427420pt;}
.y355{bottom:342.994533pt;}
.y326{bottom:343.079733pt;}
.y91{bottom:343.181067pt;}
.y60{bottom:343.181200pt;}
.ye4{bottom:343.505733pt;}
.y25f{bottom:345.550933pt;}
.y1d{bottom:346.855600pt;}
.y271{bottom:350.032800pt;}
.y135{bottom:353.314095pt;}
.y205{bottom:353.984520pt;}
.yce{bottom:354.124295pt;}
.y6f{bottom:355.123200pt;}
.y2d{bottom:355.930133pt;}
.y305{bottom:355.947600pt;}
.y236{bottom:360.040634pt;}
.y25e{bottom:360.040850pt;}
.y354{bottom:361.666533pt;}
.y325{bottom:361.751733pt;}
.y90{bottom:361.847733pt;}
.y5f{bottom:361.847867pt;}
.y162{bottom:362.540095pt;}
.y17c{bottom:363.083467pt;}
.y121{bottom:364.250493pt;}
.ye5{bottom:364.702933pt;}
.y1f1{bottom:365.763434pt;}
.y270{bottom:367.636800pt;}
.y2db{bottom:369.179467pt;}
.y2c{bottom:371.930133pt;}
.y24f{bottom:374.684009pt;}
.y11f{bottom:375.176533pt;}
.ybb{bottom:375.286853pt;}
.y17e{bottom:376.853333pt;}
.y218{bottom:377.527539pt;}
.y2f3{bottom:378.103467pt;}
.y1c{bottom:378.400267pt;}
.y2de{bottom:378.494133pt;}
.yf4{bottom:380.040101pt;}
.y2e1{bottom:380.136933pt;}
.y353{bottom:380.338533pt;}
.y324{bottom:380.423733pt;}
.y8f{bottom:380.514400pt;}
.y5e{bottom:380.514533pt;}
.y175{bottom:381.151200pt;}
.y176{bottom:382.571600pt;}
.y6e{bottom:383.832133pt;}
.y26f{bottom:385.240800pt;}
.ycc{bottom:385.896148pt;}
.y145{bottom:386.146217pt;}
.y2b{bottom:387.930133pt;}
.y229{bottom:389.504133pt;}
.y180{bottom:390.402400pt;}
.y2ce{bottom:394.042800pt;}
.y2d0{bottom:394.044000pt;}
.y266{bottom:394.206110pt;}
.y189{bottom:394.227333pt;}
.yd6{bottom:396.470667pt;}
.y10b{bottom:396.873460pt;}
.y154{bottom:397.063529pt;}
.y352{bottom:399.010533pt;}
.y323{bottom:399.095733pt;}
.y8e{bottom:399.181067pt;}
.y5d{bottom:399.181200pt;}
.y22c{bottom:400.700351pt;}
.y190{bottom:400.800533pt;}
.y228{bottom:401.281867pt;}
.y26e{bottom:402.844800pt;}
.y178{bottom:406.977200pt;}
.yaa{bottom:407.050667pt;}
.y166{bottom:408.366794pt;}
.y156{bottom:409.125467pt;}
.y249{bottom:410.761754pt;}
.y188{bottom:411.712400pt;}
.y2c7{bottom:411.947600pt;}
.y216{bottom:413.043587pt;}
.y10a{bottom:413.823467pt;}
.yff{bottom:415.867867pt;}
.yb9{bottom:417.630667pt;}
.y351{bottom:417.682533pt;}
.y322{bottom:417.767733pt;}
.y8d{bottom:417.847733pt;}
.y5c{bottom:417.847867pt;}
.y18f{bottom:418.404533pt;}
.y118{bottom:420.088933pt;}
.y26d{bottom:420.448800pt;}
.y261{bottom:422.838000pt;}
.y1f2{bottom:424.824133pt;}
.y177{bottom:425.985645pt;}
.ye9{bottom:427.970441pt;}
.y235{bottom:428.617467pt;}
.y12e{bottom:431.016667pt;}
.y18e{bottom:436.008533pt;}
.y350{bottom:436.354533pt;}
.y321{bottom:436.439733pt;}
.y36b{bottom:436.477200pt;}
.y8c{bottom:436.514400pt;}
.y5b{bottom:436.514533pt;}
.y20c{bottom:436.592268pt;}
.y238{bottom:436.657703pt;}
.y260{bottom:437.284273pt;}
.y173{bottom:438.373200pt;}
.y273{bottom:438.520000pt;}
.ydb{bottom:438.579913pt;}
.yf5{bottom:439.897509pt;}
.y12d{bottom:441.948007pt;}
.y15f{bottom:442.310050pt;}
.y277{bottom:446.862133pt;}
.y24b{bottom:446.867677pt;}
.y1ed{bottom:448.366533pt;}
.y276{bottom:448.477067pt;}
.ycb{bottom:449.164548pt;}
.y1b{bottom:449.976400pt;}
.y15a{bottom:450.807488pt;}
.y143{bottom:452.915200pt;}
.y2c1{bottom:453.027733pt;}
.y18d{bottom:453.612533pt;}
.y34f{bottom:455.026533pt;}
.y320{bottom:455.111733pt;}
.y36a{bottom:455.149200pt;}
.y8b{bottom:455.181067pt;}
.y5a{bottom:455.181200pt;}
.y247{bottom:457.547291pt;}
.y296{bottom:459.257733pt;}
.ye2{bottom:459.739733pt;}
.y1fb{bottom:460.380816pt;}
.y17b{bottom:463.216784pt;}
.y157{bottom:463.843067pt;}
.yfc{bottom:463.900738pt;}
.y2be{bottom:466.412533pt;}
.y241{bottom:466.733449pt;}
.y1a{bottom:467.580400pt;}
.y250{bottom:470.114857pt;}
.ya3{bottom:470.883867pt;}
.y18c{bottom:471.216533pt;}
.y2a3{bottom:471.619093pt;}
.y212{bottom:472.152110pt;}
.y34e{bottom:473.698533pt;}
.y31f{bottom:473.783733pt;}
.y369{bottom:473.821200pt;}
.y8a{bottom:473.847733pt;}
.y59{bottom:473.847867pt;}
.y14a{bottom:475.308305pt;}
.y248{bottom:479.103767pt;}
.yb0{bottom:481.463813pt;}
.y1ec{bottom:483.924677pt;}
.y29a{bottom:484.015200pt;}
.y2a6{bottom:484.146667pt;}
.y155{bottom:486.278255pt;}
.y263{bottom:489.069333pt;}
.y191{bottom:489.286667pt;}
.y254{bottom:490.788410pt;}
.ybe{bottom:492.044372pt;}
.y34d{bottom:492.370533pt;}
.y31e{bottom:492.455733pt;}
.y368{bottom:492.493200pt;}
.y89{bottom:492.514400pt;}
.y58{bottom:492.514533pt;}
.y194{bottom:495.660267pt;}
.y1f9{bottom:495.697744pt;}
.y2aa{bottom:496.339738pt;}
.y280{bottom:496.377200pt;}
.y12f{bottom:497.206038pt;}
.y174{bottom:497.280400pt;}
.y1e0{bottom:500.593867pt;}
.y2e5{bottom:502.543067pt;}
.yb1{bottom:502.666980pt;}
.y262{bottom:503.550031pt;}
.y19{bottom:504.038000pt;}
.y2dc{bottom:505.250133pt;}
.y2fc{bottom:505.280800pt;}
.y246{bottom:505.713569pt;}
.y211{bottom:507.459646pt;}
.y1b0{bottom:507.904097pt;}
.y13d{bottom:508.134933pt;}
.y29d{bottom:508.773500pt;}
.y2df{bottom:510.626267pt;}
.y34c{bottom:511.042533pt;}
.y31d{bottom:511.127733pt;}
.y367{bottom:511.165200pt;}
.y88{bottom:511.181067pt;}
.y57{bottom:511.181200pt;}
.y2e2{bottom:511.659333pt;}
.y2e9{bottom:511.701333pt;}
.yd7{bottom:513.247628pt;}
.y24e{bottom:513.284166pt;}
.y16b{bottom:513.884261pt;}
.y1df{bottom:515.418366pt;}
.y2d6{bottom:518.056000pt;}
.y2d9{bottom:518.074133pt;}
.y2f0{bottom:518.075467pt;}
.y13f{bottom:519.092800pt;}
.y213{bottom:519.238217pt;}
.y1bb{bottom:520.005333pt;}
.y292{bottom:521.140248pt;}
.y18{bottom:521.642000pt;}
.yaf{bottom:523.826133pt;}
.y2bd{bottom:526.307760pt;}
.y23f{bottom:526.941297pt;}
.y2b5{bottom:527.497733pt;}
.y34b{bottom:529.714533pt;}
.y31c{bottom:529.799733pt;}
.y366{bottom:529.837200pt;}
.y87{bottom:529.847733pt;}
.y56{bottom:529.847867pt;}
.y150{bottom:530.020667pt;}
.y215{bottom:530.999867pt;}
.y1ca{bottom:531.998667pt;}
.y1ba{bottom:532.105600pt;}
.y27f{bottom:533.530267pt;}
.ya6{bottom:534.406133pt;}
.y17{bottom:539.246000pt;}
.y13b{bottom:540.948400pt;}
.y2ba{bottom:541.273611pt;}
.y206{bottom:543.024013pt;}
.y239{bottom:543.322340pt;}
.y196{bottom:544.171200pt;}
.yac{bottom:545.008788pt;}
.y15d{bottom:545.801642pt;}
.y284{bottom:545.892400pt;}
.y234{bottom:546.475764pt;}
.y34a{bottom:548.386533pt;}
.y31b{bottom:548.471733pt;}
.y365{bottom:548.509200pt;}
.y86{bottom:548.514400pt;}
.y55{bottom:548.514533pt;}
.y2bc{bottom:548.760933pt;}
.y138{bottom:551.919067pt;}
.y227{bottom:554.781562pt;}
.yde{bottom:555.609948pt;}
.y19f{bottom:556.094917pt;}
.y1cf{bottom:556.167333pt;}
.y2b0{bottom:556.244371pt;}
.y16{bottom:556.850000pt;}
.y278{bottom:558.288533pt;}
.y16d{bottom:558.934856pt;}
.y1e2{bottom:559.574400pt;}
.y158{bottom:562.843001pt;}
.y2b1{bottom:566.098570pt;}
.y225{bottom:566.567031pt;}
.yc9{bottom:566.808133pt;}
.y349{bottom:567.058533pt;}
.y31a{bottom:567.143733pt;}
.y85{bottom:567.181067pt;}
.y54{bottom:567.181200pt;}
.y1bc{bottom:568.162000pt;}
.y299{bottom:570.649200pt;}
.y24d{bottom:572.130058pt;}
.y125{bottom:573.777444pt;}
.y15{bottom:574.454000pt;}
.ydd{bottom:577.440297pt;}
.y214{bottom:578.328322pt;}
.y1b3{bottom:580.265531pt;}
.y108{bottom:580.958133pt;}
.y161{bottom:582.372000pt;}
.y283{bottom:583.043467pt;}
.y2bb{bottom:584.600400pt;}
.y13c{bottom:584.732400pt;}
.y2a7{bottom:584.865871pt;}
.y348{bottom:585.730533pt;}
.y23a{bottom:585.796582pt;}
.y319{bottom:585.815733pt;}
.y84{bottom:585.847733pt;}
.y53{bottom:585.847867pt;}
.yf3{bottom:586.889258pt;}
.yc0{bottom:588.014090pt;}
.y21f{bottom:590.095995pt;}
.y2a9{bottom:590.929733pt;}
.y14{bottom:592.058000pt;}
.y1aa{bottom:592.323074pt;}
.y1e3{bottom:593.111333pt;}
.y27b{bottom:595.414026pt;}
.y11e{bottom:595.660267pt;}
.y232{bottom:597.695545pt;}
.y364{bottom:597.789867pt;}
.yd3{bottom:598.590933pt;}
.y1eb{bottom:601.879459pt;}
.yf8{bottom:602.047456pt;}
.y1a1{bottom:604.259277pt;}
.y347{bottom:604.402533pt;}
.y318{bottom:604.487733pt;}
.y83{bottom:604.514400pt;}
.y52{bottom:604.514533pt;}
.y169{bottom:606.076703pt;}
.y147{bottom:606.341800pt;}
.y185{bottom:607.096800pt;}
.y1d2{bottom:607.478703pt;}
.y2a1{bottom:607.808800pt;}
.y109{bottom:608.638045pt;}
.yda{bottom:609.195532pt;}
.y13{bottom:609.662000pt;}
.y23c{bottom:609.851543pt;}
.y2e3{bottom:611.470000pt;}
.y1e1{bottom:612.594486pt;}
.y1f5{bottom:613.849200pt;}
.y1be{bottom:616.325710pt;}
.y14b{bottom:617.264646pt;}
.y25c{bottom:618.906800pt;}
.yd2{bottom:619.785556pt;}
.y290{bottom:620.167213pt;}
.y253{bottom:622.625751pt;}
.y346{bottom:623.074533pt;}
.y317{bottom:623.159733pt;}
.y82{bottom:623.181067pt;}
.y51{bottom:623.181200pt;}
.y1c8{bottom:623.524400pt;}
.y2ab{bottom:623.631467pt;}
.y171{bottom:624.480800pt;}
.y184{bottom:624.581867pt;}
.y1d0{bottom:624.766133pt;}
.y20b{bottom:625.625733pt;}
.y2e6{bottom:626.396400pt;}
.y2e0{bottom:626.490267pt;}
.y363{bottom:626.498800pt;}
.y12{bottom:627.266000pt;}
.y142{bottom:628.223067pt;}
.y1ae{bottom:628.421733pt;}
.yb5{bottom:630.360000pt;}
.y28b{bottom:632.563919pt;}
.y25b{bottom:633.393467pt;}
.y2ea{bottom:633.716000pt;}
.y2f1{bottom:633.724800pt;}
.y2ae{bottom:636.058226pt;}
.y2b9{bottom:637.278157pt;}
.y220{bottom:637.416922pt;}
.y2d7{bottom:639.660000pt;}
.y2dd{bottom:639.668800pt;}
.y2da{bottom:639.678133pt;}
.y144{bottom:639.709244pt;}
.y1a5{bottom:640.481894pt;}
.yfe{bottom:640.558000pt;}
.yc3{bottom:640.980558pt;}
.y345{bottom:641.746533pt;}
.y316{bottom:641.831733pt;}
.y81{bottom:641.847733pt;}
.y50{bottom:641.847867pt;}
.y1da{bottom:642.584533pt;}
.y24c{bottom:644.745795pt;}
.y11{bottom:644.870000pt;}
.y28c{bottom:644.928400pt;}
.y2b7{bottom:646.076400pt;}
.y219{bottom:649.195493pt;}
.y15b{bottom:649.278933pt;}
.y1d4{bottom:649.399791pt;}
.y124{bottom:650.632933pt;}
.ycd{bottom:651.562797pt;}
.y1b9{bottom:652.410631pt;}
.y243{bottom:655.519336pt;}
.y29c{bottom:655.742533pt;}
.yf1{bottom:656.077380pt;}
.y1bf{bottom:656.436216pt;}
.y344{bottom:660.418533pt;}
.y315{bottom:660.503733pt;}
.y80{bottom:660.514400pt;}
.y4f{bottom:660.514533pt;}
.y204{bottom:660.969402pt;}
.y139{bottom:661.590673pt;}
.yba{bottom:662.145219pt;}
.y107{bottom:662.381600pt;}
.y10{bottom:662.474000pt;}
.y1a8{bottom:664.516933pt;}
.y28f{bottom:668.096800pt;}
.y2bf{bottom:670.928753pt;}
.y131{bottom:672.521500pt;}
.y1f4{bottom:672.736284pt;}
.yc8{bottom:672.750533pt;}
.y1ad{bottom:676.582533pt;}
.y23b{bottom:677.291847pt;}
.y16f{bottom:677.399200pt;}
.y343{bottom:679.090533pt;}
.y314{bottom:679.175733pt;}
.y7f{bottom:679.181067pt;}
.y4e{bottom:679.181200pt;}
.y106{bottom:679.309467pt;}
.yf{bottom:680.078000pt;}
.y2a4{bottom:680.492400pt;}
.y2c6{bottom:681.905333pt;}
.ye1{bottom:683.331215pt;}
.y11d{bottom:683.446533pt;}
.y2c0{bottom:683.518164pt;}
.y1ea{bottom:684.723955pt;}
.y1a2{bottom:688.685310pt;}
.y1c1{bottom:690.948133pt;}
.y29b{bottom:692.860933pt;}
.y1c5{bottom:693.219067pt;}
.y2b8{bottom:693.652800pt;}
.yc1{bottom:693.910400pt;}
.y11a{bottom:694.427059pt;}
.y21e{bottom:696.488241pt;}
.y342{bottom:697.762533pt;}
.y7e{bottom:697.847733pt;}
.y4d{bottom:697.847867pt;}
.y1a6{bottom:700.575453pt;}
.ye7{bottom:704.533333pt;}
.y237{bottom:704.624895pt;}
.y160{bottom:705.010800pt;}
.y281{bottom:705.257600pt;}
.y14d{bottom:705.347637pt;}
.y2c2{bottom:705.982533pt;}
.y1c0{bottom:707.643482pt;}
.ye{bottom:707.720267pt;}
.y203{bottom:708.262150pt;}
.y2c5{bottom:710.614267pt;}
.y1b6{bottom:712.666800pt;}
.y244{bottom:714.581263pt;}
.yae{bottom:714.830533pt;}
.y148{bottom:716.272667pt;}
.y341{bottom:716.434533pt;}
.y7d{bottom:716.514400pt;}
.y4c{bottom:716.514533pt;}
.y293{bottom:717.615441pt;}
.y1dd{bottom:719.192180pt;}
.y209{bottom:720.034721pt;}
.y2ad{bottom:720.948800pt;}
.y159{bottom:721.258807pt;}
.y19b{bottom:724.732400pt;}
.yb4{bottom:725.426764pt;}
.y240{bottom:725.599017pt;}
.y141{bottom:727.230189pt;}
.yf6{bottom:727.809467pt;}
.y313{bottom:729.280800pt;}
.y298{bottom:730.012358pt;}
.y1db{bottom:731.550196pt;}
.y1fc{bottom:731.801333pt;}
.y340{bottom:735.106533pt;}
.y7c{bottom:735.181067pt;}
.y4b{bottom:735.181200pt;}
.ybf{bottom:736.018133pt;}
.y199{bottom:736.842267pt;}
.y2ac{bottom:737.789861pt;}
.y120{bottom:738.156800pt;}
.y252{bottom:738.795901pt;}
.y1c7{bottom:741.593826pt;}
.y291{bottom:742.379921pt;}
.y201{bottom:743.579067pt;}
.yd5{bottom:747.134800pt;}
.y17a{bottom:748.544800pt;}
.y1b5{bottom:748.722492pt;}
.y12c{bottom:749.084933pt;}
.yed{bottom:753.431703pt;}
.y33f{bottom:753.778533pt;}
.y7b{bottom:753.847733pt;}
.y4a{bottom:753.847867pt;}
.y1d6{bottom:754.480210pt;}
.y27d{bottom:754.769372pt;}
.y1fe{bottom:755.579435pt;}
.ycf{bottom:757.743677pt;}
.y129{bottom:760.056667pt;}
.y1b8{bottom:760.830267pt;}
.y1de{bottom:764.945482pt;}
.y285{bottom:767.132073pt;}
.y1fa{bottom:767.365699pt;}
.yb3{bottom:768.317237pt;}
.y22f{bottom:769.114145pt;}
.y151{bottom:771.275333pt;}
.yee{bottom:771.421935pt;}
.y33e{bottom:772.450533pt;}
.y312{bottom:772.509067pt;}
.y7a{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.y1b4{bottom:772.926533pt;}
.y1c4{bottom:773.270436pt;}
.y187{bottom:773.751867pt;}
.y8{bottom:778.192667pt;}
.yb6{bottom:778.905543pt;}
.y210{bottom:779.126160pt;}
.y28a{bottom:779.522667pt;}
.y126{bottom:782.232267pt;}
.y163{bottom:782.743733pt;}
.y2b2{bottom:784.531602pt;}
.y1a4{bottom:784.995239pt;}
.y100{bottom:788.185733pt;}
.yca{bottom:789.526533pt;}
.y217{bottom:790.904667pt;}
.y33d{bottom:791.122533pt;}
.y79{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.y103{bottom:791.570800pt;}
.y27e{bottom:791.892400pt;}
.y122{bottom:793.163077pt;}
.y7{bottom:794.192667pt;}
.y1a0{bottom:796.916717pt;}
.y1d3{bottom:798.023047pt;}
.ya5{bottom:800.105867pt;}
.yf2{bottom:800.912501pt;}
.y1f7{bottom:802.673234pt;}
.y1dc{bottom:803.800800pt;}
.y149{bottom:804.084709pt;}
.y28d{bottom:804.287867pt;}
.y1b7{bottom:808.981467pt;}
.y16e{bottom:809.406622pt;}
.y33c{bottom:809.794533pt;}
.y78{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.yc5{bottom:810.685200pt;}
.y2af{bottom:810.781951pt;}
.y1cc{bottom:814.164310pt;}
.y20a{bottom:814.447600pt;}
.y311{bottom:814.692667pt;}
.y119{bottom:815.065826pt;}
.y2a0{bottom:816.643600pt;}
.y251{bottom:816.868855pt;}
.y195{bottom:821.090133pt;}
.ybc{bottom:821.293600pt;}
.yfd{bottom:822.957161pt;}
.y186{bottom:823.393733pt;}
.y265{bottom:823.929198pt;}
.y11c{bottom:825.987200pt;}
.y20f{bottom:826.212267pt;}
.y33b{bottom:828.466533pt;}
.y77{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.y28e{bottom:829.034699pt;}
.y233{bottom:829.342800pt;}
.y2b6{bottom:829.468749pt;}
.y15e{bottom:830.138400pt;}
.y1ce{bottom:830.273733pt;}
.ye0{bottom:831.874415pt;}
.y19c{bottom:833.156287pt;}
.yef{bottom:836.218667pt;}
.y133{bottom:836.920069pt;}
.y16c{bottom:837.489372pt;}
.y1ee{bottom:838.230667pt;}
.y264{bottom:838.410933pt;}
.y5{bottom:841.310933pt;}
.y288{bottom:841.407467pt;}
.y2a8{bottom:842.330933pt;}
.ya9{bottom:842.453467pt;}
.y1d9{bottom:844.110299pt;}
.y1b2{bottom:845.080933pt;}
.y1d1{bottom:846.953200pt;}
.y33a{bottom:847.138533pt;}
.y310{bottom:847.175867pt;}
.y76{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.y23d{bottom:847.404847pt;}
.y13a{bottom:847.873296pt;}
.yeb{bottom:848.235274pt;}
.y207{bottom:849.999502pt;}
.y16a{bottom:852.388800pt;}
.ydc{bottom:853.081460pt;}
.y29f{bottom:853.809765pt;}
.y1af{bottom:857.146533pt;}
.y242{bottom:857.859034pt;}
.y105{bottom:858.394667pt;}
.y130{bottom:858.804122pt;}
.y1f0{bottom:861.778416pt;}
.y101{bottom:862.629602pt;}
.yb8{bottom:863.656267pt;}
.y339{bottom:865.810533pt;}
.y2fb{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.y1cd{bottom:866.046667pt;}
.y2a2{bottom:866.158533pt;}
.y19a{bottom:869.244431pt;}
.y137{bottom:869.727067pt;}
.y183{bottom:872.567733pt;}
.y1f8{bottom:872.574451pt;}
.y4{bottom:874.034267pt;}
.ye8{bottom:874.236267pt;}
.y104{bottom:875.322800pt;}
.yf0{bottom:878.044933pt;}
.y297{bottom:878.555067pt;}
.y75{bottom:878.614133pt;}
.y1d7{bottom:878.651067pt;}
.y153{bottom:880.698267pt;}
.y1a9{bottom:881.305333pt;}
.y338{bottom:884.482533pt;}
.y2fa{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.ya7{bottom:884.844667pt;}
.y168{bottom:884.995660pt;}
.y1ef{bottom:885.316773pt;}
.y24a{bottom:885.736864pt;}
.y30f{bottom:889.359333pt;}
.y282{bottom:890.922667pt;}
.y134{bottom:891.364133pt;}
.y2a5{bottom:893.164994pt;}
.y1ac{bottom:893.226854pt;}
.yfb{bottom:895.325207pt;}
.yd8{bottom:895.421774pt;}
.y1c6{bottom:897.037312pt;}
.y1f6{bottom:897.080267pt;}
.y123{bottom:902.300532pt;}
.y337{bottom:903.154533pt;}
.y2f9{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y287{bottom:903.319467pt;}
.y3{bottom:903.364933pt;}
.y170{bottom:903.963846pt;}
.y1a3{bottom:905.337867pt;}
.yab{bottom:906.001774pt;}
.y1ff{bottom:908.941467pt;}
.y1c9{bottom:910.901867pt;}
.yf9{bottom:911.576933pt;}
.y13e{bottom:913.219569pt;}
.y286{bottom:915.677679pt;}
.ya4{bottom:916.584667pt;}
.y1a7{bottom:917.412118pt;}
.y202{bottom:920.840000pt;}
.y167{bottom:921.160267pt;}
.y336{bottom:921.826533pt;}
.y30e{bottom:921.831867pt;}
.y74{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.y14e{bottom:924.190793pt;}
.y1c2{bottom:924.739044pt;}
.yec{bottom:925.818837pt;}
.yc2{bottom:927.206800pt;}
.y27c{bottom:928.069200pt;}
.y1ab{bottom:929.499600pt;}
.y224{bottom:932.604447pt;}
.y2{bottom:932.695600pt;}
.y1c3{bottom:935.069469pt;}
.y12b{bottom:935.657429pt;}
.yd4{bottom:937.786800pt;}
.y2b4{bottom:938.064400pt;}
.y172{bottom:939.448562pt;}
.y182{bottom:940.145600pt;}
.y289{bottom:940.434431pt;}
.y335{bottom:940.498533pt;}
.y30d{bottom:940.503867pt;}
.y73{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.y1bd{bottom:941.397428pt;}
.yf7{bottom:942.608287pt;}
.y226{bottom:944.404299pt;}
.y15c{bottom:946.006565pt;}
.y128{bottom:946.586000pt;}
.yc6{bottom:948.368826pt;}
.y1d8{bottom:951.190133pt;}
.y294{bottom:952.833200pt;}
.y197{bottom:953.487600pt;}
.y21b{bottom:956.180375pt;}
.y102{bottom:956.336933pt;}
.y25a{bottom:956.870000pt;}
.y140{bottom:957.563293pt;}
.y181{bottom:957.630000pt;}
.yad{bottom:958.971179pt;}
.y334{bottom:959.170533pt;}
.y30c{bottom:959.175867pt;}
.y72{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.y2c3{bottom:960.770933pt;}
.y165{bottom:964.703010pt;}
.y295{bottom:965.190133pt;}
.y198{bottom:965.554400pt;}
.y1cb{bottom:967.326975pt;}
.y21d{bottom:967.940161pt;}
.y127{bottom:968.480794pt;}
.ya8{bottom:969.558303pt;}
.y2b3{bottom:970.134667pt;}
.y279{bottom:977.585867pt;}
.y19e{bottom:977.660398pt;}
.y333{bottom:977.842533pt;}
.y71{bottom:977.847733pt;}
.y3e{bottom:977.847867pt;}
.y132{bottom:979.412267pt;}
.y1e9{bottom:979.930267pt;}
.ybd{bottom:980.135200pt;}
.yd{bottom:986.502667pt;}
.y304{bottom:988.062933pt;}
.y2f8{bottom:989.062933pt;}
.y1b1{bottom:989.552304pt;}
.y27a{bottom:989.953467pt;}
.y14c{bottom:990.368800pt;}
.ydf{bottom:990.760623pt;}
.y20d{bottom:991.707333pt;}
.y179{bottom:994.150401pt;}
.yea{bottom:994.918933pt;}
.y70{bottom:996.514400pt;}
.y3d{bottom:996.514533pt;}
.y1d5{bottom:996.620595pt;}
.y30b{bottom:1000.401600pt;}
.yb2{bottom:1001.078930pt;}
.y136{bottom:1001.297133pt;}
.y19d{bottom:1001.654000pt;}
.y29e{bottom:1002.352475pt;}
.y22a{bottom:1003.464505pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h49{height:22.877896pt;}
.h35{height:26.940017pt;}
.h31{height:26.967609pt;}
.h34{height:26.973368pt;}
.h33{height:27.054125pt;}
.h32{height:27.279480pt;}
.h36{height:27.366996pt;}
.h45{height:28.420015pt;}
.h3d{height:29.530539pt;}
.h3e{height:29.625477pt;}
.h43{height:29.731771pt;}
.h44{height:29.763489pt;}
.h3f{height:29.872049pt;}
.h40{height:29.968084pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h15{height:31.591219pt;}
.h16{height:31.692664pt;}
.h2b{height:31.789516pt;}
.h2d{height:31.891727pt;}
.h17{height:31.956559pt;}
.h18{height:32.059178pt;}
.h2e{height:32.157149pt;}
.h2c{height:32.260542pt;}
.h23{height:32.629789pt;}
.h24{height:32.634499pt;}
.h22{height:32.733914pt;}
.h25{height:32.734037pt;}
.h37{height:33.586510pt;}
.h3a{height:33.668906pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h46{height:35.309896pt;}
.h48{height:35.316296pt;}
.h47{height:35.319496pt;}
.h39{height:35.673672pt;}
.h38{height:35.761188pt;}
.h30{height:38.212344pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.h1c{height:39.344375pt;}
.h19{height:39.440990pt;}
.h5{height:40.375000pt;}
.h9{height:40.546875pt;}
.h10{height:40.600021pt;}
.h26{height:40.737083pt;}
.h1a{height:41.789347pt;}
.h1b{height:41.891965pt;}
.h3c{height:42.967636pt;}
.h27{height:43.162498pt;}
.h28{height:43.268602pt;}
.h41{height:44.000000pt;}
.h11{height:44.601562pt;}
.h13{height:44.772219pt;}
.h2a{height:45.081148pt;}
.ha{height:45.398438pt;}
.h4a{height:45.419771pt;}
.h20{height:46.238008pt;}
.h14{height:47.076347pt;}
.h1e{height:47.455142pt;}
.h1f{height:48.617587pt;}
.hb{height:48.656250pt;}
.hc{height:50.442708pt;}
.h42{height:53.737104pt;}
.h4{height:55.486979pt;}
.h3{height:72.205729pt;}
.h29{height:525.893333pt;}
.h3b{height:576.661333pt;}
.h21{height:742.312000pt;}
.h1d{height:744.000000pt;}
.h12{height:801.354667pt;}
.h2f{height:801.998667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:477.556000pt;}
.w6{width:497.529333pt;}
.w2{width:548.766667pt;}
.w4{width:573.281333pt;}
.w5{width:606.689333pt;}
.w8{width:619.752000pt;}
.w3{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa1{left:14.930607pt;}
.x39{left:16.813903pt;}
.x93{left:51.550301pt;}
.x67{left:57.493943pt;}
.x2{left:65.763733pt;}
.xb{left:95.167867pt;}
.xc{left:96.257467pt;}
.x9f{left:102.092000pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x3a{left:112.772000pt;}
.xb8{left:115.299200pt;}
.x85{left:117.087733pt;}
.x64{left:120.965333pt;}
.x5b{left:122.421867pt;}
.x8e{left:123.936533pt;}
.x5c{left:125.773381pt;}
.x63{left:127.629467pt;}
.x82{left:131.139467pt;}
.x91{left:134.227067pt;}
.xd{left:137.585333pt;}
.x8f{left:139.187634pt;}
.xba{left:141.393600pt;}
.xb0{left:142.644727pt;}
.x33{left:145.991200pt;}
.x79{left:148.488872pt;}
.xb5{left:150.157490pt;}
.xb7{left:152.092230pt;}
.x5e{left:153.632631pt;}
.xb9{left:155.430933pt;}
.x5f{left:157.347700pt;}
.x29{left:158.649503pt;}
.x2d{left:160.478197pt;}
.x2b{left:161.993733pt;}
.x60{left:163.323621pt;}
.x2f{left:165.418232pt;}
.x31{left:166.407956pt;}
.x5a{left:168.014183pt;}
.x2c{left:169.926225pt;}
.x2a{left:172.890531pt;}
.x53{left:174.629745pt;}
.x32{left:175.669200pt;}
.x27{left:178.037096pt;}
.x58{left:179.081543pt;}
.x30{left:181.209829pt;}
.x2e{left:182.507467pt;}
.x28{left:183.711514pt;}
.x26{left:186.031867pt;}
.xa4{left:189.987747pt;}
.x9e{left:191.303782pt;}
.xa8{left:192.460000pt;}
.x98{left:194.148587pt;}
.x9b{left:195.852027pt;}
.xf{left:198.649067pt;}
.x62{left:201.070210pt;}
.x96{left:203.179296pt;}
.x97{left:204.870792pt;}
.x99{left:205.838704pt;}
.x59{left:206.828800pt;}
.x9d{left:207.871046pt;}
.x56{left:208.977353pt;}
.x11{left:210.563867pt;}
.x1f{left:212.133969pt;}
.x24{left:213.030800pt;}
.x9c{left:214.712207pt;}
.x5d{left:215.641333pt;}
.x1e{left:216.727786pt;}
.x87{left:218.077025pt;}
.x1a{left:220.256267pt;}
.x15{left:222.194933pt;}
.xbb{left:223.253333pt;}
.x1b{left:224.292141pt;}
.x22{left:226.777333pt;}
.x84{left:227.871467pt;}
.x14{left:229.068400pt;}
.x1d{left:230.341603pt;}
.x19{left:231.746533pt;}
.x1c{left:233.332933pt;}
.x21{left:235.370489pt;}
.x9a{left:236.788589pt;}
.x12{left:237.738667pt;}
.x18{left:240.200602pt;}
.x17{left:243.026000pt;}
.x16{left:244.056837pt;}
.x4d{left:245.026533pt;}
.x44{left:245.922358pt;}
.x40{left:247.029333pt;}
.x13{left:247.960133pt;}
.x4b{left:248.987331pt;}
.x51{left:250.066556pt;}
.x25{left:251.872800pt;}
.x3f{left:253.401467pt;}
.x3e{left:255.207428pt;}
.xbc{left:256.151067pt;}
.x50{left:257.771333pt;}
.x23{left:259.098133pt;}
.x20{left:261.884096pt;}
.x52{left:263.262400pt;}
.x45{left:264.718933pt;}
.x4{left:266.834667pt;}
.x57{left:267.971425pt;}
.x4a{left:269.619028pt;}
.x3d{left:271.646892pt;}
.x8a{left:272.649974pt;}
.x94{left:274.135333pt;}
.x54{left:275.468933pt;}
.x49{left:276.375433pt;}
.x3c{left:279.474667pt;}
.x95{left:280.901805pt;}
.x5{left:281.954667pt;}
.x61{left:284.285957pt;}
.x8d{left:287.051661pt;}
.x42{left:292.033681pt;}
.x55{left:294.794108pt;}
.xbd{left:296.609467pt;}
.x8c{left:298.057525pt;}
.x4e{left:299.865886pt;}
.x7f{left:301.651035pt;}
.xb4{left:307.578000pt;}
.x41{left:310.134133pt;}
.x88{left:312.538323pt;}
.x43{left:314.278650pt;}
.x72{left:315.437862pt;}
.x81{left:316.973600pt;}
.x4c{left:320.519333pt;}
.x46{left:324.137312pt;}
.xbe{left:325.057467pt;}
.x48{left:326.338415pt;}
.xb3{left:330.050428pt;}
.x47{left:334.183238pt;}
.x86{left:335.709333pt;}
.x71{left:338.025286pt;}
.x4f{left:340.697559pt;}
.x34{left:342.956933pt;}
.x6c{left:349.449333pt;}
.x3{left:352.045067pt;}
.x6a{left:353.565333pt;}
.x7a{left:354.984800pt;}
.xb6{left:360.051333pt;}
.x7b{left:361.187067pt;}
.x69{left:366.865067pt;}
.x70{left:370.201293pt;}
.xab{left:372.492677pt;}
.x10{left:374.002400pt;}
.x7e{left:377.547217pt;}
.x78{left:380.206933pt;}
.xbf{left:381.955867pt;}
.x74{left:383.367989pt;}
.x7c{left:385.159287pt;}
.xaf{left:388.948667pt;}
.x3b{left:393.341333pt;}
.x8b{left:395.892133pt;}
.xc0{left:398.401200pt;}
.x68{left:406.295067pt;}
.x90{left:411.249333pt;}
.xb1{left:422.849467pt;}
.xaa{left:425.950267pt;}
.xc1{left:426.850000pt;}
.xa9{left:428.280850pt;}
.xa2{left:434.201600pt;}
.xc2{left:443.296133pt;}
.x77{left:448.964099pt;}
.xb2{left:451.600400pt;}
.xc3{left:455.302267pt;}
.x80{left:456.618480pt;}
.x89{left:462.394553pt;}
.x83{left:464.658283pt;}
.xa6{left:467.269600pt;}
.xc4{left:471.747600pt;}
.x92{left:477.542133pt;}
.xc5{left:483.750267pt;}
.x6d{left:486.977958pt;}
.x76{left:488.408133pt;}
.x73{left:493.191467pt;}
.xc6{left:500.199867pt;}
.x6e{left:510.265467pt;}
.x6f{left:514.140760pt;}
.xae{left:517.499333pt;}
.xe{left:525.348800pt;}
.x7d{left:527.681143pt;}
.xc7{left:528.648800pt;}
.x6b{left:530.875733pt;}
.x35{left:543.116400pt;}
.x36{left:545.653067pt;}
.xad{left:546.567600pt;}
.x75{left:547.731092pt;}
.xac{left:549.575295pt;}
.x37{left:551.110000pt;}
.xa3{left:552.059733pt;}
.xa7{left:556.838800pt;}
.xa5{left:559.966533pt;}
.x65{left:564.694267pt;}
.xc8{left:573.542933pt;}
.xa{left:574.698933pt;}
.xa0{left:581.970667pt;}
.x66{left:583.109467pt;}
.xc9{left:585.546400pt;}
.x38{left:590.209867pt;}
.x9{left:594.026933pt;}
.xca{left:601.991733pt;}
.xcb{left:613.994400pt;}
.xcc{left:631.001600pt;}
.xcd{left:646.112267pt;}
.xce{left:655.001600pt;}
.xcf{left:670.112267pt;}
.xd0{left:679.001600pt;}
.xd1{left:691.001600pt;}
.xd2{left:703.001600pt;}
.x1{left:712.140000pt;}
}




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