
    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_981f4f95e01be718e9ec6354.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_699d5d159511607e82a61626.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_449c941b46cdc7ba8d316a44.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_8138bcffca1ecd80707c210d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_57965a3c2570c0b87d0a1ab5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191000;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_3d24d660d1ae0b1b28306640.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d1d9565ff95f0d08a93d6b6b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4724a965f49415787cc499f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6f151561a78cb30e4e227b87.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6c5252c6e647c988ee5ed6ff.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.391000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2b0711b228fec65df21537a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_031c678ed6f3c7ba685ee973.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003418;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_0299a45e49fba0e4d9ac9c6b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.211426;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_1f29d7d7d69e1371ed59eb37.woff2')format("woff");}.fff{font-family:fff;line-height:0.689453;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_d6162fee2a2ab7ccdca8d30b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.675781;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_25296a2bf2e35b04eefda921.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_50a60bddebb5713e7f7cc60d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.003418;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_57632de57445d2548963d76a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.211426;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_1f29d7d7d69e1371ed59eb37.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.689453;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_a06b38058964962454fc8360.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.726000;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_af5fcb7f14d0645a81740bc0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m5{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);}
.m9{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);}
.m21{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);}
.m1b{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m1d{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);}
.m17{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);}
.m4{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);}
.m26{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);}
.m2a{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);}
.m7{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);}
.m23{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);}
.m20{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);}
.m1c{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);}
.m11{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);}
.m14{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m13{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);}
.m18{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);}
.m8{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);}
.m19{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);}
.m2b{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);}
.m10{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m28{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);}
.mb{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);}
.m29{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);}
.mc{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);}
.m1f{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);}
.ma{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);}
.m25{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);}
.md{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);}
.me{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);}
.m6{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);}
.m2{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);}
.mf{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.524000px;}
.v3{vertical-align:-1.441800px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:32.874000px;}
.v5{vertical-align:65.754000px;}
.ls2e{letter-spacing:-0.294588px;}
.ls34{letter-spacing:-0.240480px;}
.ls2c{letter-spacing:-0.198396px;}
.ls36{letter-spacing:-0.162000px;}
.ls33{letter-spacing:-0.150300px;}
.ls28{letter-spacing:-0.102204px;}
.ls2b{letter-spacing:-0.096192px;}
.ls25{letter-spacing:-0.086184px;}
.ls32{letter-spacing:-0.078156px;}
.ls26{letter-spacing:-0.072144px;}
.ls3e{letter-spacing:-0.066132px;}
.ls40{letter-spacing:-0.060120px;}
.ls2f{letter-spacing:-0.054108px;}
.ls3d{letter-spacing:-0.048096px;}
.ls27{letter-spacing:-0.036072px;}
.ls2d{letter-spacing:-0.030060px;}
.ls3f{letter-spacing:-0.024048px;}
.ls2a{letter-spacing:-0.018036px;}
.ls31{letter-spacing:-0.012024px;}
.ls35{letter-spacing:-0.010800px;}
.ls30{letter-spacing:-0.006012px;}
.lse{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.000002px;}
.ls54{letter-spacing:0.000053px;}
.ls45{letter-spacing:0.000154px;}
.ls44{letter-spacing:0.000435px;}
.ls4c{letter-spacing:0.000500px;}
.ls6{letter-spacing:0.000566px;}
.ls55{letter-spacing:0.000644px;}
.ls46{letter-spacing:0.001518px;}
.ls43{letter-spacing:0.001673px;}
.ls4a{letter-spacing:0.001890px;}
.ls52{letter-spacing:0.002045px;}
.ls42{letter-spacing:0.002074px;}
.ls49{letter-spacing:0.002704px;}
.ls0{letter-spacing:0.002725px;}
.ls4e{letter-spacing:0.002818px;}
.ls9{letter-spacing:0.002870px;}
.lsc{letter-spacing:0.003494px;}
.ls4b{letter-spacing:0.003741px;}
.lsb{letter-spacing:0.003835px;}
.ls7{letter-spacing:0.003859px;}
.ls3{letter-spacing:0.004200px;}
.ls48{letter-spacing:0.005204px;}
.ls1d{letter-spacing:0.005400px;}
.ls10{letter-spacing:0.005415px;}
.ls1e{letter-spacing:0.006012px;}
.ls20{letter-spacing:0.012024px;}
.ls17{letter-spacing:0.014400px;}
.ls18{letter-spacing:0.018036px;}
.ls21{letter-spacing:0.024048px;}
.ls23{letter-spacing:0.027000px;}
.ls22{letter-spacing:0.030060px;}
.ls1c{letter-spacing:0.032400px;}
.ls19{letter-spacing:0.036072px;}
.ls14{letter-spacing:0.038304px;}
.ls29{letter-spacing:0.042084px;}
.ls12{letter-spacing:0.043092px;}
.ls1f{letter-spacing:0.048096px;}
.ls3b{letter-spacing:0.048600px;}
.ls16{letter-spacing:0.054108px;}
.ls1b{letter-spacing:0.060120px;}
.ls38{letter-spacing:0.066132px;}
.ls1a{letter-spacing:0.072144px;}
.ls3a{letter-spacing:0.078156px;}
.ls3c{letter-spacing:0.096192px;}
.ls39{letter-spacing:0.102204px;}
.ls15{letter-spacing:0.181944px;}
.ls13{letter-spacing:0.191520px;}
.ls37{letter-spacing:1.069200px;}
.lsf{letter-spacing:1.275394px;}
.lsa{letter-spacing:1.861130px;}
.ls1{letter-spacing:2.989200px;}
.lsd{letter-spacing:11.954850px;}
.ls51{letter-spacing:13.156282px;}
.ls50{letter-spacing:13.386221px;}
.ls4d{letter-spacing:13.448400px;}
.ls53{letter-spacing:13.450090px;}
.ls4f{letter-spacing:13.454400px;}
.ls47{letter-spacing:14.795351px;}
.ls2{letter-spacing:14.944200px;}
.ls4{letter-spacing:17.929200px;}
.ls5{letter-spacing:70.236600px;}
.ls8{letter-spacing:72.353510px;}
.ls11{letter-spacing:93.543361px;}
.ls24{letter-spacing:149.752800px;}
.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;}
}
.ws3d{word-spacing:-203.752800px;}
.ws1d{word-spacing:-17.394700px;}
.ws11e{word-spacing:-15.655334px;}
.ws3a{word-spacing:-15.030000px;}
.ws1{word-spacing:-14.943900px;}
.ws20{word-spacing:-13.915795px;}
.wsb2{word-spacing:-13.449600px;}
.ws39{word-spacing:-12.161520px;}
.ws1f{word-spacing:-11.955150px;}
.ws4{word-spacing:-11.357400px;}
.ws102{word-spacing:-4.064741px;}
.wsd7{word-spacing:-4.004965px;}
.wsed{word-spacing:-3.885414px;}
.ws35{word-spacing:-3.706087px;}
.ws103{word-spacing:-3.646312px;}
.ws44{word-spacing:-3.586536px;}
.wsce{word-spacing:-3.227882px;}
.wsda{word-spacing:-3.168107px;}
.wscb{word-spacing:-2.929004px;}
.ws9d{word-spacing:-2.759508px;}
.ws72{word-spacing:-2.753496px;}
.ws37{word-spacing:-2.749678px;}
.ws71{word-spacing:-2.705400px;}
.wsc{word-spacing:-2.630126px;}
.ws81{word-spacing:-2.570351px;}
.wsff{word-spacing:-2.391024px;}
.ws8{word-spacing:-2.331248px;}
.ws100{word-spacing:-2.151922px;}
.ws105{word-spacing:-2.092146px;}
.ws7{word-spacing:-1.908367px;}
.ws28{word-spacing:-1.853044px;}
.ws128{word-spacing:-1.829146px;}
.ws27{word-spacing:-1.733492px;}
.ws131{word-spacing:-1.721549px;}
.ws6e{word-spacing:-1.695384px;}
.ws26{word-spacing:-1.673717px;}
.wsec{word-spacing:-1.613941px;}
.ws33{word-spacing:-1.554166px;}
.ws32{word-spacing:-1.494390px;}
.wsef{word-spacing:-1.434614px;}
.ws29{word-spacing:-1.374839px;}
.ws54{word-spacing:-1.346688px;}
.ws6{word-spacing:-1.322630px;}
.ws101{word-spacing:-1.315063px;}
.ws55{word-spacing:-1.310616px;}
.ws43{word-spacing:-1.255288px;}
.wscd{word-spacing:-1.195512px;}
.wse3{word-spacing:-1.075961px;}
.wsa7{word-spacing:-1.016185px;}
.ws42{word-spacing:-0.896634px;}
.ws2e{word-spacing:-0.836858px;}
.ws34{word-spacing:-0.777083px;}
.ws13b{word-spacing:-0.753178px;}
.wse4{word-spacing:-0.717307px;}
.ws60{word-spacing:-0.661320px;}
.ws9a{word-spacing:-0.631260px;}
.ws9b{word-spacing:-0.613224px;}
.wsfe{word-spacing:-0.537980px;}
.ws48{word-spacing:-0.478205px;}
.wsbb{word-spacing:-0.418429px;}
.ws1a{word-spacing:-0.358654px;}
.ws94{word-spacing:-0.342684px;}
.ws5f{word-spacing:-0.330660px;}
.ws118{word-spacing:-0.322790px;}
.ws19{word-spacing:-0.298878px;}
.ws6c{word-spacing:-0.288576px;}
.ws11b{word-spacing:-0.268992px;}
.ws4c{word-spacing:-0.268128px;}
.wsf{word-spacing:-0.239102px;}
.ws85{word-spacing:-0.228456px;}
.ws113{word-spacing:-0.215194px;}
.ws6d{word-spacing:-0.210420px;}
.ws97{word-spacing:-0.204408px;}
.ws96{word-spacing:-0.198396px;}
.ws53{word-spacing:-0.192384px;}
.ws10{word-spacing:-0.179327px;}
.ws125{word-spacing:-0.161395px;}
.ws4b{word-spacing:-0.124488px;}
.wsb{word-spacing:-0.119551px;}
.ws138{word-spacing:-0.107597px;}
.ws3{word-spacing:-0.059776px;}
.wsb3{word-spacing:-0.053798px;}
.ws5{word-spacing:-0.009504px;}
.ws141{word-spacing:-0.007277px;}
.ws140{word-spacing:-0.007085px;}
.ws8d{word-spacing:-0.006012px;}
.ws120{word-spacing:-0.005904px;}
.ws1e{word-spacing:-0.003082px;}
.ws12f{word-spacing:-0.002486px;}
.ws2{word-spacing:-0.002392px;}
.ws111{word-spacing:-0.001286px;}
.ws136{word-spacing:-0.000221px;}
.ws0{word-spacing:0.000000px;}
.ws84{word-spacing:0.030060px;}
.ws52{word-spacing:0.036072px;}
.ws90{word-spacing:0.042084px;}
.ws10b{word-spacing:0.053798px;}
.ws2a{word-spacing:0.059776px;}
.ws73{word-spacing:0.078156px;}
.wsa3{word-spacing:0.090180px;}
.ws115{word-spacing:0.107597px;}
.ws93{word-spacing:0.108216px;}
.ws8c{word-spacing:0.114228px;}
.ws11{word-spacing:0.119551px;}
.wsa0{word-spacing:0.132264px;}
.ws95{word-spacing:0.135000px;}
.ws5b{word-spacing:0.151200px;}
.wsa2{word-spacing:0.168336px;}
.ws5c{word-spacing:0.178200px;}
.wsd{word-spacing:0.179327px;}
.wsa9{word-spacing:0.215194px;}
.ws9{word-spacing:0.239102px;}
.ws13d{word-spacing:0.268992px;}
.ws5a{word-spacing:0.294588px;}
.ws36{word-spacing:0.298878px;}
.ws112{word-spacing:0.322790px;}
.wsa1{word-spacing:0.336672px;}
.wse{word-spacing:0.358654px;}
.ws18{word-spacing:0.478205px;}
.ws45{word-spacing:0.537980px;}
.ws78{word-spacing:0.553104px;}
.ws77{word-spacing:0.607212px;}
.wse9{word-spacing:0.657532px;}
.ws79{word-spacing:0.697392px;}
.ws11a{word-spacing:0.699379px;}
.ws7c{word-spacing:0.777083px;}
.wsa{word-spacing:0.836858px;}
.wsb8{word-spacing:1.004233px;}
.ws15{word-spacing:1.016185px;}
.wsd3{word-spacing:1.135736px;}
.wsbf{word-spacing:1.195512px;}
.ws10c{word-spacing:1.237363px;}
.wscc{word-spacing:1.255288px;}
.wsf4{word-spacing:1.315063px;}
.wsd4{word-spacing:1.374839px;}
.ws38{word-spacing:1.434614px;}
.ws7d{word-spacing:1.494390px;}
.wsba{word-spacing:1.554166px;}
.ws121{word-spacing:1.560154px;}
.ws4a{word-spacing:1.613941px;}
.ws14{word-spacing:1.673717px;}
.ws132{word-spacing:1.775347px;}
.wsf5{word-spacing:1.793268px;}
.ws86{word-spacing:1.833660px;}
.ws110{word-spacing:1.936742px;}
.wseb{word-spacing:2.032370px;}
.wse0{word-spacing:2.092146px;}
.wse1{word-spacing:2.151922px;}
.ws117{word-spacing:2.151936px;}
.ws122{word-spacing:2.205734px;}
.wsd8{word-spacing:2.211697px;}
.ws123{word-spacing:2.259533px;}
.wsf1{word-spacing:2.271473px;}
.ws24{word-spacing:2.331248px;}
.ws109{word-spacing:2.450800px;}
.wsa6{word-spacing:2.510575px;}
.ws135{word-spacing:2.582323px;}
.wsfd{word-spacing:2.630126px;}
.ws11c{word-spacing:2.636122px;}
.ws137{word-spacing:2.797517px;}
.wsd6{word-spacing:2.809453px;}
.wscf{word-spacing:2.869229px;}
.ws8a{word-spacing:2.909808px;}
.ws8b{word-spacing:2.915820px;}
.wsf0{word-spacing:2.929004px;}
.ws13f{word-spacing:2.958912px;}
.ws12a{word-spacing:3.012710px;}
.ws80{word-spacing:3.108331px;}
.ws25{word-spacing:3.168107px;}
.wsc1{word-spacing:3.227882px;}
.ws51{word-spacing:3.300588px;}
.wsfa{word-spacing:3.347434px;}
.ws58{word-spacing:3.354696px;}
.ws59{word-spacing:3.432852px;}
.ws12e{word-spacing:3.443098px;}
.wsb9{word-spacing:3.466985px;}
.ws23{word-spacing:3.526760px;}
.ws22{word-spacing:3.586536px;}
.wsf9{word-spacing:3.765863px;}
.wsf2{word-spacing:3.885414px;}
.ws8f{word-spacing:3.991968px;}
.wsfc{word-spacing:4.004965px;}
.ws8e{word-spacing:4.064112px;}
.wse2{word-spacing:4.124516px;}
.wsdb{word-spacing:4.184292px;}
.ws17{word-spacing:4.244068px;}
.ws7e{word-spacing:4.303843px;}
.ws9e{word-spacing:4.346676px;}
.wsea{word-spacing:4.363619px;}
.ws31{word-spacing:4.423394px;}
.ws9f{word-spacing:4.424832px;}
.ws30{word-spacing:4.483170px;}
.wsdd{word-spacing:4.542946px;}
.ws13e{word-spacing:4.572864px;}
.wsbc{word-spacing:4.662497px;}
.wsd9{word-spacing:4.722272px;}
.ws76{word-spacing:4.743468px;}
.ws70{word-spacing:4.749480px;}
.ws82{word-spacing:4.761504px;}
.ws6f{word-spacing:4.779540px;}
.wsa5{word-spacing:4.782048px;}
.ws75{word-spacing:4.797576px;}
.ws83{word-spacing:4.827636px;}
.ws16{word-spacing:4.841824px;}
.ws11f{word-spacing:4.841856px;}
.wsd2{word-spacing:4.901599px;}
.ws119{word-spacing:5.003251px;}
.ws1c{word-spacing:5.140702px;}
.ws129{word-spacing:5.164646px;}
.ws2c{word-spacing:5.200477px;}
.wsbe{word-spacing:5.260253px;}
.ws41{word-spacing:5.320028px;}
.ws116{word-spacing:5.326042px;}
.ws127{word-spacing:5.374982px;}
.ws139{word-spacing:5.376211px;}
.ws134{word-spacing:5.376845px;}
.ws12c{word-spacing:5.377430px;}
.ws124{word-spacing:5.377498px;}
.ws10d{word-spacing:5.378822px;}
.ws10e{word-spacing:5.379581px;}
.ws10f{word-spacing:5.379840px;}
.ws13a{word-spacing:5.380742px;}
.ws126{word-spacing:5.381923px;}
.ws13c{word-spacing:5.433638px;}
.ws7b{word-spacing:5.439580px;}
.wsee{word-spacing:5.499355px;}
.wsde{word-spacing:5.559131px;}
.ws114{word-spacing:5.648832px;}
.wse7{word-spacing:5.678682px;}
.ws106{word-spacing:5.798233px;}
.ws74{word-spacing:5.891760px;}
.ws13{word-spacing:5.977560px;}
.ws7a{word-spacing:6.180336px;}
.wsf3{word-spacing:6.216662px;}
.wsc4{word-spacing:6.336214px;}
.ws6b{word-spacing:6.517008px;}
.ws2f{word-spacing:6.694867px;}
.ws2b{word-spacing:6.754643px;}
.ws6a{word-spacing:6.925824px;}
.ws108{word-spacing:6.933970px;}
.ws12b{word-spacing:6.939994px;}
.wsdc{word-spacing:7.113296px;}
.wsc2{word-spacing:7.292623px;}
.ws12d{word-spacing:7.316582px;}
.wsa4{word-spacing:7.358688px;}
.wse8{word-spacing:7.412174px;}
.ws11d{word-spacing:7.424179px;}
.wsc0{word-spacing:7.471950px;}
.ws49{word-spacing:7.531726px;}
.wsfb{word-spacing:7.591501px;}
.ws1b{word-spacing:7.651277px;}
.wsd5{word-spacing:8.009930px;}
.wsf8{word-spacing:8.069706px;}
.wsf7{word-spacing:8.249033px;}
.ws9c{word-spacing:8.284536px;}
.ws5e{word-spacing:8.344656px;}
.ws5d{word-spacing:8.410788px;}
.wsbd{word-spacing:8.428360px;}
.ws104{word-spacing:8.488135px;}
.ws91{word-spacing:8.681328px;}
.ws92{word-spacing:8.723412px;}
.wsd1{word-spacing:9.026116px;}
.ws89{word-spacing:9.060084px;}
.wsdf{word-spacing:9.384769px;}
.ws4d{word-spacing:9.402768px;}
.ws69{word-spacing:9.444852px;}
.ws68{word-spacing:9.456876px;}
.ws67{word-spacing:9.823608px;}
.ws66{word-spacing:9.847656px;}
.ws2d{word-spacing:10.042301px;}
.ws57{word-spacing:10.136232px;}
.ws56{word-spacing:10.280520px;}
.wsc6{word-spacing:10.281403px;}
.wse6{word-spacing:10.341179px;}
.wsc5{word-spacing:10.759608px;}
.ws61{word-spacing:10.845648px;}
.ws10a{word-spacing:11.058486px;}
.ws47{word-spacing:11.178037px;}
.wsd0{word-spacing:11.297588px;}
.ws46{word-spacing:11.357364px;}
.ws4e{word-spacing:11.603160px;}
.ws62{word-spacing:11.675304px;}
.ws4f{word-spacing:11.945844px;}
.wsc9{word-spacing:12.552876px;}
.ws63{word-spacing:12.697344px;}
.ws64{word-spacing:12.709368px;}
.wsc3{word-spacing:13.090856px;}
.wsf6{word-spacing:13.210408px;}
.ws87{word-spacing:13.376700px;}
.ws88{word-spacing:13.430808px;}
.ws3b{word-spacing:13.694400px;}
.ws107{word-spacing:13.867939px;}
.ws98{word-spacing:14.146236px;}
.ws99{word-spacing:14.236416px;}
.wsc7{word-spacing:14.764573px;}
.ws65{word-spacing:14.813568px;}
.wsc8{word-spacing:14.824349px;}
.ws133{word-spacing:16.139520px;}
.wse5{word-spacing:17.992456px;}
.wsca{word-spacing:19.486846px;}
.ws12{word-spacing:21.698543px;}
.ws50{word-spacing:24.871644px;}
.ws7f{word-spacing:28.393410px;}
.ws130{word-spacing:28.835942px;}
.ws40{word-spacing:36.277200px;}
.wsa8{word-spacing:36.851904px;}
.ws3e{word-spacing:39.025800px;}
.ws3f{word-spacing:68.412600px;}
.ws3c{word-spacing:107.281800px;}
.wsae{word-spacing:130.615488px;}
.wsac{word-spacing:162.040781px;}
.wsad{word-spacing:173.553638px;}
.wsaf{word-spacing:173.607437px;}
.wsb5{word-spacing:181.408205px;}
.wsab{word-spacing:202.218768px;}
.wsaa{word-spacing:207.554227px;}
.wsb1{word-spacing:214.440422px;}
.wsb0{word-spacing:223.687440px;}
.wsb6{word-spacing:274.259770px;}
.wsb7{word-spacing:470.996995px;}
.wsb4{word-spacing:563.907485px;}
.ws21{word-spacing:751.309447px;}
._1a{margin-left:-2040.878091px;}
._24{margin-left:-1997.843736px;}
._23{margin-left:-1561.233600px;}
._1b{margin-left:-497.538994px;}
._1d{margin-left:-149.763600px;}
._1e{margin-left:-27.723600px;}
._50{margin-left:-23.793197px;}
._41{margin-left:-20.906155px;}
._1c{margin-left:-13.273200px;}
._0{margin-left:-11.943245px;}
._15{margin-left:-7.268538px;}
._3{margin-left:-5.971622px;}
._11{margin-left:-4.399936px;}
._48{margin-left:-3.287658px;}
._7{margin-left:-2.047382px;}
._4{margin-left:-1.022170px;}
._8{width:1.091170px;}
._1{width:2.991288px;}
._4e{width:4.363619px;}
._52{width:9.061806px;}
._16{width:10.460730px;}
._55{width:12.212237px;}
._c{width:13.371709px;}
._4d{width:14.779585px;}
._b{width:15.855546px;}
._5{width:17.861069px;}
._6{width:19.797811px;}
._9{width:20.876696px;}
._d{width:21.907893px;}
._49{width:22.953830px;}
._a{width:24.149342px;}
._f{width:25.359866px;}
._18{width:26.361040px;}
._4a{width:27.779080px;}
._21{width:28.826223px;}
._26{width:30.652795px;}
._13{width:32.039722px;}
._4b{width:33.653663px;}
._17{width:34.729624px;}
._10{width:35.984911px;}
._22{width:38.510498px;}
._4f{width:42.536769px;}
._51{width:46.146763px;}
._e{width:47.760704px;}
._25{width:50.510382px;}
._14{width:51.705894px;}
._2{width:54.411792px;}
._57{width:57.322680px;}
._56{width:58.404734px;}
._4c{width:59.495049px;}
._54{width:61.978851px;}
._29{width:118.281888px;}
._20{width:136.080000px;}
._28{width:138.591357px;}
._1f{width:149.763600px;}
._2b{width:161.126208px;}
._43{width:170.110541px;}
._32{width:171.426749px;}
._44{width:187.003238px;}
._3a{width:197.978112px;}
._2a{width:205.725082px;}
._47{width:208.899187px;}
._36{width:214.386624px;}
._35{width:221.003827px;}
._3f{width:223.363440px;}
._34{width:224.446925px;}
._30{width:228.051418px;}
._3b{width:232.193894px;}
._39{width:233.810889px;}
._42{width:235.375517px;}
._2f{width:241.339622px;}
._37{width:243.152717px;}
._2e{width:247.903027px;}
._3c{width:253.336666px;}
._46{width:255.165811px;}
._2c{width:258.393715px;}
._31{width:265.441306px;}
._27{width:272.704090px;}
._2d{width:294.169651px;}
._3e{width:308.038464px;}
._45{width:382.280006px;}
._40{width:398.269555px;}
._33{width:415.538842px;}
._38{width:475.308864px;}
._3d{width:600.282547px;}
._19{width:1537.048548px;}
._53{width:1922.198700px;}
._12{width:1946.108700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc5{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs5{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fsa{font-size:72.000000px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y67{bottom:-515.983050px;}
.y86{bottom:-456.673050px;}
.y85{bottom:-436.423050px;}
.y84{bottom:-416.173050px;}
.y83{bottom:-395.923050px;}
.y82{bottom:-366.673050px;}
.ya5{bottom:-348.982050px;}
.y81{bottom:-328.423050px;}
.ybe{bottom:-310.462050px;}
.y80{bottom:-308.173050px;}
.ybd{bottom:-290.212050px;}
.y7f{bottom:-288.013050px;}
.y7e{bottom:-267.763050px;}
.ybc{bottom:-261.052050px;}
.y7d{bottom:-247.513050px;}
.y7c{bottom:-227.263050px;}
.ybb{bottom:-222.802050px;}
.y7b{bottom:-207.013050px;}
.yba{bottom:-202.552050px;}
.y7a{bottom:-186.762900px;}
.yb9{bottom:-182.302050px;}
.y79{bottom:-166.512900px;}
.yb8{bottom:-162.052050px;}
.y78{bottom:-146.352900px;}
.yb7{bottom:-141.802050px;}
.y77{bottom:-126.102900px;}
.yb6{bottom:-121.642050px;}
.y76{bottom:-105.852900px;}
.yb5{bottom:-92.392050px;}
.y75{bottom:-85.602900px;}
.y74{bottom:-65.352900px;}
.yb4{bottom:-54.142050px;}
.y73{bottom:-27.643050px;}
.yb3{bottom:-16.342050px;}
.y0{bottom:0.000000px;}
.y11{bottom:3.425340px;}
.y72{bottom:7.186950px;}
.y10{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y8a{bottom:23.026950px;}
.y89{bottom:44.536950px;}
.y30{bottom:63.780000px;}
.y88{bottom:66.046950px;}
.y87{bottom:86.836950px;}
.y8b{bottom:97.276950px;}
.y5f{bottom:108.612000px;}
.yce{bottom:112.062000px;}
.y15d{bottom:113.229000px;}
.y2f{bottom:114.081000px;}
.y8c{bottom:118.336950px;}
.yfa{bottom:120.492000px;}
.y118{bottom:123.121500px;}
.y1ad{bottom:128.325000px;}
.y5e{bottom:128.875500px;}
.ycd{bottom:132.325500px;}
.y15c{bottom:133.492500px;}
.y2e{bottom:134.344500px;}
.y8d{bottom:139.487400px;}
.y12e{bottom:140.128500px;}
.yf9{bottom:140.757000px;}
.y117{bottom:143.386500px;}
.y17a{bottom:146.481000px;}
.y1ac{bottom:147.691500px;}
.ya2{bottom:149.139000px;}
.ycc{bottom:152.589000px;}
.y2d{bottom:154.609500px;}
.y5d{bottom:158.106000px;}
.y12d{bottom:160.392000px;}
.y8e{bottom:160.637850px;}
.yf8{bottom:161.020500px;}
.y15b{bottom:162.723000px;}
.y116{bottom:163.650000px;}
.y179{bottom:165.847500px;}
.y1ab{bottom:167.059500px;}
.ya1{bottom:169.404000px;}
.ycb{bottom:172.854000px;}
.y2c{bottom:174.873000px;}
.y12c{bottom:180.657000px;}
.yf7{bottom:181.284000px;}
.y8f{bottom:181.788300px;}
.y115{bottom:183.913500px;}
.y178{bottom:185.215500px;}
.y1aa{bottom:186.427500px;}
.ya0{bottom:189.667500px;}
.y5c{bottom:192.925500px;}
.yca{bottom:193.117500px;}
.y2b{bottom:195.138000px;}
.y15a{bottom:197.542500px;}
.y12b{bottom:200.920500px;}
.y90{bottom:202.848300px;}
.y114{bottom:204.178500px;}
.y177{bottom:204.583500px;}
.y1a9{bottom:205.794000px;}
.y9f{bottom:209.932500px;}
.yf6{bottom:210.514500px;}
.y5b{bottom:213.189000px;}
.yc9{bottom:213.382500px;}
.y2a{bottom:215.401500px;}
.y159{bottom:217.807500px;}
.y12a{bottom:221.184000px;}
.y176{bottom:223.950000px;}
.y91{bottom:223.998750px;}
.y113{bottom:224.442000px;}
.y1a8{bottom:225.162000px;}
.y9e{bottom:230.196000px;}
.y5a{bottom:233.454000px;}
.y29{bottom:235.665000px;}
.y158{bottom:238.071000px;}
.y129{bottom:241.449000px;}
.yc8{bottom:242.613000px;}
.y175{bottom:243.318000px;}
.y1a7{bottom:244.528500px;}
.y112{bottom:244.707000px;}
.y92{bottom:245.149200px;}
.yf5{bottom:250.266000px;}
.y9d{bottom:250.459500px;}
.y59{bottom:253.717500px;}
.y28{bottom:255.930000px;}
.y157{bottom:258.336000px;}
.y128{bottom:261.712500px;}
.y174{bottom:262.684500px;}
.y1a6{bottom:263.896500px;}
.yf4{bottom:264.463500px;}
.y111{bottom:264.970500px;}
.y93{bottom:266.209200px;}
.y58{bottom:273.982500px;}
.y27{bottom:276.193500px;}
.yc7{bottom:277.432500px;}
.y156{bottom:278.599500px;}
.y9c{bottom:279.690000px;}
.y127{bottom:281.977500px;}
.y173{bottom:282.052500px;}
.y1a5{bottom:283.264500px;}
.y110{bottom:285.234000px;}
.yf3{bottom:286.164000px;}
.y94{bottom:287.359650px;}
.y57{bottom:294.246000px;}
.y26{bottom:296.458500px;}
.yc6{bottom:297.696000px;}
.y155{bottom:298.863000px;}
.y172{bottom:301.420500px;}
.y126{bottom:302.241000px;}
.yf2{bottom:302.602500px;}
.y1a4{bottom:302.631000px;}
.y10f{bottom:305.499000px;}
.y95{bottom:308.510100px;}
.y56{bottom:314.509500px;}
.y25{bottom:316.722000px;}
.yc5{bottom:317.959500px;}
.y154{bottom:319.128000px;}
.y171{bottom:320.787000px;}
.y1a3{bottom:321.999000px;}
.y125{bottom:322.504500px;}
.y10e{bottom:325.762500px;}
.yf1{bottom:326.242500px;}
.y55{bottom:334.774500px;}
.y24{bottom:336.985500px;}
.yc4{bottom:338.224500px;}
.y153{bottom:339.391500px;}
.y170{bottom:340.155000px;}
.y1a2{bottom:341.367000px;}
.yf0{bottom:342.681000px;}
.y124{bottom:342.769500px;}
.y71{bottom:343.696950px;}
.y10d{bottom:346.027500px;}
.y54{bottom:355.038000px;}
.y23{bottom:357.250500px;}
.yc3{bottom:358.488000px;}
.y16f{bottom:359.521500px;}
.y152{bottom:359.656500px;}
.y1a1{bottom:360.733500px;}
.y123{bottom:363.033000px;}
.y70{bottom:363.856950px;}
.y10c{bottom:366.291000px;}
.yef{bottom:366.679500px;}
.y53{bottom:375.303000px;}
.y22{bottom:377.514000px;}
.yc2{bottom:378.753000px;}
.y16e{bottom:378.889500px;}
.y151{bottom:379.920000px;}
.y1a0{bottom:380.101500px;}
.y122{bottom:383.298000px;}
.y6f{bottom:384.106950px;}
.y10b{bottom:386.554500px;}
.yee{bottom:390.319500px;}
.y52{bottom:395.566500px;}
.y21{bottom:397.779000px;}
.y16d{bottom:398.257500px;}
.y19f{bottom:399.468000px;}
.y150{bottom:400.183500px;}
.y121{bottom:403.561500px;}
.y6e{bottom:404.356950px;}
.yed{bottom:406.758000px;}
.y10a{bottom:406.819500px;}
.yc1{bottom:407.983500px;}
.y51{bottom:415.830000px;}
.y16c{bottom:417.624000px;}
.y20{bottom:418.042500px;}
.y19e{bottom:418.836000px;}
.y14f{bottom:421.942500px;}
.yec{bottom:423.196500px;}
.y120{bottom:423.825000px;}
.y109{bottom:427.083000px;}
.yb2{bottom:428.707950px;}
.y6d{bottom:433.606950px;}
.y50{bottom:436.095000px;}
.y16b{bottom:436.992000px;}
.y19d{bottom:438.204000px;}
.y1f{bottom:438.306000px;}
.y14e{bottom:442.206000px;}
.yc0{bottom:442.803000px;}
.y11f{bottom:444.090000px;}
.yeb{bottom:447.195000px;}
.y108{bottom:447.348000px;}
.y9b{bottom:456.358500px;}
.y19c{bottom:457.570500px;}
.y14d{bottom:462.471000px;}
.y11e{bottom:464.353500px;}
.y4f{bottom:465.325500px;}
.y1e{bottom:467.536500px;}
.y107{bottom:467.611500px;}
.yb1{bottom:470.197950px;}
.yea{bottom:470.835000px;}
.y6c{bottom:471.856950px;}
.ybf{bottom:474.426000px;}
.y16a{bottom:475.726500px;}
.y9a{bottom:476.623500px;}
.y19b{bottom:476.938500px;}
.y14c{bottom:482.734500px;}
.y11d{bottom:484.618500px;}
.ye9{bottom:487.273500px;}
.y106{bottom:487.875000px;}
.yb0{bottom:490.447950px;}
.y6b{bottom:492.106950px;}
.y169{bottom:495.094500px;}
.y19a{bottom:496.305000px;}
.ya3{bottom:496.855500px;}
.y99{bottom:496.887000px;}
.y4e{bottom:502.651500px;}
.y14b{bottom:502.999500px;}
.y11c{bottom:504.882000px;}
.y105{bottom:508.140000px;}
.yaf{bottom:510.697950px;}
.ye8{bottom:510.915000px;}
.y6a{bottom:512.356950px;}
.y168{bottom:514.461000px;}
.y199{bottom:515.673000px;}
.y98{bottom:517.150500px;}
.y14a{bottom:523.263000px;}
.y4d{bottom:524.410500px;}
.y11b{bottom:525.145500px;}
.ye7{bottom:527.353500px;}
.y104{bottom:528.403500px;}
.yae{bottom:530.857950px;}
.y69{bottom:532.516950px;}
.y167{bottom:533.829000px;}
.y198{bottom:535.041000px;}
.y97{bottom:537.415500px;}
.y149{bottom:543.526500px;}
.y1d{bottom:543.952500px;}
.y11a{bottom:545.410500px;}
.y4c{bottom:546.169500px;}
.y103{bottom:548.667000px;}
.ye6{bottom:551.350500px;}
.y68{bottom:552.766950px;}
.y166{bottom:553.197000px;}
.y197{bottom:554.407500px;}
.yad{bottom:560.107950px;}
.y148{bottom:563.791500px;}
.y1c{bottom:564.217500px;}
.y102{bottom:568.932000px;}
.y96{bottom:570.039000px;}
.y165{bottom:572.563500px;}
.y196{bottom:573.775500px;}
.y119{bottom:574.641000px;}
.ye5{bottom:574.992000px;}
.y4b{bottom:577.872000px;}
.y147{bottom:584.055000px;}
.y101{bottom:589.195500px;}
.y66{bottom:590.116950px;}
.ye4{bottom:591.430500px;}
.y164{bottom:591.931500px;}
.y65{bottom:592.468500px;}
.y195{bottom:593.142000px;}
.y4a{bottom:598.137000px;}
.yac{bottom:598.357950px;}
.y1b{bottom:602.413500px;}
.y146{bottom:604.320000px;}
.ye3{bottom:607.867500px;}
.y100{bottom:609.460500px;}
.y194{bottom:612.510000px;}
.y49{bottom:618.400500px;}
.yab{bottom:618.607950px;}
.y163{bottom:620.265000px;}
.y1a{bottom:622.678500px;}
.y145{bottom:624.583500px;}
.yff{bottom:629.724000px;}
.ye2{bottom:631.509000px;}
.y193{bottom:631.878000px;}
.yaa{bottom:638.857950px;}
.y19{bottom:642.942000px;}
.y144{bottom:644.847000px;}
.ye1{bottom:647.947500px;}
.yfe{bottom:649.987500px;}
.y192{bottom:651.244500px;}
.y48{bottom:652.965000px;}
.ya9{bottom:659.107950px;}
.y162{bottom:659.716500px;}
.y18{bottom:663.205500px;}
.y143{bottom:666.606000px;}
.yfd{bottom:670.252500px;}
.y191{bottom:670.612500px;}
.ydf{bottom:671.587500px;}
.y47{bottom:674.722500px;}
.ya8{bottom:679.357950px;}
.y17{bottom:683.470500px;}
.y161{bottom:683.881500px;}
.y142{bottom:686.869500px;}
.yde{bottom:688.026000px;}
.y190{bottom:689.979000px;}
.yfc{bottom:690.516000px;}
.ye0{bottom:696.246000px;}
.y46{bottom:696.481500px;}
.ya7{bottom:699.517950px;}
.y16{bottom:703.734000px;}
.ydd{bottom:704.464500px;}
.y141{bottom:707.134500px;}
.y160{bottom:708.046500px;}
.y18f{bottom:709.347000px;}
.yfb{bottom:710.781000px;}
.ya6{bottom:719.767950px;}
.ydc{bottom:720.903000px;}
.y15f{bottom:723.244500px;}
.y15{bottom:723.999000px;}
.y140{bottom:727.398000px;}
.y18e{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.ydb{bottom:737.341500px;}
.y15e{bottom:738.442500px;}
.y14{bottom:744.262500px;}
.y13f{bottom:747.663000px;}
.y18d{bottom:748.081500px;}
.y44{bottom:751.308000px;}
.ya4{bottom:757.117950px;}
.yda{bottom:760.981500px;}
.y13{bottom:764.526000px;}
.y18c{bottom:767.449500px;}
.y13e{bottom:767.926500px;}
.yd9{bottom:769.201500px;}
.y43{bottom:771.573000px;}
.y12{bottom:784.791000px;}
.y18b{bottom:786.816000px;}
.y13d{bottom:788.190000px;}
.y42{bottom:791.836500px;}
.yd8{bottom:801.061500px;}
.y18a{bottom:806.184000px;}
.y13c{bottom:808.455000px;}
.y41{bottom:812.101500px;}
.yd7{bottom:817.500000px;}
.yf{bottom:820.222555px;}
.ye{bottom:820.989000px;}
.y189{bottom:825.552000px;}
.y13b{bottom:828.718500px;}
.y40{bottom:832.365000px;}
.yd6{bottom:841.497000px;}
.y188{bottom:844.918500px;}
.y13a{bottom:848.983500px;}
.y3f{bottom:852.628500px;}
.yd{bottom:859.995000px;}
.y187{bottom:864.286500px;}
.yd4{bottom:865.138500px;}
.y139{bottom:869.247000px;}
.y3e{bottom:872.893500px;}
.yd5{bottom:873.357000px;}
.yd3{bottom:881.577000px;}
.yc{bottom:883.035000px;}
.y186{bottom:883.653000px;}
.y138{bottom:889.510500px;}
.y1b0{bottom:889.531500px;}
.y3d{bottom:893.157000px;}
.yb{bottom:896.310000px;}
.yd2{bottom:898.015500px;}
.y185{bottom:903.021000px;}
.y1af{bottom:908.899500px;}
.y137{bottom:909.775500px;}
.y3c{bottom:913.422000px;}
.ya{bottom:919.348500px;}
.yd1{bottom:922.012500px;}
.y184{bottom:922.389000px;}
.y1ae{bottom:928.267500px;}
.y136{bottom:930.039000px;}
.y3b{bottom:933.685500px;}
.y9{bottom:937.506000px;}
.y183{bottom:941.755500px;}
.yd0{bottom:946.011000px;}
.y135{bottom:950.304000px;}
.y64{bottom:950.692500px;}
.y3a{bottom:953.949000px;}
.y8{bottom:955.662000px;}
.y182{bottom:961.123500px;}
.y134{bottom:970.567500px;}
.y63{bottom:970.956000px;}
.y39{bottom:974.214000px;}
.ycf{bottom:977.631000px;}
.y7{bottom:977.904000px;}
.y181{bottom:980.490000px;}
.y62{bottom:991.219500px;}
.y38{bottom:994.477500px;}
.y6{bottom:998.167500px;}
.y180{bottom:999.858000px;}
.y133{bottom:1005.775500px;}
.y61{bottom:1011.484500px;}
.y37{bottom:1014.742500px;}
.y17f{bottom:1019.226000px;}
.y132{bottom:1026.039000px;}
.y36{bottom:1035.006000px;}
.y17e{bottom:1038.592500px;}
.y60{bottom:1040.715000px;}
.y5{bottom:1040.848500px;}
.y131{bottom:1046.304000px;}
.y35{bottom:1055.269500px;}
.y17d{bottom:1057.960500px;}
.y130{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y17c{bottom:1077.327000px;}
.y12f{bottom:1086.832500px;}
.y33{bottom:1095.798000px;}
.y17b{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y32{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.ha{height:25.508090px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h17{height:35.991211px;}
.h22{height:37.927872px;}
.h8{height:37.993262px;}
.h20{height:38.465856px;}
.h1b{height:38.896243px;}
.h21{height:39.434227px;}
.hd{height:43.217759px;}
.h10{height:43.421105px;}
.h15{height:43.622227px;}
.h4{height:43.815515px;}
.h1a{height:44.091914px;}
.h12{height:44.536816px;}
.h13{height:48.656250px;}
.h9{height:48.848947px;}
.h1f{height:49.117939px;}
.h16{height:50.229492px;}
.h2{height:50.931027px;}
.he{height:54.276245px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.hf{height:54.575123px;}
.h14{height:55.922168px;}
.h19{height:66.972656px;}
.h3{height:69.505289px;}
.h5{height:77.792486px;}
.h1c{height:81.722947px;}
.h1d{height:81.728947px;}
.h1e{height:114.602947px;}
.h11{height:336.952500px;}
.h18{height:430.189500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w5{width:499.822500px;}
.w4{width:630.826800px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x3e{left:-115.603500px;}
.x34{left:-69.574200px;}
.x3d{left:-61.603500px;}
.x33{left:-60.574200px;}
.x3f{left:-29.743500px;}
.x31{left:-15.574200px;}
.x0{left:0.000000px;}
.x32{left:16.285800px;}
.x7{left:29.274117px;}
.x36{left:51.385800px;}
.x2{left:57.111683px;}
.x38{left:71.005800px;}
.x3a{left:92.965350px;}
.x39{left:100.075800px;}
.x5d{left:112.561500px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x37{left:128.155800px;}
.x30{left:131.044200px;}
.x73{left:132.276000px;}
.x4{left:146.170500px;}
.x9b{left:155.458500px;}
.x93{left:157.450500px;}
.x24{left:160.333500px;}
.x46{left:162.375000px;}
.x94{left:164.794500px;}
.x25{left:167.491500px;}
.x92{left:171.837000px;}
.x53{left:173.136000px;}
.x8c{left:174.766500px;}
.x42{left:177.493500px;}
.xa4{left:179.530500px;}
.x8a{left:181.447500px;}
.x8{left:188.629500px;}
.x1b{left:190.950000px;}
.x26{left:195.831000px;}
.x1c{left:198.421500px;}
.x5e{left:204.168000px;}
.x27{left:210.774000px;}
.xb{left:213.252000px;}
.x9c{left:220.432500px;}
.x72{left:223.170000px;}
.x4c{left:224.203500px;}
.x8b{left:225.220500px;}
.x9d{left:227.157000px;}
.x7b{left:235.009500px;}
.x41{left:236.875500px;}
.x5f{left:239.964000px;}
.x8f{left:242.497500px;}
.x60{left:244.252500px;}
.x4d{left:245.428500px;}
.x68{left:246.559500px;}
.xe{left:249.294000px;}
.xb4{left:251.667000px;}
.xf{left:253.584000px;}
.x6c{left:256.236000px;}
.xb1{left:259.335000px;}
.x18{left:262.425000px;}
.xa0{left:265.191000px;}
.xb5{left:267.238500px;}
.x16{left:270.628500px;}
.xa1{left:272.535000px;}
.x19{left:273.706500px;}
.x66{left:276.499500px;}
.x17{left:278.101500px;}
.x1a{left:281.179500px;}
.x3c{left:283.234500px;}
.x2a{left:286.557000px;}
.x67{left:291.444000px;}
.x47{left:292.806000px;}
.xa5{left:298.917000px;}
.x45{left:302.736000px;}
.x6a{left:304.135500px;}
.x54{left:306.472500px;}
.x7e{left:311.284500px;}
.x74{left:318.780000px;}
.x3b{left:325.693500px;}
.x40{left:336.030000px;}
.x9e{left:338.968500px;}
.x76{left:340.632000px;}
.x90{left:343.866000px;}
.x9f{left:345.411000px;}
.x61{left:348.610500px;}
.x4e{left:350.008500px;}
.x69{left:353.229000px;}
.x62{left:356.082000px;}
.x6b{left:363.327000px;}
.x91{left:368.655000px;}
.x75{left:370.980000px;}
.x28{left:372.967500px;}
.x4f{left:378.312000px;}
.xc{left:385.354500px;}
.x29{left:387.912000px;}
.x6d{left:391.035000px;}
.xd{left:392.826000px;}
.x43{left:404.496000px;}
.xb2{left:429.762000px;}
.x77{left:435.435000px;}
.xb3{left:436.486500px;}
.xa2{left:438.049500px;}
.xaa{left:439.860000px;}
.x55{left:445.935000px;}
.x78{left:450.379500px;}
.x7c{left:451.819500px;}
.x1d{left:455.548500px;}
.x50{left:457.567500px;}
.x56{left:460.879500px;}
.xa9{left:463.534500px;}
.x7d{left:466.762500px;}
.x1e{left:470.491500px;}
.x4a{left:480.918000px;}
.xaf{left:482.466000px;}
.x2e{left:485.400000px;}
.x63{left:488.472000px;}
.x59{left:489.895500px;}
.x4b{left:495.862500px;}
.x5a{left:518.691000px;}
.x48{left:525.178500px;}
.x44{left:527.200500px;}
.x5b{left:533.635500px;}
.x49{left:538.245000px;}
.x10{left:540.342000px;}
.x7f{left:544.180500px;}
.xa6{left:546.477000px;}
.x11{left:547.813500px;}
.x80{left:551.652000px;}
.x51{left:554.152500px;}
.x81{left:555.463500px;}
.x2b{left:556.681500px;}
.x64{left:561.372000px;}
.x82{left:562.935000px;}
.x1f{left:566.733000px;}
.x52{left:569.095500px;}
.x2c{left:571.626000px;}
.x65{left:576.316500px;}
.x20{left:581.676000px;}
.x83{left:585.501000px;}
.xab{left:597.330000px;}
.x84{left:600.444000px;}
.xac{left:604.336500px;}
.xa7{left:606.832500px;}
.x35{left:623.155650px;}
.x7a{left:624.592500px;}
.x9{left:633.084000px;}
.x6e{left:638.977500px;}
.x21{left:641.314500px;}
.x14{left:648.100500px;}
.x6f{left:653.922000px;}
.x15{left:655.573500px;}
.x12{left:659.916000px;}
.x97{left:661.116000px;}
.x86{left:663.051000px;}
.x13{left:667.389000px;}
.x85{left:668.452500px;}
.xa8{left:670.762500px;}
.x5c{left:676.432500px;}
.x2d{left:679.093500px;}
.x87{left:681.675000px;}
.xb0{left:683.563500px;}
.x98{left:688.014000px;}
.x8e{left:694.411500px;}
.x88{left:695.497500px;}
.x57{left:697.159500px;}
.x79{left:700.239000px;}
.x6{left:701.339982px;}
.x22{left:705.348000px;}
.xa{left:710.841000px;}
.x23{left:712.821000px;}
.xad{left:718.468500px;}
.x8d{left:722.758500px;}
.x58{left:724.089000px;}
.xae{left:725.475000px;}
.x95{left:729.255000px;}
.x2f{left:738.004500px;}
.x89{left:744.142500px;}
.x99{left:749.463000px;}
.xa3{left:751.627500px;}
.x96{left:756.153000px;}
.x70{left:758.215500px;}
.x71{left:773.158500px;}
.x9a{left:776.362500px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v3{vertical-align:-1.281600pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:29.221333pt;}
.v5{vertical-align:58.448000pt;}
.ls2e{letter-spacing:-0.261856pt;}
.ls34{letter-spacing:-0.213760pt;}
.ls2c{letter-spacing:-0.176352pt;}
.ls36{letter-spacing:-0.144000pt;}
.ls33{letter-spacing:-0.133600pt;}
.ls28{letter-spacing:-0.090848pt;}
.ls2b{letter-spacing:-0.085504pt;}
.ls25{letter-spacing:-0.076608pt;}
.ls32{letter-spacing:-0.069472pt;}
.ls26{letter-spacing:-0.064128pt;}
.ls3e{letter-spacing:-0.058784pt;}
.ls40{letter-spacing:-0.053440pt;}
.ls2f{letter-spacing:-0.048096pt;}
.ls3d{letter-spacing:-0.042752pt;}
.ls27{letter-spacing:-0.032064pt;}
.ls2d{letter-spacing:-0.026720pt;}
.ls3f{letter-spacing:-0.021376pt;}
.ls2a{letter-spacing:-0.016032pt;}
.ls31{letter-spacing:-0.010688pt;}
.ls35{letter-spacing:-0.009600pt;}
.ls30{letter-spacing:-0.005344pt;}
.lse{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.000002pt;}
.ls54{letter-spacing:0.000047pt;}
.ls45{letter-spacing:0.000137pt;}
.ls44{letter-spacing:0.000387pt;}
.ls4c{letter-spacing:0.000444pt;}
.ls6{letter-spacing:0.000503pt;}
.ls55{letter-spacing:0.000572pt;}
.ls46{letter-spacing:0.001349pt;}
.ls43{letter-spacing:0.001487pt;}
.ls4a{letter-spacing:0.001680pt;}
.ls52{letter-spacing:0.001818pt;}
.ls42{letter-spacing:0.001843pt;}
.ls49{letter-spacing:0.002403pt;}
.ls0{letter-spacing:0.002422pt;}
.ls4e{letter-spacing:0.002505pt;}
.ls9{letter-spacing:0.002551pt;}
.lsc{letter-spacing:0.003106pt;}
.ls4b{letter-spacing:0.003325pt;}
.lsb{letter-spacing:0.003409pt;}
.ls7{letter-spacing:0.003430pt;}
.ls3{letter-spacing:0.003733pt;}
.ls48{letter-spacing:0.004625pt;}
.ls1d{letter-spacing:0.004800pt;}
.ls10{letter-spacing:0.004813pt;}
.ls1e{letter-spacing:0.005344pt;}
.ls20{letter-spacing:0.010688pt;}
.ls17{letter-spacing:0.012800pt;}
.ls18{letter-spacing:0.016032pt;}
.ls21{letter-spacing:0.021376pt;}
.ls23{letter-spacing:0.024000pt;}
.ls22{letter-spacing:0.026720pt;}
.ls1c{letter-spacing:0.028800pt;}
.ls19{letter-spacing:0.032064pt;}
.ls14{letter-spacing:0.034048pt;}
.ls29{letter-spacing:0.037408pt;}
.ls12{letter-spacing:0.038304pt;}
.ls1f{letter-spacing:0.042752pt;}
.ls3b{letter-spacing:0.043200pt;}
.ls16{letter-spacing:0.048096pt;}
.ls1b{letter-spacing:0.053440pt;}
.ls38{letter-spacing:0.058784pt;}
.ls1a{letter-spacing:0.064128pt;}
.ls3a{letter-spacing:0.069472pt;}
.ls3c{letter-spacing:0.085504pt;}
.ls39{letter-spacing:0.090848pt;}
.ls15{letter-spacing:0.161728pt;}
.ls13{letter-spacing:0.170240pt;}
.ls37{letter-spacing:0.950400pt;}
.lsf{letter-spacing:1.133683pt;}
.lsa{letter-spacing:1.654338pt;}
.ls1{letter-spacing:2.657067pt;}
.lsd{letter-spacing:10.626533pt;}
.ls51{letter-spacing:11.694473pt;}
.ls50{letter-spacing:11.898863pt;}
.ls4d{letter-spacing:11.954133pt;}
.ls53{letter-spacing:11.955635pt;}
.ls4f{letter-spacing:11.959467pt;}
.ls47{letter-spacing:13.151424pt;}
.ls2{letter-spacing:13.283733pt;}
.ls4{letter-spacing:15.937067pt;}
.ls5{letter-spacing:62.432533pt;}
.ls8{letter-spacing:64.314231pt;}
.ls11{letter-spacing:83.149654pt;}
.ls24{letter-spacing:133.113600pt;}
.ws3d{word-spacing:-181.113600pt;}
.ws1d{word-spacing:-15.461955pt;}
.ws11e{word-spacing:-13.915853pt;}
.ws3a{word-spacing:-13.360000pt;}
.ws1{word-spacing:-13.283467pt;}
.ws20{word-spacing:-12.369595pt;}
.wsb2{word-spacing:-11.955200pt;}
.ws39{word-spacing:-10.810240pt;}
.ws1f{word-spacing:-10.626800pt;}
.ws4{word-spacing:-10.095467pt;}
.ws102{word-spacing:-3.613103pt;}
.wsd7{word-spacing:-3.559969pt;}
.wsed{word-spacing:-3.453701pt;}
.ws35{word-spacing:-3.294300pt;}
.ws103{word-spacing:-3.241166pt;}
.ws44{word-spacing:-3.188032pt;}
.wsce{word-spacing:-2.869229pt;}
.wsda{word-spacing:-2.816095pt;}
.wscb{word-spacing:-2.603559pt;}
.ws9d{word-spacing:-2.452896pt;}
.ws72{word-spacing:-2.447552pt;}
.ws37{word-spacing:-2.444158pt;}
.ws71{word-spacing:-2.404800pt;}
.wsc{word-spacing:-2.337890pt;}
.ws81{word-spacing:-2.284756pt;}
.wsff{word-spacing:-2.125355pt;}
.ws8{word-spacing:-2.072221pt;}
.ws100{word-spacing:-1.912819pt;}
.ws105{word-spacing:-1.859685pt;}
.ws7{word-spacing:-1.696326pt;}
.ws28{word-spacing:-1.647150pt;}
.ws128{word-spacing:-1.625907pt;}
.ws27{word-spacing:-1.540882pt;}
.ws131{word-spacing:-1.530266pt;}
.ws6e{word-spacing:-1.507008pt;}
.ws26{word-spacing:-1.487748pt;}
.wsec{word-spacing:-1.434614pt;}
.ws33{word-spacing:-1.381481pt;}
.ws32{word-spacing:-1.328347pt;}
.wsef{word-spacing:-1.275213pt;}
.ws29{word-spacing:-1.222079pt;}
.ws54{word-spacing:-1.197056pt;}
.ws6{word-spacing:-1.175671pt;}
.ws101{word-spacing:-1.168945pt;}
.ws55{word-spacing:-1.164992pt;}
.ws43{word-spacing:-1.115811pt;}
.wscd{word-spacing:-1.062677pt;}
.wse3{word-spacing:-0.956410pt;}
.wsa7{word-spacing:-0.903276pt;}
.ws42{word-spacing:-0.797008pt;}
.ws2e{word-spacing:-0.743874pt;}
.ws34{word-spacing:-0.690740pt;}
.ws13b{word-spacing:-0.669491pt;}
.wse4{word-spacing:-0.637606pt;}
.ws60{word-spacing:-0.587840pt;}
.ws9a{word-spacing:-0.561120pt;}
.ws9b{word-spacing:-0.545088pt;}
.wsfe{word-spacing:-0.478205pt;}
.ws48{word-spacing:-0.425071pt;}
.wsbb{word-spacing:-0.371937pt;}
.ws1a{word-spacing:-0.318803pt;}
.ws94{word-spacing:-0.304608pt;}
.ws5f{word-spacing:-0.293920pt;}
.ws118{word-spacing:-0.286925pt;}
.ws19{word-spacing:-0.265669pt;}
.ws6c{word-spacing:-0.256512pt;}
.ws11b{word-spacing:-0.239104pt;}
.ws4c{word-spacing:-0.238336pt;}
.wsf{word-spacing:-0.212535pt;}
.ws85{word-spacing:-0.203072pt;}
.ws113{word-spacing:-0.191283pt;}
.ws6d{word-spacing:-0.187040pt;}
.ws97{word-spacing:-0.181696pt;}
.ws96{word-spacing:-0.176352pt;}
.ws53{word-spacing:-0.171008pt;}
.ws10{word-spacing:-0.159402pt;}
.ws125{word-spacing:-0.143462pt;}
.ws4b{word-spacing:-0.110656pt;}
.wsb{word-spacing:-0.106268pt;}
.ws138{word-spacing:-0.095642pt;}
.ws3{word-spacing:-0.053134pt;}
.wsb3{word-spacing:-0.047821pt;}
.ws5{word-spacing:-0.008448pt;}
.ws141{word-spacing:-0.006468pt;}
.ws140{word-spacing:-0.006298pt;}
.ws8d{word-spacing:-0.005344pt;}
.ws120{word-spacing:-0.005248pt;}
.ws1e{word-spacing:-0.002739pt;}
.ws12f{word-spacing:-0.002210pt;}
.ws2{word-spacing:-0.002126pt;}
.ws111{word-spacing:-0.001143pt;}
.ws136{word-spacing:-0.000196pt;}
.ws0{word-spacing:0.000000pt;}
.ws84{word-spacing:0.026720pt;}
.ws52{word-spacing:0.032064pt;}
.ws90{word-spacing:0.037408pt;}
.ws10b{word-spacing:0.047821pt;}
.ws2a{word-spacing:0.053134pt;}
.ws73{word-spacing:0.069472pt;}
.wsa3{word-spacing:0.080160pt;}
.ws115{word-spacing:0.095642pt;}
.ws93{word-spacing:0.096192pt;}
.ws8c{word-spacing:0.101536pt;}
.ws11{word-spacing:0.106268pt;}
.wsa0{word-spacing:0.117568pt;}
.ws95{word-spacing:0.120000pt;}
.ws5b{word-spacing:0.134400pt;}
.wsa2{word-spacing:0.149632pt;}
.ws5c{word-spacing:0.158400pt;}
.wsd{word-spacing:0.159402pt;}
.wsa9{word-spacing:0.191283pt;}
.ws9{word-spacing:0.212535pt;}
.ws13d{word-spacing:0.239104pt;}
.ws5a{word-spacing:0.261856pt;}
.ws36{word-spacing:0.265669pt;}
.ws112{word-spacing:0.286925pt;}
.wsa1{word-spacing:0.299264pt;}
.wse{word-spacing:0.318803pt;}
.ws18{word-spacing:0.425071pt;}
.ws45{word-spacing:0.478205pt;}
.ws78{word-spacing:0.491648pt;}
.ws77{word-spacing:0.539744pt;}
.wse9{word-spacing:0.584473pt;}
.ws79{word-spacing:0.619904pt;}
.ws11a{word-spacing:0.621670pt;}
.ws7c{word-spacing:0.690740pt;}
.wsa{word-spacing:0.743874pt;}
.wsb8{word-spacing:0.892651pt;}
.ws15{word-spacing:0.903276pt;}
.wsd3{word-spacing:1.009543pt;}
.wsbf{word-spacing:1.062677pt;}
.ws10c{word-spacing:1.099878pt;}
.wscc{word-spacing:1.115811pt;}
.wsf4{word-spacing:1.168945pt;}
.wsd4{word-spacing:1.222079pt;}
.ws38{word-spacing:1.275213pt;}
.ws7d{word-spacing:1.328347pt;}
.wsba{word-spacing:1.381481pt;}
.ws121{word-spacing:1.386803pt;}
.ws4a{word-spacing:1.434614pt;}
.ws14{word-spacing:1.487748pt;}
.ws132{word-spacing:1.578086pt;}
.wsf5{word-spacing:1.594016pt;}
.ws86{word-spacing:1.629920pt;}
.ws110{word-spacing:1.721549pt;}
.wseb{word-spacing:1.806551pt;}
.wse0{word-spacing:1.859685pt;}
.wse1{word-spacing:1.912819pt;}
.ws117{word-spacing:1.912832pt;}
.ws122{word-spacing:1.960653pt;}
.wsd8{word-spacing:1.965953pt;}
.ws123{word-spacing:2.008474pt;}
.wsf1{word-spacing:2.019087pt;}
.ws24{word-spacing:2.072221pt;}
.ws109{word-spacing:2.178489pt;}
.wsa6{word-spacing:2.231622pt;}
.ws135{word-spacing:2.295398pt;}
.wsfd{word-spacing:2.337890pt;}
.ws11c{word-spacing:2.343219pt;}
.ws137{word-spacing:2.486682pt;}
.wsd6{word-spacing:2.497292pt;}
.wscf{word-spacing:2.550426pt;}
.ws8a{word-spacing:2.586496pt;}
.ws8b{word-spacing:2.591840pt;}
.wsf0{word-spacing:2.603559pt;}
.ws13f{word-spacing:2.630144pt;}
.ws12a{word-spacing:2.677965pt;}
.ws80{word-spacing:2.762961pt;}
.ws25{word-spacing:2.816095pt;}
.wsc1{word-spacing:2.869229pt;}
.ws51{word-spacing:2.933856pt;}
.wsfa{word-spacing:2.975497pt;}
.ws58{word-spacing:2.981952pt;}
.ws59{word-spacing:3.051424pt;}
.ws12e{word-spacing:3.060531pt;}
.wsb9{word-spacing:3.081764pt;}
.ws23{word-spacing:3.134898pt;}
.ws22{word-spacing:3.188032pt;}
.wsf9{word-spacing:3.347434pt;}
.wsf2{word-spacing:3.453701pt;}
.ws8f{word-spacing:3.548416pt;}
.wsfc{word-spacing:3.559969pt;}
.ws8e{word-spacing:3.612544pt;}
.wse2{word-spacing:3.666237pt;}
.wsdb{word-spacing:3.719371pt;}
.ws17{word-spacing:3.772505pt;}
.ws7e{word-spacing:3.825638pt;}
.ws9e{word-spacing:3.863712pt;}
.wsea{word-spacing:3.878772pt;}
.ws31{word-spacing:3.931906pt;}
.ws9f{word-spacing:3.933184pt;}
.ws30{word-spacing:3.985040pt;}
.wsdd{word-spacing:4.038174pt;}
.ws13e{word-spacing:4.064768pt;}
.wsbc{word-spacing:4.144442pt;}
.wsd9{word-spacing:4.197575pt;}
.ws76{word-spacing:4.216416pt;}
.ws70{word-spacing:4.221760pt;}
.ws82{word-spacing:4.232448pt;}
.ws6f{word-spacing:4.248480pt;}
.wsa5{word-spacing:4.250709pt;}
.ws75{word-spacing:4.264512pt;}
.ws83{word-spacing:4.291232pt;}
.ws16{word-spacing:4.303843pt;}
.ws11f{word-spacing:4.303872pt;}
.wsd2{word-spacing:4.356977pt;}
.ws119{word-spacing:4.447334pt;}
.ws1c{word-spacing:4.569513pt;}
.ws129{word-spacing:4.590797pt;}
.ws2c{word-spacing:4.622646pt;}
.wsbe{word-spacing:4.675780pt;}
.ws41{word-spacing:4.728914pt;}
.ws116{word-spacing:4.734259pt;}
.ws127{word-spacing:4.777762pt;}
.ws139{word-spacing:4.778854pt;}
.ws134{word-spacing:4.779418pt;}
.ws12c{word-spacing:4.779938pt;}
.ws124{word-spacing:4.779998pt;}
.ws10d{word-spacing:4.781175pt;}
.ws10e{word-spacing:4.781850pt;}
.ws10f{word-spacing:4.782080pt;}
.ws13a{word-spacing:4.782882pt;}
.ws126{word-spacing:4.783932pt;}
.ws13c{word-spacing:4.829901pt;}
.ws7b{word-spacing:4.835182pt;}
.wsee{word-spacing:4.888316pt;}
.wsde{word-spacing:4.941450pt;}
.ws114{word-spacing:5.021184pt;}
.wse7{word-spacing:5.047717pt;}
.ws106{word-spacing:5.153985pt;}
.ws74{word-spacing:5.237120pt;}
.ws13{word-spacing:5.313387pt;}
.ws7a{word-spacing:5.493632pt;}
.wsf3{word-spacing:5.525922pt;}
.wsc4{word-spacing:5.632190pt;}
.ws6b{word-spacing:5.792896pt;}
.ws2f{word-spacing:5.950993pt;}
.ws2b{word-spacing:6.004127pt;}
.ws6a{word-spacing:6.156288pt;}
.ws108{word-spacing:6.163529pt;}
.ws12b{word-spacing:6.168883pt;}
.wsdc{word-spacing:6.322930pt;}
.wsc2{word-spacing:6.482332pt;}
.ws12d{word-spacing:6.503629pt;}
.wsa4{word-spacing:6.541056pt;}
.wse8{word-spacing:6.588599pt;}
.ws11d{word-spacing:6.599270pt;}
.wsc0{word-spacing:6.641733pt;}
.ws49{word-spacing:6.694867pt;}
.wsfb{word-spacing:6.748001pt;}
.ws1b{word-spacing:6.801135pt;}
.wsd5{word-spacing:7.119938pt;}
.wsf8{word-spacing:7.173072pt;}
.wsf7{word-spacing:7.332474pt;}
.ws9c{word-spacing:7.364032pt;}
.ws5e{word-spacing:7.417472pt;}
.ws5d{word-spacing:7.476256pt;}
.wsbd{word-spacing:7.491875pt;}
.ws104{word-spacing:7.545009pt;}
.ws91{word-spacing:7.716736pt;}
.ws92{word-spacing:7.754144pt;}
.wsd1{word-spacing:8.023214pt;}
.ws89{word-spacing:8.053408pt;}
.wsdf{word-spacing:8.342017pt;}
.ws4d{word-spacing:8.358016pt;}
.ws69{word-spacing:8.395424pt;}
.ws68{word-spacing:8.406112pt;}
.ws67{word-spacing:8.732096pt;}
.ws66{word-spacing:8.753472pt;}
.ws2d{word-spacing:8.926490pt;}
.ws57{word-spacing:9.009984pt;}
.ws56{word-spacing:9.138240pt;}
.wsc6{word-spacing:9.139025pt;}
.wse6{word-spacing:9.192159pt;}
.wsc5{word-spacing:9.564096pt;}
.ws61{word-spacing:9.640576pt;}
.ws10a{word-spacing:9.829765pt;}
.ws47{word-spacing:9.936033pt;}
.wsd0{word-spacing:10.042301pt;}
.ws46{word-spacing:10.095435pt;}
.ws4e{word-spacing:10.313920pt;}
.ws62{word-spacing:10.378048pt;}
.ws4f{word-spacing:10.618528pt;}
.wsc9{word-spacing:11.158112pt;}
.ws63{word-spacing:11.286528pt;}
.ws64{word-spacing:11.297216pt;}
.wsc3{word-spacing:11.636317pt;}
.wsf6{word-spacing:11.742585pt;}
.ws87{word-spacing:11.890400pt;}
.ws88{word-spacing:11.938496pt;}
.ws3b{word-spacing:12.172800pt;}
.ws107{word-spacing:12.327057pt;}
.ws98{word-spacing:12.574432pt;}
.ws99{word-spacing:12.654592pt;}
.wsc7{word-spacing:13.124065pt;}
.ws65{word-spacing:13.167616pt;}
.wsc8{word-spacing:13.177199pt;}
.ws133{word-spacing:14.346240pt;}
.wse5{word-spacing:15.993294pt;}
.wsca{word-spacing:17.321641pt;}
.ws12{word-spacing:19.287594pt;}
.ws50{word-spacing:22.108128pt;}
.ws7f{word-spacing:25.238587pt;}
.ws130{word-spacing:25.631949pt;}
.ws40{word-spacing:32.246400pt;}
.wsa8{word-spacing:32.757248pt;}
.ws3e{word-spacing:34.689600pt;}
.ws3f{word-spacing:60.811200pt;}
.ws3c{word-spacing:95.361600pt;}
.wsae{word-spacing:116.102656pt;}
.wsac{word-spacing:144.036250pt;}
.wsad{word-spacing:154.269901pt;}
.wsaf{word-spacing:154.317722pt;}
.wsb5{word-spacing:161.251738pt;}
.wsab{word-spacing:179.750016pt;}
.wsaa{word-spacing:184.492646pt;}
.wsb1{word-spacing:190.613709pt;}
.wsb0{word-spacing:198.833280pt;}
.wsb6{word-spacing:243.786462pt;}
.wsb7{word-spacing:418.663996pt;}
.wsb4{word-spacing:501.251098pt;}
.ws21{word-spacing:667.830619pt;}
._1a{margin-left:-1814.113859pt;}
._24{margin-left:-1775.861099pt;}
._23{margin-left:-1387.763200pt;}
._1b{margin-left:-442.256883pt;}
._1d{margin-left:-133.123200pt;}
._1e{margin-left:-24.643200pt;}
._50{margin-left:-21.149508pt;}
._41{margin-left:-18.583249pt;}
._1c{margin-left:-11.798400pt;}
._0{margin-left:-10.616218pt;}
._15{margin-left:-6.460922pt;}
._3{margin-left:-5.308109pt;}
._11{margin-left:-3.911054pt;}
._48{margin-left:-2.922363pt;}
._7{margin-left:-1.819895pt;}
._4{margin-left:-0.908595pt;}
._8{width:0.969929pt;}
._1{width:2.658923pt;}
._4e{width:3.878772pt;}
._52{width:8.054938pt;}
._16{width:9.298427pt;}
._55{width:10.855322pt;}
._c{width:11.885964pt;}
._4d{width:13.137409pt;}
._b{width:14.093818pt;}
._5{width:15.876506pt;}
._6{width:17.598054pt;}
._9{width:18.557063pt;}
._d{width:19.473682pt;}
._49{width:20.403405pt;}
._a{width:21.466082pt;}
._f{width:22.542103pt;}
._18{width:23.432035pt;}
._4a{width:24.692516pt;}
._21{width:25.623309pt;}
._26{width:27.246929pt;}
._13{width:28.479753pt;}
._4b{width:29.914367pt;}
._17{width:30.870777pt;}
._10{width:31.986588pt;}
._22{width:34.231554pt;}
._4f{width:37.810461pt;}
._51{width:41.019345pt;}
._e{width:42.453959pt;}
._25{width:44.898117pt;}
._14{width:45.960795pt;}
._2{width:48.366037pt;}
._57{width:50.953494pt;}
._56{width:51.915319pt;}
._4c{width:52.884488pt;}
._54{width:55.092312pt;}
._29{width:105.139456pt;}
._20{width:120.960000pt;}
._28{width:123.192317pt;}
._1f{width:133.123200pt;}
._2b{width:143.223296pt;}
._43{width:151.209370pt;}
._32{width:152.379332pt;}
._44{width:166.225101pt;}
._3a{width:175.980544pt;}
._2a{width:182.866739pt;}
._47{width:185.688166pt;}
._36{width:190.565888pt;}
._35{width:196.447846pt;}
._3f{width:198.545280pt;}
._34{width:199.508378pt;}
._30{width:202.712371pt;}
._3b{width:206.394573pt;}
._39{width:207.831901pt;}
._42{width:209.222682pt;}
._2f{width:214.524109pt;}
._37{width:216.135748pt;}
._2e{width:220.358246pt;}
._3c{width:225.188147pt;}
._46{width:226.814054pt;}
._2c{width:229.683302pt;}
._31{width:235.947827pt;}
._27{width:242.403635pt;}
._2d{width:261.484134pt;}
._3e{width:273.811968pt;}
._45{width:339.804450pt;}
._40{width:354.017382pt;}
._33{width:369.367859pt;}
._38{width:422.496768pt;}
._3d{width:533.584486pt;}
._19{width:1366.265376pt;}
._53{width:1708.621067pt;}
._12{width:1729.874400pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs5{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fsa{font-size:64.000000pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y67{bottom:-458.651600pt;}
.y86{bottom:-405.931600pt;}
.y85{bottom:-387.931600pt;}
.y84{bottom:-369.931600pt;}
.y83{bottom:-351.931600pt;}
.y82{bottom:-325.931600pt;}
.ya5{bottom:-310.206267pt;}
.y81{bottom:-291.931600pt;}
.ybe{bottom:-275.966267pt;}
.y80{bottom:-273.931600pt;}
.ybd{bottom:-257.966267pt;}
.y7f{bottom:-256.011600pt;}
.y7e{bottom:-238.011600pt;}
.ybc{bottom:-232.046267pt;}
.y7d{bottom:-220.011600pt;}
.y7c{bottom:-202.011600pt;}
.ybb{bottom:-198.046267pt;}
.y7b{bottom:-184.011600pt;}
.yba{bottom:-180.046267pt;}
.y7a{bottom:-166.011467pt;}
.yb9{bottom:-162.046267pt;}
.y79{bottom:-148.011467pt;}
.yb8{bottom:-144.046267pt;}
.y78{bottom:-130.091467pt;}
.yb7{bottom:-126.046267pt;}
.y77{bottom:-112.091467pt;}
.yb6{bottom:-108.126267pt;}
.y76{bottom:-94.091467pt;}
.yb5{bottom:-82.126267pt;}
.y75{bottom:-76.091467pt;}
.y74{bottom:-58.091467pt;}
.yb4{bottom:-48.126267pt;}
.y73{bottom:-24.571600pt;}
.yb3{bottom:-14.526267pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:3.044747pt;}
.y72{bottom:6.388400pt;}
.y10{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y8a{bottom:20.468400pt;}
.y89{bottom:39.588400pt;}
.y30{bottom:56.693333pt;}
.y88{bottom:58.708400pt;}
.y87{bottom:77.188400pt;}
.y8b{bottom:86.468400pt;}
.y5f{bottom:96.544000pt;}
.yce{bottom:99.610667pt;}
.y15d{bottom:100.648000pt;}
.y2f{bottom:101.405333pt;}
.y8c{bottom:105.188400pt;}
.yfa{bottom:107.104000pt;}
.y118{bottom:109.441333pt;}
.y1ad{bottom:114.066667pt;}
.y5e{bottom:114.556000pt;}
.ycd{bottom:117.622667pt;}
.y15c{bottom:118.660000pt;}
.y2e{bottom:119.417333pt;}
.y8d{bottom:123.988800pt;}
.y12e{bottom:124.558667pt;}
.yf9{bottom:125.117333pt;}
.y117{bottom:127.454667pt;}
.y17a{bottom:130.205333pt;}
.y1ac{bottom:131.281333pt;}
.ya2{bottom:132.568000pt;}
.ycc{bottom:135.634667pt;}
.y2d{bottom:137.430667pt;}
.y5d{bottom:140.538667pt;}
.y12d{bottom:142.570667pt;}
.y8e{bottom:142.789200pt;}
.yf8{bottom:143.129333pt;}
.y15b{bottom:144.642667pt;}
.y116{bottom:145.466667pt;}
.y179{bottom:147.420000pt;}
.y1ab{bottom:148.497333pt;}
.ya1{bottom:150.581333pt;}
.ycb{bottom:153.648000pt;}
.y2c{bottom:155.442667pt;}
.y12c{bottom:160.584000pt;}
.yf7{bottom:161.141333pt;}
.y8f{bottom:161.589600pt;}
.y115{bottom:163.478667pt;}
.y178{bottom:164.636000pt;}
.y1aa{bottom:165.713333pt;}
.ya0{bottom:168.593333pt;}
.y5c{bottom:171.489333pt;}
.yca{bottom:171.660000pt;}
.y2b{bottom:173.456000pt;}
.y15a{bottom:175.593333pt;}
.y12b{bottom:178.596000pt;}
.y90{bottom:180.309600pt;}
.y114{bottom:181.492000pt;}
.y177{bottom:181.852000pt;}
.y1a9{bottom:182.928000pt;}
.y9f{bottom:186.606667pt;}
.yf6{bottom:187.124000pt;}
.y5b{bottom:189.501333pt;}
.yc9{bottom:189.673333pt;}
.y2a{bottom:191.468000pt;}
.y159{bottom:193.606667pt;}
.y12a{bottom:196.608000pt;}
.y176{bottom:199.066667pt;}
.y91{bottom:199.110000pt;}
.y113{bottom:199.504000pt;}
.y1a8{bottom:200.144000pt;}
.y9e{bottom:204.618667pt;}
.y5a{bottom:207.514667pt;}
.y29{bottom:209.480000pt;}
.y158{bottom:211.618667pt;}
.y129{bottom:214.621333pt;}
.yc8{bottom:215.656000pt;}
.y175{bottom:216.282667pt;}
.y1a7{bottom:217.358667pt;}
.y112{bottom:217.517333pt;}
.y92{bottom:217.910400pt;}
.yf5{bottom:222.458667pt;}
.y9d{bottom:222.630667pt;}
.y59{bottom:225.526667pt;}
.y28{bottom:227.493333pt;}
.y157{bottom:229.632000pt;}
.y128{bottom:232.633333pt;}
.y174{bottom:233.497333pt;}
.y1a6{bottom:234.574667pt;}
.yf4{bottom:235.078667pt;}
.y111{bottom:235.529333pt;}
.y93{bottom:236.630400pt;}
.y58{bottom:243.540000pt;}
.y27{bottom:245.505333pt;}
.yc7{bottom:246.606667pt;}
.y156{bottom:247.644000pt;}
.y9c{bottom:248.613333pt;}
.y127{bottom:250.646667pt;}
.y173{bottom:250.713333pt;}
.y1a5{bottom:251.790667pt;}
.y110{bottom:253.541333pt;}
.yf3{bottom:254.368000pt;}
.y94{bottom:255.430800pt;}
.y57{bottom:261.552000pt;}
.y26{bottom:263.518667pt;}
.yc6{bottom:264.618667pt;}
.y155{bottom:265.656000pt;}
.y172{bottom:267.929333pt;}
.y126{bottom:268.658667pt;}
.yf2{bottom:268.980000pt;}
.y1a4{bottom:269.005333pt;}
.y10f{bottom:271.554667pt;}
.y95{bottom:274.231200pt;}
.y56{bottom:279.564000pt;}
.y25{bottom:281.530667pt;}
.yc5{bottom:282.630667pt;}
.y154{bottom:283.669333pt;}
.y171{bottom:285.144000pt;}
.y1a3{bottom:286.221333pt;}
.y125{bottom:286.670667pt;}
.y10e{bottom:289.566667pt;}
.yf1{bottom:289.993333pt;}
.y55{bottom:297.577333pt;}
.y24{bottom:299.542667pt;}
.yc4{bottom:300.644000pt;}
.y153{bottom:301.681333pt;}
.y170{bottom:302.360000pt;}
.y1a2{bottom:303.437333pt;}
.yf0{bottom:304.605333pt;}
.y124{bottom:304.684000pt;}
.y71{bottom:305.508400pt;}
.y10d{bottom:307.580000pt;}
.y54{bottom:315.589333pt;}
.y23{bottom:317.556000pt;}
.yc3{bottom:318.656000pt;}
.y16f{bottom:319.574667pt;}
.y152{bottom:319.694667pt;}
.y1a1{bottom:320.652000pt;}
.y123{bottom:322.696000pt;}
.y70{bottom:323.428400pt;}
.y10c{bottom:325.592000pt;}
.yef{bottom:325.937333pt;}
.y53{bottom:333.602667pt;}
.y22{bottom:335.568000pt;}
.yc2{bottom:336.669333pt;}
.y16e{bottom:336.790667pt;}
.y151{bottom:337.706667pt;}
.y1a0{bottom:337.868000pt;}
.y122{bottom:340.709333pt;}
.y6f{bottom:341.428400pt;}
.y10b{bottom:343.604000pt;}
.yee{bottom:346.950667pt;}
.y52{bottom:351.614667pt;}
.y21{bottom:353.581333pt;}
.y16d{bottom:354.006667pt;}
.y19f{bottom:355.082667pt;}
.y150{bottom:355.718667pt;}
.y121{bottom:358.721333pt;}
.y6e{bottom:359.428400pt;}
.yed{bottom:361.562667pt;}
.y10a{bottom:361.617333pt;}
.yc1{bottom:362.652000pt;}
.y51{bottom:369.626667pt;}
.y16c{bottom:371.221333pt;}
.y20{bottom:371.593333pt;}
.y19e{bottom:372.298667pt;}
.y14f{bottom:375.060000pt;}
.yec{bottom:376.174667pt;}
.y120{bottom:376.733333pt;}
.y109{bottom:379.629333pt;}
.yb2{bottom:381.073733pt;}
.y6d{bottom:385.428400pt;}
.y50{bottom:387.640000pt;}
.y16b{bottom:388.437333pt;}
.y19d{bottom:389.514667pt;}
.y1f{bottom:389.605333pt;}
.y14e{bottom:393.072000pt;}
.yc0{bottom:393.602667pt;}
.y11f{bottom:394.746667pt;}
.yeb{bottom:397.506667pt;}
.y108{bottom:397.642667pt;}
.y9b{bottom:405.652000pt;}
.y19c{bottom:406.729333pt;}
.y14d{bottom:411.085333pt;}
.y11e{bottom:412.758667pt;}
.y4f{bottom:413.622667pt;}
.y1e{bottom:415.588000pt;}
.y107{bottom:415.654667pt;}
.yb1{bottom:417.953733pt;}
.yea{bottom:418.520000pt;}
.y6c{bottom:419.428400pt;}
.ybf{bottom:421.712000pt;}
.y16a{bottom:422.868000pt;}
.y9a{bottom:423.665333pt;}
.y19b{bottom:423.945333pt;}
.y14c{bottom:429.097333pt;}
.y11d{bottom:430.772000pt;}
.ye9{bottom:433.132000pt;}
.y106{bottom:433.666667pt;}
.yb0{bottom:435.953733pt;}
.y6b{bottom:437.428400pt;}
.y169{bottom:440.084000pt;}
.y19a{bottom:441.160000pt;}
.ya3{bottom:441.649333pt;}
.y99{bottom:441.677333pt;}
.y4e{bottom:446.801333pt;}
.y14b{bottom:447.110667pt;}
.y11c{bottom:448.784000pt;}
.y105{bottom:451.680000pt;}
.yaf{bottom:453.953733pt;}
.ye8{bottom:454.146667pt;}
.y6a{bottom:455.428400pt;}
.y168{bottom:457.298667pt;}
.y199{bottom:458.376000pt;}
.y98{bottom:459.689333pt;}
.y14a{bottom:465.122667pt;}
.y4d{bottom:466.142667pt;}
.y11b{bottom:466.796000pt;}
.ye7{bottom:468.758667pt;}
.y104{bottom:469.692000pt;}
.yae{bottom:471.873733pt;}
.y69{bottom:473.348400pt;}
.y167{bottom:474.514667pt;}
.y198{bottom:475.592000pt;}
.y97{bottom:477.702667pt;}
.y149{bottom:483.134667pt;}
.y1d{bottom:483.513333pt;}
.y11a{bottom:484.809333pt;}
.y4c{bottom:485.484000pt;}
.y103{bottom:487.704000pt;}
.ye6{bottom:490.089333pt;}
.y68{bottom:491.348400pt;}
.y166{bottom:491.730667pt;}
.y197{bottom:492.806667pt;}
.yad{bottom:497.873733pt;}
.y148{bottom:501.148000pt;}
.y1c{bottom:501.526667pt;}
.y102{bottom:505.717333pt;}
.y96{bottom:506.701333pt;}
.y165{bottom:508.945333pt;}
.y196{bottom:510.022667pt;}
.y119{bottom:510.792000pt;}
.ye5{bottom:511.104000pt;}
.y4b{bottom:513.664000pt;}
.y147{bottom:519.160000pt;}
.y101{bottom:523.729333pt;}
.y66{bottom:524.548400pt;}
.ye4{bottom:525.716000pt;}
.y164{bottom:526.161333pt;}
.y65{bottom:526.638667pt;}
.y195{bottom:527.237333pt;}
.y4a{bottom:531.677333pt;}
.yac{bottom:531.873733pt;}
.y1b{bottom:535.478667pt;}
.y146{bottom:537.173333pt;}
.ye3{bottom:540.326667pt;}
.y100{bottom:541.742667pt;}
.y194{bottom:544.453333pt;}
.y49{bottom:549.689333pt;}
.yab{bottom:549.873733pt;}
.y163{bottom:551.346667pt;}
.y1a{bottom:553.492000pt;}
.y145{bottom:555.185333pt;}
.yff{bottom:559.754667pt;}
.ye2{bottom:561.341333pt;}
.y193{bottom:561.669333pt;}
.yaa{bottom:567.873733pt;}
.y19{bottom:571.504000pt;}
.y144{bottom:573.197333pt;}
.ye1{bottom:575.953333pt;}
.yfe{bottom:577.766667pt;}
.y192{bottom:578.884000pt;}
.y48{bottom:580.413333pt;}
.ya9{bottom:585.873733pt;}
.y162{bottom:586.414667pt;}
.y18{bottom:589.516000pt;}
.y143{bottom:592.538667pt;}
.yfd{bottom:595.780000pt;}
.y191{bottom:596.100000pt;}
.ydf{bottom:596.966667pt;}
.y47{bottom:599.753333pt;}
.ya8{bottom:603.873733pt;}
.y17{bottom:607.529333pt;}
.y161{bottom:607.894667pt;}
.y142{bottom:610.550667pt;}
.yde{bottom:611.578667pt;}
.y190{bottom:613.314667pt;}
.yfc{bottom:613.792000pt;}
.ye0{bottom:618.885333pt;}
.y46{bottom:619.094667pt;}
.ya7{bottom:621.793733pt;}
.y16{bottom:625.541333pt;}
.ydd{bottom:626.190667pt;}
.y141{bottom:628.564000pt;}
.y160{bottom:629.374667pt;}
.y18f{bottom:630.530667pt;}
.yfb{bottom:631.805333pt;}
.ya6{bottom:639.793733pt;}
.ydc{bottom:640.802667pt;}
.y15f{bottom:642.884000pt;}
.y15{bottom:643.554667pt;}
.y140{bottom:646.576000pt;}
.y18e{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.ydb{bottom:655.414667pt;}
.y15e{bottom:656.393333pt;}
.y14{bottom:661.566667pt;}
.y13f{bottom:664.589333pt;}
.y18d{bottom:664.961333pt;}
.y44{bottom:667.829333pt;}
.ya4{bottom:672.993733pt;}
.yda{bottom:676.428000pt;}
.y13{bottom:679.578667pt;}
.y18c{bottom:682.177333pt;}
.y13e{bottom:682.601333pt;}
.yd9{bottom:683.734667pt;}
.y43{bottom:685.842667pt;}
.y12{bottom:697.592000pt;}
.y18b{bottom:699.392000pt;}
.y13d{bottom:700.613333pt;}
.y42{bottom:703.854667pt;}
.yd8{bottom:712.054667pt;}
.y18a{bottom:716.608000pt;}
.y13c{bottom:718.626667pt;}
.y41{bottom:721.868000pt;}
.yd7{bottom:726.666667pt;}
.yf{bottom:729.086715pt;}
.ye{bottom:729.768000pt;}
.y189{bottom:733.824000pt;}
.y13b{bottom:736.638667pt;}
.y40{bottom:739.880000pt;}
.yd6{bottom:747.997333pt;}
.y188{bottom:751.038667pt;}
.y13a{bottom:754.652000pt;}
.y3f{bottom:757.892000pt;}
.yd{bottom:764.440000pt;}
.y187{bottom:768.254667pt;}
.yd4{bottom:769.012000pt;}
.y139{bottom:772.664000pt;}
.y3e{bottom:775.905333pt;}
.yd5{bottom:776.317333pt;}
.yd3{bottom:783.624000pt;}
.yc{bottom:784.920000pt;}
.y186{bottom:785.469333pt;}
.y138{bottom:790.676000pt;}
.y1b0{bottom:790.694667pt;}
.y3d{bottom:793.917333pt;}
.yb{bottom:796.720000pt;}
.yd2{bottom:798.236000pt;}
.y185{bottom:802.685333pt;}
.y1af{bottom:807.910667pt;}
.y137{bottom:808.689333pt;}
.y3c{bottom:811.930667pt;}
.ya{bottom:817.198667pt;}
.yd1{bottom:819.566667pt;}
.y184{bottom:819.901333pt;}
.y1ae{bottom:825.126667pt;}
.y136{bottom:826.701333pt;}
.y3b{bottom:829.942667pt;}
.y9{bottom:833.338667pt;}
.y183{bottom:837.116000pt;}
.yd0{bottom:840.898667pt;}
.y135{bottom:844.714667pt;}
.y64{bottom:845.060000pt;}
.y3a{bottom:847.954667pt;}
.y8{bottom:849.477333pt;}
.y182{bottom:854.332000pt;}
.y134{bottom:862.726667pt;}
.y63{bottom:863.072000pt;}
.y39{bottom:865.968000pt;}
.ycf{bottom:869.005333pt;}
.y7{bottom:869.248000pt;}
.y181{bottom:871.546667pt;}
.y62{bottom:881.084000pt;}
.y38{bottom:883.980000pt;}
.y6{bottom:887.260000pt;}
.y180{bottom:888.762667pt;}
.y133{bottom:894.022667pt;}
.y61{bottom:899.097333pt;}
.y37{bottom:901.993333pt;}
.y17f{bottom:905.978667pt;}
.y132{bottom:912.034667pt;}
.y36{bottom:920.005333pt;}
.y17e{bottom:923.193333pt;}
.y60{bottom:925.080000pt;}
.y5{bottom:925.198667pt;}
.y131{bottom:930.048000pt;}
.y35{bottom:938.017333pt;}
.y17d{bottom:940.409333pt;}
.y130{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y17c{bottom:957.624000pt;}
.y12f{bottom:966.073333pt;}
.y33{bottom:974.042667pt;}
.y17b{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y32{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h17{height:31.992188pt;}
.h22{height:33.713664pt;}
.h8{height:33.771789pt;}
.h20{height:34.191872pt;}
.h1b{height:34.574438pt;}
.h21{height:35.052646pt;}
.hd{height:38.415786pt;}
.h10{height:38.596538pt;}
.h15{height:38.775312pt;}
.h4{height:38.947124pt;}
.h1a{height:39.192812pt;}
.h12{height:39.588281pt;}
.h13{height:43.250000pt;}
.h9{height:43.421286pt;}
.h1f{height:43.660390pt;}
.h16{height:44.648438pt;}
.h2{height:45.272024pt;}
.he{height:48.245551pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.hf{height:48.511220pt;}
.h14{height:49.708594pt;}
.h19{height:59.531250pt;}
.h3{height:61.782479pt;}
.h5{height:69.148877pt;}
.h1c{height:72.642620pt;}
.h1d{height:72.647953pt;}
.h1e{height:101.869286pt;}
.h11{height:299.513333pt;}
.h18{height:382.390667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w5{width:444.286667pt;}
.w4{width:560.734933pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x3e{left:-102.758667pt;}
.x34{left:-61.843733pt;}
.x3d{left:-54.758667pt;}
.x33{left:-53.843733pt;}
.x3f{left:-26.438667pt;}
.x31{left:-13.843733pt;}
.x0{left:0.000000pt;}
.x32{left:14.476267pt;}
.x7{left:26.021437pt;}
.x36{left:45.676267pt;}
.x2{left:50.765941pt;}
.x38{left:63.116267pt;}
.x3a{left:82.635867pt;}
.x39{left:88.956267pt;}
.x5d{left:100.054667pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x37{left:113.916267pt;}
.x30{left:116.483733pt;}
.x73{left:117.578667pt;}
.x4{left:129.929333pt;}
.x9b{left:138.185333pt;}
.x93{left:139.956000pt;}
.x24{left:142.518667pt;}
.x46{left:144.333333pt;}
.x94{left:146.484000pt;}
.x25{left:148.881333pt;}
.x92{left:152.744000pt;}
.x53{left:153.898667pt;}
.x8c{left:155.348000pt;}
.x42{left:157.772000pt;}
.xa4{left:159.582667pt;}
.x8a{left:161.286667pt;}
.x8{left:167.670667pt;}
.x1b{left:169.733333pt;}
.x26{left:174.072000pt;}
.x1c{left:176.374667pt;}
.x5e{left:181.482667pt;}
.x27{left:187.354667pt;}
.xb{left:189.557333pt;}
.x9c{left:195.940000pt;}
.x72{left:198.373333pt;}
.x4c{left:199.292000pt;}
.x8b{left:200.196000pt;}
.x9d{left:201.917333pt;}
.x7b{left:208.897333pt;}
.x41{left:210.556000pt;}
.x5f{left:213.301333pt;}
.x8f{left:215.553333pt;}
.x60{left:217.113333pt;}
.x4d{left:218.158667pt;}
.x68{left:219.164000pt;}
.xe{left:221.594667pt;}
.xb4{left:223.704000pt;}
.xf{left:225.408000pt;}
.x6c{left:227.765333pt;}
.xb1{left:230.520000pt;}
.x18{left:233.266667pt;}
.xa0{left:235.725333pt;}
.xb5{left:237.545333pt;}
.x16{left:240.558667pt;}
.xa1{left:242.253333pt;}
.x19{left:243.294667pt;}
.x66{left:245.777333pt;}
.x17{left:247.201333pt;}
.x1a{left:249.937333pt;}
.x3c{left:251.764000pt;}
.x2a{left:254.717333pt;}
.x67{left:259.061333pt;}
.x47{left:260.272000pt;}
.xa5{left:265.704000pt;}
.x45{left:269.098667pt;}
.x6a{left:270.342667pt;}
.x54{left:272.420000pt;}
.x7e{left:276.697333pt;}
.x74{left:283.360000pt;}
.x3b{left:289.505333pt;}
.x40{left:298.693333pt;}
.x9e{left:301.305333pt;}
.x76{left:302.784000pt;}
.x90{left:305.658667pt;}
.x9f{left:307.032000pt;}
.x61{left:309.876000pt;}
.x4e{left:311.118667pt;}
.x69{left:313.981333pt;}
.x62{left:316.517333pt;}
.x6b{left:322.957333pt;}
.x91{left:327.693333pt;}
.x75{left:329.760000pt;}
.x28{left:331.526667pt;}
.x4f{left:336.277333pt;}
.xc{left:342.537333pt;}
.x29{left:344.810667pt;}
.x6d{left:347.586667pt;}
.xd{left:349.178667pt;}
.x43{left:359.552000pt;}
.xb2{left:382.010667pt;}
.x77{left:387.053333pt;}
.xb3{left:387.988000pt;}
.xa2{left:389.377333pt;}
.xaa{left:390.986667pt;}
.x55{left:396.386667pt;}
.x78{left:400.337333pt;}
.x7c{left:401.617333pt;}
.x1d{left:404.932000pt;}
.x50{left:406.726667pt;}
.x56{left:409.670667pt;}
.xa9{left:412.030667pt;}
.x7d{left:414.900000pt;}
.x1e{left:418.214667pt;}
.x4a{left:427.482667pt;}
.xaf{left:428.858667pt;}
.x2e{left:431.466667pt;}
.x63{left:434.197333pt;}
.x59{left:435.462667pt;}
.x4b{left:440.766667pt;}
.x5a{left:461.058667pt;}
.x48{left:466.825333pt;}
.x44{left:468.622667pt;}
.x5b{left:474.342667pt;}
.x49{left:478.440000pt;}
.x10{left:480.304000pt;}
.x7f{left:483.716000pt;}
.xa6{left:485.757333pt;}
.x11{left:486.945333pt;}
.x80{left:490.357333pt;}
.x51{left:492.580000pt;}
.x81{left:493.745333pt;}
.x2b{left:494.828000pt;}
.x64{left:498.997333pt;}
.x82{left:500.386667pt;}
.x1f{left:503.762667pt;}
.x52{left:505.862667pt;}
.x2c{left:508.112000pt;}
.x65{left:512.281333pt;}
.x20{left:517.045333pt;}
.x83{left:520.445333pt;}
.xab{left:530.960000pt;}
.x84{left:533.728000pt;}
.xac{left:537.188000pt;}
.xa7{left:539.406667pt;}
.x35{left:553.916133pt;}
.x7a{left:555.193333pt;}
.x9{left:562.741333pt;}
.x6e{left:567.980000pt;}
.x21{left:570.057333pt;}
.x14{left:576.089333pt;}
.x6f{left:581.264000pt;}
.x15{left:582.732000pt;}
.x12{left:586.592000pt;}
.x97{left:587.658667pt;}
.x86{left:589.378667pt;}
.x13{left:593.234667pt;}
.x85{left:594.180000pt;}
.xa8{left:596.233333pt;}
.x5c{left:601.273333pt;}
.x2d{left:603.638667pt;}
.x87{left:605.933333pt;}
.xb0{left:607.612000pt;}
.x98{left:611.568000pt;}
.x8e{left:617.254667pt;}
.x88{left:618.220000pt;}
.x57{left:619.697333pt;}
.x79{left:622.434667pt;}
.x6{left:623.413317pt;}
.x22{left:626.976000pt;}
.xa{left:631.858667pt;}
.x23{left:633.618667pt;}
.xad{left:638.638667pt;}
.x8d{left:642.452000pt;}
.x58{left:643.634667pt;}
.xae{left:644.866667pt;}
.x95{left:648.226667pt;}
.x2f{left:656.004000pt;}
.x89{left:661.460000pt;}
.x99{left:666.189333pt;}
.xa3{left:668.113333pt;}
.x96{left:672.136000pt;}
.x70{left:673.969333pt;}
.x71{left:687.252000pt;}
.x9a{left:690.100000pt;}
}




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