
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;font-style:normal;font-weight: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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;font-style:normal;font-weight: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_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;font-style:normal;font-weight: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_5c79cd15ba2482f0b6b1325b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991000;font-style:normal;font-weight: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_40728514c94f1ea32a88d398.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.226000;font-style:normal;font-weight: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_4ff62d1730d2e61b74f4eb7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_67a358a64add6b912543cd97.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_797e4011ed514c5052ad8747.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.761000;font-style:normal;font-weight: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_c1a68b75014b4786f36f2801.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;font-style:normal;font-weight: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_274b3a0a96ecd01a6d3bb02a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3257ee0840eabe9956da5b2c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_37378eba408746b6ce3c5cdb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.487000;font-style:normal;font-weight: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_91277b56091f6afddb9e65dc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight: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_3dce37870a6ecbe0a3e11f90.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.009766;font-style:normal;font-weight: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_efc6ebe50256f578e4ecdd26.woff2')format("woff");}.fff{font-family:fff;line-height:1.215332;font-style:normal;font-weight: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_d62f16d1b6bce063cf6b4ecd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.937000;font-style:normal;font-weight: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_00772a8f9e17b67f4ef949df.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight: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_461e6669250e532a830cd010.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.009766;font-style:normal;font-weight: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_58cfd1de36b81b1d4e7bb7ed.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.215332;font-style:normal;font-weight: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_b57badc8a040983ac8cddcb7.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.024414;font-style:normal;font-weight: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_cab2330d739d5e2e95e17ba0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.861328;font-style:normal;font-weight: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_0b8a4d31b2ee3a79bc6ea208.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c5821a16c2237b67f5290e9d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938965;font-style:normal;font-weight: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_d949bee29b97fde99f97f3ea.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;font-style:normal;font-weight: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_27e75f27faf74e0b0077aca6.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.009766;font-style:normal;font-weight: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_545e68b383a78d1fc870efc4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.215332;font-style:normal;font-weight: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_2619abf87e661e2e4f5ef4eb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.696777;font-style:normal;font-weight: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_0b6adae2636080bcf359ad05.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.156000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25{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);}
.m9{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m27{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.va{vertical-align:-69.837768px;}
.v9{vertical-align:-40.319748px;}
.vd{vertical-align:-25.199244px;}
.v5{vertical-align:-21.696000px;}
.v2{vertical-align:-17.358000px;}
.v8{vertical-align:-15.120000px;}
.v4{vertical-align:-10.920000px;}
.v10{vertical-align:-9.228000px;}
.v6{vertical-align:-8.070000px;}
.vb{vertical-align:-1.441188px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:3.241476px;}
.vf{vertical-align:10.920000px;}
.v7{vertical-align:15.106140px;}
.v3{vertical-align:17.358000px;}
.ve{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.ls33{letter-spacing:-0.334800px;}
.ls2f{letter-spacing:-0.282564px;}
.ls63{letter-spacing:-0.270540px;}
.ls61{letter-spacing:-0.186372px;}
.ls32{letter-spacing:-0.172800px;}
.ls60{letter-spacing:-0.168336px;}
.ls64{letter-spacing:-0.162324px;}
.ls5d{letter-spacing:-0.151200px;}
.ls30{letter-spacing:-0.150300px;}
.ls38{letter-spacing:-0.144288px;}
.ls69{letter-spacing:-0.143086px;}
.ls52{letter-spacing:-0.138276px;}
.ls66{letter-spacing:-0.132264px;}
.ls31{letter-spacing:-0.114228px;}
.ls5a{letter-spacing:-0.105336px;}
.ls54{letter-spacing:-0.102204px;}
.ls3e{letter-spacing:-0.090180px;}
.ls2e{letter-spacing:-0.084168px;}
.ls51{letter-spacing:-0.078156px;}
.ls4f{letter-spacing:-0.072144px;}
.ls62{letter-spacing:-0.066132px;}
.ls37{letter-spacing:-0.060120px;}
.ls55{letter-spacing:-0.054108px;}
.ls58{letter-spacing:-0.054000px;}
.ls50{letter-spacing:-0.048096px;}
.ls5c{letter-spacing:-0.043200px;}
.ls39{letter-spacing:-0.042084px;}
.ls57{letter-spacing:-0.037800px;}
.ls3b{letter-spacing:-0.036072px;}
.ls40{letter-spacing:-0.030060px;}
.ls2d{letter-spacing:-0.024048px;}
.ls3d{letter-spacing:-0.018036px;}
.ls59{letter-spacing:-0.014364px;}
.ls3c{letter-spacing:-0.012024px;}
.ls3f{letter-spacing:-0.006012px;}
.ls34{letter-spacing:-0.005400px;}
.lsc{letter-spacing:0.000000px;}
.ls7a{letter-spacing:0.000478px;}
.ls11{letter-spacing:0.000612px;}
.lsf{letter-spacing:0.000638px;}
.ls79{letter-spacing:0.000800px;}
.ls7d{letter-spacing:0.001036px;}
.ls7c{letter-spacing:0.001155px;}
.ls73{letter-spacing:0.001584px;}
.ls7f{letter-spacing:0.002544px;}
.ls5{letter-spacing:0.002725px;}
.ls7e{letter-spacing:0.003075px;}
.ls76{letter-spacing:0.003239px;}
.ls7{letter-spacing:0.003488px;}
.ls47{letter-spacing:0.006012px;}
.ls35{letter-spacing:0.006624px;}
.ls3a{letter-spacing:0.007200px;}
.ls5b{letter-spacing:0.009576px;}
.ls1a{letter-spacing:0.010800px;}
.ls25{letter-spacing:0.012024px;}
.ls4b{letter-spacing:0.014364px;}
.ls21{letter-spacing:0.016200px;}
.ls27{letter-spacing:0.018036px;}
.ls1c{letter-spacing:0.021600px;}
.ls24{letter-spacing:0.024048px;}
.ls1b{letter-spacing:0.027000px;}
.ls45{letter-spacing:0.030060px;}
.ls22{letter-spacing:0.032400px;}
.ls41{letter-spacing:0.033516px;}
.ls44{letter-spacing:0.036072px;}
.ls18{letter-spacing:0.037800px;}
.ls23{letter-spacing:0.042084px;}
.ls13{letter-spacing:0.043092px;}
.ls20{letter-spacing:0.043200px;}
.ls26{letter-spacing:0.048096px;}
.ls19{letter-spacing:0.048600px;}
.ls16{letter-spacing:0.054108px;}
.ls5e{letter-spacing:0.060120px;}
.ls1d{letter-spacing:0.064800px;}
.ls49{letter-spacing:0.066132px;}
.ls17{letter-spacing:0.072144px;}
.ls56{letter-spacing:0.078156px;}
.ls28{letter-spacing:0.084168px;}
.ls4a{letter-spacing:0.091800px;}
.ls4d{letter-spacing:0.095760px;}
.ls5f{letter-spacing:0.096192px;}
.ls4e{letter-spacing:0.110124px;}
.ls53{letter-spacing:0.132264px;}
.ls1e{letter-spacing:0.140400px;}
.ls36{letter-spacing:0.145800px;}
.ls1f{letter-spacing:0.156600px;}
.ls43{letter-spacing:0.167580px;}
.ls15{letter-spacing:0.177156px;}
.ls46{letter-spacing:0.180360px;}
.ls42{letter-spacing:0.181944px;}
.ls14{letter-spacing:0.191520px;}
.ls48{letter-spacing:0.246492px;}
.ls72{letter-spacing:0.503764px;}
.lsd{letter-spacing:0.542815px;}
.lse{letter-spacing:0.548815px;}
.ls2b{letter-spacing:0.651088px;}
.ls2a{letter-spacing:0.673133px;}
.ls6c{letter-spacing:0.697660px;}
.ls6b{letter-spacing:0.746725px;}
.lsb{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls6d{letter-spacing:2.986514px;}
.ls29{letter-spacing:2.988600px;}
.ls3{letter-spacing:2.989200px;}
.ls2c{letter-spacing:2.989490px;}
.ls71{letter-spacing:3.359510px;}
.ls6f{letter-spacing:3.559200px;}
.ls65{letter-spacing:3.691368px;}
.ls12{letter-spacing:3.733200px;}
.ls6e{letter-spacing:3.739200px;}
.ls1{letter-spacing:10.455300px;}
.lsa{letter-spacing:11.954850px;}
.ls74{letter-spacing:13.448400px;}
.ls75{letter-spacing:13.454400px;}
.ls80{letter-spacing:13.568767px;}
.ls7b{letter-spacing:13.654270px;}
.ls81{letter-spacing:13.684546px;}
.ls77{letter-spacing:13.691576px;}
.ls78{letter-spacing:14.550400px;}
.ls4{letter-spacing:14.944200px;}
.ls8{letter-spacing:15.394200px;}
.ls6a{letter-spacing:15.657483px;}
.ls68{letter-spacing:16.437797px;}
.ls67{letter-spacing:16.442932px;}
.ls70{letter-spacing:16.500600px;}
.ls10{letter-spacing:19.218113px;}
.ls2{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls9{letter-spacing:64.321654px;}
.ls4c{letter-spacing:217.451808px;}
.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;}
}
.wsa8{word-spacing:-230.762448px;}
.ws9b{word-spacing:-60.120000px;}
.ws9c{word-spacing:-36.000000px;}
.wsf9{word-spacing:-15.066072px;}
.ws9d{word-spacing:-15.030000px;}
.wsa0{word-spacing:-15.023988px;}
.ws4c{word-spacing:-15.005952px;}
.wsf7{word-spacing:-14.993928px;}
.wsf8{word-spacing:-14.987916px;}
.wsfa{word-spacing:-14.963868px;}
.ws9f{word-spacing:-14.951844px;}
.wsfb{word-spacing:-14.945832px;}
.ws19{word-spacing:-14.943900px;}
.wsa2{word-spacing:-13.537800px;}
.ws4d{word-spacing:-13.527000px;}
.ws4f{word-spacing:-13.494600px;}
.wsa1{word-spacing:-13.462200px;}
.ws26{word-spacing:-13.449600px;}
.wsaa{word-spacing:-13.420764px;}
.wsa9{word-spacing:-13.406400px;}
.wsa7{word-spacing:-13.205304px;}
.ws4e{word-spacing:-13.165200px;}
.ws4a{word-spacing:-12.161520px;}
.ws9a{word-spacing:-12.151944px;}
.ws4b{word-spacing:-11.970000px;}
.ws36{word-spacing:-11.955150px;}
.ws14{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws9e{word-spacing:-9.000000px;}
.ws126{word-spacing:-3.180348px;}
.ws127{word-spacing:-3.072132px;}
.ws138{word-spacing:-3.048556px;}
.wsf1{word-spacing:-2.861712px;}
.wsc3{word-spacing:-2.819628px;}
.wsd2{word-spacing:-2.801592px;}
.wsfd{word-spacing:-2.749678px;}
.wsd1{word-spacing:-2.687364px;}
.ws137{word-spacing:-2.630126px;}
.wseb{word-spacing:-2.476944px;}
.wsc4{word-spacing:-2.470932px;}
.wsec{word-spacing:-2.464920px;}
.ws7b{word-spacing:-2.446884px;}
.wsc2{word-spacing:-2.422836px;}
.ws94{word-spacing:-2.391024px;}
.ws12b{word-spacing:-2.344680px;}
.ws12d{word-spacing:-2.326644px;}
.ws83{word-spacing:-2.308608px;}
.ws140{word-spacing:-2.271473px;}
.wsf3{word-spacing:-2.211697px;}
.ws84{word-spacing:-2.110212px;}
.ws143{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.ws14f{word-spacing:-1.882944px;}
.ws139{word-spacing:-1.853044px;}
.ws11a{word-spacing:-1.731456px;}
.ws150{word-spacing:-1.721549px;}
.wsbb{word-spacing:-1.659312px;}
.ws13a{word-spacing:-1.554166px;}
.wsf6{word-spacing:-1.434614px;}
.ws65{word-spacing:-1.418832px;}
.wsca{word-spacing:-1.400796px;}
.ws92{word-spacing:-1.340676px;}
.ws0{word-spacing:-1.322630px;}
.ws93{word-spacing:-1.316628px;}
.wsbc{word-spacing:-1.262520px;}
.ws7{word-spacing:-1.171598px;}
.ws3e{word-spacing:-1.135736px;}
.ws3d{word-spacing:-1.075961px;}
.ws108{word-spacing:-1.070136px;}
.ws64{word-spacing:-1.064124px;}
.ws9{word-spacing:-1.046070px;}
.ws3c{word-spacing:-0.956410px;}
.wsdf{word-spacing:-0.943884px;}
.ws24{word-spacing:-0.914573px;}
.wse0{word-spacing:-0.877752px;}
.ws134{word-spacing:-0.836858px;}
.ws107{word-spacing:-0.823644px;}
.ws133{word-spacing:-0.777083px;}
.ws5b{word-spacing:-0.657532px;}
.ws66{word-spacing:-0.625248px;}
.ws171{word-spacing:-0.591782px;}
.ws73{word-spacing:-0.577800px;}
.ws72{word-spacing:-0.556200px;}
.ws67{word-spacing:-0.474948px;}
.ws45{word-spacing:-0.418429px;}
.ws170{word-spacing:-0.376589px;}
.ws2a{word-spacing:-0.358654px;}
.wsf0{word-spacing:-0.336672px;}
.ws22{word-spacing:-0.322790px;}
.wsed{word-spacing:-0.312624px;}
.ws33{word-spacing:-0.298878px;}
.ws60{word-spacing:-0.277704px;}
.wsb6{word-spacing:-0.272916px;}
.ws1f{word-spacing:-0.268992px;}
.ws8e{word-spacing:-0.252504px;}
.ws8b{word-spacing:-0.246492px;}
.ws10b{word-spacing:-0.240480px;}
.ws2b{word-spacing:-0.239102px;}
.ws10a{word-spacing:-0.228456px;}
.ws8d{word-spacing:-0.222444px;}
.ws54{word-spacing:-0.215194px;}
.ws105{word-spacing:-0.192384px;}
.ws2e{word-spacing:-0.179327px;}
.ws8c{word-spacing:-0.174348px;}
.ws53{word-spacing:-0.161395px;}
.ws68{word-spacing:-0.150300px;}
.ws12c{word-spacing:-0.138276px;}
.ws61{word-spacing:-0.129276px;}
.wsb7{word-spacing:-0.124488px;}
.ws7d{word-spacing:-0.120240px;}
.ws37{word-spacing:-0.119551px;}
.ws146{word-spacing:-0.107597px;}
.ws12{word-spacing:-0.059776px;}
.wsad{word-spacing:-0.053798px;}
.ws1c{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.041843px;}
.ws106{word-spacing:-0.006012px;}
.ws13{word-spacing:-0.003900px;}
.ws32{word-spacing:-0.003656px;}
.ws17{word-spacing:-0.003592px;}
.ws31{word-spacing:-0.002412px;}
.ws16{word-spacing:-0.000724px;}
.ws3{word-spacing:0.000000px;}
.ws15{word-spacing:0.001792px;}
.ws1a{word-spacing:0.002375px;}
.ws18{word-spacing:0.002717px;}
.wse1{word-spacing:0.024048px;}
.ws1d{word-spacing:0.047821px;}
.ws21{word-spacing:0.053798px;}
.wsb8{word-spacing:0.054108px;}
.ws2f{word-spacing:0.059776px;}
.ws10c{word-spacing:0.084168px;}
.ws117{word-spacing:0.090180px;}
.ws1b{word-spacing:0.095641px;}
.ws23{word-spacing:0.107597px;}
.ws10f{word-spacing:0.108216px;}
.ws11f{word-spacing:0.113400px;}
.ws29{word-spacing:0.119551px;}
.wsee{word-spacing:0.132264px;}
.wse7{word-spacing:0.140400px;}
.ws77{word-spacing:0.151200px;}
.ws79{word-spacing:0.156312px;}
.ws1e{word-spacing:0.161395px;}
.wsba{word-spacing:0.162324px;}
.wse6{word-spacing:0.167400px;}
.ws78{word-spacing:0.172800px;}
.wsb9{word-spacing:0.174348px;}
.ws120{word-spacing:0.178200px;}
.ws2c{word-spacing:0.179327px;}
.ws125{word-spacing:0.180360px;}
.ws153{word-spacing:0.215194px;}
.ws30{word-spacing:0.239102px;}
.ws152{word-spacing:0.268992px;}
.ws39{word-spacing:0.298878px;}
.wsb5{word-spacing:0.358654px;}
.ws165{word-spacing:0.376589px;}
.wsc1{word-spacing:0.402804px;}
.ws7c{word-spacing:0.414828px;}
.ws44{word-spacing:0.418429px;}
.wse9{word-spacing:0.444888px;}
.wsea{word-spacing:0.462924px;}
.ws132{word-spacing:0.537980px;}
.ws151{word-spacing:0.537984px;}
.ws11d{word-spacing:0.589176px;}
.ws11e{word-spacing:0.637272px;}
.wsdd{word-spacing:0.733464px;}
.ws14d{word-spacing:0.753178px;}
.ws161{word-spacing:0.806976px;}
.ws91{word-spacing:0.859716px;}
.ws96{word-spacing:0.896634px;}
.ws11b{word-spacing:0.913824px;}
.wsdc{word-spacing:0.961920px;}
.ws55{word-spacing:0.968371px;}
.ws8{word-spacing:1.004227px;}
.ws56{word-spacing:1.016185px;}
.ws14e{word-spacing:1.022170px;}
.ws5f{word-spacing:1.075961px;}
.ws163{word-spacing:1.075968px;}
.ws34{word-spacing:1.135736px;}
.ws104{word-spacing:1.160316px;}
.ws95{word-spacing:1.195512px;}
.ws11c{word-spacing:1.202400px;}
.ws2d{word-spacing:1.255288px;}
.ws116{word-spacing:1.262520px;}
.ws115{word-spacing:1.310616px;}
.ws58{word-spacing:1.315063px;}
.ws16a{word-spacing:1.344960px;}
.ws99{word-spacing:1.374839px;}
.wsac{word-spacing:1.398758px;}
.ws101{word-spacing:1.434614px;}
.ws48{word-spacing:1.494390px;}
.ws157{word-spacing:1.506355px;}
.ws87{word-spacing:1.551096px;}
.ws113{word-spacing:1.587168px;}
.ws6e{word-spacing:1.598400px;}
.ws114{word-spacing:1.605204px;}
.ws135{word-spacing:1.613941px;}
.ws156{word-spacing:1.613952px;}
.ws88{word-spacing:1.653300px;}
.wsab{word-spacing:1.667750px;}
.wsf5{word-spacing:1.733492px;}
.ws169{word-spacing:1.775347px;}
.ws3b{word-spacing:1.793268px;}
.ws6d{word-spacing:1.798200px;}
.ws112{word-spacing:1.833660px;}
.ws10e{word-spacing:1.851696px;}
.ws5c{word-spacing:1.853044px;}
.ws49{word-spacing:1.912819px;}
.ws10d{word-spacing:1.917828px;}
.ws28{word-spacing:1.972595px;}
.ws147{word-spacing:1.990541px;}
.ws168{word-spacing:2.151936px;}
.ws12e{word-spacing:2.188368px;}
.wsfe{word-spacing:2.211697px;}
.ws129{word-spacing:2.254500px;}
.ws40{word-spacing:2.271473px;}
.ws12f{word-spacing:2.296584px;}
.ws5e{word-spacing:2.331248px;}
.ws119{word-spacing:2.338668px;}
.ws12a{word-spacing:2.362716px;}
.ws97{word-spacing:2.391024px;}
.ws3a{word-spacing:2.450800px;}
.ws14a{word-spacing:2.474726px;}
.ws2{word-spacing:2.511541px;}
.ws51{word-spacing:2.528525px;}
.ws8f{word-spacing:2.531052px;}
.wsb2{word-spacing:2.570351px;}
.wsef{word-spacing:2.573136px;}
.ws52{word-spacing:2.582323px;}
.wsda{word-spacing:2.609208px;}
.ws118{word-spacing:2.627244px;}
.ws59{word-spacing:2.630126px;}
.ws122{word-spacing:2.645280px;}
.ws90{word-spacing:2.651292px;}
.ws70{word-spacing:2.662200px;}
.wsdb{word-spacing:2.669328px;}
.ws13c{word-spacing:2.689902px;}
.ws148{word-spacing:2.689920px;}
.ws71{word-spacing:2.705400px;}
.ws6f{word-spacing:2.710800px;}
.ws98{word-spacing:2.749678px;}
.ws121{word-spacing:2.771532px;}
.ws14c{word-spacing:2.797517px;}
.ws50{word-spacing:2.851315px;}
.ws47{word-spacing:2.869229px;}
.ws14b{word-spacing:2.905114px;}
.ws85{word-spacing:2.957904px;}
.wsd4{word-spacing:2.993976px;}
.ws86{word-spacing:3.012012px;}
.ws109{word-spacing:3.018024px;}
.ws142{word-spacing:3.108331px;}
.ws174{word-spacing:3.220608px;}
.ws17a{word-spacing:3.222547px;}
.ws16c{word-spacing:3.224352px;}
.ws13b{word-spacing:3.227882px;}
.ws160{word-spacing:3.227904px;}
.wsd3{word-spacing:3.282552px;}
.wsfc{word-spacing:3.287658px;}
.ws141{word-spacing:3.347434px;}
.ws130{word-spacing:3.407209px;}
.wsbd{word-spacing:3.408804px;}
.wsbe{word-spacing:3.414816px;}
.ws63{word-spacing:3.420828px;}
.ws131{word-spacing:3.526760px;}
.ws27{word-spacing:3.586536px;}
.ws128{word-spacing:3.655296px;}
.wsde{word-spacing:3.673332px;}
.ws111{word-spacing:3.715416px;}
.ws110{word-spacing:3.721428px;}
.wse4{word-spacing:3.742200px;}
.wse2{word-spacing:3.753000px;}
.wse8{word-spacing:3.763512px;}
.wse3{word-spacing:3.769200px;}
.ws38{word-spacing:3.825638px;}
.wse5{word-spacing:3.834000px;}
.ws13f{word-spacing:3.885414px;}
.ws177{word-spacing:3.927283px;}
.wsb3{word-spacing:4.004965px;}
.ws102{word-spacing:4.064741px;}
.wsd5{word-spacing:4.082148px;}
.wsd6{word-spacing:4.088160px;}
.ws41{word-spacing:4.244068px;}
.ws42{word-spacing:4.303843px;}
.ws100{word-spacing:4.423394px;}
.ws76{word-spacing:4.465800px;}
.ws75{word-spacing:4.487400px;}
.ws74{word-spacing:4.492800px;}
.ws43{word-spacing:4.662497px;}
.ws7a{word-spacing:4.737456px;}
.wsc0{word-spacing:4.743468px;}
.wsf{word-spacing:4.770079px;}
.ws10{word-spacing:4.853765px;}
.ws173{word-spacing:4.895654px;}
.wsbf{word-spacing:4.905792px;}
.ws16b{word-spacing:4.949453px;}
.wsd0{word-spacing:4.995972px;}
.wsce{word-spacing:5.086152px;}
.wscf{word-spacing:5.098176px;}
.ws7e{word-spacing:5.116212px;}
.wsd7{word-spacing:5.122224px;}
.ws82{word-spacing:5.128236px;}
.wsc9{word-spacing:5.146272px;}
.ws7f{word-spacing:5.158296px;}
.wsc8{word-spacing:5.164308px;}
.ws145{word-spacing:5.164646px;}
.wsd9{word-spacing:5.176332px;}
.wsd8{word-spacing:5.182344px;}
.ws178{word-spacing:5.218445px;}
.wsae{word-spacing:5.320028px;}
.ws149{word-spacing:5.379840px;}
.ws81{word-spacing:5.470920px;}
.ws144{word-spacing:5.487437px;}
.ws80{word-spacing:5.537052px;}
.ws6b{word-spacing:5.562000px;}
.ws5a{word-spacing:5.618906px;}
.ws176{word-spacing:5.648832px;}
.ws124{word-spacing:5.873724px;}
.ws6a{word-spacing:5.896800px;}
.ws69{word-spacing:5.907600px;}
.ws6c{word-spacing:5.923800px;}
.ws123{word-spacing:5.939856px;}
.ws20{word-spacing:6.025421px;}
.wsb1{word-spacing:6.156887px;}
.ws57{word-spacing:6.216662px;}
.ws155{word-spacing:6.563405px;}
.ws167{word-spacing:6.724800px;}
.ws166{word-spacing:6.778598px;}
.wsc7{word-spacing:6.865704px;}
.wsf2{word-spacing:6.883740px;}
.ws25{word-spacing:6.886195px;}
.wsc5{word-spacing:6.949872px;}
.wsc6{word-spacing:6.967908px;}
.wsb4{word-spacing:6.993745px;}
.ws154{word-spacing:6.993792px;}
.ws13e{word-spacing:7.053521px;}
.ws158{word-spacing:7.101389px;}
.ws13d{word-spacing:7.113296px;}
.ws103{word-spacing:7.244460px;}
.ws5d{word-spacing:7.352399px;}
.ws16d{word-spacing:7.585574px;}
.wsb0{word-spacing:7.591501px;}
.wsd{word-spacing:7.782761px;}
.wsff{word-spacing:8.009930px;}
.wsaf{word-spacing:8.069706px;}
.wsf4{word-spacing:8.368584px;}
.ws172{word-spacing:8.392550px;}
.ws46{word-spacing:9.504320px;}
.wscd{word-spacing:9.799560px;}
.wscb{word-spacing:9.823608px;}
.wscc{word-spacing:9.889740px;}
.ws4{word-spacing:10.415902px;}
.ws8a{word-spacing:11.597148px;}
.ws62{word-spacing:11.620476px;}
.ws89{word-spacing:11.639232px;}
.ws35{word-spacing:11.909773px;}
.wsb{word-spacing:12.176255px;}
.ws15c{word-spacing:13.389869px;}
.ws175{word-spacing:13.392269px;}
.ws164{word-spacing:13.393181px;}
.ws15e{word-spacing:13.395802px;}
.ws15f{word-spacing:13.557197px;}
.ws15a{word-spacing:13.610995px;}
.ws162{word-spacing:14.202778px;}
.ws3f{word-spacing:14.884124px;}
.wsc{word-spacing:16.109478px;}
.ws16f{word-spacing:16.614912px;}
.ws179{word-spacing:16.616832px;}
.ws15d{word-spacing:16.618358px;}
.ws159{word-spacing:16.620634px;}
.ws15b{word-spacing:16.623706px;}
.ws17b{word-spacing:16.892698px;}
.ws16e{word-spacing:17.054093px;}
.ws136{word-spacing:18.470660px;}
.wse{word-spacing:26.109907px;}
.wsa{word-spacing:26.840252px;}
.ws11{word-spacing:46.627738px;}
.wsa5{word-spacing:109.788840px;}
.wsa4{word-spacing:148.341816px;}
.wsa3{word-spacing:154.824768px;}
.wsa6{word-spacing:164.156580px;}
._1c{margin-left:-217.442232px;}
._1b{margin-left:-13.679316px;}
._19{margin-left:-7.830604px;}
._8{margin-left:-6.636025px;}
._a{margin-left:-5.301626px;}
._2{margin-left:-3.849538px;}
._1f{margin-left:-2.768256px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._4{width:2.301354px;}
._7{width:4.244344px;}
._5{width:11.398711px;}
._3{width:12.974982px;}
._b{width:14.865746px;}
._15{width:16.007976px;}
._f{width:17.050585px;}
._10{width:18.403913px;}
._1a{width:19.408668px;}
._d{width:21.088973px;}
._22{width:22.121028px;}
._16{width:23.140724px;}
._17{width:24.209118px;}
._1d{width:25.285079px;}
._13{width:27.145690px;}
._20{width:28.811839px;}
._6{width:30.587087px;}
._21{width:33.223464px;}
._e{width:35.345549px;}
._1e{width:37.725971px;}
._18{width:41.484266px;}
._c{width:56.810873px;}
._9{width:68.806301px;}
._11{width:915.912612px;}
._14{width:2115.434160px;}
._23{width:2525.763000px;}
._12{width:2549.673000px;}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(79,130,189);}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(103,50,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs11{font-size:33.120000px;}
.fs7{font-size:35.865600px;}
.fs12{font-size:36.000000px;}
.fs9{font-size:37.371600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs14{font-size:43.600200px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsd{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fs13{font-size:51.102000px;}
.fsa{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fsb{font-size:56.058000px;}
.fs4{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:151.185600px;}
.y91{bottom:-510.397050px;}
.yb2{bottom:-426.155016px;}
.yb1{bottom:-406.985754px;}
.yb0{bottom:-387.726312px;}
.yaf{bottom:-368.557050px;}
.yad{bottom:-368.554638px;}
.yae{bottom:-364.777050px;}
.yac{bottom:-349.295196px;}
.y15c{bottom:-345.968249px;}
.yab{bottom:-330.035754px;}
.y15b{bottom:-328.755817px;}
.y124{bottom:-321.523050px;}
.yaa{bottom:-310.866492px;}
.yd6{bottom:-299.450550px;}
.ya9{bottom:-291.607050px;}
.ya7{bottom:-291.606312px;}
.ya8{bottom:-287.827050px;}
.ya6{bottom:-272.437050px;}
.ya4{bottom:-272.433174px;}
.ya5{bottom:-268.657050px;}
.ya3{bottom:-253.173732px;}
.yf8{bottom:-234.197787px;}
.ya2{bottom:-233.914290px;}
.y144{bottom:-229.267488px;}
.yf7{bottom:-214.938345px;}
.ya1{bottom:-214.745028px;}
.y143{bottom:-210.008046px;}
.yf6{bottom:-195.678903px;}
.ya0{bottom:-195.485586px;}
.y142{bottom:-190.838784px;}
.yf5{bottom:-176.508138px;}
.y9f{bottom:-176.316324px;}
.y141{bottom:-171.579342px;}
.yf4{bottom:-157.248696px;}
.y9e{bottom:-152.556900px;}
.y140{bottom:-152.319900px;}
.yf3{bottom:-138.079434px;}
.y13f{bottom:-133.150638px;}
.yf2{bottom:-118.819992px;}
.y9c{bottom:-115.747950px;}
.y9d{bottom:-115.747050px;}
.y13e{bottom:-113.891196px;}
.yf1{bottom:-99.560550px;}
.y9b{bottom:-98.377500px;}
.y13d{bottom:-94.721934px;}
.y9a{bottom:-81.097500px;}
.y13c{bottom:-75.462492px;}
.y99{bottom:-63.727050px;}
.yf0{bottom:-62.840100px;}
.y13b{bottom:-56.203050px;}
.y98{bottom:-46.447050px;}
.yef{bottom:-45.380550px;}
.y97{bottom:-29.167050px;}
.yee{bottom:-22.962693px;}
.y13a{bottom:-19.393050px;}
.y96{bottom:-6.756780px;}
.y0{bottom:0.000000px;}
.y139{bottom:3.106950px;}
.y3{bottom:3.425340px;}
.y15d{bottom:5.931621px;}
.y10b{bottom:6.819450px;}
.y2{bottom:14.151273px;}
.y1f{bottom:15.760437px;}
.y109{bottom:26.527488px;}
.y53{bottom:31.890000px;}
.y102{bottom:40.840017px;}
.yfd{bottom:65.140314px;}
.y103{bottom:82.599756px;}
.y10d{bottom:87.459600px;}
.y1cf{bottom:93.183000px;}
.y11f{bottom:95.146500px;}
.y11e{bottom:97.876500px;}
.y159{bottom:99.504000px;}
.y52{bottom:103.621500px;}
.yd0{bottom:104.263500px;}
.y175{bottom:104.400000px;}
.y1d{bottom:104.646000px;}
.y1a8{bottom:104.952000px;}
.y1cd{bottom:111.228000px;}
.y10c{bottom:111.399600px;}
.y101{bottom:111.939423px;}
.y1ce{bottom:116.110500px;}
.y11d{bottom:116.706000px;}
.y158{bottom:118.333500px;}
.y51{bottom:122.449500px;}
.y1c{bottom:122.535000px;}
.ycf{bottom:123.093000px;}
.y174{bottom:123.229500px;}
.y1a7{bottom:123.781500px;}
.y104{bottom:124.449270px;}
.y1cc{bottom:129.273000px;}
.y11c{bottom:135.535500px;}
.y157{bottom:137.163000px;}
.yfc{bottom:139.120899px;}
.y1b{bottom:140.422500px;}
.y50{bottom:141.279000px;}
.y173{bottom:142.059000px;}
.y205{bottom:142.252500px;}
.y1a6{bottom:142.611000px;}
.y10a{bottom:144.519450px;}
.yce{bottom:146.406000px;}
.y1ca{bottom:147.318000px;}
.y1cb{bottom:152.200500px;}
.y156{bottom:155.992500px;}
.y1a{bottom:158.310000px;}
.y11b{bottom:158.848500px;}
.y204{bottom:159.511500px;}
.y4f{bottom:160.108500px;}
.y172{bottom:160.888500px;}
.y1a5{bottom:161.439000px;}
.y1c9{bottom:165.363000px;}
.y105{bottom:166.209009px;}
.y155{bottom:174.822000px;}
.y19{bottom:176.199000px;}
.y203{bottom:176.772000px;}
.y4e{bottom:178.938000px;}
.ycd{bottom:180.030000px;}
.y1a4{bottom:180.268500px;}
.y8d{bottom:181.165500px;}
.y1c8{bottom:183.408000px;}
.y171{bottom:184.201500px;}
.y100{bottom:189.339837px;}
.y11a{bottom:192.472500px;}
.y154{bottom:193.651500px;}
.y202{bottom:194.032500px;}
.y18{bottom:194.086500px;}
.yfb{bottom:196.900089px;}
.y4d{bottom:197.767500px;}
.ycc{bottom:198.859500px;}
.y1a3{bottom:199.098000px;}
.y8c{bottom:199.995000px;}
.y1c7{bottom:201.453000px;}
.y106{bottom:208.058523px;}
.y201{bottom:211.293000px;}
.y119{bottom:211.302000px;}
.y17{bottom:211.974000px;}
.y153{bottom:212.481000px;}
.yfa{bottom:213.819684px;}
.y4c{bottom:216.597000px;}
.ycb{bottom:217.689000px;}
.y170{bottom:217.825500px;}
.y1a2{bottom:217.927500px;}
.y8b{bottom:218.824500px;}
.y1c6{bottom:219.498000px;}
.y200{bottom:228.553500px;}
.y16{bottom:229.863000px;}
.y118{bottom:230.130000px;}
.y152{bottom:231.310500px;}
.y1a1{bottom:234.027000px;}
.y4b{bottom:235.426500px;}
.yca{bottom:236.518500px;}
.y16f{bottom:236.655000px;}
.y1a0{bottom:236.757000px;}
.y1c5{bottom:237.541500px;}
.y8a{bottom:237.654000px;}
.y1ff{bottom:245.814000px;}
.yfe{bottom:247.120224px;}
.y117{bottom:248.959500px;}
.y107{bottom:249.818262px;}
.y151{bottom:250.140000px;}
.y16e{bottom:252.754500px;}
.y19f{bottom:252.856500px;}
.y4a{bottom:254.256000px;}
.yc9{bottom:255.348000px;}
.y16d{bottom:255.484500px;}
.y19e{bottom:255.586500px;}
.y89{bottom:256.483500px;}
.y1fe{bottom:263.074500px;}
.yf9{bottom:263.229450px;}
.yff{bottom:265.029738px;}
.y116{bottom:267.789000px;}
.y150{bottom:268.969500px;}
.y16c{bottom:271.584000px;}
.y19d{bottom:271.686000px;}
.y49{bottom:273.085500px;}
.y1c4{bottom:273.631500px;}
.yc7{bottom:274.177500px;}
.y16b{bottom:274.314000px;}
.y19c{bottom:274.416000px;}
.y87{bottom:275.313000px;}
.yc8{bottom:279.601500px;}
.y1fd{bottom:280.335000px;}
.y88{bottom:280.737000px;}
.y115{bottom:286.618500px;}
.y14f{bottom:287.799000px;}
.y16a{bottom:290.413500px;}
.y108{bottom:291.667776px;}
.y1c3{bottom:291.676500px;}
.y48{bottom:291.915000px;}
.yc6{bottom:293.005500px;}
.y169{bottom:293.143500px;}
.y19b{bottom:293.245500px;}
.y86{bottom:294.142500px;}
.y1fb{bottom:297.594000px;}
.y1fc{bottom:297.595500px;}
.y15{bottom:300.154500px;}
.y114{bottom:305.448000px;}
.y14e{bottom:306.628500px;}
.y1c2{bottom:309.721500px;}
.y47{bottom:310.744500px;}
.yc5{bottom:311.835000px;}
.y168{bottom:311.973000px;}
.y19a{bottom:312.075000px;}
.y85{bottom:312.972000px;}
.y1fa{bottom:314.854500px;}
.y14{bottom:318.043500px;}
.y113{bottom:324.277500px;}
.y14d{bottom:325.458000px;}
.y1c1{bottom:327.766500px;}
.y167{bottom:328.072500px;}
.y84{bottom:329.071500px;}
.y46{bottom:329.574000px;}
.yc4{bottom:330.664500px;}
.y165{bottom:330.802500px;}
.y83{bottom:331.801500px;}
.y1f9{bottom:332.115000px;}
.yed{bottom:334.516839px;}
.y199{bottom:335.388000px;}
.y13{bottom:335.931000px;}
.y166{bottom:336.226500px;}
.y112{bottom:343.107000px;}
.y14c{bottom:344.287500px;}
.y1c0{bottom:345.811500px;}
.y45{bottom:348.403500px;}
.y1f8{bottom:349.375500px;}
.yc2{bottom:349.494000px;}
.y164{bottom:349.630500px;}
.y81{bottom:350.631000px;}
.yec{bottom:353.686101px;}
.y12{bottom:353.818500px;}
.yc3{bottom:354.919500px;}
.y82{bottom:356.055000px;}
.y111{bottom:361.936500px;}
.y14b{bottom:363.117000px;}
.y1bf{bottom:363.856500px;}
.y163{bottom:365.731500px;}
.y1f7{bottom:366.636000px;}
.y44{bottom:367.233000px;}
.yc0{bottom:368.323500px;}
.y162{bottom:368.460000px;}
.y198{bottom:369.012000px;}
.y80{bottom:369.460500px;}
.y138{bottom:370.132485px;}
.yeb{bottom:372.945543px;}
.yc1{bottom:373.749000px;}
.y11{bottom:380.673000px;}
.y110{bottom:380.766000px;}
.y1be{bottom:381.901500px;}
.y14a{bottom:381.946500px;}
.y1f6{bottom:383.896500px;}
.y43{bottom:386.062500px;}
.ybf{bottom:387.153000px;}
.y161{bottom:387.289500px;}
.y196{bottom:387.841500px;}
.y7f{bottom:388.290000px;}
.y137{bottom:389.301747px;}
.yea{bottom:392.204985px;}
.y197{bottom:393.265500px;}
.y10{bottom:398.562000px;}
.y1bd{bottom:399.946500px;}
.y149{bottom:400.776000px;}
.y1f5{bottom:401.157000px;}
.y195{bottom:403.941000px;}
.y42{bottom:404.892000px;}
.ybe{bottom:405.982500px;}
.y194{bottom:406.671000px;}
.y7e{bottom:407.119500px;}
.y136{bottom:408.561189px;}
.ye9{bottom:411.374247px;}
.y10f{bottom:414.331500px;}
.yf{bottom:416.449500px;}
.y1bc{bottom:417.991500px;}
.y1f4{bottom:418.417500px;}
.y148{bottom:419.605500px;}
.y160{bottom:420.856500px;}
.y41{bottom:423.721500px;}
.ybd{bottom:424.812000px;}
.y193{bottom:425.500500px;}
.y7d{bottom:425.949000px;}
.y135{bottom:427.730451px;}
.ye8{bottom:430.633689px;}
.y10e{bottom:433.564500px;}
.y1f3{bottom:435.678000px;}
.y1bb{bottom:436.036500px;}
.y147{bottom:438.435000px;}
.y15e{bottom:440.088000px;}
.ybc{bottom:443.641500px;}
.y192{bottom:444.330000px;}
.y7c{bottom:444.778500px;}
.ye{bottom:444.798000px;}
.y15f{bottom:444.970500px;}
.y134{bottom:446.989893px;}
.y40{bottom:447.034500px;}
.y22a{bottom:449.709000px;}
.ye7{bottom:449.802951px;}
.y1f2{bottom:452.937000px;}
.y1ba{bottom:454.080000px;}
.yd3{bottom:455.994000px;}
.y146{bottom:457.264500px;}
.ybb{bottom:462.471000px;}
.y15a{bottom:462.517500px;}
.y190{bottom:463.159500px;}
.y7b{bottom:463.608000px;}
.y133{bottom:466.249335px;}
.y229{bottom:466.969500px;}
.y191{bottom:468.583500px;}
.ye6{bottom:469.062393px;}
.y1f1{bottom:470.197500px;}
.yd{bottom:471.652500px;}
.y1b9{bottom:472.125000px;}
.y18f{bottom:481.989000px;}
.y7a{bottom:482.437500px;}
.y228{bottom:484.230000px;}
.y132{bottom:485.420100px;}
.yba{bottom:485.784000px;}
.y18e{bottom:487.413000px;}
.y1f0{bottom:487.458000px;}
.ye5{bottom:488.321835px;}
.yc{bottom:489.540000px;}
.y1b8{bottom:490.170000px;}
.y145{bottom:490.830000px;}
.y79{bottom:498.537000px;}
.y18d{bottom:500.818500px;}
.y78{bottom:501.267000px;}
.y227{bottom:501.490500px;}
.y131{bottom:504.679542px;}
.y1ef{bottom:504.718500px;}
.y1b7{bottom:505.593000px;}
.yb{bottom:507.429000px;}
.ye4{bottom:507.492600px;}
.y1b6{bottom:508.215000px;}
.y95{bottom:511.283733px;}
.y121{bottom:513.259500px;}
.yb9{bottom:516.211500px;}
.y226{bottom:518.751000px;}
.y18c{bottom:519.648000px;}
.y77{bottom:520.095000px;}
.y1ee{bottom:521.979000px;}
.y3f{bottom:522.184500px;}
.y130{bottom:523.848804px;}
.ya{bottom:525.316500px;}
.y1b4{bottom:526.260000px;}
.ye3{bottom:526.752042px;}
.y94{bottom:530.543175px;}
.y1b5{bottom:531.142500px;}
.yb8{bottom:535.444500px;}
.y18b{bottom:535.747500px;}
.y225{bottom:536.011500px;}
.y18a{bottom:538.477500px;}
.y76{bottom:538.924500px;}
.y1ed{bottom:539.239500px;}
.y3e{bottom:541.641000px;}
.y12f{bottom:543.108246px;}
.y9{bottom:543.204000px;}
.y1b3{bottom:544.305000px;}
.ye2{bottom:545.921304px;}
.y93{bottom:549.802617px;}
.y224{bottom:553.272000px;}
.yb7{bottom:554.677500px;}
.y1ec{bottom:556.500000px;}
.y189{bottom:557.307000px;}
.y75{bottom:557.754000px;}
.y8{bottom:561.093000px;}
.y1b2{bottom:562.350000px;}
.y12e{bottom:562.367688px;}
.ye1{bottom:565.180746px;}
.y92{bottom:568.973382px;}
.y223{bottom:570.531000px;}
.y1eb{bottom:573.760500px;}
.yb6{bottom:573.910500px;}
.y188{bottom:576.136500px;}
.y74{bottom:576.583500px;}
.y7{bottom:578.980500px;}
.y3d{bottom:579.031500px;}
.y1b1{bottom:580.395000px;}
.y12d{bottom:581.538066px;}
.ye0{bottom:584.440188px;}
.y222{bottom:587.791500px;}
.yb5{bottom:590.520000px;}
.y1e9{bottom:591.019500px;}
.y1ea{bottom:591.021000px;}
.yb4{bottom:593.142000px;}
.y187{bottom:594.964500px;}
.y73{bottom:595.413000px;}
.y6{bottom:596.868000px;}
.y1b0{bottom:598.440000px;}
.y3c{bottom:598.488000px;}
.y12c{bottom:600.797508px;}
.ydf{bottom:603.610008px;}
.y221{bottom:605.052000px;}
.y1e8{bottom:608.280000px;}
.y186{bottom:611.065500px;}
.yb3{bottom:612.375000px;}
.y185{bottom:613.794000px;}
.y72{bottom:614.242500px;}
.y5{bottom:614.757000px;}
.y3b{bottom:617.944500px;}
.y12b{bottom:620.058354px;}
.y220{bottom:622.312500px;}
.yde{bottom:622.872915px;}
.y90{bottom:623.693085px;}
.y1e7{bottom:625.540500px;}
.y184{bottom:632.623500px;}
.y4{bottom:632.644500px;}
.y71{bottom:633.072000px;}
.y8f{bottom:633.322950px;}
.y1af{bottom:634.417500px;}
.y8e{bottom:634.804500px;}
.y3a{bottom:637.402500px;}
.y12a{bottom:639.227616px;}
.y21f{bottom:639.573000px;}
.ydd{bottom:642.132357px;}
.y1e6{bottom:642.801000px;}
.y1{bottom:650.532055px;}
.y70{bottom:651.901500px;}
.y1ae{bottom:653.247000px;}
.y183{bottom:655.936500px;}
.y21e{bottom:656.833500px;}
.y39{bottom:656.859000px;}
.y129{bottom:658.487058px;}
.y1e5{bottom:660.061500px;}
.ydc{bottom:661.301619px;}
.y6f{bottom:670.731000px;}
.y1ad{bottom:672.076500px;}
.y21d{bottom:674.094000px;}
.y182{bottom:676.111500px;}
.y38{bottom:676.315500px;}
.y1e4{bottom:677.322000px;}
.ydb{bottom:680.561061px;}
.y128{bottom:682.157805px;}
.y6e{bottom:686.830500px;}
.y6d{bottom:689.560500px;}
.y1ac{bottom:690.906000px;}
.y21c{bottom:691.354500px;}
.y36{bottom:693.150000px;}
.y37{bottom:693.756000px;}
.y1e3{bottom:694.582500px;}
.y35{bottom:695.773500px;}
.yda{bottom:699.730323px;}
.y21b{bottom:708.613500px;}
.y181{bottom:709.735500px;}
.y1e2{bottom:711.843000px;}
.y34{bottom:712.608000px;}
.y6c{bottom:712.873500px;}
.y33{bottom:715.230000px;}
.y127{bottom:719.417175px;}
.yd9{bottom:723.489747px;}
.y21a{bottom:725.874000px;}
.y180{bottom:728.565000px;}
.y1e1{bottom:729.103500px;}
.y6b{bottom:733.047000px;}
.y32{bottom:734.688000px;}
.y126{bottom:738.676617px;}
.y219{bottom:743.134500px;}
.y17f{bottom:747.394500px;}
.y1e0{bottom:750.846000px;}
.y125{bottom:757.847382px;}
.y218{bottom:760.395000px;}
.yd8{bottom:760.749117px;}
.y17e{bottom:766.224000px;}
.y6a{bottom:766.671000px;}
.y31{bottom:770.569500px;}
.y1ab{bottom:770.706000px;}
.y217{bottom:777.655500px;}
.yd7{bottom:779.919882px;}
.y17d{bottom:785.053500px;}
.y69{bottom:785.500500px;}
.y30{bottom:786.708000px;}
.y1df{bottom:787.608000px;}
.y216{bottom:794.916000px;}
.y2f{bottom:802.848000px;}
.y17c{bottom:803.883000px;}
.y68{bottom:804.330000px;}
.y215{bottom:812.176500px;}
.y123{bottom:812.567085px;}
.y1de{bottom:814.149000px;}
.y122{bottom:822.196950px;}
.y17b{bottom:822.712500px;}
.y67{bottom:823.159500px;}
.y2e{bottom:823.327500px;}
.y214{bottom:829.437000px;}
.yd5{bottom:834.639585px;}
.y2d{bottom:835.126500px;}
.y1dd{bottom:840.690000px;}
.y17a{bottom:841.540500px;}
.y66{bottom:841.989000px;}
.yd4{bottom:844.269450px;}
.y213{bottom:846.697500px;}
.y2c{bottom:851.266500px;}
.y2b{bottom:855.606000px;}
.y1dc{bottom:858.264000px;}
.y179{bottom:860.370000px;}
.y65{bottom:860.818500px;}
.y212{bottom:863.956500px;}
.y2a{bottom:867.406500px;}
.y1db{bottom:875.838000px;}
.y1aa{bottom:876.918000px;}
.y63{bottom:879.648000px;}
.y211{bottom:881.217000px;}
.y29{bottom:883.545000px;}
.y178{bottom:883.683000px;}
.y64{bottom:885.073500px;}
.y1da{bottom:893.412000px;}
.y62{bottom:898.477500px;}
.y28{bottom:904.024500px;}
.y1d9{bottom:910.986000px;}
.y1a9{bottom:914.577000px;}
.y210{bottom:915.738000px;}
.y27{bottom:915.825000px;}
.y61{bottom:917.307000px;}
.y1d8{bottom:928.560000px;}
.y26{bottom:931.965000px;}
.y20f{bottom:932.998500px;}
.y60{bottom:936.136500px;}
.y25{bottom:936.304500px;}
.y177{bottom:941.562000px;}
.y20e{bottom:950.259000px;}
.y176{bottom:952.236000px;}
.y5f{bottom:954.966000px;}
.y1d7{bottom:955.101000px;}
.y20d{bottom:967.519500px;}
.y1d6{bottom:972.675000px;}
.y5e{bottom:973.795500px;}
.y24{bottom:978.276000px;}
.y20c{bottom:984.780000px;}
.y5c{bottom:989.895000px;}
.y1d5{bottom:990.249000px;}
.y5d{bottom:990.384000px;}
.y5b{bottom:992.625000px;}
.y23{bottom:997.105500px;}
.y20b{bottom:1002.040500px;}
.y1d4{bottom:1007.823000px;}
.y5a{bottom:1011.454500px;}
.y20a{bottom:1019.299500px;}
.y1d3{bottom:1025.397000px;}
.y59{bottom:1030.284000px;}
.y209{bottom:1036.560000px;}
.y22{bottom:1037.025000px;}
.y1d2{bottom:1042.971000px;}
.y58{bottom:1049.113500px;}
.y208{bottom:1053.820500px;}
.yd2{bottom:1054.537500px;}
.y21{bottom:1065.268500px;}
.y57{bottom:1067.943000px;}
.y1d1{bottom:1069.512000px;}
.y207{bottom:1071.081000px;}
.yd1{bottom:1073.367000px;}
.y120{bottom:1084.042500px;}
.y56{bottom:1086.772500px;}
.y1d0{bottom:1087.557000px;}
.y206{bottom:1088.341500px;}
.y20{bottom:1093.513500px;}
.y55{bottom:1105.602000px;}
.y1e{bottom:1137.000000px;}
.y54{bottom:1168.366500px;}
.hd{height:24.889486px;}
.h2{height:25.508090px;}
.h17{height:28.094532px;}
.h2c{height:29.037733px;}
.h1c{height:30.936797px;}
.h16{height:31.526842px;}
.h4{height:33.112997px;}
.h1e{height:33.626953px;}
.hb{height:33.821261px;}
.h3{height:34.199443px;}
.h21{height:34.413750px;}
.h22{height:34.881328px;}
.h29{height:35.407099px;}
.h23{height:36.681616px;}
.h10{height:37.334628px;}
.h2d{height:37.551283px;}
.h25{height:38.250662px;}
.he{height:39.003840px;}
.h24{height:39.339844px;}
.h5{height:39.457760px;}
.h15{height:41.482876px;}
.h13{height:41.723369px;}
.h1f{height:42.500452px;}
.h14{height:42.840113px;}
.h1d{height:43.269961px;}
.h11{height:43.337310px;}
.h8{height:43.815515px;}
.h27{height:44.444180px;}
.h19{height:44.723848px;}
.hc{height:45.094826px;}
.h1b{height:50.440430px;}
.hf{height:50.731891px;}
.h6{height:50.930649px;}
.h2b{height:52.402876px;}
.ha{height:54.638460px;}
.h1a{height:56.157012px;}
.h12{height:56.368391px;}
.h2a{height:58.981760px;}
.h9{height:78.007680px;}
.h7{height:102.503837px;}
.h20{height:305.866500px;}
.h26{height:351.274500px;}
.h18{height:485.742000px;}
.h28{height:571.917825px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:190.325662px;}
.w6{width:399.835500px;}
.w5{width:491.280000px;}
.w7{width:541.764458px;}
.w4{width:560.751000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x95{left:-217.182000px;}
.x56{left:-192.876000px;}
.x96{left:-21.611640px;}
.xb9{left:-5.914342px;}
.x0{left:0.000000px;}
.x57{left:2.692910px;}
.x97{left:10.248954px;}
.xa3{left:14.748000px;}
.x2{left:29.274117px;}
.x9f{left:30.855489px;}
.x66{left:34.553894px;}
.xa0{left:37.515597px;}
.xa1{left:41.475273px;}
.x4{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:58.056971px;}
.x6b{left:59.754000px;}
.x6c{left:68.754000px;}
.x98{left:71.988000px;}
.xa2{left:85.664922px;}
.x9c{left:94.306065px;}
.x6d{left:107.364000px;}
.xa4{left:114.468000px;}
.x6e{left:116.364000px;}
.x99{left:129.408090px;}
.x9a{left:190.427559px;}
.x69{left:226.704000px;}
.x6a{left:235.704000px;}
.x9{left:248.526000px;}
.x5{left:249.591000px;}
.x74{left:253.714500px;}
.xce{left:255.448500px;}
.x75{left:259.686000px;}
.x4a{left:264.010500px;}
.xcf{left:265.351500px;}
.xd3{left:268.729500px;}
.x6{left:269.758500px;}
.x9d{left:272.414877px;}
.x8f{left:274.807500px;}
.x7d{left:276.856500px;}
.x80{left:278.350500px;}
.x20{left:281.479500px;}
.x81{left:285.919500px;}
.x53{left:289.015500px;}
.x84{left:293.937000px;}
.x2b{left:295.899000px;}
.x88{left:297.796500px;}
.xea{left:302.190000px;}
.x2c{left:303.430500px;}
.x4b{left:305.250000px;}
.xa{left:308.128500px;}
.xd{left:310.657500px;}
.x7e{left:312.936000px;}
.xbb{left:315.043500px;}
.x4c{left:316.215000px;}
.x2d{left:318.375000px;}
.xc0{left:319.876500px;}
.x1f{left:322.317000px;}
.xe{left:324.480000px;}
.xf2{left:328.776000px;}
.x7f{left:330.528000px;}
.x89{left:339.943500px;}
.xf{left:341.134500px;}
.xf3{left:343.357500px;}
.x10{left:354.957000px;}
.x8a{left:355.987500px;}
.x82{left:358.303500px;}
.x40{left:360.751500px;}
.xd8{left:361.852500px;}
.x11{left:363.339000px;}
.x41{left:367.177500px;}
.xd9{left:368.278500px;}
.x12{left:369.316500px;}
.x5c{left:370.704000px;}
.x9b{left:371.776650px;}
.xbe{left:376.356000px;}
.x83{left:377.403000px;}
.x42{left:379.087500px;}
.x5d{left:381.054000px;}
.x70{left:384.628500px;}
.x43{left:389.236500px;}
.xe3{left:392.815500px;}
.x9e{left:394.094715px;}
.x71{left:395.941500px;}
.x5e{left:397.434000px;}
.xb4{left:398.893500px;}
.x13{left:400.650000px;}
.x72{left:404.158500px;}
.x14{left:406.627500px;}
.x5f{left:407.784000px;}
.xa5{left:410.248500px;}
.x60{left:416.064000px;}
.xc3{left:418.440000px;}
.x61{left:420.204000px;}
.x15{left:422.610000px;}
.x16{left:428.587500px;}
.x8e{left:430.309500px;}
.x59{left:433.344000px;}
.x7b{left:434.488500px;}
.xac{left:439.263000px;}
.x17{left:443.938500px;}
.x7c{left:447.796500px;}
.x18{left:449.916000px;}
.x19{left:454.651500px;}
.x90{left:457.342500px;}
.x1a{left:458.707500px;}
.x6f{left:461.214000px;}
.x5a{left:464.124000px;}
.xb2{left:465.976500px;}
.x5b{left:468.264000px;}
.x62{left:470.784000px;}
.xe6{left:472.875000px;}
.x63{left:474.924000px;}
.x67{left:476.454000px;}
.x85{left:478.039500px;}
.xb3{left:480.921000px;}
.x68{left:485.454000px;}
.xe7{left:488.908500px;}
.x54{left:490.639500px;}
.x64{left:494.184000px;}
.xe4{left:497.521500px;}
.x3b{left:500.056500px;}
.xe5{left:503.947500px;}
.x55{left:505.584000px;}
.xca{left:506.865000px;}
.x1b{left:508.216500px;}
.xec{left:509.605500px;}
.xcb{left:513.291000px;}
.xe1{left:514.702500px;}
.xad{left:516.328500px;}
.xed{left:517.912500px;}
.x1c{left:520.024500px;}
.x2e{left:521.604000px;}
.xe2{left:523.933500px;}
.xc1{left:528.420000px;}
.xae{left:532.027500px;}
.xc2{left:534.846000px;}
.x2f{left:536.547000px;}
.x76{left:539.092500px;}
.xda{left:542.865000px;}
.xcc{left:545.730000px;}
.x46{left:548.034000px;}
.x65{left:550.704000px;}
.x4f{left:553.903500px;}
.x30{left:555.052500px;}
.xba{left:558.270436px;}
.x47{left:563.691000px;}
.x44{left:566.667000px;}
.x31{left:569.995500px;}
.x45{left:576.814500px;}
.x32{left:579.309000px;}
.x33{left:585.735000px;}
.xcd{left:588.022500px;}
.x3c{left:589.810500px;}
.x48{left:593.571000px;}
.x8b{left:597.199500px;}
.x58{left:598.941384px;}
.xd0{left:600.076500px;}
.xaf{left:605.358000px;}
.xd1{left:606.502500px;}
.x49{left:609.894000px;}
.x34{left:620.550000px;}
.xd4{left:621.948000px;}
.xdf{left:624.315000px;}
.x35{left:626.976000px;}
.xd5{left:628.372500px;}
.xb0{left:631.674000px;}
.xd6{left:633.448500px;}
.x8c{left:634.461000px;}
.xb{left:636.247500px;}
.xc{left:642.225000px;}
.x36{left:644.733000px;}
.x1d{left:650.962500px;}
.xa9{left:652.216500px;}
.xb6{left:654.607500px;}
.x86{left:657.189000px;}
.x3d{left:659.343000px;}
.xb5{left:663.061500px;}
.xaa{left:664.309500px;}
.xa7{left:666.510000px;}
.x37{left:668.215500px;}
.xd7{left:671.296500px;}
.x79{left:672.337500px;}
.xab{left:673.539000px;}
.x38{left:674.641500px;}
.xe0{left:676.782000px;}
.x39{left:679.905000px;}
.x3a{left:684.409500px;}
.x7a{left:685.645500px;}
.x8d{left:687.577500px;}
.x77{left:697.602000px;}
.xc5{left:700.336500px;}
.xb7{left:702.534000px;}
.xc6{left:704.056500px;}
.xc4{left:705.367500px;}
.xa8{left:706.408500px;}
.x73{left:711.976500px;}
.x50{left:713.749500px;}
.x1e{left:716.959500px;}
.xb8{left:719.137500px;}
.x25{left:720.765000px;}
.xc7{left:722.722500px;}
.x91{left:724.138500px;}
.x21{left:725.779500px;}
.x26{left:728.238000px;}
.xb1{left:729.469500px;}
.x87{left:730.519500px;}
.x27{left:731.899500px;}
.x22{left:733.251000px;}
.x92{left:736.429500px;}
.xc8{left:737.665500px;}
.x28{left:739.371000px;}
.x51{left:742.029000px;}
.x3e{left:744.072000px;}
.x29{left:746.694000px;}
.x3f{left:750.496500px;}
.xbf{left:752.731500px;}
.xdb{left:753.891000px;}
.xc9{left:756.331500px;}
.x2a{left:761.637000px;}
.xdc{left:765.114000px;}
.x93{left:767.556000px;}
.x23{left:769.770000px;}
.x78{left:770.932500px;}
.xee{left:775.201500px;}
.xbc{left:777.718500px;}
.x24{left:779.610000px;}
.xf6{left:782.766000px;}
.x94{left:784.111500px;}
.xbd{left:787.063500px;}
.xef{left:791.064000px;}
.xdd{left:794.038500px;}
.xeb{left:795.810000px;}
.xe8{left:797.221500px;}
.xde{left:801.511500px;}
.x52{left:803.766000px;}
.xe9{left:808.437000px;}
.xf4{left:810.387000px;}
.xa6{left:815.688000px;}
.xf7{left:817.431000px;}
.x4d{left:819.082500px;}
.x7{left:823.026000px;}
.xd2{left:825.147000px;}
.xf0{left:826.225500px;}
.xf1{left:830.280000px;}
.x8{left:831.540000px;}
.x4e{left:834.027000px;}
.xf5{left:837.286500px;}
@media print{
.va{vertical-align:-62.078016pt;}
.v9{vertical-align:-35.839776pt;}
.vd{vertical-align:-22.399328pt;}
.v5{vertical-align:-19.285333pt;}
.v2{vertical-align:-15.429333pt;}
.v8{vertical-align:-13.440000pt;}
.v4{vertical-align:-9.706667pt;}
.v10{vertical-align:-8.202667pt;}
.v6{vertical-align:-7.173333pt;}
.vb{vertical-align:-1.281056pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:2.881312pt;}
.vf{vertical-align:9.706667pt;}
.v7{vertical-align:13.427680pt;}
.v3{vertical-align:15.429333pt;}
.ve{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.ls33{letter-spacing:-0.297600pt;}
.ls2f{letter-spacing:-0.251168pt;}
.ls63{letter-spacing:-0.240480pt;}
.ls61{letter-spacing:-0.165664pt;}
.ls32{letter-spacing:-0.153600pt;}
.ls60{letter-spacing:-0.149632pt;}
.ls64{letter-spacing:-0.144288pt;}
.ls5d{letter-spacing:-0.134400pt;}
.ls30{letter-spacing:-0.133600pt;}
.ls38{letter-spacing:-0.128256pt;}
.ls69{letter-spacing:-0.127187pt;}
.ls52{letter-spacing:-0.122912pt;}
.ls66{letter-spacing:-0.117568pt;}
.ls31{letter-spacing:-0.101536pt;}
.ls5a{letter-spacing:-0.093632pt;}
.ls54{letter-spacing:-0.090848pt;}
.ls3e{letter-spacing:-0.080160pt;}
.ls2e{letter-spacing:-0.074816pt;}
.ls51{letter-spacing:-0.069472pt;}
.ls4f{letter-spacing:-0.064128pt;}
.ls62{letter-spacing:-0.058784pt;}
.ls37{letter-spacing:-0.053440pt;}
.ls55{letter-spacing:-0.048096pt;}
.ls58{letter-spacing:-0.048000pt;}
.ls50{letter-spacing:-0.042752pt;}
.ls5c{letter-spacing:-0.038400pt;}
.ls39{letter-spacing:-0.037408pt;}
.ls57{letter-spacing:-0.033600pt;}
.ls3b{letter-spacing:-0.032064pt;}
.ls40{letter-spacing:-0.026720pt;}
.ls2d{letter-spacing:-0.021376pt;}
.ls3d{letter-spacing:-0.016032pt;}
.ls59{letter-spacing:-0.012768pt;}
.ls3c{letter-spacing:-0.010688pt;}
.ls3f{letter-spacing:-0.005344pt;}
.ls34{letter-spacing:-0.004800pt;}
.lsc{letter-spacing:0.000000pt;}
.ls7a{letter-spacing:0.000425pt;}
.ls11{letter-spacing:0.000544pt;}
.lsf{letter-spacing:0.000567pt;}
.ls79{letter-spacing:0.000711pt;}
.ls7d{letter-spacing:0.000921pt;}
.ls7c{letter-spacing:0.001026pt;}
.ls73{letter-spacing:0.001408pt;}
.ls7f{letter-spacing:0.002262pt;}
.ls5{letter-spacing:0.002422pt;}
.ls7e{letter-spacing:0.002734pt;}
.ls76{letter-spacing:0.002879pt;}
.ls7{letter-spacing:0.003100pt;}
.ls47{letter-spacing:0.005344pt;}
.ls35{letter-spacing:0.005888pt;}
.ls3a{letter-spacing:0.006400pt;}
.ls5b{letter-spacing:0.008512pt;}
.ls1a{letter-spacing:0.009600pt;}
.ls25{letter-spacing:0.010688pt;}
.ls4b{letter-spacing:0.012768pt;}
.ls21{letter-spacing:0.014400pt;}
.ls27{letter-spacing:0.016032pt;}
.ls1c{letter-spacing:0.019200pt;}
.ls24{letter-spacing:0.021376pt;}
.ls1b{letter-spacing:0.024000pt;}
.ls45{letter-spacing:0.026720pt;}
.ls22{letter-spacing:0.028800pt;}
.ls41{letter-spacing:0.029792pt;}
.ls44{letter-spacing:0.032064pt;}
.ls18{letter-spacing:0.033600pt;}
.ls23{letter-spacing:0.037408pt;}
.ls13{letter-spacing:0.038304pt;}
.ls20{letter-spacing:0.038400pt;}
.ls26{letter-spacing:0.042752pt;}
.ls19{letter-spacing:0.043200pt;}
.ls16{letter-spacing:0.048096pt;}
.ls5e{letter-spacing:0.053440pt;}
.ls1d{letter-spacing:0.057600pt;}
.ls49{letter-spacing:0.058784pt;}
.ls17{letter-spacing:0.064128pt;}
.ls56{letter-spacing:0.069472pt;}
.ls28{letter-spacing:0.074816pt;}
.ls4a{letter-spacing:0.081600pt;}
.ls4d{letter-spacing:0.085120pt;}
.ls5f{letter-spacing:0.085504pt;}
.ls4e{letter-spacing:0.097888pt;}
.ls53{letter-spacing:0.117568pt;}
.ls1e{letter-spacing:0.124800pt;}
.ls36{letter-spacing:0.129600pt;}
.ls1f{letter-spacing:0.139200pt;}
.ls43{letter-spacing:0.148960pt;}
.ls15{letter-spacing:0.157472pt;}
.ls46{letter-spacing:0.160320pt;}
.ls42{letter-spacing:0.161728pt;}
.ls14{letter-spacing:0.170240pt;}
.ls48{letter-spacing:0.219104pt;}
.ls72{letter-spacing:0.447791pt;}
.lsd{letter-spacing:0.482502pt;}
.lse{letter-spacing:0.487835pt;}
.ls2b{letter-spacing:0.578745pt;}
.ls2a{letter-spacing:0.598340pt;}
.ls6c{letter-spacing:0.620142pt;}
.ls6b{letter-spacing:0.663756pt;}
.lsb{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls6d{letter-spacing:2.654679pt;}
.ls29{letter-spacing:2.656533pt;}
.ls3{letter-spacing:2.657067pt;}
.ls2c{letter-spacing:2.657325pt;}
.ls71{letter-spacing:2.986231pt;}
.ls6f{letter-spacing:3.163733pt;}
.ls65{letter-spacing:3.281216pt;}
.ls12{letter-spacing:3.318400pt;}
.ls6e{letter-spacing:3.323733pt;}
.ls1{letter-spacing:9.293600pt;}
.lsa{letter-spacing:10.626533pt;}
.ls74{letter-spacing:11.954133pt;}
.ls75{letter-spacing:11.959467pt;}
.ls80{letter-spacing:12.061127pt;}
.ls7b{letter-spacing:12.137129pt;}
.ls81{letter-spacing:12.164041pt;}
.ls77{letter-spacing:12.170290pt;}
.ls78{letter-spacing:12.933689pt;}
.ls4{letter-spacing:13.283733pt;}
.ls8{letter-spacing:13.683733pt;}
.ls6a{letter-spacing:13.917762pt;}
.ls68{letter-spacing:14.611375pt;}
.ls67{letter-spacing:14.615939pt;}
.ls70{letter-spacing:14.667200pt;}
.ls10{letter-spacing:17.082767pt;}
.ls2{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls9{letter-spacing:57.174803pt;}
.ls4c{letter-spacing:193.290496pt;}
.wsa8{word-spacing:-205.122176pt;}
.ws9b{word-spacing:-53.440000pt;}
.ws9c{word-spacing:-32.000000pt;}
.wsf9{word-spacing:-13.392064pt;}
.ws9d{word-spacing:-13.360000pt;}
.wsa0{word-spacing:-13.354656pt;}
.ws4c{word-spacing:-13.338624pt;}
.wsf7{word-spacing:-13.327936pt;}
.wsf8{word-spacing:-13.322592pt;}
.wsfa{word-spacing:-13.301216pt;}
.ws9f{word-spacing:-13.290528pt;}
.wsfb{word-spacing:-13.285184pt;}
.ws19{word-spacing:-13.283467pt;}
.wsa2{word-spacing:-12.033600pt;}
.ws4d{word-spacing:-12.024000pt;}
.ws4f{word-spacing:-11.995200pt;}
.wsa1{word-spacing:-11.966400pt;}
.ws26{word-spacing:-11.955200pt;}
.wsaa{word-spacing:-11.929568pt;}
.wsa9{word-spacing:-11.916800pt;}
.wsa7{word-spacing:-11.738048pt;}
.ws4e{word-spacing:-11.702400pt;}
.ws4a{word-spacing:-10.810240pt;}
.ws9a{word-spacing:-10.801728pt;}
.ws4b{word-spacing:-10.640000pt;}
.ws36{word-spacing:-10.626800pt;}
.ws14{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws9e{word-spacing:-8.000000pt;}
.ws126{word-spacing:-2.826976pt;}
.ws127{word-spacing:-2.730784pt;}
.ws138{word-spacing:-2.709827pt;}
.wsf1{word-spacing:-2.543744pt;}
.wsc3{word-spacing:-2.506336pt;}
.wsd2{word-spacing:-2.490304pt;}
.wsfd{word-spacing:-2.444158pt;}
.wsd1{word-spacing:-2.388768pt;}
.ws137{word-spacing:-2.337890pt;}
.wseb{word-spacing:-2.201728pt;}
.wsc4{word-spacing:-2.196384pt;}
.wsec{word-spacing:-2.191040pt;}
.ws7b{word-spacing:-2.175008pt;}
.wsc2{word-spacing:-2.153632pt;}
.ws94{word-spacing:-2.125355pt;}
.ws12b{word-spacing:-2.084160pt;}
.ws12d{word-spacing:-2.068128pt;}
.ws83{word-spacing:-2.052096pt;}
.ws140{word-spacing:-2.019087pt;}
.wsf3{word-spacing:-1.965953pt;}
.ws84{word-spacing:-1.875744pt;}
.ws143{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.ws14f{word-spacing:-1.673728pt;}
.ws139{word-spacing:-1.647150pt;}
.ws11a{word-spacing:-1.539072pt;}
.ws150{word-spacing:-1.530266pt;}
.wsbb{word-spacing:-1.474944pt;}
.ws13a{word-spacing:-1.381481pt;}
.wsf6{word-spacing:-1.275213pt;}
.ws65{word-spacing:-1.261184pt;}
.wsca{word-spacing:-1.245152pt;}
.ws92{word-spacing:-1.191712pt;}
.ws0{word-spacing:-1.175671pt;}
.ws93{word-spacing:-1.170336pt;}
.wsbc{word-spacing:-1.122240pt;}
.ws7{word-spacing:-1.041421pt;}
.ws3e{word-spacing:-1.009543pt;}
.ws3d{word-spacing:-0.956410pt;}
.ws108{word-spacing:-0.951232pt;}
.ws64{word-spacing:-0.945888pt;}
.ws9{word-spacing:-0.929840pt;}
.ws3c{word-spacing:-0.850142pt;}
.wsdf{word-spacing:-0.839008pt;}
.ws24{word-spacing:-0.812954pt;}
.wse0{word-spacing:-0.780224pt;}
.ws134{word-spacing:-0.743874pt;}
.ws107{word-spacing:-0.732128pt;}
.ws133{word-spacing:-0.690740pt;}
.ws5b{word-spacing:-0.584473pt;}
.ws66{word-spacing:-0.555776pt;}
.ws171{word-spacing:-0.526029pt;}
.ws73{word-spacing:-0.513600pt;}
.ws72{word-spacing:-0.494400pt;}
.ws67{word-spacing:-0.422176pt;}
.ws45{word-spacing:-0.371937pt;}
.ws170{word-spacing:-0.334746pt;}
.ws2a{word-spacing:-0.318803pt;}
.wsf0{word-spacing:-0.299264pt;}
.ws22{word-spacing:-0.286925pt;}
.wsed{word-spacing:-0.277888pt;}
.ws33{word-spacing:-0.265669pt;}
.ws60{word-spacing:-0.246848pt;}
.wsb6{word-spacing:-0.242592pt;}
.ws1f{word-spacing:-0.239104pt;}
.ws8e{word-spacing:-0.224448pt;}
.ws8b{word-spacing:-0.219104pt;}
.ws10b{word-spacing:-0.213760pt;}
.ws2b{word-spacing:-0.212535pt;}
.ws10a{word-spacing:-0.203072pt;}
.ws8d{word-spacing:-0.197728pt;}
.ws54{word-spacing:-0.191283pt;}
.ws105{word-spacing:-0.171008pt;}
.ws2e{word-spacing:-0.159402pt;}
.ws8c{word-spacing:-0.154976pt;}
.ws53{word-spacing:-0.143462pt;}
.ws68{word-spacing:-0.133600pt;}
.ws12c{word-spacing:-0.122912pt;}
.ws61{word-spacing:-0.114912pt;}
.wsb7{word-spacing:-0.110656pt;}
.ws7d{word-spacing:-0.106880pt;}
.ws37{word-spacing:-0.106268pt;}
.ws146{word-spacing:-0.095642pt;}
.ws12{word-spacing:-0.053134pt;}
.wsad{word-spacing:-0.047821pt;}
.ws1c{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.037194pt;}
.ws106{word-spacing:-0.005344pt;}
.ws13{word-spacing:-0.003467pt;}
.ws32{word-spacing:-0.003250pt;}
.ws17{word-spacing:-0.003193pt;}
.ws31{word-spacing:-0.002144pt;}
.ws16{word-spacing:-0.000643pt;}
.ws3{word-spacing:0.000000pt;}
.ws15{word-spacing:0.001593pt;}
.ws1a{word-spacing:0.002111pt;}
.ws18{word-spacing:0.002415pt;}
.wse1{word-spacing:0.021376pt;}
.ws1d{word-spacing:0.042507pt;}
.ws21{word-spacing:0.047821pt;}
.wsb8{word-spacing:0.048096pt;}
.ws2f{word-spacing:0.053134pt;}
.ws10c{word-spacing:0.074816pt;}
.ws117{word-spacing:0.080160pt;}
.ws1b{word-spacing:0.085014pt;}
.ws23{word-spacing:0.095642pt;}
.ws10f{word-spacing:0.096192pt;}
.ws11f{word-spacing:0.100800pt;}
.ws29{word-spacing:0.106268pt;}
.wsee{word-spacing:0.117568pt;}
.wse7{word-spacing:0.124800pt;}
.ws77{word-spacing:0.134400pt;}
.ws79{word-spacing:0.138944pt;}
.ws1e{word-spacing:0.143462pt;}
.wsba{word-spacing:0.144288pt;}
.wse6{word-spacing:0.148800pt;}
.ws78{word-spacing:0.153600pt;}
.wsb9{word-spacing:0.154976pt;}
.ws120{word-spacing:0.158400pt;}
.ws2c{word-spacing:0.159402pt;}
.ws125{word-spacing:0.160320pt;}
.ws153{word-spacing:0.191283pt;}
.ws30{word-spacing:0.212535pt;}
.ws152{word-spacing:0.239104pt;}
.ws39{word-spacing:0.265669pt;}
.wsb5{word-spacing:0.318803pt;}
.ws165{word-spacing:0.334746pt;}
.wsc1{word-spacing:0.358048pt;}
.ws7c{word-spacing:0.368736pt;}
.ws44{word-spacing:0.371937pt;}
.wse9{word-spacing:0.395456pt;}
.wsea{word-spacing:0.411488pt;}
.ws132{word-spacing:0.478205pt;}
.ws151{word-spacing:0.478208pt;}
.ws11d{word-spacing:0.523712pt;}
.ws11e{word-spacing:0.566464pt;}
.wsdd{word-spacing:0.651968pt;}
.ws14d{word-spacing:0.669491pt;}
.ws161{word-spacing:0.717312pt;}
.ws91{word-spacing:0.764192pt;}
.ws96{word-spacing:0.797008pt;}
.ws11b{word-spacing:0.812288pt;}
.wsdc{word-spacing:0.855040pt;}
.ws55{word-spacing:0.860774pt;}
.ws8{word-spacing:0.892646pt;}
.ws56{word-spacing:0.903276pt;}
.ws14e{word-spacing:0.908595pt;}
.ws5f{word-spacing:0.956410pt;}
.ws163{word-spacing:0.956416pt;}
.ws34{word-spacing:1.009543pt;}
.ws104{word-spacing:1.031392pt;}
.ws95{word-spacing:1.062677pt;}
.ws11c{word-spacing:1.068800pt;}
.ws2d{word-spacing:1.115811pt;}
.ws116{word-spacing:1.122240pt;}
.ws115{word-spacing:1.164992pt;}
.ws58{word-spacing:1.168945pt;}
.ws16a{word-spacing:1.195520pt;}
.ws99{word-spacing:1.222079pt;}
.wsac{word-spacing:1.243341pt;}
.ws101{word-spacing:1.275213pt;}
.ws48{word-spacing:1.328347pt;}
.ws157{word-spacing:1.338982pt;}
.ws87{word-spacing:1.378752pt;}
.ws113{word-spacing:1.410816pt;}
.ws6e{word-spacing:1.420800pt;}
.ws114{word-spacing:1.426848pt;}
.ws135{word-spacing:1.434614pt;}
.ws156{word-spacing:1.434624pt;}
.ws88{word-spacing:1.469600pt;}
.wsab{word-spacing:1.482445pt;}
.wsf5{word-spacing:1.540882pt;}
.ws169{word-spacing:1.578086pt;}
.ws3b{word-spacing:1.594016pt;}
.ws6d{word-spacing:1.598400pt;}
.ws112{word-spacing:1.629920pt;}
.ws10e{word-spacing:1.645952pt;}
.ws5c{word-spacing:1.647150pt;}
.ws49{word-spacing:1.700284pt;}
.ws10d{word-spacing:1.704736pt;}
.ws28{word-spacing:1.753418pt;}
.ws147{word-spacing:1.769370pt;}
.ws168{word-spacing:1.912832pt;}
.ws12e{word-spacing:1.945216pt;}
.wsfe{word-spacing:1.965953pt;}
.ws129{word-spacing:2.004000pt;}
.ws40{word-spacing:2.019087pt;}
.ws12f{word-spacing:2.041408pt;}
.ws5e{word-spacing:2.072221pt;}
.ws119{word-spacing:2.078816pt;}
.ws12a{word-spacing:2.100192pt;}
.ws97{word-spacing:2.125355pt;}
.ws3a{word-spacing:2.178489pt;}
.ws14a{word-spacing:2.199757pt;}
.ws2{word-spacing:2.232481pt;}
.ws51{word-spacing:2.247578pt;}
.ws8f{word-spacing:2.249824pt;}
.wsb2{word-spacing:2.284756pt;}
.wsef{word-spacing:2.287232pt;}
.ws52{word-spacing:2.295398pt;}
.wsda{word-spacing:2.319296pt;}
.ws118{word-spacing:2.335328pt;}
.ws59{word-spacing:2.337890pt;}
.ws122{word-spacing:2.351360pt;}
.ws90{word-spacing:2.356704pt;}
.ws70{word-spacing:2.366400pt;}
.wsdb{word-spacing:2.372736pt;}
.ws13c{word-spacing:2.391024pt;}
.ws148{word-spacing:2.391040pt;}
.ws71{word-spacing:2.404800pt;}
.ws6f{word-spacing:2.409600pt;}
.ws98{word-spacing:2.444158pt;}
.ws121{word-spacing:2.463584pt;}
.ws14c{word-spacing:2.486682pt;}
.ws50{word-spacing:2.534502pt;}
.ws47{word-spacing:2.550426pt;}
.ws14b{word-spacing:2.582323pt;}
.ws85{word-spacing:2.629248pt;}
.wsd4{word-spacing:2.661312pt;}
.ws86{word-spacing:2.677344pt;}
.ws109{word-spacing:2.682688pt;}
.ws142{word-spacing:2.762961pt;}
.ws174{word-spacing:2.862763pt;}
.ws17a{word-spacing:2.864486pt;}
.ws16c{word-spacing:2.866091pt;}
.ws13b{word-spacing:2.869229pt;}
.ws160{word-spacing:2.869248pt;}
.wsd3{word-spacing:2.917824pt;}
.wsfc{word-spacing:2.922363pt;}
.ws141{word-spacing:2.975497pt;}
.ws130{word-spacing:3.028630pt;}
.wsbd{word-spacing:3.030048pt;}
.wsbe{word-spacing:3.035392pt;}
.ws63{word-spacing:3.040736pt;}
.ws131{word-spacing:3.134898pt;}
.ws27{word-spacing:3.188032pt;}
.ws128{word-spacing:3.249152pt;}
.wsde{word-spacing:3.265184pt;}
.ws111{word-spacing:3.302592pt;}
.ws110{word-spacing:3.307936pt;}
.wse4{word-spacing:3.326400pt;}
.wse2{word-spacing:3.336000pt;}
.wse8{word-spacing:3.345344pt;}
.wse3{word-spacing:3.350400pt;}
.ws38{word-spacing:3.400567pt;}
.wse5{word-spacing:3.408000pt;}
.ws13f{word-spacing:3.453701pt;}
.ws177{word-spacing:3.490918pt;}
.wsb3{word-spacing:3.559969pt;}
.ws102{word-spacing:3.613103pt;}
.wsd5{word-spacing:3.628576pt;}
.wsd6{word-spacing:3.633920pt;}
.ws41{word-spacing:3.772505pt;}
.ws42{word-spacing:3.825638pt;}
.ws100{word-spacing:3.931906pt;}
.ws76{word-spacing:3.969600pt;}
.ws75{word-spacing:3.988800pt;}
.ws74{word-spacing:3.993600pt;}
.ws43{word-spacing:4.144442pt;}
.ws7a{word-spacing:4.211072pt;}
.wsc0{word-spacing:4.216416pt;}
.wsf{word-spacing:4.240070pt;}
.ws10{word-spacing:4.314458pt;}
.ws173{word-spacing:4.351693pt;}
.wsbf{word-spacing:4.360704pt;}
.ws16b{word-spacing:4.399514pt;}
.wsd0{word-spacing:4.440864pt;}
.wsce{word-spacing:4.521024pt;}
.wscf{word-spacing:4.531712pt;}
.ws7e{word-spacing:4.547744pt;}
.wsd7{word-spacing:4.553088pt;}
.ws82{word-spacing:4.558432pt;}
.wsc9{word-spacing:4.574464pt;}
.ws7f{word-spacing:4.585152pt;}
.wsc8{word-spacing:4.590496pt;}
.ws145{word-spacing:4.590797pt;}
.wsd9{word-spacing:4.601184pt;}
.wsd8{word-spacing:4.606528pt;}
.ws178{word-spacing:4.638618pt;}
.wsae{word-spacing:4.728914pt;}
.ws149{word-spacing:4.782080pt;}
.ws81{word-spacing:4.863040pt;}
.ws144{word-spacing:4.877722pt;}
.ws80{word-spacing:4.921824pt;}
.ws6b{word-spacing:4.944000pt;}
.ws5a{word-spacing:4.994583pt;}
.ws176{word-spacing:5.021184pt;}
.ws124{word-spacing:5.221088pt;}
.ws6a{word-spacing:5.241600pt;}
.ws69{word-spacing:5.251200pt;}
.ws6c{word-spacing:5.265600pt;}
.ws123{word-spacing:5.279872pt;}
.ws20{word-spacing:5.355930pt;}
.wsb1{word-spacing:5.472788pt;}
.ws57{word-spacing:5.525922pt;}
.ws155{word-spacing:5.834138pt;}
.ws167{word-spacing:5.977600pt;}
.ws166{word-spacing:6.025421pt;}
.wsc7{word-spacing:6.102848pt;}
.wsf2{word-spacing:6.118880pt;}
.ws25{word-spacing:6.121062pt;}
.wsc5{word-spacing:6.177664pt;}
.wsc6{word-spacing:6.193696pt;}
.wsb4{word-spacing:6.216662pt;}
.ws154{word-spacing:6.216704pt;}
.ws13e{word-spacing:6.269796pt;}
.ws158{word-spacing:6.312346pt;}
.ws13d{word-spacing:6.322930pt;}
.ws103{word-spacing:6.439520pt;}
.ws5d{word-spacing:6.535466pt;}
.ws16d{word-spacing:6.742733pt;}
.wsb0{word-spacing:6.748001pt;}
.wsd{word-spacing:6.918010pt;}
.wsff{word-spacing:7.119938pt;}
.wsaf{word-spacing:7.173072pt;}
.wsf4{word-spacing:7.438741pt;}
.ws172{word-spacing:7.460045pt;}
.ws46{word-spacing:8.448285pt;}
.wscd{word-spacing:8.710720pt;}
.wscb{word-spacing:8.732096pt;}
.wscc{word-spacing:8.790880pt;}
.ws4{word-spacing:9.258579pt;}
.ws8a{word-spacing:10.308576pt;}
.ws62{word-spacing:10.329312pt;}
.ws89{word-spacing:10.345984pt;}
.ws35{word-spacing:10.586465pt;}
.wsb{word-spacing:10.823338pt;}
.ws15c{word-spacing:11.902106pt;}
.ws175{word-spacing:11.904239pt;}
.ws164{word-spacing:11.905050pt;}
.ws15e{word-spacing:11.907379pt;}
.ws15f{word-spacing:12.050842pt;}
.ws15a{word-spacing:12.098662pt;}
.ws162{word-spacing:12.624691pt;}
.ws3f{word-spacing:13.230333pt;}
.wsc{word-spacing:14.319536pt;}
.ws16f{word-spacing:14.768811pt;}
.ws179{word-spacing:14.770517pt;}
.ws15d{word-spacing:14.771874pt;}
.ws159{word-spacing:14.773897pt;}
.ws15b{word-spacing:14.776627pt;}
.ws17b{word-spacing:15.015731pt;}
.ws16e{word-spacing:15.159194pt;}
.ws136{word-spacing:16.418365pt;}
.wse{word-spacing:23.208806pt;}
.wsa{word-spacing:23.858002pt;}
.ws11{word-spacing:41.446878pt;}
.wsa5{word-spacing:97.590080pt;}
.wsa4{word-spacing:131.859392pt;}
.wsa3{word-spacing:137.622016pt;}
.wsa6{word-spacing:145.916960pt;}
._1c{margin-left:-193.281984pt;}
._1b{margin-left:-12.159392pt;}
._19{margin-left:-6.960537pt;}
._8{margin-left:-5.898689pt;}
._a{margin-left:-4.712556pt;}
._2{margin-left:-3.421811pt;}
._1f{margin-left:-2.460672pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._4{width:2.045648pt;}
._7{width:3.772750pt;}
._5{width:10.132188pt;}
._3{width:11.533317pt;}
._b{width:13.213996pt;}
._15{width:14.229312pt;}
._f{width:15.156076pt;}
._10{width:16.359034pt;}
._1a{width:17.252149pt;}
._d{width:18.745754pt;}
._22{width:19.663136pt;}
._16{width:20.569533pt;}
._17{width:21.519216pt;}
._1d{width:22.475626pt;}
._13{width:24.129502pt;}
._20{width:25.610524pt;}
._6{width:27.188522pt;}
._21{width:29.531968pt;}
._e{width:31.418266pt;}
._1e{width:33.534196pt;}
._18{width:36.874903pt;}
._c{width:50.498554pt;}
._9{width:61.161156pt;}
._11{width:814.144544pt;}
._14{width:1880.385920pt;}
._23{width:2245.122667pt;}
._12{width:2266.376000pt;}
.fs11{font-size:29.440000pt;}
.fs7{font-size:31.880533pt;}
.fs12{font-size:32.000000pt;}
.fs9{font-size:33.219200pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs14{font-size:38.755733pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsd{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fs13{font-size:45.424000pt;}
.fsa{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fsb{font-size:49.829333pt;}
.fs4{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:134.387200pt;}
.y91{bottom:-453.686267pt;}
.yb2{bottom:-378.804459pt;}
.yb1{bottom:-361.765115pt;}
.yb0{bottom:-344.645611pt;}
.yaf{bottom:-327.606267pt;}
.yad{bottom:-327.604123pt;}
.yae{bottom:-324.246267pt;}
.yac{bottom:-310.484619pt;}
.y15c{bottom:-307.527332pt;}
.yab{bottom:-293.365115pt;}
.y15b{bottom:-292.227393pt;}
.y124{bottom:-285.798267pt;}
.yaa{bottom:-276.325771pt;}
.yd6{bottom:-266.178267pt;}
.ya9{bottom:-259.206267pt;}
.ya7{bottom:-259.205611pt;}
.ya8{bottom:-255.846267pt;}
.ya6{bottom:-242.166267pt;}
.ya4{bottom:-242.162821pt;}
.ya5{bottom:-238.806267pt;}
.ya3{bottom:-225.043317pt;}
.yf8{bottom:-208.175811pt;}
.ya2{bottom:-207.923813pt;}
.y144{bottom:-203.793323pt;}
.yf7{bottom:-191.056307pt;}
.ya1{bottom:-190.884469pt;}
.y143{bottom:-186.673819pt;}
.yf6{bottom:-173.936803pt;}
.ya0{bottom:-173.764965pt;}
.y142{bottom:-169.634475pt;}
.yf5{bottom:-156.896123pt;}
.y9f{bottom:-156.725621pt;}
.y141{bottom:-152.514971pt;}
.yf4{bottom:-139.776619pt;}
.y9e{bottom:-135.606133pt;}
.y140{bottom:-135.395467pt;}
.yf3{bottom:-122.737275pt;}
.y13f{bottom:-118.356123pt;}
.yf2{bottom:-105.617771pt;}
.y9c{bottom:-102.887067pt;}
.y9d{bottom:-102.886267pt;}
.y13e{bottom:-101.236619pt;}
.yf1{bottom:-88.498267pt;}
.y9b{bottom:-87.446667pt;}
.y13d{bottom:-84.197275pt;}
.y9a{bottom:-72.086667pt;}
.y13c{bottom:-67.077771pt;}
.y99{bottom:-56.646267pt;}
.yf0{bottom:-55.857867pt;}
.y13b{bottom:-49.958267pt;}
.y98{bottom:-41.286267pt;}
.yef{bottom:-40.338267pt;}
.y97{bottom:-25.926267pt;}
.yee{bottom:-20.411283pt;}
.y13a{bottom:-17.238267pt;}
.y96{bottom:-6.006027pt;}
.y0{bottom:0.000000pt;}
.y139{bottom:2.761733pt;}
.y3{bottom:3.044747pt;}
.y15d{bottom:5.272552pt;}
.y10b{bottom:6.061733pt;}
.y2{bottom:12.578910pt;}
.y1f{bottom:14.009278pt;}
.y109{bottom:23.579989pt;}
.y53{bottom:28.346667pt;}
.y102{bottom:36.302237pt;}
.yfd{bottom:57.902501pt;}
.y103{bottom:73.422005pt;}
.y10d{bottom:77.741867pt;}
.y1cf{bottom:82.829333pt;}
.y11f{bottom:84.574667pt;}
.y11e{bottom:87.001333pt;}
.y159{bottom:88.448000pt;}
.y52{bottom:92.108000pt;}
.yd0{bottom:92.678667pt;}
.y175{bottom:92.800000pt;}
.y1d{bottom:93.018667pt;}
.y1a8{bottom:93.290667pt;}
.y1cd{bottom:98.869333pt;}
.y10c{bottom:99.021867pt;}
.y101{bottom:99.501709pt;}
.y1ce{bottom:103.209333pt;}
.y11d{bottom:103.738667pt;}
.y158{bottom:105.185333pt;}
.y51{bottom:108.844000pt;}
.y1c{bottom:108.920000pt;}
.ycf{bottom:109.416000pt;}
.y174{bottom:109.537333pt;}
.y1a7{bottom:110.028000pt;}
.y104{bottom:110.621573pt;}
.y1cc{bottom:114.909333pt;}
.y11c{bottom:120.476000pt;}
.y157{bottom:121.922667pt;}
.yfc{bottom:123.663021pt;}
.y1b{bottom:124.820000pt;}
.y50{bottom:125.581333pt;}
.y173{bottom:126.274667pt;}
.y205{bottom:126.446667pt;}
.y1a6{bottom:126.765333pt;}
.y10a{bottom:128.461733pt;}
.yce{bottom:130.138667pt;}
.y1ca{bottom:130.949333pt;}
.y1cb{bottom:135.289333pt;}
.y156{bottom:138.660000pt;}
.y1a{bottom:140.720000pt;}
.y11b{bottom:141.198667pt;}
.y204{bottom:141.788000pt;}
.y4f{bottom:142.318667pt;}
.y172{bottom:143.012000pt;}
.y1a5{bottom:143.501333pt;}
.y1c9{bottom:146.989333pt;}
.y105{bottom:147.741341pt;}
.y155{bottom:155.397333pt;}
.y19{bottom:156.621333pt;}
.y203{bottom:157.130667pt;}
.y4e{bottom:159.056000pt;}
.ycd{bottom:160.026667pt;}
.y1a4{bottom:160.238667pt;}
.y8d{bottom:161.036000pt;}
.y1c8{bottom:163.029333pt;}
.y171{bottom:163.734667pt;}
.y100{bottom:168.302077pt;}
.y11a{bottom:171.086667pt;}
.y154{bottom:172.134667pt;}
.y202{bottom:172.473333pt;}
.y18{bottom:172.521333pt;}
.yfb{bottom:175.022301pt;}
.y4d{bottom:175.793333pt;}
.ycc{bottom:176.764000pt;}
.y1a3{bottom:176.976000pt;}
.y8c{bottom:177.773333pt;}
.y1c7{bottom:179.069333pt;}
.y106{bottom:184.940909pt;}
.y201{bottom:187.816000pt;}
.y119{bottom:187.824000pt;}
.y17{bottom:188.421333pt;}
.y153{bottom:188.872000pt;}
.yfa{bottom:190.061941pt;}
.y4c{bottom:192.530667pt;}
.ycb{bottom:193.501333pt;}
.y170{bottom:193.622667pt;}
.y1a2{bottom:193.713333pt;}
.y8b{bottom:194.510667pt;}
.y1c6{bottom:195.109333pt;}
.y200{bottom:203.158667pt;}
.y16{bottom:204.322667pt;}
.y118{bottom:204.560000pt;}
.y152{bottom:205.609333pt;}
.y1a1{bottom:208.024000pt;}
.y4b{bottom:209.268000pt;}
.yca{bottom:210.238667pt;}
.y16f{bottom:210.360000pt;}
.y1a0{bottom:210.450667pt;}
.y1c5{bottom:211.148000pt;}
.y8a{bottom:211.248000pt;}
.y1ff{bottom:218.501333pt;}
.yfe{bottom:219.662421pt;}
.y117{bottom:221.297333pt;}
.y107{bottom:222.060677pt;}
.y151{bottom:222.346667pt;}
.y16e{bottom:224.670667pt;}
.y19f{bottom:224.761333pt;}
.y4a{bottom:226.005333pt;}
.yc9{bottom:226.976000pt;}
.y16d{bottom:227.097333pt;}
.y19e{bottom:227.188000pt;}
.y89{bottom:227.985333pt;}
.y1fe{bottom:233.844000pt;}
.yf9{bottom:233.981733pt;}
.yff{bottom:235.581989pt;}
.y116{bottom:238.034667pt;}
.y150{bottom:239.084000pt;}
.y16c{bottom:241.408000pt;}
.y19d{bottom:241.498667pt;}
.y49{bottom:242.742667pt;}
.y1c4{bottom:243.228000pt;}
.yc7{bottom:243.713333pt;}
.y16b{bottom:243.834667pt;}
.y19c{bottom:243.925333pt;}
.y87{bottom:244.722667pt;}
.yc8{bottom:248.534667pt;}
.y1fd{bottom:249.186667pt;}
.y88{bottom:249.544000pt;}
.y115{bottom:254.772000pt;}
.y14f{bottom:255.821333pt;}
.y16a{bottom:258.145333pt;}
.y108{bottom:259.260245pt;}
.y1c3{bottom:259.268000pt;}
.y48{bottom:259.480000pt;}
.yc6{bottom:260.449333pt;}
.y169{bottom:260.572000pt;}
.y19b{bottom:260.662667pt;}
.y86{bottom:261.460000pt;}
.y1fb{bottom:264.528000pt;}
.y1fc{bottom:264.529333pt;}
.y15{bottom:266.804000pt;}
.y114{bottom:271.509333pt;}
.y14e{bottom:272.558667pt;}
.y1c2{bottom:275.308000pt;}
.y47{bottom:276.217333pt;}
.yc5{bottom:277.186667pt;}
.y168{bottom:277.309333pt;}
.y19a{bottom:277.400000pt;}
.y85{bottom:278.197333pt;}
.y1fa{bottom:279.870667pt;}
.y14{bottom:282.705333pt;}
.y113{bottom:288.246667pt;}
.y14d{bottom:289.296000pt;}
.y1c1{bottom:291.348000pt;}
.y167{bottom:291.620000pt;}
.y84{bottom:292.508000pt;}
.y46{bottom:292.954667pt;}
.yc4{bottom:293.924000pt;}
.y165{bottom:294.046667pt;}
.y83{bottom:294.934667pt;}
.y1f9{bottom:295.213333pt;}
.yed{bottom:297.348301pt;}
.y199{bottom:298.122667pt;}
.y13{bottom:298.605333pt;}
.y166{bottom:298.868000pt;}
.y112{bottom:304.984000pt;}
.y14c{bottom:306.033333pt;}
.y1c0{bottom:307.388000pt;}
.y45{bottom:309.692000pt;}
.y1f8{bottom:310.556000pt;}
.yc2{bottom:310.661333pt;}
.y164{bottom:310.782667pt;}
.y81{bottom:311.672000pt;}
.yec{bottom:314.387645pt;}
.y12{bottom:314.505333pt;}
.yc3{bottom:315.484000pt;}
.y82{bottom:316.493333pt;}
.y111{bottom:321.721333pt;}
.y14b{bottom:322.770667pt;}
.y1bf{bottom:323.428000pt;}
.y163{bottom:325.094667pt;}
.y1f7{bottom:325.898667pt;}
.y44{bottom:326.429333pt;}
.yc0{bottom:327.398667pt;}
.y162{bottom:327.520000pt;}
.y198{bottom:328.010667pt;}
.y80{bottom:328.409333pt;}
.y138{bottom:329.006653pt;}
.yeb{bottom:331.507149pt;}
.yc1{bottom:332.221333pt;}
.y11{bottom:338.376000pt;}
.y110{bottom:338.458667pt;}
.y1be{bottom:339.468000pt;}
.y14a{bottom:339.508000pt;}
.y1f6{bottom:341.241333pt;}
.y43{bottom:343.166667pt;}
.ybf{bottom:344.136000pt;}
.y161{bottom:344.257333pt;}
.y196{bottom:344.748000pt;}
.y7f{bottom:345.146667pt;}
.y137{bottom:346.045997pt;}
.yea{bottom:348.626653pt;}
.y197{bottom:349.569333pt;}
.y10{bottom:354.277333pt;}
.y1bd{bottom:355.508000pt;}
.y149{bottom:356.245333pt;}
.y1f5{bottom:356.584000pt;}
.y195{bottom:359.058667pt;}
.y42{bottom:359.904000pt;}
.ybe{bottom:360.873333pt;}
.y194{bottom:361.485333pt;}
.y7e{bottom:361.884000pt;}
.y136{bottom:363.165501pt;}
.ye9{bottom:365.665997pt;}
.y10f{bottom:368.294667pt;}
.yf{bottom:370.177333pt;}
.y1bc{bottom:371.548000pt;}
.y1f4{bottom:371.926667pt;}
.y148{bottom:372.982667pt;}
.y160{bottom:374.094667pt;}
.y41{bottom:376.641333pt;}
.ybd{bottom:377.610667pt;}
.y193{bottom:378.222667pt;}
.y7d{bottom:378.621333pt;}
.y135{bottom:380.204845pt;}
.ye8{bottom:382.785501pt;}
.y10e{bottom:385.390667pt;}
.y1f3{bottom:387.269333pt;}
.y1bb{bottom:387.588000pt;}
.y147{bottom:389.720000pt;}
.y15e{bottom:391.189333pt;}
.ybc{bottom:394.348000pt;}
.y192{bottom:394.960000pt;}
.y7c{bottom:395.358667pt;}
.ye{bottom:395.376000pt;}
.y15f{bottom:395.529333pt;}
.y134{bottom:397.324349pt;}
.y40{bottom:397.364000pt;}
.y22a{bottom:399.741333pt;}
.ye7{bottom:399.824845pt;}
.y1f2{bottom:402.610667pt;}
.y1ba{bottom:403.626667pt;}
.yd3{bottom:405.328000pt;}
.y146{bottom:406.457333pt;}
.ybb{bottom:411.085333pt;}
.y15a{bottom:411.126667pt;}
.y190{bottom:411.697333pt;}
.y7b{bottom:412.096000pt;}
.y133{bottom:414.443853pt;}
.y229{bottom:415.084000pt;}
.y191{bottom:416.518667pt;}
.ye6{bottom:416.944349pt;}
.y1f1{bottom:417.953333pt;}
.yd{bottom:419.246667pt;}
.y1b9{bottom:419.666667pt;}
.y18f{bottom:428.434667pt;}
.y7a{bottom:428.833333pt;}
.y228{bottom:430.426667pt;}
.y132{bottom:431.484533pt;}
.yba{bottom:431.808000pt;}
.y18e{bottom:433.256000pt;}
.y1f0{bottom:433.296000pt;}
.ye5{bottom:434.063853pt;}
.yc{bottom:435.146667pt;}
.y1b8{bottom:435.706667pt;}
.y145{bottom:436.293333pt;}
.y79{bottom:443.144000pt;}
.y18d{bottom:445.172000pt;}
.y78{bottom:445.570667pt;}
.y227{bottom:445.769333pt;}
.y131{bottom:448.604037pt;}
.y1ef{bottom:448.638667pt;}
.y1b7{bottom:449.416000pt;}
.yb{bottom:451.048000pt;}
.ye4{bottom:451.104533pt;}
.y1b6{bottom:451.746667pt;}
.y95{bottom:454.474429pt;}
.y121{bottom:456.230667pt;}
.yb9{bottom:458.854667pt;}
.y226{bottom:461.112000pt;}
.y18c{bottom:461.909333pt;}
.y77{bottom:462.306667pt;}
.y1ee{bottom:463.981333pt;}
.y3f{bottom:464.164000pt;}
.y130{bottom:465.643381pt;}
.ya{bottom:466.948000pt;}
.y1b4{bottom:467.786667pt;}
.ye3{bottom:468.224037pt;}
.y94{bottom:471.593933pt;}
.y1b5{bottom:472.126667pt;}
.yb8{bottom:475.950667pt;}
.y18b{bottom:476.220000pt;}
.y225{bottom:476.454667pt;}
.y18a{bottom:478.646667pt;}
.y76{bottom:479.044000pt;}
.y1ed{bottom:479.324000pt;}
.y3e{bottom:481.458667pt;}
.y12f{bottom:482.762885pt;}
.y9{bottom:482.848000pt;}
.y1b3{bottom:483.826667pt;}
.ye2{bottom:485.263381pt;}
.y93{bottom:488.713437pt;}
.y224{bottom:491.797333pt;}
.yb7{bottom:493.046667pt;}
.y1ec{bottom:494.666667pt;}
.y189{bottom:495.384000pt;}
.y75{bottom:495.781333pt;}
.y8{bottom:498.749333pt;}
.y1b2{bottom:499.866667pt;}
.y12e{bottom:499.882389pt;}
.ye1{bottom:502.382885pt;}
.y92{bottom:505.754117pt;}
.y223{bottom:507.138667pt;}
.y1eb{bottom:510.009333pt;}
.yb6{bottom:510.142667pt;}
.y188{bottom:512.121333pt;}
.y74{bottom:512.518667pt;}
.y7{bottom:514.649333pt;}
.y3d{bottom:514.694667pt;}
.y1b1{bottom:515.906667pt;}
.y12d{bottom:516.922725pt;}
.ye0{bottom:519.502389pt;}
.y222{bottom:522.481333pt;}
.yb5{bottom:524.906667pt;}
.y1e9{bottom:525.350667pt;}
.y1ea{bottom:525.352000pt;}
.yb4{bottom:527.237333pt;}
.y187{bottom:528.857333pt;}
.y73{bottom:529.256000pt;}
.y6{bottom:530.549333pt;}
.y1b0{bottom:531.946667pt;}
.y3c{bottom:531.989333pt;}
.y12c{bottom:534.042229pt;}
.ydf{bottom:536.542229pt;}
.y221{bottom:537.824000pt;}
.y1e8{bottom:540.693333pt;}
.y186{bottom:543.169333pt;}
.yb3{bottom:544.333333pt;}
.y185{bottom:545.594667pt;}
.y72{bottom:545.993333pt;}
.y5{bottom:546.450667pt;}
.y3b{bottom:549.284000pt;}
.y12b{bottom:551.162981pt;}
.y220{bottom:553.166667pt;}
.yde{bottom:553.664813pt;}
.y90{bottom:554.393853pt;}
.y1e7{bottom:556.036000pt;}
.y184{bottom:562.332000pt;}
.y4{bottom:562.350667pt;}
.y71{bottom:562.730667pt;}
.y8f{bottom:562.953733pt;}
.y1af{bottom:563.926667pt;}
.y8e{bottom:564.270667pt;}
.y3a{bottom:566.580000pt;}
.y12a{bottom:568.202325pt;}
.y21f{bottom:568.509333pt;}
.ydd{bottom:570.784317pt;}
.y1e6{bottom:571.378667pt;}
.y1{bottom:578.250715pt;}
.y70{bottom:579.468000pt;}
.y1ae{bottom:580.664000pt;}
.y183{bottom:583.054667pt;}
.y21e{bottom:583.852000pt;}
.y39{bottom:583.874667pt;}
.y129{bottom:585.321829pt;}
.y1e5{bottom:586.721333pt;}
.ydc{bottom:587.823661pt;}
.y6f{bottom:596.205333pt;}
.y1ad{bottom:597.401333pt;}
.y21d{bottom:599.194667pt;}
.y182{bottom:600.988000pt;}
.y38{bottom:601.169333pt;}
.y1e4{bottom:602.064000pt;}
.ydb{bottom:604.943165pt;}
.y128{bottom:606.362493pt;}
.y6e{bottom:610.516000pt;}
.y6d{bottom:612.942667pt;}
.y1ac{bottom:614.138667pt;}
.y21c{bottom:614.537333pt;}
.y36{bottom:616.133333pt;}
.y37{bottom:616.672000pt;}
.y1e3{bottom:617.406667pt;}
.y35{bottom:618.465333pt;}
.yda{bottom:621.982509pt;}
.y21b{bottom:629.878667pt;}
.y181{bottom:630.876000pt;}
.y1e2{bottom:632.749333pt;}
.y34{bottom:633.429333pt;}
.y6c{bottom:633.665333pt;}
.y33{bottom:635.760000pt;}
.y127{bottom:639.481933pt;}
.yd9{bottom:643.101997pt;}
.y21a{bottom:645.221333pt;}
.y180{bottom:647.613333pt;}
.y1e1{bottom:648.092000pt;}
.y6b{bottom:651.597333pt;}
.y32{bottom:653.056000pt;}
.y126{bottom:656.601437pt;}
.y219{bottom:660.564000pt;}
.y17f{bottom:664.350667pt;}
.y1e0{bottom:667.418667pt;}
.y125{bottom:673.642117pt;}
.y218{bottom:675.906667pt;}
.yd8{bottom:676.221437pt;}
.y17e{bottom:681.088000pt;}
.y6a{bottom:681.485333pt;}
.y31{bottom:684.950667pt;}
.y1ab{bottom:685.072000pt;}
.y217{bottom:691.249333pt;}
.yd7{bottom:693.262117pt;}
.y17d{bottom:697.825333pt;}
.y69{bottom:698.222667pt;}
.y30{bottom:699.296000pt;}
.y1df{bottom:700.096000pt;}
.y216{bottom:706.592000pt;}
.y2f{bottom:713.642667pt;}
.y17c{bottom:714.562667pt;}
.y68{bottom:714.960000pt;}
.y215{bottom:721.934667pt;}
.y123{bottom:722.281853pt;}
.y1de{bottom:723.688000pt;}
.y122{bottom:730.841733pt;}
.y17b{bottom:731.300000pt;}
.y67{bottom:731.697333pt;}
.y2e{bottom:731.846667pt;}
.y214{bottom:737.277333pt;}
.yd5{bottom:741.901853pt;}
.y2d{bottom:742.334667pt;}
.y1dd{bottom:747.280000pt;}
.y17a{bottom:748.036000pt;}
.y66{bottom:748.434667pt;}
.yd4{bottom:750.461733pt;}
.y213{bottom:752.620000pt;}
.y2c{bottom:756.681333pt;}
.y2b{bottom:760.538667pt;}
.y1dc{bottom:762.901333pt;}
.y179{bottom:764.773333pt;}
.y65{bottom:765.172000pt;}
.y212{bottom:767.961333pt;}
.y2a{bottom:771.028000pt;}
.y1db{bottom:778.522667pt;}
.y1aa{bottom:779.482667pt;}
.y63{bottom:781.909333pt;}
.y211{bottom:783.304000pt;}
.y29{bottom:785.373333pt;}
.y178{bottom:785.496000pt;}
.y64{bottom:786.732000pt;}
.y1da{bottom:794.144000pt;}
.y62{bottom:798.646667pt;}
.y28{bottom:803.577333pt;}
.y1d9{bottom:809.765333pt;}
.y1a9{bottom:812.957333pt;}
.y210{bottom:813.989333pt;}
.y27{bottom:814.066667pt;}
.y61{bottom:815.384000pt;}
.y1d8{bottom:825.386667pt;}
.y26{bottom:828.413333pt;}
.y20f{bottom:829.332000pt;}
.y60{bottom:832.121333pt;}
.y25{bottom:832.270667pt;}
.y177{bottom:836.944000pt;}
.y20e{bottom:844.674667pt;}
.y176{bottom:846.432000pt;}
.y5f{bottom:848.858667pt;}
.y1d7{bottom:848.978667pt;}
.y20d{bottom:860.017333pt;}
.y1d6{bottom:864.600000pt;}
.y5e{bottom:865.596000pt;}
.y24{bottom:869.578667pt;}
.y20c{bottom:875.360000pt;}
.y5c{bottom:879.906667pt;}
.y1d5{bottom:880.221333pt;}
.y5d{bottom:880.341333pt;}
.y5b{bottom:882.333333pt;}
.y23{bottom:886.316000pt;}
.y20b{bottom:890.702667pt;}
.y1d4{bottom:895.842667pt;}
.y5a{bottom:899.070667pt;}
.y20a{bottom:906.044000pt;}
.y1d3{bottom:911.464000pt;}
.y59{bottom:915.808000pt;}
.y209{bottom:921.386667pt;}
.y22{bottom:921.800000pt;}
.y1d2{bottom:927.085333pt;}
.y58{bottom:932.545333pt;}
.y208{bottom:936.729333pt;}
.yd2{bottom:937.366667pt;}
.y21{bottom:946.905333pt;}
.y57{bottom:949.282667pt;}
.y1d1{bottom:950.677333pt;}
.y207{bottom:952.072000pt;}
.yd1{bottom:954.104000pt;}
.y120{bottom:963.593333pt;}
.y56{bottom:966.020000pt;}
.y1d0{bottom:966.717333pt;}
.y206{bottom:967.414667pt;}
.y20{bottom:972.012000pt;}
.y55{bottom:982.757333pt;}
.y1e{bottom:1010.666667pt;}
.y54{bottom:1038.548000pt;}
.hd{height:22.123987pt;}
.h2{height:22.673858pt;}
.h17{height:24.972917pt;}
.h2c{height:25.811318pt;}
.h1c{height:27.499375pt;}
.h16{height:28.023859pt;}
.h4{height:29.433775pt;}
.h1e{height:29.890625pt;}
.hb{height:30.063343pt;}
.h3{height:30.399505pt;}
.h21{height:30.590000pt;}
.h22{height:31.005625pt;}
.h29{height:31.472977pt;}
.h23{height:32.605881pt;}
.h10{height:33.186336pt;}
.h2d{height:33.378918pt;}
.h25{height:34.000589pt;}
.he{height:34.670080pt;}
.h24{height:34.968750pt;}
.h5{height:35.073565pt;}
.h15{height:36.873667pt;}
.h13{height:37.087439pt;}
.h1f{height:37.778179pt;}
.h14{height:38.080100pt;}
.h1d{height:38.462187pt;}
.h11{height:38.522053pt;}
.h8{height:38.947124pt;}
.h27{height:39.505937pt;}
.h19{height:39.754531pt;}
.hc{height:40.084290pt;}
.h1b{height:44.835938pt;}
.hf{height:45.095014pt;}
.h6{height:45.271688pt;}
.h2b{height:46.580334pt;}
.ha{height:48.567520pt;}
.h1a{height:49.917344pt;}
.h12{height:50.105236pt;}
.h2a{height:52.428231pt;}
.h9{height:69.340160pt;}
.h7{height:91.114522pt;}
.h20{height:271.881333pt;}
.h26{height:312.244000pt;}
.h18{height:431.770667pt;}
.h28{height:508.371400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:169.178366pt;}
.w6{width:355.409333pt;}
.w5{width:436.693333pt;}
.w7{width:481.568407pt;}
.w4{width:498.445333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x95{left:-193.050667pt;}
.x56{left:-171.445333pt;}
.x96{left:-19.210347pt;}
.xb9{left:-5.257193pt;}
.x0{left:0.000000pt;}
.x57{left:2.393698pt;}
.x97{left:9.110181pt;}
.xa3{left:13.109333pt;}
.x2{left:26.021437pt;}
.x9f{left:27.427101pt;}
.x66{left:30.714573pt;}
.xa0{left:33.347197pt;}
.xa1{left:36.866909pt;}
.x4{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:51.606197pt;}
.x6b{left:53.114667pt;}
.x6c{left:61.114667pt;}
.x98{left:63.989333pt;}
.xa2{left:76.146597pt;}
.x9c{left:83.827613pt;}
.x6d{left:95.434667pt;}
.xa4{left:101.749333pt;}
.x6e{left:103.434667pt;}
.x99{left:115.029413pt;}
.x9a{left:169.268941pt;}
.x69{left:201.514667pt;}
.x6a{left:209.514667pt;}
.x9{left:220.912000pt;}
.x5{left:221.858667pt;}
.x74{left:225.524000pt;}
.xce{left:227.065333pt;}
.x75{left:230.832000pt;}
.x4a{left:234.676000pt;}
.xcf{left:235.868000pt;}
.xd3{left:238.870667pt;}
.x6{left:239.785333pt;}
.x9d{left:242.146557pt;}
.x8f{left:244.273333pt;}
.x7d{left:246.094667pt;}
.x80{left:247.422667pt;}
.x20{left:250.204000pt;}
.x81{left:254.150667pt;}
.x53{left:256.902667pt;}
.x84{left:261.277333pt;}
.x2b{left:263.021333pt;}
.x88{left:264.708000pt;}
.xea{left:268.613333pt;}
.x2c{left:269.716000pt;}
.x4b{left:271.333333pt;}
.xa{left:273.892000pt;}
.xd{left:276.140000pt;}
.x7e{left:278.165333pt;}
.xbb{left:280.038667pt;}
.x4c{left:281.080000pt;}
.x2d{left:283.000000pt;}
.xc0{left:284.334667pt;}
.x1f{left:286.504000pt;}
.xe{left:288.426667pt;}
.xf2{left:292.245333pt;}
.x7f{left:293.802667pt;}
.x89{left:302.172000pt;}
.xf{left:303.230667pt;}
.xf3{left:305.206667pt;}
.x10{left:315.517333pt;}
.x8a{left:316.433333pt;}
.x82{left:318.492000pt;}
.x40{left:320.668000pt;}
.xd8{left:321.646667pt;}
.x11{left:322.968000pt;}
.x41{left:326.380000pt;}
.xd9{left:327.358667pt;}
.x12{left:328.281333pt;}
.x5c{left:329.514667pt;}
.x9b{left:330.468133pt;}
.xbe{left:334.538667pt;}
.x83{left:335.469333pt;}
.x42{left:336.966667pt;}
.x5d{left:338.714667pt;}
.x70{left:341.892000pt;}
.x43{left:345.988000pt;}
.xe3{left:349.169333pt;}
.x9e{left:350.306413pt;}
.x71{left:351.948000pt;}
.x5e{left:353.274667pt;}
.xb4{left:354.572000pt;}
.x13{left:356.133333pt;}
.x72{left:359.252000pt;}
.x14{left:361.446667pt;}
.x5f{left:362.474667pt;}
.xa5{left:364.665333pt;}
.x60{left:369.834667pt;}
.xc3{left:371.946667pt;}
.x61{left:373.514667pt;}
.x15{left:375.653333pt;}
.x16{left:380.966667pt;}
.x8e{left:382.497333pt;}
.x59{left:385.194667pt;}
.x7b{left:386.212000pt;}
.xac{left:390.456000pt;}
.x17{left:394.612000pt;}
.x7c{left:398.041333pt;}
.x18{left:399.925333pt;}
.x19{left:404.134667pt;}
.x90{left:406.526667pt;}
.x1a{left:407.740000pt;}
.x6f{left:409.968000pt;}
.x5a{left:412.554667pt;}
.xb2{left:414.201333pt;}
.x5b{left:416.234667pt;}
.x62{left:418.474667pt;}
.xe6{left:420.333333pt;}
.x63{left:422.154667pt;}
.x67{left:423.514667pt;}
.x85{left:424.924000pt;}
.xb3{left:427.485333pt;}
.x68{left:431.514667pt;}
.xe7{left:434.585333pt;}
.x54{left:436.124000pt;}
.x64{left:439.274667pt;}
.xe4{left:442.241333pt;}
.x3b{left:444.494667pt;}
.xe5{left:447.953333pt;}
.x55{left:449.408000pt;}
.xca{left:450.546667pt;}
.x1b{left:451.748000pt;}
.xec{left:452.982667pt;}
.xcb{left:456.258667pt;}
.xe1{left:457.513333pt;}
.xad{left:458.958667pt;}
.xed{left:460.366667pt;}
.x1c{left:462.244000pt;}
.x2e{left:463.648000pt;}
.xe2{left:465.718667pt;}
.xc1{left:469.706667pt;}
.xae{left:472.913333pt;}
.xc2{left:475.418667pt;}
.x2f{left:476.930667pt;}
.x76{left:479.193333pt;}
.xda{left:482.546667pt;}
.xcc{left:485.093333pt;}
.x46{left:487.141333pt;}
.x65{left:489.514667pt;}
.x4f{left:492.358667pt;}
.x30{left:493.380000pt;}
.xba{left:496.240388pt;}
.x47{left:501.058667pt;}
.x44{left:503.704000pt;}
.x31{left:506.662667pt;}
.x45{left:512.724000pt;}
.x32{left:514.941333pt;}
.x33{left:520.653333pt;}
.xcd{left:522.686667pt;}
.x3c{left:524.276000pt;}
.x48{left:527.618667pt;}
.x8b{left:530.844000pt;}
.x58{left:532.392341pt;}
.xd0{left:533.401333pt;}
.xaf{left:538.096000pt;}
.xd1{left:539.113333pt;}
.x49{left:542.128000pt;}
.x34{left:551.600000pt;}
.xd4{left:552.842667pt;}
.xdf{left:554.946667pt;}
.x35{left:557.312000pt;}
.xd5{left:558.553333pt;}
.xb0{left:561.488000pt;}
.xd6{left:563.065333pt;}
.x8c{left:563.965333pt;}
.xb{left:565.553333pt;}
.xc{left:570.866667pt;}
.x36{left:573.096000pt;}
.x1d{left:578.633333pt;}
.xa9{left:579.748000pt;}
.xb6{left:581.873333pt;}
.x86{left:584.168000pt;}
.x3d{left:586.082667pt;}
.xb5{left:589.388000pt;}
.xaa{left:590.497333pt;}
.xa7{left:592.453333pt;}
.x37{left:593.969333pt;}
.xd7{left:596.708000pt;}
.x79{left:597.633333pt;}
.xab{left:598.701333pt;}
.x38{left:599.681333pt;}
.xe0{left:601.584000pt;}
.x39{left:604.360000pt;}
.x3a{left:608.364000pt;}
.x7a{left:609.462667pt;}
.x8d{left:611.180000pt;}
.x77{left:620.090667pt;}
.xc5{left:622.521333pt;}
.xb7{left:624.474667pt;}
.xc6{left:625.828000pt;}
.xc4{left:626.993333pt;}
.xa8{left:627.918667pt;}
.x73{left:632.868000pt;}
.x50{left:634.444000pt;}
.x1e{left:637.297333pt;}
.xb8{left:639.233333pt;}
.x25{left:640.680000pt;}
.xc7{left:642.420000pt;}
.x91{left:643.678667pt;}
.x21{left:645.137333pt;}
.x26{left:647.322667pt;}
.xb1{left:648.417333pt;}
.x87{left:649.350667pt;}
.x27{left:650.577333pt;}
.x22{left:651.778667pt;}
.x92{left:654.604000pt;}
.xc8{left:655.702667pt;}
.x28{left:657.218667pt;}
.x51{left:659.581333pt;}
.x3e{left:661.397333pt;}
.x29{left:663.728000pt;}
.x3f{left:667.108000pt;}
.xbf{left:669.094667pt;}
.xdb{left:670.125333pt;}
.xc9{left:672.294667pt;}
.x2a{left:677.010667pt;}
.xdc{left:680.101333pt;}
.x93{left:682.272000pt;}
.x23{left:684.240000pt;}
.x78{left:685.273333pt;}
.xee{left:689.068000pt;}
.xbc{left:691.305333pt;}
.x24{left:692.986667pt;}
.xf6{left:695.792000pt;}
.x94{left:696.988000pt;}
.xbd{left:699.612000pt;}
.xef{left:703.168000pt;}
.xdd{left:705.812000pt;}
.xeb{left:707.386667pt;}
.xe8{left:708.641333pt;}
.xde{left:712.454667pt;}
.x52{left:714.458667pt;}
.xe9{left:718.610667pt;}
.xf4{left:720.344000pt;}
.xa6{left:725.056000pt;}
.xf7{left:726.605333pt;}
.x4d{left:728.073333pt;}
.x7{left:731.578667pt;}
.xd2{left:733.464000pt;}
.xf0{left:734.422667pt;}
.xf1{left:738.026667pt;}
.x8{left:739.146667pt;}
.x4e{left:741.357333pt;}
.xf5{left:744.254667pt;}
}




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