
    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_eaccc0fa417f4c79bd76f2a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_f3fddc672d6c3b3f765a59a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_e5bf4605c1587bfa5d557689.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_133a6ba8d412bbe1350228d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_58a22410330188b2d2ec3f0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_f1f541389d1712f42017f2ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_07e273e2e71764e7697ffe2b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.829000;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_0ba11d676dede74a44e8f9a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945000;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_201c2ea9f7a856a2b316cee5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.951172;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_5b7f961e85037c043080cf74.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.717285;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_d4ed8b6776776bcd4b7fd782.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_45ce1209eac58b6642b7ed37.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.839000;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_8f19e726d3c8394a89af0abc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.774069;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_133a6ba8d412bbe1350228d6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946000;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_b1d451f4a669af4eea2d7828.woff2')format("woff");}.fff{font-family:fff;line-height:0.946289;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_f48994a523542fd48a2ce81f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.449000;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_14498bb33e647a283e323c31.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_506beda95e067e659bbe6957.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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_e6836d7d8a7e6eeef7a85fa7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.670000;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_b4346d761312d0e5efee4679.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.259000;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_d6853e6ee6c53e037fafce12.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.502000;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_dd1977ee09d1877a5bd819dd.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.857000;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_762f090a0411e381f01f2739.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;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_e1874783cc2850da5a65da4e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;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_2b5468547886d053fd2bafb3.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;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_e1874783cc2850da5a65da4e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;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_06473d06fb6f730673c35507.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;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_e1874783cc2850da5a65da4e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;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_06473d06fb6f730673c35507.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;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_e1874783cc2850da5a65da4e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;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_d4992cef6ca1c75e249c5821.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.946000;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_d6fbb7b598a8c8f436217af3.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.649000;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;}
