
    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_b90dacc8bf054e8f883999fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_240ce14f96f7af2f8484b4b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.887000;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_9bdc0e492892e873d462973e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707000;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_e94c3e633a1c310e566ff308.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973000;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_4ed9cfeecb0295bf20a69fa3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973000;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_00bb3f50fb06d116a37e36da.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_2f97bcca6cf920f23ef42213.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;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_d53a6c3f1169154fb7051664.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973000;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_4903e232dc165e3acc730915.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.864000;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_104a9ffaad415cc8f995b85a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973000;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_023e5020ebb5446230468355.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973000;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_37b170a4fc771069fa599965.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.887000;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_08d94c70eb2d82ddc4ae0a49.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.955000;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_2f97bcca6cf920f23ef42213.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973000;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_bb0eb9ed9481d2ad4d57ac5a.woff2')format("woff");}.fff{font-family:fff;line-height:0.887000;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_2f97bcca6cf920f23ef42213.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.973000;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_e820684ba2e787f94b4aa775.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.887000;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_2f97bcca6cf920f23ef42213.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973000;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_b3d21b77639ac24bc265314c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.887000;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_9b843a434c062d9ca47381a3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.973000;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_37b170a4fc771069fa599965.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.887000;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_2f97bcca6cf920f23ef42213.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.973000;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_43f5b4d815dd217bfaa1e3b5.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.887000;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_2f97bcca6cf920f23ef42213.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.973000;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_edaaefe0392901f8a156042f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.887000;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_2f97bcca6cf920f23ef42213.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.973000;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_edff2b6928104a07ae1438d5.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.887000;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_fced237d72ad2a38a5a1ba8c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.973000;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_1fd63a1e71c7c1d470199d37.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.887000;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_2f97bcca6cf920f23ef42213.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.973000;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_2f97bcca6cf920f23ef42213.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.973000;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_3f7f179ae8c65c111ef9fecf.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.887000;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_5e6da19f02844c51b5c9d2ca.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.973000;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_84972761694410d290f06295.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.887000;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_f022cb9331786f9e9543b0cd.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.970000;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_6d6ab2bd639753b364549c0d.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.973000;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_edaaefe0392901f8a156042f.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.887000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.vc{vertical-align:-51.024000px;}
