
    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_c8689733bcc9a3946605dba0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_713d3cec24b46a2b6028067f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e042c1bf8d9a0e58e4d56c74.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731000;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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_35313908bf114ddbeb30b078.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_b960bf024b099ca59022b5ae.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d8c032027563668fe2aee136.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.482000;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_17dafeaed3744a1b3bed49b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a498cc94dfbb50f0df0890ae.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_839a21135b4fef692efbf7e3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006836;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_17dafeaed3744a1b3bed49b0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c12d5993ec918b99ea0eaf84.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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_961230958df4f454bea9b62f.woff2')format("woff");}.fff{font-family:fff;line-height:1.006836;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_d7849135c2354fbc0e5982a0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752441;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_21a770932de6169aad8700aa.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.054688;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_b2ae2af3e36ca7580ede38ed.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3e1aff7110866d37c2a2d0d5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.740000;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_17dafeaed3744a1b3bed49b0.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_94a9de8f015c31632501306a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.206055;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_13594249e7a624bfef1ed157.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d7849135c2354fbc0e5982a0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_21a770932de6169aad8700aa.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.054688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_b2ae2af3e36ca7580ede38ed.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_862f1cfb2a8244d1c6fe7465.woff2')format("woff");}.ff1a{font-family:ff1a;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;}