.m28{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);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1c{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.346319px;}
.v2{vertical-align:19.530000px;}
.v1{vertical-align:23.815396px;}
.v4{vertical-align:32.874000px;}
.v6{vertical-align:36.906000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000060px;}
.lsc{letter-spacing:0.000083px;}
.ls7{letter-spacing:0.017242px;}
.ls12{letter-spacing:0.030570px;}
.lsf{letter-spacing:0.030723px;}
.lsd{letter-spacing:0.042332px;}
.ls19{letter-spacing:0.806976px;}
.ls1d{letter-spacing:1.775347px;}
.ls1f{letter-spacing:2.689920px;}
.ls1c{letter-spacing:3.012710px;}
.ls22{letter-spacing:3.227904px;}
.ls1a{letter-spacing:4.303872px;}
.ls18{letter-spacing:4.841856px;}
.ls1b{letter-spacing:6.455808px;}
.ls21{letter-spacing:6.509606px;}
.ls1e{letter-spacing:10.221696px;}
.ls17{letter-spacing:10.293329px;}
.ls16{letter-spacing:10.335172px;}
.ls3{letter-spacing:10.460700px;}
.ls13{letter-spacing:10.502543px;}
.ls14{letter-spacing:10.628071px;}
.ls2{letter-spacing:13.342003px;}
.ls1{letter-spacing:13.557197px;}
.ls0{letter-spacing:13.610995px;}
.ls15{letter-spacing:14.477609px;}
.lsa{letter-spacing:16.442913px;}
.ls20{letter-spacing:17.645875px;}
.lsb{letter-spacing:18.122413px;}
.ls10{letter-spacing:39.004284px;}
.ls5{letter-spacing:43.677064px;}
.ls11{letter-spacing:64.213660px;}
.ls9{letter-spacing:97.610913px;}
.ls8{letter-spacing:114.584913px;}
.ls6{letter-spacing:215.115355px;}
.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;}
}
.ws119{word-spacing:-36.044928px;}
.ws93{word-spacing:-34.269581px;}
.ws7d{word-spacing:-33.182162px;}
.ws11c{word-spacing:-24.047885px;}
.ws66{word-spacing:-20.194781px;}
.ws80{word-spacing:-15.059748px;}
.ws1{word-spacing:-14.943900px;}
.ws5c{word-spacing:-13.449600px;}
.wsb8{word-spacing:-10.875399px;}
.wsbf{word-spacing:-10.460700px;}
.ws33{word-spacing:-7.940016px;}
.ws94{word-spacing:-5.379840px;}
.ws9f{word-spacing:-4.303872px;}
.ws6c{word-spacing:-4.088678px;}
.ws2b{word-spacing:-3.981082px;}
.ws90{word-spacing:-3.927283px;}
.wsbb{word-spacing:-3.873485px;}
.ws58{word-spacing:-3.765888px;}
.wsbd{word-spacing:-3.640324px;}
.ws9e{word-spacing:-3.604493px;}
.wsda{word-spacing:-3.598481px;}
.wsc0{word-spacing:-3.431110px;}
.ws3{word-spacing:-3.389299px;}
.wscc{word-spacing:-3.389267px;}
.ws5b{word-spacing:-3.335501px;}
.ws4{word-spacing:-3.227904px;}
.ws8{word-spacing:-3.066509px;}
.wsba{word-spacing:-2.958912px;}
.ws117{word-spacing:-2.905114px;}
.ws5f{word-spacing:-2.797517px;}
.ws5a{word-spacing:-2.313331px;}
.ws61{word-spacing:-2.205734px;}
.ws63{word-spacing:-2.151936px;}
.ws7a{word-spacing:-2.098138px;}
.ws10d{word-spacing:-2.050297px;}
.ws3d{word-spacing:-1.990541px;}
.ws43{word-spacing:-1.936742px;}
.ws64{word-spacing:-1.829146px;}
.wsd6{word-spacing:-1.715555px;}
.ws9{word-spacing:-1.667750px;}
.wsf5{word-spacing:-1.631869px;}
.ws25{word-spacing:-1.613952px;}
.ws20{word-spacing:-1.560154px;}
.wsa7{word-spacing:-1.506355px;}
.ws10c{word-spacing:-1.506341px;}
.ws83{word-spacing:-1.344960px;}
.ws84{word-spacing:-1.291162px;}
.ws1e{word-spacing:-1.237363px;}
.ws1d{word-spacing:-1.183565px;}
.ws72{word-spacing:-1.129766px;}
.ws7{word-spacing:-1.075968px;}
.wsc4{word-spacing:-0.878699px;}
.ws2a{word-spacing:-0.806976px;}
.ws19{word-spacing:-0.765130px;}
.wsa4{word-spacing:-0.753178px;}
.ws17{word-spacing:-0.717309px;}
.ws5{word-spacing:-0.699379px;}
.wsfe{word-spacing:-0.669485px;}
.ws8f{word-spacing:-0.645581px;}
.wsf2{word-spacing:-0.627642px;}
.ws41{word-spacing:-0.591782px;}
.ws105{word-spacing:-0.585799px;}
.ws15{word-spacing:-0.526027px;}
.ws39{word-spacing:-0.484186px;}
.ws2f{word-spacing:-0.430387px;}
.ws77{word-spacing:-0.376589px;}
.wsb{word-spacing:-0.322790px;}
.ws2{word-spacing:-0.268992px;}
.wsde{word-spacing:-0.251057px;}
.ws27{word-spacing:-0.215194px;}
.wsd0{word-spacing:-0.209214px;}
.wsd9{word-spacing:-0.167371px;}
.ws6{word-spacing:-0.161395px;}
.wsdc{word-spacing:-0.125528px;}
.ws2c{word-spacing:-0.107597px;}
.ws10a{word-spacing:-0.083686px;}
.ws13{word-spacing:-0.065455px;}
.wse{word-spacing:-0.053798px;}
.wsaf{word-spacing:-0.047821px;}
.wsc2{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.wsc9{word-spacing:0.041843px;}
.ws22{word-spacing:0.053798px;}
.wsdd{word-spacing:0.083686px;}
.ws1f{word-spacing:0.107597px;}
.wse3{word-spacing:0.125528px;}
.ws21{word-spacing:0.161395px;}
.ws114{word-spacing:0.167371px;}
.wse5{word-spacing:0.209214px;}
.ws24{word-spacing:0.215194px;}
.wsff{word-spacing:0.251057px;}
.ws23{word-spacing:0.268992px;}
.ws9c{word-spacing:0.322790px;}
.wsef{word-spacing:0.334742px;}
.wsaa{word-spacing:0.376589px;}
.wsa{word-spacing:0.430387px;}
.ws30{word-spacing:0.484186px;}
.ws100{word-spacing:0.502114px;}
.ws6d{word-spacing:0.537984px;}
.ws3b{word-spacing:0.591782px;}
.ws74{word-spacing:0.645581px;}
.ws9a{word-spacing:0.699379px;}
.wse1{word-spacing:0.711328px;}
.ws62{word-spacing:0.753178px;}
.wsab{word-spacing:0.806976px;}
.ws6e{word-spacing:0.968371px;}
.ws46{word-spacing:1.075968px;}
.wsf7{word-spacing:1.087913px;}
.ws70{word-spacing:1.129766px;}
.ws3a{word-spacing:1.291162px;}
.ws31{word-spacing:1.344960px;}
.wsa3{word-spacing:1.398758px;}
.wse0{word-spacing:1.422655px;}
.ws26{word-spacing:1.452557px;}
.wscb{word-spacing:1.464498px;}
.wsca{word-spacing:1.506341px;}
.ws9d{word-spacing:1.506355px;}
.ws60{word-spacing:1.560154px;}
.wsa2{word-spacing:1.613952px;}
.ws9b{word-spacing:1.667750px;}
.ws3f{word-spacing:1.721549px;}
.ws28{word-spacing:1.775347px;}
.ws10b{word-spacing:1.799240px;}
.wsa5{word-spacing:1.829146px;}
.ws32{word-spacing:1.882944px;}
.ws78{word-spacing:1.936742px;}
.ws57{word-spacing:1.990541px;}
.ws85{word-spacing:2.044339px;}
.ws8d{word-spacing:2.098138px;}
.wsfd{word-spacing:2.133983px;}
.wsa6{word-spacing:2.151936px;}
.ws16{word-spacing:2.199748px;}
.ws98{word-spacing:2.205734px;}
.wsb7{word-spacing:2.211704px;}
.wsae{word-spacing:2.222782px;}
.wsc8{word-spacing:2.343197px;}
.ws6b{word-spacing:2.367130px;}
.ws106{word-spacing:2.385040px;}
.wsd{word-spacing:2.420928px;}
.ws87{word-spacing:2.474726px;}
.wsa9{word-spacing:2.582323px;}
.ws42{word-spacing:2.636122px;}
.ws97{word-spacing:2.689920px;}
.ws95{word-spacing:2.743718px;}
.ws118{word-spacing:2.797517px;}
.ws76{word-spacing:2.851315px;}
.wsad{word-spacing:2.895878px;}
.ws3c{word-spacing:2.905114px;}
.ws5e{word-spacing:2.958912px;}
.ws71{word-spacing:3.012710px;}
.ws7c{word-spacing:3.062665px;}
.ws75{word-spacing:3.120307px;}
.ws6f{word-spacing:3.227904px;}
.wsf8{word-spacing:3.305581px;}
.wsc{word-spacing:3.335501px;}
.ws44{word-spacing:3.443098px;}
.ws3e{word-spacing:3.496896px;}
.ws29{word-spacing:3.604493px;}
.wsf1{word-spacing:3.682166px;}
.wsbc{word-spacing:3.712090px;}
.ws59{word-spacing:3.765888px;}
.ws112{word-spacing:3.807695px;}
.ws8b{word-spacing:3.927283px;}
.ws5d{word-spacing:3.981082px;}
.ws88{word-spacing:4.034880px;}
.ws102{word-spacing:4.142437px;}
.ws8c{word-spacing:4.196275px;}
.wsa0{word-spacing:4.250074px;}
.ws73{word-spacing:4.303872px;}
.wsf{word-spacing:4.411469px;}
.ws110{word-spacing:4.435337px;}
.ws116{word-spacing:4.477180px;}
.ws86{word-spacing:4.519066px;}
.wse4{word-spacing:4.560865px;}
.wsa8{word-spacing:4.572864px;}
.ws45{word-spacing:4.626662px;}
.wsee{word-spacing:4.644551px;}
.ws36{word-spacing:4.735171px;}
.wse2{word-spacing:4.770079px;}
.ws2d{word-spacing:4.788058px;}
.ws2e{word-spacing:4.841856px;}
.wsf9{word-spacing:4.853765px;}
.wsd1{word-spacing:4.937450px;}
.wsa1{word-spacing:4.949453px;}
.ws111{word-spacing:4.979293px;}
.ws109{word-spacing:5.021136px;}
.ws79{word-spacing:5.057050px;}
.ws40{word-spacing:5.272243px;}
.ws99{word-spacing:5.379840px;}
.ws35{word-spacing:5.539871px;}
.ws11b{word-spacing:5.541235px;}
.ws11a{word-spacing:5.595034px;}
.ws96{word-spacing:5.702630px;}
.ws8e{word-spacing:5.917824px;}
.ws89{word-spacing:6.186816px;}
.ws8a{word-spacing:6.240614px;}
.ws91{word-spacing:6.778598px;}
.wsc5{word-spacing:6.820376px;}
.ws92{word-spacing:6.832397px;}
.wsbe{word-spacing:6.945905px;}
.wsed{word-spacing:7.322490px;}
.wse6{word-spacing:7.824604px;}
.wsf0{word-spacing:8.326717px;}
.ws10e{word-spacing:8.368560px;}
.ws1a{word-spacing:8.452246px;}
.wsd5{word-spacing:8.703302px;}
.wsf6{word-spacing:8.786988px;}
.wsf3{word-spacing:9.791215px;}
.ws104{word-spacing:9.833058px;}
.wscf{word-spacing:10.209643px;}
.wsdb{word-spacing:10.251486px;}
.ws37{word-spacing:10.329293px;}
.ws10f{word-spacing:10.335172px;}
.ws1b{word-spacing:10.418857px;}
.wsc1{word-spacing:10.460700px;}
.wscd{word-spacing:10.502543px;}
.wsd7{word-spacing:10.544386px;}
.wsd2{word-spacing:10.586228px;}
.ws108{word-spacing:10.669914px;}
.wsce{word-spacing:10.753600px;}
.ws101{word-spacing:10.920971px;}
.ws18{word-spacing:11.142200px;}
.ws115{word-spacing:11.213870px;}
.wsb0{word-spacing:11.668226px;}
.wsb4{word-spacing:11.716047px;}
.ws14{word-spacing:11.907329px;}
.wsf4{word-spacing:12.008884px;}
.wsfb{word-spacing:12.176255px;}
.wse9{word-spacing:12.510997px;}
.wsfc{word-spacing:12.552840px;}
.wsb2{word-spacing:12.760416px;}
.wsc7{word-spacing:12.762054px;}
.ws107{word-spacing:12.803897px;}
.ws12{word-spacing:13.288205px;}
.ws38{word-spacing:13.395802px;}
.wsdf{word-spacing:13.431539px;}
.ws11{word-spacing:13.557197px;}
.ws56{word-spacing:13.610995px;}
.wsec{word-spacing:13.682596px;}
.ws113{word-spacing:14.226552px;}
.wsd4{word-spacing:14.477609px;}
.ws103{word-spacing:14.561294px;}
.wsc3{word-spacing:15.147094px;}
.wsfa{word-spacing:15.272622px;}
.wsd8{word-spacing:15.481836px;}
.wse7{word-spacing:15.942107px;}
.ws10{word-spacing:16.298195px;}
.wsb5{word-spacing:16.402466px;}
.wse8{word-spacing:17.030020px;}
.wsc6{word-spacing:17.281076px;}
.ws6a{word-spacing:19.259827px;}
.wsd3{word-spacing:19.749802px;}
.wsea{word-spacing:22.929854px;}
.wseb{word-spacing:24.101453px;}
.wsb1{word-spacing:28.105253px;}
.wsb3{word-spacing:37.969731px;}
.ws47{word-spacing:46.320422px;}
.wsac{word-spacing:53.283785px;}
.ws52{word-spacing:65.203661px;}
.ws1c{word-spacing:65.389145px;}
.ws55{word-spacing:70.045517px;}
.ws4a{word-spacing:74.941171px;}
.ws4c{word-spacing:74.994970px;}
.wsb9{word-spacing:75.337021px;}
.wsb6{word-spacing:75.429919px;}
.ws49{word-spacing:79.890624px;}
.ws4e{word-spacing:79.944422px;}
.ws34{word-spacing:96.015130px;}
.ws53{word-spacing:105.068275px;}
.ws51{word-spacing:108.887962px;}
.ws54{word-spacing:111.524083px;}
.ws65{word-spacing:161.270698px;}
.ws67{word-spacing:165.543294px;}
.ws7f{word-spacing:182.478835px;}
.ws68{word-spacing:195.183356px;}
.ws81{word-spacing:221.436359px;}
.ws82{word-spacing:247.390408px;}
.ws7b{word-spacing:272.154953px;}
.ws7e{word-spacing:302.173248px;}
.ws4f{word-spacing:320.261875px;}
.ws50{word-spacing:345.278131px;}
.ws48{word-spacing:405.908928px;}
.ws4b{word-spacing:444.051994px;}
.ws11e{word-spacing:462.018250px;}
.ws11d{word-spacing:494.565811px;}
.ws4d{word-spacing:506.673331px;}
.ws69{word-spacing:957.147175px;}
._20{margin-left:-1318.097326px;}
._29{margin-left:-729.398493px;}
._1e{margin-left:-695.595826px;}
._8{margin-left:-662.956434px;}
._7{margin-left:-643.056096px;}
._21{margin-left:-437.639057px;}
._1d{margin-left:-414.215209px;}
._1f{margin-left:-412.868897px;}
._23{margin-left:-18.122413px;}
._22{margin-left:-5.057050px;}
._3{margin-left:-3.927290px;}
._0{margin-left:-2.892187px;}
._2{margin-left:-1.075961px;}
._1{width:1.362893px;}
._4{width:2.677954px;}
._12{width:3.873485px;}
._39{width:5.864026px;}
._2e{width:7.525771px;}
._38{width:9.372773px;}
._35{width:11.040566px;}
._5{width:12.535027px;}
._2d{width:13.981356px;}
._2c{width:15.105251px;}
._24{width:16.139520px;}
._25{width:18.022464px;}
._30{width:20.921400px;}
._28{width:23.690231px;}
._32{width:25.021994px;}
._37{width:26.031256px;}
._36{width:27.532562px;}
._31{width:32.470013px;}
._2f{width:37.310639px;}
._26{width:39.004284px;}
._2a{width:40.796730px;}
._27{width:48.868823px;}
._2b{width:58.203335px;}
._b{width:62.645270px;}
._9{width:65.454600px;}
._33{width:77.534708px;}
._f{width:78.922253px;}
._e{width:83.871706px;}
._34{width:89.841526px;}
._11{width:96.137741px;}
._d{width:100.334016px;}
._10{width:122.229965px;}
._c{width:127.179418px;}
._19{width:151.455230px;}
._1c{width:158.812877px;}
._15{width:198.408499px;}
._18{width:200.560435px;}
._17{width:218.959488px;}
._16{width:263.450765px;}
._14{width:371.998003px;}
._a{width:394.772659px;}
._1a{width:402.423998px;}
._1b{width:475.362662px;}
._13{width:615.346078px;}
._6{width:945.730966px;}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(38,38,38);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:26.196936px;}
.fs8{font-size:28.578475px;}
.fse{font-size:39.261370px;}
.fsa{font-size:39.451800px;}
.fsd{font-size:39.458032px;}
.fsb{font-size:40.389562px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs7{font-size:54.000000px;}
.fsc{font-size:54.367323px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y169{bottom:1.908537px;}
.y15c{bottom:1.918097px;}
.ycb{bottom:3.858276px;}
.y10d{bottom:8.099974px;}
.y15a{bottom:14.096340px;}
.y168{bottom:14.574143px;}
.y51{bottom:16.874139px;}
.ycf{bottom:21.360419px;}
.yd4{bottom:21.696999px;}
.y62{bottom:22.827988px;}
.y63{bottom:23.423373px;}
.y50{bottom:27.591068px;}
.y52{bottom:28.781837px;}
.y16a{bottom:34.833397px;}
.yf8{bottom:34.885540px;}
.y17d{bottom:35.004616px;}
.y159{bottom:36.534730px;}
.y61{bottom:37.712611px;}
.y15d{bottom:37.819520px;}
.y53{bottom:38.903381px;}
.y4a{bottom:42.475690px;}
.y47{bottom:43.905000px;}
.y179{bottom:48.691354px;}
.y18b{bottom:48.867162px;}
.yd0{bottom:56.028127px;}
.y64{bottom:57.360313px;}
.y65{bottom:57.955698px;}
.y178{bottom:58.779342px;}
.y18a{bottom:58.955149px;}
.y158{bottom:58.973119px;}
.yf7{bottom:61.365067px;}
.y177{bottom:61.503328px;}
.y189{bottom:61.686019px;}
.y16b{bottom:63.304450px;}
.y162{bottom:63.434447px;}
.y17e{bottom:63.490964px;}
.y59{bottom:65.695701px;}
.y67{bottom:69.268011px;}
.y171{bottom:71.597183px;}
.y60{bottom:72.244935px;}
.y172{bottom:72.561876px;}
.y58{bottom:72.840320px;}
.y15e{bottom:73.720943px;}
.y66{bottom:78.198784px;}
.y5e{bottom:79.389554px;}
.y15b{bottom:80.834370px;}
.y157{bottom:81.411508px;}
.y68{bottom:81.771094px;}
.y100{bottom:87.492472px;}
.y57{bottom:87.724943px;}
.y173{bottom:88.854851px;}
.yf9{bottom:91.716642px;}
.y16c{bottom:91.775502px;}
.y17f{bottom:91.977313px;}
.y5a{bottom:95.464946px;}
.y184{bottom:96.010015px;}
.y106{bottom:97.474547px;}
.y4e{bottom:98.441871px;}
.y56{bottom:102.609565px;}
.y156{bottom:103.849897px;}
.y4c{bottom:104.395720px;}
.y5d{bottom:109.158799px;}
.yff{bottom:109.349799px;}
.y15f{bottom:109.622365px;}
.y55{bottom:114.517263px;}
.yd2{bottom:114.929572px;}
.y4d{bottom:115.112648px;}
.y101{bottom:115.220457px;}
.y4b{bottom:115.708033px;}
.y17b{bottom:118.280654px;}
.yfa{bottom:119.444627px;}
.y16d{bottom:120.246554px;}
.y180{bottom:120.463661px;}
.yd3{bottom:120.651427px;}
.y107{bottom:125.202532px;}
.y5b{bottom:125.234191px;}
.y155{bottom:126.288286px;}
.y5f{bottom:126.424961px;}
.y2e{bottom:126.979500px;}
.y46{bottom:129.603000px;}
.y17a{bottom:132.011771px;}
.y5c{bottom:138.928044px;}
.y2d{bottom:138.934500px;}
.y54{bottom:141.904969px;}
.y4f{bottom:142.500353px;}
.y102{bottom:142.948442px;}
.y185{bottom:143.391236px;}
.y93{bottom:143.416500px;}
.y160{bottom:145.523788px;}
.y45{bottom:146.041500px;}
.yfb{bottom:147.172612px;}
.y16e{bottom:148.717606px;}
.y154{bottom:148.726676px;}
.yce{bottom:148.924120px;}
.y181{bottom:148.950010px;}
.y131{bottom:149.868000px;}
.y2c{bottom:150.889500px;}
.y108{bottom:152.930517px;}
.y19a{bottom:154.998000px;}
.yd6{bottom:159.358091px;}
.y92{bottom:159.855000px;}
.y44{bottom:162.480000px;}
.y1e1{bottom:162.844500px;}
.y2b{bottom:164.040000px;}
.y130{bottom:166.306500px;}
.yca{bottom:167.099423px;}
.yd1{bottom:168.445742px;}
.y103{bottom:170.676427px;}
.y175{bottom:171.149177px;}
.y153{bottom:171.165065px;}
.y1e0{bottom:174.799500px;}
.yfc{bottom:174.900597px;}
.y91{bottom:176.293500px;}
.y16f{bottom:177.188659px;}
.y2a{bottom:177.190500px;}
.y182{bottom:177.436358px;}
.y43{bottom:178.918500px;}
.y109{bottom:180.658502px;}
.y161{bottom:181.425211px;}
.y12f{bottom:182.745000px;}
.ycc{bottom:185.611306px;}
.y186{bottom:185.925635px;}
.yd7{bottom:185.947886px;}
.y1df{bottom:186.754500px;}
.y29{bottom:189.145500px;}
.y151{bottom:191.781437px;}
.y90{bottom:192.732000px;}
.yd5{bottom:194.025798px;}
.y42{bottom:195.357000px;}
.y199{bottom:196.054500px;}
.y104{bottom:198.404412px;}
.y1de{bottom:198.709500px;}
.y187{bottom:198.975408px;}
.y12e{bottom:199.183500px;}
.y174{bottom:201.269024px;}
.yfd{bottom:202.628582px;}
.y170{bottom:205.659711px;}
.y183{bottom:205.922707px;}
.y10a{bottom:208.386487px;}
.y8f{bottom:209.170500px;}
.ycd{bottom:209.508464px;}
.y1dd{bottom:210.664500px;}
.y41{bottom:211.795500px;}
.y198{bottom:212.493000px;}
.y12d{bottom:215.622000px;}
.y176{bottom:216.670563px;}
.y188{bottom:216.936618px;}
.y152{bottom:221.280209px;}
.y1dc{bottom:222.619500px;}
.y8e{bottom:225.609000px;}
.y105{bottom:226.132397px;}
.y40{bottom:228.234000px;}
.y197{bottom:228.931500px;}
.yfe{bottom:230.356567px;}
.y12c{bottom:232.060500px;}
.y1db{bottom:234.576000px;}
.y10b{bottom:236.114472px;}
.y8d{bottom:242.047500px;}
.y3f{bottom:244.672500px;}
.y1da{bottom:246.531000px;}
.y12b{bottom:248.499000px;}
.y196{bottom:249.480000px;}
.y8c{bottom:258.486000px;}
.y3e{bottom:261.109500px;}
.y12a{bottom:264.937500px;}
.y28{bottom:268.567500px;}
.y10c{bottom:270.031213px;}
.y1d9{bottom:270.441000px;}
.y8b{bottom:274.924500px;}
.y3d{bottom:277.548000px;}
.y129{bottom:281.374500px;}
.y1d8{bottom:282.396000px;}
.y27{bottom:283.512000px;}
.y1f3{bottom:286.711500px;}
.y195{bottom:290.536500px;}
.y8a{bottom:291.363000px;}
.y3c{bottom:293.986500px;}
.y1d7{bottom:294.351000px;}
.y1f1{bottom:295.938000px;}
.y128{bottom:297.813000px;}
.y26{bottom:298.455000px;}
.y1f2{bottom:305.043000px;}
.y1d6{bottom:306.306000px;}
.y194{bottom:306.975000px;}
.y89{bottom:307.800000px;}
.y3b{bottom:310.425000px;}
.yf5{bottom:311.910000px;}
.y25{bottom:313.399500px;}
.y127{bottom:314.251500px;}
.y1d5{bottom:318.261000px;}
.y1f0{bottom:321.573000px;}
.y193{bottom:323.412000px;}
.y88{bottom:324.238500px;}
.y3a{bottom:326.863500px;}
.y24{bottom:328.342500px;}
.y190{bottom:328.348500px;}
.y1d4{bottom:330.216000px;}
.y126{bottom:330.690000px;}
.y1ee{bottom:330.799500px;}
.y192{bottom:339.850500px;}
.y1ef{bottom:339.904500px;}
.y87{bottom:340.677000px;}
.y1d3{bottom:342.172500px;}
.y23{bottom:343.287000px;}
.y39{bottom:343.302000px;}
.y14e{bottom:344.787000px;}
.y125{bottom:347.128500px;}
.yf4{bottom:349.345500px;}
.y1d2{bottom:354.127500px;}
.y191{bottom:356.289000px;}
.y86{bottom:357.115500px;}
.y38{bottom:359.740500px;}
.y124{bottom:363.567000px;}
.yf3{bottom:365.784000px;}
.y1d1{bottom:366.082500px;}
.y1ed{bottom:367.353000px;}
.y18f{bottom:372.727500px;}
.y85{bottom:373.554000px;}
.y22{bottom:375.096000px;}
.y37{bottom:376.179000px;}
.yb9{bottom:377.664000px;}
.y1d0{bottom:378.037500px;}
.y123{bottom:380.005500px;}
.yf2{bottom:382.221000px;}
.y1ec{bottom:383.791500px;}
.y18e{bottom:389.166000px;}
.y84{bottom:389.992500px;}
.y14d{bottom:390.873000px;}
.y36{bottom:392.617500px;}
.y14f{bottom:394.102500px;}
.y21{bottom:395.643000px;}
.y122{bottom:396.444000px;}
.y1eb{bottom:400.228500px;}
.y1cf{bottom:401.947500px;}
.yf1{bottom:402.769500px;}
.y18d{bottom:405.604500px;}
.y83{bottom:406.431000px;}
.y14c{bottom:407.311500px;}
.y35{bottom:409.056000px;}
.yb8{bottom:409.957500px;}
.y121{bottom:412.882500px;}
.y1ce{bottom:413.902500px;}
.y1ea{bottom:416.667000px;}
.y82{bottom:422.869500px;}
.y14b{bottom:423.750000px;}
.y34{bottom:425.494500px;}
.y1cd{bottom:425.857500px;}
.yb7{bottom:426.396000px;}
.y120{bottom:429.321000px;}
.y1e9{bottom:433.105500px;}
.y20{bottom:433.171500px;}
.y1cc{bottom:437.812500px;}
.y81{bottom:439.308000px;}
.y14a{bottom:440.188500px;}
.yf0{bottom:440.205000px;}
.y33{bottom:441.931500px;}
.yb6{bottom:442.834500px;}
.y11f{bottom:445.759500px;}
.y18c{bottom:447.895500px;}
.y1e8{bottom:449.544000px;}
.y1f{bottom:449.610000px;}
.y1cb{bottom:449.769000px;}
.y80{bottom:455.746500px;}
.y149{bottom:456.627000px;}
.yef{bottom:456.642000px;}
.y32{bottom:458.370000px;}
.yb5{bottom:459.273000px;}
.y1ca{bottom:461.724000px;}
.y11e{bottom:462.196500px;}
.y1e7{bottom:465.982500px;}
.y1e{bottom:466.048500px;}
.y7f{bottom:472.185000px;}
.y148{bottom:473.064000px;}
.yee{bottom:473.080500px;}
.y1c9{bottom:473.679000px;}
.y31{bottom:474.808500px;}
.yb4{bottom:475.711500px;}
.y11d{bottom:478.635000px;}
.y17c{bottom:481.818000px;}
.y1e6{bottom:482.421000px;}
.y1c8{bottom:485.634000px;}
.y1d{bottom:486.595500px;}
.y7e{bottom:488.622000px;}
.y147{bottom:489.502500px;}
.yed{bottom:489.519000px;}
.y30{bottom:491.247000px;}
.yb3{bottom:492.150000px;}
.y11c{bottom:495.073500px;}
.y1c7{bottom:497.589000px;}
.y1e5{bottom:498.859500px;}
.y167{bottom:501.246000px;}
.y7d{bottom:505.060500px;}
.y146{bottom:505.941000px;}
.yec{bottom:505.957500px;}
.y2f{bottom:507.685500px;}
.yb2{bottom:508.588500px;}
.y1c6{bottom:509.544000px;}
.yd9{bottom:511.096500px;}
.y11b{bottom:511.512000px;}
.y1e4{bottom:515.298000px;}
.y7c{bottom:521.499000px;}
.y145{bottom:522.379500px;}
.yeb{bottom:522.396000px;}
.y1c{bottom:524.124000px;}
.yb1{bottom:525.025500px;}
.y132{bottom:525.609000px;}
.yd8{bottom:527.535000px;}
.y11a{bottom:527.950500px;}
.y1c5{bottom:533.454000px;}
.y1e3{bottom:535.845000px;}
.y7b{bottom:537.937500px;}
.y144{bottom:538.818000px;}
.yea{bottom:538.834500px;}
.y1b{bottom:540.562500px;}
.yb0{bottom:541.464000px;}
.y119{bottom:544.389000px;}
.y1c4{bottom:545.409000px;}
.y7a{bottom:554.376000px;}
.y143{bottom:555.256500px;}
.ye9{bottom:555.273000px;}
.yc9{bottom:556.974437px;}
.y1a{bottom:557.001000px;}
.y1c3{bottom:557.365500px;}
.yaf{bottom:557.902500px;}
.y1e2{bottom:559.383000px;}
.y118{bottom:560.827500px;}
.y1c2{bottom:569.320500px;}
.y79{bottom:570.814500px;}
.y142{bottom:571.695000px;}
.ye8{bottom:571.711500px;}
.y19{bottom:573.439500px;}
.yae{bottom:574.341000px;}
.y117{bottom:577.266000px;}
.y1c1{bottom:581.275500px;}
.y78{bottom:587.253000px;}
.y141{bottom:588.133500px;}
.ye7{bottom:588.150000px;}
.y18{bottom:589.878000px;}
.yad{bottom:590.779500px;}
.y1c0{bottom:593.230500px;}
.y116{bottom:593.704500px;}
.y77{bottom:603.691500px;}
.y140{bottom:604.572000px;}
.ye6{bottom:604.588500px;}
.y1bf{bottom:605.185500px;}
.y17{bottom:606.315000px;}
.yac{bottom:607.218000px;}
.y115{bottom:610.143000px;}
.y1be{bottom:617.140500px;}
.y76{bottom:620.130000px;}
.y13f{bottom:621.010500px;}
.ye5{bottom:621.025500px;}
.y16{bottom:622.753500px;}
.yab{bottom:623.656500px;}
.y114{bottom:626.580000px;}
.y1bd{bottom:629.095500px;}
.y75{bottom:636.568500px;}
.y13e{bottom:637.449000px;}
.ye4{bottom:637.464000px;}
.y15{bottom:639.192000px;}
.yaa{bottom:640.095000px;}
.y1bc{bottom:641.050500px;}
.y113{bottom:643.018500px;}
.y74{bottom:653.005500px;}
.y13d{bottom:653.886000px;}
.ye3{bottom:653.902500px;}
.y14{bottom:655.630500px;}
.ya9{bottom:656.533500px;}
.y112{bottom:659.457000px;}
.y1bb{bottom:664.962000px;}
.y73{bottom:669.444000px;}
.y13c{bottom:670.324500px;}
.ye1{bottom:670.341000px;}
.y13{bottom:672.069000px;}
.ya8{bottom:672.972000px;}
.ye2{bottom:675.223500px;}
.y111{bottom:675.895500px;}
.y1ba{bottom:676.917000px;}
.y72{bottom:685.882500px;}
.y13b{bottom:686.763000px;}
.ye0{bottom:686.779500px;}
.y12{bottom:688.507500px;}
.y1b9{bottom:688.872000px;}
.ya7{bottom:689.409000px;}
.y110{bottom:692.334000px;}
.y1b8{bottom:700.827000px;}
.y71{bottom:702.321000px;}
.y13a{bottom:703.201500px;}
.ydf{bottom:703.218000px;}
.y11{bottom:704.946000px;}
.ya6{bottom:705.847500px;}
.y10f{bottom:708.772500px;}
.y1b7{bottom:712.782000px;}
.y70{bottom:718.759500px;}
.y139{bottom:719.640000px;}
.yde{bottom:719.656500px;}
.y10{bottom:721.384500px;}
.ya5{bottom:722.286000px;}
.y1b6{bottom:724.737000px;}
.y138{bottom:736.078500px;}
.ydd{bottom:736.095000px;}
.y1b5{bottom:736.692000px;}
.yf{bottom:737.823000px;}
.ya4{bottom:738.724500px;}
.y6f{bottom:739.308000px;}
.y1b4{bottom:748.647000px;}
.y10e{bottom:751.063500px;}
.y166{bottom:751.104000px;}
.y137{bottom:752.517000px;}
.ydc{bottom:752.533500px;}
.ye{bottom:754.261500px;}
.ya3{bottom:755.163000px;}
.y1b3{bottom:760.602000px;}
.y136{bottom:768.955500px;}
.ydb{bottom:768.972000px;}
.yd{bottom:770.700000px;}
.y6e{bottom:771.582000px;}
.ya2{bottom:771.601500px;}
.y1b2{bottom:772.558500px;}
.yf6{bottom:780.504000px;}
.y1b1{bottom:784.513500px;}
.y165{bottom:785.028000px;}
.y135{bottom:785.394000px;}
.yda{bottom:785.409000px;}
.yc{bottom:787.137000px;}
.y6d{bottom:788.020500px;}
.y1b0{bottom:796.468500px;}
.y164{bottom:799.971000px;}
.y134{bottom:801.832500px;}
.yc8{bottom:801.847500px;}
.y6c{bottom:804.459000px;}
.yb{bottom:807.685500px;}
.y1af{bottom:808.423500px;}
.y163{bottom:814.915500px;}
.yc7{bottom:818.286000px;}
.y1ae{bottom:820.378500px;}
.y6b{bottom:820.897500px;}
.y1ad{bottom:832.333500px;}
.ya1{bottom:833.977500px;}
.y150{bottom:834.342000px;}
.yc6{bottom:834.724500px;}
.ya{bottom:837.663000px;}
.y133{bottom:844.123500px;}
.y1ac{bottom:844.288500px;}
.ya0{bottom:850.416000px;}
.y9{bottom:855.595500px;}
.y1ab{bottom:856.243500px;}
.y6a{bottom:865.263000px;}
.y9f{bottom:866.854500px;}
.y1aa{bottom:868.198500px;}
.y8{bottom:873.528000px;}
.y1a9{bottom:880.155000px;}
.y69{bottom:881.701500px;}
.y9e{bottom:889.669500px;}
.y7{bottom:891.462000px;}
.y1a8{bottom:892.110000px;}
.yc5{bottom:894.949500px;}
.y1a7{bottom:904.065000px;}
.y9d{bottom:906.108000px;}
.y49{bottom:911.336517px;}
.yc4{bottom:913.479000px;}
.y1a6{bottom:916.020000px;}
.y9c{bottom:918.261000px;}
.y6{bottom:925.240500px;}
.y1a5{bottom:927.975000px;}
.yc3{bottom:930.516000px;}
.y9b{bottom:934.699500px;}
.yc0{bottom:938.734500px;}
.y1a4{bottom:939.930000px;}
.y5{bottom:943.173000px;}
.ybf{bottom:946.785000px;}
.yc2{bottom:946.954500px;}
.y9a{bottom:951.138000px;}
.y1a3{bottom:951.885000px;}
.y4{bottom:961.105500px;}
.yc1{bottom:963.393000px;}
.y1a2{bottom:963.840000px;}
.y99{bottom:967.576500px;}
.y1a1{bottom:975.795000px;}
.y3{bottom:979.039500px;}
.ybe{bottom:980.428500px;}
.y98{bottom:984.015000px;}
.y1a0{bottom:987.751500px;}
.ybd{bottom:997.464000px;}
.y19f{bottom:999.706500px;}
.y97{bottom:1000.453500px;}
.y19e{bottom:1011.661500px;}
.yba{bottom:1013.734500px;}
.ybc{bottom:1013.902500px;}
.y2{bottom:1014.675000px;}
.y96{bottom:1016.892000px;}
.y19d{bottom:1023.616500px;}
.ybb{bottom:1030.341000px;}
.y95{bottom:1033.330500px;}
.y19c{bottom:1035.571500px;}
.y1{bottom:1044.562500px;}
.y19b{bottom:1047.526500px;}
.y94{bottom:1050.366000px;}
.y48{bottom:1086.979500px;}
.h17{height:17.319340px;}
.hf{height:18.854630px;}
.h1a{height:20.766182px;}
.hd{height:21.057089px;}
.h12{height:27.931874px;}
.h20{height:29.446027px;}
.h1d{height:29.593524px;}
.ha{height:29.624702px;}
.h15{height:29.700528px;}
.h16{height:31.046847px;}
.h1e{height:32.518008px;}
.h9{height:33.856985px;}
.h8{height:34.430832px;}
.h1b{height:35.399347px;}
.h10{height:35.775936px;}
.hb{height:37.152000px;}
.h5{height:38.089267px;}
.h7{height:38.573453px;}
.h6{height:38.734848px;}
.h19{height:40.775492px;}
.h3{height:42.321125px;}
.he{height:44.872485px;}
.h4{height:47.127312px;}
.h11{height:47.461874px;}
.h2{height:50.785690px;}
.h13{height:71.641267px;}
.h1{height:72.098095px;}
.h21{height:74.995267px;}
.hc{height:151.133436px;}
.h14{height:221.133927px;}
.h1f{height:226.993536px;}
.h1c{height:228.130560px;}
.h18{height:281.969390px;}
.h0{height:1188.000000px;}
.w5{width:226.993536px;}
.w4{width:264.816599px;}
.w2{width:360.367128px;}
.w1{width:360.374323px;}
.w3{width:756.629648px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2d{left:4.516681px;}
.x107{left:6.850351px;}
.xab{left:9.438769px;}
.x7f{left:11.775607px;}
.x82{left:14.289437px;}
.x37{left:15.624330px;}
.x32{left:17.801206px;}
.x106{left:21.250899px;}
.xa8{left:25.724423px;}
.x10f{left:32.853937px;}
.xaa{left:46.263235px;}
.xa7{left:47.320389px;}
.x10c{left:49.388761px;}
.x108{left:53.224971px;}
.x115{left:55.113281px;}
.xa9{left:56.910183px;}
.xa6{left:57.967337px;}
.x3a{left:61.366636px;}
.xa5{left:63.290811px;}
.x113{left:64.960622px;}
.x114{left:75.103138px;}
.x38{left:77.535057px;}
.x103{left:79.142901px;}
.xf{left:80.697000px;}
.x110{left:82.775817px;}
.x81{left:84.971172px;}
.x111{left:86.119295px;}
.xa4{left:91.379071px;}
.xf8{left:94.147500px;}
.x47{left:95.641500px;}
.x1{left:99.193500px;}
.x105{left:104.246708px;}
.x34{left:106.615891px;}
.x35{left:111.444088px;}
.xf2{left:112.533000px;}
.xcc{left:113.998500px;}
.x4f{left:121.045500px;}
.xd5{left:124.543500px;}
.x11{left:127.207500px;}
.x49{left:129.144000px;}
.x88{left:131.862000px;}
.x112{left:133.286774px;}
.x85{left:134.443500px;}
.x48{left:140.376000px;}
.x4a{left:141.652500px;}
.x45{left:143.071500px;}
.x12{left:144.340500px;}
.x10{left:150.282000px;}
.xd6{left:151.443000px;}
.x3b{left:153.055913px;}
.x39{left:154.544376px;}
.x46{left:155.578500px;}
.x84{left:158.839895px;}
.x50{left:160.567500px;}
.x7e{left:162.952478px;}
.xd0{left:164.667000px;}
.x4{left:167.557500px;}
.xac{left:169.921272px;}
.x10a{left:171.624000px;}
.x56{left:174.844500px;}
.x42{left:175.927500px;}
.xc{left:177.697500px;}
.x36{left:180.545948px;}
.x57{left:181.572000px;}
.xae{left:184.188847px;}
.x51{left:187.053000px;}
.x6{left:188.359500px;}
.xd1{left:191.566500px;}
.xc6{left:193.505083px;}
.x116{left:195.080515px;}
.xfa{left:196.167000px;}
.xd2{left:197.439000px;}
.x3{left:199.357500px;}
.x33{left:201.775141px;}
.x104{left:205.056915px;}
.x30{left:210.110529px;}
.xb{left:212.830500px;}
.xcd{left:215.368500px;}
.xad{left:217.684850px;}
.x117{left:222.651000px;}
.x10e{left:225.261000px;}
.x80{left:226.334640px;}
.xc7{left:228.744000px;}
.xa{left:229.939500px;}
.xf3{left:231.622500px;}
.x7b{left:234.171000px;}
.x5{left:237.958500px;}
.x109{left:239.482863px;}
.xce{left:240.784500px;}
.x58{left:245.802000px;}
.x40{left:251.099058px;}
.x41{left:256.857550px;}
.x31{left:259.927503px;}
.x74{left:262.663500px;}
.xaf{left:264.482534px;}
.xd3{left:266.467500px;}
.xda{left:273.352500px;}
.x86{left:277.278000px;}
.xdb{left:278.701500px;}
.xb7{left:280.921446px;}
.xf4{left:283.063500px;}
.x3f{left:284.142920px;}
.x3c{left:285.231361px;}
.xb2{left:286.309652px;}
.xb6{left:287.610254px;}
.x87{left:289.786500px;}
.xb1{left:290.954657px;}
.x43{left:293.424000px;}
.xb3{left:294.484861px;}
.x73{left:296.044500px;}
.x83{left:298.362693px;}
.x7c{left:300.539943px;}
.x7d{left:301.717972px;}
.x2{left:303.040500px;}
.xc8{left:305.077500px;}
.xb4{left:307.490875px;}
.x3e{left:308.758365px;}
.xb5{left:310.835279px;}
.x2e{left:314.302887px;}
.x3d{left:316.693732px;}
.xd7{left:321.729000px;}
.x75{left:323.556000px;}
.x2f{left:325.419842px;}
.xc9{left:331.615500px;}
.xd4{left:333.715500px;}
.xf7{left:337.537500px;}
.xe0{left:344.169000px;}
.xf5{left:347.397000px;}
.xe1{left:348.492000px;}
.x52{left:350.100000px;}
.x4b{left:352.591500px;}
.x53{left:357.735000px;}
.xf9{left:359.376000px;}
.xd8{left:362.079000px;}
.xde{left:363.139500px;}
.xca{left:364.878000px;}
.x89{left:369.216000px;}
.x44{left:376.959000px;}
.xd9{left:380.544000px;}
.x8a{left:381.724500px;}
.x54{left:384.634500px;}
.xb0{left:387.013361px;}
.x4c{left:392.940000px;}
.xdd{left:394.233000px;}
.xdc{left:395.466000px;}
.xf6{left:397.356000px;}
.x4d{left:399.244500px;}
.x118{left:401.536500px;}
.xcb{left:405.226500px;}
.xdf{left:406.536000px;}
.xcf{left:412.105500px;}
.x55{left:417.531000px;}
.xb8{left:428.525317px;}
.xb9{left:430.036093px;}
.x4e{left:439.593000px;}
.x2c{left:448.875000px;}
.x77{left:456.324000px;}
.x78{left:467.830500px;}
.xbb{left:469.831258px;}
.x13{left:476.932500px;}
.x11e{left:480.726000px;}
.x11b{left:481.797000px;}
.x76{left:484.144500px;}
.x1f{left:491.877000px;}
.x10b{left:497.949000px;}
.xbc{left:499.202146px;}
.x59{left:500.590500px;}
.xba{left:505.076323px;}
.x1a{left:506.631000px;}
.x63{left:507.889500px;}
.x11c{left:509.935500px;}
.x102{left:511.270500px;}
.x8b{left:513.532500px;}
.x10d{left:514.944000px;}
.x5e{left:517.281000px;}
.x1b{left:519.138000px;}
.xa3{left:520.591500px;}
.x97{left:523.147500px;}
.x6b{left:524.148000px;}
.x8c{left:526.041000px;}
.xbe{left:527.505001px;}
.xf0{left:531.141000px;}
.x11a{left:533.838000px;}
.x16{left:536.194500px;}
.x95{left:538.567500px;}
.x17{left:542.448000px;}
.x5f{left:544.761000px;}
.x70{left:547.150500px;}
.x6c{left:549.696000px;}
.x98{left:553.069500px;}
.xbd{left:554.205808px;}
.xe{left:555.835500px;}
.x8{left:557.427000px;}
.x9f{left:559.723500px;}
.x11d{left:564.139500px;}
.xa0{left:565.977000px;}
.x1e{left:568.383000px;}
.xe2{left:572.547000px;}
.x60{left:574.030500px;}
.xf1{left:576.006000px;}
.x9b{left:579.363000px;}
.xe7{left:581.065500px;}
.x20{left:584.971500px;}
.xd{left:589.753500px;}
.x7{left:591.190500px;}
.x68{left:594.234000px;}
.xe8{left:595.357500px;}
.x21{left:597.480000px;}
.xe9{left:601.065000px;}
.xbf{left:603.139557px;}
.x22{left:605.158500px;}
.x9{left:607.294500px;}
.x96{left:609.187500px;}
.x61{left:610.893000px;}
.x6d{left:615.592500px;}
.x23{left:617.665500px;}
.x64{left:620.292000px;}
.xc0{left:622.414171px;}
.xee{left:624.249000px;}
.x24{left:625.344000px;}
.x79{left:626.476500px;}
.xfe{left:628.906500px;}
.x91{left:630.604500px;}
.x71{left:632.520000px;}
.x7a{left:635.340000px;}
.x25{left:637.852500px;}
.x8f{left:638.893500px;}
.x62{left:640.827000px;}
.x65{left:644.517000px;}
.x26{left:645.529500px;}
.xea{left:646.605000px;}
.xc5{left:648.719285px;}
.x92{left:650.778000px;}
.x120{left:654.711000px;}
.xe4{left:655.951500px;}
.x27{left:658.038000px;}
.xc2{left:659.831907px;}
.xc1{left:661.734753px;}
.xeb{left:664.647000px;}
.xc4{left:667.291064px;}
.x9c{left:669.586500px;}
.xe3{left:670.656000px;}
.x6e{left:676.114500px;}
.x69{left:677.595000px;}
.xff{left:679.126500px;}
.xe5{left:681.768000px;}
.x93{left:683.973000px;}
.x9e{left:689.901000px;}
.x14{left:690.996000px;}
.x72{left:696.399000px;}
.x15{left:703.503000px;}
.x18{left:706.975500px;}
.xa1{left:708.045000px;}
.xfc{left:711.855000px;}
.x19{left:713.230500px;}
.x99{left:716.829000px;}
.x28{left:720.231000px;}
.xe6{left:722.982000px;}
.xc3{left:725.061473px;}
.xec{left:729.201000px;}
.x94{left:730.617000px;}
.x29{left:732.738000px;}
.x2a{left:739.027500px;}
.x5a{left:748.107000px;}
.x2b{left:751.536000px;}
.xfb{left:753.261000px;}
.x90{left:756.583500px;}
.x1c{left:758.080500px;}
.x9a{left:760.201500px;}
.xef{left:761.619000px;}
.x1d{left:770.589000px;}
.xfd{left:775.564500px;}
.x6a{left:776.779500px;}
.x11f{left:778.720500px;}
.x5b{left:788.455500px;}
.x101{left:789.756000px;}
.x9d{left:791.685000px;}
.xed{left:794.254500px;}
.x5c{left:795.415500px;}
.x100{left:796.422000px;}
.x66{left:802.075500px;}
.x67{left:808.329000px;}
.xa2{left:813.766500px;}
.x8d{left:819.142500px;}
.x6f{left:820.591500px;}
.x119{left:828.276000px;}
.x8e{left:831.649500px;}
.x5d{left:835.764000px;}
@media print{
.v3{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.196728pt;}
.v2{vertical-align:17.360000pt;}
.v1{vertical-align:21.169241pt;}
.v4{vertical-align:29.221333pt;}
.v6{vertical-align:32.805333pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000054pt;}
.lsc{letter-spacing:0.000074pt;}
.ls7{letter-spacing:0.015326pt;}
.ls12{letter-spacing:0.027173pt;}
.lsf{letter-spacing:0.027309pt;}
.lsd{letter-spacing:0.037628pt;}
.ls19{letter-spacing:0.717312pt;}
.ls1d{letter-spacing:1.578086pt;}
.ls1f{letter-spacing:2.391040pt;}
.ls1c{letter-spacing:2.677965pt;}
.ls22{letter-spacing:2.869248pt;}
.ls1a{letter-spacing:3.825664pt;}
.ls18{letter-spacing:4.303872pt;}
.ls1b{letter-spacing:5.738496pt;}
.ls21{letter-spacing:5.786317pt;}
.ls1e{letter-spacing:9.085952pt;}
.ls17{letter-spacing:9.149626pt;}
.ls16{letter-spacing:9.186819pt;}
.ls3{letter-spacing:9.298400pt;}
.ls13{letter-spacing:9.335594pt;}
.ls14{letter-spacing:9.447174pt;}
.ls2{letter-spacing:11.859558pt;}
.ls1{letter-spacing:12.050842pt;}
.ls0{letter-spacing:12.098662pt;}
.ls15{letter-spacing:12.868986pt;}
.lsa{letter-spacing:14.615923pt;}
.ls20{letter-spacing:15.685222pt;}
.lsb{letter-spacing:16.108812pt;}
.ls10{letter-spacing:34.670475pt;}
.ls5{letter-spacing:38.824057pt;}
.ls11{letter-spacing:57.078809pt;}
.ls9{letter-spacing:86.765256pt;}
.ls8{letter-spacing:101.853256pt;}
.ls6{letter-spacing:191.213649pt;}
.ws119{word-spacing:-32.039936pt;}
.ws93{word-spacing:-30.461850pt;}
.ws7d{word-spacing:-29.495255pt;}
.ws11c{word-spacing:-21.375898pt;}
.ws66{word-spacing:-17.950917pt;}
.ws80{word-spacing:-13.386443pt;}
.ws1{word-spacing:-13.283467pt;}
.ws5c{word-spacing:-11.955200pt;}
.wsb8{word-spacing:-9.667022pt;}
.wsbf{word-spacing:-9.298400pt;}
.ws33{word-spacing:-7.057792pt;}
.ws94{word-spacing:-4.782080pt;}
.ws9f{word-spacing:-3.825664pt;}
.ws6c{word-spacing:-3.634381pt;}
.ws2b{word-spacing:-3.538739pt;}
.ws90{word-spacing:-3.490918pt;}
.wsbb{word-spacing:-3.443098pt;}
.ws58{word-spacing:-3.347456pt;}
.wsbd{word-spacing:-3.235843pt;}
.ws9e{word-spacing:-3.203994pt;}
.wsda{word-spacing:-3.198650pt;}
.wsc0{word-spacing:-3.049875pt;}
.ws3{word-spacing:-3.012710pt;}
.wscc{word-spacing:-3.012682pt;}
.ws5b{word-spacing:-2.964890pt;}
.ws4{word-spacing:-2.869248pt;}
.ws8{word-spacing:-2.725786pt;}
.wsba{word-spacing:-2.630144pt;}
.ws117{word-spacing:-2.582323pt;}
.ws5f{word-spacing:-2.486682pt;}
.ws5a{word-spacing:-2.056294pt;}
.ws61{word-spacing:-1.960653pt;}
.ws63{word-spacing:-1.912832pt;}
.ws7a{word-spacing:-1.865011pt;}
.ws10d{word-spacing:-1.822486pt;}
.ws3d{word-spacing:-1.769370pt;}
.ws43{word-spacing:-1.721549pt;}
.ws64{word-spacing:-1.625907pt;}
.wsd6{word-spacing:-1.524938pt;}
.ws9{word-spacing:-1.482445pt;}
.wsf5{word-spacing:-1.450550pt;}
.ws25{word-spacing:-1.434624pt;}
.ws20{word-spacing:-1.386803pt;}
.wsa7{word-spacing:-1.338982pt;}
.ws10c{word-spacing:-1.338970pt;}
.ws83{word-spacing:-1.195520pt;}
.ws84{word-spacing:-1.147699pt;}
.ws1e{word-spacing:-1.099878pt;}
.ws1d{word-spacing:-1.052058pt;}
.ws72{word-spacing:-1.004237pt;}
.ws7{word-spacing:-0.956416pt;}
.wsc4{word-spacing:-0.781066pt;}
.ws2a{word-spacing:-0.717312pt;}
.ws19{word-spacing:-0.680115pt;}
.wsa4{word-spacing:-0.669491pt;}
.ws17{word-spacing:-0.637608pt;}
.ws5{word-spacing:-0.621670pt;}
.wsfe{word-spacing:-0.595098pt;}
.ws8f{word-spacing:-0.573850pt;}
.wsf2{word-spacing:-0.557904pt;}
.ws41{word-spacing:-0.526029pt;}
.ws105{word-spacing:-0.520710pt;}
.ws15{word-spacing:-0.467579pt;}
.ws39{word-spacing:-0.430387pt;}
.ws2f{word-spacing:-0.382566pt;}
.ws77{word-spacing:-0.334746pt;}
.wsb{word-spacing:-0.286925pt;}
.ws2{word-spacing:-0.239104pt;}
.wsde{word-spacing:-0.223162pt;}
.ws27{word-spacing:-0.191283pt;}
.wsd0{word-spacing:-0.185968pt;}
.wsd9{word-spacing:-0.148774pt;}
.ws6{word-spacing:-0.143462pt;}
.wsdc{word-spacing:-0.111581pt;}
.ws2c{word-spacing:-0.095642pt;}
.ws10a{word-spacing:-0.074387pt;}
.ws13{word-spacing:-0.058182pt;}
.wse{word-spacing:-0.047821pt;}
.wsaf{word-spacing:-0.042507pt;}
.wsc2{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.wsc9{word-spacing:0.037194pt;}
.ws22{word-spacing:0.047821pt;}
.wsdd{word-spacing:0.074387pt;}
.ws1f{word-spacing:0.095642pt;}
.wse3{word-spacing:0.111581pt;}
.ws21{word-spacing:0.143462pt;}
.ws114{word-spacing:0.148774pt;}
.wse5{word-spacing:0.185968pt;}
.ws24{word-spacing:0.191283pt;}
.wsff{word-spacing:0.223162pt;}
.ws23{word-spacing:0.239104pt;}
.ws9c{word-spacing:0.286925pt;}
.wsef{word-spacing:0.297549pt;}
.wsaa{word-spacing:0.334746pt;}
.wsa{word-spacing:0.382566pt;}
.ws30{word-spacing:0.430387pt;}
.ws100{word-spacing:0.446323pt;}
.ws6d{word-spacing:0.478208pt;}
.ws3b{word-spacing:0.526029pt;}
.ws74{word-spacing:0.573850pt;}
.ws9a{word-spacing:0.621670pt;}
.wse1{word-spacing:0.632291pt;}
.ws62{word-spacing:0.669491pt;}
.wsab{word-spacing:0.717312pt;}
.ws6e{word-spacing:0.860774pt;}
.ws46{word-spacing:0.956416pt;}
.wsf7{word-spacing:0.967034pt;}
.ws70{word-spacing:1.004237pt;}
.ws3a{word-spacing:1.147699pt;}
.ws31{word-spacing:1.195520pt;}
.wsa3{word-spacing:1.243341pt;}
.wse0{word-spacing:1.264582pt;}
.ws26{word-spacing:1.291162pt;}
.wscb{word-spacing:1.301776pt;}
.wsca{word-spacing:1.338970pt;}
.ws9d{word-spacing:1.338982pt;}
.ws60{word-spacing:1.386803pt;}
.wsa2{word-spacing:1.434624pt;}
.ws9b{word-spacing:1.482445pt;}
.ws3f{word-spacing:1.530266pt;}
.ws28{word-spacing:1.578086pt;}
.ws10b{word-spacing:1.599325pt;}
.wsa5{word-spacing:1.625907pt;}
.ws32{word-spacing:1.673728pt;}
.ws78{word-spacing:1.721549pt;}
.ws57{word-spacing:1.769370pt;}
.ws85{word-spacing:1.817190pt;}
.ws8d{word-spacing:1.865011pt;}
.wsfd{word-spacing:1.896874pt;}
.wsa6{word-spacing:1.912832pt;}
.ws16{word-spacing:1.955331pt;}
.ws98{word-spacing:1.960653pt;}
.wsb7{word-spacing:1.965959pt;}
.wsae{word-spacing:1.975807pt;}
.wsc8{word-spacing:2.082842pt;}
.ws6b{word-spacing:2.104115pt;}
.ws106{word-spacing:2.120035pt;}
.wsd{word-spacing:2.151936pt;}
.ws87{word-spacing:2.199757pt;}
.wsa9{word-spacing:2.295398pt;}
.ws42{word-spacing:2.343219pt;}
.ws97{word-spacing:2.391040pt;}
.ws95{word-spacing:2.438861pt;}
.ws118{word-spacing:2.486682pt;}
.ws76{word-spacing:2.534502pt;}
.wsad{word-spacing:2.574113pt;}
.ws3c{word-spacing:2.582323pt;}
.ws5e{word-spacing:2.630144pt;}
.ws71{word-spacing:2.677965pt;}
.ws7c{word-spacing:2.722369pt;}
.ws75{word-spacing:2.773606pt;}
.ws6f{word-spacing:2.869248pt;}
.wsf8{word-spacing:2.938294pt;}
.wsc{word-spacing:2.964890pt;}
.ws44{word-spacing:3.060531pt;}
.ws3e{word-spacing:3.108352pt;}
.ws29{word-spacing:3.203994pt;}
.wsf1{word-spacing:3.273037pt;}
.wsbc{word-spacing:3.299635pt;}
.ws59{word-spacing:3.347456pt;}
.ws112{word-spacing:3.384618pt;}
.ws8b{word-spacing:3.490918pt;}
.ws5d{word-spacing:3.538739pt;}
.ws88{word-spacing:3.586560pt;}
.ws102{word-spacing:3.682166pt;}
.ws8c{word-spacing:3.730022pt;}
.wsa0{word-spacing:3.777843pt;}
.ws73{word-spacing:3.825664pt;}
.wsf{word-spacing:3.921306pt;}
.ws110{word-spacing:3.942522pt;}
.ws116{word-spacing:3.979715pt;}
.ws86{word-spacing:4.016947pt;}
.wse4{word-spacing:4.054102pt;}
.wsa8{word-spacing:4.064768pt;}
.ws45{word-spacing:4.112589pt;}
.wsee{word-spacing:4.128490pt;}
.ws36{word-spacing:4.209041pt;}
.wse2{word-spacing:4.240070pt;}
.ws2d{word-spacing:4.256051pt;}
.ws2e{word-spacing:4.303872pt;}
.wsf9{word-spacing:4.314458pt;}
.wsd1{word-spacing:4.388845pt;}
.wsa1{word-spacing:4.399514pt;}
.ws111{word-spacing:4.426038pt;}
.ws109{word-spacing:4.463232pt;}
.ws79{word-spacing:4.495155pt;}
.ws40{word-spacing:4.686438pt;}
.ws99{word-spacing:4.782080pt;}
.ws35{word-spacing:4.924329pt;}
.ws11b{word-spacing:4.925542pt;}
.ws11a{word-spacing:4.973363pt;}
.ws96{word-spacing:5.069005pt;}
.ws8e{word-spacing:5.260288pt;}
.ws89{word-spacing:5.499392pt;}
.ws8a{word-spacing:5.547213pt;}
.ws91{word-spacing:6.025421pt;}
.wsc5{word-spacing:6.062557pt;}
.ws92{word-spacing:6.073242pt;}
.wsbe{word-spacing:6.174138pt;}
.wsed{word-spacing:6.508880pt;}
.wse6{word-spacing:6.955203pt;}
.wsf0{word-spacing:7.401526pt;}
.ws10e{word-spacing:7.438720pt;}
.ws1a{word-spacing:7.513107pt;}
.wsd5{word-spacing:7.736269pt;}
.wsf6{word-spacing:7.810656pt;}
.wsf3{word-spacing:8.703302pt;}
.ws104{word-spacing:8.740496pt;}
.wscf{word-spacing:9.075238pt;}
.wsdb{word-spacing:9.112432pt;}
.ws37{word-spacing:9.181594pt;}
.ws10f{word-spacing:9.186819pt;}
.ws1b{word-spacing:9.261206pt;}
.wsc1{word-spacing:9.298400pt;}
.wscd{word-spacing:9.335594pt;}
.wsd7{word-spacing:9.372787pt;}
.wsd2{word-spacing:9.409981pt;}
.ws108{word-spacing:9.484368pt;}
.wsce{word-spacing:9.558755pt;}
.ws101{word-spacing:9.707530pt;}
.ws18{word-spacing:9.904178pt;}
.ws115{word-spacing:9.967885pt;}
.wsb0{word-spacing:10.371757pt;}
.wsb4{word-spacing:10.414264pt;}
.ws14{word-spacing:10.584293pt;}
.wsf4{word-spacing:10.674563pt;}
.wsfb{word-spacing:10.823338pt;}
.wse9{word-spacing:11.120886pt;}
.wsfc{word-spacing:11.158080pt;}
.wsb2{word-spacing:11.342592pt;}
.wsc7{word-spacing:11.344048pt;}
.ws107{word-spacing:11.381242pt;}
.ws12{word-spacing:11.811738pt;}
.ws38{word-spacing:11.907379pt;}
.wsdf{word-spacing:11.939146pt;}
.ws11{word-spacing:12.050842pt;}
.ws56{word-spacing:12.098662pt;}
.wsec{word-spacing:12.162307pt;}
.ws113{word-spacing:12.645824pt;}
.wsd4{word-spacing:12.868986pt;}
.ws103{word-spacing:12.943373pt;}
.wsc3{word-spacing:13.464083pt;}
.wsfa{word-spacing:13.575664pt;}
.wsd8{word-spacing:13.761632pt;}
.wse7{word-spacing:14.170762pt;}
.ws10{word-spacing:14.487285pt;}
.wsb5{word-spacing:14.579970pt;}
.wse8{word-spacing:15.137795pt;}
.wsc6{word-spacing:15.360957pt;}
.ws6a{word-spacing:17.119846pt;}
.wsd3{word-spacing:17.555379pt;}
.wsea{word-spacing:20.382093pt;}
.wseb{word-spacing:21.423514pt;}
.wsb1{word-spacing:24.982447pt;}
.wsb3{word-spacing:33.750872pt;}
.ws47{word-spacing:41.173709pt;}
.wsac{word-spacing:47.363364pt;}
.ws52{word-spacing:57.958810pt;}
.ws1c{word-spacing:58.123685pt;}
.ws55{word-spacing:62.262682pt;}
.ws4a{word-spacing:66.614374pt;}
.ws4c{word-spacing:66.662195pt;}
.wsb9{word-spacing:66.966241pt;}
.wsb6{word-spacing:67.048817pt;}
.ws49{word-spacing:71.013888pt;}
.ws4e{word-spacing:71.061709pt;}
.ws34{word-spacing:85.346783pt;}
.ws53{word-spacing:93.394022pt;}
.ws51{word-spacing:96.789299pt;}
.ws54{word-spacing:99.132518pt;}
.ws65{word-spacing:143.351731pt;}
.ws67{word-spacing:147.149594pt;}
.ws7f{word-spacing:162.203409pt;}
.ws68{word-spacing:173.496316pt;}
.ws81{word-spacing:196.832319pt;}
.ws82{word-spacing:219.902585pt;}
.ws7b{word-spacing:241.915514pt;}
.ws7e{word-spacing:268.598443pt;}
.ws4f{word-spacing:284.677222pt;}
.ws50{word-spacing:306.913894pt;}
.ws48{word-spacing:360.807936pt;}
.ws4b{word-spacing:394.712883pt;}
.ws11e{word-spacing:410.682889pt;}
.ws11d{word-spacing:439.614054pt;}
.ws4d{word-spacing:450.376294pt;}
.ws69{word-spacing:850.797489pt;}
._20{margin-left:-1171.642067pt;}
._29{margin-left:-648.354216pt;}
._1e{margin-left:-618.307401pt;}
._8{margin-left:-589.294608pt;}
._7{margin-left:-571.605418pt;}
._21{margin-left:-389.012496pt;}
._1d{margin-left:-368.191297pt;}
._1f{margin-left:-366.994575pt;}
._23{margin-left:-16.108812pt;}
._22{margin-left:-4.495155pt;}
._3{margin-left:-3.490925pt;}
._0{margin-left:-2.570833pt;}
._2{margin-left:-0.956410pt;}
._1{width:1.211460pt;}
._4{width:2.380403pt;}
._12{width:3.443098pt;}
._39{width:5.212467pt;}
._2e{width:6.689574pt;}
._38{width:8.331354pt;}
._35{width:9.813837pt;}
._5{width:11.142246pt;}
._2d{width:12.427872pt;}
._2c{width:13.426890pt;}
._24{width:14.346240pt;}
._25{width:16.019968pt;}
._30{width:18.596800pt;}
._28{width:21.057983pt;}
._32{width:22.241773pt;}
._37{width:23.138894pt;}
._36{width:24.473389pt;}
._31{width:28.862234pt;}
._2f{width:33.165013pt;}
._26{width:34.670475pt;}
._2a{width:36.263760pt;}
._27{width:43.438953pt;}
._2b{width:51.736298pt;}
._b{width:55.684685pt;}
._9{width:58.181867pt;}
._33{width:68.919741pt;}
._f{width:70.153114pt;}
._e{width:74.552627pt;}
._34{width:79.859134pt;}
._11{width:85.455770pt;}
._d{width:89.185792pt;}
._10{width:108.648858pt;}
._c{width:113.048371pt;}
._19{width:134.626871pt;}
._1c{width:141.167002pt;}
._15{width:176.363110pt;}
._18{width:178.275942pt;}
._17{width:194.630656pt;}
._16{width:234.178458pt;}
._14{width:330.664892pt;}
._a{width:350.909030pt;}
._1a{width:357.710221pt;}
._1b{width:422.544589pt;}
._13{width:546.974291pt;}
._6{width:840.649747pt;}
.fs9{font-size:23.286165pt;}
.fs8{font-size:25.403089pt;}
.fse{font-size:34.898995pt;}
.fsa{font-size:35.068267pt;}
.fsd{font-size:35.073807pt;}
.fsb{font-size:35.901833pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs7{font-size:48.000000pt;}
.fsc{font-size:48.326509pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:1.696477pt;}
.y15c{bottom:1.704975pt;}
.ycb{bottom:3.429578pt;}
.y10d{bottom:7.199977pt;}
.y15a{bottom:12.530080pt;}
.y168{bottom:12.954793pt;}
.y51{bottom:14.999235pt;}
.ycf{bottom:18.987040pt;}
.yd4{bottom:19.286221pt;}
.y62{bottom:20.291545pt;}
.y63{bottom:20.820776pt;}
.y50{bottom:24.525393pt;}
.y52{bottom:25.583856pt;}
.y16a{bottom:30.963020pt;}
.yf8{bottom:31.009369pt;}
.y17d{bottom:31.115214pt;}
.y159{bottom:32.475315pt;}
.y61{bottom:33.522321pt;}
.y15d{bottom:33.617351pt;}
.y53{bottom:34.580783pt;}
.y4a{bottom:37.756169pt;}
.y47{bottom:39.026667pt;}
.y179{bottom:43.281204pt;}
.y18b{bottom:43.437477pt;}
.yd0{bottom:49.802780pt;}
.y64{bottom:50.986945pt;}
.y65{bottom:51.516176pt;}
.y178{bottom:52.248304pt;}
.y18a{bottom:52.404577pt;}
.y158{bottom:52.420550pt;}
.yf7{bottom:54.546726pt;}
.y177{bottom:54.669625pt;}
.y189{bottom:54.832016pt;}
.y16b{bottom:56.270622pt;}
.y162{bottom:56.386175pt;}
.y17e{bottom:56.436413pt;}
.y59{bottom:58.396179pt;}
.y67{bottom:61.571565pt;}
.y171{bottom:63.641941pt;}
.y60{bottom:64.217720pt;}
.y172{bottom:64.499445pt;}
.y58{bottom:64.746951pt;}
.y15e{bottom:65.529727pt;}
.y66{bottom:69.510030pt;}
.y5e{bottom:70.568492pt;}
.y15b{bottom:71.852773pt;}
.y157{bottom:72.365785pt;}
.y68{bottom:72.685417pt;}
.y100{bottom:77.771086pt;}
.y57{bottom:77.977727pt;}
.y173{bottom:78.982090pt;}
.yf9{bottom:81.525904pt;}
.y16c{bottom:81.578224pt;}
.y17f{bottom:81.757611pt;}
.y5a{bottom:84.857730pt;}
.y184{bottom:85.342236pt;}
.y106{bottom:86.644042pt;}
.y4e{bottom:87.503885pt;}
.y56{bottom:91.208502pt;}
.y156{bottom:92.311020pt;}
.y4c{bottom:92.796195pt;}
.y5d{bottom:97.030044pt;}
.yff{bottom:97.199821pt;}
.y15f{bottom:97.442103pt;}
.y55{bottom:101.793123pt;}
.yd2{bottom:102.159620pt;}
.y4d{bottom:102.322354pt;}
.y101{bottom:102.418184pt;}
.y4b{bottom:102.851585pt;}
.y17b{bottom:105.138359pt;}
.yfa{bottom:106.173002pt;}
.y16d{bottom:106.885826pt;}
.y180{bottom:107.078810pt;}
.yd3{bottom:107.245713pt;}
.y107{bottom:111.291139pt;}
.y5b{bottom:111.319281pt;}
.y155{bottom:112.256255pt;}
.y5f{bottom:112.377743pt;}
.y2e{bottom:112.870667pt;}
.y46{bottom:115.202667pt;}
.y17a{bottom:117.343796pt;}
.y5c{bottom:123.491595pt;}
.y2d{bottom:123.497333pt;}
.y54{bottom:126.137750pt;}
.y4f{bottom:126.666981pt;}
.y102{bottom:127.065282pt;}
.y185{bottom:127.458876pt;}
.y93{bottom:127.481333pt;}
.y160{bottom:129.354478pt;}
.y45{bottom:129.814667pt;}
.yfb{bottom:130.820100pt;}
.y16e{bottom:132.193428pt;}
.y154{bottom:132.201490pt;}
.yce{bottom:132.376996pt;}
.y181{bottom:132.400009pt;}
.y131{bottom:133.216000pt;}
.y2c{bottom:134.124000pt;}
.y108{bottom:135.938237pt;}
.y19a{bottom:137.776000pt;}
.yd6{bottom:141.651636pt;}
.y92{bottom:142.093333pt;}
.y44{bottom:144.426667pt;}
.y1e1{bottom:144.750667pt;}
.y2b{bottom:145.813333pt;}
.y130{bottom:147.828000pt;}
.yca{bottom:148.532821pt;}
.yd1{bottom:149.729549pt;}
.y103{bottom:151.712380pt;}
.y175{bottom:152.132602pt;}
.y153{bottom:152.146724pt;}
.y1e0{bottom:155.377333pt;}
.yfc{bottom:155.467198pt;}
.y91{bottom:156.705333pt;}
.y16f{bottom:157.501030pt;}
.y2a{bottom:157.502667pt;}
.y182{bottom:157.721207pt;}
.y43{bottom:159.038667pt;}
.y109{bottom:160.585335pt;}
.y161{bottom:161.266854pt;}
.y12f{bottom:162.440000pt;}
.ycc{bottom:164.987828pt;}
.y186{bottom:165.267231pt;}
.yd7{bottom:165.287010pt;}
.y1df{bottom:166.004000pt;}
.y29{bottom:168.129333pt;}
.y151{bottom:170.472388pt;}
.y90{bottom:171.317333pt;}
.yd5{bottom:172.467376pt;}
.y42{bottom:173.650667pt;}
.y199{bottom:174.270667pt;}
.y104{bottom:176.359477pt;}
.y1de{bottom:176.630667pt;}
.y187{bottom:176.867030pt;}
.y12e{bottom:177.052000pt;}
.y174{bottom:178.905799pt;}
.yfd{bottom:180.114295pt;}
.y170{bottom:182.808632pt;}
.y183{bottom:183.042406pt;}
.y10a{bottom:185.232433pt;}
.y8f{bottom:185.929333pt;}
.ycd{bottom:186.229746pt;}
.y1dd{bottom:187.257333pt;}
.y41{bottom:188.262667pt;}
.y198{bottom:188.882667pt;}
.y12d{bottom:191.664000pt;}
.y176{bottom:192.596056pt;}
.y188{bottom:192.832549pt;}
.y152{bottom:196.693519pt;}
.y1dc{bottom:197.884000pt;}
.y8e{bottom:200.541333pt;}
.y105{bottom:201.006575pt;}
.y40{bottom:202.874667pt;}
.y197{bottom:203.494667pt;}
.yfe{bottom:204.761393pt;}
.y12c{bottom:206.276000pt;}
.y1db{bottom:208.512000pt;}
.y10b{bottom:209.879530pt;}
.y8d{bottom:215.153333pt;}
.y3f{bottom:217.486667pt;}
.y1da{bottom:219.138667pt;}
.y12b{bottom:220.888000pt;}
.y196{bottom:221.760000pt;}
.y8c{bottom:229.765333pt;}
.y3e{bottom:232.097333pt;}
.y12a{bottom:235.500000pt;}
.y28{bottom:238.726667pt;}
.y10c{bottom:240.027745pt;}
.y1d9{bottom:240.392000pt;}
.y8b{bottom:244.377333pt;}
.y3d{bottom:246.709333pt;}
.y129{bottom:250.110667pt;}
.y1d8{bottom:251.018667pt;}
.y27{bottom:252.010667pt;}
.y1f3{bottom:254.854667pt;}
.y195{bottom:258.254667pt;}
.y8a{bottom:258.989333pt;}
.y3c{bottom:261.321333pt;}
.y1d7{bottom:261.645333pt;}
.y1f1{bottom:263.056000pt;}
.y128{bottom:264.722667pt;}
.y26{bottom:265.293333pt;}
.y1f2{bottom:271.149333pt;}
.y1d6{bottom:272.272000pt;}
.y194{bottom:272.866667pt;}
.y89{bottom:273.600000pt;}
.y3b{bottom:275.933333pt;}
.yf5{bottom:277.253333pt;}
.y25{bottom:278.577333pt;}
.y127{bottom:279.334667pt;}
.y1d5{bottom:282.898667pt;}
.y1f0{bottom:285.842667pt;}
.y193{bottom:287.477333pt;}
.y88{bottom:288.212000pt;}
.y3a{bottom:290.545333pt;}
.y24{bottom:291.860000pt;}
.y190{bottom:291.865333pt;}
.y1d4{bottom:293.525333pt;}
.y126{bottom:293.946667pt;}
.y1ee{bottom:294.044000pt;}
.y192{bottom:302.089333pt;}
.y1ef{bottom:302.137333pt;}
.y87{bottom:302.824000pt;}
.y1d3{bottom:304.153333pt;}
.y23{bottom:305.144000pt;}
.y39{bottom:305.157333pt;}
.y14e{bottom:306.477333pt;}
.y125{bottom:308.558667pt;}
.yf4{bottom:310.529333pt;}
.y1d2{bottom:314.780000pt;}
.y191{bottom:316.701333pt;}
.y86{bottom:317.436000pt;}
.y38{bottom:319.769333pt;}
.y124{bottom:323.170667pt;}
.yf3{bottom:325.141333pt;}
.y1d1{bottom:325.406667pt;}
.y1ed{bottom:326.536000pt;}
.y18f{bottom:331.313333pt;}
.y85{bottom:332.048000pt;}
.y22{bottom:333.418667pt;}
.y37{bottom:334.381333pt;}
.yb9{bottom:335.701333pt;}
.y1d0{bottom:336.033333pt;}
.y123{bottom:337.782667pt;}
.yf2{bottom:339.752000pt;}
.y1ec{bottom:341.148000pt;}
.y18e{bottom:345.925333pt;}
.y84{bottom:346.660000pt;}
.y14d{bottom:347.442667pt;}
.y36{bottom:348.993333pt;}
.y14f{bottom:350.313333pt;}
.y21{bottom:351.682667pt;}
.y122{bottom:352.394667pt;}
.y1eb{bottom:355.758667pt;}
.y1cf{bottom:357.286667pt;}
.yf1{bottom:358.017333pt;}
.y18d{bottom:360.537333pt;}
.y83{bottom:361.272000pt;}
.y14c{bottom:362.054667pt;}
.y35{bottom:363.605333pt;}
.yb8{bottom:364.406667pt;}
.y121{bottom:367.006667pt;}
.y1ce{bottom:367.913333pt;}
.y1ea{bottom:370.370667pt;}
.y82{bottom:375.884000pt;}
.y14b{bottom:376.666667pt;}
.y34{bottom:378.217333pt;}
.y1cd{bottom:378.540000pt;}
.yb7{bottom:379.018667pt;}
.y120{bottom:381.618667pt;}
.y1e9{bottom:384.982667pt;}
.y20{bottom:385.041333pt;}
.y1cc{bottom:389.166667pt;}
.y81{bottom:390.496000pt;}
.y14a{bottom:391.278667pt;}
.yf0{bottom:391.293333pt;}
.y33{bottom:392.828000pt;}
.yb6{bottom:393.630667pt;}
.y11f{bottom:396.230667pt;}
.y18c{bottom:398.129333pt;}
.y1e8{bottom:399.594667pt;}
.y1f{bottom:399.653333pt;}
.y1cb{bottom:399.794667pt;}
.y80{bottom:405.108000pt;}
.y149{bottom:405.890667pt;}
.yef{bottom:405.904000pt;}
.y32{bottom:407.440000pt;}
.yb5{bottom:408.242667pt;}
.y1ca{bottom:410.421333pt;}
.y11e{bottom:410.841333pt;}
.y1e7{bottom:414.206667pt;}
.y1e{bottom:414.265333pt;}
.y7f{bottom:419.720000pt;}
.y148{bottom:420.501333pt;}
.yee{bottom:420.516000pt;}
.y1c9{bottom:421.048000pt;}
.y31{bottom:422.052000pt;}
.yb4{bottom:422.854667pt;}
.y11d{bottom:425.453333pt;}
.y17c{bottom:428.282667pt;}
.y1e6{bottom:428.818667pt;}
.y1c8{bottom:431.674667pt;}
.y1d{bottom:432.529333pt;}
.y7e{bottom:434.330667pt;}
.y147{bottom:435.113333pt;}
.yed{bottom:435.128000pt;}
.y30{bottom:436.664000pt;}
.yb3{bottom:437.466667pt;}
.y11c{bottom:440.065333pt;}
.y1c7{bottom:442.301333pt;}
.y1e5{bottom:443.430667pt;}
.y167{bottom:445.552000pt;}
.y7d{bottom:448.942667pt;}
.y146{bottom:449.725333pt;}
.yec{bottom:449.740000pt;}
.y2f{bottom:451.276000pt;}
.yb2{bottom:452.078667pt;}
.y1c6{bottom:452.928000pt;}
.yd9{bottom:454.308000pt;}
.y11b{bottom:454.677333pt;}
.y1e4{bottom:458.042667pt;}
.y7c{bottom:463.554667pt;}
.y145{bottom:464.337333pt;}
.yeb{bottom:464.352000pt;}
.y1c{bottom:465.888000pt;}
.yb1{bottom:466.689333pt;}
.y132{bottom:467.208000pt;}
.yd8{bottom:468.920000pt;}
.y11a{bottom:469.289333pt;}
.y1c5{bottom:474.181333pt;}
.y1e3{bottom:476.306667pt;}
.y7b{bottom:478.166667pt;}
.y144{bottom:478.949333pt;}
.yea{bottom:478.964000pt;}
.y1b{bottom:480.500000pt;}
.yb0{bottom:481.301333pt;}
.y119{bottom:483.901333pt;}
.y1c4{bottom:484.808000pt;}
.y7a{bottom:492.778667pt;}
.y143{bottom:493.561333pt;}
.ye9{bottom:493.576000pt;}
.yc9{bottom:495.088389pt;}
.y1a{bottom:495.112000pt;}
.y1c3{bottom:495.436000pt;}
.yaf{bottom:495.913333pt;}
.y1e2{bottom:497.229333pt;}
.y118{bottom:498.513333pt;}
.y1c2{bottom:506.062667pt;}
.y79{bottom:507.390667pt;}
.y142{bottom:508.173333pt;}
.ye8{bottom:508.188000pt;}
.y19{bottom:509.724000pt;}
.yae{bottom:510.525333pt;}
.y117{bottom:513.125333pt;}
.y1c1{bottom:516.689333pt;}
.y78{bottom:522.002667pt;}
.y141{bottom:522.785333pt;}
.ye7{bottom:522.800000pt;}
.y18{bottom:524.336000pt;}
.yad{bottom:525.137333pt;}
.y1c0{bottom:527.316000pt;}
.y116{bottom:527.737333pt;}
.y77{bottom:536.614667pt;}
.y140{bottom:537.397333pt;}
.ye6{bottom:537.412000pt;}
.y1bf{bottom:537.942667pt;}
.y17{bottom:538.946667pt;}
.yac{bottom:539.749333pt;}
.y115{bottom:542.349333pt;}
.y1be{bottom:548.569333pt;}
.y76{bottom:551.226667pt;}
.y13f{bottom:552.009333pt;}
.ye5{bottom:552.022667pt;}
.y16{bottom:553.558667pt;}
.yab{bottom:554.361333pt;}
.y114{bottom:556.960000pt;}
.y1bd{bottom:559.196000pt;}
.y75{bottom:565.838667pt;}
.y13e{bottom:566.621333pt;}
.ye4{bottom:566.634667pt;}
.y15{bottom:568.170667pt;}
.yaa{bottom:568.973333pt;}
.y1bc{bottom:569.822667pt;}
.y113{bottom:571.572000pt;}
.y74{bottom:580.449333pt;}
.y13d{bottom:581.232000pt;}
.ye3{bottom:581.246667pt;}
.y14{bottom:582.782667pt;}
.ya9{bottom:583.585333pt;}
.y112{bottom:586.184000pt;}
.y1bb{bottom:591.077333pt;}
.y73{bottom:595.061333pt;}
.y13c{bottom:595.844000pt;}
.ye1{bottom:595.858667pt;}
.y13{bottom:597.394667pt;}
.ya8{bottom:598.197333pt;}
.ye2{bottom:600.198667pt;}
.y111{bottom:600.796000pt;}
.y1ba{bottom:601.704000pt;}
.y72{bottom:609.673333pt;}
.y13b{bottom:610.456000pt;}
.ye0{bottom:610.470667pt;}
.y12{bottom:612.006667pt;}
.y1b9{bottom:612.330667pt;}
.ya7{bottom:612.808000pt;}
.y110{bottom:615.408000pt;}
.y1b8{bottom:622.957333pt;}
.y71{bottom:624.285333pt;}
.y13a{bottom:625.068000pt;}
.ydf{bottom:625.082667pt;}
.y11{bottom:626.618667pt;}
.ya6{bottom:627.420000pt;}
.y10f{bottom:630.020000pt;}
.y1b7{bottom:633.584000pt;}
.y70{bottom:638.897333pt;}
.y139{bottom:639.680000pt;}
.yde{bottom:639.694667pt;}
.y10{bottom:641.230667pt;}
.ya5{bottom:642.032000pt;}
.y1b6{bottom:644.210667pt;}
.y138{bottom:654.292000pt;}
.ydd{bottom:654.306667pt;}
.y1b5{bottom:654.837333pt;}
.yf{bottom:655.842667pt;}
.ya4{bottom:656.644000pt;}
.y6f{bottom:657.162667pt;}
.y1b4{bottom:665.464000pt;}
.y10e{bottom:667.612000pt;}
.y166{bottom:667.648000pt;}
.y137{bottom:668.904000pt;}
.ydc{bottom:668.918667pt;}
.ye{bottom:670.454667pt;}
.ya3{bottom:671.256000pt;}
.y1b3{bottom:676.090667pt;}
.y136{bottom:683.516000pt;}
.ydb{bottom:683.530667pt;}
.yd{bottom:685.066667pt;}
.y6e{bottom:685.850667pt;}
.ya2{bottom:685.868000pt;}
.y1b2{bottom:686.718667pt;}
.yf6{bottom:693.781333pt;}
.y1b1{bottom:697.345333pt;}
.y165{bottom:697.802667pt;}
.y135{bottom:698.128000pt;}
.yda{bottom:698.141333pt;}
.yc{bottom:699.677333pt;}
.y6d{bottom:700.462667pt;}
.y1b0{bottom:707.972000pt;}
.y164{bottom:711.085333pt;}
.y134{bottom:712.740000pt;}
.yc8{bottom:712.753333pt;}
.y6c{bottom:715.074667pt;}
.yb{bottom:717.942667pt;}
.y1af{bottom:718.598667pt;}
.y163{bottom:724.369333pt;}
.yc7{bottom:727.365333pt;}
.y1ae{bottom:729.225333pt;}
.y6b{bottom:729.686667pt;}
.y1ad{bottom:739.852000pt;}
.ya1{bottom:741.313333pt;}
.y150{bottom:741.637333pt;}
.yc6{bottom:741.977333pt;}
.ya{bottom:744.589333pt;}
.y133{bottom:750.332000pt;}
.y1ac{bottom:750.478667pt;}
.ya0{bottom:755.925333pt;}
.y9{bottom:760.529333pt;}
.y1ab{bottom:761.105333pt;}
.y6a{bottom:769.122667pt;}
.y9f{bottom:770.537333pt;}
.y1aa{bottom:771.732000pt;}
.y8{bottom:776.469333pt;}
.y1a9{bottom:782.360000pt;}
.y69{bottom:783.734667pt;}
.y9e{bottom:790.817333pt;}
.y7{bottom:792.410667pt;}
.y1a8{bottom:792.986667pt;}
.yc5{bottom:795.510667pt;}
.y1a7{bottom:803.613333pt;}
.y9d{bottom:805.429333pt;}
.y49{bottom:810.076904pt;}
.yc4{bottom:811.981333pt;}
.y1a6{bottom:814.240000pt;}
.y9c{bottom:816.232000pt;}
.y6{bottom:822.436000pt;}
.y1a5{bottom:824.866667pt;}
.yc3{bottom:827.125333pt;}
.y9b{bottom:830.844000pt;}
.yc0{bottom:834.430667pt;}
.y1a4{bottom:835.493333pt;}
.y5{bottom:838.376000pt;}
.ybf{bottom:841.586667pt;}
.yc2{bottom:841.737333pt;}
.y9a{bottom:845.456000pt;}
.y1a3{bottom:846.120000pt;}
.y4{bottom:854.316000pt;}
.yc1{bottom:856.349333pt;}
.y1a2{bottom:856.746667pt;}
.y99{bottom:860.068000pt;}
.y1a1{bottom:867.373333pt;}
.y3{bottom:870.257333pt;}
.ybe{bottom:871.492000pt;}
.y98{bottom:874.680000pt;}
.y1a0{bottom:878.001333pt;}
.ybd{bottom:886.634667pt;}
.y19f{bottom:888.628000pt;}
.y97{bottom:889.292000pt;}
.y19e{bottom:899.254667pt;}
.yba{bottom:901.097333pt;}
.ybc{bottom:901.246667pt;}
.y2{bottom:901.933333pt;}
.y96{bottom:903.904000pt;}
.y19d{bottom:909.881333pt;}
.ybb{bottom:915.858667pt;}
.y95{bottom:918.516000pt;}
.y19c{bottom:920.508000pt;}
.y1{bottom:928.500000pt;}
.y19b{bottom:931.134667pt;}
.y94{bottom:933.658667pt;}
.y48{bottom:966.204000pt;}
.h17{height:15.394969pt;}
.hf{height:16.759671pt;}
.h1a{height:18.458829pt;}
.hd{height:18.717413pt;}
.h12{height:24.828333pt;}
.h20{height:26.174247pt;}
.h1d{height:26.305355pt;}
.ha{height:26.333069pt;}
.h15{height:26.400469pt;}
.h16{height:27.597197pt;}
.h1e{height:28.904896pt;}
.h9{height:30.095098pt;}
.h8{height:30.605184pt;}
.h1b{height:31.466086pt;}
.h10{height:31.800832pt;}
.hb{height:33.024000pt;}
.h5{height:33.857126pt;}
.h7{height:34.287514pt;}
.h6{height:34.430976pt;}
.h19{height:36.244882pt;}
.h3{height:37.618778pt;}
.he{height:39.886654pt;}
.h4{height:41.890944pt;}
.h11{height:42.188333pt;}
.h2{height:45.142835pt;}
.h13{height:63.681126pt;}
.h1{height:64.087196pt;}
.h21{height:66.662460pt;}
.hc{height:134.340832pt;}
.h14{height:196.563491pt;}
.h1f{height:201.772032pt;}
.h1c{height:202.782720pt;}
.h18{height:250.639458pt;}
.h0{height:1056.000000pt;}
.w5{width:201.772032pt;}
.w4{width:235.392532pt;}
.w2{width:320.326336pt;}
.w1{width:320.332732pt;}
.w3{width:672.559687pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:4.014827pt;}
.x107{left:6.089201pt;}
.xab{left:8.390017pt;}
.x7f{left:10.467206pt;}
.x82{left:12.701721pt;}
.x37{left:13.888294pt;}
.x32{left:15.823294pt;}
.x106{left:18.889688pt;}
.xa8{left:22.866153pt;}
.x10f{left:29.203500pt;}
.xaa{left:41.122876pt;}
.xa7{left:42.062568pt;}
.x10c{left:43.901121pt;}
.x108{left:47.311085pt;}
.x115{left:48.989583pt;}
.xa9{left:50.586829pt;}
.xa6{left:51.526522pt;}
.x3a{left:54.548121pt;}
.xa5{left:56.258498pt;}
.x113{left:57.742776pt;}
.x114{left:66.758345pt;}
.x38{left:68.920051pt;}
.x103{left:70.349245pt;}
.xf{left:71.730667pt;}
.x110{left:73.578504pt;}
.x81{left:75.529931pt;}
.x111{left:76.550484pt;}
.xa4{left:81.225841pt;}
.xf8{left:83.686667pt;}
.x47{left:85.014667pt;}
.x1{left:88.172000pt;}
.x105{left:92.663741pt;}
.x34{left:94.769681pt;}
.x35{left:99.061411pt;}
.xf2{left:100.029333pt;}
.xcc{left:101.332000pt;}
.x4f{left:107.596000pt;}
.xd5{left:110.705333pt;}
.x11{left:113.073333pt;}
.x49{left:114.794667pt;}
.x88{left:117.210667pt;}
.x112{left:118.477132pt;}
.x85{left:119.505333pt;}
.x48{left:124.778667pt;}
.x4a{left:125.913333pt;}
.x45{left:127.174667pt;}
.x12{left:128.302667pt;}
.x10{left:133.584000pt;}
.xd6{left:134.616000pt;}
.x3b{left:136.049701pt;}
.x39{left:137.372778pt;}
.x46{left:138.292000pt;}
.x84{left:141.191018pt;}
.x50{left:142.726667pt;}
.x7e{left:144.846647pt;}
.xd0{left:146.370667pt;}
.x4{left:148.940000pt;}
.xac{left:151.041130pt;}
.x10a{left:152.554667pt;}
.x56{left:155.417333pt;}
.x42{left:156.380000pt;}
.xc{left:157.953333pt;}
.x36{left:160.485287pt;}
.x57{left:161.397333pt;}
.xae{left:163.723420pt;}
.x51{left:166.269333pt;}
.x6{left:167.430667pt;}
.xd1{left:170.281333pt;}
.xc6{left:172.004518pt;}
.x116{left:173.404902pt;}
.xfa{left:174.370667pt;}
.xd2{left:175.501333pt;}
.x3{left:177.206667pt;}
.x33{left:179.355680pt;}
.x104{left:182.272814pt;}
.x30{left:186.764915pt;}
.xb{left:189.182667pt;}
.xcd{left:191.438667pt;}
.xad{left:193.497644pt;}
.x117{left:197.912000pt;}
.x10e{left:200.232000pt;}
.x80{left:201.186347pt;}
.xc7{left:203.328000pt;}
.xa{left:204.390667pt;}
.xf3{left:205.886667pt;}
.x7b{left:208.152000pt;}
.x5{left:211.518667pt;}
.x109{left:212.873656pt;}
.xce{left:214.030667pt;}
.x58{left:218.490667pt;}
.x40{left:223.199163pt;}
.x41{left:228.317822pt;}
.x31{left:231.046669pt;}
.x74{left:233.478667pt;}
.xaf{left:235.095586pt;}
.xd3{left:236.860000pt;}
.xda{left:242.980000pt;}
.x86{left:246.469333pt;}
.xdb{left:247.734667pt;}
.xb7{left:249.707952pt;}
.xf4{left:251.612000pt;}
.x3f{left:252.571485pt;}
.x3c{left:253.538988pt;}
.xb2{left:254.497469pt;}
.xb6{left:255.653559pt;}
.x87{left:257.588000pt;}
.xb1{left:258.626362pt;}
.x43{left:260.821333pt;}
.xb3{left:261.764321pt;}
.x73{left:263.150667pt;}
.x83{left:265.211283pt;}
.x7c{left:267.146616pt;}
.x7d{left:268.193753pt;}
.x2{left:269.369333pt;}
.xc8{left:271.180000pt;}
.xb4{left:273.325222pt;}
.x3e{left:274.451880pt;}
.xb5{left:276.298026pt;}
.x2e{left:279.380344pt;}
.x3d{left:281.505540pt;}
.xd7{left:285.981333pt;}
.x75{left:287.605333pt;}
.x2f{left:289.262082pt;}
.xc9{left:294.769333pt;}
.xd4{left:296.636000pt;}
.xf7{left:300.033333pt;}
.xe0{left:305.928000pt;}
.xf5{left:308.797333pt;}
.xe1{left:309.770667pt;}
.x52{left:311.200000pt;}
.x4b{left:313.414667pt;}
.x53{left:317.986667pt;}
.xf9{left:319.445333pt;}
.xd8{left:321.848000pt;}
.xde{left:322.790667pt;}
.xca{left:324.336000pt;}
.x89{left:328.192000pt;}
.x44{left:335.074667pt;}
.xd9{left:338.261333pt;}
.x8a{left:339.310667pt;}
.x54{left:341.897333pt;}
.xb0{left:344.011877pt;}
.x4c{left:349.280000pt;}
.xdd{left:350.429333pt;}
.xdc{left:351.525333pt;}
.xf6{left:353.205333pt;}
.x4d{left:354.884000pt;}
.x118{left:356.921333pt;}
.xcb{left:360.201333pt;}
.xdf{left:361.365333pt;}
.xcf{left:366.316000pt;}
.x55{left:371.138667pt;}
.xb8{left:380.911393pt;}
.xb9{left:382.254305pt;}
.x4e{left:390.749333pt;}
.x2c{left:399.000000pt;}
.x77{left:405.621333pt;}
.x78{left:415.849333pt;}
.xbb{left:417.627785pt;}
.x13{left:423.940000pt;}
.x11e{left:427.312000pt;}
.x11b{left:428.264000pt;}
.x76{left:430.350667pt;}
.x1f{left:437.224000pt;}
.x10b{left:442.621333pt;}
.xbc{left:443.735241pt;}
.x59{left:444.969333pt;}
.xba{left:448.956732pt;}
.x1a{left:450.338667pt;}
.x63{left:451.457333pt;}
.x11c{left:453.276000pt;}
.x102{left:454.462667pt;}
.x8b{left:456.473333pt;}
.x10d{left:457.728000pt;}
.x5e{left:459.805333pt;}
.x1b{left:461.456000pt;}
.xa3{left:462.748000pt;}
.x97{left:465.020000pt;}
.x6b{left:465.909333pt;}
.x8c{left:467.592000pt;}
.xbe{left:468.893334pt;}
.xf0{left:472.125333pt;}
.x11a{left:474.522667pt;}
.x16{left:476.617333pt;}
.x95{left:478.726667pt;}
.x17{left:482.176000pt;}
.x5f{left:484.232000pt;}
.x70{left:486.356000pt;}
.x6c{left:488.618667pt;}
.x98{left:491.617333pt;}
.xbd{left:492.627385pt;}
.xe{left:494.076000pt;}
.x8{left:495.490667pt;}
.x9f{left:497.532000pt;}
.x11d{left:501.457333pt;}
.xa0{left:503.090667pt;}
.x1e{left:505.229333pt;}
.xe2{left:508.930667pt;}
.x60{left:510.249333pt;}
.xf1{left:512.005333pt;}
.x9b{left:514.989333pt;}
.xe7{left:516.502667pt;}
.x20{left:519.974667pt;}
.xd{left:524.225333pt;}
.x7{left:525.502667pt;}
.x68{left:528.208000pt;}
.xe8{left:529.206667pt;}
.x21{left:531.093333pt;}
.xe9{left:534.280000pt;}
.xbf{left:536.124050pt;}
.x22{left:537.918667pt;}
.x9{left:539.817333pt;}
.x96{left:541.500000pt;}
.x61{left:543.016000pt;}
.x6d{left:547.193333pt;}
.x23{left:549.036000pt;}
.x64{left:551.370667pt;}
.xc0{left:553.257041pt;}
.xee{left:554.888000pt;}
.x24{left:555.861333pt;}
.x79{left:556.868000pt;}
.xfe{left:559.028000pt;}
.x91{left:560.537333pt;}
.x71{left:562.240000pt;}
.x7a{left:564.746667pt;}
.x25{left:566.980000pt;}
.x8f{left:567.905333pt;}
.x62{left:569.624000pt;}
.x65{left:572.904000pt;}
.x26{left:573.804000pt;}
.xea{left:574.760000pt;}
.xc5{left:576.639365pt;}
.x92{left:578.469333pt;}
.x120{left:581.965333pt;}
.xe4{left:583.068000pt;}
.x27{left:584.922667pt;}
.xc2{left:586.517251pt;}
.xc1{left:588.208669pt;}
.xeb{left:590.797333pt;}
.xc4{left:593.147612pt;}
.x9c{left:595.188000pt;}
.xe3{left:596.138667pt;}
.x6e{left:600.990667pt;}
.x69{left:602.306667pt;}
.xff{left:603.668000pt;}
.xe5{left:606.016000pt;}
.x93{left:607.976000pt;}
.x9e{left:613.245333pt;}
.x14{left:614.218667pt;}
.x72{left:619.021333pt;}
.x15{left:625.336000pt;}
.x18{left:628.422667pt;}
.xa1{left:629.373333pt;}
.xfc{left:632.760000pt;}
.x19{left:633.982667pt;}
.x99{left:637.181333pt;}
.x28{left:640.205333pt;}
.xe6{left:642.650667pt;}
.xc3{left:644.499087pt;}
.xec{left:648.178667pt;}
.x94{left:649.437333pt;}
.x29{left:651.322667pt;}
.x2a{left:656.913333pt;}
.x5a{left:664.984000pt;}
.x2b{left:668.032000pt;}
.xfb{left:669.565333pt;}
.x90{left:672.518667pt;}
.x1c{left:673.849333pt;}
.x9a{left:675.734667pt;}
.xef{left:676.994667pt;}
.x1d{left:684.968000pt;}
.xfd{left:689.390667pt;}
.x6a{left:690.470667pt;}
.x11f{left:692.196000pt;}
.x5b{left:700.849333pt;}
.x101{left:702.005333pt;}
.x9d{left:703.720000pt;}
.xed{left:706.004000pt;}
.x5c{left:707.036000pt;}
.x100{left:707.930667pt;}
.x66{left:712.956000pt;}
.x67{left:718.514667pt;}
.xa2{left:723.348000pt;}
.x8d{left:728.126667pt;}
.x6f{left:729.414667pt;}
.x119{left:736.245333pt;}
.x8e{left:739.244000pt;}
.x5d{left:742.901333pt;}
}




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