.v7{vertical-align:-23.976000px;}
.v4{vertical-align:-19.980000px;}
.v5{vertical-align:-13.986000px;}
.v9{vertical-align:-8.136000px;}
.v3{vertical-align:-2.124000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.124000px;}
.vb{vertical-align:6.408000px;}
.ve{vertical-align:7.488000px;}
.v8{vertical-align:15.995400px;}
.va{vertical-align:20.232000px;}
.v11{vertical-align:22.500000px;}
.v2{vertical-align:23.976000px;}
.vf{vertical-align:27.000000px;}
.v10{vertical-align:31.500000px;}
.v6{vertical-align:36.000000px;}
.vd{vertical-align:51.023400px;}
.ls4d{letter-spacing:-9.600000px;}
.ls53{letter-spacing:-8.640000px;}
.ls1d{letter-spacing:-5.238000px;}
.ls38{letter-spacing:-4.752000px;}
.ls6{letter-spacing:-4.656000px;}
.ls34{letter-spacing:-4.074000px;}
.ls3e{letter-spacing:-3.504000px;}
.ls47{letter-spacing:-2.952000px;}
.ls42{letter-spacing:-2.448000px;}
.ls51{letter-spacing:-2.160000px;}
.ls48{letter-spacing:-2.016000px;}
.ls26{letter-spacing:-1.638000px;}
.ls2d{letter-spacing:-1.536000px;}
.ls39{letter-spacing:-1.476000px;}
.ls13{letter-spacing:-1.350000px;}
.ls49{letter-spacing:-1.344000px;}
.ls37{letter-spacing:-1.248000px;}
.ls17{letter-spacing:-1.224000px;}
.ls2c{letter-spacing:-1.200000px;}
.ls40{letter-spacing:-1.140000px;}
.ls45{letter-spacing:-1.134000px;}
.ls43{letter-spacing:-1.080000px;}
.ls23{letter-spacing:-1.050000px;}
.ls11{letter-spacing:-1.026000px;}
.ls46{letter-spacing:-0.972000px;}
.ls20{letter-spacing:-0.960000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls27{letter-spacing:-0.882000px;}
.ls2{letter-spacing:-0.864000px;}
.ls36{letter-spacing:-0.792000px;}
.ls3f{letter-spacing:-0.780000px;}
.ls2a{letter-spacing:-0.772867px;}
.ls7{letter-spacing:-0.768000px;}
.ls19{letter-spacing:-0.730790px;}
.ls16{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.672000px;}
.ls4f{letter-spacing:-0.660000px;}
.lsf{letter-spacing:-0.648000px;}
.ls2e{letter-spacing:-0.624000px;}
.lsb{letter-spacing:-0.600000px;}
.ls1a{letter-spacing:-0.593767px;}
.ls2b{letter-spacing:-0.579650px;}
.ls31{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.548093px;}
.ls41{letter-spacing:-0.546000px;}
.ls50{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.480000px;}
.ls1{letter-spacing:-0.432000px;}
.ls4b{letter-spacing:-0.420000px;}
.ls2f{letter-spacing:-0.384000px;}
.ls4{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.336000px;}
.ls3{letter-spacing:-0.324000px;}
.ls18{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.288000px;}
.ls4e{letter-spacing:-0.240000px;}
.ls14{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.168000px;}
.ls12{letter-spacing:-0.162000px;}
.ls3d{letter-spacing:-0.144000px;}
.ls29{letter-spacing:-0.126000px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.000480px;}
.ls9{letter-spacing:0.000720px;}
.lse{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.144000px;}
.ls44{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.210000px;}
.ls33{letter-spacing:0.240000px;}
.ls22{letter-spacing:0.252000px;}
.ls1c{letter-spacing:0.270000px;}
.ls32{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.324000px;}
.lsd{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.540000px;}
.ls35{letter-spacing:0.720000px;}
.ls52{letter-spacing:1.140000px;}
.ls8{letter-spacing:1.200000px;}
.ls4c{letter-spacing:1.380000px;}
.ls4a{letter-spacing:1.800000px;}
.ls5{letter-spacing:7.018200px;}
.ls3b{letter-spacing:7.419000px;}
.ls3c{letter-spacing:7.651800px;}
.ls3a{letter-spacing:18.945600px;}
.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;}
}
.ws16c{word-spacing:-31.384800px;}
.ws2{word-spacing:-19.068000px;}
.ws10e{word-spacing:-17.064000px;}
.ws6b{word-spacing:-16.704000px;}
.ws28{word-spacing:-16.488000px;}
.ws6c{word-spacing:-16.416000px;}
.ws4{word-spacing:-16.344000px;}
.ws27{word-spacing:-16.128000px;}
.ws7a{word-spacing:-16.056000px;}
.ws3{word-spacing:-15.912000px;}
.ws18d{word-spacing:-15.768000px;}
.wsbd{word-spacing:-15.696000px;}
.ws7b{word-spacing:-15.624000px;}
.ws10d{word-spacing:-15.552000px;}
.ws1a8{word-spacing:-15.420000px;}
.ws1e8{word-spacing:-14.760000px;}
.ws18e{word-spacing:-14.328000px;}
.ws56{word-spacing:-14.280000px;}
.ws16d{word-spacing:-13.896000px;}
.ws1bb{word-spacing:-13.740000px;}
.wsfc{word-spacing:-13.620000px;}
.ws1aa{word-spacing:-13.500000px;}
.ws92{word-spacing:-13.440000px;}
.ws1b9{word-spacing:-13.380000px;}
.wscd{word-spacing:-13.260000px;}
.ws1e7{word-spacing:-13.140000px;}
.ws1bc{word-spacing:-13.080000px;}
.wsfd{word-spacing:-13.020000px;}
.ws1ba{word-spacing:-12.960000px;}
.ws1a9{word-spacing:-12.840000px;}
.ws159{word-spacing:-12.600000px;}
.ws6e{word-spacing:-12.582000px;}
.ws1e6{word-spacing:-12.540000px;}
.ws182{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.258000px;}
.ws6f{word-spacing:-12.096000px;}
.ws70{word-spacing:-12.042000px;}
.ws7{word-spacing:-11.934000px;}
.ws17d{word-spacing:-11.718000px;}
.ws6d{word-spacing:-11.610000px;}
.ws1bd{word-spacing:-11.580000px;}
.ws5{word-spacing:-11.440800px;}
.ws17e{word-spacing:-11.232000px;}
.wsf0{word-spacing:-11.136000px;}
.ws183{word-spacing:-11.124000px;}
.wsee{word-spacing:-11.040000px;}
.wse2{word-spacing:-10.965053px;}
.ws44{word-spacing:-10.896000px;}
.ws142{word-spacing:-10.752000px;}
.wsce{word-spacing:-10.608000px;}
.wsed{word-spacing:-10.512000px;}
.wse1{word-spacing:-10.482011px;}
.ws124{word-spacing:-10.464000px;}
.wsef{word-spacing:-10.320000px;}
.wsec{word-spacing:-10.272000px;}
.ws94{word-spacing:-9.911345px;}
.ws96{word-spacing:-9.819996px;}
.wsd0{word-spacing:-9.786000px;}
.ws58{word-spacing:-9.744000px;}
.wse0{word-spacing:-9.709144px;}
.ws122{word-spacing:-9.648000px;}
.ws57{word-spacing:-9.618000px;}
.ws18f{word-spacing:-9.552000px;}
.wsd2{word-spacing:-9.534000px;}
.wsd7{word-spacing:-9.408000px;}
.wsd6{word-spacing:-9.366000px;}
.wseb{word-spacing:-9.360000px;}
.ws13a{word-spacing:-9.216000px;}
.ws95{word-spacing:-9.180554px;}
.ws15a{word-spacing:-8.988000px;}
.ws139{word-spacing:-8.928000px;}
.wsd3{word-spacing:-8.862000px;}
.wsd5{word-spacing:-8.652000px;}
.wsd1{word-spacing:-8.484000px;}
.ws147{word-spacing:-8.424000px;}
.ws150{word-spacing:-8.352000px;}
.ws14f{word-spacing:-8.136000px;}
.wsd4{word-spacing:-7.896000px;}
.wsc5{word-spacing:-7.704000px;}
.ws13c{word-spacing:-7.488000px;}
.ws143{word-spacing:-7.392000px;}
.wsc8{word-spacing:-7.344000px;}
.ws83{word-spacing:-7.272000px;}
.ws82{word-spacing:-7.128000px;}
.ws116{word-spacing:-7.056000px;}
.ws199{word-spacing:-6.912000px;}
.wse9{word-spacing:-6.696000px;}
.ws5b{word-spacing:-6.624000px;}
.ws1a3{word-spacing:-6.264000px;}
.ws123{word-spacing:-6.144000px;}
.ws12{word-spacing:-6.120000px;}
.ws7f{word-spacing:-5.976000px;}
.ws77{word-spacing:-5.508000px;}
.ws151{word-spacing:-5.328000px;}
.wsbe{word-spacing:-5.256000px;}
.ws9{word-spacing:-5.184000px;}
.ws15{word-spacing:-5.112000px;}
.ws140{word-spacing:-4.896000px;}
.wsdc{word-spacing:-4.824000px;}
.ws49{word-spacing:-4.680000px;}
.ws89{word-spacing:-4.608000px;}
.ws15e{word-spacing:-4.536000px;}
.ws13d{word-spacing:-4.464000px;}
.ws166{word-spacing:-4.392000px;}
.ws157{word-spacing:-4.248000px;}
.ws1bf{word-spacing:-4.200000px;}
.wsd8{word-spacing:-4.176000px;}
.ws1be{word-spacing:-4.140000px;}
.ws53{word-spacing:-4.104000px;}
.ws19b{word-spacing:-3.960000px;}
.ws23{word-spacing:-3.942000px;}
.wsab{word-spacing:-3.816000px;}
.ws1a2{word-spacing:-3.744000px;}
.ws138{word-spacing:-3.672000px;}
.ws8f{word-spacing:-3.528000px;}
.ws87{word-spacing:-3.384000px;}
.wsa6{word-spacing:-3.312000px;}
.ws19e{word-spacing:-3.240000px;}
.wsf3{word-spacing:-3.096000px;}
.ws162{word-spacing:-3.024000px;}
.ws6a{word-spacing:-2.976000px;}
.ws7c{word-spacing:-2.952000px;}
.wsaa{word-spacing:-2.880000px;}
.ws15d{word-spacing:-2.808000px;}
.ws13{word-spacing:-2.736000px;}
.ws103{word-spacing:-2.664000px;}
.ws5d{word-spacing:-2.592000px;}
.wsf2{word-spacing:-2.520000px;}
.ws5e{word-spacing:-2.448000px;}
.wsa5{word-spacing:-2.376000px;}
.ws131{word-spacing:-2.352000px;}
.ws2f{word-spacing:-2.304000px;}
.wsc1{word-spacing:-2.232000px;}
.ws8a{word-spacing:-2.160000px;}
.ws121{word-spacing:-2.112000px;}
.ws67{word-spacing:-2.088000px;}
.wsb6{word-spacing:-2.016000px;}
.ws1dd{word-spacing:-1.980000px;}
.ws135{word-spacing:-1.944000px;}
.ws35{word-spacing:-1.872000px;}
.ws1d1{word-spacing:-1.860000px;}
.ws18b{word-spacing:-1.824000px;}
.ws172{word-spacing:-1.800000px;}
.ws104{word-spacing:-1.728000px;}
.ws8d{word-spacing:-1.656000px;}
.ws189{word-spacing:-1.584000px;}
.wsf6{word-spacing:-1.512000px;}
.wsad{word-spacing:-1.368000px;}
.ws64{word-spacing:-1.296000px;}
.ws109{word-spacing:-1.224000px;}
.ws1c0{word-spacing:-1.200000px;}
.wsa7{word-spacing:-1.152000px;}
.ws24{word-spacing:-1.134000px;}
.wsa{word-spacing:-1.080000px;}
.ws60{word-spacing:-1.008000px;}
.ws3a{word-spacing:-0.864000px;}
.ws25{word-spacing:-0.810000px;}
.ws5a{word-spacing:-0.792000px;}
.ws2c{word-spacing:-0.720000px;}
.ws126{word-spacing:-0.648000px;}
.ws1c{word-spacing:-0.576000px;}
.ws2e{word-spacing:-0.504000px;}
.wsc4{word-spacing:-0.432000px;}
.ws1b8{word-spacing:-0.420000px;}
.ws43{word-spacing:-0.324000px;}
.ws68{word-spacing:-0.288000px;}
.wsbc{word-spacing:-0.270000px;}
.ws8{word-spacing:-0.216000px;}
.ws168{word-spacing:-0.180000px;}
.ws14{word-spacing:-0.144000px;}
.ws169{word-spacing:-0.096000px;}
.ws3c{word-spacing:-0.072000px;}
.ws26{word-spacing:-0.048000px;}
.ws15b{word-spacing:-0.042000px;}
.wsf1{word-spacing:-0.036000px;}
.ws0{word-spacing:0.000000px;}
.ws1de{word-spacing:0.060000px;}
.ws16e{word-spacing:0.072000px;}
.ws81{word-spacing:0.144000px;}
.ws11f{word-spacing:0.216000px;}
.ws1c2{word-spacing:0.240000px;}
.ws177{word-spacing:0.270000px;}
.ws115{word-spacing:0.288000px;}
.wsdf{word-spacing:0.336000px;}
.wscb{word-spacing:0.378000px;}
.ws1ac{word-spacing:0.420000px;}
.wsdd{word-spacing:0.432000px;}
.wsf7{word-spacing:0.504000px;}
.ws1ea{word-spacing:0.540000px;}
.ws21{word-spacing:0.576000px;}
.wsea{word-spacing:0.579650px;}
.wsa0{word-spacing:0.593767px;}
.ws69{word-spacing:0.600000px;}
.ws16a{word-spacing:0.624000px;}
.ws4d{word-spacing:0.648000px;}
.ws1d2{word-spacing:0.660000px;}
.ws10b{word-spacing:0.672000px;}
.ws1d3{word-spacing:0.720000px;}
.ws55{word-spacing:0.768000px;}
.ws158{word-spacing:0.780000px;}
.wse8{word-spacing:0.792000px;}
.ws1f{word-spacing:0.864000px;}
.ws30{word-spacing:0.936000px;}
.wsde{word-spacing:0.960000px;}
.ws18c{word-spacing:0.972000px;}
.ws78{word-spacing:1.026000px;}
.wsac{word-spacing:1.080000px;}
.ws173{word-spacing:1.152000px;}
.wsfb{word-spacing:1.200000px;}
.ws18a{word-spacing:1.224000px;}
.ws188{word-spacing:1.296000px;}
.ws79{word-spacing:1.350000px;}
.ws152{word-spacing:1.368000px;}
.ws1a5{word-spacing:1.404000px;}
.ws125{word-spacing:1.440000px;}
.ws38{word-spacing:1.512000px;}
.ws17a{word-spacing:1.620000px;}
.ws1e{word-spacing:1.656000px;}
.ws7d{word-spacing:1.728000px;}
.ws5f{word-spacing:1.800000px;}
.ws178{word-spacing:1.836000px;}
.wsda{word-spacing:1.872000px;}
.ws8e{word-spacing:1.944000px;}
.ws47{word-spacing:2.016000px;}
.ws62{word-spacing:2.088000px;}
.ws16b{word-spacing:2.112000px;}
.ws16{word-spacing:2.160000px;}
.ws1c3{word-spacing:2.220000px;}
.ws73{word-spacing:2.232000px;}
.ws144{word-spacing:2.304000px;}
.ws12a{word-spacing:2.376000px;}
.ws129{word-spacing:2.448000px;}
.ws133{word-spacing:2.520000px;}
.ws108{word-spacing:2.592000px;}
.ws1d7{word-spacing:2.640000px;}
.ws12b{word-spacing:2.664000px;}
.wse{word-spacing:2.736000px;}
.ws3b{word-spacing:2.808000px;}
.ws1c4{word-spacing:2.820000px;}
.wsfa{word-spacing:2.880000px;}
.ws153{word-spacing:2.952000px;}
.ws42{word-spacing:2.970000px;}
.ws4b{word-spacing:3.024000px;}
.ws4f{word-spacing:3.096000px;}
.ws1cd{word-spacing:3.120000px;}
.ws105{word-spacing:3.168000px;}
.ws1c5{word-spacing:3.180000px;}
.ws2d{word-spacing:3.240000px;}
.ws8b{word-spacing:3.312000px;}
.wsc9{word-spacing:3.384000px;}
.ws51{word-spacing:3.456000px;}
.ws1d5{word-spacing:3.480000px;}
.ws29{word-spacing:3.528000px;}
.ws1d{word-spacing:3.600000px;}
.ws61{word-spacing:3.672000px;}
.ws1d6{word-spacing:3.720000px;}
.ws15c{word-spacing:3.744000px;}
.wsb3{word-spacing:3.816000px;}
.ws36{word-spacing:3.888000px;}
.ws90{word-spacing:3.960000px;}
.ws1b2{word-spacing:4.020000px;}
.ws39{word-spacing:4.032000px;}
.ws1d8{word-spacing:4.080000px;}
.wsa2{word-spacing:4.104000px;}
.ws1d9{word-spacing:4.140000px;}
.ws97{word-spacing:4.176000px;}
.ws9b{word-spacing:4.248000px;}
.ws17b{word-spacing:4.266000px;}
.ws161{word-spacing:4.320000px;}
.wsf{word-spacing:4.392000px;}
.ws80{word-spacing:4.464000px;}
.ws106{word-spacing:4.536000px;}
.ws10{word-spacing:4.608000px;}
.wsa3{word-spacing:4.680000px;}
.wsf5{word-spacing:4.752000px;}
.ws5c{word-spacing:4.824000px;}
.wsc6{word-spacing:4.896000px;}
.ws40{word-spacing:4.968000px;}
.ws1df{word-spacing:4.980000px;}
.ws175{word-spacing:5.022000px;}
.wsb0{word-spacing:5.040000px;}
.wsa4{word-spacing:5.112000px;}
.ws3f{word-spacing:5.184000px;}
.ws48{word-spacing:5.256000px;}
.ws63{word-spacing:5.328000px;}
.ws1e9{word-spacing:5.340000px;}
.ws19f{word-spacing:5.400000px;}
.ws14d{word-spacing:5.472000px;}
.ws66{word-spacing:5.544000px;}
.ws179{word-spacing:5.562000px;}
.ws4c{word-spacing:5.616000px;}
.ws1b1{word-spacing:5.640000px;}
.wsb2{word-spacing:5.688000px;}
.ws54{word-spacing:5.808000px;}
.ws11e{word-spacing:5.832000px;}
.wsdb{word-spacing:5.904000px;}
.ws4e{word-spacing:5.976000px;}
.ws1dc{word-spacing:6.000000px;}
.ws102{word-spacing:6.048000px;}
.ws1b0{word-spacing:6.120000px;}
.ws101{word-spacing:6.192000px;}
.ws22{word-spacing:6.264000px;}
.wsbf{word-spacing:6.336000px;}
.ws17{word-spacing:6.408000px;}
.wsd9{word-spacing:6.480000px;}
.ws2a{word-spacing:6.552000px;}
.ws2b{word-spacing:6.624000px;}
.wse5{word-spacing:6.696000px;}
.ws1b{word-spacing:6.912000px;}
.ws4a{word-spacing:6.984000px;}
.ws154{word-spacing:7.056000px;}
.wsc0{word-spacing:7.128000px;}
.ws11d{word-spacing:7.200000px;}
.ws1ec{word-spacing:7.236000px;}
.ws19d{word-spacing:7.248000px;}
.ws99{word-spacing:7.344000px;}
.ws1e5{word-spacing:7.380000px;}
.ws7e{word-spacing:7.416000px;}
.wsc2{word-spacing:7.488000px;}
.ws132{word-spacing:7.560000px;}
.ws110{word-spacing:7.632000px;}
.ws118{word-spacing:7.704000px;}
.ws111{word-spacing:7.776000px;}
.wse4{word-spacing:7.848000px;}
.ws1c1{word-spacing:7.980000px;}
.ws145{word-spacing:7.992000px;}
.ws1e4{word-spacing:8.040000px;}
.wsf9{word-spacing:8.064000px;}
.ws41{word-spacing:8.100000px;}
.ws134{word-spacing:8.136000px;}
.ws128{word-spacing:8.280000px;}
.ws176{word-spacing:8.370000px;}
.wse7{word-spacing:8.424000px;}
.ws130{word-spacing:8.496000px;}
.ws3e{word-spacing:8.568000px;}
.ws31{word-spacing:8.640000px;}
.wsb{word-spacing:8.784000px;}
.ws71{word-spacing:8.928000px;}
.ws1ae{word-spacing:8.940000px;}
.ws1a4{word-spacing:9.000000px;}
.ws1af{word-spacing:9.060000px;}
.ws13e{word-spacing:9.072000px;}
.ws174{word-spacing:9.144000px;}
.ws1c8{word-spacing:9.180000px;}
.ws156{word-spacing:9.288000px;}
.ws34{word-spacing:9.360000px;}
.wsa8{word-spacing:9.432000px;}
.ws120{word-spacing:9.504000px;}
.ws1b5{word-spacing:9.600000px;}
.ws1c9{word-spacing:9.660000px;}
.ws18{word-spacing:9.720000px;}
.ws14e{word-spacing:9.792000px;}
.ws52{word-spacing:9.864000px;}
.ws9c{word-spacing:9.936000px;}
.ws165{word-spacing:10.008000px;}
.ws75{word-spacing:10.080000px;}
.ws37{word-spacing:10.152000px;}
.ws148{word-spacing:10.224000px;}
.ws11a{word-spacing:10.368000px;}
.ws32{word-spacing:10.440000px;}
.ws85{word-spacing:10.512000px;}
.ws1db{word-spacing:10.560000px;}
.ws141{word-spacing:10.584000px;}
.ws50{word-spacing:10.800000px;}
.wsf4{word-spacing:10.872000px;}
.ws19c{word-spacing:10.944000px;}
.ws11{word-spacing:11.016000px;}
.ws33{word-spacing:11.088000px;}
.ws10a{word-spacing:11.160000px;}
.wsb1{word-spacing:11.232000px;}
.ws1ce{word-spacing:11.340000px;}
.ws86{word-spacing:11.448000px;}
.ws13f{word-spacing:11.520000px;}
.ws100{word-spacing:11.736000px;}
.wsc7{word-spacing:11.808000px;}
.ws1a6{word-spacing:11.880000px;}
.ws84{word-spacing:11.952000px;}
.ws196{word-spacing:12.096000px;}
.ws1a0{word-spacing:12.168000px;}
.ws1da{word-spacing:12.180000px;}
.ws20{word-spacing:12.312000px;}
.wsae{word-spacing:12.384000px;}
.ws197{word-spacing:12.456000px;}
.ws16f{word-spacing:12.528000px;}
.ws88{word-spacing:12.672000px;}
.ws146{word-spacing:12.744000px;}
.ws1eb{word-spacing:12.852000px;}
.ws163{word-spacing:12.960000px;}
.ws13b{word-spacing:13.248000px;}
.ws149{word-spacing:13.392000px;}
.ws1b6{word-spacing:13.800000px;}
.ws1b7{word-spacing:13.920000px;}
.ws1ad{word-spacing:13.980000px;}
.ws107{word-spacing:14.040000px;}
.ws9f{word-spacing:14.112000px;}
.ws155{word-spacing:14.184000px;}
.wsc3{word-spacing:14.256000px;}
.ws1b4{word-spacing:14.460000px;}
.ws12d{word-spacing:14.472000px;}
.ws8c{word-spacing:14.544000px;}
.ws74{word-spacing:14.616000px;}
.ws1c6{word-spacing:14.820000px;}
.ws1c7{word-spacing:14.940000px;}
.ws76{word-spacing:15.048000px;}
.wscc{word-spacing:15.066000px;}
.ws1b3{word-spacing:15.180000px;}
.ws65{word-spacing:15.336000px;}
.ws9e{word-spacing:15.408000px;}
.wsb4{word-spacing:15.480000px;}
.wsa1{word-spacing:15.624000px;}
.ws9a{word-spacing:16.056000px;}
.ws14a{word-spacing:16.128000px;}
.ws119{word-spacing:16.272000px;}
.wsc{word-spacing:16.560000px;}
.ws1cf{word-spacing:16.680000px;}
.ws171{word-spacing:16.848000px;}
.ws1d0{word-spacing:16.860000px;}
.wsaf{word-spacing:16.920000px;}
.ws19a{word-spacing:17.136000px;}
.ws160{word-spacing:17.280000px;}
.ws127{word-spacing:17.496000px;}
.ws1a1{word-spacing:17.568000px;}
.ws1e2{word-spacing:17.580000px;}
.ws1e3{word-spacing:17.700000px;}
.ws19{word-spacing:17.784000px;}
.ws1d4{word-spacing:17.880000px;}
.ws117{word-spacing:18.000000px;}
.ws1e1{word-spacing:18.300000px;}
.wsa9{word-spacing:18.432000px;}
.ws1e0{word-spacing:18.480000px;}
.ws59{word-spacing:18.576000px;}
.ws112{word-spacing:19.080000px;}
.ws12e{word-spacing:19.296000px;}
.wsf8{word-spacing:19.440000px;}
.ws1a{word-spacing:19.512000px;}
.ws113{word-spacing:19.656000px;}
.ws12f{word-spacing:19.800000px;}
.wsd{word-spacing:19.944000px;}
.wse6{word-spacing:20.376000px;}
.ws72{word-spacing:21.816000px;}
.ws98{word-spacing:22.752000px;}
.ws1cc{word-spacing:23.700000px;}
.ws1cb{word-spacing:23.880000px;}
.ws1ca{word-spacing:24.300000px;}
.ws14b{word-spacing:24.384000px;}
.ws1a7{word-spacing:24.696000px;}
.ws15f{word-spacing:25.200000px;}
.ws136{word-spacing:25.992000px;}
.ws3d{word-spacing:26.928000px;}
.ws190{word-spacing:27.600000px;}
.ws198{word-spacing:28.224000px;}
.ws164{word-spacing:28.872000px;}
.wsb5{word-spacing:31.248000px;}
.ws194{word-spacing:32.004000px;}
.ws9d{word-spacing:32.112000px;}
.ws191{word-spacing:32.724000px;}
.ws170{word-spacing:33.264000px;}
.ws195{word-spacing:34.992000px;}
.ws193{word-spacing:35.352000px;}
.ws137{word-spacing:35.568000px;}
.ws192{word-spacing:37.980000px;}
.wsca{word-spacing:41.958000px;}
.ws114{word-spacing:43.344000px;}
.ws167{word-spacing:46.152000px;}
.ws1{word-spacing:67.983000px;}
.ws91{word-spacing:67.983600px;}
.ws10c{word-spacing:67.984200px;}
.ws185{word-spacing:69.811800px;}
.ws1ab{word-spacing:80.388000px;}
.ws17f{word-spacing:83.052600px;}
.ws186{word-spacing:86.670600px;}
.wse3{word-spacing:88.879800px;}
.ws181{word-spacing:90.072600px;}
.ws187{word-spacing:93.852000px;}
.ws180{word-spacing:99.684000px;}
.ws45{word-spacing:110.208000px;}
.ws46{word-spacing:221.184000px;}
.wsbb{word-spacing:252.137400px;}
.ws184{word-spacing:263.413800px;}
.wsb8{word-spacing:275.411400px;}
.wsb7{word-spacing:275.412000px;}
.wsb9{word-spacing:301.656000px;}
.ws14c{word-spacing:317.634000px;}
.wsfe{word-spacing:319.488600px;}
.ws11b{word-spacing:319.489200px;}
.wscf{word-spacing:518.016000px;}
.ws12c{word-spacing:553.356000px;}
.ws11c{word-spacing:553.968000px;}
.ws10f{word-spacing:556.632000px;}
.wsff{word-spacing:556.668000px;}
.ws17c{word-spacing:659.990400px;}
.ws93{word-spacing:907.917427px;}
.wsba{word-spacing:1531.440000px;}
._34{margin-left:-1826.400000px;}
._53{margin-left:-1268.112000px;}
._46{margin-left:-1239.312000px;}
._11{margin-left:-1158.528000px;}
._47{margin-left:-1072.560600px;}
._40{margin-left:-1051.632000px;}
._1c{margin-left:-778.766503px;}
._52{margin-left:-745.440000px;}
._12{margin-left:-732.000000px;}
._45{margin-left:-729.456000px;}
._38{margin-left:-708.120000px;}
._3b{margin-left:-691.968000px;}
._3f{margin-left:-612.000000px;}
._10{margin-left:-518.688000px;}
._42{margin-left:-404.316000px;}
._39{margin-left:-402.804000px;}
._3a{margin-left:-401.004000px;}
._50{margin-left:-222.816000px;}
._43{margin-left:-219.600000px;}
._33{margin-left:-41.167800px;}
._41{margin-left:-32.702400px;}
._6{margin-left:-25.248000px;}
._1d{margin-left:-22.041600px;}
._1a{margin-left:-19.300800px;}
._1b{margin-left:-16.228800px;}
._e{margin-left:-13.215600px;}
._c{margin-left:-11.275200px;}
._19{margin-left:-10.056000px;}
._16{margin-left:-9.000000px;}
._5{margin-left:-7.132800px;}
._4{margin-left:-5.464800px;}
._0{margin-left:-3.898800px;}
._7{margin-left:-2.880000px;}
._1{margin-left:-1.824000px;}
._2{width:1.228800px;}
._3{width:2.448000px;}
._13{width:4.080000px;}
._31{width:5.208000px;}
._b{width:7.440000px;}
._56{width:8.776800px;}
._57{width:9.844800px;}
._37{width:11.076600px;}
._55{width:12.726000px;}
._32{width:19.370400px;}
._35{width:23.947592px;}
._d{width:33.642000px;}
._48{width:36.773400px;}
._54{width:40.337400px;}
._8{width:41.742000px;}
._9{width:45.684000px;}
._15{width:48.672000px;}
._3e{width:52.704000px;}
._3d{width:56.172000px;}
._a{width:68.803800px;}
._49{width:80.206800px;}
._14{width:90.768000px;}
._1f{width:96.736800px;}
._4a{width:98.820000px;}
._4e{width:103.191000px;}
._36{width:104.506094px;}
._4d{width:108.431400px;}
._4c{width:111.942000px;}
._4f{width:115.236600px;}
._4b{width:121.554600px;}
._3c{width:214.881600px;}
._21{width:287.670000px;}
._2e{width:313.914000px;}
._f{width:334.368000px;}
._23{width:369.516000px;}
._18{width:386.618400px;}
._2d{width:408.514200px;}
._44{width:417.696000px;}
._51{width:430.464000px;}
._2c{width:447.360000px;}
._25{width:449.825400px;}
._17{width:509.392800px;}
._28{width:551.172000px;}
._2a{width:674.329200px;}
._30{width:795.426000px;}
._20{width:860.289000px;}
._29{width:867.798600px;}
._22{width:933.233400px;}
._1e{width:979.359600px;}
._24{width:1059.631200px;}
._2f{width:1077.967200px;}
._26{width:1263.359400px;}
._2b{width:1349.880000px;}
._27{width:1581.917400px;}
.fc4{color:rgb(128,129,131);}
.fc2{color:rgb(78,147,122);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(34,30,31);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:24.486000px;}
.fsd{font-size:27.984000px;}
.fs10{font-size:36.000000px;}
.fsa{font-size:42.000000px;}
.fsc{font-size:45.674400px;}
.fs4{font-size:48.000000px;}
.fse{font-size:48.304200px;}
.fs8{font-size:50.400000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fsf{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:120.000000px;}
.fs1{font-size:192.000000px;}
.fs0{font-size:228.000000px;}
.fs3{font-size:264.000000px;}
.y0{bottom:0.000000px;}
.y256{bottom:44.295300px;}
.y105{bottom:51.681600px;}
.y7d{bottom:53.026800px;}
.y6c{bottom:58.563150px;}
.y84{bottom:60.502800px;}
.y1fc{bottom:64.469400px;}
.y20a{bottom:64.470300px;}
.y100{bottom:77.952750px;}
.y83{bottom:81.058800px;}
.y76{bottom:82.411350px;}
.y128{bottom:82.700850px;}
.yb3{bottom:83.583300px;}
.y1eb{bottom:83.787450px;}
.y165{bottom:83.937600px;}
.y1f4{bottom:84.173850px;}
.y65{bottom:84.218400px;}
.y16e{bottom:84.537450px;}
.y202{bottom:84.661350px;}
.y2b{bottom:85.039350px;}
.y4e{bottom:85.039500px;}
.y7c{bottom:85.726800px;}
.y17d{bottom:85.821600px;}
.yac{bottom:85.886550px;}
.y27d{bottom:86.587500px;}
.y18c{bottom:86.884500px;}
.y1a9{bottom:88.039350px;}
.y1d5{bottom:88.470450px;}
.y1b2{bottom:88.789350px;}
.y253{bottom:91.039350px;}
.yc7{bottom:91.087500px;}
.y6b{bottom:91.119150px;}
.ye9{bottom:91.290000px;}
.y265{bottom:91.417350px;}
.y1fb{bottom:91.469400px;}
.y209{bottom:91.470300px;}
.y21b{bottom:93.259200px;}
.y2ab{bottom:93.268500px;}
.yff{bottom:95.952750px;}
.y75{bottom:97.411350px;}
.y1f3{bottom:99.173850px;}
.y64{bottom:99.218400px;}
.y16d{bottom:99.537450px;}
.y201{bottom:99.661350px;}
.y17c{bottom:100.821600px;}
.y82{bottom:101.614800px;}
.y18b{bottom:101.884500px;}
.y2a{bottom:103.039350px;}
.y4d{bottom:103.039500px;}
.y1d4{bottom:103.470450px;}
.y1b1{bottom:103.789350px;}
.y27c{bottom:104.587500px;}
.y173{bottom:104.969250px;}
.y182{bottom:104.969550px;}
.y252{bottom:106.039350px;}
.y21a{bottom:108.259200px;}
.y264{bottom:109.417350px;}
.y2aa{bottom:111.268500px;}
.yc6{bottom:113.587500px;}
.yab{bottom:114.622950px;}
.y168{bottom:116.023500px;}
.y1fa{bottom:118.171500px;}
.y7b{bottom:118.426800px;}
.y190{bottom:118.468950px;}
.y208{bottom:118.470300px;}
.y1da{bottom:118.471350px;}
.ye8{bottom:119.388750px;}
.y152{bottom:119.517000px;}
.y29{bottom:121.039350px;}
.y4c{bottom:121.039500px;}
.y1ee{bottom:121.153800px;}
.y81{bottom:122.170800px;}
.y66{bottom:122.302500px;}
.y27b{bottom:122.587500px;}
.y203{bottom:122.910000px;}
.y78{bottom:123.175500px;}
.y219{bottom:123.259200px;}
.ya7{bottom:123.622950px;}
.y6a{bottom:123.675150px;}
.y1fe{bottom:124.075050px;}
.y16f{bottom:127.659000px;}
.y22c{bottom:128.583300px;}
.y20c{bottom:128.814450px;}
.y17e{bottom:128.943000px;}
.y6e{bottom:129.049350px;}
.y2a9{bottom:129.268500px;}
.yee{bottom:129.543300px;}
.y1bd{bottom:129.783000px;}
.y87{bottom:129.923700px;}
.y18d{bottom:130.006500px;}
.y167{bottom:130.423500px;}
.y1d6{bottom:130.527000px;}
.y1ac{bottom:130.678650px;}
.y1b3{bottom:130.848000px;}
.yaa{bottom:132.622950px;}
.y176{bottom:133.563900px;}
.y185{bottom:134.846700px;}
.y1ed{bottom:135.553800px;}
.y1c7{bottom:135.688500px;}
.y193{bottom:135.911100px;}
.yb1{bottom:136.087500px;}
.yfe{bottom:136.264500px;}
.y1de{bottom:136.432500px;}
.y1b8{bottom:136.751400px;}
.y28{bottom:139.039350px;}
.y4b{bottom:139.039500px;}
.y27a{bottom:140.587500px;}
.ya6{bottom:141.622950px;}
.y255{bottom:142.090500px;}
.y86{bottom:142.607700px;}
.y80{bottom:142.714800px;}
.y7e{bottom:143.502300px;}
.y166{bottom:144.823500px;}
.y1ab{bottom:145.078650px;}
.y172{bottom:145.469250px;}
.y181{bottom:145.469550px;}
.y207{bottom:145.470300px;}
.y1d9{bottom:145.471350px;}
.yc4{bottom:145.737000px;}
.ye7{bottom:146.530500px;}
.y2a8{bottom:147.268500px;}
.yed{bottom:147.543300px;}
.y6d{bottom:148.333350px;}
.y254{bottom:148.838100px;}
.y1ec{bottom:149.953800px;}
.ya9{bottom:150.622950px;}
.y7a{bottom:151.126800px;}
.y69{bottom:156.219150px;}
.y263{bottom:156.406500px;}
.y27{bottom:157.039350px;}
.yb0{bottom:158.587500px;}
.yfd{bottom:158.764500px;}
.y1aa{bottom:159.478650px;}
.ya5{bottom:159.622950px;}
.yc3{bottom:160.418100px;}
.y24f{bottom:160.919550px;}
.y220{bottom:161.802900px;}
.y85{bottom:163.151700px;}
.y7f{bottom:163.270800px;}
.ye6{bottom:164.530500px;}
.y2a7{bottom:165.268500px;}
.yec{bottom:165.543300px;}
.y1fd{bottom:166.058850px;}
.ya8{bottom:168.623100px;}
.y20b{bottom:170.798250px;}
.y18f{bottom:172.468950px;}
.y206{bottom:172.470300px;}
.y1d8{bottom:172.471350px;}
.y24e{bottom:173.675550px;}
.y22a{bottom:175.039350px;}
.yc2{bottom:175.099200px;}
.y175{bottom:175.544250px;}
.y21f{bottom:176.202900px;}
.y279{bottom:176.587500px;}
.y184{bottom:176.828550px;}
.y1c6{bottom:177.700350px;}
.y192{bottom:177.891450px;}
.y1dd{bottom:178.414350px;}
.y1b7{bottom:178.733250px;}
.y262{bottom:178.906500px;}
.y1c0{bottom:179.983350px;}
.y4a{bottom:181.087500px;}
.yfc{bottom:181.264500px;}
.y2a6{bottom:183.268500px;}
.y26{bottom:183.543300px;}
.y79{bottom:183.826800px;}
.y171{bottom:185.969250px;}
.y180{bottom:185.969550px;}
.y1f0{bottom:188.612400px;}
.y68{bottom:188.775150px;}
.y21e{bottom:190.602900px;}
.y142{bottom:190.800150px;}
.y145{bottom:191.480100px;}
.y174{bottom:192.128250px;}
.ye5{bottom:192.806100px;}
.y229{bottom:193.039350px;}
.y183{bottom:193.412550px;}
.y211{bottom:193.511550px;}
.y1c5{bottom:193.528350px;}
.y191{bottom:194.475450px;}
.y278{bottom:194.587500px;}
.y1dc{bottom:194.998350px;}
.y1b6{bottom:195.317250px;}
.ya4{bottom:195.410400px;}
.y1cb{bottom:197.938950px;}
.y1d0{bottom:198.694950px;}
.y257{bottom:199.444050px;}
.y205{bottom:199.470300px;}
.y1d7{bottom:199.471350px;}
.y2a5{bottom:201.268500px;}
.y261{bottom:201.406500px;}
.yeb{bottom:201.543300px;}
.y16a{bottom:202.982100px;}
.y1bf{bottom:203.227350px;}
.y49{bottom:203.587500px;}
.yfb{bottom:203.764500px;}
.y1e1{bottom:204.352800px;}
.ya0{bottom:204.410400px;}
.y21d{bottom:205.002900px;}
.y141{bottom:206.326500px;}
.y144{bottom:207.006450px;}
.y1ca{bottom:207.424950px;}
.yb6{bottom:208.179600px;}
.ye4{bottom:210.806100px;}
.y228{bottom:211.039350px;}
.y1cf{bottom:211.375950px;}
.y24d{bottom:211.943250px;}
.y277{bottom:212.587500px;}
.ya3{bottom:213.410400px;}
.y258{bottom:213.880050px;}
.y13f{bottom:215.106600px;}
.y24b{bottom:215.699100px;}
.y1c4{bottom:216.772350px;}
.y179{bottom:217.276650px;}
.y1ae{bottom:217.637250px;}
.y2a4{bottom:219.268500px;}
.y210{bottom:220.061550px;}
.y67{bottom:221.331150px;}
.y140{bottom:221.852850px;}
.y1db{bottom:221.998350px;}
.y20e{bottom:222.149550px;}
.y9f{bottom:222.410400px;}
.y143{bottom:222.532800px;}
.y25{bottom:223.906500px;}
.y48{bottom:226.087500px;}
.yfa{bottom:226.264500px;}
.y18e{bottom:226.468950px;}
.y170{bottom:226.469250px;}
.y17f{bottom:226.469550px;}
.y204{bottom:226.470300px;}
.y1be{bottom:226.471350px;}
.y25a{bottom:227.569050px;}
.ye3{bottom:228.806100px;}
.y227{bottom:229.039350px;}
.y1e0{bottom:230.362800px;}
.y276{bottom:230.587500px;}
.y13e{bottom:230.633100px;}
.ya2{bottom:231.410400px;}
.y1c9{bottom:233.434950px;}
.y24a{bottom:233.699100px;}
.y151{bottom:234.916500px;}
.y1e6{bottom:236.140800px;}
.y259{bottom:236.380050px;}
.y1f9{bottom:236.640900px;}
.y2a3{bottom:237.268500px;}
.y24c{bottom:237.455100px;}
.y188{bottom:238.393650px;}
.y1c3{bottom:240.016350px;}
.y178{bottom:240.154650px;}
.y9e{bottom:240.410400px;}
.y224{bottom:240.961500px;}
.y1df{bottom:244.483800px;}
.y1c8{bottom:245.980950px;}
.y13d{bottom:246.159450px;}
.y24{bottom:246.406500px;}
.y187{bottom:246.574650px;}
.y1ef{bottom:246.889800px;}
.y226{bottom:247.039350px;}
.y47{bottom:248.587500px;}
.yf9{bottom:248.764500px;}
.y25b{bottom:248.944050px;}
.y1b5{bottom:249.317250px;}
.ya1{bottom:249.410400px;}
.y150{bottom:250.442850px;}
.y177{bottom:251.845650px;}
.y1ce{bottom:253.333950px;}
.y223{bottom:253.561500px;}
.y186{bottom:253.702650px;}
.y169{bottom:254.335500px;}
.y1e2{bottom:254.977800px;}
.y2a2{bottom:255.268500px;}
.y20d{bottom:255.539550px;}
.yc1{bottom:255.845550px;}
.ye2{bottom:256.585650px;}
.y25f{bottom:257.755050px;}
.y25d{bottom:261.697050px;}
.y249{bottom:262.966800px;}
.y1c2{bottom:263.260350px;}
.y1f8{bottom:263.640900px;}
.y225{bottom:265.039350px;}
.y1ad{bottom:265.042650px;}
.y13b{bottom:265.339500px;}
.y222{bottom:266.161500px;}
.y275{bottom:266.587500px;}
.y247{bottom:266.722800px;}
.y25c{bottom:268.069050px;}
.y14f{bottom:268.824450px;}
.y23{bottom:268.906500px;}
.y25e{bottom:270.319050px;}
.y194{bottom:270.386550px;}
.yc0{bottom:270.526650px;}
.y46{bottom:271.087500px;}
.yf8{bottom:271.264500px;}
.y1e5{bottom:271.294800px;}
.y1cd{bottom:271.972950px;}
.y2a1{bottom:273.268500px;}
.y9b{bottom:274.567950px;}
.ye1{bottom:274.585650px;}
.y13a{bottom:280.865850px;}
.y9d{bottom:283.567950px;}
.y14e{bottom:284.350950px;}
.y274{bottom:284.587500px;}
.y246{bottom:284.722800px;}
.ybf{bottom:285.207750px;}
.y1c1{bottom:286.504350px;}
.y1e4{bottom:287.980800px;}
.y248{bottom:288.478650px;}
.y195{bottom:290.024550px;}
.y1f7{bottom:290.640900px;}
.y2a0{bottom:291.268500px;}
.y22{bottom:291.406500px;}
.y9a{bottom:292.567950px;}
.ye0{bottom:292.585650px;}
.y45{bottom:293.587500px;}
.yf7{bottom:293.764500px;}
.y139{bottom:296.392350px;}
.y1e3{bottom:298.474800px;}
.y14d{bottom:299.877300px;}
.ybe{bottom:299.888850px;}
.y9c{bottom:301.567950px;}
.y15a{bottom:302.434500px;}
.y273{bottom:302.587500px;}
.y1b4{bottom:303.317250px;}
.yb7{bottom:303.797400px;}
.y77{bottom:308.099400px;}
.y212{bottom:308.810550px;}
.y29f{bottom:309.268500px;}
.y1b9{bottom:309.948600px;}
.y99{bottom:310.567950px;}
.y221{bottom:313.014900px;}
.y21{bottom:313.906500px;}
.y245{bottom:313.990500px;}
.ybd{bottom:314.570100px;}
.y44{bottom:316.087500px;}
.yf6{bottom:316.264500px;}
.y196{bottom:316.889550px;}
.y1f6{bottom:317.640900px;}
.y243{bottom:317.746350px;}
.y272{bottom:320.587500px;}
.ydf{bottom:320.861100px;}
.y1ba{bottom:321.900600px;}
.y1d1{bottom:322.021950px;}
.y260{bottom:322.913100px;}
.y1f1{bottom:323.161200px;}
.y16b{bottom:323.311500px;}
.y251{bottom:323.539350px;}
.y1ea{bottom:323.787450px;}
.y164{bottom:323.937600px;}
.y15b{bottom:324.119550px;}
.y29e{bottom:327.268500px;}
.y1af{bottom:327.413100px;}
.y1a8{bottom:328.039350px;}
.y20f{bottom:328.871550px;}
.y1bb{bottom:331.017600px;}
.y98{bottom:334.591500px;}
.y242{bottom:335.746350px;}
.y20{bottom:336.406500px;}
.y1e7{bottom:337.705800px;}
.y43{bottom:338.587500px;}
.y1cc{bottom:338.671950px;}
.yf5{bottom:338.764500px;}
.yde{bottom:338.861100px;}
.y244{bottom:339.502350px;}
.ybc{bottom:341.389050px;}
.y1f5{bottom:344.640900px;}
.y135{bottom:345.082350px;}
.y29d{bottom:345.268500px;}
.y159{bottom:347.717850px;}
.y88{bottom:348.035250px;}
.y218{bottom:348.259200px;}
.y74{bottom:348.661350px;}
.y14c{bottom:349.441650px;}
.yb5{bottom:351.875850px;}
.y97{bottom:352.591500px;}
.y6f{bottom:353.809350px;}
.ybb{bottom:356.070300px;}
.y15c{bottom:357.922650px;}
.y1f{bottom:358.906500px;}
.y134{bottom:360.608700px;}
.y42{bottom:361.087500px;}
.yf4{bottom:361.264500px;}
.y29c{bottom:363.268500px;}
.y23e{bottom:363.525900px;}
.y14b{bottom:364.968150px;}
.ydd{bottom:366.002850px;}
.y217{bottom:367.759200px;}
.yba{bottom:370.751400px;}
.y241{bottom:371.392050px;}
.y271{bottom:374.587500px;}
.y133{bottom:376.135050px;}
.y96{bottom:377.111250px;}
.y158{bottom:377.481600px;}
.y29b{bottom:381.268500px;}
.y1e{bottom:381.406500px;}
.y23d{bottom:381.525900px;}
.y1ff{bottom:383.547750px;}
.y41{bottom:383.587500px;}
.yf3{bottom:383.764500px;}
.y213{bottom:384.035250px;}
.y1f2{bottom:384.173850px;}
.y200{bottom:384.661350px;}
.y15d{bottom:385.347750px;}
.yb9{bottom:385.432500px;}
.y216{bottom:387.259200px;}
.y240{bottom:390.525900px;}
.ydc{bottom:391.514700px;}
.y21c{bottom:391.828800px;}
.y70{bottom:394.842300px;}
.y95{bottom:395.111250px;}
.y17a{bottom:395.161200px;}
.y63{bottom:395.468400px;}
.y16c{bottom:395.787450px;}
.y153{bottom:396.190350px;}
.y189{bottom:396.445350px;}
.y17b{bottom:397.071600px;}
.y197{bottom:397.508400px;}
.y1e8{bottom:398.031300px;}
.y18a{bottom:398.134500px;}
.y1bc{bottom:398.350200px;}
.y29a{bottom:399.268500px;}
.y1d2{bottom:399.413250px;}
.y23c{bottom:399.525900px;}
.y1d3{bottom:399.720450px;}
.y1b0{bottom:400.039350px;}
.yb8{bottom:400.113600px;}
.y1d{bottom:403.906500px;}
.y73{bottom:406.087350px;}
.y40{bottom:406.087500px;}
.yf2{bottom:406.264500px;}
.y215{bottom:406.759200px;}
.y23f{bottom:409.659750px;}
.y14a{bottom:412.511700px;}
.ydb{bottom:416.530500px;}
.y299{bottom:417.268500px;}
.y154{bottom:417.450150px;}
.y23b{bottom:417.525900px;}
.y15e{bottom:419.788800px;}
.y94{bottom:421.260750px;}
.y1c{bottom:426.406500px;}
.y149{bottom:428.038050px;}
.y72{bottom:428.587350px;}
.y3f{bottom:428.587500px;}
.yf1{bottom:428.764500px;}
.y130{bottom:429.833100px;}
.yda{bottom:434.530500px;}
.y298{bottom:435.268500px;}
.yb4{bottom:435.661200px;}
.yb2{bottom:436.083300px;}
.y93{bottom:439.260750px;}
.y23a{bottom:441.549450px;}
.y148{bottom:443.564400px;}
.y238{bottom:445.305450px;}
.y12f{bottom:445.359450px;}
.y270{bottom:446.587500px;}
.y1b{bottom:448.906500px;}
.y157{bottom:449.552550px;}
.y71{bottom:451.087350px;}
.yaf{bottom:451.087500px;}
.yf0{bottom:451.264500px;}
.y297{bottom:453.268500px;}
.y92{bottom:457.260750px;}
.yd9{bottom:459.546150px;}
.y26f{bottom:460.087500px;}
.y237{bottom:463.305450px;}
.y162{bottom:463.796700px;}
.y239{bottom:467.061300px;}
.y296{bottom:471.268500px;}
.y1a{bottom:471.406500px;}
.y15f{bottom:473.576100px;}
.y62{bottom:473.587350px;}
.y3e{bottom:473.587500px;}
.yef{bottom:473.764500px;}
.y26e{bottom:478.087500px;}
.y156{bottom:479.528850px;}
.y91{bottom:485.536350px;}
.yd8{bottom:486.687900px;}
.y295{bottom:489.268500px;}
.y236{bottom:492.573150px;}
.y19{bottom:493.906500px;}
.y161{bottom:494.836050px;}
.y147{bottom:495.598350px;}
.y61{bottom:496.087350px;}
.yc5{bottom:496.087500px;}
.y234{bottom:496.329000px;}
.y132{bottom:497.633400px;}
.y155{bottom:502.702200px;}
.y90{bottom:503.536350px;}
.yd7{bottom:504.687900px;}
.y294{bottom:507.268500px;}
.y146{bottom:511.124700px;}
.y131{bottom:513.159750px;}
.y26d{bottom:514.087500px;}
.y233{bottom:514.329000px;}
.y18{bottom:516.406500px;}
.y235{bottom:518.085000px;}
.y60{bottom:518.587350px;}
.yae{bottom:518.587500px;}
.y293{bottom:525.268500px;}
.y8f{bottom:531.811950px;}
.y26c{bottom:532.087500px;}
.yd6{bottom:533.459550px;}
.y101{bottom:535.886400px;}
.y17{bottom:538.906500px;}
.y8c{bottom:540.811950px;}
.y5f{bottom:541.087350px;}
.y3d{bottom:541.087500px;}
.y292{bottom:543.268500px;}
.y232{bottom:547.104600px;}
.y138{bottom:547.642200px;}
.y8e{bottom:549.811950px;}
.y12e{bottom:550.234050px;}
.yd5{bottom:551.459550px;}
.y1a7{bottom:553.428000px;}
.y22f{bottom:553.854600px;}
.y26b{bottom:554.587500px;}
.y8b{bottom:558.811950px;}
.y104{bottom:558.847500px;}
.y160{bottom:559.040700px;}
.y231{bottom:560.604600px;}
.y291{bottom:561.268500px;}
.y16{bottom:561.406500px;}
.y137{bottom:563.168550px;}
.y5e{bottom:563.587350px;}
.y3c{bottom:563.587500px;}
.y102{bottom:565.595700px;}
.y12d{bottom:565.760400px;}
.y5{bottom:566.935500px;}
.y22e{bottom:567.354600px;}
.y8d{bottom:567.811950px;}
.y26a{bottom:568.087500px;}
.y230{bottom:574.104600px;}
.y1a6{bottom:575.928000px;}
.yd4{bottom:578.105250px;}
.y136{bottom:578.694900px;}
.y290{bottom:579.268500px;}
.y106{bottom:583.903350px;}
.y15{bottom:583.906500px;}
.y5d{bottom:586.087350px;}
.y3b{bottom:586.087500px;}
.y12c{bottom:587.557200px;}
.y13c{bottom:589.591350px;}
.y8a{bottom:594.457650px;}
.yd3{bottom:596.105250px;}
.y28f{bottom:597.268500px;}
.y1a5{bottom:598.428000px;}
.y4{bottom:601.435500px;}
.y22d{bottom:603.124350px;}
.y269{bottom:604.087500px;}
.y12b{bottom:605.117700px;}
.y14{bottom:606.406500px;}
.y10d{bottom:607.327350px;}
.y5c{bottom:608.587350px;}
.y3a{bottom:608.587500px;}
.y28e{bottom:615.268500px;}
.y118{bottom:618.359250px;}
.y163{bottom:619.837500px;}
.yd2{bottom:620.625000px;}
.y12a{bottom:620.644200px;}
.y1a4{bottom:620.928000px;}
.y268{bottom:622.087500px;}
.y117{bottom:628.859250px;}
.y13{bottom:628.906500px;}
.y89{bottom:629.370750px;}
.yad{bottom:630.516150px;}
.y5b{bottom:631.087350px;}
.y39{bottom:631.087500px;}
.y28d{bottom:633.268500px;}
.y250{bottom:636.894150px;}
.y22b{bottom:638.583300px;}
.yd1{bottom:638.625000px;}
.y267{bottom:640.087500px;}
.y1a3{bottom:643.428000px;}
.y10c{bottom:647.227350px;}
.y121{bottom:648.063750px;}
.y116{bottom:650.898750px;}
.y28c{bottom:651.268500px;}
.y12{bottom:651.406500px;}
.y5a{bottom:653.587350px;}
.y38{bottom:653.587500px;}
.y3{bottom:658.435500px;}
.y129{bottom:658.465950px;}
.y127{bottom:660.200850px;}
.y266{bottom:662.587500px;}
.y126{bottom:662.606250px;}
.yd0{bottom:665.766750px;}
.y1a2{bottom:665.928000px;}
.y10f{bottom:668.643750px;}
.y28b{bottom:669.268500px;}
.y11{bottom:673.906500px;}
.y59{bottom:676.087350px;}
.y37{bottom:676.087500px;}
.y10b{bottom:687.127350px;}
.y28a{bottom:687.268500px;}
.y1e9{bottom:687.337500px;}
.y1a1{bottom:688.428000px;}
.ycf{bottom:692.908350px;}
.y10{bottom:696.406500px;}
.y11a{bottom:697.508250px;}
.y125{bottom:697.539750px;}
.y58{bottom:698.587350px;}
.y36{bottom:698.587500px;}
.y6{bottom:702.016050px;}
.y289{bottom:705.268500px;}
.y119{bottom:708.008250px;}
.y124{bottom:710.139750px;}
.yce{bottom:710.908350px;}
.y1a0{bottom:710.928000px;}
.y2{bottom:712.435500px;}
.yf{bottom:718.906500px;}
.y57{bottom:721.087350px;}
.y35{bottom:721.087500px;}
.y288{bottom:723.268500px;}
.y10a{bottom:727.027350px;}
.y19f{bottom:733.428000px;}
.y113{bottom:735.612750px;}
.ycd{bottom:738.050100px;}
.y287{bottom:741.268500px;}
.ye{bottom:741.406500px;}
.y56{bottom:743.587350px;}
.y34{bottom:743.587500px;}
.y19e{bottom:755.928000px;}
.y286{bottom:759.268500px;}
.y112{bottom:760.949250px;}
.yd{bottom:763.906500px;}
.y11d{bottom:764.592750px;}
.y55{bottom:766.087350px;}
.y33{bottom:766.087500px;}
.y1{bottom:766.435500px;}
.y109{bottom:766.927350px;}
.ycc{bottom:767.317800px;}
.y111{bottom:770.651250px;}
.y11f{bottom:774.851250px;}
.y285{bottom:777.268500px;}
.y214{bottom:777.337500px;}
.y19d{bottom:778.428000px;}
.y11c{bottom:780.888750px;}
.ycb{bottom:785.317800px;}
.yc{bottom:786.406500px;}
.y11e{bottom:787.451250px;}
.y54{bottom:788.587350px;}
.y32{bottom:788.587500px;}
.y11b{bottom:791.388750px;}
.y284{bottom:795.268500px;}
.y19c{bottom:800.928000px;}
.y120{bottom:803.127750px;}
.y108{bottom:806.827350px;}
.yb{bottom:808.906500px;}
.y122{bottom:810.152250px;}
.y53{bottom:811.087350px;}
.y31{bottom:811.087500px;}
.y283{bottom:813.268500px;}
.yca{bottom:814.585650px;}
.y10e{bottom:817.806750px;}
.y19b{bottom:823.428000px;}
.y110{bottom:824.117250px;}
.y115{bottom:825.566250px;}
.y103{bottom:827.291700px;}
.y2b0{bottom:831.268350px;}
.y282{bottom:831.268500px;}
.ya{bottom:831.406500px;}
.y114{bottom:833.147250px;}
.y52{bottom:833.587350px;}
.y30{bottom:833.587500px;}
.y123{bottom:839.825250px;}
.yc9{bottom:842.223300px;}
.y19a{bottom:845.928000px;}
.y107{bottom:846.727350px;}
.y2af{bottom:849.268350px;}
.y281{bottom:849.268500px;}
.y9{bottom:853.906500px;}
.y51{bottom:856.087350px;}
.y2f{bottom:856.087500px;}
.y2ae{bottom:867.268350px;}
.y280{bottom:867.268500px;}
.y199{bottom:868.428000px;}
.y50{bottom:878.587350px;}
.y2e{bottom:878.587500px;}
.y2ad{bottom:885.268350px;}
.y27f{bottom:885.268500px;}
.yea{bottom:887.760300px;}
.yc8{bottom:888.386400px;}
.y8{bottom:898.906500px;}
.y4f{bottom:901.087350px;}
.y2d{bottom:901.087500px;}
.y198{bottom:902.178000px;}
.y2ac{bottom:903.268350px;}
.y27e{bottom:903.268500px;}
.y7{bottom:961.339350px;}
.y2c{bottom:961.870350px;}
.h1e{height:25.452000px;}
.h24{height:29.694000px;}
.h1a{height:30.072000px;}
.h10{height:30.996000px;}
.h23{height:31.860000px;}
.h13{height:31.972080px;}
.h14{height:32.702870px;}
.h28{height:32.940000px;}
.h1b{height:33.812940px;}
.hd{height:34.368000px;}
.h1c{height:34.585807px;}
.h18{height:36.031944px;}
.h12{height:37.800000px;}
.h16{height:38.556000px;}
.ha{height:38.664000px;}
.h2c{height:41.184000px;}
.h21{height:41.940000px;}
.hf{height:42.420000px;}
.hc{height:42.840000px;}
.hb{height:42.960000px;}
.h6{height:45.084000px;}
.h22{height:45.684000px;}
.h1d{height:47.256000px;}
.h2b{height:47.952000px;}
.h25{height:51.336000px;}
.h8{height:51.552000px;}
.h2a{height:56.952000px;}
.h9{height:60.062400px;}
.h17{height:60.063000px;}
.h7{height:60.144000px;}
.h29{height:63.720000px;}
.h15{height:74.664000px;}
.h4{height:85.920000px;}
.h26{height:89.687400px;}
.h3{height:137.472000px;}
.h2{height:163.248000px;}
.h27{height:164.716500px;}
.h5{height:186.648000px;}
.h11{height:198.123000px;}
.h20{height:240.765000px;}
.h1f{height:240.766500px;}
.he{height:245.803500px;}
.h19{height:302.176500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:552.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x7d{left:-1.120050px;}
.x0{left:0.000000px;}
.x2b{left:7.436850px;}
.x3{left:52.419600px;}
.x2{left:56.509950px;}
.x7c{left:72.115200px;}
.xc{left:81.790200px;}
.x4{left:85.039350px;}
.x58{left:88.608000px;}
.x8{left:90.564750px;}
.x56{left:92.198550px;}
.x86{left:94.377300px;}
.x13{left:102.747750px;}
.x5{left:106.299300px;}
.x99{left:113.122650px;}
.x6a{left:115.525800px;}
.x54{left:117.490650px;}
.x83{left:120.097950px;}
.x73{left:121.286250px;}
.x36{left:123.089550px;}
.x69{left:126.469800px;}
.x49{left:128.062500px;}
.xa{left:129.780750px;}
.x89{left:132.668400px;}
.x35{left:133.747050px;}
.x53{left:134.976450px;}
.x4a{left:138.024900px;}
.xd{left:139.914600px;}
.x59{left:141.637350px;}
.x8c{left:143.900400px;}
.x55{left:147.148800px;}
.x22{left:148.160250px;}
.x24{left:149.913150px;}
.x7e{left:152.460450px;}
.x21{left:157.843350px;}
.x3e{left:166.360050px;}
.x57{left:170.699850px;}
.xb{left:173.940750px;}
.x2e{left:175.138050px;}
.x9a{left:177.202650px;}
.x23{left:178.614000px;}
.x79{left:180.181950px;}
.x78{left:181.621950px;}
.x7{left:182.834700px;}
.x6b{left:185.653800px;}
.x1{left:191.338650px;}
.x41{left:196.579050px;}
.x12{left:200.543100px;}
.x14{left:204.247500px;}
.x34{left:205.829550px;}
.x8d{left:211.567800px;}
.x11{left:212.598450px;}
.x90{left:216.439500px;}
.x81{left:218.895300px;}
.x4d{left:220.279350px;}
.x4c{left:221.812050px;}
.x8b{left:223.964400px;}
.x6{left:225.271050px;}
.x8f{left:226.348350px;}
.x8a{left:229.052400px;}
.x51{left:230.617800px;}
.x4e{left:239.045400px;}
.x9b{left:244.333650px;}
.x52{left:245.640300px;}
.x7a{left:253.117950px;}
.x85{left:258.817950px;}
.x6c{left:259.825800px;}
.x60{left:265.187700px;}
.x50{left:266.494650px;}
.x42{left:269.974050px;}
.x91{left:272.039250px;}
.x5f{left:275.179800px;}
.x26{left:278.929500px;}
.x2a{left:281.843400px;}
.x5e{left:287.510550px;}
.x5a{left:295.207050px;}
.x5c{left:301.116900px;}
.x28{left:303.547350px;}
.x8e{left:304.776750px;}
.x27{left:306.607050px;}
.x19{left:312.496950px;}
.x5d{left:315.998700px;}
.x92{left:322.893900px;}
.x1a{left:326.182050px;}
.x38{left:329.162550px;}
.x1b{left:331.280400px;}
.x3a{left:337.111050px;}
.x18{left:339.547050px;}
.x17{left:342.224700px;}
.x6d{left:344.461800px;}
.x7b{left:345.757950px;}
.x37{left:348.230550px;}
.x66{left:350.014500px;}
.x16{left:355.053000px;}
.x39{left:356.053050px;}
.x43{left:358.375950px;}
.x5b{left:360.857100px;}
.x61{left:366.597150px;}
.x88{left:369.921300px;}
.x65{left:374.250750px;}
.x94{left:375.888300px;}
.x4f{left:379.375050px;}
.x31{left:380.623050px;}
.x93{left:383.313300px;}
.x25{left:391.407000px;}
.x84{left:408.229950px;}
.x77{left:414.085950px;}
.x15{left:416.840100px;}
.x1f{left:417.987900px;}
.x62{left:421.234950px;}
.x67{left:424.423950px;}
.x3d{left:426.487050px;}
.x10{left:429.880950px;}
.x76{left:431.677950px;}
.x64{left:435.053850px;}
.x72{left:437.604750px;}
.x95{left:438.946800px;}
.x9{left:440.544750px;}
.x6e{left:441.673800px;}
.x63{left:446.321550px;}
.x68{left:451.849200px;}
.x20{left:455.463300px;}
.x3f{left:464.822550px;}
.x1d{left:466.967550px;}
.x1e{left:470.838600px;}
.x1c{left:477.061350px;}
.x2d{left:479.302050px;}
.x80{left:482.922600px;}
.x3b{left:484.573050px;}
.x44{left:488.676000px;}
.x82{left:501.180300px;}
.x29{left:505.618350px;}
.x33{left:508.555050px;}
.x4b{left:511.938300px;}
.x48{left:529.610700px;}
.x40{left:534.763050px;}
.x96{left:539.373300px;}
.xe{left:541.569450px;}
.x46{left:545.956500px;}
.x30{left:554.513550px;}
.x87{left:558.105450px;}
.x47{left:560.143800px;}
.x32{left:570.011550px;}
.x45{left:571.097700px;}
.x70{left:575.197800px;}
.x7f{left:576.495450px;}
.x6f{left:577.645800px;}
.x71{left:578.872800px;}
.x3c{left:585.404550px;}
.x98{left:588.486750px;}
.x2f{left:590.591550px;}
.x97{left:595.911600px;}
.x74{left:602.390250px;}
.x75{left:604.313700px;}
.x2c{left:607.955700px;}
.xf{left:626.608950px;}
@media print{
.vc{vertical-align:-45.354667pt;}
.v7{vertical-align:-21.312000pt;}
.v4{vertical-align:-17.760000pt;}
.v5{vertical-align:-12.432000pt;}
.v9{vertical-align:-7.232000pt;}
.v3{vertical-align:-1.888000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.888000pt;}
.vb{vertical-align:5.696000pt;}
.ve{vertical-align:6.656000pt;}
.v8{vertical-align:14.218133pt;}
.va{vertical-align:17.984000pt;}
.v11{vertical-align:20.000000pt;}
.v2{vertical-align:21.312000pt;}
.vf{vertical-align:24.000000pt;}
.v10{vertical-align:28.000000pt;}
.v6{vertical-align:32.000000pt;}
.vd{vertical-align:45.354133pt;}
.ls4d{letter-spacing:-8.533333pt;}
.ls53{letter-spacing:-7.680000pt;}
.ls1d{letter-spacing:-4.656000pt;}
.ls38{letter-spacing:-4.224000pt;}
.ls6{letter-spacing:-4.138667pt;}
.ls34{letter-spacing:-3.621333pt;}
.ls3e{letter-spacing:-3.114667pt;}
.ls47{letter-spacing:-2.624000pt;}
.ls42{letter-spacing:-2.176000pt;}
.ls51{letter-spacing:-1.920000pt;}
.ls48{letter-spacing:-1.792000pt;}
.ls26{letter-spacing:-1.456000pt;}
.ls2d{letter-spacing:-1.365333pt;}
.ls39{letter-spacing:-1.312000pt;}
.ls13{letter-spacing:-1.200000pt;}
.ls49{letter-spacing:-1.194667pt;}
.ls37{letter-spacing:-1.109333pt;}
.ls17{letter-spacing:-1.088000pt;}
.ls2c{letter-spacing:-1.066667pt;}
.ls40{letter-spacing:-1.013333pt;}
.ls45{letter-spacing:-1.008000pt;}
.ls43{letter-spacing:-0.960000pt;}
.ls23{letter-spacing:-0.933333pt;}
.ls11{letter-spacing:-0.912000pt;}
.ls46{letter-spacing:-0.864000pt;}
.ls20{letter-spacing:-0.853333pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls27{letter-spacing:-0.784000pt;}
.ls2{letter-spacing:-0.768000pt;}
.ls36{letter-spacing:-0.704000pt;}
.ls3f{letter-spacing:-0.693333pt;}
.ls2a{letter-spacing:-0.686993pt;}
.ls7{letter-spacing:-0.682667pt;}
.ls19{letter-spacing:-0.649591pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.597333pt;}
.ls4f{letter-spacing:-0.586667pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls2e{letter-spacing:-0.554667pt;}
.lsb{letter-spacing:-0.533333pt;}
.ls1a{letter-spacing:-0.527793pt;}
.ls2b{letter-spacing:-0.515245pt;}
.ls31{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.487194pt;}
.ls41{letter-spacing:-0.485333pt;}
.ls50{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:-0.384000pt;}
.ls4b{letter-spacing:-0.373333pt;}
.ls2f{letter-spacing:-0.341333pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.298667pt;}
.ls3{letter-spacing:-0.288000pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls4e{letter-spacing:-0.213333pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.149333pt;}
.ls12{letter-spacing:-0.144000pt;}
.ls3d{letter-spacing:-0.128000pt;}
.ls29{letter-spacing:-0.112000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.000427pt;}
.ls9{letter-spacing:0.000640pt;}
.lse{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.128000pt;}
.ls44{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.186667pt;}
.ls33{letter-spacing:0.213333pt;}
.ls22{letter-spacing:0.224000pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls32{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.288000pt;}
.lsd{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls35{letter-spacing:0.640000pt;}
.ls52{letter-spacing:1.013333pt;}
.ls8{letter-spacing:1.066667pt;}
.ls4c{letter-spacing:1.226667pt;}
.ls4a{letter-spacing:1.600000pt;}
.ls5{letter-spacing:6.238400pt;}
.ls3b{letter-spacing:6.594667pt;}
.ls3c{letter-spacing:6.801600pt;}
.ls3a{letter-spacing:16.840533pt;}
.ws16c{word-spacing:-27.897600pt;}
.ws2{word-spacing:-16.949333pt;}
.ws10e{word-spacing:-15.168000pt;}
.ws6b{word-spacing:-14.848000pt;}
.ws28{word-spacing:-14.656000pt;}
.ws6c{word-spacing:-14.592000pt;}
.ws4{word-spacing:-14.528000pt;}
.ws27{word-spacing:-14.336000pt;}
.ws7a{word-spacing:-14.272000pt;}
.ws3{word-spacing:-14.144000pt;}
.ws18d{word-spacing:-14.016000pt;}
.wsbd{word-spacing:-13.952000pt;}
.ws7b{word-spacing:-13.888000pt;}
.ws10d{word-spacing:-13.824000pt;}
.ws1a8{word-spacing:-13.706667pt;}
.ws1e8{word-spacing:-13.120000pt;}
.ws18e{word-spacing:-12.736000pt;}
.ws56{word-spacing:-12.693333pt;}
.ws16d{word-spacing:-12.352000pt;}
.ws1bb{word-spacing:-12.213333pt;}
.wsfc{word-spacing:-12.106667pt;}
.ws1aa{word-spacing:-12.000000pt;}
.ws92{word-spacing:-11.946667pt;}
.ws1b9{word-spacing:-11.893333pt;}
.wscd{word-spacing:-11.786667pt;}
.ws1e7{word-spacing:-11.680000pt;}
.ws1bc{word-spacing:-11.626667pt;}
.wsfd{word-spacing:-11.573333pt;}
.ws1ba{word-spacing:-11.520000pt;}
.ws1a9{word-spacing:-11.413333pt;}
.ws159{word-spacing:-11.200000pt;}
.ws6e{word-spacing:-11.184000pt;}
.ws1e6{word-spacing:-11.146667pt;}
.ws182{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.896000pt;}
.ws6f{word-spacing:-10.752000pt;}
.ws70{word-spacing:-10.704000pt;}
.ws7{word-spacing:-10.608000pt;}
.ws17d{word-spacing:-10.416000pt;}
.ws6d{word-spacing:-10.320000pt;}
.ws1bd{word-spacing:-10.293333pt;}
.ws5{word-spacing:-10.169600pt;}
.ws17e{word-spacing:-9.984000pt;}
.wsf0{word-spacing:-9.898667pt;}
.ws183{word-spacing:-9.888000pt;}
.wsee{word-spacing:-9.813333pt;}
.wse2{word-spacing:-9.746714pt;}
.ws44{word-spacing:-9.685333pt;}
.ws142{word-spacing:-9.557333pt;}
.wsce{word-spacing:-9.429333pt;}
.wsed{word-spacing:-9.344000pt;}
.wse1{word-spacing:-9.317343pt;}
.ws124{word-spacing:-9.301333pt;}
.wsef{word-spacing:-9.173333pt;}
.wsec{word-spacing:-9.130667pt;}
.ws94{word-spacing:-8.810084pt;}
.ws96{word-spacing:-8.728885pt;}
.wsd0{word-spacing:-8.698667pt;}
.ws58{word-spacing:-8.661333pt;}
.wse0{word-spacing:-8.630350pt;}
.ws122{word-spacing:-8.576000pt;}
.ws57{word-spacing:-8.549333pt;}
.ws18f{word-spacing:-8.490667pt;}
.wsd2{word-spacing:-8.474667pt;}
.wsd7{word-spacing:-8.362667pt;}
.wsd6{word-spacing:-8.325333pt;}
.wseb{word-spacing:-8.320000pt;}
.ws13a{word-spacing:-8.192000pt;}
.ws95{word-spacing:-8.160493pt;}
.ws15a{word-spacing:-7.989333pt;}
.ws139{word-spacing:-7.936000pt;}
.wsd3{word-spacing:-7.877333pt;}
.wsd5{word-spacing:-7.690667pt;}
.wsd1{word-spacing:-7.541333pt;}
.ws147{word-spacing:-7.488000pt;}
.ws150{word-spacing:-7.424000pt;}
.ws14f{word-spacing:-7.232000pt;}
.wsd4{word-spacing:-7.018667pt;}
.wsc5{word-spacing:-6.848000pt;}
.ws13c{word-spacing:-6.656000pt;}
.ws143{word-spacing:-6.570667pt;}
.wsc8{word-spacing:-6.528000pt;}
.ws83{word-spacing:-6.464000pt;}
.ws82{word-spacing:-6.336000pt;}
.ws116{word-spacing:-6.272000pt;}
.ws199{word-spacing:-6.144000pt;}
.wse9{word-spacing:-5.952000pt;}
.ws5b{word-spacing:-5.888000pt;}
.ws1a3{word-spacing:-5.568000pt;}
.ws123{word-spacing:-5.461333pt;}
.ws12{word-spacing:-5.440000pt;}
.ws7f{word-spacing:-5.312000pt;}
.ws77{word-spacing:-4.896000pt;}
.ws151{word-spacing:-4.736000pt;}
.wsbe{word-spacing:-4.672000pt;}
.ws9{word-spacing:-4.608000pt;}
.ws15{word-spacing:-4.544000pt;}
.ws140{word-spacing:-4.352000pt;}
.wsdc{word-spacing:-4.288000pt;}
.ws49{word-spacing:-4.160000pt;}
.ws89{word-spacing:-4.096000pt;}
.ws15e{word-spacing:-4.032000pt;}
.ws13d{word-spacing:-3.968000pt;}
.ws166{word-spacing:-3.904000pt;}
.ws157{word-spacing:-3.776000pt;}
.ws1bf{word-spacing:-3.733333pt;}
.wsd8{word-spacing:-3.712000pt;}
.ws1be{word-spacing:-3.680000pt;}
.ws53{word-spacing:-3.648000pt;}
.ws19b{word-spacing:-3.520000pt;}
.ws23{word-spacing:-3.504000pt;}
.wsab{word-spacing:-3.392000pt;}
.ws1a2{word-spacing:-3.328000pt;}
.ws138{word-spacing:-3.264000pt;}
.ws8f{word-spacing:-3.136000pt;}
.ws87{word-spacing:-3.008000pt;}
.wsa6{word-spacing:-2.944000pt;}
.ws19e{word-spacing:-2.880000pt;}
.wsf3{word-spacing:-2.752000pt;}
.ws162{word-spacing:-2.688000pt;}
.ws6a{word-spacing:-2.645333pt;}
.ws7c{word-spacing:-2.624000pt;}
.wsaa{word-spacing:-2.560000pt;}
.ws15d{word-spacing:-2.496000pt;}
.ws13{word-spacing:-2.432000pt;}
.ws103{word-spacing:-2.368000pt;}
.ws5d{word-spacing:-2.304000pt;}
.wsf2{word-spacing:-2.240000pt;}
.ws5e{word-spacing:-2.176000pt;}
.wsa5{word-spacing:-2.112000pt;}
.ws131{word-spacing:-2.090667pt;}
.ws2f{word-spacing:-2.048000pt;}
.wsc1{word-spacing:-1.984000pt;}
.ws8a{word-spacing:-1.920000pt;}
.ws121{word-spacing:-1.877333pt;}
.ws67{word-spacing:-1.856000pt;}
.wsb6{word-spacing:-1.792000pt;}
.ws1dd{word-spacing:-1.760000pt;}
.ws135{word-spacing:-1.728000pt;}
.ws35{word-spacing:-1.664000pt;}
.ws1d1{word-spacing:-1.653333pt;}
.ws18b{word-spacing:-1.621333pt;}
.ws172{word-spacing:-1.600000pt;}
.ws104{word-spacing:-1.536000pt;}
.ws8d{word-spacing:-1.472000pt;}
.ws189{word-spacing:-1.408000pt;}
.wsf6{word-spacing:-1.344000pt;}
.wsad{word-spacing:-1.216000pt;}
.ws64{word-spacing:-1.152000pt;}
.ws109{word-spacing:-1.088000pt;}
.ws1c0{word-spacing:-1.066667pt;}
.wsa7{word-spacing:-1.024000pt;}
.ws24{word-spacing:-1.008000pt;}
.wsa{word-spacing:-0.960000pt;}
.ws60{word-spacing:-0.896000pt;}
.ws3a{word-spacing:-0.768000pt;}
.ws25{word-spacing:-0.720000pt;}
.ws5a{word-spacing:-0.704000pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws126{word-spacing:-0.576000pt;}
.ws1c{word-spacing:-0.512000pt;}
.ws2e{word-spacing:-0.448000pt;}
.wsc4{word-spacing:-0.384000pt;}
.ws1b8{word-spacing:-0.373333pt;}
.ws43{word-spacing:-0.288000pt;}
.ws68{word-spacing:-0.256000pt;}
.wsbc{word-spacing:-0.240000pt;}
.ws8{word-spacing:-0.192000pt;}
.ws168{word-spacing:-0.160000pt;}
.ws14{word-spacing:-0.128000pt;}
.ws169{word-spacing:-0.085333pt;}
.ws3c{word-spacing:-0.064000pt;}
.ws26{word-spacing:-0.042667pt;}
.ws15b{word-spacing:-0.037333pt;}
.wsf1{word-spacing:-0.032000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1de{word-spacing:0.053333pt;}
.ws16e{word-spacing:0.064000pt;}
.ws81{word-spacing:0.128000pt;}
.ws11f{word-spacing:0.192000pt;}
.ws1c2{word-spacing:0.213333pt;}
.ws177{word-spacing:0.240000pt;}
.ws115{word-spacing:0.256000pt;}
.wsdf{word-spacing:0.298667pt;}
.wscb{word-spacing:0.336000pt;}
.ws1ac{word-spacing:0.373333pt;}
.wsdd{word-spacing:0.384000pt;}
.wsf7{word-spacing:0.448000pt;}
.ws1ea{word-spacing:0.480000pt;}
.ws21{word-spacing:0.512000pt;}
.wsea{word-spacing:0.515245pt;}
.wsa0{word-spacing:0.527793pt;}
.ws69{word-spacing:0.533333pt;}
.ws16a{word-spacing:0.554667pt;}
.ws4d{word-spacing:0.576000pt;}
.ws1d2{word-spacing:0.586667pt;}
.ws10b{word-spacing:0.597333pt;}
.ws1d3{word-spacing:0.640000pt;}
.ws55{word-spacing:0.682667pt;}
.ws158{word-spacing:0.693333pt;}
.wse8{word-spacing:0.704000pt;}
.ws1f{word-spacing:0.768000pt;}
.ws30{word-spacing:0.832000pt;}
.wsde{word-spacing:0.853333pt;}
.ws18c{word-spacing:0.864000pt;}
.ws78{word-spacing:0.912000pt;}
.wsac{word-spacing:0.960000pt;}
.ws173{word-spacing:1.024000pt;}
.wsfb{word-spacing:1.066667pt;}
.ws18a{word-spacing:1.088000pt;}
.ws188{word-spacing:1.152000pt;}
.ws79{word-spacing:1.200000pt;}
.ws152{word-spacing:1.216000pt;}
.ws1a5{word-spacing:1.248000pt;}
.ws125{word-spacing:1.280000pt;}
.ws38{word-spacing:1.344000pt;}
.ws17a{word-spacing:1.440000pt;}
.ws1e{word-spacing:1.472000pt;}
.ws7d{word-spacing:1.536000pt;}
.ws5f{word-spacing:1.600000pt;}
.ws178{word-spacing:1.632000pt;}
.wsda{word-spacing:1.664000pt;}
.ws8e{word-spacing:1.728000pt;}
.ws47{word-spacing:1.792000pt;}
.ws62{word-spacing:1.856000pt;}
.ws16b{word-spacing:1.877333pt;}
.ws16{word-spacing:1.920000pt;}
.ws1c3{word-spacing:1.973333pt;}
.ws73{word-spacing:1.984000pt;}
.ws144{word-spacing:2.048000pt;}
.ws12a{word-spacing:2.112000pt;}
.ws129{word-spacing:2.176000pt;}
.ws133{word-spacing:2.240000pt;}
.ws108{word-spacing:2.304000pt;}
.ws1d7{word-spacing:2.346667pt;}
.ws12b{word-spacing:2.368000pt;}
.wse{word-spacing:2.432000pt;}
.ws3b{word-spacing:2.496000pt;}
.ws1c4{word-spacing:2.506667pt;}
.wsfa{word-spacing:2.560000pt;}
.ws153{word-spacing:2.624000pt;}
.ws42{word-spacing:2.640000pt;}
.ws4b{word-spacing:2.688000pt;}
.ws4f{word-spacing:2.752000pt;}
.ws1cd{word-spacing:2.773333pt;}
.ws105{word-spacing:2.816000pt;}
.ws1c5{word-spacing:2.826667pt;}
.ws2d{word-spacing:2.880000pt;}
.ws8b{word-spacing:2.944000pt;}
.wsc9{word-spacing:3.008000pt;}
.ws51{word-spacing:3.072000pt;}
.ws1d5{word-spacing:3.093333pt;}
.ws29{word-spacing:3.136000pt;}
.ws1d{word-spacing:3.200000pt;}
.ws61{word-spacing:3.264000pt;}
.ws1d6{word-spacing:3.306667pt;}
.ws15c{word-spacing:3.328000pt;}
.wsb3{word-spacing:3.392000pt;}
.ws36{word-spacing:3.456000pt;}
.ws90{word-spacing:3.520000pt;}
.ws1b2{word-spacing:3.573333pt;}
.ws39{word-spacing:3.584000pt;}
.ws1d8{word-spacing:3.626667pt;}
.wsa2{word-spacing:3.648000pt;}
.ws1d9{word-spacing:3.680000pt;}
.ws97{word-spacing:3.712000pt;}
.ws9b{word-spacing:3.776000pt;}
.ws17b{word-spacing:3.792000pt;}
.ws161{word-spacing:3.840000pt;}
.wsf{word-spacing:3.904000pt;}
.ws80{word-spacing:3.968000pt;}
.ws106{word-spacing:4.032000pt;}
.ws10{word-spacing:4.096000pt;}
.wsa3{word-spacing:4.160000pt;}
.wsf5{word-spacing:4.224000pt;}
.ws5c{word-spacing:4.288000pt;}
.wsc6{word-spacing:4.352000pt;}
.ws40{word-spacing:4.416000pt;}
.ws1df{word-spacing:4.426667pt;}
.ws175{word-spacing:4.464000pt;}
.wsb0{word-spacing:4.480000pt;}
.wsa4{word-spacing:4.544000pt;}
.ws3f{word-spacing:4.608000pt;}
.ws48{word-spacing:4.672000pt;}
.ws63{word-spacing:4.736000pt;}
.ws1e9{word-spacing:4.746667pt;}
.ws19f{word-spacing:4.800000pt;}
.ws14d{word-spacing:4.864000pt;}
.ws66{word-spacing:4.928000pt;}
.ws179{word-spacing:4.944000pt;}
.ws4c{word-spacing:4.992000pt;}
.ws1b1{word-spacing:5.013333pt;}
.wsb2{word-spacing:5.056000pt;}
.ws54{word-spacing:5.162667pt;}
.ws11e{word-spacing:5.184000pt;}
.wsdb{word-spacing:5.248000pt;}
.ws4e{word-spacing:5.312000pt;}
.ws1dc{word-spacing:5.333333pt;}
.ws102{word-spacing:5.376000pt;}
.ws1b0{word-spacing:5.440000pt;}
.ws101{word-spacing:5.504000pt;}
.ws22{word-spacing:5.568000pt;}
.wsbf{word-spacing:5.632000pt;}
.ws17{word-spacing:5.696000pt;}
.wsd9{word-spacing:5.760000pt;}
.ws2a{word-spacing:5.824000pt;}
.ws2b{word-spacing:5.888000pt;}
.wse5{word-spacing:5.952000pt;}
.ws1b{word-spacing:6.144000pt;}
.ws4a{word-spacing:6.208000pt;}
.ws154{word-spacing:6.272000pt;}
.wsc0{word-spacing:6.336000pt;}
.ws11d{word-spacing:6.400000pt;}
.ws1ec{word-spacing:6.432000pt;}
.ws19d{word-spacing:6.442667pt;}
.ws99{word-spacing:6.528000pt;}
.ws1e5{word-spacing:6.560000pt;}
.ws7e{word-spacing:6.592000pt;}
.wsc2{word-spacing:6.656000pt;}
.ws132{word-spacing:6.720000pt;}
.ws110{word-spacing:6.784000pt;}
.ws118{word-spacing:6.848000pt;}
.ws111{word-spacing:6.912000pt;}
.wse4{word-spacing:6.976000pt;}
.ws1c1{word-spacing:7.093333pt;}
.ws145{word-spacing:7.104000pt;}
.ws1e4{word-spacing:7.146667pt;}
.wsf9{word-spacing:7.168000pt;}
.ws41{word-spacing:7.200000pt;}
.ws134{word-spacing:7.232000pt;}
.ws128{word-spacing:7.360000pt;}
.ws176{word-spacing:7.440000pt;}
.wse7{word-spacing:7.488000pt;}
.ws130{word-spacing:7.552000pt;}
.ws3e{word-spacing:7.616000pt;}
.ws31{word-spacing:7.680000pt;}
.wsb{word-spacing:7.808000pt;}
.ws71{word-spacing:7.936000pt;}
.ws1ae{word-spacing:7.946667pt;}
.ws1a4{word-spacing:8.000000pt;}
.ws1af{word-spacing:8.053333pt;}
.ws13e{word-spacing:8.064000pt;}
.ws174{word-spacing:8.128000pt;}
.ws1c8{word-spacing:8.160000pt;}
.ws156{word-spacing:8.256000pt;}
.ws34{word-spacing:8.320000pt;}
.wsa8{word-spacing:8.384000pt;}
.ws120{word-spacing:8.448000pt;}
.ws1b5{word-spacing:8.533333pt;}
.ws1c9{word-spacing:8.586667pt;}
.ws18{word-spacing:8.640000pt;}
.ws14e{word-spacing:8.704000pt;}
.ws52{word-spacing:8.768000pt;}
.ws9c{word-spacing:8.832000pt;}
.ws165{word-spacing:8.896000pt;}
.ws75{word-spacing:8.960000pt;}
.ws37{word-spacing:9.024000pt;}
.ws148{word-spacing:9.088000pt;}
.ws11a{word-spacing:9.216000pt;}
.ws32{word-spacing:9.280000pt;}
.ws85{word-spacing:9.344000pt;}
.ws1db{word-spacing:9.386667pt;}
.ws141{word-spacing:9.408000pt;}
.ws50{word-spacing:9.600000pt;}
.wsf4{word-spacing:9.664000pt;}
.ws19c{word-spacing:9.728000pt;}
.ws11{word-spacing:9.792000pt;}
.ws33{word-spacing:9.856000pt;}
.ws10a{word-spacing:9.920000pt;}
.wsb1{word-spacing:9.984000pt;}
.ws1ce{word-spacing:10.080000pt;}
.ws86{word-spacing:10.176000pt;}
.ws13f{word-spacing:10.240000pt;}
.ws100{word-spacing:10.432000pt;}
.wsc7{word-spacing:10.496000pt;}
.ws1a6{word-spacing:10.560000pt;}
.ws84{word-spacing:10.624000pt;}
.ws196{word-spacing:10.752000pt;}
.ws1a0{word-spacing:10.816000pt;}
.ws1da{word-spacing:10.826667pt;}
.ws20{word-spacing:10.944000pt;}
.wsae{word-spacing:11.008000pt;}
.ws197{word-spacing:11.072000pt;}
.ws16f{word-spacing:11.136000pt;}
.ws88{word-spacing:11.264000pt;}
.ws146{word-spacing:11.328000pt;}
.ws1eb{word-spacing:11.424000pt;}
.ws163{word-spacing:11.520000pt;}
.ws13b{word-spacing:11.776000pt;}
.ws149{word-spacing:11.904000pt;}
.ws1b6{word-spacing:12.266667pt;}
.ws1b7{word-spacing:12.373333pt;}
.ws1ad{word-spacing:12.426667pt;}
.ws107{word-spacing:12.480000pt;}
.ws9f{word-spacing:12.544000pt;}
.ws155{word-spacing:12.608000pt;}
.wsc3{word-spacing:12.672000pt;}
.ws1b4{word-spacing:12.853333pt;}
.ws12d{word-spacing:12.864000pt;}
.ws8c{word-spacing:12.928000pt;}
.ws74{word-spacing:12.992000pt;}
.ws1c6{word-spacing:13.173333pt;}
.ws1c7{word-spacing:13.280000pt;}
.ws76{word-spacing:13.376000pt;}
.wscc{word-spacing:13.392000pt;}
.ws1b3{word-spacing:13.493333pt;}
.ws65{word-spacing:13.632000pt;}
.ws9e{word-spacing:13.696000pt;}
.wsb4{word-spacing:13.760000pt;}
.wsa1{word-spacing:13.888000pt;}
.ws9a{word-spacing:14.272000pt;}
.ws14a{word-spacing:14.336000pt;}
.ws119{word-spacing:14.464000pt;}
.wsc{word-spacing:14.720000pt;}
.ws1cf{word-spacing:14.826667pt;}
.ws171{word-spacing:14.976000pt;}
.ws1d0{word-spacing:14.986667pt;}
.wsaf{word-spacing:15.040000pt;}
.ws19a{word-spacing:15.232000pt;}
.ws160{word-spacing:15.360000pt;}
.ws127{word-spacing:15.552000pt;}
.ws1a1{word-spacing:15.616000pt;}
.ws1e2{word-spacing:15.626667pt;}
.ws1e3{word-spacing:15.733333pt;}
.ws19{word-spacing:15.808000pt;}
.ws1d4{word-spacing:15.893333pt;}
.ws117{word-spacing:16.000000pt;}
.ws1e1{word-spacing:16.266667pt;}
.wsa9{word-spacing:16.384000pt;}
.ws1e0{word-spacing:16.426667pt;}
.ws59{word-spacing:16.512000pt;}
.ws112{word-spacing:16.960000pt;}
.ws12e{word-spacing:17.152000pt;}
.wsf8{word-spacing:17.280000pt;}
.ws1a{word-spacing:17.344000pt;}
.ws113{word-spacing:17.472000pt;}
.ws12f{word-spacing:17.600000pt;}
.wsd{word-spacing:17.728000pt;}
.wse6{word-spacing:18.112000pt;}
.ws72{word-spacing:19.392000pt;}
.ws98{word-spacing:20.224000pt;}
.ws1cc{word-spacing:21.066667pt;}
.ws1cb{word-spacing:21.226667pt;}
.ws1ca{word-spacing:21.600000pt;}
.ws14b{word-spacing:21.674667pt;}
.ws1a7{word-spacing:21.952000pt;}
.ws15f{word-spacing:22.400000pt;}
.ws136{word-spacing:23.104000pt;}
.ws3d{word-spacing:23.936000pt;}
.ws190{word-spacing:24.533333pt;}
.ws198{word-spacing:25.088000pt;}
.ws164{word-spacing:25.664000pt;}
.wsb5{word-spacing:27.776000pt;}
.ws194{word-spacing:28.448000pt;}
.ws9d{word-spacing:28.544000pt;}
.ws191{word-spacing:29.088000pt;}
.ws170{word-spacing:29.568000pt;}
.ws195{word-spacing:31.104000pt;}
.ws193{word-spacing:31.424000pt;}
.ws137{word-spacing:31.616000pt;}
.ws192{word-spacing:33.760000pt;}
.wsca{word-spacing:37.296000pt;}
.ws114{word-spacing:38.528000pt;}
.ws167{word-spacing:41.024000pt;}
.ws1{word-spacing:60.429333pt;}
.ws91{word-spacing:60.429867pt;}
.ws10c{word-spacing:60.430400pt;}
.ws185{word-spacing:62.054933pt;}
.ws1ab{word-spacing:71.456000pt;}
.ws17f{word-spacing:73.824533pt;}
.ws186{word-spacing:77.040533pt;}
.wse3{word-spacing:79.004267pt;}
.ws181{word-spacing:80.064533pt;}
.ws187{word-spacing:83.424000pt;}
.ws180{word-spacing:88.608000pt;}
.ws45{word-spacing:97.962667pt;}
.ws46{word-spacing:196.608000pt;}
.wsbb{word-spacing:224.122133pt;}
.ws184{word-spacing:234.145600pt;}
.wsb8{word-spacing:244.810133pt;}
.wsb7{word-spacing:244.810667pt;}
.wsb9{word-spacing:268.138667pt;}
.ws14c{word-spacing:282.341333pt;}
.wsfe{word-spacing:283.989867pt;}
.ws11b{word-spacing:283.990400pt;}
.wscf{word-spacing:460.458667pt;}
.ws12c{word-spacing:491.872000pt;}
.ws11c{word-spacing:492.416000pt;}
.ws10f{word-spacing:494.784000pt;}
.wsff{word-spacing:494.816000pt;}
.ws17c{word-spacing:586.658133pt;}
.ws93{word-spacing:807.037713pt;}
.wsba{word-spacing:1361.280000pt;}
._34{margin-left:-1623.466667pt;}
._53{margin-left:-1127.210667pt;}
._46{margin-left:-1101.610667pt;}
._11{margin-left:-1029.802667pt;}
._47{margin-left:-953.387200pt;}
._40{margin-left:-934.784000pt;}
._1c{margin-left:-692.236892pt;}
._52{margin-left:-662.613333pt;}
._12{margin-left:-650.666667pt;}
._45{margin-left:-648.405333pt;}
._38{margin-left:-629.440000pt;}
._3b{margin-left:-615.082667pt;}
._3f{margin-left:-544.000000pt;}
._10{margin-left:-461.056000pt;}
._42{margin-left:-359.392000pt;}
._39{margin-left:-358.048000pt;}
._3a{margin-left:-356.448000pt;}
._50{margin-left:-198.058667pt;}
._43{margin-left:-195.200000pt;}
._33{margin-left:-36.593600pt;}
._41{margin-left:-29.068800pt;}
._6{margin-left:-22.442667pt;}
._1d{margin-left:-19.592533pt;}
._1a{margin-left:-17.156267pt;}
._1b{margin-left:-14.425600pt;}
._e{margin-left:-11.747200pt;}
._c{margin-left:-10.022400pt;}
._19{margin-left:-8.938667pt;}
._16{margin-left:-8.000000pt;}
._5{margin-left:-6.340267pt;}
._4{margin-left:-4.857600pt;}
._0{margin-left:-3.465600pt;}
._7{margin-left:-2.560000pt;}
._1{margin-left:-1.621333pt;}
._2{width:1.092267pt;}
._3{width:2.176000pt;}
._13{width:3.626667pt;}
._31{width:4.629333pt;}
._b{width:6.613333pt;}
._56{width:7.801600pt;}
._57{width:8.750933pt;}
._37{width:9.845867pt;}
._55{width:11.312000pt;}
._32{width:17.218133pt;}
._35{width:21.286749pt;}
._d{width:29.904000pt;}
._48{width:32.687467pt;}
._54{width:35.855467pt;}
._8{width:37.104000pt;}
._9{width:40.608000pt;}
._15{width:43.264000pt;}
._3e{width:46.848000pt;}
._3d{width:49.930667pt;}
._a{width:61.158933pt;}
._49{width:71.294933pt;}
._14{width:80.682667pt;}
._1f{width:85.988267pt;}
._4a{width:87.840000pt;}
._4e{width:91.725333pt;}
._36{width:92.894306pt;}
._4d{width:96.383467pt;}
._4c{width:99.504000pt;}
._4f{width:102.432533pt;}
._4b{width:108.048533pt;}
._3c{width:191.005867pt;}
._21{width:255.706667pt;}
._2e{width:279.034667pt;}
._f{width:297.216000pt;}
._23{width:328.458667pt;}
._18{width:343.660800pt;}
._2d{width:363.123733pt;}
._44{width:371.285333pt;}
._51{width:382.634667pt;}
._2c{width:397.653333pt;}
._25{width:399.844800pt;}
._17{width:452.793600pt;}
._28{width:489.930667pt;}
._2a{width:599.403733pt;}
._30{width:707.045333pt;}
._20{width:764.701333pt;}
._29{width:771.376533pt;}
._22{width:829.540800pt;}
._1e{width:870.541867pt;}
._24{width:941.894400pt;}
._2f{width:958.193067pt;}
._26{width:1122.986133pt;}
._2b{width:1199.893333pt;}
._27{width:1406.148800pt;}
.fsb{font-size:21.765333pt;}
.fsd{font-size:24.874667pt;}
.fs10{font-size:32.000000pt;}
.fsa{font-size:37.333333pt;}
.fsc{font-size:40.599467pt;}
.fs4{font-size:42.666667pt;}
.fse{font-size:42.937067pt;}
.fs8{font-size:44.800000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fsf{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:106.666667pt;}
.fs1{font-size:170.666667pt;}
.fs0{font-size:202.666667pt;}
.fs3{font-size:234.666667pt;}
.y0{bottom:0.000000pt;}
.y256{bottom:39.373600pt;}
.y105{bottom:45.939200pt;}
.y7d{bottom:47.134933pt;}
.y6c{bottom:52.056133pt;}
.y84{bottom:53.780267pt;}
.y1fc{bottom:57.306133pt;}
.y20a{bottom:57.306933pt;}
.y100{bottom:69.291333pt;}
.y83{bottom:72.052267pt;}
.y76{bottom:73.254533pt;}
.y128{bottom:73.511867pt;}
.yb3{bottom:74.296267pt;}
.y1eb{bottom:74.477733pt;}
.y165{bottom:74.611200pt;}
.y1f4{bottom:74.821200pt;}
.y65{bottom:74.860800pt;}
.y16e{bottom:75.144400pt;}
.y202{bottom:75.254533pt;}
.y2b{bottom:75.590533pt;}
.y4e{bottom:75.590667pt;}
.y7c{bottom:76.201600pt;}
.y17d{bottom:76.285867pt;}
.yac{bottom:76.343600pt;}
.y27d{bottom:76.966667pt;}
.y18c{bottom:77.230667pt;}
.y1a9{bottom:78.257200pt;}
.y1d5{bottom:78.640400pt;}
.y1b2{bottom:78.923867pt;}
.y253{bottom:80.923867pt;}
.yc7{bottom:80.966667pt;}
.y6b{bottom:80.994800pt;}
.ye9{bottom:81.146667pt;}
.y265{bottom:81.259867pt;}
.y1fb{bottom:81.306133pt;}
.y209{bottom:81.306933pt;}
.y21b{bottom:82.897067pt;}
.y2ab{bottom:82.905333pt;}
.yff{bottom:85.291333pt;}
.y75{bottom:86.587867pt;}
.y1f3{bottom:88.154533pt;}
.y64{bottom:88.194133pt;}
.y16d{bottom:88.477733pt;}
.y201{bottom:88.587867pt;}
.y17c{bottom:89.619200pt;}
.y82{bottom:90.324267pt;}
.y18b{bottom:90.564000pt;}
.y2a{bottom:91.590533pt;}
.y4d{bottom:91.590667pt;}
.y1d4{bottom:91.973733pt;}
.y1b1{bottom:92.257200pt;}
.y27c{bottom:92.966667pt;}
.y173{bottom:93.306000pt;}
.y182{bottom:93.306267pt;}
.y252{bottom:94.257200pt;}
.y21a{bottom:96.230400pt;}
.y264{bottom:97.259867pt;}
.y2aa{bottom:98.905333pt;}
.yc6{bottom:100.966667pt;}
.yab{bottom:101.887067pt;}
.y168{bottom:103.132000pt;}
.y1fa{bottom:105.041333pt;}
.y7b{bottom:105.268267pt;}
.y190{bottom:105.305733pt;}
.y208{bottom:105.306933pt;}
.y1da{bottom:105.307867pt;}
.ye8{bottom:106.123333pt;}
.y152{bottom:106.237333pt;}
.y29{bottom:107.590533pt;}
.y4c{bottom:107.590667pt;}
.y1ee{bottom:107.692267pt;}
.y81{bottom:108.596267pt;}
.y66{bottom:108.713333pt;}
.y27b{bottom:108.966667pt;}
.y203{bottom:109.253333pt;}
.y78{bottom:109.489333pt;}
.y219{bottom:109.563733pt;}
.ya7{bottom:109.887067pt;}
.y6a{bottom:109.933467pt;}
.y1fe{bottom:110.288933pt;}
.y16f{bottom:113.474667pt;}
.y22c{bottom:114.296267pt;}
.y20c{bottom:114.501733pt;}
.y17e{bottom:114.616000pt;}
.y6e{bottom:114.710533pt;}
.y2a9{bottom:114.905333pt;}
.yee{bottom:115.149600pt;}
.y1bd{bottom:115.362667pt;}
.y87{bottom:115.487733pt;}
.y18d{bottom:115.561333pt;}
.y167{bottom:115.932000pt;}
.y1d6{bottom:116.024000pt;}
.y1ac{bottom:116.158800pt;}
.y1b3{bottom:116.309333pt;}
.yaa{bottom:117.887067pt;}
.y176{bottom:118.723467pt;}
.y185{bottom:119.863733pt;}
.y1ed{bottom:120.492267pt;}
.y1c7{bottom:120.612000pt;}
.y193{bottom:120.809867pt;}
.yb1{bottom:120.966667pt;}
.yfe{bottom:121.124000pt;}
.y1de{bottom:121.273333pt;}
.y1b8{bottom:121.556800pt;}
.y28{bottom:123.590533pt;}
.y4b{bottom:123.590667pt;}
.y27a{bottom:124.966667pt;}
.ya6{bottom:125.887067pt;}
.y255{bottom:126.302667pt;}
.y86{bottom:126.762400pt;}
.y80{bottom:126.857600pt;}
.y7e{bottom:127.557600pt;}
.y166{bottom:128.732000pt;}
.y1ab{bottom:128.958800pt;}
.y172{bottom:129.306000pt;}
.y181{bottom:129.306267pt;}
.y207{bottom:129.306933pt;}
.y1d9{bottom:129.307867pt;}
.yc4{bottom:129.544000pt;}
.ye7{bottom:130.249333pt;}
.y2a8{bottom:130.905333pt;}
.yed{bottom:131.149600pt;}
.y6d{bottom:131.851867pt;}
.y254{bottom:132.300533pt;}
.y1ec{bottom:133.292267pt;}
.ya9{bottom:133.887067pt;}
.y7a{bottom:134.334933pt;}
.y69{bottom:138.861467pt;}
.y263{bottom:139.028000pt;}
.y27{bottom:139.590533pt;}
.yb0{bottom:140.966667pt;}
.yfd{bottom:141.124000pt;}
.y1aa{bottom:141.758800pt;}
.ya5{bottom:141.887067pt;}
.yc3{bottom:142.593867pt;}
.y24f{bottom:143.039600pt;}
.y220{bottom:143.824800pt;}
.y85{bottom:145.023733pt;}
.y7f{bottom:145.129600pt;}
.ye6{bottom:146.249333pt;}
.y2a7{bottom:146.905333pt;}
.yec{bottom:147.149600pt;}
.y1fd{bottom:147.607867pt;}
.ya8{bottom:149.887200pt;}
.y20b{bottom:151.820667pt;}
.y18f{bottom:153.305733pt;}
.y206{bottom:153.306933pt;}
.y1d8{bottom:153.307867pt;}
.y24e{bottom:154.378267pt;}
.y22a{bottom:155.590533pt;}
.yc2{bottom:155.643733pt;}
.y175{bottom:156.039333pt;}
.y21f{bottom:156.624800pt;}
.y279{bottom:156.966667pt;}
.y184{bottom:157.180933pt;}
.y1c6{bottom:157.955867pt;}
.y192{bottom:158.125733pt;}
.y1dd{bottom:158.590533pt;}
.y1b7{bottom:158.874000pt;}
.y262{bottom:159.028000pt;}
.y1c0{bottom:159.985200pt;}
.y4a{bottom:160.966667pt;}
.yfc{bottom:161.124000pt;}
.y2a6{bottom:162.905333pt;}
.y26{bottom:163.149600pt;}
.y79{bottom:163.401600pt;}
.y171{bottom:165.306000pt;}
.y180{bottom:165.306267pt;}
.y1f0{bottom:167.655467pt;}
.y68{bottom:167.800133pt;}
.y21e{bottom:169.424800pt;}
.y142{bottom:169.600133pt;}
.y145{bottom:170.204533pt;}
.y174{bottom:170.780667pt;}
.ye5{bottom:171.383200pt;}
.y229{bottom:171.590533pt;}
.y183{bottom:171.922267pt;}
.y211{bottom:172.010267pt;}
.y1c5{bottom:172.025200pt;}
.y191{bottom:172.867067pt;}
.y278{bottom:172.966667pt;}
.y1dc{bottom:173.331867pt;}
.y1b6{bottom:173.615333pt;}
.ya4{bottom:173.698133pt;}
.y1cb{bottom:175.945733pt;}
.y1d0{bottom:176.617733pt;}
.y257{bottom:177.283600pt;}
.y205{bottom:177.306933pt;}
.y1d7{bottom:177.307867pt;}
.y2a5{bottom:178.905333pt;}
.y261{bottom:179.028000pt;}
.yeb{bottom:179.149600pt;}
.y16a{bottom:180.428533pt;}
.y1bf{bottom:180.646533pt;}
.y49{bottom:180.966667pt;}
.yfb{bottom:181.124000pt;}
.y1e1{bottom:181.646933pt;}
.ya0{bottom:181.698133pt;}
.y21d{bottom:182.224800pt;}
.y141{bottom:183.401333pt;}
.y144{bottom:184.005733pt;}
.y1ca{bottom:184.377733pt;}
.yb6{bottom:185.048533pt;}
.ye4{bottom:187.383200pt;}
.y228{bottom:187.590533pt;}
.y1cf{bottom:187.889733pt;}
.y24d{bottom:188.394000pt;}
.y277{bottom:188.966667pt;}
.ya3{bottom:189.698133pt;}
.y258{bottom:190.115600pt;}
.y13f{bottom:191.205867pt;}
.y24b{bottom:191.732533pt;}
.y1c4{bottom:192.686533pt;}
.y179{bottom:193.134800pt;}
.y1ae{bottom:193.455333pt;}
.y2a4{bottom:194.905333pt;}
.y210{bottom:195.610267pt;}
.y67{bottom:196.738800pt;}
.y140{bottom:197.202533pt;}
.y1db{bottom:197.331867pt;}
.y20e{bottom:197.466267pt;}
.y9f{bottom:197.698133pt;}
.y143{bottom:197.806933pt;}
.y25{bottom:199.028000pt;}
.y48{bottom:200.966667pt;}
.yfa{bottom:201.124000pt;}
.y18e{bottom:201.305733pt;}
.y170{bottom:201.306000pt;}
.y17f{bottom:201.306267pt;}
.y204{bottom:201.306933pt;}
.y1be{bottom:201.307867pt;}
.y25a{bottom:202.283600pt;}
.ye3{bottom:203.383200pt;}
.y227{bottom:203.590533pt;}
.y1e0{bottom:204.766933pt;}
.y276{bottom:204.966667pt;}
.y13e{bottom:205.007200pt;}
.ya2{bottom:205.698133pt;}
.y1c9{bottom:207.497733pt;}
.y24a{bottom:207.732533pt;}
.y151{bottom:208.814667pt;}
.y1e6{bottom:209.902933pt;}
.y259{bottom:210.115600pt;}
.y1f9{bottom:210.347467pt;}
.y2a3{bottom:210.905333pt;}
.y24c{bottom:211.071200pt;}
.y188{bottom:211.905467pt;}
.y1c3{bottom:213.347867pt;}
.y178{bottom:213.470800pt;}
.y9e{bottom:213.698133pt;}
.y224{bottom:214.188000pt;}
.y1df{bottom:217.318933pt;}
.y1c8{bottom:218.649733pt;}
.y13d{bottom:218.808400pt;}
.y24{bottom:219.028000pt;}
.y187{bottom:219.177467pt;}
.y1ef{bottom:219.457600pt;}
.y226{bottom:219.590533pt;}
.y47{bottom:220.966667pt;}
.yf9{bottom:221.124000pt;}
.y25b{bottom:221.283600pt;}
.y1b5{bottom:221.615333pt;}
.ya1{bottom:221.698133pt;}
.y150{bottom:222.615867pt;}
.y177{bottom:223.862800pt;}
.y1ce{bottom:225.185733pt;}
.y223{bottom:225.388000pt;}
.y186{bottom:225.513467pt;}
.y169{bottom:226.076000pt;}
.y1e2{bottom:226.646933pt;}
.y2a2{bottom:226.905333pt;}
.y20d{bottom:227.146267pt;}
.yc1{bottom:227.418267pt;}
.ye2{bottom:228.076133pt;}
.y25f{bottom:229.115600pt;}
.y25d{bottom:232.619600pt;}
.y249{bottom:233.748267pt;}
.y1c2{bottom:234.009200pt;}
.y1f8{bottom:234.347467pt;}
.y225{bottom:235.590533pt;}
.y1ad{bottom:235.593467pt;}
.y13b{bottom:235.857333pt;}
.y222{bottom:236.588000pt;}
.y275{bottom:236.966667pt;}
.y247{bottom:237.086933pt;}
.y25c{bottom:238.283600pt;}
.y14f{bottom:238.955067pt;}
.y23{bottom:239.028000pt;}
.y25e{bottom:240.283600pt;}
.y194{bottom:240.343600pt;}
.yc0{bottom:240.468133pt;}
.y46{bottom:240.966667pt;}
.yf8{bottom:241.124000pt;}
.y1e5{bottom:241.150933pt;}
.y1cd{bottom:241.753733pt;}
.y2a1{bottom:242.905333pt;}
.y9b{bottom:244.060400pt;}
.ye1{bottom:244.076133pt;}
.y13a{bottom:249.658533pt;}
.y9d{bottom:252.060400pt;}
.y14e{bottom:252.756400pt;}
.y274{bottom:252.966667pt;}
.y246{bottom:253.086933pt;}
.ybf{bottom:253.518000pt;}
.y1c1{bottom:254.670533pt;}
.y1e4{bottom:255.982933pt;}
.y248{bottom:256.425467pt;}
.y195{bottom:257.799600pt;}
.y1f7{bottom:258.347467pt;}
.y2a0{bottom:258.905333pt;}
.y22{bottom:259.028000pt;}
.y9a{bottom:260.060400pt;}
.ye0{bottom:260.076133pt;}
.y45{bottom:260.966667pt;}
.yf7{bottom:261.124000pt;}
.y139{bottom:263.459867pt;}
.y1e3{bottom:265.310933pt;}
.y14d{bottom:266.557600pt;}
.ybe{bottom:266.567867pt;}
.y9c{bottom:268.060400pt;}
.y15a{bottom:268.830667pt;}
.y273{bottom:268.966667pt;}
.y1b4{bottom:269.615333pt;}
.yb7{bottom:270.042133pt;}
.y77{bottom:273.866133pt;}
.y212{bottom:274.498267pt;}
.y29f{bottom:274.905333pt;}
.y1b9{bottom:275.509867pt;}
.y99{bottom:276.060400pt;}
.y221{bottom:278.235467pt;}
.y21{bottom:279.028000pt;}
.y245{bottom:279.102667pt;}
.ybd{bottom:279.617867pt;}
.y44{bottom:280.966667pt;}
.yf6{bottom:281.124000pt;}
.y196{bottom:281.679600pt;}
.y1f6{bottom:282.347467pt;}
.y243{bottom:282.441200pt;}
.y272{bottom:284.966667pt;}
.ydf{bottom:285.209867pt;}
.y1ba{bottom:286.133867pt;}
.y1d1{bottom:286.241733pt;}
.y260{bottom:287.033867pt;}
.y1f1{bottom:287.254400pt;}
.y16b{bottom:287.388000pt;}
.y251{bottom:287.590533pt;}
.y1ea{bottom:287.811067pt;}
.y164{bottom:287.944533pt;}
.y15b{bottom:288.106267pt;}
.y29e{bottom:290.905333pt;}
.y1af{bottom:291.033867pt;}
.y1a8{bottom:291.590533pt;}
.y20f{bottom:292.330267pt;}
.y1bb{bottom:294.237867pt;}
.y98{bottom:297.414667pt;}
.y242{bottom:298.441200pt;}
.y20{bottom:299.028000pt;}
.y1e7{bottom:300.182933pt;}
.y43{bottom:300.966667pt;}
.y1cc{bottom:301.041733pt;}
.yf5{bottom:301.124000pt;}
.yde{bottom:301.209867pt;}
.y244{bottom:301.779867pt;}
.ybc{bottom:303.456933pt;}
.y1f5{bottom:306.347467pt;}
.y135{bottom:306.739867pt;}
.y29d{bottom:306.905333pt;}
.y159{bottom:309.082533pt;}
.y88{bottom:309.364667pt;}
.y218{bottom:309.563733pt;}
.y74{bottom:309.921200pt;}
.y14c{bottom:310.614800pt;}
.yb5{bottom:312.778533pt;}
.y97{bottom:313.414667pt;}
.y6f{bottom:314.497200pt;}
.ybb{bottom:316.506933pt;}
.y15c{bottom:318.153467pt;}
.y1f{bottom:319.028000pt;}
.y134{bottom:320.541067pt;}
.y42{bottom:320.966667pt;}
.yf4{bottom:321.124000pt;}
.y29c{bottom:322.905333pt;}
.y23e{bottom:323.134133pt;}
.y14b{bottom:324.416133pt;}
.ydd{bottom:325.335867pt;}
.y217{bottom:326.897067pt;}
.yba{bottom:329.556800pt;}
.y241{bottom:330.126267pt;}
.y271{bottom:332.966667pt;}
.y133{bottom:334.342267pt;}
.y96{bottom:335.210000pt;}
.y158{bottom:335.539200pt;}
.y29b{bottom:338.905333pt;}
.y1e{bottom:339.028000pt;}
.y23d{bottom:339.134133pt;}
.y1ff{bottom:340.931333pt;}
.y41{bottom:340.966667pt;}
.yf3{bottom:341.124000pt;}
.y213{bottom:341.364667pt;}
.y1f2{bottom:341.487867pt;}
.y200{bottom:341.921200pt;}
.y15d{bottom:342.531333pt;}
.yb9{bottom:342.606667pt;}
.y216{bottom:344.230400pt;}
.y240{bottom:347.134133pt;}
.ydc{bottom:348.013067pt;}
.y21c{bottom:348.292267pt;}
.y70{bottom:350.970933pt;}
.y95{bottom:351.210000pt;}
.y17a{bottom:351.254400pt;}
.y63{bottom:351.527467pt;}
.y16c{bottom:351.811067pt;}
.y153{bottom:352.169200pt;}
.y189{bottom:352.395867pt;}
.y17b{bottom:352.952533pt;}
.y197{bottom:353.340800pt;}
.y1e8{bottom:353.805600pt;}
.y18a{bottom:353.897333pt;}
.y1bc{bottom:354.089067pt;}
.y29a{bottom:354.905333pt;}
.y1d2{bottom:355.034000pt;}
.y23c{bottom:355.134133pt;}
.y1d3{bottom:355.307067pt;}
.y1b0{bottom:355.590533pt;}
.yb8{bottom:355.656533pt;}
.y1d{bottom:359.028000pt;}
.y73{bottom:360.966533pt;}
.y40{bottom:360.966667pt;}
.yf2{bottom:361.124000pt;}
.y215{bottom:361.563733pt;}
.y23f{bottom:364.142000pt;}
.y14a{bottom:366.677067pt;}
.ydb{bottom:370.249333pt;}
.y299{bottom:370.905333pt;}
.y154{bottom:371.066800pt;}
.y23b{bottom:371.134133pt;}
.y15e{bottom:373.145600pt;}
.y94{bottom:374.454000pt;}
.y1c{bottom:379.028000pt;}
.y149{bottom:380.478267pt;}
.y72{bottom:380.966533pt;}
.y3f{bottom:380.966667pt;}
.yf1{bottom:381.124000pt;}
.y130{bottom:382.073867pt;}
.yda{bottom:386.249333pt;}
.y298{bottom:386.905333pt;}
.yb4{bottom:387.254400pt;}
.yb2{bottom:387.629600pt;}
.y93{bottom:390.454000pt;}
.y23a{bottom:392.488400pt;}
.y148{bottom:394.279467pt;}
.y238{bottom:395.827067pt;}
.y12f{bottom:395.875067pt;}
.y270{bottom:396.966667pt;}
.y1b{bottom:399.028000pt;}
.y157{bottom:399.602267pt;}
.y71{bottom:400.966533pt;}
.yaf{bottom:400.966667pt;}
.yf0{bottom:401.124000pt;}
.y297{bottom:402.905333pt;}
.y92{bottom:406.454000pt;}
.yd9{bottom:408.485467pt;}
.y26f{bottom:408.966667pt;}
.y237{bottom:411.827067pt;}
.y162{bottom:412.263733pt;}
.y239{bottom:415.165600pt;}
.y296{bottom:418.905333pt;}
.y1a{bottom:419.028000pt;}
.y15f{bottom:420.956533pt;}
.y62{bottom:420.966533pt;}
.y3e{bottom:420.966667pt;}
.yef{bottom:421.124000pt;}
.y26e{bottom:424.966667pt;}
.y156{bottom:426.247867pt;}
.y91{bottom:431.587867pt;}
.yd8{bottom:432.611467pt;}
.y295{bottom:434.905333pt;}
.y236{bottom:437.842800pt;}
.y19{bottom:439.028000pt;}
.y161{bottom:439.854267pt;}
.y147{bottom:440.531867pt;}
.y61{bottom:440.966533pt;}
.yc5{bottom:440.966667pt;}
.y234{bottom:441.181333pt;}
.y132{bottom:442.340800pt;}
.y155{bottom:446.846400pt;}
.y90{bottom:447.587867pt;}
.yd7{bottom:448.611467pt;}
.y294{bottom:450.905333pt;}
.y146{bottom:454.333067pt;}
.y131{bottom:456.142000pt;}
.y26d{bottom:456.966667pt;}
.y233{bottom:457.181333pt;}
.y18{bottom:459.028000pt;}
.y235{bottom:460.520000pt;}
.y60{bottom:460.966533pt;}
.yae{bottom:460.966667pt;}
.y293{bottom:466.905333pt;}
.y8f{bottom:472.721733pt;}
.y26c{bottom:472.966667pt;}
.yd6{bottom:474.186267pt;}
.y101{bottom:476.343467pt;}
.y17{bottom:479.028000pt;}
.y8c{bottom:480.721733pt;}
.y5f{bottom:480.966533pt;}
.y3d{bottom:480.966667pt;}
.y292{bottom:482.905333pt;}
.y232{bottom:486.315200pt;}
.y138{bottom:486.793067pt;}
.y8e{bottom:488.721733pt;}
.y12e{bottom:489.096933pt;}
.yd5{bottom:490.186267pt;}
.y1a7{bottom:491.936000pt;}
.y22f{bottom:492.315200pt;}
.y26b{bottom:492.966667pt;}
.y8b{bottom:496.721733pt;}
.y104{bottom:496.753333pt;}
.y160{bottom:496.925067pt;}
.y231{bottom:498.315200pt;}
.y291{bottom:498.905333pt;}
.y16{bottom:499.028000pt;}
.y137{bottom:500.594267pt;}
.y5e{bottom:500.966533pt;}
.y3c{bottom:500.966667pt;}
.y102{bottom:502.751733pt;}
.y12d{bottom:502.898133pt;}
.y5{bottom:503.942667pt;}
.y22e{bottom:504.315200pt;}
.y8d{bottom:504.721733pt;}
.y26a{bottom:504.966667pt;}
.y230{bottom:510.315200pt;}
.y1a6{bottom:511.936000pt;}
.yd4{bottom:513.871333pt;}
.y136{bottom:514.395467pt;}
.y290{bottom:514.905333pt;}
.y106{bottom:519.025200pt;}
.y15{bottom:519.028000pt;}
.y5d{bottom:520.966533pt;}
.y3b{bottom:520.966667pt;}
.y12c{bottom:522.273067pt;}
.y13c{bottom:524.081200pt;}
.y8a{bottom:528.406800pt;}
.yd3{bottom:529.871333pt;}
.y28f{bottom:530.905333pt;}
.y1a5{bottom:531.936000pt;}
.y4{bottom:534.609333pt;}
.y22d{bottom:536.110533pt;}
.y269{bottom:536.966667pt;}
.y12b{bottom:537.882400pt;}
.y14{bottom:539.028000pt;}
.y10d{bottom:539.846533pt;}
.y5c{bottom:540.966533pt;}
.y3a{bottom:540.966667pt;}
.y28e{bottom:546.905333pt;}
.y118{bottom:549.652667pt;}
.y163{bottom:550.966667pt;}
.yd2{bottom:551.666667pt;}
.y12a{bottom:551.683733pt;}
.y1a4{bottom:551.936000pt;}
.y268{bottom:552.966667pt;}
.y117{bottom:558.986000pt;}
.y13{bottom:559.028000pt;}
.y89{bottom:559.440667pt;}
.yad{bottom:560.458800pt;}
.y5b{bottom:560.966533pt;}
.y39{bottom:560.966667pt;}
.y28d{bottom:562.905333pt;}
.y250{bottom:566.128133pt;}
.y22b{bottom:567.629600pt;}
.yd1{bottom:567.666667pt;}
.y267{bottom:568.966667pt;}
.y1a3{bottom:571.936000pt;}
.y10c{bottom:575.313200pt;}
.y121{bottom:576.056667pt;}
.y116{bottom:578.576667pt;}
.y28c{bottom:578.905333pt;}
.y12{bottom:579.028000pt;}
.y5a{bottom:580.966533pt;}
.y38{bottom:580.966667pt;}
.y3{bottom:585.276000pt;}
.y129{bottom:585.303067pt;}
.y127{bottom:586.845200pt;}
.y266{bottom:588.966667pt;}
.y126{bottom:588.983333pt;}
.yd0{bottom:591.792667pt;}
.y1a2{bottom:591.936000pt;}
.y10f{bottom:594.350000pt;}
.y28b{bottom:594.905333pt;}
.y11{bottom:599.028000pt;}
.y59{bottom:600.966533pt;}
.y37{bottom:600.966667pt;}
.y10b{bottom:610.779867pt;}
.y28a{bottom:610.905333pt;}
.y1e9{bottom:610.966667pt;}
.y1a1{bottom:611.936000pt;}
.ycf{bottom:615.918533pt;}
.y10{bottom:619.028000pt;}
.y11a{bottom:620.007333pt;}
.y125{bottom:620.035333pt;}
.y58{bottom:620.966533pt;}
.y36{bottom:620.966667pt;}
.y6{bottom:624.014267pt;}
.y289{bottom:626.905333pt;}
.y119{bottom:629.340667pt;}
.y124{bottom:631.235333pt;}
.yce{bottom:631.918533pt;}
.y1a0{bottom:631.936000pt;}
.y2{bottom:633.276000pt;}
.yf{bottom:639.028000pt;}
.y57{bottom:640.966533pt;}
.y35{bottom:640.966667pt;}
.y288{bottom:642.905333pt;}
.y10a{bottom:646.246533pt;}
.y19f{bottom:651.936000pt;}
.y113{bottom:653.878000pt;}
.ycd{bottom:656.044533pt;}
.y287{bottom:658.905333pt;}
.ye{bottom:659.028000pt;}
.y56{bottom:660.966533pt;}
.y34{bottom:660.966667pt;}
.y19e{bottom:671.936000pt;}
.y286{bottom:674.905333pt;}
.y112{bottom:676.399333pt;}
.yd{bottom:679.028000pt;}
.y11d{bottom:679.638000pt;}
.y55{bottom:680.966533pt;}
.y33{bottom:680.966667pt;}
.y1{bottom:681.276000pt;}
.y109{bottom:681.713200pt;}
.ycc{bottom:682.060267pt;}
.y111{bottom:685.023333pt;}
.y11f{bottom:688.756667pt;}
.y285{bottom:690.905333pt;}
.y214{bottom:690.966667pt;}
.y19d{bottom:691.936000pt;}
.y11c{bottom:694.123333pt;}
.ycb{bottom:698.060267pt;}
.yc{bottom:699.028000pt;}
.y11e{bottom:699.956667pt;}
.y54{bottom:700.966533pt;}
.y32{bottom:700.966667pt;}
.y11b{bottom:703.456667pt;}
.y284{bottom:706.905333pt;}
.y19c{bottom:711.936000pt;}
.y120{bottom:713.891333pt;}
.y108{bottom:717.179867pt;}
.yb{bottom:719.028000pt;}
.y122{bottom:720.135333pt;}
.y53{bottom:720.966533pt;}
.y31{bottom:720.966667pt;}
.y283{bottom:722.905333pt;}
.yca{bottom:724.076133pt;}
.y10e{bottom:726.939333pt;}
.y19b{bottom:731.936000pt;}
.y110{bottom:732.548667pt;}
.y115{bottom:733.836667pt;}
.y103{bottom:735.370400pt;}
.y2b0{bottom:738.905200pt;}
.y282{bottom:738.905333pt;}
.ya{bottom:739.028000pt;}
.y114{bottom:740.575333pt;}
.y52{bottom:740.966533pt;}
.y30{bottom:740.966667pt;}
.y123{bottom:746.511333pt;}
.yc9{bottom:748.642933pt;}
.y19a{bottom:751.936000pt;}
.y107{bottom:752.646533pt;}
.y2af{bottom:754.905200pt;}
.y281{bottom:754.905333pt;}
.y9{bottom:759.028000pt;}
.y51{bottom:760.966533pt;}
.y2f{bottom:760.966667pt;}
.y2ae{bottom:770.905200pt;}
.y280{bottom:770.905333pt;}
.y199{bottom:771.936000pt;}
.y50{bottom:780.966533pt;}
.y2e{bottom:780.966667pt;}
.y2ad{bottom:786.905200pt;}
.y27f{bottom:786.905333pt;}
.yea{bottom:789.120267pt;}
.yc8{bottom:789.676800pt;}
.y8{bottom:799.028000pt;}
.y4f{bottom:800.966533pt;}
.y2d{bottom:800.966667pt;}
.y198{bottom:801.936000pt;}
.y2ac{bottom:802.905200pt;}
.y27e{bottom:802.905333pt;}
.y7{bottom:854.523867pt;}
.y2c{bottom:854.995867pt;}
.h1e{height:22.624000pt;}
.h24{height:26.394667pt;}
.h1a{height:26.730667pt;}
.h10{height:27.552000pt;}
.h23{height:28.320000pt;}
.h13{height:28.419627pt;}
.h14{height:29.069218pt;}
.h28{height:29.280000pt;}
.h1b{height:30.055947pt;}
.hd{height:30.549333pt;}
.h1c{height:30.742940pt;}
.h18{height:32.028395pt;}
.h12{height:33.600000pt;}
.h16{height:34.272000pt;}
.ha{height:34.368000pt;}
.h2c{height:36.608000pt;}
.h21{height:37.280000pt;}
.hf{height:37.706667pt;}
.hc{height:38.080000pt;}
.hb{height:38.186667pt;}
.h6{height:40.074667pt;}
.h22{height:40.608000pt;}
.h1d{height:42.005333pt;}
.h2b{height:42.624000pt;}
.h25{height:45.632000pt;}
.h8{height:45.824000pt;}
.h2a{height:50.624000pt;}
.h9{height:53.388800pt;}
.h17{height:53.389333pt;}
.h7{height:53.461333pt;}
.h29{height:56.640000pt;}
.h15{height:66.368000pt;}
.h4{height:76.373333pt;}
.h26{height:79.722133pt;}
.h3{height:122.197333pt;}
.h2{height:145.109333pt;}
.h27{height:146.414667pt;}
.h5{height:165.909333pt;}
.h11{height:176.109333pt;}
.h20{height:214.013333pt;}
.h1f{height:214.014667pt;}
.he{height:218.492000pt;}
.h19{height:268.601333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:491.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x7d{left:-0.995600pt;}
.x0{left:0.000000pt;}
.x2b{left:6.610533pt;}
.x3{left:46.595200pt;}
.x2{left:50.231067pt;}
.x7c{left:64.102400pt;}
.xc{left:72.702400pt;}
.x4{left:75.590533pt;}
.x58{left:78.762667pt;}
.x8{left:80.502000pt;}
.x56{left:81.954267pt;}
.x86{left:83.890933pt;}
.x13{left:91.331333pt;}
.x5{left:94.488267pt;}
.x99{left:100.553467pt;}
.x6a{left:102.689600pt;}
.x54{left:104.436133pt;}
.x83{left:106.753733pt;}
.x73{left:107.810000pt;}
.x36{left:109.412933pt;}
.x69{left:112.417600pt;}
.x49{left:113.833333pt;}
.xa{left:115.360667pt;}
.x89{left:117.927467pt;}
.x35{left:118.886267pt;}
.x53{left:119.979067pt;}
.x4a{left:122.688800pt;}
.xd{left:124.368533pt;}
.x59{left:125.899867pt;}
.x8c{left:127.911467pt;}
.x55{left:130.798933pt;}
.x22{left:131.698000pt;}
.x24{left:133.256133pt;}
.x7e{left:135.520400pt;}
.x21{left:140.305200pt;}
.x3e{left:147.875600pt;}
.x57{left:151.733200pt;}
.xb{left:154.614000pt;}
.x2e{left:155.678267pt;}
.x9a{left:157.513467pt;}
.x23{left:158.768000pt;}
.x79{left:160.161733pt;}
.x78{left:161.441733pt;}
.x7{left:162.519733pt;}
.x6b{left:165.025600pt;}
.x1{left:170.078800pt;}
.x41{left:174.736933pt;}
.x12{left:178.260533pt;}
.x14{left:181.553333pt;}
.x34{left:182.959600pt;}
.x8d{left:188.060267pt;}
.x11{left:188.976400pt;}
.x90{left:192.390667pt;}
.x81{left:194.573600pt;}
.x4d{left:195.803867pt;}
.x4c{left:197.166267pt;}
.x8b{left:199.079467pt;}
.x6{left:200.240933pt;}
.x8f{left:201.198533pt;}
.x8a{left:203.602133pt;}
.x51{left:204.993600pt;}
.x4e{left:212.484800pt;}
.x9b{left:217.185467pt;}
.x52{left:218.346933pt;}
.x7a{left:224.993733pt;}
.x85{left:230.060400pt;}
.x6c{left:230.956267pt;}
.x60{left:235.722400pt;}
.x50{left:236.884133pt;}
.x42{left:239.976933pt;}
.x91{left:241.812667pt;}
.x5f{left:244.604267pt;}
.x26{left:247.937333pt;}
.x2a{left:250.527467pt;}
.x5e{left:255.564933pt;}
.x5a{left:262.406267pt;}
.x5c{left:267.659467pt;}
.x28{left:269.819867pt;}
.x8e{left:270.912667pt;}
.x27{left:272.539600pt;}
.x19{left:277.775067pt;}
.x5d{left:280.887733pt;}
.x92{left:287.016800pt;}
.x1a{left:289.939600pt;}
.x38{left:292.588933pt;}
.x1b{left:294.471467pt;}
.x3a{left:299.654267pt;}
.x18{left:301.819600pt;}
.x17{left:304.199733pt;}
.x6d{left:306.188267pt;}
.x7b{left:307.340400pt;}
.x37{left:309.538267pt;}
.x66{left:311.124000pt;}
.x16{left:315.602667pt;}
.x39{left:316.491600pt;}
.x43{left:318.556400pt;}
.x5b{left:320.761867pt;}
.x61{left:325.864133pt;}
.x88{left:328.818933pt;}
.x65{left:332.667333pt;}
.x94{left:334.122933pt;}
.x4f{left:337.222267pt;}
.x31{left:338.331600pt;}
.x93{left:340.722933pt;}
.x25{left:347.917333pt;}
.x84{left:362.871067pt;}
.x77{left:368.076400pt;}
.x15{left:370.524533pt;}
.x1f{left:371.544800pt;}
.x62{left:374.431067pt;}
.x67{left:377.265733pt;}
.x3d{left:379.099600pt;}
.x10{left:382.116400pt;}
.x76{left:383.713733pt;}
.x64{left:386.714533pt;}
.x72{left:388.982000pt;}
.x95{left:390.174933pt;}
.x9{left:391.595333pt;}
.x6e{left:392.598933pt;}
.x63{left:396.730267pt;}
.x68{left:401.643733pt;}
.x20{left:404.856267pt;}
.x3f{left:413.175600pt;}
.x1d{left:415.082267pt;}
.x1e{left:418.523200pt;}
.x1c{left:424.054533pt;}
.x2d{left:426.046267pt;}
.x80{left:429.264533pt;}
.x3b{left:430.731600pt;}
.x44{left:434.378667pt;}
.x82{left:445.493600pt;}
.x29{left:449.438533pt;}
.x33{left:452.048933pt;}
.x4b{left:455.056267pt;}
.x48{left:470.765067pt;}
.x40{left:475.344933pt;}
.x96{left:479.442933pt;}
.xe{left:481.395067pt;}
.x46{left:485.294667pt;}
.x30{left:492.900933pt;}
.x87{left:496.093733pt;}
.x47{left:497.905600pt;}
.x32{left:506.676933pt;}
.x45{left:507.642400pt;}
.x70{left:511.286933pt;}
.x7f{left:512.440400pt;}
.x6f{left:513.462933pt;}
.x71{left:514.553600pt;}
.x3c{left:520.359600pt;}
.x98{left:523.099333pt;}
.x2f{left:524.970267pt;}
.x97{left:529.699200pt;}
.x74{left:535.458000pt;}
.x75{left:537.167733pt;}
.x2c{left:540.405067pt;}
.xf{left:556.985733pt;}
}




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