.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);}
.m22{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);}
.m1b{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);}
.m23{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);}
.m24{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);}
.m21{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);}
.m1a{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);}
.m8{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);}
.m20{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);}
.m1e{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);}
.m1d{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);}
.m15{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);}
.m6{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);}
.m5{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);}
.mf{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);}
.mb{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);}
.m2a{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);}
.m2d{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);}
.m2{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);}
.m2b{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);}
.m28{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m27{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);}
.m26{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);}
.m18{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);}
.m4{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m13{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);}
.m17{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);}
.ma{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m12{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m14{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);}
.m1c{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);}
.me{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);}
.mc{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);}
.m11{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);}
.m2c{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);}
.m9{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);}
.m19{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);}
.m3{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);}
.m10{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:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.119400px;}
.v5{vertical-align:19.524000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:40.680600px;}
.ls45{letter-spacing:-0.253800px;}
.ls2a{letter-spacing:-0.252504px;}
.ls49{letter-spacing:-0.222444px;}
.ls62{letter-spacing:-0.210420px;}
.ls6a{letter-spacing:-0.198396px;}
.ls21{letter-spacing:-0.180360px;}
.ls64{letter-spacing:-0.168336px;}
.ls46{letter-spacing:-0.138276px;}
.ls4b{letter-spacing:-0.126252px;}
.ls65{letter-spacing:-0.114228px;}
.ls22{letter-spacing:-0.108216px;}
.ls6b{letter-spacing:-0.102204px;}
.ls40{letter-spacing:-0.090972px;}
.ls4d{letter-spacing:-0.090180px;}
.ls1e{letter-spacing:-0.086184px;}
.ls28{letter-spacing:-0.084168px;}
.ls67{letter-spacing:-0.078156px;}
.ls4e{letter-spacing:-0.075600px;}
.ls20{letter-spacing:-0.072144px;}
.ls68{letter-spacing:-0.066132px;}
.ls47{letter-spacing:-0.060120px;}
.ls23{letter-spacing:-0.054108px;}
.ls60{letter-spacing:-0.048096px;}
.ls41{letter-spacing:-0.043092px;}
.ls48{letter-spacing:-0.042084px;}
.ls69{letter-spacing:-0.037800px;}
.ls25{letter-spacing:-0.036072px;}
.ls1f{letter-spacing:-0.033516px;}
.ls61{letter-spacing:-0.030060px;}
.ls29{letter-spacing:-0.024048px;}
.ls42{letter-spacing:-0.021600px;}
.ls24{letter-spacing:-0.018036px;}
.ls5f{letter-spacing:-0.016200px;}
.ls27{letter-spacing:-0.012024px;}
.ls44{letter-spacing:-0.010800px;}
.ls26{letter-spacing:-0.006012px;}
.ls43{letter-spacing:-0.005400px;}
.ls8{letter-spacing:0.000000px;}
.ls78{letter-spacing:0.000422px;}
.ls4{letter-spacing:0.000600px;}
.ls8a{letter-spacing:0.000676px;}
.ls7a{letter-spacing:0.000800px;}
.ls3c{letter-spacing:0.000845px;}
.ls8d{letter-spacing:0.001036px;}
.ls7c{letter-spacing:0.001123px;}
.ls3b{letter-spacing:0.001133px;}
.ls8c{letter-spacing:0.001155px;}
.lsb{letter-spacing:0.001298px;}
.ls87{letter-spacing:0.001303px;}
.ls77{letter-spacing:0.001565px;}
.ls89{letter-spacing:0.001584px;}
.ls5e{letter-spacing:0.001996px;}
.ls70{letter-spacing:0.002074px;}
.ls7e{letter-spacing:0.002293px;}
.ls82{letter-spacing:0.002422px;}
.ls7b{letter-spacing:0.002488px;}
.ls6f{letter-spacing:0.002841px;}
.ls76{letter-spacing:0.003668px;}
.ls7d{letter-spacing:0.004090px;}
.ls8b{letter-spacing:0.004800px;}
.ls53{letter-spacing:0.005400px;}
.ls18{letter-spacing:0.006012px;}
.ls34{letter-spacing:0.010800px;}
.ls33{letter-spacing:0.012024px;}
.ls12{letter-spacing:0.016200px;}
.ls66{letter-spacing:0.018036px;}
.ls16{letter-spacing:0.021600px;}
.ls31{letter-spacing:0.024048px;}
.ls2d{letter-spacing:0.027000px;}
.ls35{letter-spacing:0.030060px;}
.ls14{letter-spacing:0.032400px;}
.ls36{letter-spacing:0.036072px;}
.ls11{letter-spacing:0.037800px;}
.ls2b{letter-spacing:0.038304px;}
.ls50{letter-spacing:0.042084px;}
.lsd{letter-spacing:0.043092px;}
.ls1b{letter-spacing:0.048096px;}
.ls3a{letter-spacing:0.048600px;}
.ls1c{letter-spacing:0.054108px;}
.ls19{letter-spacing:0.060120px;}
.ls32{letter-spacing:0.066132px;}
.ls15{letter-spacing:0.075600px;}
.ls4c{letter-spacing:0.078156px;}
.ls10{letter-spacing:0.090180px;}
.ls30{letter-spacing:0.091800px;}
.lsf{letter-spacing:0.096192px;}
.ls38{letter-spacing:0.102204px;}
.ls2f{letter-spacing:0.108000px;}
.ls52{letter-spacing:0.108216px;}
.ls1d{letter-spacing:0.114228px;}
.ls51{letter-spacing:0.120240px;}
.ls13{letter-spacing:0.124200px;}
.ls6c{letter-spacing:0.144288px;}
.ls17{letter-spacing:0.145800px;}
.ls1a{letter-spacing:0.174348px;}
.ls4a{letter-spacing:0.180360px;}
.ls2c{letter-spacing:0.181944px;}
.lse{letter-spacing:0.191520px;}
.ls63{letter-spacing:0.192384px;}
.ls9{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls5c{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.989200px;}
.ls3d{letter-spacing:2.994600px;}
.ls1{letter-spacing:2.998354px;}
.ls2e{letter-spacing:3.061800px;}
.ls3{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.lsc{letter-spacing:11.995873px;}
.ls83{letter-spacing:13.215106px;}
.ls88{letter-spacing:13.220988px;}
.ls85{letter-spacing:13.359924px;}
.ls79{letter-spacing:13.448400px;}
.ls7f{letter-spacing:13.454400px;}
.ls86{letter-spacing:13.700247px;}
.ls75{letter-spacing:13.909224px;}
.ls84{letter-spacing:13.979812px;}
.ls72{letter-spacing:14.884124px;}
.ls74{letter-spacing:15.004200px;}
.ls73{letter-spacing:15.032608px;}
.ls5d{letter-spacing:15.063451px;}
.ls8e{letter-spacing:15.553741px;}
.ls8f{letter-spacing:16.150400px;}
.ls80{letter-spacing:16.268047px;}
.ls81{letter-spacing:16.744518px;}
.ls37{letter-spacing:27.451080px;}
.ls6d{letter-spacing:55.668088px;}
.ls71{letter-spacing:56.334088px;}
.ls58{letter-spacing:60.961680px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls59{letter-spacing:80.049780px;}
.ls57{letter-spacing:80.408445px;}
.ls6e{letter-spacing:84.772800px;}
.ls54{letter-spacing:102.725507px;}
.ls55{letter-spacing:103.457608px;}
.ls56{letter-spacing:107.059237px;}
.ls3e{letter-spacing:114.900088px;}
.ls5b{letter-spacing:118.583627px;}
.ls5a{letter-spacing:118.941408px;}
.ls3f{letter-spacing:194.494800px;}
.ls39{letter-spacing:239.850108px;}
.lsa{letter-spacing:2640.359700px;}
.ls4f{letter-spacing:2641.559700px;}
.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;}
}
.ws7a{word-spacing:-60.120000px;}
.ws7c{word-spacing:-54.000000px;}
.wsa5{word-spacing:-15.222384px;}
.wsa7{word-spacing:-15.174288px;}
.ws7b{word-spacing:-15.126192px;}
.ws79{word-spacing:-15.066072px;}
.wsa2{word-spacing:-15.036012px;}
.ws77{word-spacing:-15.023988px;}
.wsa4{word-spacing:-14.981904px;}
.wsda{word-spacing:-14.943900px;}
.wsa6{word-spacing:-14.861664px;}
.ws4{word-spacing:-14.355754px;}
.wsa3{word-spacing:-13.527000px;}
.ws54{word-spacing:-13.500000px;}
.ws56{word-spacing:-13.449600px;}
.ws53{word-spacing:-12.161520px;}
.ws76{word-spacing:-12.151944px;}
.ws52{word-spacing:-12.013092px;}
.ws75{word-spacing:-12.008304px;}
.ws28{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.357400px;}
.wsa{word-spacing:-10.460700px;}
.ws78{word-spacing:-9.000000px;}
.ws57{word-spacing:-3.168107px;}
.ws73{word-spacing:-3.120228px;}
.ws72{word-spacing:-3.108204px;}
.ws44{word-spacing:-2.929004px;}
.wsc5{word-spacing:-2.727000px;}
.wsc4{word-spacing:-2.700000px;}
.wsd9{word-spacing:-2.570351px;}
.ws4a{word-spacing:-2.391024px;}
.ws66{word-spacing:-2.314620px;}
.ws4f{word-spacing:-2.032370px;}
.ws4b{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.wsd8{word-spacing:-1.733492px;}
.wsbb{word-spacing:-1.713420px;}
.ws70{word-spacing:-1.695384px;}
.wsbc{word-spacing:-1.689372px;}
.wsa9{word-spacing:-1.673717px;}
.ws71{word-spacing:-1.623240px;}
.ws3d{word-spacing:-1.613941px;}
.ws47{word-spacing:-1.554166px;}
.wsa8{word-spacing:-1.374839px;}
.wsf8{word-spacing:-1.344960px;}
.ws6{word-spacing:-1.322630px;}
.wsd4{word-spacing:-1.255288px;}
.wse0{word-spacing:-1.195512px;}
.wsf9{word-spacing:-1.022170px;}
.ws4d{word-spacing:-0.896634px;}
.ws1c{word-spacing:-0.860774px;}
.wsbe{word-spacing:-0.637272px;}
.wsbd{word-spacing:-0.571140px;}
.wse1{word-spacing:-0.484186px;}
.wsd1{word-spacing:-0.478206px;}
.ws74{word-spacing:-0.372744px;}
.ws59{word-spacing:-0.358654px;}
.ws1d{word-spacing:-0.322790px;}
.ws3e{word-spacing:-0.298878px;}
.ws99{word-spacing:-0.294588px;}
.ws90{word-spacing:-0.270000px;}
.ws1b{word-spacing:-0.268992px;}
.ws2d{word-spacing:-0.239102px;}
.ws21{word-spacing:-0.215194px;}
.ws92{word-spacing:-0.199800px;}
.wscd{word-spacing:-0.191282px;}
.ws29{word-spacing:-0.179327px;}
.ws91{word-spacing:-0.172800px;}
.ws20{word-spacing:-0.161395px;}
.ws15{word-spacing:-0.143462px;}
.wsb6{word-spacing:-0.135000px;}
.ws2f{word-spacing:-0.119551px;}
.ws7d{word-spacing:-0.107597px;}
.wsa1{word-spacing:-0.102600px;}
.wsce{word-spacing:-0.095641px;}
.ws3{word-spacing:-0.059776px;}
.ws1e{word-spacing:-0.053798px;}
.ws5a{word-spacing:-0.052668px;}
.ws8b{word-spacing:-0.047880px;}
.ws6f{word-spacing:-0.018036px;}
.ws106{word-spacing:-0.008045px;}
.ws105{word-spacing:-0.004608px;}
.wsef{word-spacing:-0.004378px;}
.ws9{word-spacing:-0.003202px;}
.ws27{word-spacing:-0.002623px;}
.ws0{word-spacing:0.000000px;}
.wsf1{word-spacing:0.001392px;}
.ws5c{word-spacing:0.006012px;}
.ws18{word-spacing:0.053798px;}
.wsae{word-spacing:0.054108px;}
.ws25{word-spacing:0.059776px;}
.ws9d{word-spacing:0.078156px;}
.wsaf{word-spacing:0.096192px;}
.ws17{word-spacing:0.107597px;}
.ws30{word-spacing:0.119551px;}
.wsa0{word-spacing:0.129600px;}
.ws6b{word-spacing:0.132264px;}
.wsb5{word-spacing:0.135000px;}
.ws96{word-spacing:0.156600px;}
.ws1a{word-spacing:0.161395px;}
.ws62{word-spacing:0.162000px;}
.ws9f{word-spacing:0.167400px;}
.wsad{word-spacing:0.172800px;}
.ws97{word-spacing:0.178200px;}
.ws33{word-spacing:0.179327px;}
.wsac{word-spacing:0.199800px;}
.wsba{word-spacing:0.205200px;}
.wsb{word-spacing:0.209214px;}
.wsc9{word-spacing:0.215194px;}
.ws9a{word-spacing:0.228456px;}
.ws48{word-spacing:0.239102px;}
.wsfc{word-spacing:0.268992px;}
.ws5d{word-spacing:0.276552px;}
.wsd{word-spacing:0.292900px;}
.ws42{word-spacing:0.298878px;}
.wse4{word-spacing:0.322790px;}
.ws2e{word-spacing:0.358654px;}
.ws55{word-spacing:0.376589px;}
.ws9c{word-spacing:0.384768px;}
.wsbf{word-spacing:0.390780px;}
.ws64{word-spacing:0.396792px;}
.ws9b{word-spacing:0.450900px;}
.ws3f{word-spacing:0.478205px;}
.ws5{word-spacing:0.562186px;}
.ws50{word-spacing:0.657532px;}
.wse8{word-spacing:0.699379px;}
.ws51{word-spacing:0.717307px;}
.ws7e{word-spacing:0.806976px;}
.ws2c{word-spacing:0.896634px;}
.wse7{word-spacing:0.914573px;}
.ws1f{word-spacing:0.968371px;}
.wsf5{word-spacing:1.129766px;}
.ws7f{word-spacing:1.135736px;}
.ws58{word-spacing:1.255288px;}
.ws34{word-spacing:1.315063px;}
.ws16{word-spacing:1.344960px;}
.wsde{word-spacing:1.554166px;}
.wsb7{word-spacing:1.587600px;}
.wsb9{word-spacing:1.598400px;}
.wsb8{word-spacing:1.609200px;}
.ws3c{word-spacing:1.613941px;}
.wsc0{word-spacing:1.617228px;}
.ws40{word-spacing:1.733492px;}
.wsdf{word-spacing:1.793268px;}
.ws6d{word-spacing:1.845684px;}
.ws24{word-spacing:1.853044px;}
.wsdd{word-spacing:1.972595px;}
.wsc{word-spacing:2.008454px;}
.wse9{word-spacing:2.044339px;}
.ws43{word-spacing:2.092146px;}
.ws102{word-spacing:2.098138px;}
.ws19{word-spacing:2.151936px;}
.wsf2{word-spacing:2.205734px;}
.wsd2{word-spacing:2.211697px;}
.ws6c{word-spacing:2.260512px;}
.ws68{word-spacing:2.272536px;}
.ws67{word-spacing:2.308608px;}
.ws5e{word-spacing:2.311200px;}
.ws5f{word-spacing:2.332800px;}
.ws3a{word-spacing:2.391024px;}
.ws83{word-spacing:2.582323px;}
.wsc1{word-spacing:2.633256px;}
.ws94{word-spacing:2.683800px;}
.ws104{word-spacing:2.689920px;}
.ws93{word-spacing:2.710800px;}
.ws23{word-spacing:2.749678px;}
.wsf3{word-spacing:2.797517px;}
.wsdb{word-spacing:2.869229px;}
.ws82{word-spacing:2.905114px;}
.ws6a{word-spacing:2.915820px;}
.ws38{word-spacing:2.929004px;}
.ws95{word-spacing:2.953800px;}
.wsfb{word-spacing:2.958912px;}
.ws49{word-spacing:2.988780px;}
.wsed{word-spacing:3.012710px;}
.ws8c{word-spacing:3.034800px;}
.ws8d{word-spacing:3.061800px;}
.wse2{word-spacing:3.066509px;}
.wsfe{word-spacing:3.120307px;}
.ws39{word-spacing:3.168107px;}
.wsee{word-spacing:3.174106px;}
.wsff{word-spacing:3.223853px;}
.wse3{word-spacing:3.224822px;}
.ws37{word-spacing:3.227882px;}
.wse6{word-spacing:3.227904px;}
.wsf0{word-spacing:3.229046px;}
.wsf4{word-spacing:3.281702px;}
.ws69{word-spacing:3.336660px;}
.wsd3{word-spacing:3.347434px;}
.wsfd{word-spacing:3.550694px;}
.ws22{word-spacing:3.586536px;}
.ws65{word-spacing:3.601188px;}
.ws6e{word-spacing:3.643272px;}
.ws61{word-spacing:3.709800px;}
.ws60{word-spacing:3.747600px;}
.ws45{word-spacing:3.765863px;}
.ws4e{word-spacing:3.885414px;}
.ws81{word-spacing:4.004965px;}
.wsd5{word-spacing:4.064741px;}
.ws98{word-spacing:4.136256px;}
.ws41{word-spacing:4.184292px;}
.wsd6{word-spacing:4.244068px;}
.ws46{word-spacing:4.542946px;}
.wsfa{word-spacing:4.572864px;}
.wse5{word-spacing:4.626662px;}
.wsdc{word-spacing:4.722272px;}
.ws63{word-spacing:4.773528px;}
.ws26{word-spacing:4.841824px;}
.ws5b{word-spacing:4.851684px;}
.ws2b{word-spacing:5.140702px;}
.ws4c{word-spacing:5.499355px;}
.ws8f{word-spacing:5.545800px;}
.ws9e{word-spacing:5.583600px;}
.ws8e{word-spacing:5.599800px;}
.ws101{word-spacing:6.025421px;}
.ws13{word-spacing:6.067206px;}
.ws3b{word-spacing:6.097111px;}
.ws14{word-spacing:6.150892px;}
.ws36{word-spacing:6.216662px;}
.ws8a{word-spacing:6.216678px;}
.wsc3{word-spacing:6.240456px;}
.wsc2{word-spacing:6.438852px;}
.ws35{word-spacing:6.455765px;}
.wsd7{word-spacing:6.575316px;}
.ws2a{word-spacing:6.754643px;}
.ws31{word-spacing:6.814418px;}
.ws32{word-spacing:6.874194px;}
.wsf6{word-spacing:7.101389px;}
.ws100{word-spacing:7.639373px;}
.wsaa{word-spacing:7.716600px;}
.wsab{word-spacing:7.759800px;}
.ws80{word-spacing:7.830604px;}
.ws11{word-spacing:8.661460px;}
.ws103{word-spacing:10.006502px;}
.wsf7{word-spacing:10.813478px;}
.wseb{word-spacing:13.772390px;}
.wsb0{word-spacing:14.849640px;}
.ws8{word-spacing:15.483541px;}
.wse{word-spacing:16.142252px;}
.wsf{word-spacing:16.151321px;}
.wsea{word-spacing:17.269286px;}
.ws10{word-spacing:17.699504px;}
.wsb2{word-spacing:25.256412px;}
.ws12{word-spacing:27.448877px;}
.ws1{word-spacing:40.042186px;}
.wsc7{word-spacing:43.983792px;}
.wsec{word-spacing:44.975462px;}
.wsc6{word-spacing:47.993796px;}
.wscf{word-spacing:53.905997px;}
.wscb{word-spacing:54.555370px;}
.wsc8{word-spacing:60.769296px;}
.wsb1{word-spacing:72.119952px;}
.ws85{word-spacing:88.215370px;}
.wsca{word-spacing:111.255091px;}
.wsd0{word-spacing:113.407027px;}
.wscc{word-spacing:126.856627px;}
.ws87{word-spacing:141.973978px;}
.ws84{word-spacing:148.483584px;}
.ws88{word-spacing:158.274893px;}
.ws89{word-spacing:158.328691px;}
.ws86{word-spacing:179.901850px;}
.wsb3{word-spacing:212.385924px;}
.wsb4{word-spacing:227.151396px;}
._47{margin-left:-130.947382px;}
._48{margin-left:-126.985474px;}
._43{margin-left:-115.690553px;}
._41{margin-left:-114.618780px;}
._42{margin-left:-111.378312px;}
._44{margin-left:-100.702389px;}
._2{margin-left:-7.739728px;}
._5{margin-left:-6.150892px;}
._b{margin-left:-5.015239px;}
._6{margin-left:-3.849538px;}
._a{margin-left:-2.718231px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._0{width:2.998970px;}
._3f{width:7.162947px;}
._7{width:12.971268px;}
._8{width:14.271190px;}
._59{width:15.404752px;}
._c{width:16.802975px;}
._d{width:18.717330px;}
._14{width:19.821620px;}
._f{width:20.869252px;}
._11{width:23.127162px;}
._e{width:24.627547px;}
._2b{width:25.950178px;}
._3a{width:27.401204px;}
._15{width:30.366005px;}
._9{width:32.637384px;}
._12{width:34.610072px;}
._13{width:37.427093px;}
._19{width:46.252440px;}
._1{width:54.383969px;}
._4e{width:57.546071px;}
._62{width:61.868160px;}
._1a{width:64.698086px;}
._1d{width:70.620470px;}
._4c{width:80.719868px;}
._58{width:82.042560px;}
._4d{width:84.785123px;}
._4b{width:98.058179px;}
._4f{width:99.250571px;}
._18{width:101.131128px;}
._1e{width:102.300470px;}
._50{width:107.245435px;}
._56{width:119.160758px;}
._57{width:120.970333px;}
._5b{width:124.847203px;}
._55{width:125.929650px;}
._1f{width:128.220470px;}
._5e{width:132.610358px;}
._5c{width:133.881949px;}
._5f{width:140.306227px;}
._25{width:143.339870px;}
._1c{width:147.403764px;}
._5d{width:153.971021px;}
._2e{width:155.477376px;}
._51{width:156.714739px;}
._54{width:159.727450px;}
._24{width:170.191800px;}
._37{width:171.778291px;}
._2f{width:173.661235px;}
._60{width:174.901296px;}
._2c{width:177.265728px;}
._38{width:184.693085px;}
._61{width:187.880656px;}
._32{width:191.791296px;}
._35{width:192.872102px;}
._31{width:193.884595px;}
._4a{width:201.263666px;}
._39{width:208.682554px;}
._49{width:220.300512px;}
._2d{width:222.568819px;}
._52{width:225.522893px;}
._5a{width:228.423168px;}
._53{width:231.440717px;}
._20{width:236.120390px;}
._26{width:239.989824px;}
._34{width:243.276365px;}
._36{width:244.313827px;}
._28{width:248.535612px;}
._30{width:252.852480px;}
._22{width:256.302360px;}
._3b{width:257.317747px;}
._2a{width:259.131600px;}
._1b{width:261.054449px;}
._3e{width:270.175565px;}
._33{width:273.026880px;}
._29{width:275.559444px;}
._21{width:276.643764px;}
._27{width:283.019750px;}
._3c{width:286.476480px;}
._23{width:298.963764px;}
._3d{width:299.979878px;}
._40{width:309.736306px;}
._45{width:325.777349px;}
._46{width:341.321465px;}
._10{width:432.993382px;}
._17{width:2220.287066px;}
._16{width:2221.306910px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(12,11,11);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:33.120000px;}
.fs6{font-size:35.865600px;}
.fsd{font-size:36.000000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs2{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fs7{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fsf{font-size:49.829400px;}
.fs8{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fse{font-size:56.058000px;}
.fs0{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs1{font-size:107.596800px;}
.yea{bottom:-617.548050px;}
.y106{bottom:-525.297900px;}
.y105{bottom:-508.017900px;}
.ybe{bottom:-507.584550px;}
.y104{bottom:-488.488050px;}
.y103{bottom:-468.238050px;}
.y102{bottom:-448.078050px;}
.y101{bottom:-427.828050px;}
.y130{bottom:-423.803550px;}
.y100{bottom:-407.578050px;}
.yff{bottom:-387.328050px;}
.yd5{bottom:-368.887341px;}
.yfe{bottom:-367.078050px;}
.y153{bottom:-354.593469px;}
.yd4{bottom:-349.627899px;}
.yfb{bottom:-346.017900px;}
.yfd{bottom:-335.938050px;}
.y152{bottom:-334.343469px;}
.yd3{bottom:-330.458637px;}
.yf9{bottom:-325.767900px;}
.yfc{bottom:-315.688050px;}
.y151{bottom:-314.093550px;}
.yd2{bottom:-311.199195px;}
.yfa{bottom:-305.517900px;}
.y150{bottom:-293.843550px;}
.yd1{bottom:-291.939753px;}
.yf8{bottom:-275.548500px;}
.y14f{bottom:-272.783400px;}
.yd0{bottom:-272.770491px;}
.yf7{bottom:-258.178050px;}
.ycf{bottom:-253.511049px;}
.y14e{bottom:-242.813850px;}
.yce{bottom:-234.340284px;}
.y14d{bottom:-225.443400px;}
.yf6{bottom:-222.535080px;}
.ycd{bottom:-215.080842px;}
.yf5{bottom:-203.275638px;}
.ycc{bottom:-195.821400px;}
.y14c{bottom:-189.709842px;}
.yf4{bottom:-184.016196px;}
.ycb{bottom:-176.652138px;}
.y14b{bottom:-170.450400px;}
.yf3{bottom:-164.846934px;}
.yca{bottom:-157.392696px;}
.y14a{bottom:-151.281138px;}
.yf2{bottom:-145.587492px;}
.yc9{bottom:-138.133254px;}
.y149{bottom:-132.021696px;}
.yf1{bottom:-126.328050px;}
.yc8{bottom:-118.963992px;}
.y148{bottom:-112.852434px;}
.yc7{bottom:-99.704550px;}
.y147{bottom:-93.592992px;}
.yf0{bottom:-89.608950px;}
.y146{bottom:-74.333550px;}
.yef{bottom:-72.238500px;}
.yc6{bottom:-62.894850px;}
.yee{bottom:-54.958500px;}
.yc5{bottom:-45.614850px;}
.y143{bottom:-37.614000px;}
.y145{bottom:-37.613400px;}
.yed{bottom:-37.588050px;}
.y144{bottom:-33.833550px;}
.yc4{bottom:-28.244400px;}
.yec{bottom:-20.308050px;}
.y142{bottom:-20.243550px;}
.yc3{bottom:-5.835054px;}
.y0{bottom:0.000000px;}
.yeb{bottom:2.101275px;}
.y141{bottom:2.256450px;}
.y8{bottom:3.425340px;}
.y7{bottom:14.151273px;}
.y4f{bottom:31.890000px;}
.y1d0{bottom:99.085500px;}
.y18a{bottom:101.112000px;}
.y23{bottom:102.823500px;}
.y4e{bottom:105.375000px;}
.yba{bottom:105.810000px;}
.y86{bottom:109.366500px;}
.y196{bottom:112.536000px;}
.y1cf{bottom:116.346000px;}
.y189{bottom:119.941500px;}
.y22{bottom:120.711000px;}
.y4d{bottom:124.204500px;}
.yb9{bottom:124.639500px;}
.y85{bottom:128.196000px;}
.y1ce{bottom:133.606500px;}
.y21{bottom:138.600000px;}
.y188{bottom:138.771000px;}
.y195{bottom:139.075500px;}
.y4c{bottom:143.034000px;}
.y84{bottom:147.025500px;}
.yb8{bottom:147.952500px;}
.y1cd{bottom:150.867000px;}
.y11e{bottom:155.847000px;}
.y20{bottom:156.487500px;}
.y187{bottom:157.599000px;}
.y4b{bottom:161.863500px;}
.y194{bottom:165.616500px;}
.y83{bottom:165.855000px;}
.y1cc{bottom:168.127500px;}
.y11d{bottom:170.043000px;}
.y1f{bottom:174.375000px;}
.y186{bottom:176.428500px;}
.yb7{bottom:181.576500px;}
.y82{bottom:184.684500px;}
.y4a{bottom:185.176500px;}
.y1cb{bottom:185.388000px;}
.y11c{bottom:188.887500px;}
.y193{bottom:192.157500px;}
.y1e{bottom:192.264000px;}
.y185{bottom:195.258000px;}
.yb6{bottom:200.406000px;}
.y1ca{bottom:202.647000px;}
.y81{bottom:203.514000px;}
.y11b{bottom:205.326000px;}
.y1d{bottom:210.151500px;}
.y184{bottom:214.087500px;}
.y192{bottom:218.697000px;}
.yb5{bottom:219.235500px;}
.y1c9{bottom:219.907500px;}
.y11a{bottom:221.763000px;}
.y80{bottom:222.343500px;}
.y1c{bottom:228.039000px;}
.y183{bottom:232.917000px;}
.y1c8{bottom:237.168000px;}
.yb4{bottom:238.065000px;}
.y119{bottom:238.201500px;}
.y7f{bottom:241.173000px;}
.y191{bottom:245.238000px;}
.y182{bottom:251.746500px;}
.y1c7{bottom:254.428500px;}
.y118{bottom:254.640000px;}
.yb3{bottom:256.894500px;}
.y7e{bottom:260.002500px;}
.y49{bottom:260.326500px;}
.y190{bottom:262.812000px;}
.y181{bottom:270.576000px;}
.y117{bottom:271.078500px;}
.y1c6{bottom:271.689000px;}
.y15c{bottom:275.359500px;}
.yb2{bottom:275.724000px;}
.y7d{bottom:278.832000px;}
.y48{bottom:279.783000px;}
.y18f{bottom:280.386000px;}
.y116{bottom:287.517000px;}
.y1c5{bottom:288.949500px;}
.y180{bottom:289.405500px;}
.y15b{bottom:294.189000px;}
.yb1{bottom:294.553500px;}
.ye6{bottom:295.351500px;}
.y7c{bottom:297.661500px;}
.y18e{bottom:297.960000px;}
.y1c4{bottom:306.210000px;}
.y1b{bottom:307.299000px;}
.y17f{bottom:308.235000px;}
.y115{bottom:311.158500px;}
.y15a{bottom:313.018500px;}
.yb0{bottom:313.383000px;}
.ye5{bottom:314.181000px;}
.y18d{bottom:315.535500px;}
.y7b{bottom:316.491000px;}
.y47{bottom:317.173500px;}
.y1c3{bottom:323.470500px;}
.y1a{bottom:325.186500px;}
.y17e{bottom:327.064500px;}
.y113{bottom:327.595500px;}
.y159{bottom:331.848000px;}
.yaf{bottom:332.212500px;}
.ye4{bottom:333.010500px;}
.y7a{bottom:335.320500px;}
.y46{bottom:336.630000px;}
.y1c2{bottom:340.729500px;}
.y19{bottom:343.074000px;}
.y114{bottom:344.034000px;}
.y17d{bottom:345.894000px;}
.y158{bottom:350.676000px;}
.yae{bottom:351.042000px;}
.ye3{bottom:351.840000px;}
.y79{bottom:354.150000px;}
.y45{bottom:356.088000px;}
.y1c1{bottom:357.990000px;}
.y18{bottom:360.963000px;}
.y17b{bottom:364.723500px;}
.y157{bottom:369.505500px;}
.yad{bottom:369.871500px;}
.y17c{bottom:370.149000px;}
.ye2{bottom:370.669500px;}
.y78{bottom:372.979500px;}
.y1c0{bottom:375.250500px;}
.y44{bottom:375.544500px;}
.y112{bottom:375.654000px;}
.y17a{bottom:383.553000px;}
.y156{bottom:388.335000px;}
.yac{bottom:388.701000px;}
.ye1{bottom:389.499000px;}
.y140{bottom:390.066450px;}
.y77{bottom:391.809000px;}
.y1bf{bottom:392.511000px;}
.y111{bottom:394.887000px;}
.y43{bottom:395.002500px;}
.y17{bottom:399.024000px;}
.y179{bottom:402.382500px;}
.y13f{bottom:407.346450px;}
.yab{bottom:407.530500px;}
.ye0{bottom:408.328500px;}
.y1be{bottom:409.771500px;}
.y76{bottom:410.638500px;}
.y42{bottom:414.459000px;}
.y16{bottom:416.913000px;}
.y178{bottom:421.212000px;}
.y155{bottom:421.902000px;}
.yaa{bottom:426.360000px;}
.y13e{bottom:426.876711px;}
.y1bd{bottom:427.032000px;}
.ydf{bottom:427.158000px;}
.y75{bottom:429.468000px;}
.y110{bottom:431.991000px;}
.y41{bottom:433.915500px;}
.y15{bottom:434.800500px;}
.y177{bottom:440.041500px;}
.y154{bottom:441.133500px;}
.y1bc{bottom:444.292500px;}
.ya9{bottom:445.189500px;}
.yde{bottom:445.987500px;}
.y13d{bottom:447.036531px;}
.y74{bottom:448.297500px;}
.y10f{bottom:450.820500px;}
.y40{bottom:453.373500px;}
.y176{bottom:458.871000px;}
.y1bb{bottom:461.553000px;}
.y12d{bottom:463.563000px;}
.ya8{bottom:464.019000px;}
.ydd{bottom:464.817000px;}
.y73{bottom:467.127000px;}
.y13c{bottom:467.286531px;}
.y10e{bottom:469.650000px;}
.y14{bottom:470.622000px;}
.y3f{bottom:472.830000px;}
.y175{bottom:477.700500px;}
.y1ba{bottom:478.813500px;}
.ya7{bottom:482.848500px;}
.ydc{bottom:483.646500px;}
.y72{bottom:485.956500px;}
.y13b{bottom:487.536531px;}
.y10d{bottom:488.479500px;}
.y13{bottom:488.509500px;}
.y3e{bottom:492.286500px;}
.y1b9{bottom:496.072500px;}
.y174{bottom:496.530000px;}
.ya6{bottom:501.676500px;}
.ydb{bottom:502.476000px;}
.y71{bottom:504.786000px;}
.y10c{bottom:507.309000px;}
.y13a{bottom:507.786531px;}
.yc2{bottom:509.684928px;}
.y3d{bottom:511.744500px;}
.y1b8{bottom:513.333000px;}
.y173{bottom:515.359500px;}
.ye9{bottom:516.452535px;}
.ya5{bottom:520.506000px;}
.yda{bottom:521.305500px;}
.y70{bottom:523.615500px;}
.y12{bottom:524.329500px;}
.y10b{bottom:526.138500px;}
.ye8{bottom:526.261950px;}
.y139{bottom:528.036450px;}
.yc1{bottom:528.944370px;}
.y1b7{bottom:530.593500px;}
.y3c{bottom:531.201000px;}
.y172{bottom:538.672500px;}
.ya4{bottom:539.335500px;}
.yd9{bottom:540.135000px;}
.y11{bottom:542.218500px;}
.y6f{bottom:542.445000px;}
.y1b6{bottom:547.854000px;}
.yc0{bottom:548.115135px;}
.y138{bottom:548.286450px;}
.y3b{bottom:550.659000px;}
.ya3{bottom:558.165000px;}
.y10a{bottom:559.704000px;}
.y10{bottom:560.106000px;}
.y6e{bottom:561.274500px;}
.y1b5{bottom:565.114500px;}
.y135{bottom:569.346450px;}
.y3a{bottom:570.115500px;}
.ybf{bottom:571.964739px;}
.y171{bottom:572.296500px;}
.y136{bottom:573.126450px;}
.yd8{bottom:573.700500px;}
.ya2{bottom:576.994500px;}
.yf{bottom:577.993500px;}
.y109{bottom:578.937000px;}
.y6d{bottom:580.104000px;}
.y1b4{bottom:582.375000px;}
.y39{bottom:589.572000px;}
.y137{bottom:589.596369px;}
.y133{bottom:589.596450px;}
.y170{bottom:591.124500px;}
.yd7{bottom:592.933500px;}
.ya1{bottom:595.824000px;}
.ye{bottom:595.882500px;}
.y108{bottom:598.170000px;}
.y6c{bottom:598.932000px;}
.y1b3{bottom:599.635500px;}
.y38{bottom:609.030000px;}
.y134{bottom:609.846450px;}
.y16f{bottom:609.954000px;}
.yd6{bottom:612.166500px;}
.yd{bottom:613.770000px;}
.ya0{bottom:614.653500px;}
.y1b2{bottom:616.896000px;}
.y107{bottom:617.403000px;}
.y6b{bottom:617.761500px;}
.ybd{bottom:626.416035px;}
.y37{bottom:628.486500px;}
.yc{bottom:631.657500px;}
.y9f{bottom:633.483000px;}
.y1b1{bottom:634.156500px;}
.ybb{bottom:634.596000px;}
.y16e{bottom:635.143500px;}
.ybc{bottom:636.225450px;}
.y6a{bottom:636.591000px;}
.y132{bottom:639.816000px;}
.ye7{bottom:639.832500px;}
.y36{bottom:647.943000px;}
.y16d{bottom:649.341000px;}
.yb{bottom:649.546500px;}
.y1b0{bottom:651.415500px;}
.y9e{bottom:652.312500px;}
.y69{bottom:655.420500px;}
.y131{bottom:657.186450px;}
.y16c{bottom:663.537000px;}
.y35{bottom:667.401000px;}
.ya{bottom:667.434000px;}
.y1af{bottom:668.676000px;}
.y9d{bottom:671.142000px;}
.y68{bottom:674.250000px;}
.y16b{bottom:682.381500px;}
.y9{bottom:685.321500px;}
.y1ae{bottom:685.936500px;}
.y9c{bottom:689.971500px;}
.y67{bottom:693.079500px;}
.y16a{bottom:698.820000px;}
.y1ad{bottom:703.197000px;}
.y34{bottom:705.985500px;}
.y6{bottom:707.692555px;}
.y9b{bottom:708.801000px;}
.y12f{bottom:710.197035px;}
.y66{bottom:711.909000px;}
.y169{bottom:715.258500px;}
.y12e{bottom:720.006450px;}
.y1ac{bottom:720.457500px;}
.y33{bottom:726.465000px;}
.y18c{bottom:727.630500px;}
.y65{bottom:730.738500px;}
.y168{bottom:731.697000px;}
.y9a{bottom:732.114000px;}
.y1ab{bottom:737.718000px;}
.y32{bottom:738.265500px;}
.y167{bottom:748.135500px;}
.y64{bottom:749.568000px;}
.y18b{bottom:750.943500px;}
.y1aa{bottom:754.978500px;}
.y31{bottom:758.745000px;}
.y166{bottom:764.572500px;}
.y99{bottom:765.738000px;}
.y63{bottom:768.397500px;}
.y30{bottom:770.544000px;}
.y1a9{bottom:772.239000px;}
.y165{bottom:781.011000px;}
.y98{bottom:784.567500px;}
.y2f{bottom:786.684000px;}
.y62{bottom:787.227000px;}
.y1a8{bottom:789.498000px;}
.y2e{bottom:791.023500px;}
.y2d{bottom:802.824000px;}
.y97{bottom:803.397000px;}
.y164{bottom:804.652500px;}
.y61{bottom:806.056500px;}
.y1a7{bottom:806.758500px;}
.y2c{bottom:818.962500px;}
.y96{bottom:822.226500px;}
.y2b{bottom:823.302000px;}
.y1a6{bottom:824.019000px;}
.y60{bottom:824.886000px;}
.y163{bottom:836.271000px;}
.y2a{bottom:839.442000px;}
.y95{bottom:841.056000px;}
.y1a5{bottom:841.279500px;}
.y5f{bottom:843.715500px;}
.y29{bottom:851.242500px;}
.y162{bottom:855.504000px;}
.y1a4{bottom:858.540000px;}
.y94{bottom:859.885500px;}
.y5e{bottom:862.545000px;}
.y12c{bottom:867.108000px;}
.y28{bottom:871.722000px;}
.y1a3{bottom:875.800500px;}
.y93{bottom:878.715000px;}
.y12b{bottom:881.305500px;}
.y5d{bottom:881.374500px;}
.y27{bottom:883.521000px;}
.y161{bottom:885.789000px;}
.y1a2{bottom:893.061000px;}
.y92{bottom:897.544500px;}
.y26{bottom:899.661000px;}
.y160{bottom:899.985000px;}
.y12a{bottom:900.148500px;}
.y5c{bottom:900.204000px;}
.y1a1{bottom:910.321500px;}
.y15f{bottom:914.182500px;}
.y25{bottom:915.801000px;}
.y91{bottom:916.374000px;}
.y129{bottom:916.587000px;}
.y5b{bottom:919.033500px;}
.y1a0{bottom:927.582000px;}
.y128{bottom:933.025500px;}
.y90{bottom:935.202000px;}
.y24{bottom:936.279000px;}
.y5a{bottom:937.863000px;}
.y19f{bottom:944.841000px;}
.y127{bottom:949.464000px;}
.y8f{bottom:954.031500px;}
.y59{bottom:956.692500px;}
.y19e{bottom:962.101500px;}
.y126{bottom:965.902500px;}
.y8e{bottom:972.861000px;}
.y58{bottom:975.522000px;}
.y5{bottom:976.473000px;}
.y19d{bottom:979.362000px;}
.y125{bottom:982.341000px;}
.y8d{bottom:991.690500px;}
.y57{bottom:994.351500px;}
.y4{bottom:995.302500px;}
.y19c{bottom:996.622500px;}
.y124{bottom:998.779500px;}
.y8c{bottom:1010.520000px;}
.y56{bottom:1013.181000px;}
.y19b{bottom:1013.883000px;}
.y15e{bottom:1015.218000px;}
.y123{bottom:1022.419500px;}
.y8b{bottom:1029.349500px;}
.y19a{bottom:1031.143500px;}
.y15d{bottom:1031.655000px;}
.y55{bottom:1032.010500px;}
.y121{bottom:1038.858000px;}
.y3{bottom:1041.199500px;}
.y8a{bottom:1048.179000px;}
.y199{bottom:1048.404000px;}
.y54{bottom:1050.840000px;}
.y122{bottom:1055.296500px;}
.y198{bottom:1065.664500px;}
.y89{bottom:1067.008500px;}
.y2{bottom:1069.443000px;}
.y53{bottom:1069.669500px;}
.y197{bottom:1082.923500px;}
.y88{bottom:1085.838000px;}
.y120{bottom:1086.916500px;}
.y52{bottom:1088.499000px;}
.y1{bottom:1097.688000px;}
.y87{bottom:1104.667500px;}
.y11f{bottom:1106.148000px;}
.y51{bottom:1107.327000px;}
.y50{bottom:1173.409500px;}
.h1d{height:24.466235px;}
.h5{height:25.508090px;}
.ha{height:26.110157px;}
.h20{height:26.507812px;}
.h8{height:30.461558px;}
.h13{height:30.582721px;}
.h22{height:30.629531px;}
.h9{height:30.670772px;}
.h25{height:33.072749px;}
.h7{height:33.112997px;}
.h6{height:34.199443px;}
.hb{height:34.813397px;}
.h10{height:35.052500px;}
.hc{height:38.896243px;}
.hd{height:39.165235px;}
.h26{height:39.434227px;}
.he{height:43.217759px;}
.hf{height:43.516637px;}
.h2{height:43.815515px;}
.h17{height:44.268047px;}
.h15{height:44.279648px;}
.h23{height:46.645840px;}
.h21{height:46.646164px;}
.h1c{height:49.117939px;}
.h1b{height:49.776344px;}
.h1e{height:49.782344px;}
.h18{height:49.939453px;}
.h24{height:49.985558px;}
.h4{height:54.541601px;}
.h11{height:54.575123px;}
.h12{height:54.774749px;}
.h16{height:55.599258px;}
.h3{height:77.792486px;}
.h1a{height:87.326440px;}
.h1f{height:371.781000px;}
.h19{height:479.781000px;}
.h14{height:485.017500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w4{width:577.962000px;}
.w3{width:594.981000px;}
.w5{width:782.179650px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x27{left:-194.727000px;}
.x1a{left:-86.727000px;}
.x1e{left:-54.867000px;}
.x0{left:0.000000px;}
.x47{left:3.600150px;}
.x2f{left:22.443000px;}
.x30{left:25.503000px;}
.x2e{left:27.213000px;}
.x2{left:29.274117px;}
.x29{left:32.703000px;}
.x57{left:35.460150px;}
.x1{left:53.461500px;}
.x46{left:55.367850px;}
.x1f{left:85.890000px;}
.x1b{left:108.841910px;}
.x2a{left:120.453000px;}
.x2b{left:133.503000px;}
.x1c{left:140.701805px;}
.x20{left:143.187000px;}
.x19{left:148.966500px;}
.x26{left:157.476000px;}
.x31{left:186.928500px;}
.x35{left:195.603000px;}
.x48{left:199.170150px;}
.x36{left:206.806500px;}
.x5c{left:211.770150px;}
.x5b{left:216.540150px;}
.x5a{left:217.980150px;}
.x53{left:219.422958px;}
.x54{left:222.481733px;}
.x52{left:224.190150px;}
.x49{left:225.540150px;}
.x55{left:229.232128px;}
.x2c{left:230.973000px;}
.x2d{left:246.003000px;}
.x5{left:249.832500px;}
.x3{left:250.897500px;}
.x5e{left:260.337000px;}
.x5d{left:261.520500px;}
.x3f{left:265.401000px;}
.x40{left:268.164000px;}
.x3e{left:269.671500px;}
.x4{left:270.754500px;}
.x41{left:274.162500px;}
.x8{left:282.786000px;}
.x22{left:288.414000px;}
.x23{left:297.384000px;}
.x9{left:302.484000px;}
.x37{left:304.620000px;}
.x34{left:306.504000px;}
.x6{left:310.246500px;}
.x4a{left:317.700150px;}
.x7{left:321.195000px;}
.x5f{left:327.043500px;}
.x4c{left:330.750150px;}
.x4b{left:337.320150px;}
.x38{left:343.866000px;}
.x39{left:350.953500px;}
.x12{left:357.696000px;}
.x13{left:372.639000px;}
.x4d{left:388.530150px;}
.x68{left:391.821000px;}
.x4e{left:393.030150px;}
.x64{left:395.269500px;}
.xc{left:399.769500px;}
.x65{left:401.694000px;}
.xd{left:412.060500px;}
.x4f{left:443.520150px;}
.x50{left:446.490150px;}
.x44{left:448.692000px;}
.x45{left:451.576500px;}
.x3b{left:455.685000px;}
.x3a{left:456.855000px;}
.x3c{left:460.459500px;}
.x10{left:484.359000px;}
.x42{left:490.414500px;}
.x11{left:496.650000px;}
.x43{left:500.248500px;}
.x66{left:514.476000px;}
.x62{left:525.919500px;}
.x67{left:529.420500px;}
.x63{left:540.862500px;}
.x51{left:552.600265px;}
.x3d{left:559.578000px;}
.x28{left:576.842559px;}
.x32{left:578.023500px;}
.x60{left:579.100500px;}
.x33{left:586.993500px;}
.x61{left:588.933000px;}
.x24{left:610.138500px;}
.x1d{left:615.720120px;}
.x25{left:619.849500px;}
.x72{left:662.592000px;}
.xe{left:684.568500px;}
.x73{left:689.491500px;}
.xf{left:699.513000px;}
.x21{left:709.530000px;}
.x6c{left:733.806000px;}
.x58{left:736.920000px;}
.x59{left:741.150150px;}
.x70{left:742.461000px;}
.xa{left:745.678500px;}
.x14{left:752.041500px;}
.x6d{left:760.704000px;}
.x18{left:762.312000px;}
.x6e{left:763.357500px;}
.x15{left:766.984500px;}
.x71{left:769.360500px;}
.x6f{left:783.946500px;}
.x56{left:788.490000px;}
.x69{left:789.571500px;}
.x6b{left:810.265500px;}
.x6a{left:816.469500px;}
.x16{left:818.020500px;}
.x17{left:832.963500px;}
.xb{left:837.120000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.439467pt;}
.v5{vertical-align:17.354667pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:36.160533pt;}
.ls45{letter-spacing:-0.225600pt;}
.ls2a{letter-spacing:-0.224448pt;}
.ls49{letter-spacing:-0.197728pt;}
.ls62{letter-spacing:-0.187040pt;}
.ls6a{letter-spacing:-0.176352pt;}
.ls21{letter-spacing:-0.160320pt;}
.ls64{letter-spacing:-0.149632pt;}
.ls46{letter-spacing:-0.122912pt;}
.ls4b{letter-spacing:-0.112224pt;}
.ls65{letter-spacing:-0.101536pt;}
.ls22{letter-spacing:-0.096192pt;}
.ls6b{letter-spacing:-0.090848pt;}
.ls40{letter-spacing:-0.080864pt;}
.ls4d{letter-spacing:-0.080160pt;}
.ls1e{letter-spacing:-0.076608pt;}
.ls28{letter-spacing:-0.074816pt;}
.ls67{letter-spacing:-0.069472pt;}
.ls4e{letter-spacing:-0.067200pt;}
.ls20{letter-spacing:-0.064128pt;}
.ls68{letter-spacing:-0.058784pt;}
.ls47{letter-spacing:-0.053440pt;}
.ls23{letter-spacing:-0.048096pt;}
.ls60{letter-spacing:-0.042752pt;}
.ls41{letter-spacing:-0.038304pt;}
.ls48{letter-spacing:-0.037408pt;}
.ls69{letter-spacing:-0.033600pt;}
.ls25{letter-spacing:-0.032064pt;}
.ls1f{letter-spacing:-0.029792pt;}
.ls61{letter-spacing:-0.026720pt;}
.ls29{letter-spacing:-0.021376pt;}
.ls42{letter-spacing:-0.019200pt;}
.ls24{letter-spacing:-0.016032pt;}
.ls5f{letter-spacing:-0.014400pt;}
.ls27{letter-spacing:-0.010688pt;}
.ls44{letter-spacing:-0.009600pt;}
.ls26{letter-spacing:-0.005344pt;}
.ls43{letter-spacing:-0.004800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls78{letter-spacing:0.000375pt;}
.ls4{letter-spacing:0.000533pt;}
.ls8a{letter-spacing:0.000600pt;}
.ls7a{letter-spacing:0.000711pt;}
.ls3c{letter-spacing:0.000751pt;}
.ls8d{letter-spacing:0.000921pt;}
.ls7c{letter-spacing:0.000998pt;}
.ls3b{letter-spacing:0.001007pt;}
.ls8c{letter-spacing:0.001026pt;}
.lsb{letter-spacing:0.001154pt;}
.ls87{letter-spacing:0.001158pt;}
.ls77{letter-spacing:0.001391pt;}
.ls89{letter-spacing:0.001408pt;}
.ls5e{letter-spacing:0.001774pt;}
.ls70{letter-spacing:0.001843pt;}
.ls7e{letter-spacing:0.002038pt;}
.ls82{letter-spacing:0.002153pt;}
.ls7b{letter-spacing:0.002212pt;}
.ls6f{letter-spacing:0.002525pt;}
.ls76{letter-spacing:0.003261pt;}
.ls7d{letter-spacing:0.003635pt;}
.ls8b{letter-spacing:0.004267pt;}
.ls53{letter-spacing:0.004800pt;}
.ls18{letter-spacing:0.005344pt;}
.ls34{letter-spacing:0.009600pt;}
.ls33{letter-spacing:0.010688pt;}
.ls12{letter-spacing:0.014400pt;}
.ls66{letter-spacing:0.016032pt;}
.ls16{letter-spacing:0.019200pt;}
.ls31{letter-spacing:0.021376pt;}
.ls2d{letter-spacing:0.024000pt;}
.ls35{letter-spacing:0.026720pt;}
.ls14{letter-spacing:0.028800pt;}
.ls36{letter-spacing:0.032064pt;}
.ls11{letter-spacing:0.033600pt;}
.ls2b{letter-spacing:0.034048pt;}
.ls50{letter-spacing:0.037408pt;}
.lsd{letter-spacing:0.038304pt;}
.ls1b{letter-spacing:0.042752pt;}
.ls3a{letter-spacing:0.043200pt;}
.ls1c{letter-spacing:0.048096pt;}
.ls19{letter-spacing:0.053440pt;}
.ls32{letter-spacing:0.058784pt;}
.ls15{letter-spacing:0.067200pt;}
.ls4c{letter-spacing:0.069472pt;}
.ls10{letter-spacing:0.080160pt;}
.ls30{letter-spacing:0.081600pt;}
.lsf{letter-spacing:0.085504pt;}
.ls38{letter-spacing:0.090848pt;}
.ls2f{letter-spacing:0.096000pt;}
.ls52{letter-spacing:0.096192pt;}
.ls1d{letter-spacing:0.101536pt;}
.ls51{letter-spacing:0.106880pt;}
.ls13{letter-spacing:0.110400pt;}
.ls6c{letter-spacing:0.128256pt;}
.ls17{letter-spacing:0.129600pt;}
.ls1a{letter-spacing:0.154976pt;}
.ls4a{letter-spacing:0.160320pt;}
.ls2c{letter-spacing:0.161728pt;}
.lse{letter-spacing:0.170240pt;}
.ls63{letter-spacing:0.171008pt;}
.ls9{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls5c{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.657067pt;}
.ls3d{letter-spacing:2.661867pt;}
.ls1{letter-spacing:2.665203pt;}
.ls2e{letter-spacing:2.721600pt;}
.ls3{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.lsc{letter-spacing:10.662999pt;}
.ls83{letter-spacing:11.746761pt;}
.ls88{letter-spacing:11.751990pt;}
.ls85{letter-spacing:11.875488pt;}
.ls79{letter-spacing:11.954133pt;}
.ls7f{letter-spacing:11.959467pt;}
.ls86{letter-spacing:12.177997pt;}
.ls75{letter-spacing:12.363754pt;}
.ls84{letter-spacing:12.426499pt;}
.ls72{letter-spacing:13.230333pt;}
.ls74{letter-spacing:13.337067pt;}
.ls73{letter-spacing:13.362318pt;}
.ls5d{letter-spacing:13.389734pt;}
.ls8e{letter-spacing:13.825548pt;}
.ls8f{letter-spacing:14.355911pt;}
.ls80{letter-spacing:14.460486pt;}
.ls81{letter-spacing:14.884016pt;}
.ls37{letter-spacing:24.400960pt;}
.ls6d{letter-spacing:49.482745pt;}
.ls71{letter-spacing:50.074745pt;}
.ls58{letter-spacing:54.188160pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls59{letter-spacing:71.155360pt;}
.ls57{letter-spacing:71.474173pt;}
.ls6e{letter-spacing:75.353600pt;}
.ls54{letter-spacing:91.311562pt;}
.ls55{letter-spacing:91.962318pt;}
.ls56{letter-spacing:95.163767pt;}
.ls3e{letter-spacing:102.133411pt;}
.ls5b{letter-spacing:105.407668pt;}
.ls5a{letter-spacing:105.725696pt;}
.ls3f{letter-spacing:172.884267pt;}
.ls39{letter-spacing:213.200096pt;}
.lsa{letter-spacing:2346.986400pt;}
.ls4f{letter-spacing:2348.053067pt;}
.ws7a{word-spacing:-53.440000pt;}
.ws7c{word-spacing:-48.000000pt;}
.wsa5{word-spacing:-13.531008pt;}
.wsa7{word-spacing:-13.488256pt;}
.ws7b{word-spacing:-13.445504pt;}
.ws79{word-spacing:-13.392064pt;}
.wsa2{word-spacing:-13.365344pt;}
.ws77{word-spacing:-13.354656pt;}
.wsa4{word-spacing:-13.317248pt;}
.wsda{word-spacing:-13.283467pt;}
.wsa6{word-spacing:-13.210368pt;}
.ws4{word-spacing:-12.760670pt;}
.wsa3{word-spacing:-12.024000pt;}
.ws54{word-spacing:-12.000000pt;}
.ws56{word-spacing:-11.955200pt;}
.ws53{word-spacing:-10.810240pt;}
.ws76{word-spacing:-10.801728pt;}
.ws52{word-spacing:-10.678304pt;}
.ws75{word-spacing:-10.674048pt;}
.ws28{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.095467pt;}
.wsa{word-spacing:-9.298400pt;}
.ws78{word-spacing:-8.000000pt;}
.ws57{word-spacing:-2.816095pt;}
.ws73{word-spacing:-2.773536pt;}
.ws72{word-spacing:-2.762848pt;}
.ws44{word-spacing:-2.603559pt;}
.wsc5{word-spacing:-2.424000pt;}
.wsc4{word-spacing:-2.400000pt;}
.wsd9{word-spacing:-2.284756pt;}
.ws4a{word-spacing:-2.125355pt;}
.ws66{word-spacing:-2.057440pt;}
.ws4f{word-spacing:-1.806551pt;}
.ws4b{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.wsd8{word-spacing:-1.540882pt;}
.wsbb{word-spacing:-1.523040pt;}
.ws70{word-spacing:-1.507008pt;}
.wsbc{word-spacing:-1.501664pt;}
.wsa9{word-spacing:-1.487748pt;}
.ws71{word-spacing:-1.442880pt;}
.ws3d{word-spacing:-1.434614pt;}
.ws47{word-spacing:-1.381481pt;}
.wsa8{word-spacing:-1.222079pt;}
.wsf8{word-spacing:-1.195520pt;}
.ws6{word-spacing:-1.175671pt;}
.wsd4{word-spacing:-1.115811pt;}
.wse0{word-spacing:-1.062677pt;}
.wsf9{word-spacing:-0.908595pt;}
.ws4d{word-spacing:-0.797008pt;}
.ws1c{word-spacing:-0.765133pt;}
.wsbe{word-spacing:-0.566464pt;}
.wsbd{word-spacing:-0.507680pt;}
.wse1{word-spacing:-0.430387pt;}
.wsd1{word-spacing:-0.425072pt;}
.ws74{word-spacing:-0.331328pt;}
.ws59{word-spacing:-0.318803pt;}
.ws1d{word-spacing:-0.286925pt;}
.ws3e{word-spacing:-0.265669pt;}
.ws99{word-spacing:-0.261856pt;}
.ws90{word-spacing:-0.240000pt;}
.ws1b{word-spacing:-0.239104pt;}
.ws2d{word-spacing:-0.212535pt;}
.ws21{word-spacing:-0.191283pt;}
.ws92{word-spacing:-0.177600pt;}
.wscd{word-spacing:-0.170029pt;}
.ws29{word-spacing:-0.159402pt;}
.ws91{word-spacing:-0.153600pt;}
.ws20{word-spacing:-0.143462pt;}
.ws15{word-spacing:-0.127522pt;}
.wsb6{word-spacing:-0.120000pt;}
.ws2f{word-spacing:-0.106268pt;}
.ws7d{word-spacing:-0.095642pt;}
.wsa1{word-spacing:-0.091200pt;}
.wsce{word-spacing:-0.085014pt;}
.ws3{word-spacing:-0.053134pt;}
.ws1e{word-spacing:-0.047821pt;}
.ws5a{word-spacing:-0.046816pt;}
.ws8b{word-spacing:-0.042560pt;}
.ws6f{word-spacing:-0.016032pt;}
.ws106{word-spacing:-0.007151pt;}
.ws105{word-spacing:-0.004096pt;}
.wsef{word-spacing:-0.003891pt;}
.ws9{word-spacing:-0.002846pt;}
.ws27{word-spacing:-0.002332pt;}
.ws0{word-spacing:0.000000pt;}
.wsf1{word-spacing:0.001237pt;}
.ws5c{word-spacing:0.005344pt;}
.ws18{word-spacing:0.047821pt;}
.wsae{word-spacing:0.048096pt;}
.ws25{word-spacing:0.053134pt;}
.ws9d{word-spacing:0.069472pt;}
.wsaf{word-spacing:0.085504pt;}
.ws17{word-spacing:0.095642pt;}
.ws30{word-spacing:0.106268pt;}
.wsa0{word-spacing:0.115200pt;}
.ws6b{word-spacing:0.117568pt;}
.wsb5{word-spacing:0.120000pt;}
.ws96{word-spacing:0.139200pt;}
.ws1a{word-spacing:0.143462pt;}
.ws62{word-spacing:0.144000pt;}
.ws9f{word-spacing:0.148800pt;}
.wsad{word-spacing:0.153600pt;}
.ws97{word-spacing:0.158400pt;}
.ws33{word-spacing:0.159402pt;}
.wsac{word-spacing:0.177600pt;}
.wsba{word-spacing:0.182400pt;}
.wsb{word-spacing:0.185968pt;}
.wsc9{word-spacing:0.191283pt;}
.ws9a{word-spacing:0.203072pt;}
.ws48{word-spacing:0.212535pt;}
.wsfc{word-spacing:0.239104pt;}
.ws5d{word-spacing:0.245824pt;}
.wsd{word-spacing:0.260355pt;}
.ws42{word-spacing:0.265669pt;}
.wse4{word-spacing:0.286925pt;}
.ws2e{word-spacing:0.318803pt;}
.ws55{word-spacing:0.334746pt;}
.ws9c{word-spacing:0.342016pt;}
.wsbf{word-spacing:0.347360pt;}
.ws64{word-spacing:0.352704pt;}
.ws9b{word-spacing:0.400800pt;}
.ws3f{word-spacing:0.425071pt;}
.ws5{word-spacing:0.499721pt;}
.ws50{word-spacing:0.584473pt;}
.wse8{word-spacing:0.621670pt;}
.ws51{word-spacing:0.637606pt;}
.ws7e{word-spacing:0.717312pt;}
.ws2c{word-spacing:0.797008pt;}
.wse7{word-spacing:0.812954pt;}
.ws1f{word-spacing:0.860774pt;}
.wsf5{word-spacing:1.004237pt;}
.ws7f{word-spacing:1.009543pt;}
.ws58{word-spacing:1.115811pt;}
.ws34{word-spacing:1.168945pt;}
.ws16{word-spacing:1.195520pt;}
.wsde{word-spacing:1.381481pt;}
.wsb7{word-spacing:1.411200pt;}
.wsb9{word-spacing:1.420800pt;}
.wsb8{word-spacing:1.430400pt;}
.ws3c{word-spacing:1.434614pt;}
.wsc0{word-spacing:1.437536pt;}
.ws40{word-spacing:1.540882pt;}
.wsdf{word-spacing:1.594016pt;}
.ws6d{word-spacing:1.640608pt;}
.ws24{word-spacing:1.647150pt;}
.wsdd{word-spacing:1.753418pt;}
.wsc{word-spacing:1.785293pt;}
.wse9{word-spacing:1.817190pt;}
.ws43{word-spacing:1.859685pt;}
.ws102{word-spacing:1.865011pt;}
.ws19{word-spacing:1.912832pt;}
.wsf2{word-spacing:1.960653pt;}
.wsd2{word-spacing:1.965953pt;}
.ws6c{word-spacing:2.009344pt;}
.ws68{word-spacing:2.020032pt;}
.ws67{word-spacing:2.052096pt;}
.ws5e{word-spacing:2.054400pt;}
.ws5f{word-spacing:2.073600pt;}
.ws3a{word-spacing:2.125355pt;}
.ws83{word-spacing:2.295398pt;}
.wsc1{word-spacing:2.340672pt;}
.ws94{word-spacing:2.385600pt;}
.ws104{word-spacing:2.391040pt;}
.ws93{word-spacing:2.409600pt;}
.ws23{word-spacing:2.444158pt;}
.wsf3{word-spacing:2.486682pt;}
.wsdb{word-spacing:2.550426pt;}
.ws82{word-spacing:2.582323pt;}
.ws6a{word-spacing:2.591840pt;}
.ws38{word-spacing:2.603559pt;}
.ws95{word-spacing:2.625600pt;}
.wsfb{word-spacing:2.630144pt;}
.ws49{word-spacing:2.656693pt;}
.wsed{word-spacing:2.677965pt;}
.ws8c{word-spacing:2.697600pt;}
.ws8d{word-spacing:2.721600pt;}
.wse2{word-spacing:2.725786pt;}
.wsfe{word-spacing:2.773606pt;}
.ws39{word-spacing:2.816095pt;}
.wsee{word-spacing:2.821427pt;}
.wsff{word-spacing:2.865647pt;}
.wse3{word-spacing:2.866509pt;}
.ws37{word-spacing:2.869229pt;}
.wse6{word-spacing:2.869248pt;}
.wsf0{word-spacing:2.870263pt;}
.wsf4{word-spacing:2.917069pt;}
.ws69{word-spacing:2.965920pt;}
.wsd3{word-spacing:2.975497pt;}
.wsfd{word-spacing:3.156173pt;}
.ws22{word-spacing:3.188032pt;}
.ws65{word-spacing:3.201056pt;}
.ws6e{word-spacing:3.238464pt;}
.ws61{word-spacing:3.297600pt;}
.ws60{word-spacing:3.331200pt;}
.ws45{word-spacing:3.347434pt;}
.ws4e{word-spacing:3.453701pt;}
.ws81{word-spacing:3.559969pt;}
.wsd5{word-spacing:3.613103pt;}
.ws98{word-spacing:3.676672pt;}
.ws41{word-spacing:3.719371pt;}
.wsd6{word-spacing:3.772505pt;}
.ws46{word-spacing:4.038174pt;}
.wsfa{word-spacing:4.064768pt;}
.wse5{word-spacing:4.112589pt;}
.wsdc{word-spacing:4.197575pt;}
.ws63{word-spacing:4.243136pt;}
.ws26{word-spacing:4.303843pt;}
.ws5b{word-spacing:4.312608pt;}
.ws2b{word-spacing:4.569513pt;}
.ws4c{word-spacing:4.888316pt;}
.ws8f{word-spacing:4.929600pt;}
.ws9e{word-spacing:4.963200pt;}
.ws8e{word-spacing:4.977600pt;}
.ws101{word-spacing:5.355930pt;}
.ws13{word-spacing:5.393072pt;}
.ws3b{word-spacing:5.419654pt;}
.ws14{word-spacing:5.467459pt;}
.ws36{word-spacing:5.525922pt;}
.ws8a{word-spacing:5.525936pt;}
.wsc3{word-spacing:5.547072pt;}
.wsc2{word-spacing:5.723424pt;}
.ws35{word-spacing:5.738458pt;}
.wsd7{word-spacing:5.844725pt;}
.ws2a{word-spacing:6.004127pt;}
.ws31{word-spacing:6.057261pt;}
.ws32{word-spacing:6.110395pt;}
.wsf6{word-spacing:6.312346pt;}
.ws100{word-spacing:6.790554pt;}
.wsaa{word-spacing:6.859200pt;}
.wsab{word-spacing:6.897600pt;}
.ws80{word-spacing:6.960537pt;}
.ws11{word-spacing:7.699075pt;}
.ws103{word-spacing:8.894669pt;}
.wsf7{word-spacing:9.611981pt;}
.wseb{word-spacing:12.242125pt;}
.wsb0{word-spacing:13.199680pt;}
.ws8{word-spacing:13.763148pt;}
.wse{word-spacing:14.348669pt;}
.wsf{word-spacing:14.356730pt;}
.wsea{word-spacing:15.350477pt;}
.ws10{word-spacing:15.732893pt;}
.wsb2{word-spacing:22.450144pt;}
.ws12{word-spacing:24.399002pt;}
.ws1{word-spacing:35.593054pt;}
.wsc7{word-spacing:39.096704pt;}
.wsec{word-spacing:39.978189pt;}
.wsc6{word-spacing:42.661152pt;}
.wscf{word-spacing:47.916442pt;}
.wscb{word-spacing:48.493662pt;}
.wsc8{word-spacing:54.017152pt;}
.wsb1{word-spacing:64.106624pt;}
.ws85{word-spacing:78.413662pt;}
.wsca{word-spacing:98.893414pt;}
.wsd0{word-spacing:100.806246pt;}
.wscc{word-spacing:112.761446pt;}
.ws87{word-spacing:126.199091pt;}
.ws84{word-spacing:131.985408pt;}
.ws88{word-spacing:140.688794pt;}
.ws89{word-spacing:140.736614pt;}
.ws86{word-spacing:159.912755pt;}
.wsb3{word-spacing:188.787488pt;}
.wsb4{word-spacing:201.912352pt;}
._47{margin-left:-116.397673pt;}
._48{margin-left:-112.875977pt;}
._43{margin-left:-102.836048pt;}
._41{margin-left:-101.883360pt;}
._42{margin-left:-99.002944pt;}
._44{margin-left:-89.513235pt;}
._2{margin-left:-6.879758pt;}
._5{margin-left:-5.467459pt;}
._b{margin-left:-4.457990pt;}
._6{margin-left:-3.421811pt;}
._a{margin-left:-2.416205pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._0{width:2.665751pt;}
._3f{width:6.367064pt;}
._7{width:11.530016pt;}
._8{width:12.685502pt;}
._59{width:13.693113pt;}
._c{width:14.935978pt;}
._d{width:16.637627pt;}
._14{width:17.619218pt;}
._f{width:18.550446pt;}
._11{width:20.557477pt;}
._e{width:21.891153pt;}
._2b{width:23.066825pt;}
._3a{width:24.356626pt;}
._15{width:26.992004pt;}
._9{width:29.011008pt;}
._12{width:30.764509pt;}
._13{width:33.268527pt;}
._19{width:41.113280pt;}
._1{width:48.341306pt;}
._4e{width:51.152063pt;}
._62{width:54.993920pt;}
._1a{width:57.509410pt;}
._1d{width:62.773751pt;}
._4c{width:71.750994pt;}
._58{width:72.926720pt;}
._4d{width:75.364554pt;}
._4b{width:87.162825pt;}
._4f{width:88.222730pt;}
._18{width:89.894336pt;}
._1e{width:90.933751pt;}
._50{width:95.329276pt;}
._56{width:105.920674pt;}
._57{width:107.529185pt;}
._5b{width:110.975292pt;}
._55{width:111.937467pt;}
._1f{width:113.973751pt;}
._5e{width:117.875874pt;}
._5c{width:119.006177pt;}
._5f{width:124.716646pt;}
._25{width:127.413218pt;}
._1c{width:131.025568pt;}
._5d{width:136.863130pt;}
._2e{width:138.202112pt;}
._51{width:139.301990pt;}
._54{width:141.979955pt;}
._24{width:151.281600pt;}
._37{width:152.691814pt;}
._2f{width:154.365542pt;}
._60{width:155.467819pt;}
._2c{width:157.569536pt;}
._38{width:164.171631pt;}
._61{width:167.005027pt;}
._32{width:170.481152pt;}
._35{width:171.441869pt;}
._31{width:172.341862pt;}
._4a{width:178.901037pt;}
._39{width:185.495603pt;}
._49{width:195.822678pt;}
._2d{width:197.838950pt;}
._52{width:200.464794pt;}
._5a{width:203.042816pt;}
._53{width:205.725082pt;}
._20{width:209.884791pt;}
._26{width:213.324288pt;}
._34{width:216.245658pt;}
._36{width:217.167846pt;}
._28{width:220.920544pt;}
._30{width:224.757760pt;}
._22{width:227.824320pt;}
._3b{width:228.726886pt;}
._2a{width:230.339200pt;}
._1b{width:232.048399pt;}
._3e{width:240.156058pt;}
._33{width:242.690560pt;}
._29{width:244.941728pt;}
._21{width:245.905568pt;}
._27{width:251.573111pt;}
._3c{width:254.645760pt;}
._23{width:265.745568pt;}
._3d{width:266.648781pt;}
._40{width:275.321161pt;}
._45{width:289.579866pt;}
._46{width:303.396858pt;}
._10{width:384.883006pt;}
._17{width:1973.588503pt;}
._16{width:1974.495031pt;}
.fs10{font-size:29.440000pt;}
.fs6{font-size:31.880533pt;}
.fsd{font-size:32.000000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs2{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fs7{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fsf{font-size:44.292800pt;}
.fs8{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fse{font-size:49.829333pt;}
.fs0{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs1{font-size:95.641600pt;}
.yea{bottom:-548.931600pt;}
.y106{bottom:-466.931467pt;}
.y105{bottom:-451.571467pt;}
.ybe{bottom:-451.186267pt;}
.y104{bottom:-434.211600pt;}
.y103{bottom:-416.211600pt;}
.y102{bottom:-398.291600pt;}
.y101{bottom:-380.291600pt;}
.y130{bottom:-376.714267pt;}
.y100{bottom:-362.291600pt;}
.yff{bottom:-344.291600pt;}
.yd5{bottom:-327.899859pt;}
.yfe{bottom:-326.291600pt;}
.y153{bottom:-315.194195pt;}
.yd4{bottom:-310.780355pt;}
.yfb{bottom:-307.571467pt;}
.yfd{bottom:-298.611600pt;}
.y152{bottom:-297.194195pt;}
.yd3{bottom:-293.741011pt;}
.yf9{bottom:-289.571467pt;}
.yfc{bottom:-280.611600pt;}
.y151{bottom:-279.194267pt;}
.yd2{bottom:-276.621507pt;}
.yfa{bottom:-271.571467pt;}
.y150{bottom:-261.194267pt;}
.yd1{bottom:-259.502003pt;}
.yf8{bottom:-244.932000pt;}
.y14f{bottom:-242.474133pt;}
.yd0{bottom:-242.462659pt;}
.yf7{bottom:-229.491600pt;}
.ycf{bottom:-225.343155pt;}
.y14e{bottom:-215.834533pt;}
.yce{bottom:-208.302475pt;}
.y14d{bottom:-200.394133pt;}
.yf6{bottom:-197.808960pt;}
.ycd{bottom:-191.182971pt;}
.yf5{bottom:-180.689456pt;}
.ycc{bottom:-174.063467pt;}
.y14c{bottom:-168.630971pt;}
.yf4{bottom:-163.569952pt;}
.ycb{bottom:-157.024123pt;}
.y14b{bottom:-151.511467pt;}
.yf3{bottom:-146.530608pt;}
.yca{bottom:-139.904619pt;}
.y14a{bottom:-134.472123pt;}
.yf2{bottom:-129.411104pt;}
.yc9{bottom:-122.785115pt;}
.y149{bottom:-117.352619pt;}
.yf1{bottom:-112.291600pt;}
.yc8{bottom:-105.745771pt;}
.y148{bottom:-100.313275pt;}
.yc7{bottom:-88.626267pt;}
.y147{bottom:-83.193771pt;}
.yf0{bottom:-79.652400pt;}
.y146{bottom:-66.074267pt;}
.yef{bottom:-64.212000pt;}
.yc6{bottom:-55.906533pt;}
.yee{bottom:-48.852000pt;}
.yc5{bottom:-40.546533pt;}
.y143{bottom:-33.434667pt;}
.y145{bottom:-33.434133pt;}
.yed{bottom:-33.411600pt;}
.y144{bottom:-30.074267pt;}
.yc4{bottom:-25.106133pt;}
.yec{bottom:-18.051600pt;}
.y142{bottom:-17.994267pt;}
.yc3{bottom:-5.186715pt;}
.y0{bottom:0.000000pt;}
.yeb{bottom:1.867800pt;}
.y141{bottom:2.005733pt;}
.y8{bottom:3.044747pt;}
.y7{bottom:12.578910pt;}
.y4f{bottom:28.346667pt;}
.y1d0{bottom:88.076000pt;}
.y18a{bottom:89.877333pt;}
.y23{bottom:91.398667pt;}
.y4e{bottom:93.666667pt;}
.yba{bottom:94.053333pt;}
.y86{bottom:97.214667pt;}
.y196{bottom:100.032000pt;}
.y1cf{bottom:103.418667pt;}
.y189{bottom:106.614667pt;}
.y22{bottom:107.298667pt;}
.y4d{bottom:110.404000pt;}
.yb9{bottom:110.790667pt;}
.y85{bottom:113.952000pt;}
.y1ce{bottom:118.761333pt;}
.y21{bottom:123.200000pt;}
.y188{bottom:123.352000pt;}
.y195{bottom:123.622667pt;}
.y4c{bottom:127.141333pt;}
.y84{bottom:130.689333pt;}
.yb8{bottom:131.513333pt;}
.y1cd{bottom:134.104000pt;}
.y11e{bottom:138.530667pt;}
.y20{bottom:139.100000pt;}
.y187{bottom:140.088000pt;}
.y4b{bottom:143.878667pt;}
.y194{bottom:147.214667pt;}
.y83{bottom:147.426667pt;}
.y1cc{bottom:149.446667pt;}
.y11d{bottom:151.149333pt;}
.y1f{bottom:155.000000pt;}
.y186{bottom:156.825333pt;}
.yb7{bottom:161.401333pt;}
.y82{bottom:164.164000pt;}
.y4a{bottom:164.601333pt;}
.y1cb{bottom:164.789333pt;}
.y11c{bottom:167.900000pt;}
.y193{bottom:170.806667pt;}
.y1e{bottom:170.901333pt;}
.y185{bottom:173.562667pt;}
.yb6{bottom:178.138667pt;}
.y1ca{bottom:180.130667pt;}
.y81{bottom:180.901333pt;}
.y11b{bottom:182.512000pt;}
.y1d{bottom:186.801333pt;}
.y184{bottom:190.300000pt;}
.y192{bottom:194.397333pt;}
.yb5{bottom:194.876000pt;}
.y1c9{bottom:195.473333pt;}
.y11a{bottom:197.122667pt;}
.y80{bottom:197.638667pt;}
.y1c{bottom:202.701333pt;}
.y183{bottom:207.037333pt;}
.y1c8{bottom:210.816000pt;}
.yb4{bottom:211.613333pt;}
.y119{bottom:211.734667pt;}
.y7f{bottom:214.376000pt;}
.y191{bottom:217.989333pt;}
.y182{bottom:223.774667pt;}
.y1c7{bottom:226.158667pt;}
.y118{bottom:226.346667pt;}
.yb3{bottom:228.350667pt;}
.y7e{bottom:231.113333pt;}
.y49{bottom:231.401333pt;}
.y190{bottom:233.610667pt;}
.y181{bottom:240.512000pt;}
.y117{bottom:240.958667pt;}
.y1c6{bottom:241.501333pt;}
.y15c{bottom:244.764000pt;}
.yb2{bottom:245.088000pt;}
.y7d{bottom:247.850667pt;}
.y48{bottom:248.696000pt;}
.y18f{bottom:249.232000pt;}
.y116{bottom:255.570667pt;}
.y1c5{bottom:256.844000pt;}
.y180{bottom:257.249333pt;}
.y15b{bottom:261.501333pt;}
.yb1{bottom:261.825333pt;}
.ye6{bottom:262.534667pt;}
.y7c{bottom:264.588000pt;}
.y18e{bottom:264.853333pt;}
.y1c4{bottom:272.186667pt;}
.y1b{bottom:273.154667pt;}
.y17f{bottom:273.986667pt;}
.y115{bottom:276.585333pt;}
.y15a{bottom:278.238667pt;}
.yb0{bottom:278.562667pt;}
.ye5{bottom:279.272000pt;}
.y18d{bottom:280.476000pt;}
.y7b{bottom:281.325333pt;}
.y47{bottom:281.932000pt;}
.y1c3{bottom:287.529333pt;}
.y1a{bottom:289.054667pt;}
.y17e{bottom:290.724000pt;}
.y113{bottom:291.196000pt;}
.y159{bottom:294.976000pt;}
.yaf{bottom:295.300000pt;}
.ye4{bottom:296.009333pt;}
.y7a{bottom:298.062667pt;}
.y46{bottom:299.226667pt;}
.y1c2{bottom:302.870667pt;}
.y19{bottom:304.954667pt;}
.y114{bottom:305.808000pt;}
.y17d{bottom:307.461333pt;}
.y158{bottom:311.712000pt;}
.yae{bottom:312.037333pt;}
.ye3{bottom:312.746667pt;}
.y79{bottom:314.800000pt;}
.y45{bottom:316.522667pt;}
.y1c1{bottom:318.213333pt;}
.y18{bottom:320.856000pt;}
.y17b{bottom:324.198667pt;}
.y157{bottom:328.449333pt;}
.yad{bottom:328.774667pt;}
.y17c{bottom:329.021333pt;}
.ye2{bottom:329.484000pt;}
.y78{bottom:331.537333pt;}
.y1c0{bottom:333.556000pt;}
.y44{bottom:333.817333pt;}
.y112{bottom:333.914667pt;}
.y17a{bottom:340.936000pt;}
.y156{bottom:345.186667pt;}
.yac{bottom:345.512000pt;}
.ye1{bottom:346.221333pt;}
.y140{bottom:346.725733pt;}
.y77{bottom:348.274667pt;}
.y1bf{bottom:348.898667pt;}
.y111{bottom:351.010667pt;}
.y43{bottom:351.113333pt;}
.y17{bottom:354.688000pt;}
.y179{bottom:357.673333pt;}
.y13f{bottom:362.085733pt;}
.yab{bottom:362.249333pt;}
.ye0{bottom:362.958667pt;}
.y1be{bottom:364.241333pt;}
.y76{bottom:365.012000pt;}
.y42{bottom:368.408000pt;}
.y16{bottom:370.589333pt;}
.y178{bottom:374.410667pt;}
.y155{bottom:375.024000pt;}
.yaa{bottom:378.986667pt;}
.y13e{bottom:379.445965pt;}
.y1bd{bottom:379.584000pt;}
.ydf{bottom:379.696000pt;}
.y75{bottom:381.749333pt;}
.y110{bottom:383.992000pt;}
.y41{bottom:385.702667pt;}
.y15{bottom:386.489333pt;}
.y177{bottom:391.148000pt;}
.y154{bottom:392.118667pt;}
.y1bc{bottom:394.926667pt;}
.ya9{bottom:395.724000pt;}
.yde{bottom:396.433333pt;}
.y13d{bottom:397.365805pt;}
.y74{bottom:398.486667pt;}
.y10f{bottom:400.729333pt;}
.y40{bottom:402.998667pt;}
.y176{bottom:407.885333pt;}
.y1bb{bottom:410.269333pt;}
.y12d{bottom:412.056000pt;}
.ya8{bottom:412.461333pt;}
.ydd{bottom:413.170667pt;}
.y73{bottom:415.224000pt;}
.y13c{bottom:415.365805pt;}
.y10e{bottom:417.466667pt;}
.y14{bottom:418.330667pt;}
.y3f{bottom:420.293333pt;}
.y175{bottom:424.622667pt;}
.y1ba{bottom:425.612000pt;}
.ya7{bottom:429.198667pt;}
.ydc{bottom:429.908000pt;}
.y72{bottom:431.961333pt;}
.y13b{bottom:433.365805pt;}
.y10d{bottom:434.204000pt;}
.y13{bottom:434.230667pt;}
.y3e{bottom:437.588000pt;}
.y1b9{bottom:440.953333pt;}
.y174{bottom:441.360000pt;}
.ya6{bottom:445.934667pt;}
.ydb{bottom:446.645333pt;}
.y71{bottom:448.698667pt;}
.y10c{bottom:450.941333pt;}
.y13a{bottom:451.365805pt;}
.yc2{bottom:453.053269pt;}
.y3d{bottom:454.884000pt;}
.y1b8{bottom:456.296000pt;}
.y173{bottom:458.097333pt;}
.ye9{bottom:459.068920pt;}
.ya5{bottom:462.672000pt;}
.yda{bottom:463.382667pt;}
.y70{bottom:465.436000pt;}
.y12{bottom:466.070667pt;}
.y10b{bottom:467.678667pt;}
.ye8{bottom:467.788400pt;}
.y139{bottom:469.365733pt;}
.yc1{bottom:470.172773pt;}
.y1b7{bottom:471.638667pt;}
.y3c{bottom:472.178667pt;}
.y172{bottom:478.820000pt;}
.ya4{bottom:479.409333pt;}
.yd9{bottom:480.120000pt;}
.y11{bottom:481.972000pt;}
.y6f{bottom:482.173333pt;}
.y1b6{bottom:486.981333pt;}
.yc0{bottom:487.213453pt;}
.y138{bottom:487.365733pt;}
.y3b{bottom:489.474667pt;}
.ya3{bottom:496.146667pt;}
.y10a{bottom:497.514667pt;}
.y10{bottom:497.872000pt;}
.y6e{bottom:498.910667pt;}
.y1b5{bottom:502.324000pt;}
.y135{bottom:506.085733pt;}
.y3a{bottom:506.769333pt;}
.ybf{bottom:508.413101pt;}
.y171{bottom:508.708000pt;}
.y136{bottom:509.445733pt;}
.yd8{bottom:509.956000pt;}
.ya2{bottom:512.884000pt;}
.yf{bottom:513.772000pt;}
.y109{bottom:514.610667pt;}
.y6d{bottom:515.648000pt;}
.y1b4{bottom:517.666667pt;}
.y39{bottom:524.064000pt;}
.y137{bottom:524.085661pt;}
.y133{bottom:524.085733pt;}
.y170{bottom:525.444000pt;}
.yd7{bottom:527.052000pt;}
.ya1{bottom:529.621333pt;}
.ye{bottom:529.673333pt;}
.y108{bottom:531.706667pt;}
.y6c{bottom:532.384000pt;}
.y1b3{bottom:533.009333pt;}
.y38{bottom:541.360000pt;}
.y134{bottom:542.085733pt;}
.y16f{bottom:542.181333pt;}
.yd6{bottom:544.148000pt;}
.yd{bottom:545.573333pt;}
.ya0{bottom:546.358667pt;}
.y1b2{bottom:548.352000pt;}
.y107{bottom:548.802667pt;}
.y6b{bottom:549.121333pt;}
.ybd{bottom:556.814253pt;}
.y37{bottom:558.654667pt;}
.yc{bottom:561.473333pt;}
.y9f{bottom:563.096000pt;}
.y1b1{bottom:563.694667pt;}
.ybb{bottom:564.085333pt;}
.y16e{bottom:564.572000pt;}
.ybc{bottom:565.533733pt;}
.y6a{bottom:565.858667pt;}
.y132{bottom:568.725333pt;}
.ye7{bottom:568.740000pt;}
.y36{bottom:575.949333pt;}
.y16d{bottom:577.192000pt;}
.yb{bottom:577.374667pt;}
.y1b0{bottom:579.036000pt;}
.y9e{bottom:579.833333pt;}
.y69{bottom:582.596000pt;}
.y131{bottom:584.165733pt;}
.y16c{bottom:589.810667pt;}
.y35{bottom:593.245333pt;}
.ya{bottom:593.274667pt;}
.y1af{bottom:594.378667pt;}
.y9d{bottom:596.570667pt;}
.y68{bottom:599.333333pt;}
.y16b{bottom:606.561333pt;}
.y9{bottom:609.174667pt;}
.y1ae{bottom:609.721333pt;}
.y9c{bottom:613.308000pt;}
.y67{bottom:616.070667pt;}
.y16a{bottom:621.173333pt;}
.y1ad{bottom:625.064000pt;}
.y34{bottom:627.542667pt;}
.y6{bottom:629.060048pt;}
.y9b{bottom:630.045333pt;}
.y12f{bottom:631.286253pt;}
.y66{bottom:632.808000pt;}
.y169{bottom:635.785333pt;}
.y12e{bottom:640.005733pt;}
.y1ac{bottom:640.406667pt;}
.y33{bottom:645.746667pt;}
.y18c{bottom:646.782667pt;}
.y65{bottom:649.545333pt;}
.y168{bottom:650.397333pt;}
.y9a{bottom:650.768000pt;}
.y1ab{bottom:655.749333pt;}
.y32{bottom:656.236000pt;}
.y167{bottom:665.009333pt;}
.y64{bottom:666.282667pt;}
.y18b{bottom:667.505333pt;}
.y1aa{bottom:671.092000pt;}
.y31{bottom:674.440000pt;}
.y166{bottom:679.620000pt;}
.y99{bottom:680.656000pt;}
.y63{bottom:683.020000pt;}
.y30{bottom:684.928000pt;}
.y1a9{bottom:686.434667pt;}
.y165{bottom:694.232000pt;}
.y98{bottom:697.393333pt;}
.y2f{bottom:699.274667pt;}
.y62{bottom:699.757333pt;}
.y1a8{bottom:701.776000pt;}
.y2e{bottom:703.132000pt;}
.y2d{bottom:713.621333pt;}
.y97{bottom:714.130667pt;}
.y164{bottom:715.246667pt;}
.y61{bottom:716.494667pt;}
.y1a7{bottom:717.118667pt;}
.y2c{bottom:727.966667pt;}
.y96{bottom:730.868000pt;}
.y2b{bottom:731.824000pt;}
.y1a6{bottom:732.461333pt;}
.y60{bottom:733.232000pt;}
.y163{bottom:743.352000pt;}
.y2a{bottom:746.170667pt;}
.y95{bottom:747.605333pt;}
.y1a5{bottom:747.804000pt;}
.y5f{bottom:749.969333pt;}
.y29{bottom:756.660000pt;}
.y162{bottom:760.448000pt;}
.y1a4{bottom:763.146667pt;}
.y94{bottom:764.342667pt;}
.y5e{bottom:766.706667pt;}
.y12c{bottom:770.762667pt;}
.y28{bottom:774.864000pt;}
.y1a3{bottom:778.489333pt;}
.y93{bottom:781.080000pt;}
.y12b{bottom:783.382667pt;}
.y5d{bottom:783.444000pt;}
.y27{bottom:785.352000pt;}
.y161{bottom:787.368000pt;}
.y1a2{bottom:793.832000pt;}
.y92{bottom:797.817333pt;}
.y26{bottom:799.698667pt;}
.y160{bottom:799.986667pt;}
.y12a{bottom:800.132000pt;}
.y5c{bottom:800.181333pt;}
.y1a1{bottom:809.174667pt;}
.y15f{bottom:812.606667pt;}
.y25{bottom:814.045333pt;}
.y91{bottom:814.554667pt;}
.y129{bottom:814.744000pt;}
.y5b{bottom:816.918667pt;}
.y1a0{bottom:824.517333pt;}
.y128{bottom:829.356000pt;}
.y90{bottom:831.290667pt;}
.y24{bottom:832.248000pt;}
.y5a{bottom:833.656000pt;}
.y19f{bottom:839.858667pt;}
.y127{bottom:843.968000pt;}
.y8f{bottom:848.028000pt;}
.y59{bottom:850.393333pt;}
.y19e{bottom:855.201333pt;}
.y126{bottom:858.580000pt;}
.y8e{bottom:864.765333pt;}
.y58{bottom:867.130667pt;}
.y5{bottom:867.976000pt;}
.y19d{bottom:870.544000pt;}
.y125{bottom:873.192000pt;}
.y8d{bottom:881.502667pt;}
.y57{bottom:883.868000pt;}
.y4{bottom:884.713333pt;}
.y19c{bottom:885.886667pt;}
.y124{bottom:887.804000pt;}
.y8c{bottom:898.240000pt;}
.y56{bottom:900.605333pt;}
.y19b{bottom:901.229333pt;}
.y15e{bottom:902.416000pt;}
.y123{bottom:908.817333pt;}
.y8b{bottom:914.977333pt;}
.y19a{bottom:916.572000pt;}
.y15d{bottom:917.026667pt;}
.y55{bottom:917.342667pt;}
.y121{bottom:923.429333pt;}
.y3{bottom:925.510667pt;}
.y8a{bottom:931.714667pt;}
.y199{bottom:931.914667pt;}
.y54{bottom:934.080000pt;}
.y122{bottom:938.041333pt;}
.y198{bottom:947.257333pt;}
.y89{bottom:948.452000pt;}
.y2{bottom:950.616000pt;}
.y53{bottom:950.817333pt;}
.y197{bottom:962.598667pt;}
.y88{bottom:965.189333pt;}
.y120{bottom:966.148000pt;}
.y52{bottom:967.554667pt;}
.y1{bottom:975.722667pt;}
.y87{bottom:981.926667pt;}
.y11f{bottom:983.242667pt;}
.y51{bottom:984.290667pt;}
.y50{bottom:1043.030667pt;}
.h1d{height:21.747765pt;}
.h5{height:22.673858pt;}
.ha{height:23.209028pt;}
.h20{height:23.562500pt;}
.h8{height:27.076941pt;}
.h13{height:27.184641pt;}
.h22{height:27.226250pt;}
.h9{height:27.262909pt;}
.h25{height:29.397999pt;}
.h7{height:29.433775pt;}
.h6{height:30.399505pt;}
.hb{height:30.945242pt;}
.h10{height:31.157778pt;}
.hc{height:34.574438pt;}
.hd{height:34.813542pt;}
.h26{height:35.052646pt;}
.he{height:38.415786pt;}
.hf{height:38.681455pt;}
.h2{height:38.947124pt;}
.h17{height:39.349375pt;}
.h15{height:39.359687pt;}
.h23{height:41.462969pt;}
.h21{height:41.463257pt;}
.h1c{height:43.660390pt;}
.h1b{height:44.245639pt;}
.h1e{height:44.250973pt;}
.h18{height:44.390625pt;}
.h24{height:44.431607pt;}
.h4{height:48.481423pt;}
.h11{height:48.511220pt;}
.h12{height:48.688666pt;}
.h16{height:49.421563pt;}
.h3{height:69.148877pt;}
.h1a{height:77.623502pt;}
.h1f{height:330.472000pt;}
.h19{height:426.472000pt;}
.h14{height:431.126667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w4{width:513.744000pt;}
.w3{width:528.872000pt;}
.w5{width:695.270800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x27{left:-173.090667pt;}
.x1a{left:-77.090667pt;}
.x1e{left:-48.770667pt;}
.x0{left:0.000000pt;}
.x47{left:3.200133pt;}
.x2f{left:19.949333pt;}
.x30{left:22.669333pt;}
.x2e{left:24.189333pt;}
.x2{left:26.021437pt;}
.x29{left:29.069333pt;}
.x57{left:31.520133pt;}
.x1{left:47.521333pt;}
.x46{left:49.215867pt;}
.x1f{left:76.346667pt;}
.x1b{left:96.748365pt;}
.x2a{left:107.069333pt;}
.x2b{left:118.669333pt;}
.x1c{left:125.068271pt;}
.x20{left:127.277333pt;}
.x19{left:132.414667pt;}
.x26{left:139.978667pt;}
.x31{left:166.158667pt;}
.x35{left:173.869333pt;}
.x48{left:177.040133pt;}
.x36{left:183.828000pt;}
.x5c{left:188.240133pt;}
.x5b{left:192.480133pt;}
.x5a{left:193.760133pt;}
.x53{left:195.042629pt;}
.x54{left:197.761540pt;}
.x52{left:199.280133pt;}
.x49{left:200.480133pt;}
.x55{left:203.761891pt;}
.x2c{left:205.309333pt;}
.x2d{left:218.669333pt;}
.x5{left:222.073333pt;}
.x3{left:223.020000pt;}
.x5e{left:231.410667pt;}
.x5d{left:232.462667pt;}
.x3f{left:235.912000pt;}
.x40{left:238.368000pt;}
.x3e{left:239.708000pt;}
.x4{left:240.670667pt;}
.x41{left:243.700000pt;}
.x8{left:251.365333pt;}
.x22{left:256.368000pt;}
.x23{left:264.341333pt;}
.x9{left:268.874667pt;}
.x37{left:270.773333pt;}
.x34{left:272.448000pt;}
.x6{left:275.774667pt;}
.x4a{left:282.400133pt;}
.x7{left:285.506667pt;}
.x5f{left:290.705333pt;}
.x4c{left:294.000133pt;}
.x4b{left:299.840133pt;}
.x38{left:305.658667pt;}
.x39{left:311.958667pt;}
.x12{left:317.952000pt;}
.x13{left:331.234667pt;}
.x4d{left:345.360133pt;}
.x68{left:348.285333pt;}
.x4e{left:349.360133pt;}
.x64{left:351.350667pt;}
.xc{left:355.350667pt;}
.x65{left:357.061333pt;}
.xd{left:366.276000pt;}
.x4f{left:394.240133pt;}
.x50{left:396.880133pt;}
.x44{left:398.837333pt;}
.x45{left:401.401333pt;}
.x3b{left:405.053333pt;}
.x3a{left:406.093333pt;}
.x3c{left:409.297333pt;}
.x10{left:430.541333pt;}
.x42{left:435.924000pt;}
.x11{left:441.466667pt;}
.x43{left:444.665333pt;}
.x66{left:457.312000pt;}
.x62{left:467.484000pt;}
.x67{left:470.596000pt;}
.x63{left:480.766667pt;}
.x51{left:491.200236pt;}
.x3d{left:497.402667pt;}
.x28{left:512.748941pt;}
.x32{left:513.798667pt;}
.x60{left:514.756000pt;}
.x33{left:521.772000pt;}
.x61{left:523.496000pt;}
.x24{left:542.345333pt;}
.x1d{left:547.306773pt;}
.x25{left:550.977333pt;}
.x72{left:588.970667pt;}
.xe{left:608.505333pt;}
.x73{left:612.881333pt;}
.xf{left:621.789333pt;}
.x21{left:630.693333pt;}
.x6c{left:652.272000pt;}
.x58{left:655.040000pt;}
.x59{left:658.800133pt;}
.x70{left:659.965333pt;}
.xa{left:662.825333pt;}
.x14{left:668.481333pt;}
.x6d{left:676.181333pt;}
.x18{left:677.610667pt;}
.x6e{left:678.540000pt;}
.x15{left:681.764000pt;}
.x71{left:683.876000pt;}
.x6f{left:696.841333pt;}
.x56{left:700.880000pt;}
.x69{left:701.841333pt;}
.x6b{left:720.236000pt;}
.x6a{left:725.750667pt;}
.x16{left:727.129333pt;}
.x17{left:740.412000pt;}
.xb{left:744.106667pt;}
}




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