
    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_62bf1eb0e2c0c86e5750ac90.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_51817b64127b3d0a4a616b3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_d02b9ead1b0dccdcc586074b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_5f741488e3ef156a7406080d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_66c27daadffe7dca7e5e1a86.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897000;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_4da56d65bec6cc5b3a58ccd0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;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_83de5a9a6cab60a0110df934.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0c4c14afdcd9143b64d6f797.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_23f754b4b2def5c346fae4e7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4da56d65bec6cc5b3a58ccd0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006348;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_83de5a9a6cab60a0110df934.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d0b71a0495037dca2579ba91.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_88637c81171fe145d5da09d3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0f84a9180979b2ba7c7f90f5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_df4026a0f185cbeef2dd530a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.391000;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_e2ecfa91c7ee73542ddb66a9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.006348;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_96d4fcc2c8fe7763099d103f.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_02af1cbcb6deb02710c887d4.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_e4cba2c24f37270aaf306bcf.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c3ec5bcac6b8b0d858e1ad5d.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f2f57d316c3bd559b8f40425.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.006348;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_8907878cbd33cb7b72f80cd3.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_294023c1214c29c2c597e13c.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_4da56d65bec6cc5b3a58ccd0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.006348;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_bc436bbeca83c66eec685dc3.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_112a05fd22c1a5602ce82e58.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_4da56d65bec6cc5b3a58ccd0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_450d3c592f8a5a2856881e9a.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_62186b5311fa6bdf87bc389d.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_7425569c8819192f20cffddb.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_8b57747480a349b5b9f748a5.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_09c4fa20490b3ca4c0995fbd.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.695000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_d083586ea422a2ff3fa3dafa.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.883000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_32745d37fbadeb56ce5418cc.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m2b{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);}
