
    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_229c5e6166f917b1f5af4244.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e0ffa4f7e6aaac9ebc940c6a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d0e41d49db475d62854336c1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_94f9ca8ec5590a92b1dd180b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.638000;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_13216cbc7a2c435183332505.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747000;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_43ea70cc2ebe294f8f0d8bd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.626000;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_5a145f2054226b0fcbb9798a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;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_fb75ea5dfaf64b109f00936f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_76c358319741d9db378fe9ab.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_55427e7ada0b877467d54842.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3c47e467486d1a58d752c5ce.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_03cd277b9ff5b61ea7070735.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7313d4531d29438c65f9a61a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_f46088227fed46119976dcda.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.015137;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_b9c941fa7404b708163b603a.woff2')format("woff");}.fff{font-family:fff;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;}
.m6{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);}
.m25{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);}
.m15{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);}
.m2c{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);}
.m1c{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m9{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);}
.mf{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);}
.m29{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);}
.m12{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);}
.m19{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);}
.md{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);}
.m1d{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);}
.m24{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.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);}
.m22{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);}
.m26{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);}
.m28{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.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);}
.m2a{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);}
.m10{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);}
.m1e{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);}
.m3{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m18{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);}
.m16{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);}
.m11{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);}
.m17{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);}
.m5{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);}
.m13{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);}
.m2b{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);}
.m1a{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);}
.m7{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);}
.m23{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);}
.ma{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);}
.m21{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);}
.m1{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);}
.mb{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;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:39.246000px;}
.ls4e{letter-spacing:-0.429858px;}
.ls51{letter-spacing:-0.310820px;}
.ls4c{letter-spacing:-0.158717px;}
.ls46{letter-spacing:-0.152104px;}
.ls48{letter-spacing:-0.145490px;}
.ls45{letter-spacing:-0.132264px;}
.ls49{letter-spacing:-0.125651px;}
.ls4b{letter-spacing:-0.119038px;}
.ls57{letter-spacing:-0.072745px;}
.ls59{letter-spacing:-0.066132px;}
.ls4a{letter-spacing:-0.046292px;}
.ls4f{letter-spacing:-0.039679px;}
.ls4d{letter-spacing:-0.033066px;}
.ls53{letter-spacing:-0.026453px;}
.ls56{letter-spacing:-0.013226px;}
.ls58{letter-spacing:-0.006613px;}
.ls44{letter-spacing:-0.005267px;}
.ls9{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000608px;}
.ls68{letter-spacing:0.000699px;}
.ls1f{letter-spacing:0.000800px;}
.ls5a{letter-spacing:0.001133px;}
.ls6f{letter-spacing:0.001899px;}
.ls24{letter-spacing:0.002259px;}
.ls3{letter-spacing:0.002725px;}
.ls22{letter-spacing:0.002841px;}
.ls21{letter-spacing:0.003034px;}
.ls5d{letter-spacing:0.003040px;}
.lsd{letter-spacing:0.003389px;}
.ls5e{letter-spacing:0.004315px;}
.ls20{letter-spacing:0.004800px;}
.ls23{letter-spacing:0.005075px;}
.ls3c{letter-spacing:0.005940px;}
.ls2c{letter-spacing:0.006613px;}
.ls3a{letter-spacing:0.011880px;}
.ls33{letter-spacing:0.013226px;}
.ls3f{letter-spacing:0.017820px;}
.ls2f{letter-spacing:0.019840px;}
.ls30{letter-spacing:0.026453px;}
.ls39{letter-spacing:0.029700px;}
.ls41{letter-spacing:0.033066px;}
.ls3e{letter-spacing:0.035640px;}
.ls40{letter-spacing:0.039679px;}
.ls38{letter-spacing:0.041580px;}
.ls35{letter-spacing:0.052906px;}
.ls29{letter-spacing:0.068468px;}
.ls2e{letter-spacing:0.072745px;}
.ls3d{letter-spacing:0.077220px;}
.ls50{letter-spacing:0.092585px;}
.ls55{letter-spacing:0.095040px;}
.ls54{letter-spacing:0.099198px;}
.ls3b{letter-spacing:0.112860px;}
.ls32{letter-spacing:0.132264px;}
.ls52{letter-spacing:0.152104px;}
.ls2d{letter-spacing:0.185170px;}
.ls2b{letter-spacing:0.194872px;}
.ls2a{letter-spacing:0.210672px;}
.ls31{letter-spacing:0.211622px;}
.ls34{letter-spacing:0.899395px;}
.ls36{letter-spacing:2.083158px;}
.ls2{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls37{letter-spacing:9.615593px;}
.ls0{letter-spacing:10.461300px;}
.ls8{letter-spacing:11.954850px;}
.ls6a{letter-spacing:13.054482px;}
.ls62{letter-spacing:13.179812px;}
.ls63{letter-spacing:13.235549px;}
.ls6c{letter-spacing:13.283602px;}
.ls70{letter-spacing:13.395022px;}
.ls65{letter-spacing:13.410101px;}
.ls64{letter-spacing:13.436628px;}
.ls5c{letter-spacing:13.448400px;}
.ls43{letter-spacing:13.450800px;}
.ls61{letter-spacing:13.454400px;}
.ls73{letter-spacing:13.472244px;}
.ls6e{letter-spacing:13.475475px;}
.ls67{letter-spacing:13.553433px;}
.ls6d{letter-spacing:13.605502px;}
.ls60{letter-spacing:13.688015px;}
.ls71{letter-spacing:13.715034px;}
.ls25{letter-spacing:13.723249px;}
.ls66{letter-spacing:13.903341px;}
.ls42{letter-spacing:14.094088px;}
.ls5f{letter-spacing:14.291576px;}
.lsa{letter-spacing:14.373462px;}
.lsb{letter-spacing:14.572766px;}
.ls17{letter-spacing:14.594011px;}
.ls6b{letter-spacing:14.626871px;}
.ls1e{letter-spacing:14.740153px;}
.ls1c{letter-spacing:14.752438px;}
.ls10{letter-spacing:14.818082px;}
.ls27{letter-spacing:14.831324px;}
.ls14{letter-spacing:14.843810px;}
.ls13{letter-spacing:14.847352px;}
.lse{letter-spacing:14.944200px;}
.ls28{letter-spacing:14.953041px;}
.ls11{letter-spacing:15.127428px;}
.ls18{letter-spacing:15.169951px;}
.ls19{letter-spacing:15.176030px;}
.ls12{letter-spacing:15.663483px;}
.ls69{letter-spacing:16.044518px;}
.ls1a{letter-spacing:16.265141px;}
.lsf{letter-spacing:19.364766px;}
.ls16{letter-spacing:19.447494px;}
.ls15{letter-spacing:19.629847px;}
.ls1b{letter-spacing:20.100435px;}
.ls72{letter-spacing:20.820988px;}
.ls1d{letter-spacing:21.465141px;}
.ls1{letter-spacing:57.415200px;}
.ls6{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls5{letter-spacing:72.361200px;}
.ls47{letter-spacing:185.110081px;}
.ls26{letter-spacing:289.006090px;}
.ls5b{letter-spacing:346.158150px;}
.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;}
}
.wsd0{word-spacing:-402.216150px;}
.ws8c{word-spacing:-16.546226px;}
.ws8d{word-spacing:-16.533000px;}
.ws8e{word-spacing:-16.466868px;}
.wsd{word-spacing:-14.943900px;}
.ws1d{word-spacing:-13.449600px;}
.ws89{word-spacing:-13.377672px;}
.ws8a{word-spacing:-13.167000px;}
.ws12{word-spacing:-11.955150px;}
.ws11{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws6d{word-spacing:-3.287658px;}
.ws31{word-spacing:-2.988780px;}
.ws121{word-spacing:-2.905114px;}
.ws40{word-spacing:-2.869229px;}
.ws41{word-spacing:-2.809453px;}
.ws58{word-spacing:-2.689902px;}
.wsdd{word-spacing:-2.630126px;}
.ws88{word-spacing:-2.391024px;}
.ws32{word-spacing:-2.331248px;}
.wsf9{word-spacing:-2.313331px;}
.wsda{word-spacing:-2.271473px;}
.wsfa{word-spacing:-2.259533px;}
.wsb3{word-spacing:-2.185920px;}
.wsb4{word-spacing:-2.179980px;}
.ws55{word-spacing:-2.032370px;}
.ws54{word-spacing:-1.972595px;}
.ws74{word-spacing:-1.853044px;}
.ws75{word-spacing:-1.793268px;}
.wsea{word-spacing:-1.673717px;}
.wsdb{word-spacing:-1.554166px;}
.wsbc{word-spacing:-1.521036px;}
.wsf3{word-spacing:-1.452557px;}
.wsdc{word-spacing:-1.434614px;}
.ws80{word-spacing:-1.344960px;}
.wsf8{word-spacing:-1.291162px;}
.wse5{word-spacing:-1.255288px;}
.ws77{word-spacing:-1.195512px;}
.ws108{word-spacing:-1.183565px;}
.ws9f{word-spacing:-1.111018px;}
.ws1b{word-spacing:-1.075968px;}
.ws1c{word-spacing:-1.022170px;}
.ws1e{word-spacing:-0.968371px;}
.ws9e{word-spacing:-0.952301px;}
.ws22{word-spacing:-0.914573px;}
.wse6{word-spacing:-0.896634px;}
.wsf7{word-spacing:-0.860774px;}
.wsc8{word-spacing:-0.836858px;}
.ws5e{word-spacing:-0.717307px;}
.ws7d{word-spacing:-0.657532px;}
.wsc0{word-spacing:-0.615028px;}
.ws45{word-spacing:-0.597756px;}
.ws118{word-spacing:-0.591782px;}
.ws47{word-spacing:-0.537980px;}
.ws30{word-spacing:-0.478205px;}
.ws9b{word-spacing:-0.476150px;}
.ws4a{word-spacing:-0.418429px;}
.ws11a{word-spacing:-0.376589px;}
.ws48{word-spacing:-0.358654px;}
.ws1a{word-spacing:-0.322790px;}
.wsba{word-spacing:-0.310820px;}
.ws92{word-spacing:-0.305474px;}
.ws37{word-spacing:-0.298878px;}
.ws97{word-spacing:-0.297594px;}
.ws1f{word-spacing:-0.268992px;}
.wsc7{word-spacing:-0.264528px;}
.wsbb{word-spacing:-0.251302px;}
.ws46{word-spacing:-0.239102px;}
.ws78{word-spacing:-0.215194px;}
.ws34{word-spacing:-0.179327px;}
.wsbf{word-spacing:-0.171943px;}
.ws18{word-spacing:-0.161395px;}
.ws98{word-spacing:-0.158717px;}
.ws3b{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.107597px;}
.ws93{word-spacing:-0.089536px;}
.ws8b{word-spacing:-0.066132px;}
.wse{word-spacing:-0.059776px;}
.ws15{word-spacing:-0.053798px;}
.ws27{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.wscb{word-spacing:-0.008141px;}
.ws11b{word-spacing:-0.006662px;}
.wsb{word-spacing:-0.001766px;}
.wsc{word-spacing:-0.000140px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.000984px;}
.wsaf{word-spacing:0.006613px;}
.wsa6{word-spacing:0.033066px;}
.ws20{word-spacing:0.053798px;}
.ws2c{word-spacing:0.059776px;}
.ws9c{word-spacing:0.085972px;}
.wsb8{word-spacing:0.106920px;}
.ws23{word-spacing:0.107597px;}
.ws2d{word-spacing:0.119551px;}
.wsae{word-spacing:0.132264px;}
.wsb7{word-spacing:0.160380px;}
.ws29{word-spacing:0.161395px;}
.ws4f{word-spacing:0.179327px;}
.wsb9{word-spacing:0.184140px;}
.ws21{word-spacing:0.215194px;}
.ws9a{word-spacing:0.231462px;}
.ws95{word-spacing:0.238075px;}
.ws50{word-spacing:0.239102px;}
.ws79{word-spacing:0.268992px;}
.ws36{word-spacing:0.298878px;}
.ws24{word-spacing:0.322790px;}
.ws43{word-spacing:0.358654px;}
.ws3f{word-spacing:0.418429px;}
.ws8f{word-spacing:0.430387px;}
.ws16{word-spacing:0.537984px;}
.wsfc{word-spacing:0.591782px;}
.ws66{word-spacing:0.597756px;}
.wsa2{word-spacing:0.621641px;}
.wsa3{word-spacing:0.661320px;}
.ws101{word-spacing:0.699379px;}
.ws69{word-spacing:0.717307px;}
.ws65{word-spacing:0.746700px;}
.wsf4{word-spacing:0.753178px;}
.ws51{word-spacing:0.777083px;}
.ws11f{word-spacing:0.806976px;}
.ws7f{word-spacing:0.860774px;}
.wse3{word-spacing:0.896634px;}
.ws11d{word-spacing:0.914573px;}
.wsa7{word-spacing:0.932461px;}
.ws2e{word-spacing:0.956410px;}
.wsc9{word-spacing:0.968371px;}
.ws3d{word-spacing:1.016185px;}
.ws35{word-spacing:1.075961px;}
.wsca{word-spacing:1.129766px;}
.ws6a{word-spacing:1.135736px;}
.ws28{word-spacing:1.183565px;}
.wsde{word-spacing:1.195512px;}
.wsa9{word-spacing:1.203602px;}
.wsaa{word-spacing:1.210216px;}
.ws116{word-spacing:1.237363px;}
.wsf5{word-spacing:1.291162px;}
.ws6e{word-spacing:1.315063px;}
.wsa8{word-spacing:1.335866px;}
.wsa{word-spacing:1.380812px;}
.wsff{word-spacing:1.398758px;}
.ws53{word-spacing:1.434614px;}
.wse8{word-spacing:1.613941px;}
.ws17{word-spacing:1.613952px;}
.wsa5{word-spacing:1.620234px;}
.wseb{word-spacing:1.673717px;}
.wsc5{word-spacing:1.692979px;}
.ws81{word-spacing:1.775347px;}
.ws6c{word-spacing:1.793268px;}
.ws10b{word-spacing:1.829146px;}
.ws129{word-spacing:1.936742px;}
.wsd9{word-spacing:2.032370px;}
.ws114{word-spacing:2.044339px;}
.wse4{word-spacing:2.092146px;}
.wsa4{word-spacing:2.116224px;}
.ws3a{word-spacing:2.151922px;}
.ws7a{word-spacing:2.205734px;}
.ws64{word-spacing:2.211697px;}
.wsc6{word-spacing:2.228648px;}
.ws62{word-spacing:2.271473px;}
.wsad{word-spacing:2.327846px;}
.ws61{word-spacing:2.331248px;}
.ws12b{word-spacing:2.367130px;}
.wsac{word-spacing:2.407205px;}
.ws82{word-spacing:2.420928px;}
.wsab{word-spacing:2.427044px;}
.ws0{word-spacing:2.511541px;}
.ws7b{word-spacing:2.582323px;}
.ws5c{word-spacing:2.630126px;}
.ws42{word-spacing:2.689902px;}
.wscd{word-spacing:2.689920px;}
.ws123{word-spacing:2.743718px;}
.ws2f{word-spacing:2.749678px;}
.wse0{word-spacing:2.809453px;}
.ws76{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.ws63{word-spacing:2.929004px;}
.wsb0{word-spacing:2.934360px;}
.wsb1{word-spacing:2.946240px;}
.ws19{word-spacing:2.958912px;}
.wsb2{word-spacing:2.964060px;}
.ws68{word-spacing:3.048556px;}
.ws59{word-spacing:3.108331px;}
.wse9{word-spacing:3.168107px;}
.ws103{word-spacing:3.217978px;}
.ws2a{word-spacing:3.219667px;}
.ws110{word-spacing:3.220454px;}
.ws12e{word-spacing:3.223507px;}
.ws38{word-spacing:3.227882px;}
.wsf1{word-spacing:3.227904px;}
.wsa0{word-spacing:3.319826px;}
.ws72{word-spacing:3.347434px;}
.wsa1{word-spacing:3.419024px;}
.wsf6{word-spacing:3.483285px;}
.ws138{word-spacing:3.496896px;}
.wsed{word-spacing:3.526760px;}
.wsf2{word-spacing:3.550694px;}
.ws2b{word-spacing:3.586536px;}
.wsee{word-spacing:3.646312px;}
.ws25{word-spacing:3.658291px;}
.ws39{word-spacing:3.706087px;}
.ws3c{word-spacing:3.765863px;}
.ws120{word-spacing:3.765888px;}
.ws6f{word-spacing:3.825638px;}
.ws4d{word-spacing:3.885414px;}
.wse7{word-spacing:4.004965px;}
.ws56{word-spacing:4.124516px;}
.ws134{word-spacing:4.142477px;}
.wsd7{word-spacing:4.184292px;}
.wse2{word-spacing:4.244068px;}
.wsdf{word-spacing:4.303843px;}
.ws49{word-spacing:4.423394px;}
.ws52{word-spacing:4.483170px;}
.ws4c{word-spacing:4.542946px;}
.ws5d{word-spacing:4.602721px;}
.ws67{word-spacing:4.662497px;}
.ws7c{word-spacing:4.680461px;}
.wsb5{word-spacing:4.882680px;}
.ws57{word-spacing:4.901599px;}
.wsb6{word-spacing:4.924260px;}
.ws33{word-spacing:4.961375px;}
.ws130{word-spacing:5.003251px;}
.ws7e{word-spacing:5.021150px;}
.ws5b{word-spacing:5.080926px;}
.ws5f{word-spacing:5.140702px;}
.ws91{word-spacing:5.260253px;}
.ws3e{word-spacing:5.320028px;}
.ws104{word-spacing:5.326042px;}
.wsd6{word-spacing:5.379804px;}
.ws8{word-spacing:5.481407px;}
.ws10a{word-spacing:5.487437px;}
.wsec{word-spacing:5.559131px;}
.ws9d{word-spacing:5.654286px;}
.wse1{word-spacing:5.798233px;}
.ws5a{word-spacing:5.858009px;}
.ws131{word-spacing:5.864026px;}
.wsf0{word-spacing:6.025421px;}
.ws90{word-spacing:6.037336px;}
.wscc{word-spacing:6.156887px;}
.wsef{word-spacing:6.336214px;}
.ws73{word-spacing:6.515540px;}
.ws60{word-spacing:6.874194px;}
.ws133{word-spacing:7.370381px;}
.ws71{word-spacing:7.412174px;}
.ws4b{word-spacing:7.531726px;}
.ws87{word-spacing:8.009930px;}
.wsc2{word-spacing:8.392151px;}
.ws70{word-spacing:8.428360px;}
.wsc1{word-spacing:8.458283px;}
.ws10f{word-spacing:8.500147px;}
.wsbe{word-spacing:9.232027px;}
.wsbd{word-spacing:9.655272px;}
.ws6{word-spacing:9.833058px;}
.ws6b{word-spacing:10.221628px;}
.ws2{word-spacing:10.421642px;}
.wsc4{word-spacing:10.779516px;}
.wsc3{word-spacing:10.805969px;}
.ws7{word-spacing:11.841512px;}
.ws26{word-spacing:11.909615px;}
.ws94{word-spacing:12.782524px;}
.ws105{word-spacing:13.100972px;}
.ws125{word-spacing:13.126810px;}
.ws106{word-spacing:13.180608px;}
.ws10e{word-spacing:13.342003px;}
.ws12c{word-spacing:13.386653px;}
.ws137{word-spacing:13.389024px;}
.wsfe{word-spacing:13.391578px;}
.ws11c{word-spacing:13.392336px;}
.ws12f{word-spacing:13.392490px;}
.ws12a{word-spacing:13.392653px;}
.ws10c{word-spacing:13.392979px;}
.wsfb{word-spacing:13.395802px;}
.ws135{word-spacing:13.398272px;}
.ws127{word-spacing:13.415964px;}
.ws112{word-spacing:13.475116px;}
.ws113{word-spacing:13.503398px;}
.ws124{word-spacing:13.546870px;}
.ws102{word-spacing:13.610995px;}
.ws111{word-spacing:13.718592px;}
.wsfd{word-spacing:13.987584px;}
.ws4e{word-spacing:14.884124px;}
.ws115{word-spacing:15.399423px;}
.ws9{word-spacing:16.067635px;}
.ws117{word-spacing:16.408512px;}
.ws128{word-spacing:16.568562px;}
.ws136{word-spacing:16.614787px;}
.ws109{word-spacing:16.615853px;}
.ws126{word-spacing:16.616736px;}
.wsd8{word-spacing:16.617617px;}
.ws100{word-spacing:16.618944px;}
.ws12d{word-spacing:16.619654px;}
.ws122{word-spacing:16.619914px;}
.ws107{word-spacing:16.620499px;}
.ws10d{word-spacing:16.623706px;}
.ws119{word-spacing:16.677504px;}
.ws44{word-spacing:18.470660px;}
.ws132{word-spacing:19.233823px;}
.ws11e{word-spacing:19.744013px;}
.ws5{word-spacing:22.339429px;}
.ws99{word-spacing:36.696647px;}
.ws96{word-spacing:36.703260px;}
.ws10{word-spacing:40.042186px;}
.ws85{word-spacing:166.075661px;}
.ws86{word-spacing:192.974861px;}
.wsce{word-spacing:197.117338px;}
.wsd1{word-spacing:217.229059px;}
.wscf{word-spacing:218.658374px;}
.ws84{word-spacing:227.621030px;}
.wsd2{word-spacing:290.100150px;}
.wsd5{word-spacing:608.548752px;}
.wsd4{word-spacing:611.538374px;}
.wsd3{word-spacing:624.985574px;}
.ws83{word-spacing:820.963584px;}
._4f{margin-left:-346.102092px;}
._3c{margin-left:-36.445345px;}
._6{margin-left:-11.943245px;}
._8{margin-left:-7.029628px;}
._1{margin-left:-5.397721px;}
._0{margin-left:-3.849538px;}
._50{margin-left:-2.576359px;}
._3{margin-left:-1.506341px;}
._36{width:1.027026px;}
._7{width:3.551070px;}
._1c{width:11.082470px;}
._2{width:12.218098px;}
._12{width:13.999441px;}
._b{width:15.668575px;}
._9{width:16.680960px;}
._14{width:17.872904px;}
._a{width:19.134268px;}
._f{width:20.550989px;}
._10{width:21.877870px;}
._18{width:22.906006px;}
._15{width:24.406362px;}
._4{width:25.940136px;}
._c{width:27.168192px;}
._17{width:28.823790px;}
._5{width:31.256572px;}
._16{width:32.338600px;}
._11{width:34.024267px;}
._13{width:35.387164px;}
._3a{width:36.974401px;}
._1b{width:38.615038px;}
._19{width:39.690998px;}
._1a{width:42.034198px;}
._3f{width:45.353326px;}
._47{width:49.017038px;}
._52{width:61.868160px;}
._3e{width:65.878718px;}
._39{width:81.739152px;}
._51{width:88.767360px;}
._46{width:102.449714px;}
._38{width:134.674726px;}
._34{width:152.775599px;}
._21{width:165.268685px;}
._28{width:174.239763px;}
._20{width:179.525261px;}
._25{width:197.870515px;}
._32{width:206.424461px;}
._4e{width:229.988160px;}
._4d{width:231.548314px;}
._23{width:241.070630px;}
._1f{width:242.798203px;}
._43{width:246.804624px;}
._1e{width:273.686170px;}
._1d{width:278.460518px;}
._33{width:296.698176px;}
._40{width:311.896372px;}
._3b{width:348.700810px;}
._35{width:354.262464px;}
._26{width:379.858645px;}
._4b{width:381.409697px;}
._24{width:441.146880px;}
._2a{width:449.916019px;}
._44{width:492.233702px;}
._27{width:530.941163px;}
._2b{width:558.361736px;}
._2e{width:588.016512px;}
._2d{width:623.146867px;}
._2c{width:627.074150px;}
._29{width:666.992563px;}
._2f{width:730.743667px;}
._31{width:733.003200px;}
._30{width:738.544435px;}
._22{width:755.544730px;}
._48{width:805.922762px;}
._45{width:809.072114px;}
._49{width:878.431356px;}
._d{width:885.628375px;}
._3d{width:1022.665248px;}
._4a{width:1027.268690px;}
._41{width:1101.560724px;}
._42{width:1153.064326px;}
._37{width:2354.902150px;}
._4c{width:2527.484700px;}
._e{width:2551.394700px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(42,62,149);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:52.668000px;}
.fs7{font-size:53.798400px;}
.fs8{font-size:56.058000px;}
.fsc{font-size:59.400000px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fsb{font-size:66.132000px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:148.440000px;}
.y148{bottom:-349.545405px;}
.y16b{bottom:-273.112712px;}
.y16a{bottom:-251.927326px;}
.y169{bottom:-230.741940px;}
.y168{bottom:-209.655752px;}
.y167{bottom:-188.470366px;}
.y166{bottom:-167.284979px;}
.y165{bottom:-146.198791px;}
.y164{bottom:-125.013405px;}
.y163{bottom:-84.522900px;}
.y162{bottom:-65.415405px;}
.y161{bottom:-46.407405px;}
.y160{bottom:-27.399405px;}
.y15f{bottom:-2.742841px;}
.y0{bottom:0.000000px;}
.y1b{bottom:16.661091px;}
.y4d{bottom:31.890000px;}
.y19{bottom:104.646000px;}
.y174{bottom:108.151500px;}
.y223{bottom:110.316000px;}
.y7f{bottom:110.619000px;}
.y1b3{bottom:111.519000px;}
.y139{bottom:115.159500px;}
.y4c{bottom:116.980500px;}
.yb1{bottom:118.251000px;}
.y1d6{bottom:119.596500px;}
.y18{bottom:122.535000px;}
.y173{bottom:126.981000px;}
.y222{bottom:127.576500px;}
.y7e{bottom:129.448500px;}
.y1b2{bottom:130.348500px;}
.y258{bottom:133.719000px;}
.y1eb{bottom:135.042000px;}
.y10e{bottom:135.796500px;}
.y4b{bottom:136.437000px;}
.yb0{bottom:137.080500px;}
.y1d5{bottom:138.426000px;}
.y138{bottom:138.801000px;}
.y17{bottom:140.422500px;}
.y221{bottom:144.837000px;}
.y172{bottom:145.810500px;}
.y7d{bottom:148.278000px;}
.y1b1{bottom:149.178000px;}
.y257{bottom:150.978000px;}
.y1ea{bottom:152.616000px;}
.y4a{bottom:155.893500px;}
.yaf{bottom:155.910000px;}
.y1d4{bottom:157.255500px;}
.y16{bottom:158.310000px;}
.y182{bottom:158.796000px;}
.y10d{bottom:159.438000px;}
.y220{bottom:162.097500px;}
.y137{bottom:162.441000px;}
.y171{bottom:164.640000px;}
.y7c{bottom:167.107500px;}
.y1b0{bottom:168.007500px;}
.y256{bottom:168.238500px;}
.y1e9{bottom:170.190000px;}
.yae{bottom:174.739500px;}
.y49{bottom:175.351500px;}
.y1d3{bottom:176.085000px;}
.y15{bottom:176.199000px;}
.y181{bottom:177.625500px;}
.y21f{bottom:179.358000px;}
.y10c{bottom:183.078000px;}
.y170{bottom:183.469500px;}
.y255{bottom:185.499000px;}
.y136{bottom:186.082500px;}
.y1af{bottom:186.837000px;}
.y7b{bottom:190.419000px;}
.yad{bottom:193.569000px;}
.y14{bottom:194.086500px;}
.y48{bottom:194.808000px;}
.y1d2{bottom:194.914500px;}
.y180{bottom:196.455000px;}
.y21e{bottom:196.618500px;}
.y1e8{bottom:196.729500px;}
.y254{bottom:202.759500px;}
.y1ae{bottom:205.666500px;}
.y10b{bottom:206.719500px;}
.y135{bottom:209.722500px;}
.yf8{bottom:210.145500px;}
.y7a{bottom:210.594000px;}
.ycf{bottom:211.501500px;}
.y13{bottom:211.974000px;}
.yac{bottom:212.398500px;}
.y1d1{bottom:213.744000px;}
.y21d{bottom:213.877500px;}
.y47{bottom:214.264500px;}
.y1e7{bottom:214.305000px;}
.y17f{bottom:215.284500px;}
.y16f{bottom:217.035000px;}
.y253{bottom:220.020000px;}
.y1ad{bottom:224.496000px;}
.yf7{bottom:228.975000px;}
.y12{bottom:229.863000px;}
.yce{bottom:230.331000px;}
.y21c{bottom:231.138000px;}
.yab{bottom:231.228000px;}
.y1e6{bottom:231.879000px;}
.y1d0{bottom:232.573500px;}
.y134{bottom:233.364000px;}
.y46{bottom:233.722500px;}
.y17e{bottom:234.114000px;}
.y16e{bottom:236.268000px;}
.y252{bottom:237.280500px;}
.y10a{bottom:241.327500px;}
.y1ac{bottom:243.325500px;}
.y79{bottom:244.218000px;}
.yf6{bottom:247.804500px;}
.y21b{bottom:248.398500px;}
.ycd{bottom:249.160500px;}
.y1e5{bottom:249.453000px;}
.ye7{bottom:249.609000px;}
.yaa{bottom:250.057500px;}
.y1cf{bottom:251.403000px;}
.y17d{bottom:252.943500px;}
.y45{bottom:253.179000px;}
.y251{bottom:254.541000px;}
.y16d{bottom:255.501000px;}
.y133{bottom:257.004000px;}
.y109{bottom:260.560500px;}
.y1ab{bottom:262.155000px;}
.y78{bottom:263.047500px;}
.y21a{bottom:265.659000px;}
.yf5{bottom:266.634000px;}
.y1e4{bottom:267.027000px;}
.ycc{bottom:267.990000px;}
.ye6{bottom:268.438500px;}
.ya9{bottom:268.887000px;}
.y1ce{bottom:270.232500px;}
.y250{bottom:271.801500px;}
.y44{bottom:272.637000px;}
.y16c{bottom:274.734000px;}
.y17c{bottom:276.255000px;}
.y108{bottom:279.793500px;}
.y132{bottom:280.645500px;}
.y1aa{bottom:280.984500px;}
.y77{bottom:281.877000px;}
.y219{bottom:282.919500px;}
.yf4{bottom:285.463500px;}
.ycb{bottom:286.819500px;}
.ye5{bottom:287.268000px;}
.ya8{bottom:287.716500px;}
.y1cd{bottom:289.062000px;}
.y43{bottom:292.093500px;}
.y1e3{bottom:293.566500px;}
.y145{bottom:297.163500px;}
.y11{bottom:297.166500px;}
.y107{bottom:299.026500px;}
.y1a9{bottom:299.814000px;}
.y218{bottom:300.180000px;}
.y76{bottom:300.706500px;}
.y131{bottom:304.285500px;}
.yf3{bottom:304.293000px;}
.yca{bottom:305.649000px;}
.ye4{bottom:306.097500px;}
.y24f{bottom:306.321000px;}
.y17b{bottom:306.682500px;}
.y1cc{bottom:307.891500px;}
.ya7{bottom:311.029500px;}
.y1e2{bottom:311.142000px;}
.y42{bottom:311.550000px;}
.y10{bottom:315.054000px;}
.y217{bottom:317.440500px;}
.y106{bottom:318.258000px;}
.y1a8{bottom:318.643500px;}
.y75{bottom:319.536000px;}
.yf2{bottom:323.122500px;}
.y24e{bottom:323.581500px;}
.yc9{bottom:324.478500px;}
.ye3{bottom:324.927000px;}
.y17a{bottom:325.915500px;}
.y1cb{bottom:326.719500px;}
.y130{bottom:327.927000px;}
.y1e1{bottom:328.716000px;}
.y41{bottom:331.008000px;}
.yf{bottom:332.943000px;}
.y216{bottom:334.701000px;}
.y1a7{bottom:337.473000px;}
.y105{bottom:337.491000px;}
.y74{bottom:338.365500px;}
.y24d{bottom:340.842000px;}
.yf1{bottom:341.952000px;}
.yc8{bottom:343.308000px;}
.ye2{bottom:343.756500px;}
.ya6{bottom:344.653500px;}
.y15e{bottom:345.142892px;}
.y179{bottom:345.148500px;}
.y1ca{bottom:345.549000px;}
.y1e0{bottom:346.290000px;}
.y40{bottom:350.464500px;}
.ye{bottom:350.830500px;}
.y12f{bottom:351.567000px;}
.y215{bottom:351.961500px;}
.y1a6{bottom:356.302500px;}
.y104{bottom:356.724000px;}
.y73{bottom:357.195000px;}
.y24c{bottom:358.102500px;}
.yf0{bottom:360.781500px;}
.yc7{bottom:362.137500px;}
.ye1{bottom:362.586000px;}
.ya5{bottom:363.483000px;}
.y1df{bottom:363.864000px;}
.y1c9{bottom:364.378500px;}
.y178{bottom:364.381500px;}
.y15d{bottom:366.328278px;}
.y214{bottom:369.220500px;}
.y3f{bottom:369.922500px;}
.y1a5{bottom:375.132000px;}
.y12e{bottom:375.208500px;}
.y24b{bottom:375.363000px;}
.y103{bottom:375.957000px;}
.y72{bottom:376.024500px;}
.yd{bottom:379.179000px;}
.yef{bottom:379.611000px;}
.yc6{bottom:380.967000px;}
.ye0{bottom:381.415500px;}
.y1de{bottom:381.438000px;}
.ya4{bottom:382.312500px;}
.y1c8{bottom:383.208000px;}
.y177{bottom:383.614500px;}
.y213{bottom:386.481000px;}
.y15c{bottom:387.414466px;}
.y24a{bottom:392.623500px;}
.y1a4{bottom:393.961500px;}
.y71{bottom:394.854000px;}
.y102{bottom:395.190000px;}
.yc{bottom:397.066500px;}
.y12d{bottom:398.848500px;}
.yc5{bottom:399.796500px;}
.ydf{bottom:400.245000px;}
.ya3{bottom:401.142000px;}
.y1c7{bottom:402.037500px;}
.y176{bottom:402.847500px;}
.yee{bottom:402.922500px;}
.y212{bottom:403.741500px;}
.y3e{bottom:407.311500px;}
.y1dd{bottom:407.979000px;}
.y15b{bottom:408.599852px;}
.y249{bottom:409.884000px;}
.y1a3{bottom:412.791000px;}
.y70{bottom:413.683500px;}
.yc4{bottom:418.626000px;}
.yde{bottom:419.074500px;}
.ya2{bottom:419.971500px;}
.y1c6{bottom:420.867000px;}
.y211{bottom:421.002000px;}
.y175{bottom:422.080500px;}
.y12c{bottom:422.490000px;}
.yb{bottom:423.921000px;}
.y1dc{bottom:426.024000px;}
.y3d{bottom:426.768000px;}
.y248{bottom:427.144500px;}
.y15a{bottom:429.686040px;}
.y101{bottom:430.861500px;}
.y1a2{bottom:431.620500px;}
.y6f{bottom:432.513000px;}
.yed{bottom:433.350000px;}
.yc3{bottom:437.455500px;}
.ydd{bottom:437.904000px;}
.y210{bottom:438.262500px;}
.ya1{bottom:438.801000px;}
.y1c5{bottom:439.696500px;}
.ya{bottom:441.810000px;}
.y1db{bottom:444.067500px;}
.y247{bottom:444.403500px;}
.y12b{bottom:446.130000px;}
.y3c{bottom:446.226000px;}
.y100{bottom:450.094500px;}
.y1a1{bottom:450.450000px;}
.y159{bottom:450.871426px;}
.y6e{bottom:451.342500px;}
.yec{bottom:452.583000px;}
.y20f{bottom:455.523000px;}
.yc2{bottom:456.285000px;}
.ydc{bottom:456.733500px;}
.ya0{bottom:457.630500px;}
.y1c4{bottom:458.526000px;}
.y9{bottom:459.697500px;}
.y246{bottom:461.664000px;}
.y1da{bottom:462.112500px;}
.y3b{bottom:465.682500px;}
.y1a0{bottom:469.278000px;}
.yff{bottom:469.327500px;}
.y12a{bottom:469.771500px;}
.y6d{bottom:470.170500px;}
.yeb{bottom:471.816000px;}
.y158{bottom:472.056813px;}
.y20e{bottom:472.783500px;}
.yc1{bottom:475.114500px;}
.ydb{bottom:475.563000px;}
.y9f{bottom:476.458500px;}
.y1c3{bottom:477.355500px;}
.y8{bottom:477.585000px;}
.y245{bottom:478.924500px;}
.y1d9{bottom:480.157500px;}
.y3a{bottom:485.140500px;}
.y19f{bottom:488.107500px;}
.yfe{bottom:488.560500px;}
.y6c{bottom:489.000000px;}
.y20d{bottom:490.044000px;}
.yea{bottom:491.049000px;}
.y25b{bottom:491.628000px;}
.y157{bottom:493.144654px;}
.y129{bottom:493.411500px;}
.yda{bottom:494.392500px;}
.y9e{bottom:495.288000px;}
.y7{bottom:495.474000px;}
.y1c2{bottom:496.185000px;}
.y1d8{bottom:498.202500px;}
.yc0{bottom:498.427500px;}
.y39{bottom:504.597000px;}
.y19e{bottom:506.937000px;}
.y20c{bottom:507.303000px;}
.yfd{bottom:507.792000px;}
.y6b{bottom:507.829500px;}
.y25a{bottom:508.887000px;}
.ye9{bottom:510.282000px;}
.yd9{bottom:513.222000px;}
.y6{bottom:513.361500px;}
.y244{bottom:513.445500px;}
.y156{bottom:514.330040px;}
.y1c1{bottom:515.014500px;}
.y1d7{bottom:516.247500px;}
.y128{bottom:517.053000px;}
.y9d{bottom:518.601000px;}
.y20b{bottom:524.563500px;}
.y19d{bottom:525.766500px;}
.y259{bottom:526.147500px;}
.y6a{bottom:526.659000px;}
.yfc{bottom:527.025000px;}
.ye8{bottom:529.515000px;}
.y243{bottom:530.706000px;}
.y5{bottom:531.249000px;}
.ybf{bottom:532.051500px;}
.y1c0{bottom:533.844000px;}
.y155{bottom:535.515427px;}
.y127{bottom:540.693000px;}
.y20a{bottom:541.824000px;}
.y38{bottom:543.183000px;}
.y19c{bottom:544.596000px;}
.y69{bottom:545.488500px;}
.yfb{bottom:546.258000px;}
.y242{bottom:547.966500px;}
.y4{bottom:549.138000px;}
.ybe{bottom:550.881000px;}
.y9c{bottom:552.225000px;}
.y1bf{bottom:552.673500px;}
.y209{bottom:559.084500px;}
.y37{bottom:559.321500px;}
.y154{bottom:561.551595px;}
.y19b{bottom:563.425500px;}
.y68{bottom:564.318000px;}
.y126{bottom:564.334500px;}
.y241{bottom:565.227000px;}
.yfa{bottom:565.491000px;}
.y3{bottom:567.025500px;}
.ybd{bottom:569.710500px;}
.y9b{bottom:571.054500px;}
.y1be{bottom:571.503000px;}
.y208{bottom:576.345000px;}
.y36{bottom:579.801000px;}
.y19a{bottom:582.255000px;}
.y240{bottom:582.487500px;}
.y67{bottom:583.147500px;}
.yf9{bottom:584.724000px;}
.y2{bottom:584.913000px;}
.y125{bottom:587.974500px;}
.ybc{bottom:588.538500px;}
.y9a{bottom:589.884000px;}
.y1bd{bottom:590.332500px;}
.y35{bottom:591.601500px;}
.y207{bottom:593.605500px;}
.y23f{bottom:599.746500px;}
.y199{bottom:601.084500px;}
.y66{bottom:601.977000px;}
.y1{bottom:602.802000px;}
.y153{bottom:604.418595px;}
.ybb{bottom:607.368000px;}
.y34{bottom:607.740000px;}
.y99{bottom:608.713500px;}
.y1bc{bottom:609.162000px;}
.y206{bottom:610.866000px;}
.y124{bottom:611.616000px;}
.y23e{bottom:617.007000px;}
.y198{bottom:619.914000px;}
.y65{bottom:620.806500px;}
.yba{bottom:626.197500px;}
.y98{bottom:627.543000px;}
.y152{bottom:627.584595px;}
.y1bb{bottom:627.991500px;}
.y205{bottom:628.126500px;}
.y33{bottom:628.219500px;}
.y144{bottom:633.573000px;}
.y23d{bottom:634.267500px;}
.y123{bottom:635.256000px;}
.y197{bottom:638.743500px;}
.y64{bottom:639.636000px;}
.y32{bottom:640.020000px;}
.yb9{bottom:645.027000px;}
.y204{bottom:645.387000px;}
.y97{bottom:646.372500px;}
.y1ba{bottom:646.821000px;}
.y151{bottom:650.651595px;}
.y23c{bottom:651.528000px;}
.y143{bottom:652.402500px;}
.y196{bottom:657.573000px;}
.y63{bottom:658.465500px;}
.y122{bottom:658.896000px;}
.y31{bottom:660.499500px;}
.y203{bottom:662.646000px;}
.yb8{bottom:663.856500px;}
.y96{bottom:665.202000px;}
.y1b9{bottom:665.650500px;}
.y23b{bottom:668.788500px;}
.y142{bottom:671.232000px;}
.y150{bottom:673.718595px;}
.y195{bottom:676.402500px;}
.y30{bottom:676.638000px;}
.y62{bottom:677.295000px;}
.y202{bottom:679.906500px;}
.y121{bottom:682.537500px;}
.yb7{bottom:682.686000px;}
.y95{bottom:684.031500px;}
.y1b8{bottom:684.480000px;}
.y23a{bottom:686.049000px;}
.y2f{bottom:688.438500px;}
.y141{bottom:690.061500px;}
.y194{bottom:695.232000px;}
.y61{bottom:696.124500px;}
.y14f{bottom:696.785595px;}
.y201{bottom:697.167000px;}
.yb6{bottom:701.515500px;}
.y94{bottom:702.861000px;}
.y1b7{bottom:703.309500px;}
.y120{bottom:706.177500px;}
.y140{bottom:708.891000px;}
.y2e{bottom:708.918000px;}
.y193{bottom:714.061500px;}
.y200{bottom:714.427500px;}
.y60{bottom:714.954000px;}
.y14e{bottom:719.852595px;}
.yb5{bottom:720.345000px;}
.y239{bottom:720.570000px;}
.y2d{bottom:720.717000px;}
.y93{bottom:721.690500px;}
.y1b6{bottom:722.139000px;}
.y13f{bottom:727.720500px;}
.y11f{bottom:729.819000px;}
.y1ff{bottom:731.688000px;}
.y192{bottom:732.891000px;}
.y5f{bottom:733.783500px;}
.y2c{bottom:736.857000px;}
.y238{bottom:737.829000px;}
.yb4{bottom:739.174500px;}
.y1b5{bottom:740.968500px;}
.y14d{bottom:743.018595px;}
.y92{bottom:745.003500px;}
.y13e{bottom:746.550000px;}
.y1fe{bottom:748.948500px;}
.y191{bottom:751.720500px;}
.y5e{bottom:752.613000px;}
.y11e{bottom:753.459000px;}
.y237{bottom:755.089500px;}
.y2b{bottom:757.336500px;}
.yd8{bottom:758.004000px;}
.y1b4{bottom:759.798000px;}
.yb3{bottom:762.487500px;}
.y13d{bottom:765.379500px;}
.y14c{bottom:766.085595px;}
.y1fd{bottom:766.209000px;}
.y190{bottom:770.550000px;}
.y5d{bottom:771.442500px;}
.y236{bottom:772.350000px;}
.y2a{bottom:773.475000px;}
.yd7{bottom:776.833500px;}
.y11d{bottom:777.100500px;}
.y91{bottom:778.627500px;}
.yb2{bottom:782.662500px;}
.y1fc{bottom:783.469500px;}
.y13c{bottom:784.209000px;}
.y29{bottom:785.275500px;}
.y14b{bottom:789.152595px;}
.y235{bottom:789.610500px;}
.y5c{bottom:790.272000px;}
.y18f{bottom:793.863000px;}
.yd6{bottom:795.663000px;}
.y90{bottom:797.457000px;}
.y1fb{bottom:800.728500px;}
.y11c{bottom:800.740500px;}
.y28{bottom:801.415500px;}
.y13b{bottom:803.038500px;}
.y234{bottom:806.871000px;}
.y5b{bottom:809.101500px;}
.y14a{bottom:812.219595px;}
.yd5{bottom:814.492500px;}
.y8f{bottom:816.286500px;}
.y1fa{bottom:817.989000px;}
.y27{bottom:821.895000px;}
.y233{bottom:824.131500px;}
.y11b{bottom:824.382000px;}
.y13a{bottom:826.350000px;}
.y5a{bottom:827.931000px;}
.yd4{bottom:833.322000px;}
.y26{bottom:833.694000px;}
.y8e{bottom:835.114500px;}
.y1f9{bottom:835.249500px;}
.y149{bottom:835.287080px;}
.y18e{bottom:836.187000px;}
.y232{bottom:841.392000px;}
.y59{bottom:846.760500px;}
.y11a{bottom:848.022000px;}
.y25{bottom:849.834000px;}
.yd3{bottom:852.151500px;}
.y1f8{bottom:852.510000px;}
.y8d{bottom:853.944000px;}
.y231{bottom:858.652500px;}
.y18d{bottom:859.827000px;}
.y58{bottom:865.590000px;}
.y1f7{bottom:869.770500px;}
.y24{bottom:870.313500px;}
.yd2{bottom:870.981000px;}
.y119{bottom:871.663500px;}
.y8c{bottom:872.773500px;}
.y230{bottom:875.913000px;}
.y18c{bottom:883.467000px;}
.y57{bottom:884.419500px;}
.y1f6{bottom:887.031000px;}
.y8b{bottom:891.603000px;}
.y22f{bottom:893.172000px;}
.yd1{bottom:894.294000px;}
.y118{bottom:895.303500px;}
.y147{bottom:897.953744px;}
.y1f5{bottom:904.291500px;}
.y18b{bottom:907.108500px;}
.y56{bottom:907.731000px;}
.y146{bottom:908.546595px;}
.y8a{bottom:910.432500px;}
.yd0{bottom:914.467500px;}
.y23{bottom:914.989500px;}
.y117{bottom:918.945000px;}
.y1f4{bottom:921.552000px;}
.y22e{bottom:927.693000px;}
.y89{bottom:929.262000px;}
.y18a{bottom:930.748500px;}
.y22{bottom:933.819000px;}
.y1f3{bottom:938.812500px;}
.y116{bottom:942.585000px;}
.y22d{bottom:944.953500px;}
.y88{bottom:948.091500px;}
.y21{bottom:952.648500px;}
.y189{bottom:954.390000px;}
.y1f2{bottom:960.555000px;}
.y22c{bottom:962.214000px;}
.y115{bottom:966.226500px;}
.y87{bottom:966.921000px;}
.y20{bottom:971.478000px;}
.y188{bottom:978.030000px;}
.y22b{bottom:979.474500px;}
.y55{bottom:982.881000px;}
.y86{bottom:985.750500px;}
.y114{bottom:989.866500px;}
.y1f1{bottom:994.179000px;}
.y22a{bottom:996.735000px;}
.y187{bottom:1001.671500px;}
.y85{bottom:1004.580000px;}
.y1f{bottom:1008.240000px;}
.y1f0{bottom:1011.753000px;}
.y113{bottom:1013.508000px;}
.y229{bottom:1013.995500px;}
.y54{bottom:1020.271500px;}
.y84{bottom:1023.409500px;}
.y186{bottom:1025.311500px;}
.y1ef{bottom:1029.327000px;}
.y228{bottom:1031.254500px;}
.y1e{bottom:1036.485000px;}
.y112{bottom:1037.148000px;}
.y53{bottom:1039.728000px;}
.y83{bottom:1042.239000px;}
.y227{bottom:1048.515000px;}
.y185{bottom:1048.953000px;}
.y1ee{bottom:1055.868000px;}
.y52{bottom:1059.186000px;}
.y111{bottom:1060.789500px;}
.y82{bottom:1061.068500px;}
.y1d{bottom:1064.728500px;}
.y226{bottom:1065.775500px;}
.y1ed{bottom:1073.442000px;}
.y51{bottom:1078.642500px;}
.y81{bottom:1079.898000px;}
.y184{bottom:1080.571500px;}
.y225{bottom:1083.036000px;}
.y110{bottom:1084.429500px;}
.y1c{bottom:1092.972000px;}
.y50{bottom:1098.100500px;}
.y80{bottom:1098.727500px;}
.y183{bottom:1099.804500px;}
.y1ec{bottom:1099.983000px;}
.y224{bottom:1100.296500px;}
.y4f{bottom:1117.557000px;}
.y10f{bottom:1119.037500px;}
.y1a{bottom:1136.460000px;}
.y4e{bottom:1178.008500px;}
.h9{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.ha{height:34.813397px;}
.hd{height:35.052500px;}
.hc{height:37.334628px;}
.h14{height:38.734848px;}
.hb{height:39.165235px;}
.h13{height:39.434227px;}
.h11{height:41.482876px;}
.h10{height:41.723369px;}
.he{height:43.038432px;}
.hf{height:43.516637px;}
.h6{height:43.815515px;}
.h18{height:47.596957px;}
.h16{height:48.707613px;}
.h1c{height:49.117939px;}
.h4{height:50.330809px;}
.h8{height:54.405312px;}
.h12{height:54.774749px;}
.h19{height:54.933398px;}
.h17{height:61.159184px;}
.h1b{height:76.574628px;}
.h1a{height:76.580628px;}
.h7{height:77.469696px;}
.h5{height:92.775000px;}
.h15{height:312.767400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:173.920654px;}
.w3{width:550.365750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6c{left:-217.078950px;}
.x6d{left:-1.951950px;}
.x0{left:0.000000px;}
.x6e{left:33.093934px;}
.x1{left:53.574000px;}
.x2{left:56.429652px;}
.x6b{left:62.541000px;}
.xa0{left:85.848000px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x71{left:264.343500px;}
.x72{left:267.706500px;}
.x4{left:269.914500px;}
.x58{left:272.430000px;}
.x65{left:275.712000px;}
.xc{left:281.479500px;}
.x97{left:283.392000px;}
.x66{left:291.724500px;}
.x34{left:293.749500px;}
.x21{left:298.483500px;}
.x83{left:302.793000px;}
.x35{left:308.692500px;}
.x79{left:309.846000px;}
.x54{left:311.416500px;}
.x22{left:313.428000px;}
.x89{left:315.780000px;}
.x84{left:317.737500px;}
.x23{left:320.884500px;}
.x93{left:323.281500px;}
.xa{left:325.000500px;}
.x55{left:328.105500px;}
.x24{left:335.829000px;}
.x94{left:338.224500px;}
.xb{left:339.789000px;}
.x95{left:341.980500px;}
.x75{left:345.133500px;}
.x6{left:349.915500px;}
.x76{left:352.605000px;}
.x96{left:356.923500px;}
.x87{left:359.707500px;}
.xd{left:361.483500px;}
.x7{left:364.329000px;}
.x6a{left:367.491000px;}
.xe{left:368.955000px;}
.x88{left:374.650500px;}
.x16{left:396.660000px;}
.x38{left:398.098500px;}
.x59{left:400.545000px;}
.x17{left:404.133000px;}
.x18{left:411.537000px;}
.x39{left:413.043000px;}
.x3e{left:417.045000px;}
.x19{left:419.010000px;}
.x3a{left:420.627000px;}
.x98{left:427.660500px;}
.x4d{left:428.763000px;}
.x3f{left:431.988000px;}
.x3b{left:435.571500px;}
.x40{left:439.311000px;}
.x12{left:442.185000px;}
.x4e{left:443.707500px;}
.x5a{left:445.668000px;}
.x13{left:449.656500px;}
.x27{left:453.457500px;}
.x56{left:457.258500px;}
.x5b{left:461.703000px;}
.x28{left:468.402000px;}
.x9e{left:472.723500px;}
.x81{left:476.541000px;}
.x85{left:477.639000px;}
.x7c{left:483.646500px;}
.x9f{left:487.666500px;}
.x86{left:492.582000px;}
.x7d{left:498.589500px;}
.x99{left:504.739500px;}
.x7a{left:509.958000px;}
.x9a{left:519.684000px;}
.x7b{left:522.249000px;}
.x9b{left:523.494000px;}
.x44{left:532.794000px;}
.x9c{left:538.438500px;}
.x8b{left:542.487000px;}
.x45{left:547.738500px;}
.x25{left:548.955000px;}
.x46{left:551.548500px;}
.x8c{left:557.431500px;}
.x3c{left:560.232000px;}
.x26{left:563.899500px;}
.x47{left:566.493000px;}
.x67{left:569.446500px;}
.x3d{left:575.175000px;}
.x32{left:579.585000px;}
.x50{left:585.555000px;}
.x68{left:587.211000px;}
.x2b{left:591.337500px;}
.x33{left:594.529500px;}
.x29{left:602.016000px;}
.x51{left:603.412500px;}
.x2c{left:606.282000px;}
.x48{left:609.733500px;}
.x2a{left:611.916000px;}
.x82{left:612.976500px;}
.x49{left:627.088500px;}
.x73{left:628.591500px;}
.x30{left:630.796500px;}
.x74{left:636.064500px;}
.x8{left:638.401500px;}
.x9d{left:644.292000px;}
.x31{left:645.591000px;}
.x8a{left:649.441500px;}
.x9{left:652.816500px;}
.x4c{left:654.186000px;}
.x5c{left:658.143000px;}
.xf{left:660.487500px;}
.x52{left:665.016000px;}
.x61{left:668.965500px;}
.x5d{left:674.325000px;}
.x53{left:682.872000px;}
.x62{left:684.982500px;}
.x4f{left:690.264000px;}
.x63{left:693.684000px;}
.x5e{left:698.665500px;}
.x14{left:699.756000px;}
.x1d{left:701.263500px;}
.x2e{left:704.628000px;}
.x15{left:707.229000px;}
.x64{left:711.937500px;}
.x5f{left:714.688500px;}
.x1e{left:716.208000px;}
.x2f{left:719.422500px;}
.x1a{left:721.929000px;}
.x1f{left:723.613500px;}
.x1b{left:725.731500px;}
.x91{left:732.597000px;}
.x41{left:733.666500px;}
.x42{left:737.328000px;}
.x20{left:738.556500px;}
.x1c{left:740.676000px;}
.x77{left:744.192000px;}
.x69{left:747.570000px;}
.x43{left:752.272500px;}
.x92{left:754.650000px;}
.x78{left:759.285000px;}
.x7f{left:768.738000px;}
.x8d{left:775.134000px;}
.x8e{left:780.205500px;}
.x57{left:782.416500px;}
.x80{left:785.122500px;}
.x6f{left:790.524000px;}
.x10{left:793.581000px;}
.x8f{left:795.148500px;}
.x4a{left:798.096000px;}
.x11{left:801.052500px;}
.x70{left:803.974500px;}
.x90{left:813.900000px;}
.x4b{left:816.141000px;}
.x7e{left:818.046000px;}
.x36{left:819.052500px;}
.x60{left:826.621500px;}
.x2d{left:832.780500px;}
.x37{left:833.997000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:34.885333pt;}
.ls4e{letter-spacing:-0.382096pt;}
.ls51{letter-spacing:-0.276285pt;}
.ls4c{letter-spacing:-0.141082pt;}
.ls46{letter-spacing:-0.135203pt;}
.ls48{letter-spacing:-0.129325pt;}
.ls45{letter-spacing:-0.117568pt;}
.ls49{letter-spacing:-0.111690pt;}
.ls4b{letter-spacing:-0.105811pt;}
.ls57{letter-spacing:-0.064662pt;}
.ls59{letter-spacing:-0.058784pt;}
.ls4a{letter-spacing:-0.041149pt;}
.ls4f{letter-spacing:-0.035270pt;}
.ls4d{letter-spacing:-0.029392pt;}
.ls53{letter-spacing:-0.023514pt;}
.ls56{letter-spacing:-0.011757pt;}
.ls58{letter-spacing:-0.005878pt;}
.ls44{letter-spacing:-0.004682pt;}
.ls9{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000540pt;}
.ls68{letter-spacing:0.000621pt;}
.ls1f{letter-spacing:0.000711pt;}
.ls5a{letter-spacing:0.001007pt;}
.ls6f{letter-spacing:0.001688pt;}
.ls24{letter-spacing:0.002008pt;}
.ls3{letter-spacing:0.002422pt;}
.ls22{letter-spacing:0.002525pt;}
.ls21{letter-spacing:0.002697pt;}
.ls5d{letter-spacing:0.002703pt;}
.lsd{letter-spacing:0.003012pt;}
.ls5e{letter-spacing:0.003836pt;}
.ls20{letter-spacing:0.004267pt;}
.ls23{letter-spacing:0.004512pt;}
.ls3c{letter-spacing:0.005280pt;}
.ls2c{letter-spacing:0.005878pt;}
.ls3a{letter-spacing:0.010560pt;}
.ls33{letter-spacing:0.011757pt;}
.ls3f{letter-spacing:0.015840pt;}
.ls2f{letter-spacing:0.017635pt;}
.ls30{letter-spacing:0.023514pt;}
.ls39{letter-spacing:0.026400pt;}
.ls41{letter-spacing:0.029392pt;}
.ls3e{letter-spacing:0.031680pt;}
.ls40{letter-spacing:0.035270pt;}
.ls38{letter-spacing:0.036960pt;}
.ls35{letter-spacing:0.047027pt;}
.ls29{letter-spacing:0.060861pt;}
.ls2e{letter-spacing:0.064662pt;}
.ls3d{letter-spacing:0.068640pt;}
.ls50{letter-spacing:0.082298pt;}
.ls55{letter-spacing:0.084480pt;}
.ls54{letter-spacing:0.088176pt;}
.ls3b{letter-spacing:0.100320pt;}
.ls32{letter-spacing:0.117568pt;}
.ls52{letter-spacing:0.135203pt;}
.ls2d{letter-spacing:0.164595pt;}
.ls2b{letter-spacing:0.173219pt;}
.ls2a{letter-spacing:0.187264pt;}
.ls31{letter-spacing:0.188109pt;}
.ls34{letter-spacing:0.799462pt;}
.ls36{letter-spacing:1.851696pt;}
.ls2{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls37{letter-spacing:8.547194pt;}
.ls0{letter-spacing:9.298933pt;}
.ls8{letter-spacing:10.626533pt;}
.ls6a{letter-spacing:11.603984pt;}
.ls62{letter-spacing:11.715388pt;}
.ls63{letter-spacing:11.764932pt;}
.ls6c{letter-spacing:11.807646pt;}
.ls70{letter-spacing:11.906686pt;}
.ls65{letter-spacing:11.920090pt;}
.ls64{letter-spacing:11.943669pt;}
.ls5c{letter-spacing:11.954133pt;}
.ls43{letter-spacing:11.956267pt;}
.ls61{letter-spacing:11.959467pt;}
.ls73{letter-spacing:11.975328pt;}
.ls6e{letter-spacing:11.978200pt;}
.ls67{letter-spacing:12.047496pt;}
.ls6d{letter-spacing:12.093780pt;}
.ls60{letter-spacing:12.167124pt;}
.ls71{letter-spacing:12.191141pt;}
.ls25{letter-spacing:12.198444pt;}
.ls66{letter-spacing:12.358525pt;}
.ls42{letter-spacing:12.528078pt;}
.ls5f{letter-spacing:12.703624pt;}
.lsa{letter-spacing:12.776411pt;}
.lsb{letter-spacing:12.953570pt;}
.ls17{letter-spacing:12.972454pt;}
.ls6b{letter-spacing:13.001663pt;}
.ls1e{letter-spacing:13.102358pt;}
.ls1c{letter-spacing:13.113278pt;}
.ls10{letter-spacing:13.171629pt;}
.ls27{letter-spacing:13.183399pt;}
.ls14{letter-spacing:13.194498pt;}
.ls13{letter-spacing:13.197647pt;}
.lse{letter-spacing:13.283733pt;}
.ls28{letter-spacing:13.291592pt;}
.ls11{letter-spacing:13.446603pt;}
.ls18{letter-spacing:13.484401pt;}
.ls19{letter-spacing:13.489804pt;}
.ls12{letter-spacing:13.923096pt;}
.ls69{letter-spacing:14.261793pt;}
.ls1a{letter-spacing:14.457903pt;}
.lsf{letter-spacing:17.213126pt;}
.ls16{letter-spacing:17.286661pt;}
.ls15{letter-spacing:17.448753pt;}
.ls1b{letter-spacing:17.867054pt;}
.ls72{letter-spacing:18.507545pt;}
.ls1d{letter-spacing:19.080125pt;}
.ls1{letter-spacing:51.035733pt;}
.ls6{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls5{letter-spacing:64.321067pt;}
.ls47{letter-spacing:164.542294pt;}
.ls26{letter-spacing:256.894302pt;}
.ls5b{letter-spacing:307.696133pt;}
.wsd0{word-spacing:-357.525467pt;}
.ws8c{word-spacing:-14.707757pt;}
.ws8d{word-spacing:-14.696000pt;}
.ws8e{word-spacing:-14.637216pt;}
.wsd{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-11.955200pt;}
.ws89{word-spacing:-11.891264pt;}
.ws8a{word-spacing:-11.704000pt;}
.ws12{word-spacing:-10.626800pt;}
.ws11{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws6d{word-spacing:-2.922363pt;}
.ws31{word-spacing:-2.656693pt;}
.ws121{word-spacing:-2.582323pt;}
.ws40{word-spacing:-2.550426pt;}
.ws41{word-spacing:-2.497292pt;}
.ws58{word-spacing:-2.391024pt;}
.wsdd{word-spacing:-2.337890pt;}
.ws88{word-spacing:-2.125355pt;}
.ws32{word-spacing:-2.072221pt;}
.wsf9{word-spacing:-2.056294pt;}
.wsda{word-spacing:-2.019087pt;}
.wsfa{word-spacing:-2.008474pt;}
.wsb3{word-spacing:-1.943040pt;}
.wsb4{word-spacing:-1.937760pt;}
.ws55{word-spacing:-1.806551pt;}
.ws54{word-spacing:-1.753418pt;}
.ws74{word-spacing:-1.647150pt;}
.ws75{word-spacing:-1.594016pt;}
.wsea{word-spacing:-1.487748pt;}
.wsdb{word-spacing:-1.381481pt;}
.wsbc{word-spacing:-1.352032pt;}
.wsf3{word-spacing:-1.291162pt;}
.wsdc{word-spacing:-1.275213pt;}
.ws80{word-spacing:-1.195520pt;}
.wsf8{word-spacing:-1.147699pt;}
.wse5{word-spacing:-1.115811pt;}
.ws77{word-spacing:-1.062677pt;}
.ws108{word-spacing:-1.052058pt;}
.ws9f{word-spacing:-0.987571pt;}
.ws1b{word-spacing:-0.956416pt;}
.ws1c{word-spacing:-0.908595pt;}
.ws1e{word-spacing:-0.860774pt;}
.ws9e{word-spacing:-0.846490pt;}
.ws22{word-spacing:-0.812954pt;}
.wse6{word-spacing:-0.797008pt;}
.wsf7{word-spacing:-0.765133pt;}
.wsc8{word-spacing:-0.743874pt;}
.ws5e{word-spacing:-0.637606pt;}
.ws7d{word-spacing:-0.584473pt;}
.wsc0{word-spacing:-0.546691pt;}
.ws45{word-spacing:-0.531339pt;}
.ws118{word-spacing:-0.526029pt;}
.ws47{word-spacing:-0.478205pt;}
.ws30{word-spacing:-0.425071pt;}
.ws9b{word-spacing:-0.423245pt;}
.ws4a{word-spacing:-0.371937pt;}
.ws11a{word-spacing:-0.334746pt;}
.ws48{word-spacing:-0.318803pt;}
.ws1a{word-spacing:-0.286925pt;}
.wsba{word-spacing:-0.276285pt;}
.ws92{word-spacing:-0.271533pt;}
.ws37{word-spacing:-0.265669pt;}
.ws97{word-spacing:-0.264528pt;}
.ws1f{word-spacing:-0.239104pt;}
.wsc7{word-spacing:-0.235136pt;}
.wsbb{word-spacing:-0.223379pt;}
.ws46{word-spacing:-0.212535pt;}
.ws78{word-spacing:-0.191283pt;}
.ws34{word-spacing:-0.159402pt;}
.wsbf{word-spacing:-0.152838pt;}
.ws18{word-spacing:-0.143462pt;}
.ws98{word-spacing:-0.141082pt;}
.ws3b{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.095642pt;}
.ws93{word-spacing:-0.079587pt;}
.ws8b{word-spacing:-0.058784pt;}
.wse{word-spacing:-0.053134pt;}
.ws15{word-spacing:-0.047821pt;}
.ws27{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.wscb{word-spacing:-0.007236pt;}
.ws11b{word-spacing:-0.005922pt;}
.wsb{word-spacing:-0.001570pt;}
.wsc{word-spacing:-0.000125pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.000875pt;}
.wsaf{word-spacing:0.005878pt;}
.wsa6{word-spacing:0.029392pt;}
.ws20{word-spacing:0.047821pt;}
.ws2c{word-spacing:0.053134pt;}
.ws9c{word-spacing:0.076419pt;}
.wsb8{word-spacing:0.095040pt;}
.ws23{word-spacing:0.095642pt;}
.ws2d{word-spacing:0.106268pt;}
.wsae{word-spacing:0.117568pt;}
.wsb7{word-spacing:0.142560pt;}
.ws29{word-spacing:0.143462pt;}
.ws4f{word-spacing:0.159402pt;}
.wsb9{word-spacing:0.163680pt;}
.ws21{word-spacing:0.191283pt;}
.ws9a{word-spacing:0.205744pt;}
.ws95{word-spacing:0.211622pt;}
.ws50{word-spacing:0.212535pt;}
.ws79{word-spacing:0.239104pt;}
.ws36{word-spacing:0.265669pt;}
.ws24{word-spacing:0.286925pt;}
.ws43{word-spacing:0.318803pt;}
.ws3f{word-spacing:0.371937pt;}
.ws8f{word-spacing:0.382566pt;}
.ws16{word-spacing:0.478208pt;}
.wsfc{word-spacing:0.526029pt;}
.ws66{word-spacing:0.531339pt;}
.wsa2{word-spacing:0.552570pt;}
.wsa3{word-spacing:0.587840pt;}
.ws101{word-spacing:0.621670pt;}
.ws69{word-spacing:0.637606pt;}
.ws65{word-spacing:0.663733pt;}
.wsf4{word-spacing:0.669491pt;}
.ws51{word-spacing:0.690740pt;}
.ws11f{word-spacing:0.717312pt;}
.ws7f{word-spacing:0.765133pt;}
.wse3{word-spacing:0.797008pt;}
.ws11d{word-spacing:0.812954pt;}
.wsa7{word-spacing:0.828854pt;}
.ws2e{word-spacing:0.850142pt;}
.wsc9{word-spacing:0.860774pt;}
.ws3d{word-spacing:0.903276pt;}
.ws35{word-spacing:0.956410pt;}
.wsca{word-spacing:1.004237pt;}
.ws6a{word-spacing:1.009543pt;}
.ws28{word-spacing:1.052058pt;}
.wsde{word-spacing:1.062677pt;}
.wsa9{word-spacing:1.069869pt;}
.wsaa{word-spacing:1.075747pt;}
.ws116{word-spacing:1.099878pt;}
.wsf5{word-spacing:1.147699pt;}
.ws6e{word-spacing:1.168945pt;}
.wsa8{word-spacing:1.187437pt;}
.wsa{word-spacing:1.227389pt;}
.wsff{word-spacing:1.243341pt;}
.ws53{word-spacing:1.275213pt;}
.wse8{word-spacing:1.434614pt;}
.ws17{word-spacing:1.434624pt;}
.wsa5{word-spacing:1.440208pt;}
.wseb{word-spacing:1.487748pt;}
.wsc5{word-spacing:1.504870pt;}
.ws81{word-spacing:1.578086pt;}
.ws6c{word-spacing:1.594016pt;}
.ws10b{word-spacing:1.625907pt;}
.ws129{word-spacing:1.721549pt;}
.wsd9{word-spacing:1.806551pt;}
.ws114{word-spacing:1.817190pt;}
.wse4{word-spacing:1.859685pt;}
.wsa4{word-spacing:1.881088pt;}
.ws3a{word-spacing:1.912819pt;}
.ws7a{word-spacing:1.960653pt;}
.ws64{word-spacing:1.965953pt;}
.wsc6{word-spacing:1.981021pt;}
.ws62{word-spacing:2.019087pt;}
.wsad{word-spacing:2.069197pt;}
.ws61{word-spacing:2.072221pt;}
.ws12b{word-spacing:2.104115pt;}
.wsac{word-spacing:2.139738pt;}
.ws82{word-spacing:2.151936pt;}
.wsab{word-spacing:2.157373pt;}
.ws0{word-spacing:2.232481pt;}
.ws7b{word-spacing:2.295398pt;}
.ws5c{word-spacing:2.337890pt;}
.ws42{word-spacing:2.391024pt;}
.wscd{word-spacing:2.391040pt;}
.ws123{word-spacing:2.438861pt;}
.ws2f{word-spacing:2.444158pt;}
.wse0{word-spacing:2.497292pt;}
.ws76{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.ws63{word-spacing:2.603559pt;}
.wsb0{word-spacing:2.608320pt;}
.wsb1{word-spacing:2.618880pt;}
.ws19{word-spacing:2.630144pt;}
.wsb2{word-spacing:2.634720pt;}
.ws68{word-spacing:2.709827pt;}
.ws59{word-spacing:2.762961pt;}
.wse9{word-spacing:2.816095pt;}
.ws103{word-spacing:2.860425pt;}
.ws2a{word-spacing:2.861926pt;}
.ws110{word-spacing:2.862626pt;}
.ws12e{word-spacing:2.865340pt;}
.ws38{word-spacing:2.869229pt;}
.wsf1{word-spacing:2.869248pt;}
.wsa0{word-spacing:2.950957pt;}
.ws72{word-spacing:2.975497pt;}
.wsa1{word-spacing:3.039133pt;}
.wsf6{word-spacing:3.096253pt;}
.ws138{word-spacing:3.108352pt;}
.wsed{word-spacing:3.134898pt;}
.wsf2{word-spacing:3.156173pt;}
.ws2b{word-spacing:3.188032pt;}
.wsee{word-spacing:3.241166pt;}
.ws25{word-spacing:3.251814pt;}
.ws39{word-spacing:3.294300pt;}
.ws3c{word-spacing:3.347434pt;}
.ws120{word-spacing:3.347456pt;}
.ws6f{word-spacing:3.400567pt;}
.ws4d{word-spacing:3.453701pt;}
.wse7{word-spacing:3.559969pt;}
.ws56{word-spacing:3.666237pt;}
.ws134{word-spacing:3.682202pt;}
.wsd7{word-spacing:3.719371pt;}
.wse2{word-spacing:3.772505pt;}
.wsdf{word-spacing:3.825638pt;}
.ws49{word-spacing:3.931906pt;}
.ws52{word-spacing:3.985040pt;}
.ws4c{word-spacing:4.038174pt;}
.ws5d{word-spacing:4.091308pt;}
.ws67{word-spacing:4.144442pt;}
.ws7c{word-spacing:4.160410pt;}
.wsb5{word-spacing:4.340160pt;}
.ws57{word-spacing:4.356977pt;}
.wsb6{word-spacing:4.377120pt;}
.ws33{word-spacing:4.410111pt;}
.ws130{word-spacing:4.447334pt;}
.ws7e{word-spacing:4.463245pt;}
.ws5b{word-spacing:4.516379pt;}
.ws5f{word-spacing:4.569513pt;}
.ws91{word-spacing:4.675780pt;}
.ws3e{word-spacing:4.728914pt;}
.ws104{word-spacing:4.734259pt;}
.wsd6{word-spacing:4.782048pt;}
.ws8{word-spacing:4.872362pt;}
.ws10a{word-spacing:4.877722pt;}
.wsec{word-spacing:4.941450pt;}
.ws9d{word-spacing:5.026032pt;}
.wse1{word-spacing:5.153985pt;}
.ws5a{word-spacing:5.207119pt;}
.ws131{word-spacing:5.212467pt;}
.wsf0{word-spacing:5.355930pt;}
.ws90{word-spacing:5.366521pt;}
.wscc{word-spacing:5.472788pt;}
.wsef{word-spacing:5.632190pt;}
.ws73{word-spacing:5.791591pt;}
.ws60{word-spacing:6.110395pt;}
.ws133{word-spacing:6.551450pt;}
.ws71{word-spacing:6.588599pt;}
.ws4b{word-spacing:6.694867pt;}
.ws87{word-spacing:7.119938pt;}
.wsc2{word-spacing:7.459690pt;}
.ws70{word-spacing:7.491875pt;}
.wsc1{word-spacing:7.518474pt;}
.ws10f{word-spacing:7.555686pt;}
.wsbe{word-spacing:8.206246pt;}
.wsbd{word-spacing:8.582464pt;}
.ws6{word-spacing:8.740496pt;}
.ws6b{word-spacing:9.085891pt;}
.ws2{word-spacing:9.263682pt;}
.wsc4{word-spacing:9.581792pt;}
.wsc3{word-spacing:9.605306pt;}
.ws7{word-spacing:10.525789pt;}
.ws26{word-spacing:10.586324pt;}
.ws94{word-spacing:11.362243pt;}
.ws105{word-spacing:11.645308pt;}
.ws125{word-spacing:11.668275pt;}
.ws106{word-spacing:11.716096pt;}
.ws10e{word-spacing:11.859558pt;}
.ws12c{word-spacing:11.899247pt;}
.ws137{word-spacing:11.901355pt;}
.wsfe{word-spacing:11.903625pt;}
.ws11c{word-spacing:11.904299pt;}
.ws12f{word-spacing:11.904435pt;}
.ws12a{word-spacing:11.904580pt;}
.ws10c{word-spacing:11.904870pt;}
.wsfb{word-spacing:11.907379pt;}
.ws135{word-spacing:11.909575pt;}
.ws127{word-spacing:11.925302pt;}
.ws112{word-spacing:11.977881pt;}
.ws113{word-spacing:12.003021pt;}
.ws124{word-spacing:12.041662pt;}
.ws102{word-spacing:12.098662pt;}
.ws111{word-spacing:12.194304pt;}
.wsfd{word-spacing:12.433408pt;}
.ws4e{word-spacing:13.230333pt;}
.ws115{word-spacing:13.688376pt;}
.ws9{word-spacing:14.282342pt;}
.ws117{word-spacing:14.585344pt;}
.ws128{word-spacing:14.727610pt;}
.ws136{word-spacing:14.768700pt;}
.ws109{word-spacing:14.769647pt;}
.ws126{word-spacing:14.770432pt;}
.wsd8{word-spacing:14.771215pt;}
.ws100{word-spacing:14.772395pt;}
.ws12d{word-spacing:14.773026pt;}
.ws122{word-spacing:14.773257pt;}
.ws107{word-spacing:14.773777pt;}
.ws10d{word-spacing:14.776627pt;}
.ws119{word-spacing:14.824448pt;}
.ws44{word-spacing:16.418365pt;}
.ws132{word-spacing:17.096731pt;}
.ws11e{word-spacing:17.550234pt;}
.ws5{word-spacing:19.857270pt;}
.ws99{word-spacing:32.619242pt;}
.ws96{word-spacing:32.625120pt;}
.ws10{word-spacing:35.593054pt;}
.ws85{word-spacing:147.622810pt;}
.ws86{word-spacing:171.533210pt;}
.wsce{word-spacing:175.215411pt;}
.wsd1{word-spacing:193.092497pt;}
.wscf{word-spacing:194.362999pt;}
.ws84{word-spacing:202.329805pt;}
.wsd2{word-spacing:257.866800pt;}
.wsd5{word-spacing:540.932224pt;}
.wsd4{word-spacing:543.589666pt;}
.wsd3{word-spacing:555.542733pt;}
.ws83{word-spacing:729.745408pt;}
._4f{margin-left:-307.646304pt;}
._3c{margin-left:-32.395862pt;}
._6{margin-left:-10.616218pt;}
._8{margin-left:-6.248558pt;}
._1{margin-left:-4.797974pt;}
._0{margin-left:-3.421811pt;}
._50{margin-left:-2.290097pt;}
._3{margin-left:-1.338970pt;}
._36{width:0.912912pt;}
._7{width:3.156507pt;}
._1c{width:9.851085pt;}
._2{width:10.860531pt;}
._12{width:12.443948pt;}
._b{width:13.927622pt;}
._9{width:14.827520pt;}
._14{width:15.887026pt;}
._a{width:17.008238pt;}
._f{width:18.267546pt;}
._10{width:19.446995pt;}
._18{width:20.360894pt;}
._15{width:21.694544pt;}
._4{width:23.057899pt;}
._c{width:24.149504pt;}
._17{width:25.621147pt;}
._5{width:27.783619pt;}
._16{width:28.745422pt;}
._11{width:30.243793pt;}
._13{width:31.455257pt;}
._3a{width:32.866134pt;}
._1b{width:34.324478pt;}
._19{width:35.280887pt;}
._1a{width:37.363731pt;}
._3f{width:40.314067pt;}
._47{width:43.570701pt;}
._52{width:54.993920pt;}
._3e{width:58.558861pt;}
._39{width:72.657024pt;}
._51{width:78.904320pt;}
._46{width:91.066413pt;}
._38{width:119.710868pt;}
._34{width:135.800532pt;}
._21{width:146.905498pt;}
._28{width:154.879789pt;}
._20{width:159.578010pt;}
._25{width:175.884902pt;}
._32{width:183.488410pt;}
._4e{width:204.433920pt;}
._4d{width:205.820723pt;}
._23{width:214.285005pt;}
._1f{width:215.820625pt;}
._43{width:219.381888pt;}
._1e{width:243.276595pt;}
._1d{width:247.520461pt;}
._33{width:263.731712pt;}
._40{width:277.241219pt;}
._3b{width:309.956275pt;}
._35{width:314.899968pt;}
._26{width:337.652129pt;}
._4b{width:339.030842pt;}
._24{width:392.130560pt;}
._2a{width:399.925350pt;}
._44{width:437.541069pt;}
._27{width:471.947700pt;}
._2b{width:496.321543pt;}
._2e{width:522.681344pt;}
._2d{width:553.908326pt;}
._2c{width:557.399245pt;}
._29{width:592.882278pt;}
._2f{width:649.549926pt;}
._31{width:651.558400pt;}
._30{width:656.483942pt;}
._22{width:671.595315pt;}
._48{width:716.375789pt;}
._45{width:719.175213pt;}
._49{width:780.827872pt;}
._d{width:787.225223pt;}
._3d{width:909.035776pt;}
._4a{width:913.127725pt;}
._41{width:979.165088pt;}
._42{width:1024.946067pt;}
._37{width:2093.246355pt;}
._4c{width:2246.653067pt;}
._e{width:2267.906400pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:46.816000pt;}
.fs7{font-size:47.820800pt;}
.fs8{font-size:49.829333pt;}
.fsc{font-size:52.800000pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fsb{font-size:58.784000pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:131.946667pt;}
.y148{bottom:-310.707027pt;}
.y16b{bottom:-242.766855pt;}
.y16a{bottom:-223.935401pt;}
.y169{bottom:-205.103947pt;}
.y168{bottom:-186.360668pt;}
.y167{bottom:-167.529214pt;}
.y166{bottom:-148.697759pt;}
.y165{bottom:-129.954481pt;}
.y164{bottom:-111.123027pt;}
.y163{bottom:-75.131467pt;}
.y162{bottom:-58.147027pt;}
.y161{bottom:-41.251027pt;}
.y160{bottom:-24.355027pt;}
.y15f{bottom:-2.438081pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:14.809859pt;}
.y4d{bottom:28.346667pt;}
.y19{bottom:93.018667pt;}
.y174{bottom:96.134667pt;}
.y223{bottom:98.058667pt;}
.y7f{bottom:98.328000pt;}
.y1b3{bottom:99.128000pt;}
.y139{bottom:102.364000pt;}
.y4c{bottom:103.982667pt;}
.yb1{bottom:105.112000pt;}
.y1d6{bottom:106.308000pt;}
.y18{bottom:108.920000pt;}
.y173{bottom:112.872000pt;}
.y222{bottom:113.401333pt;}
.y7e{bottom:115.065333pt;}
.y1b2{bottom:115.865333pt;}
.y258{bottom:118.861333pt;}
.y1eb{bottom:120.037333pt;}
.y10e{bottom:120.708000pt;}
.y4b{bottom:121.277333pt;}
.yb0{bottom:121.849333pt;}
.y1d5{bottom:123.045333pt;}
.y138{bottom:123.378667pt;}
.y17{bottom:124.820000pt;}
.y221{bottom:128.744000pt;}
.y172{bottom:129.609333pt;}
.y7d{bottom:131.802667pt;}
.y1b1{bottom:132.602667pt;}
.y257{bottom:134.202667pt;}
.y1ea{bottom:135.658667pt;}
.y4a{bottom:138.572000pt;}
.yaf{bottom:138.586667pt;}
.y1d4{bottom:139.782667pt;}
.y16{bottom:140.720000pt;}
.y182{bottom:141.152000pt;}
.y10d{bottom:141.722667pt;}
.y220{bottom:144.086667pt;}
.y137{bottom:144.392000pt;}
.y171{bottom:146.346667pt;}
.y7c{bottom:148.540000pt;}
.y1b0{bottom:149.340000pt;}
.y256{bottom:149.545333pt;}
.y1e9{bottom:151.280000pt;}
.yae{bottom:155.324000pt;}
.y49{bottom:155.868000pt;}
.y1d3{bottom:156.520000pt;}
.y15{bottom:156.621333pt;}
.y181{bottom:157.889333pt;}
.y21f{bottom:159.429333pt;}
.y10c{bottom:162.736000pt;}
.y170{bottom:163.084000pt;}
.y255{bottom:164.888000pt;}
.y136{bottom:165.406667pt;}
.y1af{bottom:166.077333pt;}
.y7b{bottom:169.261333pt;}
.yad{bottom:172.061333pt;}
.y14{bottom:172.521333pt;}
.y48{bottom:173.162667pt;}
.y1d2{bottom:173.257333pt;}
.y180{bottom:174.626667pt;}
.y21e{bottom:174.772000pt;}
.y1e8{bottom:174.870667pt;}
.y254{bottom:180.230667pt;}
.y1ae{bottom:182.814667pt;}
.y10b{bottom:183.750667pt;}
.y135{bottom:186.420000pt;}
.yf8{bottom:186.796000pt;}
.y7a{bottom:187.194667pt;}
.ycf{bottom:188.001333pt;}
.y13{bottom:188.421333pt;}
.yac{bottom:188.798667pt;}
.y1d1{bottom:189.994667pt;}
.y21d{bottom:190.113333pt;}
.y47{bottom:190.457333pt;}
.y1e7{bottom:190.493333pt;}
.y17f{bottom:191.364000pt;}
.y16f{bottom:192.920000pt;}
.y253{bottom:195.573333pt;}
.y1ad{bottom:199.552000pt;}
.yf7{bottom:203.533333pt;}
.y12{bottom:204.322667pt;}
.yce{bottom:204.738667pt;}
.y21c{bottom:205.456000pt;}
.yab{bottom:205.536000pt;}
.y1e6{bottom:206.114667pt;}
.y1d0{bottom:206.732000pt;}
.y134{bottom:207.434667pt;}
.y46{bottom:207.753333pt;}
.y17e{bottom:208.101333pt;}
.y16e{bottom:210.016000pt;}
.y252{bottom:210.916000pt;}
.y10a{bottom:214.513333pt;}
.y1ac{bottom:216.289333pt;}
.y79{bottom:217.082667pt;}
.yf6{bottom:220.270667pt;}
.y21b{bottom:220.798667pt;}
.ycd{bottom:221.476000pt;}
.y1e5{bottom:221.736000pt;}
.ye7{bottom:221.874667pt;}
.yaa{bottom:222.273333pt;}
.y1cf{bottom:223.469333pt;}
.y17d{bottom:224.838667pt;}
.y45{bottom:225.048000pt;}
.y251{bottom:226.258667pt;}
.y16d{bottom:227.112000pt;}
.y133{bottom:228.448000pt;}
.y109{bottom:231.609333pt;}
.y1ab{bottom:233.026667pt;}
.y78{bottom:233.820000pt;}
.y21a{bottom:236.141333pt;}
.yf5{bottom:237.008000pt;}
.y1e4{bottom:237.357333pt;}
.ycc{bottom:238.213333pt;}
.ye6{bottom:238.612000pt;}
.ya9{bottom:239.010667pt;}
.y1ce{bottom:240.206667pt;}
.y250{bottom:241.601333pt;}
.y44{bottom:242.344000pt;}
.y16c{bottom:244.208000pt;}
.y17c{bottom:245.560000pt;}
.y108{bottom:248.705333pt;}
.y132{bottom:249.462667pt;}
.y1aa{bottom:249.764000pt;}
.y77{bottom:250.557333pt;}
.y219{bottom:251.484000pt;}
.yf4{bottom:253.745333pt;}
.ycb{bottom:254.950667pt;}
.ye5{bottom:255.349333pt;}
.ya8{bottom:255.748000pt;}
.y1cd{bottom:256.944000pt;}
.y43{bottom:259.638667pt;}
.y1e3{bottom:260.948000pt;}
.y145{bottom:264.145333pt;}
.y11{bottom:264.148000pt;}
.y107{bottom:265.801333pt;}
.y1a9{bottom:266.501333pt;}
.y218{bottom:266.826667pt;}
.y76{bottom:267.294667pt;}
.y131{bottom:270.476000pt;}
.yf3{bottom:270.482667pt;}
.yca{bottom:271.688000pt;}
.ye4{bottom:272.086667pt;}
.y24f{bottom:272.285333pt;}
.y17b{bottom:272.606667pt;}
.y1cc{bottom:273.681333pt;}
.ya7{bottom:276.470667pt;}
.y1e2{bottom:276.570667pt;}
.y42{bottom:276.933333pt;}
.y10{bottom:280.048000pt;}
.y217{bottom:282.169333pt;}
.y106{bottom:282.896000pt;}
.y1a8{bottom:283.238667pt;}
.y75{bottom:284.032000pt;}
.yf2{bottom:287.220000pt;}
.y24e{bottom:287.628000pt;}
.yc9{bottom:288.425333pt;}
.ye3{bottom:288.824000pt;}
.y17a{bottom:289.702667pt;}
.y1cb{bottom:290.417333pt;}
.y130{bottom:291.490667pt;}
.y1e1{bottom:292.192000pt;}
.y41{bottom:294.229333pt;}
.yf{bottom:295.949333pt;}
.y216{bottom:297.512000pt;}
.y1a7{bottom:299.976000pt;}
.y105{bottom:299.992000pt;}
.y74{bottom:300.769333pt;}
.y24d{bottom:302.970667pt;}
.yf1{bottom:303.957333pt;}
.yc8{bottom:305.162667pt;}
.ye2{bottom:305.561333pt;}
.ya6{bottom:306.358667pt;}
.y15e{bottom:306.793681pt;}
.y179{bottom:306.798667pt;}
.y1ca{bottom:307.154667pt;}
.y1e0{bottom:307.813333pt;}
.y40{bottom:311.524000pt;}
.ye{bottom:311.849333pt;}
.y12f{bottom:312.504000pt;}
.y215{bottom:312.854667pt;}
.y1a6{bottom:316.713333pt;}
.y104{bottom:317.088000pt;}
.y73{bottom:317.506667pt;}
.y24c{bottom:318.313333pt;}
.yf0{bottom:320.694667pt;}
.yc7{bottom:321.900000pt;}
.ye1{bottom:322.298667pt;}
.ya5{bottom:323.096000pt;}
.y1df{bottom:323.434667pt;}
.y1c9{bottom:323.892000pt;}
.y178{bottom:323.894667pt;}
.y15d{bottom:325.625136pt;}
.y214{bottom:328.196000pt;}
.y3f{bottom:328.820000pt;}
.y1a5{bottom:333.450667pt;}
.y12e{bottom:333.518667pt;}
.y24b{bottom:333.656000pt;}
.y103{bottom:334.184000pt;}
.y72{bottom:334.244000pt;}
.yd{bottom:337.048000pt;}
.yef{bottom:337.432000pt;}
.yc6{bottom:338.637333pt;}
.ye0{bottom:339.036000pt;}
.y1de{bottom:339.056000pt;}
.ya4{bottom:339.833333pt;}
.y1c8{bottom:340.629333pt;}
.y177{bottom:340.990667pt;}
.y213{bottom:343.538667pt;}
.y15c{bottom:344.368414pt;}
.y24a{bottom:348.998667pt;}
.y1a4{bottom:350.188000pt;}
.y71{bottom:350.981333pt;}
.y102{bottom:351.280000pt;}
.yc{bottom:352.948000pt;}
.y12d{bottom:354.532000pt;}
.yc5{bottom:355.374667pt;}
.ydf{bottom:355.773333pt;}
.ya3{bottom:356.570667pt;}
.y1c7{bottom:357.366667pt;}
.y176{bottom:358.086667pt;}
.yee{bottom:358.153333pt;}
.y212{bottom:358.881333pt;}
.y3e{bottom:362.054667pt;}
.y1dd{bottom:362.648000pt;}
.y15b{bottom:363.199869pt;}
.y249{bottom:364.341333pt;}
.y1a3{bottom:366.925333pt;}
.y70{bottom:367.718667pt;}
.yc4{bottom:372.112000pt;}
.yde{bottom:372.510667pt;}
.ya2{bottom:373.308000pt;}
.y1c6{bottom:374.104000pt;}
.y211{bottom:374.224000pt;}
.y175{bottom:375.182667pt;}
.y12c{bottom:375.546667pt;}
.yb{bottom:376.818667pt;}
.y1dc{bottom:378.688000pt;}
.y3d{bottom:379.349333pt;}
.y248{bottom:379.684000pt;}
.y15a{bottom:381.943147pt;}
.y101{bottom:382.988000pt;}
.y1a2{bottom:383.662667pt;}
.y6f{bottom:384.456000pt;}
.yed{bottom:385.200000pt;}
.yc3{bottom:388.849333pt;}
.ydd{bottom:389.248000pt;}
.y210{bottom:389.566667pt;}
.ya1{bottom:390.045333pt;}
.y1c5{bottom:390.841333pt;}
.ya{bottom:392.720000pt;}
.y1db{bottom:394.726667pt;}
.y247{bottom:395.025333pt;}
.y12b{bottom:396.560000pt;}
.y3c{bottom:396.645333pt;}
.y100{bottom:400.084000pt;}
.y1a1{bottom:400.400000pt;}
.y159{bottom:400.774601pt;}
.y6e{bottom:401.193333pt;}
.yec{bottom:402.296000pt;}
.y20f{bottom:404.909333pt;}
.yc2{bottom:405.586667pt;}
.ydc{bottom:405.985333pt;}
.ya0{bottom:406.782667pt;}
.y1c4{bottom:407.578667pt;}
.y9{bottom:408.620000pt;}
.y246{bottom:410.368000pt;}
.y1da{bottom:410.766667pt;}
.y3b{bottom:413.940000pt;}
.y1a0{bottom:417.136000pt;}
.yff{bottom:417.180000pt;}
.y12a{bottom:417.574667pt;}
.y6d{bottom:417.929333pt;}
.yeb{bottom:419.392000pt;}
.y158{bottom:419.606056pt;}
.y20e{bottom:420.252000pt;}
.yc1{bottom:422.324000pt;}
.ydb{bottom:422.722667pt;}
.y9f{bottom:423.518667pt;}
.y1c3{bottom:424.316000pt;}
.y8{bottom:424.520000pt;}
.y245{bottom:425.710667pt;}
.y1d9{bottom:426.806667pt;}
.y3a{bottom:431.236000pt;}
.y19f{bottom:433.873333pt;}
.yfe{bottom:434.276000pt;}
.y6c{bottom:434.666667pt;}
.y20d{bottom:435.594667pt;}
.yea{bottom:436.488000pt;}
.y25b{bottom:437.002667pt;}
.y157{bottom:438.350804pt;}
.y129{bottom:438.588000pt;}
.yda{bottom:439.460000pt;}
.y9e{bottom:440.256000pt;}
.y7{bottom:440.421333pt;}
.y1c2{bottom:441.053333pt;}
.y1d8{bottom:442.846667pt;}
.yc0{bottom:443.046667pt;}
.y39{bottom:448.530667pt;}
.y19e{bottom:450.610667pt;}
.y20c{bottom:450.936000pt;}
.yfd{bottom:451.370667pt;}
.y6b{bottom:451.404000pt;}
.y25a{bottom:452.344000pt;}
.ye9{bottom:453.584000pt;}
.yd9{bottom:456.197333pt;}
.y6{bottom:456.321333pt;}
.y244{bottom:456.396000pt;}
.y156{bottom:457.182258pt;}
.y1c1{bottom:457.790667pt;}
.y1d7{bottom:458.886667pt;}
.y128{bottom:459.602667pt;}
.y9d{bottom:460.978667pt;}
.y20b{bottom:466.278667pt;}
.y19d{bottom:467.348000pt;}
.y259{bottom:467.686667pt;}
.y6a{bottom:468.141333pt;}
.yfc{bottom:468.466667pt;}
.ye8{bottom:470.680000pt;}
.y243{bottom:471.738667pt;}
.y5{bottom:472.221333pt;}
.ybf{bottom:472.934667pt;}
.y1c0{bottom:474.528000pt;}
.y155{bottom:476.013713pt;}
.y127{bottom:480.616000pt;}
.y20a{bottom:481.621333pt;}
.y38{bottom:482.829333pt;}
.y19c{bottom:484.085333pt;}
.y69{bottom:484.878667pt;}
.yfb{bottom:485.562667pt;}
.y242{bottom:487.081333pt;}
.y4{bottom:488.122667pt;}
.ybe{bottom:489.672000pt;}
.y9c{bottom:490.866667pt;}
.y1bf{bottom:491.265333pt;}
.y209{bottom:496.964000pt;}
.y37{bottom:497.174667pt;}
.y154{bottom:499.156973pt;}
.y19b{bottom:500.822667pt;}
.y68{bottom:501.616000pt;}
.y126{bottom:501.630667pt;}
.y241{bottom:502.424000pt;}
.yfa{bottom:502.658667pt;}
.y3{bottom:504.022667pt;}
.ybd{bottom:506.409333pt;}
.y9b{bottom:507.604000pt;}
.y1be{bottom:508.002667pt;}
.y208{bottom:512.306667pt;}
.y36{bottom:515.378667pt;}
.y19a{bottom:517.560000pt;}
.y240{bottom:517.766667pt;}
.y67{bottom:518.353333pt;}
.yf9{bottom:519.754667pt;}
.y2{bottom:519.922667pt;}
.y125{bottom:522.644000pt;}
.ybc{bottom:523.145333pt;}
.y9a{bottom:524.341333pt;}
.y1bd{bottom:524.740000pt;}
.y35{bottom:525.868000pt;}
.y207{bottom:527.649333pt;}
.y23f{bottom:533.108000pt;}
.y199{bottom:534.297333pt;}
.y66{bottom:535.090667pt;}
.y1{bottom:535.824000pt;}
.y153{bottom:537.260973pt;}
.ybb{bottom:539.882667pt;}
.y34{bottom:540.213333pt;}
.y99{bottom:541.078667pt;}
.y1bc{bottom:541.477333pt;}
.y206{bottom:542.992000pt;}
.y124{bottom:543.658667pt;}
.y23e{bottom:548.450667pt;}
.y198{bottom:551.034667pt;}
.y65{bottom:551.828000pt;}
.yba{bottom:556.620000pt;}
.y98{bottom:557.816000pt;}
.y152{bottom:557.852973pt;}
.y1bb{bottom:558.214667pt;}
.y205{bottom:558.334667pt;}
.y33{bottom:558.417333pt;}
.y144{bottom:563.176000pt;}
.y23d{bottom:563.793333pt;}
.y123{bottom:564.672000pt;}
.y197{bottom:567.772000pt;}
.y64{bottom:568.565333pt;}
.y32{bottom:568.906667pt;}
.yb9{bottom:573.357333pt;}
.y204{bottom:573.677333pt;}
.y97{bottom:574.553333pt;}
.y1ba{bottom:574.952000pt;}
.y151{bottom:578.356973pt;}
.y23c{bottom:579.136000pt;}
.y143{bottom:579.913333pt;}
.y196{bottom:584.509333pt;}
.y63{bottom:585.302667pt;}
.y122{bottom:585.685333pt;}
.y31{bottom:587.110667pt;}
.y203{bottom:589.018667pt;}
.yb8{bottom:590.094667pt;}
.y96{bottom:591.290667pt;}
.y1b9{bottom:591.689333pt;}
.y23b{bottom:594.478667pt;}
.y142{bottom:596.650667pt;}
.y150{bottom:598.860973pt;}
.y195{bottom:601.246667pt;}
.y30{bottom:601.456000pt;}
.y62{bottom:602.040000pt;}
.y202{bottom:604.361333pt;}
.y121{bottom:606.700000pt;}
.yb7{bottom:606.832000pt;}
.y95{bottom:608.028000pt;}
.y1b8{bottom:608.426667pt;}
.y23a{bottom:609.821333pt;}
.y2f{bottom:611.945333pt;}
.y141{bottom:613.388000pt;}
.y194{bottom:617.984000pt;}
.y61{bottom:618.777333pt;}
.y14f{bottom:619.364973pt;}
.y201{bottom:619.704000pt;}
.yb6{bottom:623.569333pt;}
.y94{bottom:624.765333pt;}
.y1b7{bottom:625.164000pt;}
.y120{bottom:627.713333pt;}
.y140{bottom:630.125333pt;}
.y2e{bottom:630.149333pt;}
.y193{bottom:634.721333pt;}
.y200{bottom:635.046667pt;}
.y60{bottom:635.514667pt;}
.y14e{bottom:639.868973pt;}
.yb5{bottom:640.306667pt;}
.y239{bottom:640.506667pt;}
.y2d{bottom:640.637333pt;}
.y93{bottom:641.502667pt;}
.y1b6{bottom:641.901333pt;}
.y13f{bottom:646.862667pt;}
.y11f{bottom:648.728000pt;}
.y1ff{bottom:650.389333pt;}
.y192{bottom:651.458667pt;}
.y5f{bottom:652.252000pt;}
.y2c{bottom:654.984000pt;}
.y238{bottom:655.848000pt;}
.yb4{bottom:657.044000pt;}
.y1b5{bottom:658.638667pt;}
.y14d{bottom:660.460973pt;}
.y92{bottom:662.225333pt;}
.y13e{bottom:663.600000pt;}
.y1fe{bottom:665.732000pt;}
.y191{bottom:668.196000pt;}
.y5e{bottom:668.989333pt;}
.y11e{bottom:669.741333pt;}
.y237{bottom:671.190667pt;}
.y2b{bottom:673.188000pt;}
.yd8{bottom:673.781333pt;}
.y1b4{bottom:675.376000pt;}
.yb3{bottom:677.766667pt;}
.y13d{bottom:680.337333pt;}
.y14c{bottom:680.964973pt;}
.y1fd{bottom:681.074667pt;}
.y190{bottom:684.933333pt;}
.y5d{bottom:685.726667pt;}
.y236{bottom:686.533333pt;}
.y2a{bottom:687.533333pt;}
.yd7{bottom:690.518667pt;}
.y11d{bottom:690.756000pt;}
.y91{bottom:692.113333pt;}
.yb2{bottom:695.700000pt;}
.y1fc{bottom:696.417333pt;}
.y13c{bottom:697.074667pt;}
.y29{bottom:698.022667pt;}
.y14b{bottom:701.468973pt;}
.y235{bottom:701.876000pt;}
.y5c{bottom:702.464000pt;}
.y18f{bottom:705.656000pt;}
.yd6{bottom:707.256000pt;}
.y90{bottom:708.850667pt;}
.y1fb{bottom:711.758667pt;}
.y11c{bottom:711.769333pt;}
.y28{bottom:712.369333pt;}
.y13b{bottom:713.812000pt;}
.y234{bottom:717.218667pt;}
.y5b{bottom:719.201333pt;}
.y14a{bottom:721.972973pt;}
.yd5{bottom:723.993333pt;}
.y8f{bottom:725.588000pt;}
.y1fa{bottom:727.101333pt;}
.y27{bottom:730.573333pt;}
.y233{bottom:732.561333pt;}
.y11b{bottom:732.784000pt;}
.y13a{bottom:734.533333pt;}
.y5a{bottom:735.938667pt;}
.yd4{bottom:740.730667pt;}
.y26{bottom:741.061333pt;}
.y8e{bottom:742.324000pt;}
.y1f9{bottom:742.444000pt;}
.y149{bottom:742.477405pt;}
.y18e{bottom:743.277333pt;}
.y232{bottom:747.904000pt;}
.y59{bottom:752.676000pt;}
.y11a{bottom:753.797333pt;}
.y25{bottom:755.408000pt;}
.yd3{bottom:757.468000pt;}
.y1f8{bottom:757.786667pt;}
.y8d{bottom:759.061333pt;}
.y231{bottom:763.246667pt;}
.y18d{bottom:764.290667pt;}
.y58{bottom:769.413333pt;}
.y1f7{bottom:773.129333pt;}
.y24{bottom:773.612000pt;}
.yd2{bottom:774.205333pt;}
.y119{bottom:774.812000pt;}
.y8c{bottom:775.798667pt;}
.y230{bottom:778.589333pt;}
.y18c{bottom:785.304000pt;}
.y57{bottom:786.150667pt;}
.y1f6{bottom:788.472000pt;}
.y8b{bottom:792.536000pt;}
.y22f{bottom:793.930667pt;}
.yd1{bottom:794.928000pt;}
.y118{bottom:795.825333pt;}
.y147{bottom:798.181105pt;}
.y1f5{bottom:803.814667pt;}
.y18b{bottom:806.318667pt;}
.y56{bottom:806.872000pt;}
.y146{bottom:807.596973pt;}
.y8a{bottom:809.273333pt;}
.yd0{bottom:812.860000pt;}
.y23{bottom:813.324000pt;}
.y117{bottom:816.840000pt;}
.y1f4{bottom:819.157333pt;}
.y22e{bottom:824.616000pt;}
.y89{bottom:826.010667pt;}
.y18a{bottom:827.332000pt;}
.y22{bottom:830.061333pt;}
.y1f3{bottom:834.500000pt;}
.y116{bottom:837.853333pt;}
.y22d{bottom:839.958667pt;}
.y88{bottom:842.748000pt;}
.y21{bottom:846.798667pt;}
.y189{bottom:848.346667pt;}
.y1f2{bottom:853.826667pt;}
.y22c{bottom:855.301333pt;}
.y115{bottom:858.868000pt;}
.y87{bottom:859.485333pt;}
.y20{bottom:863.536000pt;}
.y188{bottom:869.360000pt;}
.y22b{bottom:870.644000pt;}
.y55{bottom:873.672000pt;}
.y86{bottom:876.222667pt;}
.y114{bottom:879.881333pt;}
.y1f1{bottom:883.714667pt;}
.y22a{bottom:885.986667pt;}
.y187{bottom:890.374667pt;}
.y85{bottom:892.960000pt;}
.y1f{bottom:896.213333pt;}
.y1f0{bottom:899.336000pt;}
.y113{bottom:900.896000pt;}
.y229{bottom:901.329333pt;}
.y54{bottom:906.908000pt;}
.y84{bottom:909.697333pt;}
.y186{bottom:911.388000pt;}
.y1ef{bottom:914.957333pt;}
.y228{bottom:916.670667pt;}
.y1e{bottom:921.320000pt;}
.y112{bottom:921.909333pt;}
.y53{bottom:924.202667pt;}
.y83{bottom:926.434667pt;}
.y227{bottom:932.013333pt;}
.y185{bottom:932.402667pt;}
.y1ee{bottom:938.549333pt;}
.y52{bottom:941.498667pt;}
.y111{bottom:942.924000pt;}
.y82{bottom:943.172000pt;}
.y1d{bottom:946.425333pt;}
.y226{bottom:947.356000pt;}
.y1ed{bottom:954.170667pt;}
.y51{bottom:958.793333pt;}
.y81{bottom:959.909333pt;}
.y184{bottom:960.508000pt;}
.y225{bottom:962.698667pt;}
.y110{bottom:963.937333pt;}
.y1c{bottom:971.530667pt;}
.y50{bottom:976.089333pt;}
.y80{bottom:976.646667pt;}
.y183{bottom:977.604000pt;}
.y1ec{bottom:977.762667pt;}
.y224{bottom:978.041333pt;}
.y4f{bottom:993.384000pt;}
.y10f{bottom:994.700000pt;}
.y1a{bottom:1010.186667pt;}
.y4e{bottom:1047.118667pt;}
.h9{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.ha{height:30.945242pt;}
.hd{height:31.157778pt;}
.hc{height:33.186336pt;}
.h14{height:34.430976pt;}
.hb{height:34.813542pt;}
.h13{height:35.052646pt;}
.h11{height:36.873667pt;}
.h10{height:37.087439pt;}
.he{height:38.256384pt;}
.hf{height:38.681455pt;}
.h6{height:38.947124pt;}
.h18{height:42.308406pt;}
.h16{height:43.295656pt;}
.h1c{height:43.660390pt;}
.h4{height:44.738497pt;}
.h8{height:48.360277pt;}
.h12{height:48.688666pt;}
.h19{height:48.829687pt;}
.h17{height:54.363719pt;}
.h1b{height:68.066336pt;}
.h1a{height:68.071669pt;}
.h7{height:68.861952pt;}
.h5{height:82.466667pt;}
.h15{height:278.015467pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:154.596137pt;}
.w3{width:489.214000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6c{left:-192.959067pt;}
.x6d{left:-1.735067pt;}
.x0{left:0.000000pt;}
.x6e{left:29.416830pt;}
.x1{left:47.621333pt;}
.x2{left:50.159690pt;}
.x6b{left:55.592000pt;}
.xa0{left:76.309333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x71{left:234.972000pt;}
.x72{left:237.961333pt;}
.x4{left:239.924000pt;}
.x58{left:242.160000pt;}
.x65{left:245.077333pt;}
.xc{left:250.204000pt;}
.x97{left:251.904000pt;}
.x66{left:259.310667pt;}
.x34{left:261.110667pt;}
.x21{left:265.318667pt;}
.x83{left:269.149333pt;}
.x35{left:274.393333pt;}
.x79{left:275.418667pt;}
.x54{left:276.814667pt;}
.x22{left:278.602667pt;}
.x89{left:280.693333pt;}
.x84{left:282.433333pt;}
.x23{left:285.230667pt;}
.x93{left:287.361333pt;}
.xa{left:288.889333pt;}
.x55{left:291.649333pt;}
.x24{left:298.514667pt;}
.x94{left:300.644000pt;}
.xb{left:302.034667pt;}
.x95{left:303.982667pt;}
.x75{left:306.785333pt;}
.x6{left:311.036000pt;}
.x76{left:313.426667pt;}
.x96{left:317.265333pt;}
.x87{left:319.740000pt;}
.xd{left:321.318667pt;}
.x7{left:323.848000pt;}
.x6a{left:326.658667pt;}
.xe{left:327.960000pt;}
.x88{left:333.022667pt;}
.x16{left:352.586667pt;}
.x38{left:353.865333pt;}
.x59{left:356.040000pt;}
.x17{left:359.229333pt;}
.x18{left:365.810667pt;}
.x39{left:367.149333pt;}
.x3e{left:370.706667pt;}
.x19{left:372.453333pt;}
.x3a{left:373.890667pt;}
.x98{left:380.142667pt;}
.x4d{left:381.122667pt;}
.x3f{left:383.989333pt;}
.x3b{left:387.174667pt;}
.x40{left:390.498667pt;}
.x12{left:393.053333pt;}
.x4e{left:394.406667pt;}
.x5a{left:396.149333pt;}
.x13{left:399.694667pt;}
.x27{left:403.073333pt;}
.x56{left:406.452000pt;}
.x5b{left:410.402667pt;}
.x28{left:416.357333pt;}
.x9e{left:420.198667pt;}
.x81{left:423.592000pt;}
.x85{left:424.568000pt;}
.x7c{left:429.908000pt;}
.x9f{left:433.481333pt;}
.x86{left:437.850667pt;}
.x7d{left:443.190667pt;}
.x99{left:448.657333pt;}
.x7a{left:453.296000pt;}
.x9a{left:461.941333pt;}
.x7b{left:464.221333pt;}
.x9b{left:465.328000pt;}
.x44{left:473.594667pt;}
.x9c{left:478.612000pt;}
.x8b{left:482.210667pt;}
.x45{left:486.878667pt;}
.x25{left:487.960000pt;}
.x46{left:490.265333pt;}
.x8c{left:495.494667pt;}
.x3c{left:497.984000pt;}
.x26{left:501.244000pt;}
.x47{left:503.549333pt;}
.x67{left:506.174667pt;}
.x3d{left:511.266667pt;}
.x32{left:515.186667pt;}
.x50{left:520.493333pt;}
.x68{left:521.965333pt;}
.x2b{left:525.633333pt;}
.x33{left:528.470667pt;}
.x29{left:535.125333pt;}
.x51{left:536.366667pt;}
.x2c{left:538.917333pt;}
.x48{left:541.985333pt;}
.x2a{left:543.925333pt;}
.x82{left:544.868000pt;}
.x49{left:557.412000pt;}
.x73{left:558.748000pt;}
.x30{left:560.708000pt;}
.x74{left:565.390667pt;}
.x8{left:567.468000pt;}
.x9d{left:572.704000pt;}
.x31{left:573.858667pt;}
.x8a{left:577.281333pt;}
.x9{left:580.281333pt;}
.x4c{left:581.498667pt;}
.x5c{left:585.016000pt;}
.xf{left:587.100000pt;}
.x52{left:591.125333pt;}
.x61{left:594.636000pt;}
.x5d{left:599.400000pt;}
.x53{left:606.997333pt;}
.x62{left:608.873333pt;}
.x4f{left:613.568000pt;}
.x63{left:616.608000pt;}
.x5e{left:621.036000pt;}
.x14{left:622.005333pt;}
.x1d{left:623.345333pt;}
.x2e{left:626.336000pt;}
.x15{left:628.648000pt;}
.x64{left:632.833333pt;}
.x5f{left:635.278667pt;}
.x1e{left:636.629333pt;}
.x2f{left:639.486667pt;}
.x1a{left:641.714667pt;}
.x1f{left:643.212000pt;}
.x1b{left:645.094667pt;}
.x91{left:651.197333pt;}
.x41{left:652.148000pt;}
.x42{left:655.402667pt;}
.x20{left:656.494667pt;}
.x1c{left:658.378667pt;}
.x77{left:661.504000pt;}
.x69{left:664.506667pt;}
.x43{left:668.686667pt;}
.x92{left:670.800000pt;}
.x78{left:674.920000pt;}
.x7f{left:683.322667pt;}
.x8d{left:689.008000pt;}
.x8e{left:693.516000pt;}
.x57{left:695.481333pt;}
.x80{left:697.886667pt;}
.x6f{left:702.688000pt;}
.x10{left:705.405333pt;}
.x8f{left:706.798667pt;}
.x4a{left:709.418667pt;}
.x11{left:712.046667pt;}
.x70{left:714.644000pt;}
.x90{left:723.466667pt;}
.x4b{left:725.458667pt;}
.x7e{left:727.152000pt;}
.x36{left:728.046667pt;}
.x60{left:734.774667pt;}
.x2d{left:740.249333pt;}
.x37{left:741.330667pt;}
}




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