.m31{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);}
.mf{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);}
.m12{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);}
.m20{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);}
.m23{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);}
.m22{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);}
.m3{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);}
.m29{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);}
.md{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);}
.me{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);}
.m32{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);}
.ma{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);}
.mb{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);}
.m28{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);}
.m16{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);}
.m27{transform:matrix(0.248692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248692,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m17{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);}
.m5{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);}
.m1d{transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m26{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);}
.m2d{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);}
.m2e{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m2f{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);}
.m1f{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250226,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m7{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);}
.m2{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);}
.mc{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);}
.m9{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);}
.m1b{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);}
.m10{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);}
.m14{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m18{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);}
.m15{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);}
.m8{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);}
.m21{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);}
.m19{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);}
.m30{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);}
.m24{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);}
.m6{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);}
.m2a{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);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v2{vertical-align:-19.524000px;}
.v4{vertical-align:-10.080000px;}
.v3{vertical-align:-4.680000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v5{vertical-align:27.948000px;}
.ls31{letter-spacing:-2.510189px;}
.ls5a{letter-spacing:-2.428848px;}
.ls3f{letter-spacing:-2.014589px;}
.ls3d{letter-spacing:-1.889546px;}
.ls55{letter-spacing:-1.282010px;}
.ls3b{letter-spacing:-1.243488px;}
.ls4d{letter-spacing:-1.040898px;}
.ls4e{letter-spacing:-0.664528px;}
.ls54{letter-spacing:-0.605720px;}
.ls51{letter-spacing:-0.511628px;}
.ls71{letter-spacing:-0.234468px;}
.ls6d{letter-spacing:-0.210420px;}
.ls70{letter-spacing:-0.162324px;}
.ls6e{letter-spacing:-0.150300px;}
.ls36{letter-spacing:-0.144288px;}
.ls34{letter-spacing:-0.138276px;}
.ls63{letter-spacing:-0.132264px;}
.ls6f{letter-spacing:-0.126252px;}
.ls5c{letter-spacing:-0.120240px;}
.ls2e{letter-spacing:-0.114228px;}
.ls28{letter-spacing:-0.096192px;}
.ls23{letter-spacing:-0.090972px;}
.ls26{letter-spacing:-0.090180px;}
.ls62{letter-spacing:-0.086184px;}
.ls2a{letter-spacing:-0.084168px;}
.ls39{letter-spacing:-0.078156px;}
.ls33{letter-spacing:-0.072144px;}
.ls4b{letter-spacing:-0.070569px;}
.ls38{letter-spacing:-0.066132px;}
.ls5b{letter-spacing:-0.060120px;}
.ls2d{letter-spacing:-0.054108px;}
.ls37{letter-spacing:-0.048096px;}
.ls25{letter-spacing:-0.042084px;}
.ls24{letter-spacing:-0.036072px;}
.ls27{letter-spacing:-0.030060px;}
.ls29{letter-spacing:-0.024048px;}
.ls2c{letter-spacing:-0.018036px;}
.ls35{letter-spacing:-0.012024px;}
.ls59{letter-spacing:-0.010800px;}
.ls2b{letter-spacing:-0.006012px;}
.ls58{letter-spacing:-0.005400px;}
.ls7{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.000500px;}
.ls5d{letter-spacing:0.001029px;}
.ls68{letter-spacing:0.001193px;}
.ls72{letter-spacing:0.001204px;}
.ls69{letter-spacing:0.001518px;}
.ls4{letter-spacing:0.001875px;}
.ls6c{letter-spacing:0.002338px;}
.ls67{letter-spacing:0.002360px;}
.ls81{letter-spacing:0.002573px;}
.ls22{letter-spacing:0.003226px;}
.ls73{letter-spacing:0.003394px;}
.ls21{letter-spacing:0.003494px;}
.ls86{letter-spacing:0.003720px;}
.ls77{letter-spacing:0.004800px;}
.ls16{letter-spacing:0.005400px;}
.ls7e{letter-spacing:0.005724px;}
.ls12{letter-spacing:0.006012px;}
.ls1e{letter-spacing:0.012024px;}
.ls43{letter-spacing:0.016200px;}
.ls14{letter-spacing:0.018036px;}
.lse{letter-spacing:0.021600px;}
.ls47{letter-spacing:0.024048px;}
.ls10{letter-spacing:0.027000px;}
.lsc{letter-spacing:0.028728px;}
.ls19{letter-spacing:0.030060px;}
.ls44{letter-spacing:0.032400px;}
.lsa{letter-spacing:0.033516px;}
.ls1b{letter-spacing:0.036072px;}
.ls17{letter-spacing:0.037800px;}
.ls61{letter-spacing:0.038304px;}
.ls13{letter-spacing:0.042084px;}
.ls5f{letter-spacing:0.043092px;}
.ls46{letter-spacing:0.048096px;}
.lsf{letter-spacing:0.048600px;}
.ls6a{letter-spacing:0.054000px;}
.ls11{letter-spacing:0.054108px;}
.ls30{letter-spacing:0.055321px;}
.ls49{letter-spacing:0.060120px;}
.ls18{letter-spacing:0.066132px;}
.ls45{letter-spacing:0.072144px;}
.ls1f{letter-spacing:0.078156px;}
.ls1a{letter-spacing:0.084168px;}
.ls1d{letter-spacing:0.096192px;}
.ls48{letter-spacing:0.138276px;}
.lsd{letter-spacing:0.172368px;}
.lsb{letter-spacing:0.181944px;}
.ls60{letter-spacing:0.191520px;}
.ls3c{letter-spacing:0.208406px;}
.ls4c{letter-spacing:0.223470px;}
.ls57{letter-spacing:0.229350px;}
.ls4a{letter-spacing:0.529270px;}
.ls80{letter-spacing:0.547627px;}
.ls32{letter-spacing:1.085674px;}
.ls8{letter-spacing:1.275394px;}
.ls40{letter-spacing:1.340744px;}
.ls3e{letter-spacing:1.681140px;}
.ls3{letter-spacing:1.861130px;}
.ls52{letter-spacing:1.940657px;}
.ls2f{letter-spacing:2.116027px;}
.ls3a{letter-spacing:2.167420px;}
.ls4f{letter-spacing:2.258220px;}
.ls53{letter-spacing:2.417001px;}
.ls50{letter-spacing:2.434643px;}
.ls56{letter-spacing:2.816894px;}
.ls1c{letter-spacing:10.890000px;}
.ls6{letter-spacing:11.954850px;}
.ls79{letter-spacing:13.134073px;}
.ls83{letter-spacing:13.138751px;}
.ls82{letter-spacing:13.329724px;}
.ls85{letter-spacing:13.350797px;}
.ls7c{letter-spacing:13.363086px;}
.ls89{letter-spacing:13.440196px;}
.ls74{letter-spacing:13.448400px;}
.ls76{letter-spacing:13.454400px;}
.ls78{letter-spacing:13.484532px;}
.ls7f{letter-spacing:13.538279px;}
.ls7a{letter-spacing:13.611129px;}
.ls84{letter-spacing:13.617067px;}
.ls87{letter-spacing:13.665785px;}
.ls66{letter-spacing:14.344190px;}
.ls88{letter-spacing:14.632753px;}
.ls64{letter-spacing:14.724415px;}
.ls41{letter-spacing:14.797612px;}
.ls9{letter-spacing:14.884124px;}
.ls5{letter-spacing:14.922637px;}
.ls6b{letter-spacing:15.123227px;}
.ls7b{letter-spacing:15.462165px;}
.ls7d{letter-spacing:17.638635px;}
.ls65{letter-spacing:19.247743px;}
.ls75{letter-spacing:19.550400px;}
.ls1{letter-spacing:70.236600px;}
.ls2{letter-spacing:72.353510px;}
.ls0{letter-spacing:72.361200px;}
.ls42{letter-spacing:93.543361px;}
.ls15{letter-spacing:944.102922px;}
.ls20{letter-spacing:1174.070251px;}
.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;}
}
.ws90{word-spacing:-17.394700px;}
.ws34{word-spacing:-17.381044px;}
.ws2d{word-spacing:-16.713845px;}
.ws9e{word-spacing:-16.107456px;}
.ws1b0{word-spacing:-15.655334px;}
.ws9a{word-spacing:-15.548782px;}
.ws9c{word-spacing:-15.231220px;}
.ws94{word-spacing:-14.943900px;}
.ws1b{word-spacing:-13.915795px;}
.ws32{word-spacing:-13.810358px;}
.ws33{word-spacing:-13.685314px;}
.ws9f{word-spacing:-13.519913px;}
.ws166{word-spacing:-13.449600px;}
.ws19b{word-spacing:-13.307034px;}
.ws9b{word-spacing:-12.778935px;}
.ws31{word-spacing:-12.756028px;}
.ws9d{word-spacing:-12.684842px;}
.ws10b{word-spacing:-12.161520px;}
.ws2c{word-spacing:-12.151944px;}
.ws1a{word-spacing:-11.955150px;}
.ws19d{word-spacing:-11.432160px;}
.ws2{word-spacing:-11.357400px;}
.ws132{word-spacing:-3.945190px;}
.ws100{word-spacing:-3.885414px;}
.ws137{word-spacing:-3.586536px;}
.ws188{word-spacing:-3.529044px;}
.ws98{word-spacing:-3.526760px;}
.ws76{word-spacing:-3.523032px;}
.ws8f{word-spacing:-3.466985px;}
.wse7{word-spacing:-3.347434px;}
.ws103{word-spacing:-3.287658px;}
.ws212{word-spacing:-3.281702px;}
.ws113{word-spacing:-3.180348px;}
.ws1fa{word-spacing:-3.174106px;}
.ws162{word-spacing:-3.168324px;}
.ws14f{word-spacing:-3.168107px;}
.ws110{word-spacing:-3.156300px;}
.ws1c3{word-spacing:-3.120307px;}
.ws175{word-spacing:-3.072132px;}
.ws197{word-spacing:-2.988780px;}
.ws28{word-spacing:-2.929004px;}
.ws125{word-spacing:-2.819628px;}
.ws17a{word-spacing:-2.813616px;}
.ws27{word-spacing:-2.809453px;}
.ws1b4{word-spacing:-2.797517px;}
.ws7a{word-spacing:-2.795580px;}
.ws6b{word-spacing:-2.789568px;}
.ws7b{word-spacing:-2.771532px;}
.ws6c{word-spacing:-2.765520px;}
.ws1e2{word-spacing:-2.743718px;}
.ws10f{word-spacing:-2.717424px;}
.wse8{word-spacing:-2.689902px;}
.ws93{word-spacing:-2.630126px;}
.ws136{word-spacing:-2.570351px;}
.ws18f{word-spacing:-2.476944px;}
.ws209{word-spacing:-2.474726px;}
.ws18e{word-spacing:-2.422836px;}
.ws204{word-spacing:-2.420928px;}
.ws13c{word-spacing:-2.391024px;}
.ws179{word-spacing:-2.374740px;}
.ws1bc{word-spacing:-2.367130px;}
.wsbf{word-spacing:-2.332656px;}
.ws139{word-spacing:-2.331248px;}
.ws210{word-spacing:-2.205734px;}
.ws218{word-spacing:-2.151936px;}
.ws147{word-spacing:-2.151922px;}
.wsbb{word-spacing:-2.092176px;}
.ws2b{word-spacing:-2.092146px;}
.ws10c{word-spacing:-2.032370px;}
.ws16d{word-spacing:-2.032056px;}
.wsbc{word-spacing:-2.026044px;}
.wsd3{word-spacing:-1.989972px;}
.ws152{word-spacing:-1.972595px;}
.ws1fc{word-spacing:-1.936742px;}
.ws8c{word-spacing:-1.917333px;}
.ws5{word-spacing:-1.908367px;}
.ws16c{word-spacing:-1.851696px;}
.ws17b{word-spacing:-1.761516px;}
.ws101{word-spacing:-1.733492px;}
.ws1f{word-spacing:-1.673717px;}
.ws1ff{word-spacing:-1.613952px;}
.ws1a3{word-spacing:-1.613941px;}
.ws16a{word-spacing:-1.611216px;}
.ws200{word-spacing:-1.560154px;}
.wsa2{word-spacing:-1.554166px;}
.ws205{word-spacing:-1.506355px;}
.ws95{word-spacing:-1.494390px;}
.ws1ec{word-spacing:-1.452557px;}
.ws156{word-spacing:-1.434614px;}
.ws5b{word-spacing:-1.418832px;}
.wsed{word-spacing:-1.374839px;}
.ws47{word-spacing:-1.352700px;}
.ws5c{word-spacing:-1.334664px;}
.ws4{word-spacing:-1.322630px;}
.ws16b{word-spacing:-1.304604px;}
.wsd9{word-spacing:-1.292580px;}
.ws8e{word-spacing:-1.255288px;}
.wsf8{word-spacing:-1.195512px;}
.ws1d5{word-spacing:-1.183565px;}
.ws15{word-spacing:-1.135736px;}
.ws146{word-spacing:-1.075961px;}
.ws219{word-spacing:-1.022170px;}
.wsd2{word-spacing:-1.022040px;}
.ws151{word-spacing:-1.016185px;}
.wsda{word-spacing:-0.997992px;}
.ws158{word-spacing:-0.914573px;}
.ws106{word-spacing:-0.896634px;}
.wsd1{word-spacing:-0.895788px;}
.wse9{word-spacing:-0.836858px;}
.ws54{word-spacing:-0.781409px;}
.wse6{word-spacing:-0.777083px;}
.ws1df{word-spacing:-0.753178px;}
.wsc{word-spacing:-0.717307px;}
.wsb9{word-spacing:-0.679356px;}
.ws193{word-spacing:-0.673344px;}
.wsf6{word-spacing:-0.657532px;}
.ws187{word-spacing:-0.655308px;}
.ws159{word-spacing:-0.645581px;}
.ws84{word-spacing:-0.637272px;}
.ws89{word-spacing:-0.611324px;}
.wsba{word-spacing:-0.601200px;}
.ws130{word-spacing:-0.597756px;}
.ws194{word-spacing:-0.595188px;}
.ws5a{word-spacing:-0.577800px;}
.ws59{word-spacing:-0.540000px;}
.ws97{word-spacing:-0.537980px;}
.ws1c6{word-spacing:-0.484186px;}
.ws13f{word-spacing:-0.478205px;}
.ws1e6{word-spacing:-0.445586px;}
.wsa7{word-spacing:-0.435178px;}
.ws1e7{word-spacing:-0.430387px;}
.ws53{word-spacing:-0.421822px;}
.wsea{word-spacing:-0.418429px;}
.ws1f1{word-spacing:-0.376589px;}
.ws16e{word-spacing:-0.360720px;}
.wsff{word-spacing:-0.358654px;}
.ws120{word-spacing:-0.324648px;}
.ws1c7{word-spacing:-0.322790px;}
.wse{word-spacing:-0.298878px;}
.ws35{word-spacing:-0.268992px;}
.ws10e{word-spacing:-0.268128px;}
.ws88{word-spacing:-0.264528px;}
.ws3b{word-spacing:-0.263340px;}
.ws11b{word-spacing:-0.258516px;}
.ws11f{word-spacing:-0.252504px;}
.ws49{word-spacing:-0.246492px;}
.wsa{word-spacing:-0.239102px;}
.ws15c{word-spacing:-0.226800px;}
.ws1a6{word-spacing:-0.215194px;}
.ws1e3{word-spacing:-0.213772px;}
.ws11c{word-spacing:-0.210420px;}
.ws87{word-spacing:-0.192384px;}
.ws1b2{word-spacing:-0.182178px;}
.ws127{word-spacing:-0.180360px;}
.wsd{word-spacing:-0.179327px;}
.ws1b3{word-spacing:-0.161395px;}
.ws11d{word-spacing:-0.132264px;}
.wsa9{word-spacing:-0.129377px;}
.ws10d{word-spacing:-0.124488px;}
.ws3a{word-spacing:-0.119700px;}
.wsf{word-spacing:-0.119551px;}
.wsa1{word-spacing:-0.107597px;}
.ws13{word-spacing:-0.059776px;}
.wsa0{word-spacing:-0.053798px;}
.ws198{word-spacing:-0.045729px;}
.ws1f5{word-spacing:-0.030349px;}
.ws1d4{word-spacing:-0.028944px;}
.ws214{word-spacing:-0.026333px;}
.ws213{word-spacing:-0.024624px;}
.ws1d3{word-spacing:-0.024106px;}
.ws1e9{word-spacing:-0.023338px;}
.ws1dc{word-spacing:-0.009677px;}
.ws1ac{word-spacing:-0.007699px;}
.ws1ea{word-spacing:-0.006806px;}
.ws1ef{word-spacing:-0.006509px;}
.ws203{word-spacing:-0.005971px;}
.ws1{word-spacing:-0.005497px;}
.ws1f9{word-spacing:-0.005088px;}
.ws19{word-spacing:-0.003082px;}
.ws1bb{word-spacing:-0.002650px;}
.ws1b7{word-spacing:-0.001699px;}
.ws0{word-spacing:0.000000px;}
.wsb6{word-spacing:0.018036px;}
.ws124{word-spacing:0.030060px;}
.ws48{word-spacing:0.036072px;}
.ws1e8{word-spacing:0.036443px;}
.wsc4{word-spacing:0.042084px;}
.ws19c{word-spacing:0.045729px;}
.ws126{word-spacing:0.048096px;}
.ws1a8{word-spacing:0.053798px;}
.ws15d{word-spacing:0.054108px;}
.ws14{word-spacing:0.059776px;}
.wsb5{word-spacing:0.060120px;}
.ws121{word-spacing:0.066132px;}
.ws173{word-spacing:0.096192px;}
.ws61{word-spacing:0.102204px;}
.ws1c0{word-spacing:0.107597px;}
.ws9{word-spacing:0.119551px;}
.ws3e{word-spacing:0.129600px;}
.ws51{word-spacing:0.132264px;}
.ws199{word-spacing:0.137186px;}
.ws75{word-spacing:0.144288px;}
.wsaf{word-spacing:0.145800px;}
.ws3f{word-spacing:0.151200px;}
.ws3d{word-spacing:0.156600px;}
.ws1a9{word-spacing:0.161395px;}
.wsae{word-spacing:0.162000px;}
.wsd4{word-spacing:0.162324px;}
.wsa8{word-spacing:0.164662px;}
.ws3c{word-spacing:0.178200px;}
.ws7{word-spacing:0.179327px;}
.ws174{word-spacing:0.189000px;}
.ws52{word-spacing:0.204408px;}
.ws1d2{word-spacing:0.215194px;}
.ws19a{word-spacing:0.228643px;}
.ws12{word-spacing:0.239102px;}
.ws16f{word-spacing:0.246492px;}
.ws1e5{word-spacing:0.268992px;}
.ws92{word-spacing:0.298878px;}
.ws1aa{word-spacing:0.322790px;}
.ws6{word-spacing:0.358654px;}
.ws68{word-spacing:0.384768px;}
.ws122{word-spacing:0.408816px;}
.ws164{word-spacing:0.418429px;}
.ws154{word-spacing:0.478205px;}
.ws20b{word-spacing:0.484186px;}
.wsca{word-spacing:0.498996px;}
.wsab{word-spacing:0.513000px;}
.ws4a{word-spacing:0.535068px;}
.ws143{word-spacing:0.537980px;}
.wsac{word-spacing:0.545400px;}
.wsad{word-spacing:0.550800px;}
.ws8d{word-spacing:0.576589px;}
.ws1eb{word-spacing:0.591782px;}
.ws12e{word-spacing:0.597756px;}
.ws14d{word-spacing:0.657532px;}
.wscb{word-spacing:0.673344px;}
.ws96{word-spacing:0.717307px;}
.wsc9{word-spacing:0.745488px;}
.wsaa{word-spacing:0.758621px;}
.ws176{word-spacing:0.775548px;}
.ws14e{word-spacing:0.777083px;}
.ws1cb{word-spacing:0.806976px;}
.ws170{word-spacing:0.811620px;}
.ws171{word-spacing:0.823644px;}
.ws4c{word-spacing:0.829656px;}
.ws12f{word-spacing:0.836858px;}
.ws26{word-spacing:0.896634px;}
.ws167{word-spacing:0.914573px;}
.ws55{word-spacing:0.919711px;}
.ws8{word-spacing:0.956410px;}
.ws8b{word-spacing:0.993401px;}
.wsb{word-spacing:1.016185px;}
.ws1ee{word-spacing:1.022170px;}
.wse5{word-spacing:1.075961px;}
.ws41{word-spacing:1.118232px;}
.ws217{word-spacing:1.129766px;}
.wsf7{word-spacing:1.135736px;}
.wsbd{word-spacing:1.172340px;}
.ws4b{word-spacing:1.178352px;}
.wsbe{word-spacing:1.184364px;}
.wsb8{word-spacing:1.190376px;}
.ws107{word-spacing:1.195512px;}
.ws40{word-spacing:1.208412px;}
.ws165{word-spacing:1.237363px;}
.ws60{word-spacing:1.256508px;}
.ws1a5{word-spacing:1.374839px;}
.ws1c8{word-spacing:1.398758px;}
.wsf1{word-spacing:1.434614px;}
.ws1b8{word-spacing:1.452557px;}
.wsd6{word-spacing:1.460916px;}
.wsb7{word-spacing:1.490976px;}
.ws157{word-spacing:1.494390px;}
.ws1c5{word-spacing:1.506355px;}
.ws169{word-spacing:1.509012px;}
.ws129{word-spacing:1.515024px;}
.ws13e{word-spacing:1.554166px;}
.ws1d0{word-spacing:1.560154px;}
.ws1f6{word-spacing:1.613952px;}
.wsd5{word-spacing:1.641276px;}
.ws14b{word-spacing:1.673717px;}
.ws155{word-spacing:1.733492px;}
.ws142{word-spacing:1.853044px;}
.ws150{word-spacing:1.912819px;}
.ws42{word-spacing:1.929852px;}
.ws21c{word-spacing:1.936742px;}
.wscf{word-spacing:1.953900px;}
.ws43{word-spacing:1.977948px;}
.ws16{word-spacing:2.032370px;}
.ws18{word-spacing:2.092146px;}
.ws22{word-spacing:2.151922px;}
.ws15e{word-spacing:2.218428px;}
.ws160{word-spacing:2.224440px;}
.ws73{word-spacing:2.242476px;}
.ws161{word-spacing:2.254500px;}
.ws20f{word-spacing:2.259533px;}
.ws7d{word-spacing:2.266524px;}
.ws12d{word-spacing:2.271473px;}
.ws192{word-spacing:2.272536px;}
.wsce{word-spacing:2.278548px;}
.ws191{word-spacing:2.308608px;}
.wsa3{word-spacing:2.331248px;}
.ws17c{word-spacing:2.380752px;}
.wsef{word-spacing:2.391024px;}
.ws17d{word-spacing:2.416824px;}
.ws8a{word-spacing:2.445295px;}
.ws141{word-spacing:2.450800px;}
.ws13b{word-spacing:2.510575px;}
.ws1fd{word-spacing:2.528525px;}
.ws7c{word-spacing:2.531052px;}
.ws4d{word-spacing:2.567124px;}
.ws131{word-spacing:2.570351px;}
.ws181{word-spacing:2.579148px;}
.ws50{word-spacing:2.591172px;}
.wse2{word-spacing:2.627244px;}
.ws72{word-spacing:2.639268px;}
.ws71{word-spacing:2.675340px;}
.wse3{word-spacing:2.681352px;}
.ws138{word-spacing:2.689902px;}
.ws91{word-spacing:2.749678px;}
.wsf5{word-spacing:2.809453px;}
.ws18d{word-spacing:2.849688px;}
.ws21{word-spacing:2.869229px;}
.ws1ab{word-spacing:2.905114px;}
.ws20{word-spacing:2.929004px;}
.ws67{word-spacing:2.969928px;}
.ws172{word-spacing:2.987964px;}
.wsf3{word-spacing:2.988780px;}
.ws4e{word-spacing:3.006000px;}
.ws4f{word-spacing:3.024036px;}
.ws1f7{word-spacing:3.066509px;}
.ws10{word-spacing:3.108331px;}
.ws1e4{word-spacing:3.120307px;}
.ws25{word-spacing:3.168107px;}
.ws134{word-spacing:3.227882px;}
.ws1d6{word-spacing:3.281702px;}
.ws168{word-spacing:3.282552px;}
.wsfc{word-spacing:3.287658px;}
.wsc1{word-spacing:3.318624px;}
.ws216{word-spacing:3.335501px;}
.ws140{word-spacing:3.347434px;}
.ws14a{word-spacing:3.407209px;}
.wsc0{word-spacing:3.426840px;}
.ws12a{word-spacing:3.466985px;}
.ws13d{word-spacing:3.526760px;}
.ws10a{word-spacing:3.586536px;}
.ws19f{word-spacing:3.706087px;}
.ws1e0{word-spacing:3.712090px;}
.ws79{word-spacing:3.757500px;}
.ws215{word-spacing:3.765888px;}
.ws39{word-spacing:3.825638px;}
.wsf9{word-spacing:3.885414px;}
.ws1ca{word-spacing:3.927283px;}
.ws1c9{word-spacing:3.939528px;}
.wsfd{word-spacing:3.945190px;}
.ws12b{word-spacing:4.004965px;}
.ws74{word-spacing:4.010004px;}
.wsdb{word-spacing:4.064112px;}
.ws77{word-spacing:4.082148px;}
.wsdc{word-spacing:4.094172px;}
.ws78{word-spacing:4.106196px;}
.ws17{word-spacing:4.124516px;}
.ws1d8{word-spacing:4.196275px;}
.ws56{word-spacing:4.204393px;}
.ws12c{word-spacing:4.303843px;}
.ws1a4{word-spacing:4.363619px;}
.ws24{word-spacing:4.423394px;}
.ws23{word-spacing:4.483170px;}
.ws99{word-spacing:4.542946px;}
.ws14c{word-spacing:4.782048px;}
.ws183{word-spacing:4.791564px;}
.ws195{word-spacing:4.797576px;}
.ws196{word-spacing:4.809600px;}
.wsc6{word-spacing:4.833648px;}
.wsc5{word-spacing:4.839660px;}
.ws1d{word-spacing:4.841824px;}
.ws1ad{word-spacing:4.841856px;}
.ws21b{word-spacing:4.895654px;}
.ws1f0{word-spacing:4.949453px;}
.ws1e{word-spacing:4.961375px;}
.ws2a{word-spacing:5.021150px;}
.ws20d{word-spacing:5.057050px;}
.wsfb{word-spacing:5.080926px;}
.ws177{word-spacing:5.092164px;}
.ws1f2{word-spacing:5.110848px;}
.ws1d1{word-spacing:5.164646px;}
.ws178{word-spacing:5.188356px;}
.ws109{word-spacing:5.200477px;}
.ws182{word-spacing:5.218416px;}
.ws211{word-spacing:5.218445px;}
.ws1ba{word-spacing:5.272243px;}
.ws184{word-spacing:5.272524px;}
.ws114{word-spacing:5.278536px;}
.ws202{word-spacing:5.326042px;}
.ws1ce{word-spacing:5.371766px;}
.ws201{word-spacing:5.373062px;}
.ws20a{word-spacing:5.373562px;}
.ws207{word-spacing:5.373984px;}
.ws20c{word-spacing:5.374166px;}
.ws1b5{word-spacing:5.376298px;}
.ws1b1{word-spacing:5.376470px;}
.ws1c1{word-spacing:5.377258px;}
.ws208{word-spacing:5.377987px;}
.ws206{word-spacing:5.378141px;}
.ws1a7{word-spacing:5.378822px;}
.ws1bd{word-spacing:5.379475px;}
.ws3{word-spacing:5.379840px;}
.ws1f8{word-spacing:5.380445px;}
.ws20e{word-spacing:5.380694px;}
.ws83{word-spacing:5.482944px;}
.ws1bf{word-spacing:5.487437px;}
.ws65{word-spacing:5.506992px;}
.ws82{word-spacing:5.519016px;}
.ws1c4{word-spacing:5.541235px;}
.wsf0{word-spacing:5.559131px;}
.ws1cf{word-spacing:5.595034px;}
.ws66{word-spacing:5.633244px;}
.ws1ed{word-spacing:5.648832px;}
.ws135{word-spacing:5.678682px;}
.ws1fb{word-spacing:5.756429px;}
.wsb4{word-spacing:5.807592px;}
.ws1c2{word-spacing:5.810227px;}
.ws64{word-spacing:5.819616px;}
.wsec{word-spacing:5.858009px;}
.ws11{word-spacing:5.977560px;}
.ws1a2{word-spacing:6.037336px;}
.ws1dd{word-spacing:6.079219px;}
.wsa6{word-spacing:6.097111px;}
.wsdd{word-spacing:6.150276px;}
.ws108{word-spacing:6.156887px;}
.wsfe{word-spacing:6.216662px;}
.wscc{word-spacing:6.228432px;}
.wscd{word-spacing:6.258492px;}
.wsde{word-spacing:6.330636px;}
.wse4{word-spacing:6.336214px;}
.ws105{word-spacing:6.515540px;}
.wsdf{word-spacing:6.523020px;}
.ws1da{word-spacing:6.778598px;}
.ws112{word-spacing:6.889752px;}
.ws15f{word-spacing:6.961896px;}
.ws153{word-spacing:6.993745px;}
.wsee{word-spacing:7.053521px;}
.ws2f{word-spacing:7.208986px;}
.ws123{word-spacing:7.256484px;}
.ws185{word-spacing:7.262496px;}
.ws186{word-spacing:7.286544px;}
.ws13a{word-spacing:7.292623px;}
.ws1b9{word-spacing:7.316582px;}
.ws86{word-spacing:7.316604px;}
.ws145{word-spacing:7.352399px;}
.ws189{word-spacing:7.370712px;}
.ws85{word-spacing:7.430832px;}
.ws148{word-spacing:7.471950px;}
.ws2e{word-spacing:7.639373px;}
.ws6a{word-spacing:7.677324px;}
.ws18a{word-spacing:7.689348px;}
.ws69{word-spacing:7.695360px;}
.ws104{word-spacing:7.830604px;}
.ws133{word-spacing:7.950155px;}
.ws29{word-spacing:8.069706px;}
.ws5d{word-spacing:8.080128px;}
.ws190{word-spacing:8.098164px;}
.wsfa{word-spacing:8.129482px;}
.ws5e{word-spacing:8.146260px;}
.ws1cc{word-spacing:8.177357px;}
.ws19e{word-spacing:8.189257px;}
.ws17f{word-spacing:8.368704px;}
.ws180{word-spacing:8.380728px;}
.ws17e{word-spacing:8.398764px;}
.ws1a0{word-spacing:8.428360px;}
.ws38{word-spacing:8.488135px;}
.ws1d9{word-spacing:8.553946px;}
.wsa4{word-spacing:8.607686px;}
.ws119{word-spacing:8.693352px;}
.ws1a1{word-spacing:8.727238px;}
.ws118{word-spacing:9.042048px;}
.ws6e{word-spacing:9.054072px;}
.wse0{word-spacing:9.066096px;}
.wsf4{word-spacing:9.085891px;}
.wsb0{word-spacing:9.090144px;}
.wsa5{word-spacing:9.205442px;}
.ws80{word-spacing:9.468900px;}
.wsc8{word-spacing:9.492948px;}
.ws102{word-spacing:9.504320px;}
.ws81{word-spacing:9.535032px;}
.wsc7{word-spacing:9.541044px;}
.ws70{word-spacing:10.076112px;}
.ws6f{word-spacing:10.166292px;}
.ws1fe{word-spacing:10.285181px;}
.ws1db{word-spacing:10.329293px;}
.ws111{word-spacing:10.490940px;}
.wseb{word-spacing:10.580281px;}
.ws46{word-spacing:10.887732px;}
.ws44{word-spacing:10.917792px;}
.ws1cd{word-spacing:10.921075px;}
.ws57{word-spacing:10.951200px;}
.ws58{word-spacing:10.972800px;}
.ws45{word-spacing:10.983924px;}
.ws6d{word-spacing:11.212380px;}
.ws149{word-spacing:11.476915px;}
.ws1de{word-spacing:11.566656px;}
.ws1af{word-spacing:12.158438px;}
.wse1{word-spacing:12.294540px;}
.ws11a{word-spacing:12.348648px;}
.ws36{word-spacing:12.433325px;}
.ws1f3{word-spacing:12.535027px;}
.ws18b{word-spacing:12.631212px;}
.ws18c{word-spacing:12.727404px;}
.ws1b6{word-spacing:13.019213px;}
.ws117{word-spacing:13.052052px;}
.ws1e1{word-spacing:13.449600px;}
.ws7f{word-spacing:14.861664px;}
.ws7e{word-spacing:14.879700px;}
.ws128{word-spacing:15.192324px;}
.ws63{word-spacing:15.486912px;}
.wsd0{word-spacing:15.516972px;}
.ws37{word-spacing:15.661207px;}
.ws1d7{word-spacing:15.709133px;}
.ws62{word-spacing:15.931800px;}
.ws116{word-spacing:16.256448px;}
.wsd7{word-spacing:16.262460px;}
.wsd8{word-spacing:16.328592px;}
.wsc3{word-spacing:16.713360px;}
.wsc2{word-spacing:16.731396px;}
.ws115{word-spacing:16.743420px;}
.ws1ae{word-spacing:17.000294px;}
.wsb3{word-spacing:17.044020px;}
.wsb2{word-spacing:17.056044px;}
.wsb1{word-spacing:17.086104px;}
.ws11e{word-spacing:17.116164px;}
.ws21a{word-spacing:17.699674px;}
.ws163{word-spacing:17.771472px;}
.ws15a{word-spacing:18.176400px;}
.ws15b{word-spacing:18.187200px;}
.ws1f4{word-spacing:19.152230px;}
.ws5f{word-spacing:19.496916px;}
.ws1be{word-spacing:20.604787px;}
.ws144{word-spacing:22.475626px;}
.wsf2{word-spacing:30.844210px;}
.ws30{word-spacing:239.539618px;}
.ws1c{word-spacing:751.309447px;}
._14{margin-left:-282.253854px;}
._0{margin-left:-11.943245px;}
._9{margin-left:-7.602535px;}
._5{margin-left:-5.971622px;}
._1{margin-left:-4.423394px;}
._10{margin-left:-3.391555px;}
._4{margin-left:-1.494430px;}
._7{width:1.091170px;}
._2{width:3.003851px;}
._13{width:4.063808px;}
._12{width:5.620723px;}
._2e{width:7.639373px;}
._23{width:9.265218px;}
._1a{width:11.297628px;}
._2d{width:12.319834px;}
._e{width:13.329959px;}
._18{width:15.242818px;}
._32{width:16.462310px;}
._16{width:17.753393px;}
._6{width:18.829440px;}
._1b{width:19.845578px;}
._8{width:21.160562px;}
._29{width:22.475626px;}
._1c{width:23.491850px;}
._1e{width:24.806921px;}
._b{width:26.600095px;}
._17{width:27.915245px;}
._19{width:29.529146px;}
._a{width:30.664883px;}
._28{width:31.860395px;}
._c{width:33.952541px;}
._26{width:35.805584px;}
._27{width:36.941360px;}
._1d{width:39.212794px;}
._21{width:40.462144px;}
._25{width:43.277534px;}
._20{width:45.130618px;}
._15{width:47.342315px;}
._1f{width:48.717114px;}
._3{width:54.405229px;}
._2f{width:61.868160px;}
._31{width:71.749390px;}
._30{width:75.694349px;}
._2c{width:88.767360px;}
._2b{width:149.566003px;}
._11{width:216.039778px;}
._2a{width:253.153751px;}
._22{width:1537.048548px;}
._f{width:1560.514536px;}
._24{width:1922.198700px;}
._d{width:1946.108700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs13{font-size:45.728640px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs5{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fsd{font-size:56.185200px;}
.fs10{font-size:56.442600px;}
.fs12{font-size:58.807800px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsf{font-size:65.880000px;}
.fse{font-size:69.151200px;}
.fs11{font-size:69.468600px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.yed{bottom:-767.201175px;}
.yec{bottom:-746.861076px;}
.yeb{bottom:-726.611157px;}
.yea{bottom:-706.361238px;}
.ye9{bottom:-686.111319px;}
.y9d{bottom:-678.646128px;}
.ye8{bottom:-665.861400px;}
.y9c{bottom:-658.396209px;}
.ye7{bottom:-645.701661px;}
.y9b{bottom:-638.146290px;}
.ye6{bottom:-625.451742px;}
.y9a{bottom:-617.896371px;}
.ye5{bottom:-605.201823px;}
.y16b{bottom:-602.262030px;}
.y99{bottom:-597.646452px;}
.ye4{bottom:-584.951904px;}
.y16a{bottom:-581.921931px;}
.y98{bottom:-577.396533px;}
.y169{bottom:-561.762192px;}
.y97{bottom:-557.236794px;}
.y1f4{bottom:-556.305012px;}
.ye3{bottom:-552.822273px;}
.y168{bottom:-541.512273px;}
.y96{bottom:-536.986875px;}
.y1f3{bottom:-536.145273px;}
.ye2{bottom:-532.482174px;}
.y95{bottom:-516.736956px;}
.y167{bottom:-512.262390px;}
.ye1{bottom:-512.232255px;}
.y1f2{bottom:-503.925462px;}
.y94{bottom:-496.487037px;}
.ye0{bottom:-491.982336px;}
.y1f1{bottom:-483.675543px;}
.y166{bottom:-474.102723px;}
.ydf{bottom:-471.732417px;}
.y93{bottom:-464.357406px;}
.y1f0{bottom:-463.425624px;}
.y165{bottom:-453.762624px;}
.yde{bottom:-451.572678px;}
.y92{bottom:-444.017307px;}
.y1ef{bottom:-443.175705px;}
.y164{bottom:-433.512705px;}
.ydd{bottom:-431.322759px;}
.y91{bottom:-423.767388px;}
.y1ee{bottom:-422.925786px;}
.y163{bottom:-413.262786px;}
.ydc{bottom:-411.072840px;}
.y90{bottom:-403.517469px;}
.y162{bottom:-393.103047px;}
.ydb{bottom:-390.822921px;}
.y1ed{bottom:-390.796155px;}
.y8f{bottom:-383.265948px;}
.y161{bottom:-372.853128px;}
.y1ec{bottom:-370.456056px;}
.y8e{bottom:-363.106209px;}
.yda{bottom:-358.693290px;}
.y160{bottom:-352.603209px;}
.y1eb{bottom:-350.206137px;}
.y8d{bottom:-342.856290px;}
.yd9{bottom:-338.353191px;}
.y15f{bottom:-332.353290px;}
.y1ea{bottom:-329.956218px;}
.y8c{bottom:-322.606371px;}
.yd8{bottom:-318.103272px;}
.y15e{bottom:-312.103371px;}
.y1e9{bottom:-309.706299px;}
.y8b{bottom:-302.356452px;}
.yd7{bottom:-297.853353px;}
.y15d{bottom:-291.853452px;}
.y1e8{bottom:-289.546560px;}
.y8a{bottom:-282.106533px;}
.y6b{bottom:-279.745533px;}
.yd6{bottom:-277.603434px;}
.y15c{bottom:-271.693713px;}
.y1e7{bottom:-269.296641px;}
.y89{bottom:-261.856614px;}
.y6a{bottom:-259.495614px;}
.yd5{bottom:-257.353515px;}
.y15b{bottom:-251.443794px;}
.y1e6{bottom:-249.046722px;}
.y88{bottom:-241.606695px;}
.y69{bottom:-239.245695px;}
.yd4{bottom:-237.193776px;}
.y15a{bottom:-231.193875px;}
.y1e5{bottom:-228.796803px;}
.y87{bottom:-221.446956px;}
.y68{bottom:-219.085956px;}
.yd3{bottom:-216.943857px;}
.y1c7{bottom:-210.534414px;}
.y1e4{bottom:-208.546884px;}
.y86{bottom:-201.197037px;}
.y159{bottom:-199.064244px;}
.y67{bottom:-198.836037px;}
.y1c6{bottom:-190.194315px;}
.y1e3{bottom:-188.296965px;}
.yd2{bottom:-187.693974px;}
.y158{bottom:-178.724145px;}
.y1c5{bottom:-170.034576px;}
.y85{bottom:-169.067406px;}
.y1e2{bottom:-168.047046px;}
.y66{bottom:-166.706406px;}
.y157{bottom:-158.474226px;}
.y1c4{bottom:-149.784657px;}
.yd1{bottom:-149.534307px;}
.y84{bottom:-148.727307px;}
.y1e1{bottom:-147.887307px;}
.y65{bottom:-146.366307px;}
.y156{bottom:-138.224307px;}
.y1c3{bottom:-129.534738px;}
.yd0{bottom:-129.194208px;}
.y83{bottom:-128.477388px;}
.y1e0{bottom:-127.637388px;}
.y64{bottom:-126.116388px;}
.y155{bottom:-117.974388px;}
.y1c2{bottom:-109.284819px;}
.ycf{bottom:-108.944289px;}
.y82{bottom:-108.227469px;}
.y1df{bottom:-107.387469px;}
.y63{bottom:-105.866469px;}
.y154{bottom:-97.724469px;}
.y1c1{bottom:-89.034900px;}
.yce{bottom:-88.784550px;}
.y81{bottom:-87.977550px;}
.y1de{bottom:-87.137550px;}
.y62{bottom:-85.616550px;}
.y153{bottom:-77.474550px;}
.y1c0{bottom:-51.235500px;}
.ycd{bottom:-50.983950px;}
.y80{bottom:-50.178000px;}
.y1dd{bottom:-49.338000px;}
.y61{bottom:-47.817000px;}
.y152{bottom:-39.674550px;}
.y1bf{bottom:-31.705050px;}
.ycc{bottom:-31.364400px;}
.y7f{bottom:-30.647550px;}
.y1dc{bottom:-29.807550px;}
.y60{bottom:-28.286550px;}
.y151{bottom:-4.574550px;}
.ycb{bottom:-0.494550px;}
.y0{bottom:0.000000px;}
.y5f{bottom:2.313450px;}
.y1db{bottom:2.412450px;}
.y1be{bottom:2.944950px;}
.yf{bottom:3.425340px;}
.y7e{bottom:5.622450px;}
.ybe{bottom:9.316171px;}
.ye{bottom:14.151273px;}
.y79{bottom:15.632730px;}
.y2{bottom:18.594411px;}
.ya3{bottom:26.862235px;}
.ybd{bottom:27.405450px;}
.y78{bottom:36.333142px;}
.ya2{bottom:47.652450px;}
.yc4{bottom:55.755492px;}
.y77{bottom:57.123450px;}
.yc1{bottom:57.465174px;}
.y2f{bottom:63.780000px;}
.yc3{bottom:72.405450px;}
.yc0{bottom:74.025450px;}
.y2e{bottom:108.612000px;}
.y2a3{bottom:108.957000px;}
.y1d0{bottom:108.967500px;}
.yc8{bottom:110.475174px;}
.yc6{bottom:112.995492px;}
.y100{bottom:113.338500px;}
.y198{bottom:113.349000px;}
.yca{bottom:115.605174px;}
.y1b5{bottom:118.938000px;}
.y119{bottom:119.863500px;}
.y232{bottom:122.529000px;}
.y71{bottom:125.163450px;}
.yc7{bottom:127.035450px;}
.y146{bottom:127.903500px;}
.y2a2{bottom:128.325000px;}
.y2d{bottom:128.875500px;}
.y208{bottom:129.109500px;}
.y1cf{bottom:129.231000px;}
.yc5{bottom:129.645450px;}
.yc9{bottom:132.165450px;}
.yff{bottom:133.603500px;}
.y197{bottom:133.612500px;}
.ya1{bottom:133.962450px;}
.y17c{bottom:136.482000px;}
.y26f{bottom:138.606000px;}
.y1b4{bottom:139.201500px;}
.y118{bottom:140.128500px;}
.y231{bottom:142.792500px;}
.y70{bottom:142.983450px;}
.y76{bottom:145.593450px;}
.y2a1{bottom:147.691500px;}
.y74{bottom:148.113450px;}
.y145{bottom:148.168500px;}
.yae{bottom:148.705500px;}
.y2c{bottom:149.139000px;}
.y207{bottom:149.373000px;}
.y1ce{bottom:149.496000px;}
.yfe{bottom:153.867000px;}
.y196{bottom:153.877500px;}
.y17b{bottom:156.745500px;}
.y26e{bottom:157.974000px;}
.y1b3{bottom:159.466500px;}
.y117{bottom:160.392000px;}
.y230{bottom:163.057500px;}
.y2a0{bottom:167.059500px;}
.y144{bottom:168.432000px;}
.y2b{bottom:169.404000px;}
.y206{bottom:169.638000px;}
.y1cd{bottom:169.759500px;}
.yad{bottom:170.464500px;}
.yfd{bottom:174.132000px;}
.y195{bottom:174.141000px;}
.ya8{bottom:176.712450px;}
.y17a{bottom:177.010500px;}
.y26d{bottom:177.340500px;}
.y9e{bottom:177.522450px;}
.y1b2{bottom:179.730000px;}
.y116{bottom:180.657000px;}
.yc2{bottom:181.215450px;}
.y22f{bottom:183.321000px;}
.y6c{bottom:183.843450px;}
.ybf{bottom:184.005450px;}
.y29f{bottom:186.427500px;}
.y143{bottom:188.697000px;}
.y2a{bottom:189.667500px;}
.y205{bottom:189.901500px;}
.y1cc{bottom:190.024500px;}
.yac{bottom:192.223500px;}
.yfc{bottom:194.395500px;}
.y194{bottom:194.404500px;}
.y26c{bottom:196.708500px;}
.y179{bottom:197.274000px;}
.y1b1{bottom:199.993500px;}
.y115{bottom:200.920500px;}
.y22e{bottom:203.586000px;}
.y23b{bottom:204.940500px;}
.y29e{bottom:205.794000px;}
.y142{bottom:208.960500px;}
.y75{bottom:209.403450px;}
.y29{bottom:209.932500px;}
.y204{bottom:210.165000px;}
.y1cb{bottom:210.288000px;}
.yfb{bottom:214.659000px;}
.y193{bottom:214.669500px;}
.y26b{bottom:216.076500px;}
.y178{bottom:217.539000px;}
.y1b0{bottom:220.258500px;}
.y114{bottom:221.184000px;}
.y22d{bottom:223.849500px;}
.yab{bottom:224.442000px;}
.y29d{bottom:225.162000px;}
.ya7{bottom:226.481926px;}
.ya5{bottom:227.832235px;}
.y23a{bottom:229.105500px;}
.y141{bottom:229.224000px;}
.y16d{bottom:230.151000px;}
.y28{bottom:230.196000px;}
.y203{bottom:230.430000px;}
.y1ca{bottom:230.551500px;}
.yfa{bottom:234.924000px;}
.y192{bottom:234.933000px;}
.ybc{bottom:235.216446px;}
.y269{bottom:235.443000px;}
.yba{bottom:237.015965px;}
.y177{bottom:237.802500px;}
.y26a{bottom:240.325500px;}
.y1af{bottom:240.522000px;}
.y113{bottom:241.449000px;}
.yaa{bottom:242.661000px;}
.y16c{bottom:243.210000px;}
.y22c{bottom:244.113000px;}
.y239{bottom:244.303500px;}
.y29c{bottom:244.528500px;}
.y5c{bottom:244.707000px;}
.ya6{bottom:247.362450px;}
.ya4{bottom:248.622450px;}
.y140{bottom:249.489000px;}
.ybb{bottom:250.246249px;}
.y6e{bottom:250.263450px;}
.y27{bottom:250.459500px;}
.y202{bottom:250.693500px;}
.yb9{bottom:252.135450px;}
.y268{bottom:254.811000px;}
.yf9{bottom:255.187500px;}
.y191{bottom:255.198000px;}
.y176{bottom:258.066000px;}
.y238{bottom:259.501500px;}
.y1ae{bottom:260.787000px;}
.y112{bottom:261.712500px;}
.ya9{bottom:261.894000px;}
.y29b{bottom:263.896500px;}
.y22b{bottom:264.378000px;}
.y5b{bottom:264.970500px;}
.y1c9{bottom:265.552500px;}
.y14f{bottom:265.639500px;}
.y13f{bottom:269.752500px;}
.y26{bottom:270.724500px;}
.y201{bottom:270.958500px;}
.y267{bottom:274.177500px;}
.y237{bottom:274.699500px;}
.yf8{bottom:275.452500px;}
.y190{bottom:275.461500px;}
.y175{bottom:278.331000px;}
.y1ad{bottom:281.050500px;}
.y111{bottom:281.977500px;}
.y29a{bottom:283.264500px;}
.y7c{bottom:284.323500px;}
.y1c8{bottom:284.785500px;}
.y5a{bottom:285.234000px;}
.y236{bottom:289.897500px;}
.y13e{bottom:290.017500px;}
.y25{bottom:290.988000px;}
.y73{bottom:291.033450px;}
.y200{bottom:291.222000px;}
.y266{bottom:293.545500px;}
.y22a{bottom:293.608500px;}
.yf7{bottom:295.716000px;}
.y18f{bottom:295.725000px;}
.ya0{bottom:300.642450px;}
.y1ac{bottom:301.314000px;}
.y110{bottom:302.241000px;}
.y299{bottom:302.631000px;}
.y59{bottom:305.499000px;}
.y6f{bottom:306.423450px;}
.y1bc{bottom:307.215000px;}
.y174{bottom:310.549500px;}
.yb8{bottom:311.085450px;}
.y24{bottom:311.253000px;}
.y72{bottom:311.463450px;}
.y1ff{bottom:311.485500px;}
.y265{bottom:312.913500px;}
.y235{bottom:314.061000px;}
.yf6{bottom:315.979500px;}
.y18e{bottom:315.990000px;}
.y13d{bottom:319.248000px;}
.y1ab{bottom:321.579000px;}
.y298{bottom:321.999000px;}
.y10f{bottom:322.504500px;}
.y58{bottom:325.762500px;}
.y173{bottom:330.814500px;}
.y23{bottom:331.516500px;}
.y1fe{bottom:331.750500px;}
.y264{bottom:332.280000px;}
.y229{bottom:335.823300px;}
.yf5{bottom:336.244500px;}
.y18d{bottom:336.253500px;}
.y1da{bottom:337.933197px;}
.y234{bottom:338.226000px;}
.y297{bottom:341.367000px;}
.y1aa{bottom:341.842500px;}
.y9f{bottom:341.952450px;}
.y10e{bottom:342.769500px;}
.y57{bottom:346.027500px;}
.y228{bottom:349.796025px;}
.y6d{bottom:350.073450px;}
.y172{bottom:351.078000px;}
.y263{bottom:351.648000px;}
.y1fd{bottom:352.014000px;}
.y233{bottom:353.424000px;}
.y13c{bottom:354.067500px;}
.y18c{bottom:356.518500px;}
.y1d9{bottom:358.183116px;}
.y296{bottom:360.733500px;}
.y22{bottom:360.747000px;}
.y1a9{bottom:362.107500px;}
.y10d{bottom:363.033000px;}
.y227{bottom:363.768750px;}
.yf4{bottom:365.475000px;}
.y56{bottom:366.291000px;}
.y222{bottom:370.754475px;}
.y262{bottom:371.014500px;}
.y171{bottom:371.341500px;}
.y1fc{bottom:372.279000px;}
.y13b{bottom:374.331000px;}
.y18b{bottom:376.782000px;}
.y226{bottom:377.741475px;}
.y1d8{bottom:378.433035px;}
.y295{bottom:380.101500px;}
.y1a8{bottom:382.371000px;}
.y10c{bottom:383.298000px;}
.y221{bottom:384.727200px;}
.y55{bottom:386.554500px;}
.y261{bottom:390.382500px;}
.y225{bottom:391.714200px;}
.y1fb{bottom:392.542500px;}
.y13a{bottom:394.594500px;}
.y18a{bottom:397.045500px;}
.y1d7{bottom:398.682954px;}
.y294{bottom:399.468000px;}
.yf3{bottom:400.294500px;}
.y1a7{bottom:402.634500px;}
.y10b{bottom:403.561500px;}
.y224{bottom:405.686925px;}
.y54{bottom:406.819500px;}
.y7d{bottom:409.632450px;}
.y260{bottom:409.750500px;}
.y5e{bottom:411.993450px;}
.y1fa{bottom:412.806000px;}
.y139{bottom:414.859500px;}
.y189{bottom:417.310500px;}
.y293{bottom:418.836000px;}
.y1d6{bottom:418.932873px;}
.y223{bottom:419.659650px;}
.yf2{bottom:420.558000px;}
.y1a6{bottom:422.899500px;}
.y10a{bottom:423.825000px;}
.y53{bottom:427.083000px;}
.y25f{bottom:429.117000px;}
.y1f9{bottom:433.071000px;}
.y138{bottom:435.123000px;}
.y21{bottom:437.163000px;}
.y188{bottom:437.574000px;}
.y292{bottom:438.204000px;}
.y1d5{bottom:439.092612px;}
.y220{bottom:439.753650px;}
.yf1{bottom:440.823000px;}
.y1a5{bottom:443.163000px;}
.y109{bottom:444.090000px;}
.y52{bottom:447.348000px;}
.y25e{bottom:448.485000px;}
.y1f8{bottom:453.334500px;}
.y21e{bottom:453.726375px;}
.y137{bottom:455.388000px;}
.y20{bottom:457.426500px;}
.y291{bottom:457.570500px;}
.y187{bottom:457.839000px;}
.y1d4{bottom:459.342531px;}
.yf0{bottom:461.086500px;}
.y108{bottom:464.353500px;}
.y1bb{bottom:466.804500px;}
.y51{bottom:467.611500px;}
.y21d{bottom:467.699100px;}
.y25d{bottom:467.851500px;}
.y1a4{bottom:472.393500px;}
.y1f7{bottom:473.599500px;}
.y150{bottom:473.955450px;}
.y136{bottom:475.651500px;}
.y290{bottom:476.938500px;}
.y1f{bottom:477.691500px;}
.y186{bottom:478.102500px;}
.y1d3{bottom:479.592450px;}
.y21c{bottom:481.671825px;}
.y107{bottom:484.618500px;}
.y25c{bottom:487.219500px;}
.y50{bottom:487.875000px;}
.y217{bottom:488.657550px;}
.y21b{bottom:495.644550px;}
.y135{bottom:495.915000px;}
.yef{bottom:496.087500px;}
.y28f{bottom:496.305000px;}
.y1ba{bottom:501.624000px;}
.y216{bottom:502.630275px;}
.y106{bottom:504.882000px;}
.y25b{bottom:506.587500px;}
.y1a3{bottom:507.213000px;}
.y185{bottom:507.333000px;}
.y4f{bottom:508.140000px;}
.y1f6{bottom:508.599000px;}
.y21a{bottom:509.617275px;}
.yee{bottom:515.319000px;}
.y28e{bottom:515.673000px;}
.y1e{bottom:515.887500px;}
.y134{bottom:516.180000px;}
.y1d2{bottom:517.032450px;}
.y1b9{bottom:521.889000px;}
.y219{bottom:523.590000px;}
.y105{bottom:525.145500px;}
.y25a{bottom:525.954000px;}
.y1a2{bottom:527.478000px;}
.y1f5{bottom:527.832000px;}
.y4e{bottom:528.403500px;}
.y28d{bottom:535.041000px;}
.y1d{bottom:536.152500px;}
.y218{bottom:537.561450px;}
.yb7{bottom:537.748500px;}
.y184{bottom:542.152500px;}
.y259{bottom:545.322000px;}
.y104{bottom:545.410500px;}
.y4d{bottom:548.667000px;}
.y1a1{bottom:549.235500px;}
.y1d1{bottom:550.261500px;}
.y21f{bottom:551.534175px;}
.y28c{bottom:554.407500px;}
.y1c{bottom:556.416000px;}
.y183{bottom:562.416000px;}
.y258{bottom:564.688500px;}
.y103{bottom:565.674000px;}
.y4c{bottom:568.932000px;}
.y1a0{bottom:569.500500px;}
.y1b8{bottom:571.383000px;}
.y215{bottom:571.629450px;}
.y28b{bottom:573.775500px;}
.y1b{bottom:576.679500px;}
.y210{bottom:578.615175px;}
.y133{bottom:580.230000px;}
.y182{bottom:582.681000px;}
.y257{bottom:584.056500px;}
.y214{bottom:585.602175px;}
.y102{bottom:585.939000px;}
.y4b{bottom:589.195500px;}
.y19f{bottom:591.258000px;}
.y20e{bottom:592.587900px;}
.y28a{bottom:593.142000px;}
.y1a{bottom:596.944500px;}
.y213{bottom:599.574900px;}
.y132{bottom:600.493500px;}
.y181{bottom:602.944500px;}
.y256{bottom:603.424500px;}
.y170{bottom:606.202500px;}
.y20d{bottom:606.560625px;}
.y4a{bottom:609.460500px;}
.y289{bottom:612.510000px;}
.y19e{bottom:613.017000px;}
.y212{bottom:613.547625px;}
.y101{bottom:615.168000px;}
.y19{bottom:617.208000px;}
.y20f{bottom:620.533350px;}
.y131{bottom:620.758500px;}
.y255{bottom:622.791000px;}
.y16f{bottom:626.466000px;}
.y211{bottom:627.519075px;}
.y49{bottom:629.724000px;}
.y288{bottom:631.878000px;}
.y180{bottom:632.175000px;}
.y19d{bottom:633.280500px;}
.y18{bottom:637.473000px;}
.y130{bottom:641.022000px;}
.y254{bottom:642.159000px;}
.y1b7{bottom:646.731000px;}
.y20c{bottom:647.614350px;}
.y48{bottom:649.987500px;}
.y287{bottom:651.244500px;}
.y20b{bottom:654.600075px;}
.y19c{bottom:655.039500px;}
.y16e{bottom:655.696500px;}
.y17{bottom:657.736500px;}
.y12f{bottom:661.285500px;}
.y253{bottom:661.527000px;}
.y17f{bottom:666.994500px;}
.y47{bottom:670.252500px;}
.y286{bottom:670.612500px;}
.y19b{bottom:675.303000px;}
.y16{bottom:678.000000px;}
.y252{bottom:680.893500px;}
.y12e{bottom:681.550500px;}
.y17e{bottom:687.258000px;}
.y285{bottom:689.979000px;}
.y46{bottom:690.516000px;}
.y20a{bottom:690.675000px;}
.y7b{bottom:695.742000px;}
.y15{bottom:698.265000px;}
.y251{bottom:700.261500px;}
.y12d{bottom:701.814000px;}
.y17d{bottom:707.523000px;}
.y284{bottom:709.347000px;}
.y45{bottom:710.781000px;}
.y7a{bottom:714.975000px;}
.y14{bottom:718.528500px;}
.y250{bottom:719.628000px;}
.y12c{bottom:722.077500px;}
.y14e{bottom:727.786500px;}
.y283{bottom:728.715000px;}
.y44{bottom:731.044500px;}
.y5d{bottom:737.404500px;}
.y13{bottom:738.793500px;}
.y24f{bottom:738.996000px;}
.y12b{bottom:742.342500px;}
.y14d{bottom:748.051500px;}
.y282{bottom:748.081500px;}
.y43{bottom:751.308000px;}
.y2a6{bottom:754.020000px;}
.y24e{bottom:758.364000px;}
.y12{bottom:759.057000px;}
.y12a{bottom:762.606000px;}
.y281{bottom:767.449500px;}
.y14c{bottom:768.315000px;}
.y42{bottom:771.573000px;}
.y2a5{bottom:773.388000px;}
.y24d{bottom:777.730500px;}
.y11{bottom:779.320500px;}
.y129{bottom:782.871000px;}
.y280{bottom:786.816000px;}
.y14b{bottom:788.578500px;}
.y41{bottom:791.836500px;}
.y2a4{bottom:792.756000px;}
.y24c{bottom:797.098500px;}
.y10{bottom:799.585500px;}
.y128{bottom:803.134500px;}
.y27f{bottom:806.184000px;}
.y14a{bottom:808.843500px;}
.y40{bottom:812.101500px;}
.y24b{bottom:816.465000px;}
.y209{bottom:817.809000px;}
.y127{bottom:823.398000px;}
.y27e{bottom:825.552000px;}
.y149{bottom:829.107000px;}
.y3f{bottom:832.365000px;}
.yd{bottom:833.663964px;}
.yc{bottom:834.430500px;}
.y24a{bottom:835.833000px;}
.y126{bottom:843.663000px;}
.y27d{bottom:844.918500px;}
.y1bd{bottom:848.674950px;}
.yb6{bottom:849.372000px;}
.y3e{bottom:852.628500px;}
.y249{bottom:855.201000px;}
.y1b6{bottom:858.337500px;}
.y125{bottom:863.926500px;}
.y27c{bottom:864.286500px;}
.yb5{bottom:869.635500px;}
.y3d{bottom:872.893500px;}
.yb{bottom:873.435000px;}
.y248{bottom:874.567500px;}
.y27b{bottom:883.653000px;}
.y124{bottom:884.191500px;}
.yb4{bottom:889.899000px;}
.y3c{bottom:893.157000px;}
.y247{bottom:893.935500px;}
.ya{bottom:896.475000px;}
.y27a{bottom:903.021000px;}
.y123{bottom:904.455000px;}
.yb3{bottom:910.164000px;}
.y246{bottom:913.302000px;}
.y3b{bottom:913.422000px;}
.y9{bottom:914.631000px;}
.y279{bottom:922.389000px;}
.y122{bottom:924.718500px;}
.yb2{bottom:930.427500px;}
.y245{bottom:932.670000px;}
.y3a{bottom:933.685500px;}
.y8{bottom:935.518500px;}
.y278{bottom:941.755500px;}
.y121{bottom:944.983500px;}
.yb1{bottom:950.692500px;}
.y244{bottom:952.038000px;}
.y39{bottom:953.949000px;}
.y277{bottom:961.123500px;}
.y120{bottom:965.247000px;}
.yb0{bottom:970.956000px;}
.y243{bottom:971.404500px;}
.y38{bottom:974.214000px;}
.y7{bottom:980.055000px;}
.y276{bottom:980.490000px;}
.y11f{bottom:985.512000px;}
.y242{bottom:990.772500px;}
.y148{bottom:991.219500px;}
.y37{bottom:994.477500px;}
.y275{bottom:999.858000px;}
.yaf{bottom:1000.186500px;}
.y11e{bottom:1005.775500px;}
.y241{bottom:1010.139000px;}
.y6{bottom:1010.451000px;}
.y19a{bottom:1011.484500px;}
.y36{bottom:1014.742500px;}
.y274{bottom:1019.226000px;}
.y147{bottom:1020.450000px;}
.y11d{bottom:1026.039000px;}
.y240{bottom:1029.507000px;}
.y35{bottom:1035.006000px;}
.y273{bottom:1038.592500px;}
.y199{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y11c{bottom:1046.304000px;}
.y23f{bottom:1048.875000px;}
.y34{bottom:1055.269500px;}
.y272{bottom:1057.960500px;}
.y11b{bottom:1066.567500px;}
.y23e{bottom:1068.241500px;}
.y4{bottom:1071.244500px;}
.y33{bottom:1075.534500px;}
.y271{bottom:1077.327000px;}
.y11a{bottom:1086.832500px;}
.y23d{bottom:1087.609500px;}
.y32{bottom:1095.798000px;}
.y270{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y23c{bottom:1115.943000px;}
.y31{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y30{bottom:1168.366500px;}
.h29{height:19.498745px;}
.h9{height:25.508090px;}
.h20{height:27.855430px;}
.h24{height:32.924621px;}
.hb{height:33.112997px;}
.ha{height:34.199443px;}
.h27{height:36.798106px;}
.h2a{height:37.927872px;}
.h26{height:38.412058px;}
.h16{height:38.734848px;}
.h7{height:39.457760px;}
.h28{height:39.488026px;}
.h1c{height:40.200645px;}
.h14{height:40.328244px;}
.h18{height:40.512999px;}
.h1b{height:42.210677px;}
.hc{height:43.038432px;}
.h25{height:43.122108px;}
.h1e{height:43.622227px;}
.h4{height:43.875290px;}
.h10{height:44.723848px;}
.he{height:45.094826px;}
.h15{height:49.634895px;}
.h19{height:49.862716px;}
.h12{height:50.440430px;}
.h8{height:50.731891px;}
.h2{height:50.931027px;}
.h1d{height:52.558594px;}
.h6{height:54.411312px;}
.h13{height:56.157012px;}
.hd{height:56.368391px;}
.h23{height:60.872621px;}
.h11{height:67.253906px;}
.h3{height:69.505289px;}
.h5{height:77.469696px;}
.h1a{height:287.974500px;}
.h22{height:319.248000px;}
.h17{height:381.799500px;}
.hf{height:393.603000px;}
.h1f{height:440.221500px;}
.h21{height:823.794000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w4{width:347.574000px;}
.w5{width:357.015000px;}
.w9{width:469.137000px;}
.w7{width:475.039500px;}
.w6{width:565.324500px;}
.w8{width:668.003400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x40{left:-159.561000px;}
.x52{left:-153.070500px;}
.x44{left:-127.701000px;}
.x54{left:-121.210500px;}
.x42{left:-109.971000px;}
.x106{left:-95.239500px;}
.xb9{left:-93.468000px;}
.x107{left:-63.379500px;}
.xbb{left:-61.608000px;}
.x108{left:-58.159500px;}
.x66{left:-50.391000px;}
.x77{left:-18.531000px;}
.x0{left:0.000000px;}
.x50{left:10.989000px;}
.x57{left:23.329500px;}
.xba{left:24.612000px;}
.x6{left:29.274117px;}
.x105{left:32.808900px;}
.x4a{left:41.319000px;}
.x2{left:57.111683px;}
.x48{left:61.929000px;}
.x46{left:64.269000px;}
.x5a{left:71.750285px;}
.x70{left:78.579000px;}
.x45{left:81.279000px;}
.x56{left:84.979500px;}
.x55{left:87.769500px;}
.x59{left:90.739500px;}
.x71{left:96.579450px;}
.x47{left:102.429000px;}
.x67{left:108.639000px;}
.x81{left:112.561500px;}
.x1{left:114.802500px;}
.x43{left:117.729450px;}
.x4{left:122.110500px;}
.x3{left:123.307500px;}
.x49{left:128.079000px;}
.x6c{left:131.228437px;}
.x5d{left:134.659500px;}
.x68{left:138.068888px;}
.xf6{left:145.555500px;}
.x9{left:146.692500px;}
.x9c{left:152.193000px;}
.x65{left:163.795500px;}
.x9d{left:167.136000px;}
.xdb{left:168.964500px;}
.x9e{left:174.757500px;}
.x10b{left:179.389500px;}
.x10a{left:180.615000px;}
.xc1{left:181.848000px;}
.xdc{left:183.907500px;}
.xc2{left:185.658000px;}
.x7{left:188.974500px;}
.xd7{left:191.142000px;}
.x21{left:193.815000px;}
.x87{left:196.020000px;}
.xb8{left:197.544000px;}
.x92{left:198.733500px;}
.xc3{left:200.602500px;}
.x8{left:201.994500px;}
.x5b{left:203.509500px;}
.x109{left:205.675500px;}
.x11c{left:206.772000px;}
.x22{left:208.758000px;}
.x88{left:210.964500px;}
.x23{left:212.569500px;}
.x93{left:213.678000px;}
.x89{left:214.774500px;}
.x4f{left:217.179000px;}
.x58{left:218.629500px;}
.xef{left:221.667000px;}
.x6b{left:223.029675px;}
.x4b{left:224.559000px;}
.xc8{left:226.399500px;}
.x24{left:227.514000px;}
.x8a{left:229.719000px;}
.xbc{left:233.686500px;}
.x75{left:237.248325px;}
.x74{left:238.509000px;}
.xe{left:240.430500px;}
.x101{left:241.539000px;}
.xf{left:247.902000px;}
.x4e{left:250.299000px;}
.x122{left:251.667000px;}
.x5c{left:253.279790px;}
.xf0{left:255.216000px;}
.x10d{left:256.411500px;}
.x78{left:261.108000px;}
.xdd{left:262.933500px;}
.x9f{left:266.835000px;}
.x51{left:267.949500px;}
.x3f{left:272.670000px;}
.x111{left:274.012500px;}
.x79{left:276.052500px;}
.xa{left:277.809000px;}
.xa0{left:281.778000px;}
.xb1{left:283.527000px;}
.xb{left:285.280500px;}
.x4d{left:288.459000px;}
.xb2{left:290.998500px;}
.x10{left:293.316000px;}
.xf4{left:295.162500px;}
.xd9{left:297.304500px;}
.x90{left:299.337000px;}
.x11{left:300.654000px;}
.x4c{left:303.489000px;}
.x118{left:304.870500px;}
.x12{left:308.125500px;}
.xda{left:316.036500px;}
.x91{left:318.091500px;}
.x2d{left:324.442500px;}
.xbd{left:327.190500px;}
.x11a{left:328.662000px;}
.x10c{left:332.566725px;}
.x69{left:334.358325px;}
.x11b{left:335.386500px;}
.x84{left:336.714000px;}
.x2e{left:339.385500px;}
.x41{left:343.449000px;}
.x2f{left:347.007000px;}
.x85{left:351.657000px;}
.x53{left:354.079500px;}
.x3d{left:357.363000px;}
.x30{left:361.951500px;}
.xaa{left:368.227500px;}
.x6e{left:370.089000px;}
.x3e{left:372.306000px;}
.x6a{left:375.037762px;}
.xf8{left:376.107000px;}
.x6d{left:378.549000px;}
.xe7{left:380.125500px;}
.xbf{left:382.414500px;}
.x6f{left:383.769225px;}
.x11d{left:384.789000px;}
.x2b{left:386.389500px;}
.x31{left:387.976500px;}
.xc0{left:389.887500px;}
.xaf{left:393.525000px;}
.xf5{left:396.618000px;}
.xd0{left:398.959500px;}
.x2c{left:401.334000px;}
.x32{left:402.919500px;}
.xab{left:404.389500px;}
.xb0{left:408.469500px;}
.x72{left:411.669000px;}
.xd1{left:413.904000px;}
.x60{left:418.246500px;}
.xac{left:419.334000px;}
.x98{left:422.472000px;}
.x36{left:427.393500px;}
.x33{left:428.553000px;}
.x73{left:429.669450px;}
.x61{left:433.189500px;}
.x99{left:437.416500px;}
.xfa{left:439.918500px;}
.x7f{left:441.249000px;}
.x37{left:442.338000px;}
.x1f{left:443.992500px;}
.x7c{left:445.242000px;}
.x1b{left:447.345000px;}
.x7d{left:448.914000px;}
.x7a{left:451.620000px;}
.x80{left:456.193500px;}
.x20{left:458.935500px;}
.x1c{left:462.289500px;}
.x7e{left:463.858500px;}
.x7b{left:466.564500px;}
.x9a{left:467.887500px;}
.x1d{left:469.911000px;}
.xb5{left:471.484500px;}
.x63{left:472.833000px;}
.x112{left:473.940000px;}
.x86{left:476.745000px;}
.xd4{left:478.857000px;}
.x113{left:480.382500px;}
.x9b{left:482.832000px;}
.x1e{left:484.855500px;}
.x64{left:487.777500px;}
.xe8{left:490.254000px;}
.xd5{left:493.801500px;}
.xdf{left:495.615000px;}
.xc4{left:500.280000px;}
.xe9{left:501.537000px;}
.xcd{left:503.010000px;}
.xea{left:505.347000px;}
.x25{left:506.707500px;}
.xd2{left:507.792000px;}
.xce{left:510.481500px;}
.x26{left:514.179000px;}
.xc5{left:515.224500px;}
.x27{left:517.840500px;}
.xc6{left:518.949000px;}
.xeb{left:520.291500px;}
.xd3{left:522.735000px;}
.xec{left:524.101500px;}
.xb3{left:530.479500px;}
.x28{left:532.785000px;}
.xc7{left:533.892000px;}
.x29{left:536.446500px;}
.xd8{left:537.828000px;}
.xed{left:539.046000px;}
.xb4{left:545.424000px;}
.xa6{left:547.552500px;}
.x2a{left:551.389500px;}
.xc9{left:553.251000px;}
.xf2{left:554.614500px;}
.xfb{left:559.281000px;}
.x76{left:561.429000px;}
.xa7{left:562.495500px;}
.xca{left:568.194000px;}
.xc{left:575.080500px;}
.xf3{left:577.030500px;}
.xd{left:582.552000px;}
.xf7{left:584.440500px;}
.xf1{left:588.984000px;}
.x34{left:593.344500px;}
.x5f{left:597.177000px;}
.xa1{left:599.634000px;}
.xb6{left:604.500000px;}
.x35{left:608.289000px;}
.x19{left:610.705500px;}
.xb7{left:611.971500px;}
.x38{left:614.812500px;}
.xa4{left:616.377000px;}
.xa2{left:618.240000px;}
.xcc{left:622.212000px;}
.x1a{left:625.648500px;}
.x13{left:626.868000px;}
.x39{left:629.755500px;}
.xa5{left:631.321500px;}
.xa3{left:633.183000px;}
.x14{left:634.339500px;}
.x121{left:636.679500px;}
.xcf{left:640.573500px;}
.x94{left:642.252000px;}
.xf9{left:645.463500px;}
.xff{left:646.747500px;}
.x3a{left:648.492000px;}
.xde{left:654.804000px;}
.x3b{left:656.076000px;}
.x95{left:657.196500px;}
.x96{left:661.006500px;}
.xd6{left:663.259500px;}
.x104{left:664.698750px;}
.x102{left:667.864500px;}
.x100{left:669.163500px;}
.x3c{left:671.020500px;}
.xbe{left:672.628500px;}
.x97{left:675.951000px;}
.xcb{left:679.017000px;}
.xad{left:680.538000px;}
.xe4{left:683.013000px;}
.xee{left:686.134500px;}
.xe1{left:687.361500px;}
.xa8{left:688.963500px;}
.xe0{left:690.786000px;}
.x119{left:692.587500px;}
.xe5{left:694.296000px;}
.xae{left:695.481000px;}
.x103{left:698.139000px;}
.x5{left:701.339982px;}
.xa9{left:703.906500px;}
.x8b{left:708.103500px;}
.xe6{left:709.240500px;}
.x11e{left:710.514000px;}
.x8c{left:715.575000px;}
.x116{left:718.011000px;}
.x8d{left:719.385000px;}
.x115{left:721.818000px;}
.xfc{left:724.732500px;}
.x10e{left:727.329000px;}
.x114{left:729.300000px;}
.x11f{left:731.236500px;}
.x8e{left:734.329500px;}
.x8f{left:738.141000px;}
.xe2{left:742.449000px;}
.xfd{left:747.147000px;}
.x117{left:748.411500px;}
.xe3{left:749.772000px;}
.xfe{left:750.813000px;}
.x15{left:752.473500px;}
.x10f{left:754.228500px;}
.x120{left:755.482500px;}
.x5e{left:757.008000px;}
.x82{left:758.289000px;}
.x16{left:759.946500px;}
.x17{left:763.716000px;}
.x18{left:771.187500px;}
.x62{left:772.188000px;}
.x83{left:773.233500px;}
.x110{left:776.419500px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v4{vertical-align:-8.960000pt;}
.v3{vertical-align:-4.160000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v5{vertical-align:24.842667pt;}
.ls31{letter-spacing:-2.231279pt;}
.ls5a{letter-spacing:-2.158976pt;}
.ls3f{letter-spacing:-1.790746pt;}
.ls3d{letter-spacing:-1.679596pt;}
.ls55{letter-spacing:-1.139564pt;}
.ls3b{letter-spacing:-1.105323pt;}
.ls4d{letter-spacing:-0.925243pt;}
.ls4e{letter-spacing:-0.590692pt;}
.ls54{letter-spacing:-0.538418pt;}
.ls51{letter-spacing:-0.454780pt;}
.ls71{letter-spacing:-0.208416pt;}
.ls6d{letter-spacing:-0.187040pt;}
.ls70{letter-spacing:-0.144288pt;}
.ls6e{letter-spacing:-0.133600pt;}
.ls36{letter-spacing:-0.128256pt;}
.ls34{letter-spacing:-0.122912pt;}
.ls63{letter-spacing:-0.117568pt;}
.ls6f{letter-spacing:-0.112224pt;}
.ls5c{letter-spacing:-0.106880pt;}
.ls2e{letter-spacing:-0.101536pt;}
.ls28{letter-spacing:-0.085504pt;}
.ls23{letter-spacing:-0.080864pt;}
.ls26{letter-spacing:-0.080160pt;}
.ls62{letter-spacing:-0.076608pt;}
.ls2a{letter-spacing:-0.074816pt;}
.ls39{letter-spacing:-0.069472pt;}
.ls33{letter-spacing:-0.064128pt;}
.ls4b{letter-spacing:-0.062728pt;}
.ls38{letter-spacing:-0.058784pt;}
.ls5b{letter-spacing:-0.053440pt;}
.ls2d{letter-spacing:-0.048096pt;}
.ls37{letter-spacing:-0.042752pt;}
.ls25{letter-spacing:-0.037408pt;}
.ls24{letter-spacing:-0.032064pt;}
.ls27{letter-spacing:-0.026720pt;}
.ls29{letter-spacing:-0.021376pt;}
.ls2c{letter-spacing:-0.016032pt;}
.ls35{letter-spacing:-0.010688pt;}
.ls59{letter-spacing:-0.009600pt;}
.ls2b{letter-spacing:-0.005344pt;}
.ls58{letter-spacing:-0.004800pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.000444pt;}
.ls5d{letter-spacing:0.000915pt;}
.ls68{letter-spacing:0.001061pt;}
.ls72{letter-spacing:0.001070pt;}
.ls69{letter-spacing:0.001349pt;}
.ls4{letter-spacing:0.001667pt;}
.ls6c{letter-spacing:0.002078pt;}
.ls67{letter-spacing:0.002097pt;}
.ls81{letter-spacing:0.002287pt;}
.ls22{letter-spacing:0.002868pt;}
.ls73{letter-spacing:0.003017pt;}
.ls21{letter-spacing:0.003106pt;}
.ls86{letter-spacing:0.003307pt;}
.ls77{letter-spacing:0.004267pt;}
.ls16{letter-spacing:0.004800pt;}
.ls7e{letter-spacing:0.005088pt;}
.ls12{letter-spacing:0.005344pt;}
.ls1e{letter-spacing:0.010688pt;}
.ls43{letter-spacing:0.014400pt;}
.ls14{letter-spacing:0.016032pt;}
.lse{letter-spacing:0.019200pt;}
.ls47{letter-spacing:0.021376pt;}
.ls10{letter-spacing:0.024000pt;}
.lsc{letter-spacing:0.025536pt;}
.ls19{letter-spacing:0.026720pt;}
.ls44{letter-spacing:0.028800pt;}
.lsa{letter-spacing:0.029792pt;}
.ls1b{letter-spacing:0.032064pt;}
.ls17{letter-spacing:0.033600pt;}
.ls61{letter-spacing:0.034048pt;}
.ls13{letter-spacing:0.037408pt;}
.ls5f{letter-spacing:0.038304pt;}
.ls46{letter-spacing:0.042752pt;}
.lsf{letter-spacing:0.043200pt;}
.ls6a{letter-spacing:0.048000pt;}
.ls11{letter-spacing:0.048096pt;}
.ls30{letter-spacing:0.049174pt;}
.ls49{letter-spacing:0.053440pt;}
.ls18{letter-spacing:0.058784pt;}
.ls45{letter-spacing:0.064128pt;}
.ls1f{letter-spacing:0.069472pt;}
.ls1a{letter-spacing:0.074816pt;}
.ls1d{letter-spacing:0.085504pt;}
.ls48{letter-spacing:0.122912pt;}
.lsd{letter-spacing:0.153216pt;}
.lsb{letter-spacing:0.161728pt;}
.ls60{letter-spacing:0.170240pt;}
.ls3c{letter-spacing:0.185250pt;}
.ls4c{letter-spacing:0.198640pt;}
.ls57{letter-spacing:0.203867pt;}
.ls4a{letter-spacing:0.470462pt;}
.ls80{letter-spacing:0.486779pt;}
.ls32{letter-spacing:0.965043pt;}
.ls8{letter-spacing:1.133683pt;}
.ls40{letter-spacing:1.191772pt;}
.ls3e{letter-spacing:1.494347pt;}
.ls3{letter-spacing:1.654338pt;}
.ls52{letter-spacing:1.725029pt;}
.ls2f{letter-spacing:1.880913pt;}
.ls3a{letter-spacing:1.926596pt;}
.ls4f{letter-spacing:2.007306pt;}
.ls53{letter-spacing:2.148445pt;}
.ls50{letter-spacing:2.164127pt;}
.ls56{letter-spacing:2.503905pt;}
.ls1c{letter-spacing:9.680000pt;}
.ls6{letter-spacing:10.626533pt;}
.ls79{letter-spacing:11.674732pt;}
.ls83{letter-spacing:11.678890pt;}
.ls82{letter-spacing:11.848644pt;}
.ls85{letter-spacing:11.867375pt;}
.ls7c{letter-spacing:11.878299pt;}
.ls89{letter-spacing:11.946841pt;}
.ls74{letter-spacing:11.954133pt;}
.ls76{letter-spacing:11.959467pt;}
.ls78{letter-spacing:11.986250pt;}
.ls7f{letter-spacing:12.034026pt;}
.ls7a{letter-spacing:12.098781pt;}
.ls84{letter-spacing:12.104059pt;}
.ls87{letter-spacing:12.147364pt;}
.ls66{letter-spacing:12.750391pt;}
.ls88{letter-spacing:13.006892pt;}
.ls64{letter-spacing:13.088369pt;}
.ls41{letter-spacing:13.153433pt;}
.ls9{letter-spacing:13.230333pt;}
.ls5{letter-spacing:13.264566pt;}
.ls6b{letter-spacing:13.442868pt;}
.ls7b{letter-spacing:13.744146pt;}
.ls7d{letter-spacing:15.678787pt;}
.ls65{letter-spacing:17.109105pt;}
.ls75{letter-spacing:17.378133pt;}
.ls1{letter-spacing:62.432533pt;}
.ls2{letter-spacing:64.314231pt;}
.ls0{letter-spacing:64.321067pt;}
.ls42{letter-spacing:83.149654pt;}
.ls15{letter-spacing:839.202597pt;}
.ls20{letter-spacing:1043.618001pt;}
.ws90{word-spacing:-15.461955pt;}
.ws34{word-spacing:-15.449817pt;}
.ws2d{word-spacing:-14.856751pt;}
.ws9e{word-spacing:-14.317739pt;}
.ws1b0{word-spacing:-13.915853pt;}
.ws9a{word-spacing:-13.821140pt;}
.ws9c{word-spacing:-13.538862pt;}
.ws94{word-spacing:-13.283467pt;}
.ws1b{word-spacing:-12.369595pt;}
.ws32{word-spacing:-12.275873pt;}
.ws33{word-spacing:-12.164724pt;}
.ws9f{word-spacing:-12.017701pt;}
.ws166{word-spacing:-11.955200pt;}
.ws19b{word-spacing:-11.828475pt;}
.ws9b{word-spacing:-11.359053pt;}
.ws31{word-spacing:-11.338691pt;}
.ws9d{word-spacing:-11.275416pt;}
.ws10b{word-spacing:-10.810240pt;}
.ws2c{word-spacing:-10.801728pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws19d{word-spacing:-10.161920pt;}
.ws2{word-spacing:-10.095467pt;}
.ws132{word-spacing:-3.506835pt;}
.ws100{word-spacing:-3.453701pt;}
.ws137{word-spacing:-3.188032pt;}
.ws188{word-spacing:-3.136928pt;}
.ws98{word-spacing:-3.134898pt;}
.ws76{word-spacing:-3.131584pt;}
.ws8f{word-spacing:-3.081764pt;}
.wse7{word-spacing:-2.975497pt;}
.ws103{word-spacing:-2.922363pt;}
.ws212{word-spacing:-2.917069pt;}
.ws113{word-spacing:-2.826976pt;}
.ws1fa{word-spacing:-2.821427pt;}
.ws162{word-spacing:-2.816288pt;}
.ws14f{word-spacing:-2.816095pt;}
.ws110{word-spacing:-2.805600pt;}
.ws1c3{word-spacing:-2.773606pt;}
.ws175{word-spacing:-2.730784pt;}
.ws197{word-spacing:-2.656693pt;}
.ws28{word-spacing:-2.603559pt;}
.ws125{word-spacing:-2.506336pt;}
.ws17a{word-spacing:-2.500992pt;}
.ws27{word-spacing:-2.497292pt;}
.ws1b4{word-spacing:-2.486682pt;}
.ws7a{word-spacing:-2.484960pt;}
.ws6b{word-spacing:-2.479616pt;}
.ws7b{word-spacing:-2.463584pt;}
.ws6c{word-spacing:-2.458240pt;}
.ws1e2{word-spacing:-2.438861pt;}
.ws10f{word-spacing:-2.415488pt;}
.wse8{word-spacing:-2.391024pt;}
.ws93{word-spacing:-2.337890pt;}
.ws136{word-spacing:-2.284756pt;}
.ws18f{word-spacing:-2.201728pt;}
.ws209{word-spacing:-2.199757pt;}
.ws18e{word-spacing:-2.153632pt;}
.ws204{word-spacing:-2.151936pt;}
.ws13c{word-spacing:-2.125355pt;}
.ws179{word-spacing:-2.110880pt;}
.ws1bc{word-spacing:-2.104115pt;}
.wsbf{word-spacing:-2.073472pt;}
.ws139{word-spacing:-2.072221pt;}
.ws210{word-spacing:-1.960653pt;}
.ws218{word-spacing:-1.912832pt;}
.ws147{word-spacing:-1.912819pt;}
.wsbb{word-spacing:-1.859712pt;}
.ws2b{word-spacing:-1.859685pt;}
.ws10c{word-spacing:-1.806551pt;}
.ws16d{word-spacing:-1.806272pt;}
.wsbc{word-spacing:-1.800928pt;}
.wsd3{word-spacing:-1.768864pt;}
.ws152{word-spacing:-1.753418pt;}
.ws1fc{word-spacing:-1.721549pt;}
.ws8c{word-spacing:-1.704296pt;}
.ws5{word-spacing:-1.696326pt;}
.ws16c{word-spacing:-1.645952pt;}
.ws17b{word-spacing:-1.565792pt;}
.ws101{word-spacing:-1.540882pt;}
.ws1f{word-spacing:-1.487748pt;}
.ws1ff{word-spacing:-1.434624pt;}
.ws1a3{word-spacing:-1.434614pt;}
.ws16a{word-spacing:-1.432192pt;}
.ws200{word-spacing:-1.386803pt;}
.wsa2{word-spacing:-1.381481pt;}
.ws205{word-spacing:-1.338982pt;}
.ws95{word-spacing:-1.328347pt;}
.ws1ec{word-spacing:-1.291162pt;}
.ws156{word-spacing:-1.275213pt;}
.ws5b{word-spacing:-1.261184pt;}
.wsed{word-spacing:-1.222079pt;}
.ws47{word-spacing:-1.202400pt;}
.ws5c{word-spacing:-1.186368pt;}
.ws4{word-spacing:-1.175671pt;}
.ws16b{word-spacing:-1.159648pt;}
.wsd9{word-spacing:-1.148960pt;}
.ws8e{word-spacing:-1.115811pt;}
.wsf8{word-spacing:-1.062677pt;}
.ws1d5{word-spacing:-1.052058pt;}
.ws15{word-spacing:-1.009543pt;}
.ws146{word-spacing:-0.956410pt;}
.ws219{word-spacing:-0.908595pt;}
.wsd2{word-spacing:-0.908480pt;}
.ws151{word-spacing:-0.903276pt;}
.wsda{word-spacing:-0.887104pt;}
.ws158{word-spacing:-0.812954pt;}
.ws106{word-spacing:-0.797008pt;}
.wsd1{word-spacing:-0.796256pt;}
.wse9{word-spacing:-0.743874pt;}
.ws54{word-spacing:-0.694585pt;}
.wse6{word-spacing:-0.690740pt;}
.ws1df{word-spacing:-0.669491pt;}
.wsc{word-spacing:-0.637606pt;}
.wsb9{word-spacing:-0.603872pt;}
.ws193{word-spacing:-0.598528pt;}
.wsf6{word-spacing:-0.584473pt;}
.ws187{word-spacing:-0.582496pt;}
.ws159{word-spacing:-0.573850pt;}
.ws84{word-spacing:-0.566464pt;}
.ws89{word-spacing:-0.543399pt;}
.wsba{word-spacing:-0.534400pt;}
.ws130{word-spacing:-0.531339pt;}
.ws194{word-spacing:-0.529056pt;}
.ws5a{word-spacing:-0.513600pt;}
.ws59{word-spacing:-0.480000pt;}
.ws97{word-spacing:-0.478205pt;}
.ws1c6{word-spacing:-0.430387pt;}
.ws13f{word-spacing:-0.425071pt;}
.ws1e6{word-spacing:-0.396076pt;}
.wsa7{word-spacing:-0.386825pt;}
.ws1e7{word-spacing:-0.382566pt;}
.ws53{word-spacing:-0.374953pt;}
.wsea{word-spacing:-0.371937pt;}
.ws1f1{word-spacing:-0.334746pt;}
.ws16e{word-spacing:-0.320640pt;}
.wsff{word-spacing:-0.318803pt;}
.ws120{word-spacing:-0.288576pt;}
.ws1c7{word-spacing:-0.286925pt;}
.wse{word-spacing:-0.265669pt;}
.ws35{word-spacing:-0.239104pt;}
.ws10e{word-spacing:-0.238336pt;}
.ws88{word-spacing:-0.235136pt;}
.ws3b{word-spacing:-0.234080pt;}
.ws11b{word-spacing:-0.229792pt;}
.ws11f{word-spacing:-0.224448pt;}
.ws49{word-spacing:-0.219104pt;}
.wsa{word-spacing:-0.212535pt;}
.ws15c{word-spacing:-0.201600pt;}
.ws1a6{word-spacing:-0.191283pt;}
.ws1e3{word-spacing:-0.190019pt;}
.ws11c{word-spacing:-0.187040pt;}
.ws87{word-spacing:-0.171008pt;}
.ws1b2{word-spacing:-0.161936pt;}
.ws127{word-spacing:-0.160320pt;}
.wsd{word-spacing:-0.159402pt;}
.ws1b3{word-spacing:-0.143462pt;}
.ws11d{word-spacing:-0.117568pt;}
.wsa9{word-spacing:-0.115002pt;}
.ws10d{word-spacing:-0.110656pt;}
.ws3a{word-spacing:-0.106400pt;}
.wsf{word-spacing:-0.106268pt;}
.wsa1{word-spacing:-0.095642pt;}
.ws13{word-spacing:-0.053134pt;}
.wsa0{word-spacing:-0.047821pt;}
.ws198{word-spacing:-0.040648pt;}
.ws1f5{word-spacing:-0.026977pt;}
.ws1d4{word-spacing:-0.025728pt;}
.ws214{word-spacing:-0.023407pt;}
.ws213{word-spacing:-0.021888pt;}
.ws1d3{word-spacing:-0.021427pt;}
.ws1e9{word-spacing:-0.020745pt;}
.ws1dc{word-spacing:-0.008602pt;}
.ws1ac{word-spacing:-0.006844pt;}
.ws1ea{word-spacing:-0.006050pt;}
.ws1ef{word-spacing:-0.005786pt;}
.ws203{word-spacing:-0.005308pt;}
.ws1{word-spacing:-0.004886pt;}
.ws1f9{word-spacing:-0.004523pt;}
.ws19{word-spacing:-0.002739pt;}
.ws1bb{word-spacing:-0.002355pt;}
.ws1b7{word-spacing:-0.001510pt;}
.ws0{word-spacing:0.000000pt;}
.wsb6{word-spacing:0.016032pt;}
.ws124{word-spacing:0.026720pt;}
.ws48{word-spacing:0.032064pt;}
.ws1e8{word-spacing:0.032394pt;}
.wsc4{word-spacing:0.037408pt;}
.ws19c{word-spacing:0.040648pt;}
.ws126{word-spacing:0.042752pt;}
.ws1a8{word-spacing:0.047821pt;}
.ws15d{word-spacing:0.048096pt;}
.ws14{word-spacing:0.053134pt;}
.wsb5{word-spacing:0.053440pt;}
.ws121{word-spacing:0.058784pt;}
.ws173{word-spacing:0.085504pt;}
.ws61{word-spacing:0.090848pt;}
.ws1c0{word-spacing:0.095642pt;}
.ws9{word-spacing:0.106268pt;}
.ws3e{word-spacing:0.115200pt;}
.ws51{word-spacing:0.117568pt;}
.ws199{word-spacing:0.121943pt;}
.ws75{word-spacing:0.128256pt;}
.wsaf{word-spacing:0.129600pt;}
.ws3f{word-spacing:0.134400pt;}
.ws3d{word-spacing:0.139200pt;}
.ws1a9{word-spacing:0.143462pt;}
.wsae{word-spacing:0.144000pt;}
.wsd4{word-spacing:0.144288pt;}
.wsa8{word-spacing:0.146366pt;}
.ws3c{word-spacing:0.158400pt;}
.ws7{word-spacing:0.159402pt;}
.ws174{word-spacing:0.168000pt;}
.ws52{word-spacing:0.181696pt;}
.ws1d2{word-spacing:0.191283pt;}
.ws19a{word-spacing:0.203238pt;}
.ws12{word-spacing:0.212535pt;}
.ws16f{word-spacing:0.219104pt;}
.ws1e5{word-spacing:0.239104pt;}
.ws92{word-spacing:0.265669pt;}
.ws1aa{word-spacing:0.286925pt;}
.ws6{word-spacing:0.318803pt;}
.ws68{word-spacing:0.342016pt;}
.ws122{word-spacing:0.363392pt;}
.ws164{word-spacing:0.371937pt;}
.ws154{word-spacing:0.425071pt;}
.ws20b{word-spacing:0.430387pt;}
.wsca{word-spacing:0.443552pt;}
.wsab{word-spacing:0.456000pt;}
.ws4a{word-spacing:0.475616pt;}
.ws143{word-spacing:0.478205pt;}
.wsac{word-spacing:0.484800pt;}
.wsad{word-spacing:0.489600pt;}
.ws8d{word-spacing:0.512524pt;}
.ws1eb{word-spacing:0.526029pt;}
.ws12e{word-spacing:0.531339pt;}
.ws14d{word-spacing:0.584473pt;}
.wscb{word-spacing:0.598528pt;}
.ws96{word-spacing:0.637606pt;}
.wsc9{word-spacing:0.662656pt;}
.wsaa{word-spacing:0.674329pt;}
.ws176{word-spacing:0.689376pt;}
.ws14e{word-spacing:0.690740pt;}
.ws1cb{word-spacing:0.717312pt;}
.ws170{word-spacing:0.721440pt;}
.ws171{word-spacing:0.732128pt;}
.ws4c{word-spacing:0.737472pt;}
.ws12f{word-spacing:0.743874pt;}
.ws26{word-spacing:0.797008pt;}
.ws167{word-spacing:0.812954pt;}
.ws55{word-spacing:0.817521pt;}
.ws8{word-spacing:0.850142pt;}
.ws8b{word-spacing:0.883023pt;}
.wsb{word-spacing:0.903276pt;}
.ws1ee{word-spacing:0.908595pt;}
.wse5{word-spacing:0.956410pt;}
.ws41{word-spacing:0.993984pt;}
.ws217{word-spacing:1.004237pt;}
.wsf7{word-spacing:1.009543pt;}
.wsbd{word-spacing:1.042080pt;}
.ws4b{word-spacing:1.047424pt;}
.wsbe{word-spacing:1.052768pt;}
.wsb8{word-spacing:1.058112pt;}
.ws107{word-spacing:1.062677pt;}
.ws40{word-spacing:1.074144pt;}
.ws165{word-spacing:1.099878pt;}
.ws60{word-spacing:1.116896pt;}
.ws1a5{word-spacing:1.222079pt;}
.ws1c8{word-spacing:1.243341pt;}
.wsf1{word-spacing:1.275213pt;}
.ws1b8{word-spacing:1.291162pt;}
.wsd6{word-spacing:1.298592pt;}
.wsb7{word-spacing:1.325312pt;}
.ws157{word-spacing:1.328347pt;}
.ws1c5{word-spacing:1.338982pt;}
.ws169{word-spacing:1.341344pt;}
.ws129{word-spacing:1.346688pt;}
.ws13e{word-spacing:1.381481pt;}
.ws1d0{word-spacing:1.386803pt;}
.ws1f6{word-spacing:1.434624pt;}
.wsd5{word-spacing:1.458912pt;}
.ws14b{word-spacing:1.487748pt;}
.ws155{word-spacing:1.540882pt;}
.ws142{word-spacing:1.647150pt;}
.ws150{word-spacing:1.700284pt;}
.ws42{word-spacing:1.715424pt;}
.ws21c{word-spacing:1.721549pt;}
.wscf{word-spacing:1.736800pt;}
.ws43{word-spacing:1.758176pt;}
.ws16{word-spacing:1.806551pt;}
.ws18{word-spacing:1.859685pt;}
.ws22{word-spacing:1.912819pt;}
.ws15e{word-spacing:1.971936pt;}
.ws160{word-spacing:1.977280pt;}
.ws73{word-spacing:1.993312pt;}
.ws161{word-spacing:2.004000pt;}
.ws20f{word-spacing:2.008474pt;}
.ws7d{word-spacing:2.014688pt;}
.ws12d{word-spacing:2.019087pt;}
.ws192{word-spacing:2.020032pt;}
.wsce{word-spacing:2.025376pt;}
.ws191{word-spacing:2.052096pt;}
.wsa3{word-spacing:2.072221pt;}
.ws17c{word-spacing:2.116224pt;}
.wsef{word-spacing:2.125355pt;}
.ws17d{word-spacing:2.148288pt;}
.ws8a{word-spacing:2.173595pt;}
.ws141{word-spacing:2.178489pt;}
.ws13b{word-spacing:2.231622pt;}
.ws1fd{word-spacing:2.247578pt;}
.ws7c{word-spacing:2.249824pt;}
.ws4d{word-spacing:2.281888pt;}
.ws131{word-spacing:2.284756pt;}
.ws181{word-spacing:2.292576pt;}
.ws50{word-spacing:2.303264pt;}
.wse2{word-spacing:2.335328pt;}
.ws72{word-spacing:2.346016pt;}
.ws71{word-spacing:2.378080pt;}
.wse3{word-spacing:2.383424pt;}
.ws138{word-spacing:2.391024pt;}
.ws91{word-spacing:2.444158pt;}
.wsf5{word-spacing:2.497292pt;}
.ws18d{word-spacing:2.533056pt;}
.ws21{word-spacing:2.550426pt;}
.ws1ab{word-spacing:2.582323pt;}
.ws20{word-spacing:2.603559pt;}
.ws67{word-spacing:2.639936pt;}
.ws172{word-spacing:2.655968pt;}
.wsf3{word-spacing:2.656693pt;}
.ws4e{word-spacing:2.672000pt;}
.ws4f{word-spacing:2.688032pt;}
.ws1f7{word-spacing:2.725786pt;}
.ws10{word-spacing:2.762961pt;}
.ws1e4{word-spacing:2.773606pt;}
.ws25{word-spacing:2.816095pt;}
.ws134{word-spacing:2.869229pt;}
.ws1d6{word-spacing:2.917069pt;}
.ws168{word-spacing:2.917824pt;}
.wsfc{word-spacing:2.922363pt;}
.wsc1{word-spacing:2.949888pt;}
.ws216{word-spacing:2.964890pt;}
.ws140{word-spacing:2.975497pt;}
.ws14a{word-spacing:3.028630pt;}
.wsc0{word-spacing:3.046080pt;}
.ws12a{word-spacing:3.081764pt;}
.ws13d{word-spacing:3.134898pt;}
.ws10a{word-spacing:3.188032pt;}
.ws19f{word-spacing:3.294300pt;}
.ws1e0{word-spacing:3.299635pt;}
.ws79{word-spacing:3.340000pt;}
.ws215{word-spacing:3.347456pt;}
.ws39{word-spacing:3.400567pt;}
.wsf9{word-spacing:3.453701pt;}
.ws1ca{word-spacing:3.490918pt;}
.ws1c9{word-spacing:3.501803pt;}
.wsfd{word-spacing:3.506835pt;}
.ws12b{word-spacing:3.559969pt;}
.ws74{word-spacing:3.564448pt;}
.wsdb{word-spacing:3.612544pt;}
.ws77{word-spacing:3.628576pt;}
.wsdc{word-spacing:3.639264pt;}
.ws78{word-spacing:3.649952pt;}
.ws17{word-spacing:3.666237pt;}
.ws1d8{word-spacing:3.730022pt;}
.ws56{word-spacing:3.737238pt;}
.ws12c{word-spacing:3.825638pt;}
.ws1a4{word-spacing:3.878772pt;}
.ws24{word-spacing:3.931906pt;}
.ws23{word-spacing:3.985040pt;}
.ws99{word-spacing:4.038174pt;}
.ws14c{word-spacing:4.250709pt;}
.ws183{word-spacing:4.259168pt;}
.ws195{word-spacing:4.264512pt;}
.ws196{word-spacing:4.275200pt;}
.wsc6{word-spacing:4.296576pt;}
.wsc5{word-spacing:4.301920pt;}
.ws1d{word-spacing:4.303843pt;}
.ws1ad{word-spacing:4.303872pt;}
.ws21b{word-spacing:4.351693pt;}
.ws1f0{word-spacing:4.399514pt;}
.ws1e{word-spacing:4.410111pt;}
.ws2a{word-spacing:4.463245pt;}
.ws20d{word-spacing:4.495155pt;}
.wsfb{word-spacing:4.516379pt;}
.ws177{word-spacing:4.526368pt;}
.ws1f2{word-spacing:4.542976pt;}
.ws1d1{word-spacing:4.590797pt;}
.ws178{word-spacing:4.611872pt;}
.ws109{word-spacing:4.622646pt;}
.ws182{word-spacing:4.638592pt;}
.ws211{word-spacing:4.638618pt;}
.ws1ba{word-spacing:4.686438pt;}
.ws184{word-spacing:4.686688pt;}
.ws114{word-spacing:4.692032pt;}
.ws202{word-spacing:4.734259pt;}
.ws1ce{word-spacing:4.774903pt;}
.ws201{word-spacing:4.776055pt;}
.ws20a{word-spacing:4.776499pt;}
.ws207{word-spacing:4.776875pt;}
.ws20c{word-spacing:4.777037pt;}
.ws1b5{word-spacing:4.778931pt;}
.ws1b1{word-spacing:4.779085pt;}
.ws1c1{word-spacing:4.779785pt;}
.ws208{word-spacing:4.780433pt;}
.ws206{word-spacing:4.780570pt;}
.ws1a7{word-spacing:4.781175pt;}
.ws1bd{word-spacing:4.781756pt;}
.ws3{word-spacing:4.782080pt;}
.ws1f8{word-spacing:4.782618pt;}
.ws20e{word-spacing:4.782839pt;}
.ws83{word-spacing:4.873728pt;}
.ws1bf{word-spacing:4.877722pt;}
.ws65{word-spacing:4.895104pt;}
.ws82{word-spacing:4.905792pt;}
.ws1c4{word-spacing:4.925542pt;}
.wsf0{word-spacing:4.941450pt;}
.ws1cf{word-spacing:4.973363pt;}
.ws66{word-spacing:5.007328pt;}
.ws1ed{word-spacing:5.021184pt;}
.ws135{word-spacing:5.047717pt;}
.ws1fb{word-spacing:5.116826pt;}
.wsb4{word-spacing:5.162304pt;}
.ws1c2{word-spacing:5.164646pt;}
.ws64{word-spacing:5.172992pt;}
.wsec{word-spacing:5.207119pt;}
.ws11{word-spacing:5.313387pt;}
.ws1a2{word-spacing:5.366521pt;}
.ws1dd{word-spacing:5.403750pt;}
.wsa6{word-spacing:5.419654pt;}
.wsdd{word-spacing:5.466912pt;}
.ws108{word-spacing:5.472788pt;}
.wsfe{word-spacing:5.525922pt;}
.wscc{word-spacing:5.536384pt;}
.wscd{word-spacing:5.563104pt;}
.wsde{word-spacing:5.627232pt;}
.wse4{word-spacing:5.632190pt;}
.ws105{word-spacing:5.791591pt;}
.wsdf{word-spacing:5.798240pt;}
.ws1da{word-spacing:6.025421pt;}
.ws112{word-spacing:6.124224pt;}
.ws15f{word-spacing:6.188352pt;}
.ws153{word-spacing:6.216662pt;}
.wsee{word-spacing:6.269796pt;}
.ws2f{word-spacing:6.407987pt;}
.ws123{word-spacing:6.450208pt;}
.ws185{word-spacing:6.455552pt;}
.ws186{word-spacing:6.476928pt;}
.ws13a{word-spacing:6.482332pt;}
.ws1b9{word-spacing:6.503629pt;}
.ws86{word-spacing:6.503648pt;}
.ws145{word-spacing:6.535466pt;}
.ws189{word-spacing:6.551744pt;}
.ws85{word-spacing:6.605184pt;}
.ws148{word-spacing:6.641733pt;}
.ws2e{word-spacing:6.790554pt;}
.ws6a{word-spacing:6.824288pt;}
.ws18a{word-spacing:6.834976pt;}
.ws69{word-spacing:6.840320pt;}
.ws104{word-spacing:6.960537pt;}
.ws133{word-spacing:7.066804pt;}
.ws29{word-spacing:7.173072pt;}
.ws5d{word-spacing:7.182336pt;}
.ws190{word-spacing:7.198368pt;}
.wsfa{word-spacing:7.226206pt;}
.ws5e{word-spacing:7.241120pt;}
.ws1cc{word-spacing:7.268762pt;}
.ws19e{word-spacing:7.279340pt;}
.ws17f{word-spacing:7.438848pt;}
.ws180{word-spacing:7.449536pt;}
.ws17e{word-spacing:7.465568pt;}
.ws1a0{word-spacing:7.491875pt;}
.ws38{word-spacing:7.545009pt;}
.ws1d9{word-spacing:7.603507pt;}
.wsa4{word-spacing:7.651277pt;}
.ws119{word-spacing:7.727424pt;}
.ws1a1{word-spacing:7.757545pt;}
.ws118{word-spacing:8.037376pt;}
.ws6e{word-spacing:8.048064pt;}
.wse0{word-spacing:8.058752pt;}
.wsf4{word-spacing:8.076348pt;}
.wsb0{word-spacing:8.080128pt;}
.wsa5{word-spacing:8.182615pt;}
.ws80{word-spacing:8.416800pt;}
.wsc8{word-spacing:8.438176pt;}
.ws102{word-spacing:8.448285pt;}
.ws81{word-spacing:8.475584pt;}
.wsc7{word-spacing:8.480928pt;}
.ws70{word-spacing:8.956544pt;}
.ws6f{word-spacing:9.036704pt;}
.ws1fe{word-spacing:9.142383pt;}
.ws1db{word-spacing:9.181594pt;}
.ws111{word-spacing:9.325280pt;}
.wseb{word-spacing:9.404694pt;}
.ws46{word-spacing:9.677984pt;}
.ws44{word-spacing:9.704704pt;}
.ws1cd{word-spacing:9.707622pt;}
.ws57{word-spacing:9.734400pt;}
.ws58{word-spacing:9.753600pt;}
.ws45{word-spacing:9.763488pt;}
.ws6d{word-spacing:9.966560pt;}
.ws149{word-spacing:10.201702pt;}
.ws1de{word-spacing:10.281472pt;}
.ws1af{word-spacing:10.807501pt;}
.wse1{word-spacing:10.928480pt;}
.ws11a{word-spacing:10.976576pt;}
.ws36{word-spacing:11.051844pt;}
.ws1f3{word-spacing:11.142246pt;}
.ws18b{word-spacing:11.227744pt;}
.ws18c{word-spacing:11.313248pt;}
.ws1b6{word-spacing:11.572634pt;}
.ws117{word-spacing:11.601824pt;}
.ws1e1{word-spacing:11.955200pt;}
.ws7f{word-spacing:13.210368pt;}
.ws7e{word-spacing:13.226400pt;}
.ws128{word-spacing:13.504288pt;}
.ws63{word-spacing:13.766144pt;}
.wsd0{word-spacing:13.792864pt;}
.ws37{word-spacing:13.921073pt;}
.ws1d7{word-spacing:13.963674pt;}
.ws62{word-spacing:14.161600pt;}
.ws116{word-spacing:14.450176pt;}
.wsd7{word-spacing:14.455520pt;}
.wsd8{word-spacing:14.514304pt;}
.wsc3{word-spacing:14.856320pt;}
.wsc2{word-spacing:14.872352pt;}
.ws115{word-spacing:14.883040pt;}
.ws1ae{word-spacing:15.111373pt;}
.wsb3{word-spacing:15.150240pt;}
.wsb2{word-spacing:15.160928pt;}
.wsb1{word-spacing:15.187648pt;}
.ws11e{word-spacing:15.214368pt;}
.ws21a{word-spacing:15.733043pt;}
.ws163{word-spacing:15.796864pt;}
.ws15a{word-spacing:16.156800pt;}
.ws15b{word-spacing:16.166400pt;}
.ws1f4{word-spacing:17.024205pt;}
.ws5f{word-spacing:17.330592pt;}
.ws1be{word-spacing:18.315366pt;}
.ws144{word-spacing:19.978334pt;}
.wsf2{word-spacing:27.417075pt;}
.ws30{word-spacing:212.924105pt;}
.ws1c{word-spacing:667.830619pt;}
._14{margin-left:-250.892315pt;}
._0{margin-left:-10.616218pt;}
._9{margin-left:-6.757809pt;}
._5{margin-left:-5.308109pt;}
._1{margin-left:-3.931906pt;}
._10{margin-left:-3.014715pt;}
._4{margin-left:-1.328382pt;}
._7{width:0.969929pt;}
._2{width:2.670090pt;}
._13{width:3.612274pt;}
._12{width:4.996198pt;}
._2e{width:6.790554pt;}
._23{width:8.235749pt;}
._1a{width:10.042336pt;}
._2d{width:10.950963pt;}
._e{width:11.848852pt;}
._18{width:13.549171pt;}
._32{width:14.633165pt;}
._16{width:15.780794pt;}
._6{width:16.737280pt;}
._1b{width:17.640514pt;}
._8{width:18.809389pt;}
._29{width:19.978334pt;}
._1c{width:20.881645pt;}
._1e{width:22.050596pt;}
._b{width:23.644529pt;}
._17{width:24.813551pt;}
._19{width:26.248130pt;}
._a{width:27.257674pt;}
._28{width:28.320351pt;}
._c{width:30.180036pt;}
._26{width:31.827186pt;}
._27{width:32.836765pt;}
._1d{width:34.855817pt;}
._21{width:35.966350pt;}
._25{width:38.468919pt;}
._20{width:40.116105pt;}
._15{width:42.082058pt;}
._1f{width:43.304101pt;}
._3{width:48.360204pt;}
._2f{width:54.993920pt;}
._31{width:63.777235pt;}
._30{width:67.283866pt;}
._2c{width:78.904320pt;}
._2b{width:132.947558pt;}
._11{width:192.035358pt;}
._2a{width:225.025556pt;}
._22{width:1366.265376pt;}
._f{width:1387.124032pt;}
._24{width:1708.621067pt;}
._d{width:1729.874400pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs13{font-size:40.647680pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs5{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fsd{font-size:49.942400pt;}
.fs10{font-size:50.171200pt;}
.fs12{font-size:52.273600pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsf{font-size:58.560000pt;}
.fse{font-size:61.467733pt;}
.fs11{font-size:61.749867pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.yed{bottom:-681.956600pt;}
.yec{bottom:-663.876512pt;}
.yeb{bottom:-645.876584pt;}
.yea{bottom:-627.876656pt;}
.ye9{bottom:-609.876728pt;}
.y9d{bottom:-603.241003pt;}
.ye8{bottom:-591.876800pt;}
.y9c{bottom:-585.241075pt;}
.ye7{bottom:-573.957032pt;}
.y9b{bottom:-567.241147pt;}
.ye6{bottom:-555.957104pt;}
.y9a{bottom:-549.241219pt;}
.ye5{bottom:-537.957176pt;}
.y16b{bottom:-535.344027pt;}
.y99{bottom:-531.241291pt;}
.ye4{bottom:-519.957248pt;}
.y16a{bottom:-517.263939pt;}
.y98{bottom:-513.241363pt;}
.y169{bottom:-499.344171pt;}
.y97{bottom:-495.321595pt;}
.y1f4{bottom:-494.493344pt;}
.ye3{bottom:-491.397576pt;}
.y168{bottom:-481.344243pt;}
.y96{bottom:-477.321667pt;}
.y1f3{bottom:-476.573576pt;}
.ye2{bottom:-473.317488pt;}
.y95{bottom:-459.321739pt;}
.y167{bottom:-455.344347pt;}
.ye1{bottom:-455.317560pt;}
.y1f2{bottom:-447.933744pt;}
.y94{bottom:-441.321811pt;}
.ye0{bottom:-437.317632pt;}
.y1f1{bottom:-429.933816pt;}
.y166{bottom:-421.424643pt;}
.ydf{bottom:-419.317704pt;}
.y93{bottom:-412.762139pt;}
.y1f0{bottom:-411.933888pt;}
.y165{bottom:-403.344555pt;}
.yde{bottom:-401.397936pt;}
.y92{bottom:-394.682051pt;}
.y1ef{bottom:-393.933960pt;}
.y164{bottom:-385.344627pt;}
.ydd{bottom:-383.398008pt;}
.y91{bottom:-376.682123pt;}
.y1ee{bottom:-375.934032pt;}
.y163{bottom:-367.344699pt;}
.ydc{bottom:-365.398080pt;}
.y90{bottom:-358.682195pt;}
.y162{bottom:-349.424931pt;}
.ydb{bottom:-347.398152pt;}
.y1ed{bottom:-347.374360pt;}
.y8f{bottom:-340.680843pt;}
.y161{bottom:-331.425003pt;}
.y1ec{bottom:-329.294272pt;}
.y8e{bottom:-322.761075pt;}
.yda{bottom:-318.838480pt;}
.y160{bottom:-313.425075pt;}
.y1eb{bottom:-311.294344pt;}
.y8d{bottom:-304.761147pt;}
.yd9{bottom:-300.758392pt;}
.y15f{bottom:-295.425147pt;}
.y1ea{bottom:-293.294416pt;}
.y8c{bottom:-286.761219pt;}
.yd8{bottom:-282.758464pt;}
.y15e{bottom:-277.425219pt;}
.y1e9{bottom:-275.294488pt;}
.y8b{bottom:-268.761291pt;}
.yd7{bottom:-264.758536pt;}
.y15d{bottom:-259.425291pt;}
.y1e8{bottom:-257.374720pt;}
.y8a{bottom:-250.761363pt;}
.y6b{bottom:-248.662696pt;}
.yd6{bottom:-246.758608pt;}
.y15c{bottom:-241.505523pt;}
.y1e7{bottom:-239.374792pt;}
.y89{bottom:-232.761435pt;}
.y6a{bottom:-230.662768pt;}
.yd5{bottom:-228.758680pt;}
.y15b{bottom:-223.505595pt;}
.y1e6{bottom:-221.374864pt;}
.y88{bottom:-214.761507pt;}
.y69{bottom:-212.662840pt;}
.yd4{bottom:-210.838912pt;}
.y15a{bottom:-205.505667pt;}
.y1e5{bottom:-203.374936pt;}
.y87{bottom:-196.841739pt;}
.y68{bottom:-194.743072pt;}
.yd3{bottom:-192.838984pt;}
.y1c7{bottom:-187.141701pt;}
.y1e4{bottom:-185.375008pt;}
.y86{bottom:-178.841811pt;}
.y159{bottom:-176.945995pt;}
.y67{bottom:-176.743144pt;}
.y1c6{bottom:-169.061613pt;}
.y1e3{bottom:-167.375080pt;}
.yd2{bottom:-166.839088pt;}
.y158{bottom:-158.865907pt;}
.y1c5{bottom:-151.141845pt;}
.y85{bottom:-150.282139pt;}
.y1e2{bottom:-149.375152pt;}
.y66{bottom:-148.183472pt;}
.y157{bottom:-140.865979pt;}
.y1c4{bottom:-133.141917pt;}
.yd1{bottom:-132.919384pt;}
.y84{bottom:-132.202051pt;}
.y1e1{bottom:-131.455384pt;}
.y65{bottom:-130.103384pt;}
.y156{bottom:-122.866051pt;}
.y1c3{bottom:-115.141989pt;}
.yd0{bottom:-114.839296pt;}
.y83{bottom:-114.202123pt;}
.y1e0{bottom:-113.455456pt;}
.y64{bottom:-112.103456pt;}
.y155{bottom:-104.866123pt;}
.y1c2{bottom:-97.142061pt;}
.ycf{bottom:-96.839368pt;}
.y82{bottom:-96.202195pt;}
.y1df{bottom:-95.455528pt;}
.y63{bottom:-94.103528pt;}
.y154{bottom:-86.866195pt;}
.y1c1{bottom:-79.142133pt;}
.yce{bottom:-78.919600pt;}
.y81{bottom:-78.202267pt;}
.y1de{bottom:-77.455600pt;}
.y62{bottom:-76.103600pt;}
.y153{bottom:-68.866267pt;}
.y1c0{bottom:-45.542667pt;}
.ycd{bottom:-45.319067pt;}
.y80{bottom:-44.602667pt;}
.y1dd{bottom:-43.856000pt;}
.y61{bottom:-42.504000pt;}
.y152{bottom:-35.266267pt;}
.y1bf{bottom:-28.182267pt;}
.ycc{bottom:-27.879467pt;}
.y7f{bottom:-27.242267pt;}
.y1dc{bottom:-26.495600pt;}
.y60{bottom:-25.143600pt;}
.y151{bottom:-4.066267pt;}
.ycb{bottom:-0.439600pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:2.056400pt;}
.y1db{bottom:2.144400pt;}
.y1be{bottom:2.617733pt;}
.yf{bottom:3.044747pt;}
.y7e{bottom:4.997733pt;}
.ybe{bottom:8.281041pt;}
.ye{bottom:12.578910pt;}
.y79{bottom:13.895760pt;}
.y2{bottom:16.528366pt;}
.ya3{bottom:23.877542pt;}
.ybd{bottom:24.360400pt;}
.y78{bottom:32.296126pt;}
.ya2{bottom:42.357733pt;}
.yc4{bottom:49.560437pt;}
.y77{bottom:50.776400pt;}
.yc1{bottom:51.080154pt;}
.y2f{bottom:56.693333pt;}
.yc3{bottom:64.360400pt;}
.yc0{bottom:65.800400pt;}
.y2e{bottom:96.544000pt;}
.y2a3{bottom:96.850667pt;}
.y1d0{bottom:96.860000pt;}
.yc8{bottom:98.200154pt;}
.yc6{bottom:100.440437pt;}
.y100{bottom:100.745333pt;}
.y198{bottom:100.754667pt;}
.yca{bottom:102.760154pt;}
.y1b5{bottom:105.722667pt;}
.y119{bottom:106.545333pt;}
.y232{bottom:108.914667pt;}
.y71{bottom:111.256400pt;}
.yc7{bottom:112.920400pt;}
.y146{bottom:113.692000pt;}
.y2a2{bottom:114.066667pt;}
.y2d{bottom:114.556000pt;}
.y208{bottom:114.764000pt;}
.y1cf{bottom:114.872000pt;}
.yc5{bottom:115.240400pt;}
.yc9{bottom:117.480400pt;}
.yff{bottom:118.758667pt;}
.y197{bottom:118.766667pt;}
.ya1{bottom:119.077733pt;}
.y17c{bottom:121.317333pt;}
.y26f{bottom:123.205333pt;}
.y1b4{bottom:123.734667pt;}
.y118{bottom:124.558667pt;}
.y231{bottom:126.926667pt;}
.y70{bottom:127.096400pt;}
.y76{bottom:129.416400pt;}
.y2a1{bottom:131.281333pt;}
.y74{bottom:131.656400pt;}
.y145{bottom:131.705333pt;}
.yae{bottom:132.182667pt;}
.y2c{bottom:132.568000pt;}
.y207{bottom:132.776000pt;}
.y1ce{bottom:132.885333pt;}
.yfe{bottom:136.770667pt;}
.y196{bottom:136.780000pt;}
.y17b{bottom:139.329333pt;}
.y26e{bottom:140.421333pt;}
.y1b3{bottom:141.748000pt;}
.y117{bottom:142.570667pt;}
.y230{bottom:144.940000pt;}
.y2a0{bottom:148.497333pt;}
.y144{bottom:149.717333pt;}
.y2b{bottom:150.581333pt;}
.y206{bottom:150.789333pt;}
.y1cd{bottom:150.897333pt;}
.yad{bottom:151.524000pt;}
.yfd{bottom:154.784000pt;}
.y195{bottom:154.792000pt;}
.ya8{bottom:157.077733pt;}
.y17a{bottom:157.342667pt;}
.y26d{bottom:157.636000pt;}
.y9e{bottom:157.797733pt;}
.y1b2{bottom:159.760000pt;}
.y116{bottom:160.584000pt;}
.yc2{bottom:161.080400pt;}
.y22f{bottom:162.952000pt;}
.y6c{bottom:163.416400pt;}
.ybf{bottom:163.560400pt;}
.y29f{bottom:165.713333pt;}
.y143{bottom:167.730667pt;}
.y2a{bottom:168.593333pt;}
.y205{bottom:168.801333pt;}
.y1cc{bottom:168.910667pt;}
.yac{bottom:170.865333pt;}
.yfc{bottom:172.796000pt;}
.y194{bottom:172.804000pt;}
.y26c{bottom:174.852000pt;}
.y179{bottom:175.354667pt;}
.y1b1{bottom:177.772000pt;}
.y115{bottom:178.596000pt;}
.y22e{bottom:180.965333pt;}
.y23b{bottom:182.169333pt;}
.y29e{bottom:182.928000pt;}
.y142{bottom:185.742667pt;}
.y75{bottom:186.136400pt;}
.y29{bottom:186.606667pt;}
.y204{bottom:186.813333pt;}
.y1cb{bottom:186.922667pt;}
.yfb{bottom:190.808000pt;}
.y193{bottom:190.817333pt;}
.y26b{bottom:192.068000pt;}
.y178{bottom:193.368000pt;}
.y1b0{bottom:195.785333pt;}
.y114{bottom:196.608000pt;}
.y22d{bottom:198.977333pt;}
.yab{bottom:199.504000pt;}
.y29d{bottom:200.144000pt;}
.ya7{bottom:201.317267pt;}
.ya5{bottom:202.517542pt;}
.y23a{bottom:203.649333pt;}
.y141{bottom:203.754667pt;}
.y16d{bottom:204.578667pt;}
.y28{bottom:204.618667pt;}
.y203{bottom:204.826667pt;}
.y1ca{bottom:204.934667pt;}
.yfa{bottom:208.821333pt;}
.y192{bottom:208.829333pt;}
.ybc{bottom:209.081285pt;}
.y269{bottom:209.282667pt;}
.yba{bottom:210.680857pt;}
.y177{bottom:211.380000pt;}
.y26a{bottom:213.622667pt;}
.y1af{bottom:213.797333pt;}
.y113{bottom:214.621333pt;}
.yaa{bottom:215.698667pt;}
.y16c{bottom:216.186667pt;}
.y22c{bottom:216.989333pt;}
.y239{bottom:217.158667pt;}
.y29c{bottom:217.358667pt;}
.y5c{bottom:217.517333pt;}
.ya6{bottom:219.877733pt;}
.ya4{bottom:220.997733pt;}
.y140{bottom:221.768000pt;}
.ybb{bottom:222.441111pt;}
.y6e{bottom:222.456400pt;}
.y27{bottom:222.630667pt;}
.y202{bottom:222.838667pt;}
.yb9{bottom:224.120400pt;}
.y268{bottom:226.498667pt;}
.yf9{bottom:226.833333pt;}
.y191{bottom:226.842667pt;}
.y176{bottom:229.392000pt;}
.y238{bottom:230.668000pt;}
.y1ae{bottom:231.810667pt;}
.y112{bottom:232.633333pt;}
.ya9{bottom:232.794667pt;}
.y29b{bottom:234.574667pt;}
.y22b{bottom:235.002667pt;}
.y5b{bottom:235.529333pt;}
.y1c9{bottom:236.046667pt;}
.y14f{bottom:236.124000pt;}
.y13f{bottom:239.780000pt;}
.y26{bottom:240.644000pt;}
.y201{bottom:240.852000pt;}
.y267{bottom:243.713333pt;}
.y237{bottom:244.177333pt;}
.yf8{bottom:244.846667pt;}
.y190{bottom:244.854667pt;}
.y175{bottom:247.405333pt;}
.y1ad{bottom:249.822667pt;}
.y111{bottom:250.646667pt;}
.y29a{bottom:251.790667pt;}
.y7c{bottom:252.732000pt;}
.y1c8{bottom:253.142667pt;}
.y5a{bottom:253.541333pt;}
.y236{bottom:257.686667pt;}
.y13e{bottom:257.793333pt;}
.y25{bottom:258.656000pt;}
.y73{bottom:258.696400pt;}
.y200{bottom:258.864000pt;}
.y266{bottom:260.929333pt;}
.y22a{bottom:260.985333pt;}
.yf7{bottom:262.858667pt;}
.y18f{bottom:262.866667pt;}
.ya0{bottom:267.237733pt;}
.y1ac{bottom:267.834667pt;}
.y110{bottom:268.658667pt;}
.y299{bottom:269.005333pt;}
.y59{bottom:271.554667pt;}
.y6f{bottom:272.376400pt;}
.y1bc{bottom:273.080000pt;}
.y174{bottom:276.044000pt;}
.yb8{bottom:276.520400pt;}
.y24{bottom:276.669333pt;}
.y72{bottom:276.856400pt;}
.y1ff{bottom:276.876000pt;}
.y265{bottom:278.145333pt;}
.y235{bottom:279.165333pt;}
.yf6{bottom:280.870667pt;}
.y18e{bottom:280.880000pt;}
.y13d{bottom:283.776000pt;}
.y1ab{bottom:285.848000pt;}
.y298{bottom:286.221333pt;}
.y10f{bottom:286.670667pt;}
.y58{bottom:289.566667pt;}
.y173{bottom:294.057333pt;}
.y23{bottom:294.681333pt;}
.y1fe{bottom:294.889333pt;}
.y264{bottom:295.360000pt;}
.y229{bottom:298.509600pt;}
.yf5{bottom:298.884000pt;}
.y18d{bottom:298.892000pt;}
.y1da{bottom:300.385064pt;}
.y234{bottom:300.645333pt;}
.y297{bottom:303.437333pt;}
.y1aa{bottom:303.860000pt;}
.y9f{bottom:303.957733pt;}
.y10e{bottom:304.684000pt;}
.y57{bottom:307.580000pt;}
.y228{bottom:310.929800pt;}
.y6d{bottom:311.176400pt;}
.y172{bottom:312.069333pt;}
.y263{bottom:312.576000pt;}
.y1fd{bottom:312.901333pt;}
.y233{bottom:314.154667pt;}
.y13c{bottom:314.726667pt;}
.y18c{bottom:316.905333pt;}
.y1d9{bottom:318.384992pt;}
.y296{bottom:320.652000pt;}
.y22{bottom:320.664000pt;}
.y1a9{bottom:321.873333pt;}
.y10d{bottom:322.696000pt;}
.y227{bottom:323.350000pt;}
.yf4{bottom:324.866667pt;}
.y56{bottom:325.592000pt;}
.y222{bottom:329.559533pt;}
.y262{bottom:329.790667pt;}
.y171{bottom:330.081333pt;}
.y1fc{bottom:330.914667pt;}
.y13b{bottom:332.738667pt;}
.y18b{bottom:334.917333pt;}
.y226{bottom:335.770200pt;}
.y1d8{bottom:336.384920pt;}
.y295{bottom:337.868000pt;}
.y1a8{bottom:339.885333pt;}
.y10c{bottom:340.709333pt;}
.y221{bottom:341.979733pt;}
.y55{bottom:343.604000pt;}
.y261{bottom:347.006667pt;}
.y225{bottom:348.190400pt;}
.y1fb{bottom:348.926667pt;}
.y13a{bottom:350.750667pt;}
.y18a{bottom:352.929333pt;}
.y1d7{bottom:354.384848pt;}
.y294{bottom:355.082667pt;}
.yf3{bottom:355.817333pt;}
.y1a7{bottom:357.897333pt;}
.y10b{bottom:358.721333pt;}
.y224{bottom:360.610600pt;}
.y54{bottom:361.617333pt;}
.y7d{bottom:364.117733pt;}
.y260{bottom:364.222667pt;}
.y5e{bottom:366.216400pt;}
.y1fa{bottom:366.938667pt;}
.y139{bottom:368.764000pt;}
.y189{bottom:370.942667pt;}
.y293{bottom:372.298667pt;}
.y1d6{bottom:372.384776pt;}
.y223{bottom:373.030800pt;}
.yf2{bottom:373.829333pt;}
.y1a6{bottom:375.910667pt;}
.y10a{bottom:376.733333pt;}
.y53{bottom:379.629333pt;}
.y25f{bottom:381.437333pt;}
.y1f9{bottom:384.952000pt;}
.y138{bottom:386.776000pt;}
.y21{bottom:388.589333pt;}
.y188{bottom:388.954667pt;}
.y292{bottom:389.514667pt;}
.y1d5{bottom:390.304544pt;}
.y220{bottom:390.892133pt;}
.yf1{bottom:391.842667pt;}
.y1a5{bottom:393.922667pt;}
.y109{bottom:394.746667pt;}
.y52{bottom:397.642667pt;}
.y25e{bottom:398.653333pt;}
.y1f8{bottom:402.964000pt;}
.y21e{bottom:403.312333pt;}
.y137{bottom:404.789333pt;}
.y20{bottom:406.601333pt;}
.y291{bottom:406.729333pt;}
.y187{bottom:406.968000pt;}
.y1d4{bottom:408.304472pt;}
.yf0{bottom:409.854667pt;}
.y108{bottom:412.758667pt;}
.y1bb{bottom:414.937333pt;}
.y51{bottom:415.654667pt;}
.y21d{bottom:415.732533pt;}
.y25d{bottom:415.868000pt;}
.y1a4{bottom:419.905333pt;}
.y1f7{bottom:420.977333pt;}
.y150{bottom:421.293733pt;}
.y136{bottom:422.801333pt;}
.y290{bottom:423.945333pt;}
.y1f{bottom:424.614667pt;}
.y186{bottom:424.980000pt;}
.y1d3{bottom:426.304400pt;}
.y21c{bottom:428.152733pt;}
.y107{bottom:430.772000pt;}
.y25c{bottom:433.084000pt;}
.y50{bottom:433.666667pt;}
.y217{bottom:434.362267pt;}
.y21b{bottom:440.572933pt;}
.y135{bottom:440.813333pt;}
.yef{bottom:440.966667pt;}
.y28f{bottom:441.160000pt;}
.y1ba{bottom:445.888000pt;}
.y216{bottom:446.782467pt;}
.y106{bottom:448.784000pt;}
.y25b{bottom:450.300000pt;}
.y1a3{bottom:450.856000pt;}
.y185{bottom:450.962667pt;}
.y4f{bottom:451.680000pt;}
.y1f6{bottom:452.088000pt;}
.y21a{bottom:452.993133pt;}
.yee{bottom:458.061333pt;}
.y28e{bottom:458.376000pt;}
.y1e{bottom:458.566667pt;}
.y134{bottom:458.826667pt;}
.y1d2{bottom:459.584400pt;}
.y1b9{bottom:463.901333pt;}
.y219{bottom:465.413333pt;}
.y105{bottom:466.796000pt;}
.y25a{bottom:467.514667pt;}
.y1a2{bottom:468.869333pt;}
.y1f5{bottom:469.184000pt;}
.y4e{bottom:469.692000pt;}
.y28d{bottom:475.592000pt;}
.y1d{bottom:476.580000pt;}
.y218{bottom:477.832400pt;}
.yb7{bottom:477.998667pt;}
.y184{bottom:481.913333pt;}
.y259{bottom:484.730667pt;}
.y104{bottom:484.809333pt;}
.y4d{bottom:487.704000pt;}
.y1a1{bottom:488.209333pt;}
.y1d1{bottom:489.121333pt;}
.y21f{bottom:490.252600pt;}
.y28c{bottom:492.806667pt;}
.y1c{bottom:494.592000pt;}
.y183{bottom:499.925333pt;}
.y258{bottom:501.945333pt;}
.y103{bottom:502.821333pt;}
.y4c{bottom:505.717333pt;}
.y1a0{bottom:506.222667pt;}
.y1b8{bottom:507.896000pt;}
.y215{bottom:508.115067pt;}
.y28b{bottom:510.022667pt;}
.y1b{bottom:512.604000pt;}
.y210{bottom:514.324600pt;}
.y133{bottom:515.760000pt;}
.y182{bottom:517.938667pt;}
.y257{bottom:519.161333pt;}
.y214{bottom:520.535267pt;}
.y102{bottom:520.834667pt;}
.y4b{bottom:523.729333pt;}
.y19f{bottom:525.562667pt;}
.y20e{bottom:526.744800pt;}
.y28a{bottom:527.237333pt;}
.y1a{bottom:530.617333pt;}
.y213{bottom:532.955467pt;}
.y132{bottom:533.772000pt;}
.y181{bottom:535.950667pt;}
.y256{bottom:536.377333pt;}
.y170{bottom:538.846667pt;}
.y20d{bottom:539.165000pt;}
.y4a{bottom:541.742667pt;}
.y289{bottom:544.453333pt;}
.y19e{bottom:544.904000pt;}
.y212{bottom:545.375667pt;}
.y101{bottom:546.816000pt;}
.y19{bottom:548.629333pt;}
.y20f{bottom:551.585200pt;}
.y131{bottom:551.785333pt;}
.y255{bottom:553.592000pt;}
.y16f{bottom:556.858667pt;}
.y211{bottom:557.794733pt;}
.y49{bottom:559.754667pt;}
.y288{bottom:561.669333pt;}
.y180{bottom:561.933333pt;}
.y19d{bottom:562.916000pt;}
.y18{bottom:566.642667pt;}
.y130{bottom:569.797333pt;}
.y254{bottom:570.808000pt;}
.y1b7{bottom:574.872000pt;}
.y20c{bottom:575.657200pt;}
.y48{bottom:577.766667pt;}
.y287{bottom:578.884000pt;}
.y20b{bottom:581.866733pt;}
.y19c{bottom:582.257333pt;}
.y16e{bottom:582.841333pt;}
.y17{bottom:584.654667pt;}
.y12f{bottom:587.809333pt;}
.y253{bottom:588.024000pt;}
.y17f{bottom:592.884000pt;}
.y47{bottom:595.780000pt;}
.y286{bottom:596.100000pt;}
.y19b{bottom:600.269333pt;}
.y16{bottom:602.666667pt;}
.y252{bottom:605.238667pt;}
.y12e{bottom:605.822667pt;}
.y17e{bottom:610.896000pt;}
.y285{bottom:613.314667pt;}
.y46{bottom:613.792000pt;}
.y20a{bottom:613.933333pt;}
.y7b{bottom:618.437333pt;}
.y15{bottom:620.680000pt;}
.y251{bottom:622.454667pt;}
.y12d{bottom:623.834667pt;}
.y17d{bottom:628.909333pt;}
.y284{bottom:630.530667pt;}
.y45{bottom:631.805333pt;}
.y7a{bottom:635.533333pt;}
.y14{bottom:638.692000pt;}
.y250{bottom:639.669333pt;}
.y12c{bottom:641.846667pt;}
.y14e{bottom:646.921333pt;}
.y283{bottom:647.746667pt;}
.y44{bottom:649.817333pt;}
.y5d{bottom:655.470667pt;}
.y13{bottom:656.705333pt;}
.y24f{bottom:656.885333pt;}
.y12b{bottom:659.860000pt;}
.y14d{bottom:664.934667pt;}
.y282{bottom:664.961333pt;}
.y43{bottom:667.829333pt;}
.y2a6{bottom:670.240000pt;}
.y24e{bottom:674.101333pt;}
.y12{bottom:674.717333pt;}
.y12a{bottom:677.872000pt;}
.y281{bottom:682.177333pt;}
.y14c{bottom:682.946667pt;}
.y42{bottom:685.842667pt;}
.y2a5{bottom:687.456000pt;}
.y24d{bottom:691.316000pt;}
.y11{bottom:692.729333pt;}
.y129{bottom:695.885333pt;}
.y280{bottom:699.392000pt;}
.y14b{bottom:700.958667pt;}
.y41{bottom:703.854667pt;}
.y2a4{bottom:704.672000pt;}
.y24c{bottom:708.532000pt;}
.y10{bottom:710.742667pt;}
.y128{bottom:713.897333pt;}
.y27f{bottom:716.608000pt;}
.y14a{bottom:718.972000pt;}
.y40{bottom:721.868000pt;}
.y24b{bottom:725.746667pt;}
.y209{bottom:726.941333pt;}
.y127{bottom:731.909333pt;}
.y27e{bottom:733.824000pt;}
.y149{bottom:736.984000pt;}
.y3f{bottom:739.880000pt;}
.yd{bottom:741.034634pt;}
.yc{bottom:741.716000pt;}
.y24a{bottom:742.962667pt;}
.y126{bottom:749.922667pt;}
.y27d{bottom:751.038667pt;}
.y1bd{bottom:754.377733pt;}
.yb6{bottom:754.997333pt;}
.y3e{bottom:757.892000pt;}
.y249{bottom:760.178667pt;}
.y1b6{bottom:762.966667pt;}
.y125{bottom:767.934667pt;}
.y27c{bottom:768.254667pt;}
.yb5{bottom:773.009333pt;}
.y3d{bottom:775.905333pt;}
.yb{bottom:776.386667pt;}
.y248{bottom:777.393333pt;}
.y27b{bottom:785.469333pt;}
.y124{bottom:785.948000pt;}
.yb4{bottom:791.021333pt;}
.y3c{bottom:793.917333pt;}
.y247{bottom:794.609333pt;}
.ya{bottom:796.866667pt;}
.y27a{bottom:802.685333pt;}
.y123{bottom:803.960000pt;}
.yb3{bottom:809.034667pt;}
.y246{bottom:811.824000pt;}
.y3b{bottom:811.930667pt;}
.y9{bottom:813.005333pt;}
.y279{bottom:819.901333pt;}
.y122{bottom:821.972000pt;}
.yb2{bottom:827.046667pt;}
.y245{bottom:829.040000pt;}
.y3a{bottom:829.942667pt;}
.y8{bottom:831.572000pt;}
.y278{bottom:837.116000pt;}
.y121{bottom:839.985333pt;}
.yb1{bottom:845.060000pt;}
.y244{bottom:846.256000pt;}
.y39{bottom:847.954667pt;}
.y277{bottom:854.332000pt;}
.y120{bottom:857.997333pt;}
.yb0{bottom:863.072000pt;}
.y243{bottom:863.470667pt;}
.y38{bottom:865.968000pt;}
.y7{bottom:871.160000pt;}
.y276{bottom:871.546667pt;}
.y11f{bottom:876.010667pt;}
.y242{bottom:880.686667pt;}
.y148{bottom:881.084000pt;}
.y37{bottom:883.980000pt;}
.y275{bottom:888.762667pt;}
.yaf{bottom:889.054667pt;}
.y11e{bottom:894.022667pt;}
.y241{bottom:897.901333pt;}
.y6{bottom:898.178667pt;}
.y19a{bottom:899.097333pt;}
.y36{bottom:901.993333pt;}
.y274{bottom:905.978667pt;}
.y147{bottom:907.066667pt;}
.y11d{bottom:912.034667pt;}
.y240{bottom:915.117333pt;}
.y35{bottom:920.005333pt;}
.y273{bottom:923.193333pt;}
.y199{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y11c{bottom:930.048000pt;}
.y23f{bottom:932.333333pt;}
.y34{bottom:938.017333pt;}
.y272{bottom:940.409333pt;}
.y11b{bottom:948.060000pt;}
.y23e{bottom:949.548000pt;}
.y4{bottom:952.217333pt;}
.y33{bottom:956.030667pt;}
.y271{bottom:957.624000pt;}
.y11a{bottom:966.073333pt;}
.y23d{bottom:966.764000pt;}
.y32{bottom:974.042667pt;}
.y270{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y23c{bottom:991.949333pt;}
.y31{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y30{bottom:1038.548000pt;}
.h29{height:17.332218pt;}
.h9{height:22.673858pt;}
.h20{height:24.760382pt;}
.h24{height:29.266330pt;}
.hb{height:29.433775pt;}
.ha{height:30.399505pt;}
.h27{height:32.709427pt;}
.h2a{height:33.713664pt;}
.h26{height:34.144051pt;}
.h16{height:34.430976pt;}
.h7{height:35.073565pt;}
.h28{height:35.100467pt;}
.h1c{height:35.733906pt;}
.h14{height:35.847328pt;}
.h18{height:36.011555pt;}
.h1b{height:37.520602pt;}
.hc{height:38.256384pt;}
.h25{height:38.330762pt;}
.h1e{height:38.775312pt;}
.h4{height:39.000258pt;}
.h10{height:39.754531pt;}
.he{height:40.084290pt;}
.h15{height:44.119906pt;}
.h19{height:44.322414pt;}
.h12{height:44.835938pt;}
.h8{height:45.095014pt;}
.h2{height:45.272024pt;}
.h1d{height:46.718750pt;}
.h6{height:48.365611pt;}
.h13{height:49.917344pt;}
.hd{height:50.105236pt;}
.h23{height:54.108996pt;}
.h11{height:59.781250pt;}
.h3{height:61.782479pt;}
.h5{height:68.861952pt;}
.h1a{height:255.977333pt;}
.h22{height:283.776000pt;}
.h17{height:339.377333pt;}
.hf{height:349.869333pt;}
.h1f{height:391.308000pt;}
.h21{height:732.261333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w4{width:308.954667pt;}
.w5{width:317.346667pt;}
.w9{width:417.010667pt;}
.w7{width:422.257333pt;}
.w6{width:502.510667pt;}
.w8{width:593.780800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x40{left:-141.832000pt;}
.x52{left:-136.062667pt;}
.x44{left:-113.512000pt;}
.x54{left:-107.742667pt;}
.x42{left:-97.752000pt;}
.x106{left:-84.657333pt;}
.xb9{left:-83.082667pt;}
.x107{left:-56.337333pt;}
.xbb{left:-54.762667pt;}
.x108{left:-51.697333pt;}
.x66{left:-44.792000pt;}
.x77{left:-16.472000pt;}
.x0{left:0.000000pt;}
.x50{left:9.768000pt;}
.x57{left:20.737333pt;}
.xba{left:21.877333pt;}
.x6{left:26.021437pt;}
.x105{left:29.163467pt;}
.x4a{left:36.728000pt;}
.x2{left:50.765941pt;}
.x48{left:55.048000pt;}
.x46{left:57.128000pt;}
.x5a{left:63.778031pt;}
.x70{left:69.848000pt;}
.x45{left:72.248000pt;}
.x56{left:75.537333pt;}
.x55{left:78.017333pt;}
.x59{left:80.657333pt;}
.x71{left:85.848400pt;}
.x47{left:91.048000pt;}
.x67{left:96.568000pt;}
.x81{left:100.054667pt;}
.x1{left:102.046667pt;}
.x43{left:104.648400pt;}
.x4{left:108.542667pt;}
.x3{left:109.606667pt;}
.x49{left:113.848000pt;}
.x6c{left:116.647500pt;}
.x5d{left:119.697333pt;}
.x68{left:122.727900pt;}
.xf6{left:129.382667pt;}
.x9{left:130.393333pt;}
.x9c{left:135.282667pt;}
.x65{left:145.596000pt;}
.x9d{left:148.565333pt;}
.xdb{left:150.190667pt;}
.x9e{left:155.340000pt;}
.x10b{left:159.457333pt;}
.x10a{left:160.546667pt;}
.xc1{left:161.642667pt;}
.xdc{left:163.473333pt;}
.xc2{left:165.029333pt;}
.x7{left:167.977333pt;}
.xd7{left:169.904000pt;}
.x21{left:172.280000pt;}
.x87{left:174.240000pt;}
.xb8{left:175.594667pt;}
.x92{left:176.652000pt;}
.xc3{left:178.313333pt;}
.x8{left:179.550667pt;}
.x5b{left:180.897333pt;}
.x109{left:182.822667pt;}
.x11c{left:183.797333pt;}
.x22{left:185.562667pt;}
.x88{left:187.524000pt;}
.x23{left:188.950667pt;}
.x93{left:189.936000pt;}
.x89{left:190.910667pt;}
.x4f{left:193.048000pt;}
.x58{left:194.337333pt;}
.xef{left:197.037333pt;}
.x6b{left:198.248600pt;}
.x4b{left:199.608000pt;}
.xc8{left:201.244000pt;}
.x24{left:202.234667pt;}
.x8a{left:204.194667pt;}
.xbc{left:207.721333pt;}
.x75{left:210.887400pt;}
.x74{left:212.008000pt;}
.xe{left:213.716000pt;}
.x101{left:214.701333pt;}
.xf{left:220.357333pt;}
.x4e{left:222.488000pt;}
.x122{left:223.704000pt;}
.x5c{left:225.137591pt;}
.xf0{left:226.858667pt;}
.x10d{left:227.921333pt;}
.x78{left:232.096000pt;}
.xdd{left:233.718667pt;}
.x9f{left:237.186667pt;}
.x51{left:238.177333pt;}
.x3f{left:242.373333pt;}
.x111{left:243.566667pt;}
.x79{left:245.380000pt;}
.xa{left:246.941333pt;}
.xa0{left:250.469333pt;}
.xb1{left:252.024000pt;}
.xb{left:253.582667pt;}
.x4d{left:256.408000pt;}
.xb2{left:258.665333pt;}
.x10{left:260.725333pt;}
.xf4{left:262.366667pt;}
.xd9{left:264.270667pt;}
.x90{left:266.077333pt;}
.x11{left:267.248000pt;}
.x4c{left:269.768000pt;}
.x118{left:270.996000pt;}
.x12{left:273.889333pt;}
.xda{left:280.921333pt;}
.x91{left:282.748000pt;}
.x2d{left:288.393333pt;}
.xbd{left:290.836000pt;}
.x11a{left:292.144000pt;}
.x10c{left:295.614867pt;}
.x69{left:297.207400pt;}
.x11b{left:298.121333pt;}
.x84{left:299.301333pt;}
.x2e{left:301.676000pt;}
.x41{left:305.288000pt;}
.x2f{left:308.450667pt;}
.x85{left:312.584000pt;}
.x53{left:314.737333pt;}
.x3d{left:317.656000pt;}
.x30{left:321.734667pt;}
.xaa{left:327.313333pt;}
.x6e{left:328.968000pt;}
.x3e{left:330.938667pt;}
.x6a{left:333.366900pt;}
.xf8{left:334.317333pt;}
.x6d{left:336.488000pt;}
.xe7{left:337.889333pt;}
.xbf{left:339.924000pt;}
.x6f{left:341.128200pt;}
.x11d{left:342.034667pt;}
.x2b{left:343.457333pt;}
.x31{left:344.868000pt;}
.xc0{left:346.566667pt;}
.xaf{left:349.800000pt;}
.xf5{left:352.549333pt;}
.xd0{left:354.630667pt;}
.x2c{left:356.741333pt;}
.x32{left:358.150667pt;}
.xab{left:359.457333pt;}
.xb0{left:363.084000pt;}
.x72{left:365.928000pt;}
.xd1{left:367.914667pt;}
.x60{left:371.774667pt;}
.xac{left:372.741333pt;}
.x98{left:375.530667pt;}
.x36{left:379.905333pt;}
.x33{left:380.936000pt;}
.x73{left:381.928400pt;}
.x61{left:385.057333pt;}
.x99{left:388.814667pt;}
.xfa{left:391.038667pt;}
.x7f{left:392.221333pt;}
.x37{left:393.189333pt;}
.x1f{left:394.660000pt;}
.x7c{left:395.770667pt;}
.x1b{left:397.640000pt;}
.x7d{left:399.034667pt;}
.x7a{left:401.440000pt;}
.x80{left:405.505333pt;}
.x20{left:407.942667pt;}
.x1c{left:410.924000pt;}
.x7e{left:412.318667pt;}
.x7b{left:414.724000pt;}
.x9a{left:415.900000pt;}
.x1d{left:417.698667pt;}
.xb5{left:419.097333pt;}
.x63{left:420.296000pt;}
.x112{left:421.280000pt;}
.x86{left:423.773333pt;}
.xd4{left:425.650667pt;}
.x113{left:427.006667pt;}
.x9b{left:429.184000pt;}
.x1e{left:430.982667pt;}
.x64{left:433.580000pt;}
.xe8{left:435.781333pt;}
.xd5{left:438.934667pt;}
.xdf{left:440.546667pt;}
.xc4{left:444.693333pt;}
.xe9{left:445.810667pt;}
.xcd{left:447.120000pt;}
.xea{left:449.197333pt;}
.x25{left:450.406667pt;}
.xd2{left:451.370667pt;}
.xce{left:453.761333pt;}
.x26{left:457.048000pt;}
.xc5{left:457.977333pt;}
.x27{left:460.302667pt;}
.xc6{left:461.288000pt;}
.xeb{left:462.481333pt;}
.xd3{left:464.653333pt;}
.xec{left:465.868000pt;}
.xb3{left:471.537333pt;}
.x28{left:473.586667pt;}
.xc7{left:474.570667pt;}
.x29{left:476.841333pt;}
.xd8{left:478.069333pt;}
.xed{left:479.152000pt;}
.xb4{left:484.821333pt;}
.xa6{left:486.713333pt;}
.x2a{left:490.124000pt;}
.xc9{left:491.778667pt;}
.xf2{left:492.990667pt;}
.xfb{left:497.138667pt;}
.x76{left:499.048000pt;}
.xa7{left:499.996000pt;}
.xca{left:505.061333pt;}
.xc{left:511.182667pt;}
.xf3{left:512.916000pt;}
.xd{left:517.824000pt;}
.xf7{left:519.502667pt;}
.xf1{left:523.541333pt;}
.x34{left:527.417333pt;}
.x5f{left:530.824000pt;}
.xa1{left:533.008000pt;}
.xb6{left:537.333333pt;}
.x35{left:540.701333pt;}
.x19{left:542.849333pt;}
.xb7{left:543.974667pt;}
.x38{left:546.500000pt;}
.xa4{left:547.890667pt;}
.xa2{left:549.546667pt;}
.xcc{left:553.077333pt;}
.x1a{left:556.132000pt;}
.x13{left:557.216000pt;}
.x39{left:559.782667pt;}
.xa5{left:561.174667pt;}
.xa3{left:562.829333pt;}
.x14{left:563.857333pt;}
.x121{left:565.937333pt;}
.xcf{left:569.398667pt;}
.x94{left:570.890667pt;}
.xf9{left:573.745333pt;}
.xff{left:574.886667pt;}
.x3a{left:576.437333pt;}
.xde{left:582.048000pt;}
.x3b{left:583.178667pt;}
.x95{left:584.174667pt;}
.x96{left:587.561333pt;}
.xd6{left:589.564000pt;}
.x104{left:590.843333pt;}
.x102{left:593.657333pt;}
.x100{left:594.812000pt;}
.x3c{left:596.462667pt;}
.xbe{left:597.892000pt;}
.x97{left:600.845333pt;}
.xcb{left:603.570667pt;}
.xad{left:604.922667pt;}
.xe4{left:607.122667pt;}
.xee{left:609.897333pt;}
.xe1{left:610.988000pt;}
.xa8{left:612.412000pt;}
.xe0{left:614.032000pt;}
.x119{left:615.633333pt;}
.xe5{left:617.152000pt;}
.xae{left:618.205333pt;}
.x103{left:620.568000pt;}
.x5{left:623.413317pt;}
.xa9{left:625.694667pt;}
.x8b{left:629.425333pt;}
.xe6{left:630.436000pt;}
.x11e{left:631.568000pt;}
.x8c{left:636.066667pt;}
.x116{left:638.232000pt;}
.x8d{left:639.453333pt;}
.x115{left:641.616000pt;}
.xfc{left:644.206667pt;}
.x10e{left:646.514667pt;}
.x114{left:648.266667pt;}
.x11f{left:649.988000pt;}
.x8e{left:652.737333pt;}
.x8f{left:656.125333pt;}
.xe2{left:659.954667pt;}
.xfd{left:664.130667pt;}
.x117{left:665.254667pt;}
.xe3{left:666.464000pt;}
.xfe{left:667.389333pt;}
.x15{left:668.865333pt;}
.x10f{left:670.425333pt;}
.x120{left:671.540000pt;}
.x5e{left:672.896000pt;}
.x82{left:674.034667pt;}
.x16{left:675.508000pt;}
.x17{left:678.858667pt;}
.x18{left:685.500000pt;}
.x62{left:686.389333pt;}
.x83{left:687.318667pt;}
.x110{left:690.150667pt;}
}




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