
    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_3a7c04b52fad6524f413d4b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_0afd94722931fd7901e4844a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b8c204103ea10e306c972467.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6e9511a35052e69cf797d41c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dbde48a45213d8c83ec7aac2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_35e01a2af045417fea3e00c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.827000;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_a7a448183d0eb83747644fc0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948000;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_e53230a7d6ddc107c7ba18ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.956543;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_c8f3095e32e8beb201c8f1d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.817000;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_0d22ff76c0358caf0808bdd9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.817000;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_c8f3095e32e8beb201c8f1d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.817000;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_c8f3095e32e8beb201c8f1d8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.817000;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;}
.m2{transform:matrix(0.127267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127267,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.169776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169776,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.170331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170331,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.170408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170408,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247046,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247819,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247820,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);}
.m5{transform:matrix(0.252126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252126,0.000000,0.000000,0.250000,0,0);}
.m1{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.820000px;}
.v6{vertical-align:-15.000000px;}
.vd{vertical-align:-13.500000px;}
.v3{vertical-align:-3.961800px;}
.v5{vertical-align:-2.181000px;}
.ve{vertical-align:-1.090800px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.998600px;}
.v4{vertical-align:3.961800px;}
.vb{vertical-align:15.000000px;}
.va{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.v8{vertical-align:28.909800px;}
.v7{vertical-align:30.000000px;}
.vc{vertical-align:51.093000px;}
.ls55{letter-spacing:-5.238000px;}
.ls58{letter-spacing:-4.050000px;}
.ls2c{letter-spacing:-1.782000px;}
.ls1a{letter-spacing:-1.566000px;}
.ls19{letter-spacing:-1.404000px;}
.ls4b{letter-spacing:-1.296000px;}
.ls27{letter-spacing:-1.026000px;}
.ls59{letter-spacing:-0.918000px;}
.ls50{letter-spacing:-0.840000px;}
.ls1e{letter-spacing:-0.780000px;}
.ls2f{letter-spacing:-0.756000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.702000px;}
.ls5{letter-spacing:-0.663000px;}
.ls3f{letter-spacing:-0.600000px;}
.ls5a{letter-spacing:-0.594000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.526500px;}
.ls3{letter-spacing:-0.510000px;}
.ls30{letter-spacing:-0.486000px;}
.ls1b{letter-spacing:-0.424565px;}
.ls20{letter-spacing:-0.420000px;}
.ls23{letter-spacing:-0.416913px;}
.ls6{letter-spacing:-0.408000px;}
.ls54{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.330000px;}
.ls56{letter-spacing:-0.324000px;}
.ls18{letter-spacing:-0.270000px;}
.ls4{letter-spacing:-0.255000px;}
.ls9{letter-spacing:-0.240000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.202500px;}
.ls10{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.162000px;}
.ls12{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.060000px;}
.ls57{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.010800px;}
.ls7{letter-spacing:0.051000px;}
.ls52{letter-spacing:0.054000px;}
.lsd{letter-spacing:0.060000px;}
.ls35{letter-spacing:0.063600px;}
.ls36{letter-spacing:0.064200px;}
.ls37{letter-spacing:0.085200px;}
.ls34{letter-spacing:0.085800px;}
.ls38{letter-spacing:0.086400px;}
.ls51{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.124200px;}
.lsc{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.240000px;}
.ls2b{letter-spacing:0.243000px;}
.ls45{letter-spacing:0.261600px;}
.ls46{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.300000px;}
.ls3d{letter-spacing:0.307200px;}
.lse{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.480000px;}
.ls4e{letter-spacing:0.487061px;}
.ls14{letter-spacing:0.510000px;}
.ls1{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.780000px;}
.ls3e{letter-spacing:0.945000px;}
.ls16{letter-spacing:2.343000px;}
.ls47{letter-spacing:2.343600px;}
.ls53{letter-spacing:2.472600px;}
.ls25{letter-spacing:5.479428px;}
.ls3c{letter-spacing:8.827977px;}
.ls4f{letter-spacing:10.715338px;}
.ls33{letter-spacing:15.281533px;}
.ls22{letter-spacing:30.017837px;}
.ls21{letter-spacing:39.621758px;}
.ls39{letter-spacing:46.392389px;}
.ls4d{letter-spacing:97.076987px;}
.ls1c{letter-spacing:135.800276px;}
.ls31{letter-spacing:158.233877px;}
.ls3b{letter-spacing:163.713311px;}
.ls32{letter-spacing:175.463653px;}
.ls3a{letter-spacing:185.934850px;}
.ls17{letter-spacing:193.373739px;}
.ls42{letter-spacing:215.440800px;}
.ls40{letter-spacing:226.170600px;}
.ls48{letter-spacing:244.499400px;}
.ls49{letter-spacing:253.491000px;}
.ls4a{letter-spacing:257.458800px;}
.ls44{letter-spacing:271.697400px;}
.ls43{letter-spacing:282.042600px;}
.ls24{letter-spacing:302.858532px;}
.ls41{letter-spacing:326.254200px;}
.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;}
}
.ws7f{word-spacing:-302.858532px;}
.ws59{word-spacing:-203.790720px;}
.ws9d{word-spacing:-191.658425px;}
.ws9b{word-spacing:-92.791171px;}
.ws5b{word-spacing:-89.140538px;}
.ws66{word-spacing:-44.191437px;}
.wsd3{word-spacing:-38.643581px;}
.ws75{word-spacing:-32.940000px;}
.wsbf{word-spacing:-29.646000px;}
.wsd5{word-spacing:-26.447401px;}
.ws69{word-spacing:-24.579999px;}
.wsd7{word-spacing:-14.322000px;}
.ws25{word-spacing:-14.220000px;}
.ws7{word-spacing:-13.992000px;}
.ws24{word-spacing:-13.920000px;}
.ws3f{word-spacing:-13.860000px;}
.ws23{word-spacing:-13.740000px;}
.ws76{word-spacing:-13.620000px;}
.ws5c{word-spacing:-12.960000px;}
.wsd6{word-spacing:-12.900000px;}
.ws6c{word-spacing:-12.366000px;}
.ws50{word-spacing:-12.258000px;}
.wsdf{word-spacing:-12.042000px;}
.wsee{word-spacing:-11.988000px;}
.ws6a{word-spacing:-11.556000px;}
.ws8a{word-spacing:-11.502000px;}
.ws6{word-spacing:-11.118000px;}
.wsc3{word-spacing:-11.070000px;}
.ws56{word-spacing:-10.800000px;}
.ws4{word-spacing:-10.725750px;}
.ws74{word-spacing:-10.584000px;}
.ws5d{word-spacing:-10.305000px;}
.ws65{word-spacing:-10.215000px;}
.ws3{word-spacing:-9.540000px;}
.ws2{word-spacing:-9.522000px;}
.ws71{word-spacing:-9.436500px;}
.ws1{word-spacing:-9.397800px;}
.ws5{word-spacing:-9.274500px;}
.wsbe{word-spacing:-9.193500px;}
.ws6f{word-spacing:-9.031500px;}
.ws6d{word-spacing:-8.991000px;}
.ws70{word-spacing:-8.667000px;}
.wsde{word-spacing:-7.128000px;}
.wsf{word-spacing:-3.915000px;}
.ws40{word-spacing:-0.510000px;}
.ws2f{word-spacing:-0.060000px;}
.ws58{word-spacing:-0.045489px;}
.ws0{word-spacing:0.000000px;}
.ws44{word-spacing:0.120000px;}
.wsbc{word-spacing:0.180000px;}
.wsab{word-spacing:0.240000px;}
.ws61{word-spacing:0.300000px;}
.ws46{word-spacing:0.360000px;}
.ws64{word-spacing:0.420000px;}
.wse7{word-spacing:0.432000px;}
.ws38{word-spacing:0.480000px;}
.ws97{word-spacing:0.486000px;}
.ws15{word-spacing:0.510000px;}
.ws9c{word-spacing:0.529679px;}
.ws63{word-spacing:0.540000px;}
.ws77{word-spacing:0.600000px;}
.ws88{word-spacing:0.660000px;}
.wsef{word-spacing:0.702000px;}
.ws10{word-spacing:0.720000px;}
.ws8{word-spacing:0.768000px;}
.wse8{word-spacing:0.810000px;}
.ws83{word-spacing:0.900000px;}
.wse6{word-spacing:0.918000px;}
.wsa3{word-spacing:1.020000px;}
.ws31{word-spacing:1.080000px;}
.wsea{word-spacing:1.134000px;}
.ws41{word-spacing:1.140000px;}
.ws2c{word-spacing:1.200000px;}
.wsb0{word-spacing:1.260000px;}
.ws29{word-spacing:1.320000px;}
.wsf1{word-spacing:1.350000px;}
.ws33{word-spacing:1.380000px;}
.wsd0{word-spacing:1.404000px;}
.ws47{word-spacing:1.440000px;}
.ws1a{word-spacing:1.479000px;}
.ws4a{word-spacing:1.500000px;}
.wsba{word-spacing:1.560000px;}
.wsf2{word-spacing:1.566000px;}
.ws7c{word-spacing:1.740000px;}
.ws2b{word-spacing:1.800000px;}
.ws1c{word-spacing:1.836000px;}
.ws48{word-spacing:1.860000px;}
.wsb{word-spacing:1.863000px;}
.ws11{word-spacing:1.890000px;}
.wsed{word-spacing:1.944000px;}
.ws9e{word-spacing:1.980000px;}
.ws43{word-spacing:2.040000px;}
.wsac{word-spacing:2.100000px;}
.wsc{word-spacing:2.160000px;}
.ws1e{word-spacing:2.193000px;}
.wsd{word-spacing:2.208000px;}
.ws30{word-spacing:2.280000px;}
.ws1d{word-spacing:2.295000px;}
.wscf{word-spacing:2.322000px;}
.ws1f{word-spacing:2.340000px;}
.ws5f{word-spacing:2.430000px;}
.ws84{word-spacing:2.460000px;}
.ws14{word-spacing:2.484000px;}
.wse{word-spacing:2.520000px;}
.ws81{word-spacing:2.565000px;}
.ws2a{word-spacing:2.640000px;}
.ws22{word-spacing:2.700000px;}
.wsb8{word-spacing:2.760000px;}
.ws12{word-spacing:2.808000px;}
.ws13{word-spacing:2.835000px;}
.ws35{word-spacing:2.838000px;}
.wse1{word-spacing:2.862000px;}
.wsa2{word-spacing:2.880000px;}
.ws96{word-spacing:2.916000px;}
.wsa1{word-spacing:2.940000px;}
.ws28{word-spacing:3.000000px;}
.wseb{word-spacing:3.024000px;}
.ws99{word-spacing:3.120000px;}
.ws79{word-spacing:3.180000px;}
.wse2{word-spacing:3.186000px;}
.ws16{word-spacing:3.213000px;}
.wsb6{word-spacing:3.240000px;}
.wse4{word-spacing:3.294000px;}
.wsd9{word-spacing:3.300000px;}
.wse5{word-spacing:3.348000px;}
.ws5e{word-spacing:3.360000px;}
.ws27{word-spacing:3.420000px;}
.ws3a{word-spacing:3.480000px;}
.ws45{word-spacing:3.540000px;}
.wse9{word-spacing:3.564000px;}
.wsdc{word-spacing:3.600000px;}
.wse0{word-spacing:3.618000px;}
.ws62{word-spacing:3.660000px;}
.ws9{word-spacing:3.684600px;}
.ws49{word-spacing:3.720000px;}
.ws18{word-spacing:3.723000px;}
.wsa{word-spacing:3.726000px;}
.ws7a{word-spacing:3.840000px;}
.wsb5{word-spacing:3.900000px;}
.wsdb{word-spacing:4.020000px;}
.ws20{word-spacing:4.080000px;}
.ws9f{word-spacing:4.140000px;}
.wsaa{word-spacing:4.200000px;}
.ws7b{word-spacing:4.260000px;}
.ws98{word-spacing:4.266000px;}
.wsa4{word-spacing:4.320000px;}
.ws4b{word-spacing:4.380000px;}
.wsad{word-spacing:4.440000px;}
.ws2e{word-spacing:4.560000px;}
.ws1b{word-spacing:4.590000px;}
.ws78{word-spacing:4.620000px;}
.ws17{word-spacing:4.641000px;}
.ws3b{word-spacing:4.680000px;}
.ws34{word-spacing:4.740000px;}
.ws3d{word-spacing:4.800000px;}
.ws26{word-spacing:4.860000px;}
.wse3{word-spacing:4.914000px;}
.ws4e{word-spacing:4.920000px;}
.ws21{word-spacing:4.980000px;}
.wsd1{word-spacing:5.022000px;}
.ws19{word-spacing:5.100000px;}
.wsa0{word-spacing:5.160000px;}
.ws32{word-spacing:5.220000px;}
.ws89{word-spacing:5.340000px;}
.ws37{word-spacing:5.400000px;}
.ws2d{word-spacing:5.460000px;}
.wsf0{word-spacing:5.508000px;}
.ws36{word-spacing:5.640000px;}
.ws4d{word-spacing:5.700000px;}
.wsb9{word-spacing:5.760000px;}
.wsbb{word-spacing:5.820000px;}
.wsb1{word-spacing:5.880000px;}
.wsaf{word-spacing:5.940000px;}
.wsdd{word-spacing:6.000000px;}
.wsb7{word-spacing:6.060000px;}
.ws60{word-spacing:6.180000px;}
.ws4c{word-spacing:6.240000px;}
.ws87{word-spacing:6.360000px;}
.ws82{word-spacing:6.420000px;}
.wsec{word-spacing:6.534000px;}
.ws39{word-spacing:6.600000px;}
.ws42{word-spacing:6.660000px;}
.ws85{word-spacing:6.720000px;}
.wsda{word-spacing:6.840000px;}
.wsb2{word-spacing:6.960000px;}
.ws86{word-spacing:7.200000px;}
.ws3c{word-spacing:7.320000px;}
.ws9a{word-spacing:7.330835px;}
.wsae{word-spacing:7.500000px;}
.wsa7{word-spacing:8.712271px;}
.wsa6{word-spacing:14.817254px;}
.ws67{word-spacing:17.675682px;}
.wsa8{word-spacing:17.929926px;}
.wsd4{word-spacing:34.453463px;}
.ws95{word-spacing:47.991000px;}
.ws5a{word-spacing:64.885724px;}
.ws72{word-spacing:73.169400px;}
.wsa9{word-spacing:73.217415px;}
.ws94{word-spacing:73.910400px;}
.ws91{word-spacing:73.911000px;}
.ws6e{word-spacing:74.976600px;}
.ws68{word-spacing:76.676257px;}
.ws6b{word-spacing:90.859800px;}
.ws8c{word-spacing:98.119800px;}
.ws73{word-spacing:99.607800px;}
.ws93{word-spacing:99.830400px;}
.ws8e{word-spacing:99.831000px;}
.ws8d{word-spacing:106.465800px;}
.ws8b{word-spacing:143.437200px;}
.ws90{word-spacing:166.239600px;}
.ws8f{word-spacing:167.540400px;}
.ws92{word-spacing:193.460400px;}
.wsd2{word-spacing:210.612870px;}
.wsc4{word-spacing:241.880400px;}
.wsc9{word-spacing:255.560400px;}
.wsb4{word-spacing:264.180000px;}
.wsa5{word-spacing:266.606105px;}
.wscc{word-spacing:268.521000px;}
.wsce{word-spacing:272.156400px;}
.wsc6{word-spacing:286.305600px;}
.wsc2{word-spacing:293.772600px;}
.wsc8{word-spacing:299.265600px;}
.wscb{word-spacing:299.985600px;}
.wsc0{word-spacing:304.502400px;}
.ws3e{word-spacing:313.039800px;}
.ws80{word-spacing:320.640000px;}
.ws7e{word-spacing:330.254655px;}
.wsb3{word-spacing:334.500000px;}
.ws57{word-spacing:371.080753px;}
.wsbd{word-spacing:375.918600px;}
.ws7d{word-spacing:390.960000px;}
.wsc1{word-spacing:403.905000px;}
.wsc5{word-spacing:443.712000px;}
.wsc7{word-spacing:456.672000px;}
.wsca{word-spacing:457.392000px;}
.wscd{word-spacing:470.352000px;}
.ws52{word-spacing:608.058000px;}
.ws4f{word-spacing:624.906000px;}
.ws55{word-spacing:631.476000px;}
.ws54{word-spacing:633.978000px;}
.wsd8{word-spacing:684.000000px;}
.ws53{word-spacing:854.174400px;}
.ws51{word-spacing:897.266400px;}
._48{margin-left:-1428.379890px;}
._39{margin-left:-710.303322px;}
._53{margin-left:-540.643288px;}
._3d{margin-left:-374.737910px;}
._d{margin-left:-271.644106px;}
._46{margin-left:-108.645000px;}
._45{margin-left:-94.727555px;}
._44{margin-left:-86.748288px;}
._3e{margin-left:-74.081948px;}
._54{margin-left:-8.415600px;}
._47{margin-left:-7.025852px;}
._7{margin-left:-5.908200px;}
._3{margin-left:-4.896000px;}
._0{margin-left:-2.884800px;}
._1{margin-left:-1.056000px;}
._2{width:1.416000px;}
._4{width:2.999400px;}
._6{width:4.804800px;}
._8{width:6.572400px;}
._40{width:7.846800px;}
._4a{width:23.196271px;}
._4b{width:24.712247px;}
._49{width:30.328188px;}
._1c{width:32.562517px;}
._27{width:43.410900px;}
._11{width:45.397511px;}
._3c{width:46.910043px;}
._12{width:48.564572px;}
._28{width:50.255700px;}
._2a{width:52.158900px;}
._23{width:59.813400px;}
._42{width:64.862587px;}
._20{width:66.980051px;}
._3a{width:69.600988px;}
._3b{width:72.072822px;}
._16{width:76.348938px;}
._32{width:81.547800px;}
._43{width:82.793605px;}
._e{width:84.233775px;}
._2b{width:87.234600px;}
._1d{width:88.385556px;}
._33{width:90.051600px;}
._29{width:91.210200px;}
._52{width:93.869609px;}
._1b{width:95.800652px;}
._1e{width:99.698184px;}
._2c{width:109.237200px;}
._24{width:111.347400px;}
._25{width:117.130200px;}
._4c{width:120.731383px;}
._19{width:130.600975px;}
._18{width:131.714729px;}
._21{width:133.769514px;}
._22{width:135.020400px;}
._1f{width:136.409426px;}
._2d{width:138.145800px;}
._f{width:148.670673px;}
._38{width:150.670426px;}
._2f{width:152.721000px;}
._2e{width:162.097800px;}
._15{width:165.098102px;}
._51{width:169.533131px;}
._13{width:174.563548px;}
._34{width:179.798400px;}
._41{width:181.479501px;}
._37{width:190.256400px;}
._31{width:192.758400px;}
._30{width:203.756625px;}
._35{width:204.886800px;}
._36{width:217.846200px;}
._17{width:239.975123px;}
._1a{width:261.940482px;}
._26{width:285.561600px;}
._50{width:328.839600px;}
._10{width:434.426400px;}
._4f{width:486.918600px;}
._9{width:536.866800px;}
._a{width:631.106400px;}
._5{width:712.654200px;}
._14{width:715.291102px;}
._3f{width:725.820000px;}
._4d{width:794.757000px;}
._b{width:803.437200px;}
._c{width:819.752400px;}
._4e{width:842.509800px;}
.fc2{color:rgb(42,62,146);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:40.500000px;}
.fs6{font-size:41.400000px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:44.669400px;}
.fs7{font-size:45.000000px;}
.fsf{font-size:45.489000px;}
.fs16{font-size:45.661800px;}
.fs8{font-size:47.250000px;}
.fs5{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs12{font-size:59.559000px;}
.fs3{font-size:60.000000px;}
.fs10{font-size:60.652200px;}
.fs15{font-size:60.882600px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs14{font-size:86.757600px;}
.fs13{font-size:89.338200px;}
.fs2{font-size:102.000000px;}
.fse{font-size:116.565600px;}
.y0{bottom:0.000000px;}
.y99{bottom:2.999850px;}
.ya6{bottom:3.444312px;}
.ya2{bottom:3.444544px;}
.y107{bottom:4.803150px;}
.y158{bottom:4.804050px;}
.y106{bottom:7.704600px;}
.ye6{bottom:7.705350px;}
.y157{bottom:7.705500px;}
.y108{bottom:9.131550px;}
.ye7{bottom:9.132300px;}
.y159{bottom:9.132450px;}
.y94{bottom:9.335400px;}
.y93{bottom:10.330500px;}
.y95{bottom:13.647450px;}
.ya5{bottom:16.610617px;}
.ya1{bottom:16.610850px;}
.ya7{bottom:16.703850px;}
.ya3{bottom:20.845050px;}
.ya4{bottom:38.386950px;}
.y25{bottom:51.826800px;}
.y24{bottom:63.826800px;}
.y5{bottom:66.525004px;}
.y23{bottom:75.826800px;}
.y14d{bottom:76.050450px;}
.y115{bottom:85.366800px;}
.y9e{bottom:85.604100px;}
.yc4{bottom:86.637300px;}
.yfd{bottom:90.254100px;}
.y71{bottom:91.378650px;}
.y11a{bottom:92.772300px;}
.y14c{bottom:95.550450px;}
.y4{bottom:97.125005px;}
.y179{bottom:97.398450px;}
.yc2{bottom:97.491150px;}
.y22{bottom:97.562700px;}
.ye3{bottom:102.464850px;}
.y114{bottom:104.866800px;}
.y195{bottom:105.703050px;}
.yfc{bottom:109.754100px;}
.y70{bottom:110.878650px;}
.y119{bottom:112.272300px;}
.y14b{bottom:115.050450px;}
.y178{bottom:116.898450px;}
.yc1{bottom:116.991150px;}
.ye2{bottom:117.164850px;}
.y194{bottom:121.903050px;}
.y113{bottom:124.366800px;}
.yfb{bottom:129.254100px;}
.y6f{bottom:130.378650px;}
.y118{bottom:131.772300px;}
.y26{bottom:136.099500px;}
.y177{bottom:136.398450px;}
.yc0{bottom:136.491150px;}
.y21{bottom:139.264499px;}
.ye1{bottom:139.428450px;}
.y193{bottom:142.354950px;}
.y7f{bottom:143.134500px;}
.y112{bottom:143.866800px;}
.y14a{bottom:147.946650px;}
.yfa{bottom:148.754100px;}
.y6e{bottom:149.878650px;}
.y117{bottom:151.272300px;}
.y176{bottom:155.898450px;}
.ye0{bottom:157.746750px;}
.y192{bottom:158.554950px;}
.y111{bottom:163.366800px;}
.yf9{bottom:168.254250px;}
.y149{bottom:168.936300px;}
.y6d{bottom:169.378650px;}
.y116{bottom:170.772300px;}
.y175{bottom:175.398450px;}
.ybf{bottom:175.491150px;}
.ydf{bottom:176.065050px;}
.y191{bottom:179.007000px;}
.y110{bottom:182.866800px;}
.y47{bottom:187.203150px;}
.yf8{bottom:187.754250px;}
.y6c{bottom:188.878650px;}
.y148{bottom:189.925800px;}
.ybe{bottom:190.191300px;}
.y7e{bottom:190.272300px;}
.yde{bottom:194.383350px;}
.y174{bottom:194.898450px;}
.y190{bottom:195.207000px;}
.y18{bottom:196.933500px;}
.y10f{bottom:202.366800px;}
.y46{bottom:206.703150px;}
.yf7{bottom:207.254250px;}
.y6b{bottom:208.378650px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y7d{bottom:209.772300px;}
.y147{bottom:210.915300px;}
.ydd{bottom:212.701650px;}
.ybd{bottom:214.035600px;}
.y173{bottom:214.398450px;}
.y18f{bottom:215.658900px;}
.y10e{bottom:221.866800px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y45{bottom:226.203150px;}
.yf6{bottom:226.754250px;}
.y6a{bottom:227.878650px;}
.y7c{bottom:229.272300px;}
.ydc{bottom:231.019950px;}
.y9d{bottom:231.169350px;}
.y18e{bottom:231.858900px;}
.y146{bottom:232.358850px;}
.y172{bottom:233.898450px;}
.ybc{bottom:234.479850px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y10d{bottom:241.366800px;}
.y44{bottom:245.703150px;}
.yf5{bottom:246.254250px;}
.y69{bottom:247.378650px;}
.y7b{bottom:248.772300px;}
.ydb{bottom:249.338250px;}
.y9c{bottom:250.669350px;}
.y18d{bottom:252.310950px;}
.y145{bottom:252.894300px;}
.y171{bottom:253.398450px;}
.ybb{bottom:254.924100px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y10c{bottom:260.866800px;}
.y43{bottom:265.203150px;}
.y68{bottom:266.878650px;}
.yda{bottom:267.656550px;}
.y7a{bottom:268.272300px;}
.y18c{bottom:268.510950px;}
.y9b{bottom:270.169350px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y170{bottom:272.898450px;}
.yf4{bottom:274.258050px;}
.yba{bottom:275.368350px;}
.y144{bottom:276.315000px;}
.yc3{bottom:277.828500px;}
.y10b{bottom:280.366800px;}
.y42{bottom:284.703150px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yd9{bottom:285.974850px;}
.y67{bottom:286.378650px;}
.y79{bottom:287.772300px;}
.y18b{bottom:288.962850px;}
.y9a{bottom:289.669350px;}
.y143{bottom:291.315000px;}
.y16f{bottom:292.398450px;}
.y141{bottom:296.588250px;}
.yb9{bottom:298.789050px;}
.y10a{bottom:299.866800px;}
.y41{bottom:304.203150px;}
.yd8{bottom:304.293150px;}
.y18a{bottom:305.162850px;}
.y66{bottom:305.878650px;}
.y98{bottom:306.169500px;}
.yb7{bottom:306.289050px;}
.y78{bottom:307.272300px;}
.y97{bottom:309.169350px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y16e{bottom:311.898450px;}
.yb6{bottom:313.789050px;}
.y142{bottom:316.861650px;}
.y109{bottom:319.366800px;}
.yd7{bottom:322.611450px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y40{bottom:323.703150px;}
.y65{bottom:325.378650px;}
.y189{bottom:325.614750px;}
.y77{bottom:326.772300px;}
.yb8{bottom:328.789050px;}
.y16d{bottom:331.398450px;}
.y92{bottom:332.176500px;}
.y91{bottom:332.177250px;}
.y105{bottom:338.371500px;}
.yd6{bottom:340.929750px;}
.y188{bottom:341.814900px;}
.y64{bottom:344.878650px;}
.y96{bottom:345.677250px;}
.y76{bottom:346.272300px;}
.y104{bottom:347.370750px;}
.y140{bottom:348.007800px;}
.yf{bottom:348.133500px;}
.y16c{bottom:350.898450px;}
.yb5{bottom:354.335700px;}
.y3f{bottom:355.959000px;}
.yd5{bottom:361.374000px;}
.y187{bottom:362.266800px;}
.y75{bottom:365.772300px;}
.y16b{bottom:370.398450px;}
.yb4{bottom:376.906050px;}
.y63{bottom:377.134500px;}
.y186{bottom:378.466800px;}
.yd4{bottom:380.237550px;}
.y90{bottom:382.185150px;}
.y103{bottom:383.878650px;}
.y13f{bottom:383.967750px;}
.y74{bottom:385.272300px;}
.ye{bottom:386.785499px;}
.y16a{bottom:389.898450px;}
.yb3{bottom:397.350300px;}
.yd3{bottom:398.555850px;}
.y185{bottom:398.918700px;}
.y8f{bottom:401.685150px;}
.y102{bottom:403.378650px;}
.y13e{bottom:403.467750px;}
.y73{bottom:404.772300px;}
.yd{bottom:408.044999px;}
.y169{bottom:409.398450px;}
.y184{bottom:415.118700px;}
.y3e{bottom:415.852650px;}
.yd2{bottom:416.874150px;}
.yb2{bottom:417.794550px;}
.y8e{bottom:421.185150px;}
.y101{bottom:422.878650px;}
.y13d{bottom:422.967750px;}
.y62{bottom:424.272300px;}
.y168{bottom:428.898450px;}
.yd1{bottom:435.192450px;}
.y183{bottom:435.570750px;}
.yb1{bottom:438.238800px;}
.y8d{bottom:440.685150px;}
.y100{bottom:442.378650px;}
.y13c{bottom:442.467750px;}
.y61{bottom:443.772300px;}
.y3d{bottom:443.908650px;}
.y167{bottom:448.398450px;}
.y182{bottom:451.770750px;}
.yd0{bottom:453.510750px;}
.yf3{bottom:455.090550px;}
.yb0{bottom:458.683200px;}
.y3c{bottom:459.208650px;}
.y8c{bottom:460.185150px;}
.yff{bottom:461.878650px;}
.y13b{bottom:461.967750px;}
.y60{bottom:463.272300px;}
.y181{bottom:472.222650px;}
.ycf{bottom:473.955000px;}
.y166{bottom:480.654300px;}
.y13a{bottom:481.467750px;}
.yaf{bottom:482.103750px;}
.y5f{bottom:482.772300px;}
.y3b{bottom:487.264500px;}
.y180{bottom:488.422650px;}
.yad{bottom:489.603750px;}
.y8b{bottom:492.441000px;}
.yce{bottom:493.905150px;}
.yfe{bottom:494.134500px;}
.yac{bottom:497.103750px;}
.y5e{bottom:502.272300px;}
.y3a{bottom:502.564500px;}
.yc{bottom:502.864502px;}
.y17f{bottom:508.874700px;}
.yae{bottom:512.103750px;}
.y139{bottom:513.723600px;}
.ycd{bottom:513.855150px;}
.y39{bottom:517.864500px;}
.yb{bottom:520.864502px;}
.y5d{bottom:521.772300px;}
.y17e{bottom:525.074700px;}
.y165{bottom:527.792100px;}
.y138{bottom:530.549550px;}
.y38{bottom:533.164500px;}
.ycc{bottom:533.805150px;}
.yab{bottom:537.650400px;}
.ya{bottom:538.864499px;}
.y8a{bottom:539.578800px;}
.y5c{bottom:541.272300px;}
.y17d{bottom:541.274700px;}
.y137{bottom:545.249700px;}
.y164{bottom:547.292250px;}
.y37{bottom:548.464500px;}
.ycb{bottom:553.755000px;}
.y9{bottom:556.864499px;}
.y89{bottom:559.078800px;}
.y5b{bottom:560.772300px;}
.y17c{bottom:561.726600px;}
.y36{bottom:563.764500px;}
.y163{bottom:566.792250px;}
.yaa{bottom:568.796700px;}
.y136{bottom:569.094000px;}
.yca{bottom:573.255000px;}
.y17b{bottom:577.926600px;}
.y88{bottom:578.578800px;}
.y35{bottom:579.064500px;}
.y5a{bottom:580.272300px;}
.y135{bottom:584.094000px;}
.y162{bottom:586.292250px;}
.yc9{bottom:591.573300px;}
.y34{bottom:594.364500px;}
.y1a6{bottom:599.195100px;}
.y59{bottom:599.772300px;}
.yf2{bottom:600.138450px;}
.y134{bottom:604.538250px;}
.ya9{bottom:604.756500px;}
.y161{bottom:605.792250px;}
.y33{bottom:609.664500px;}
.y17a{bottom:611.134500px;}
.y132{bottom:612.038250px;}
.y1a5{bottom:615.395100px;}
.y87{bottom:617.578800px;}
.yc8{bottom:617.803500px;}
.y58{bottom:619.272300px;}
.y133{bottom:619.538250px;}
.yf1{bottom:619.638450px;}
.ya8{bottom:624.256500px;}
.y160{bottom:625.292250px;}
.yc7{bottom:632.803500px;}
.y1a4{bottom:635.847150px;}
.y57{bottom:638.772300px;}
.yf0{bottom:639.138450px;}
.ya0{bottom:639.765000px;}
.y131{bottom:639.982500px;}
.y86{bottom:641.968350px;}
.y15f{bottom:644.792250px;}
.y8{bottom:645.510000px;}
.y32{bottom:646.224300px;}
.y12f{bottom:647.482500px;}
.y1a3{bottom:652.047150px;}
.y130{bottom:654.982500px;}
.y56{bottom:658.272300px;}
.yef{bottom:658.638450px;}
.yc6{bottom:660.614250px;}
.y9f{bottom:660.764400px;}
.y85{bottom:662.412750px;}
.y15e{bottom:664.292250px;}
.y7{bottom:666.771000px;}
.y1a2{bottom:672.499050px;}
.y31{bottom:673.380300px;}
.y12e{bottom:675.426900px;}
.y12c{bottom:675.699450px;}
.y55{bottom:677.772300px;}
.yee{bottom:678.138450px;}
.y84{bottom:682.857000px;}
.y12a{bottom:683.199450px;}
.y15d{bottom:683.792250px;}
.y12d{bottom:690.426900px;}
.y12b{bottom:690.699450px;}
.yc5{bottom:691.760400px;}
.y1a1{bottom:692.951100px;}
.y30{bottom:694.335300px;}
.y54{bottom:697.272300px;}
.yed{bottom:697.638450px;}
.y15c{bottom:703.292250px;}
.y83{bottom:703.301250px;}
.y2f{bottom:706.380300px;}
.y129{bottom:711.416400px;}
.y1a0{bottom:713.403150px;}
.y53{bottom:716.772300px;}
.yec{bottom:717.138450px;}
.y127{bottom:718.916400px;}
.y15b{bottom:722.792250px;}
.y82{bottom:723.745500px;}
.y6{bottom:726.298500px;}
.y128{bottom:726.416400px;}
.y2e{bottom:727.335300px;}
.y19f{bottom:729.603000px;}
.y52{bottom:736.272300px;}
.yeb{bottom:736.638450px;}
.y156{bottom:743.922000px;}
.y155{bottom:743.922150px;}
.y125{bottom:746.860650px;}
.y81{bottom:747.166200px;}
.y19e{bottom:750.055050px;}
.y2d{bottom:752.136150px;}
.y3{bottom:752.599495px;}
.y15a{bottom:752.922150px;}
.y124{bottom:754.587600px;}
.y51{bottom:755.772300px;}
.yea{bottom:756.138450px;}
.y126{bottom:761.860650px;}
.y19d{bottom:766.255050px;}
.y50{bottom:775.272300px;}
.ye9{bottom:775.638450px;}
.y80{bottom:778.312500px;}
.y154{bottom:780.925950px;}
.y123{bottom:782.304900px;}
.y19c{bottom:786.706950px;}
.y121{bottom:789.804900px;}
.y4f{bottom:794.772300px;}
.y2c{bottom:796.548000px;}
.ye4{bottom:796.768350px;}
.ye5{bottom:796.768500px;}
.y122{bottom:797.304900px;}
.y153{bottom:800.425950px;}
.y19b{bottom:802.906950px;}
.ye8{bottom:805.768350px;}
.y4e{bottom:814.272300px;}
.y2b{bottom:816.048000px;}
.y120{bottom:817.749150px;}
.y152{bottom:819.925950px;}
.y19a{bottom:823.358850px;}
.y11e{bottom:825.249150px;}
.y11f{bottom:832.749150px;}
.y4d{bottom:833.772300px;}
.y151{bottom:839.425950px;}
.y199{bottom:839.558850px;}
.y4c{bottom:853.272300px;}
.y11d{bottom:856.169850px;}
.y150{bottom:858.925950px;}
.y198{bottom:860.010900px;}
.y11c{bottom:868.943250px;}
.y4b{bottom:872.772300px;}
.y197{bottom:876.210900px;}
.y14f{bottom:878.425950px;}
.y2{bottom:879.369000px;}
.y4a{bottom:892.272300px;}
.y196{bottom:896.662800px;}
.y2a{bottom:909.603000px;}
.y14e{bottom:910.681800px;}
.y49{bottom:911.772300px;}
.y11b{bottom:912.862800px;}
.y29{bottom:927.603000px;}
.y28{bottom:945.603000px;}
.y72{bottom:949.694850px;}
.y48{bottom:950.685300px;}
.y27{bottom:965.728950px;}
.y1{bottom:966.726000px;}
.h1c{height:22.500000px;}
.h2c{height:25.873500px;}
.h2f{height:25.875000px;}
.h10{height:28.917000px;}
.hb{height:29.559600px;}
.h1e{height:31.268580px;}
.h20{height:31.893952px;}
.h7{height:32.130000px;}
.hd{height:32.445000px;}
.h18{height:32.479146px;}
.h31{height:32.602525px;}
.h22{height:33.087637px;}
.h1a{height:33.694733px;}
.ha{height:34.272000px;}
.h16{height:34.876500px;}
.h12{height:36.414000px;}
.h11{height:38.556000px;}
.h15{height:39.298200px;}
.h33{height:39.999023px;}
.h35{height:40.698000px;}
.h2b{height:40.737000px;}
.h1f{height:41.691300px;}
.h21{height:42.525126px;}
.h14{height:42.840000px;}
.hc{height:43.260000px;}
.h19{height:43.305671px;}
.h23{height:44.116701px;}
.h29{height:44.443359px;}
.h1b{height:44.926459px;}
.h2e{height:45.097121px;}
.h6{height:45.900000px;}
.h13{height:46.398000px;}
.h27{height:46.737000px;}
.h28{height:46.737600px;}
.h3{height:48.195000px;}
.he{height:50.400000px;}
.h1d{height:50.625000px;}
.h37{height:51.930000px;}
.hf{height:54.526500px;}
.h2{height:55.080000px;}
.h30{height:59.931420px;}
.h2d{height:64.263320px;}
.h24{height:66.174829px;}
.h34{height:67.648200px;}
.h25{height:68.556000px;}
.h36{height:69.607200px;}
.h26{height:70.907423px;}
.h5{height:78.030000px;}
.h17{height:86.342781px;}
.h32{height:89.649000px;}
.h2a{height:98.556000px;}
.h4{height:119.055004px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:22.498500px;}
.w8{width:138.375000px;}
.wa{width:165.375000px;}
.w5{width:183.375000px;}
.w7{width:342.964500px;}
.w9{width:374.625000px;}
.w2{width:637.794021px;}
.w4{width:714.000000px;}
.w3{width:714.330000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:2.536050px;}
.x41{left:9.692700px;}
.x25{left:11.919150px;}
.x3a{left:14.382600px;}
.x65{left:16.725300px;}
.x23{left:28.244131px;}
.x40{left:37.789500px;}
.x1a{left:42.696300px;}
.x39{left:45.404100px;}
.x64{left:46.746450px;}
.x1f{left:56.404950px;}
.x3f{left:58.159800px;}
.x21{left:75.316050px;}
.x5{left:76.929600px;}
.x2f{left:81.237450px;}
.x5e{left:82.429200px;}
.x12{left:85.039350px;}
.x5d{left:87.170700px;}
.x15{left:89.741400px;}
.x35{left:93.911100px;}
.x18{left:95.350950px;}
.x13{left:97.795200px;}
.x1{left:102.045000px;}
.x44{left:105.160500px;}
.x2{left:106.297500px;}
.x51{left:107.406000px;}
.xa{left:113.210700px;}
.x17{left:115.078650px;}
.x14{left:138.639300px;}
.x60{left:152.238000px;}
.x4b{left:154.424550px;}
.x57{left:157.664550px;}
.x53{left:161.444400px;}
.xf{left:162.614850px;}
.x45{left:164.684400px;}
.x3e{left:167.644500px;}
.xd{left:173.715300px;}
.x43{left:175.496100px;}
.x1e{left:181.764000px;}
.x32{left:186.446100px;}
.x31{left:189.686100px;}
.x2a{left:192.066900px;}
.xb{left:202.124700px;}
.x4{left:203.484001px;}
.x16{left:214.750500px;}
.x11{left:222.248700px;}
.x26{left:224.446650px;}
.x5f{left:227.292300px;}
.xe{left:231.705300px;}
.x3c{left:246.916050px;}
.x24{left:250.820966px;}
.x27{left:254.764762px;}
.x22{left:255.934050px;}
.x20{left:260.444039px;}
.xc{left:263.870550px;}
.x3d{left:267.337200px;}
.x54{left:273.858000px;}
.x10{left:275.435100px;}
.x52{left:277.098000px;}
.x37{left:278.158350px;}
.x47{left:280.338000px;}
.x36{left:281.634300px;}
.x33{left:284.179050px;}
.x61{left:286.273500px;}
.x38{left:292.230000px;}
.x2b{left:293.382750px;}
.x58{left:296.655900px;}
.x4c{left:297.836250px;}
.x46{left:301.346250px;}
.x30{left:312.798450px;}
.x29{left:315.343200px;}
.x6{left:322.395600px;}
.x1c{left:328.273500px;}
.x1d{left:350.773800px;}
.x1b{left:398.125050px;}
.x9{left:402.228000px;}
.x63{left:410.521350px;}
.x4e{left:413.992650px;}
.x55{left:417.772500px;}
.x49{left:421.012500px;}
.x5b{left:429.193350px;}
.x3b{left:430.604850px;}
.x4d{left:438.510900px;}
.x48{left:442.020750px;}
.x62{left:443.969250px;}
.x3{left:454.959000px;}
.x7{left:469.648800px;}
.x8{left:472.346550px;}
.x2d{left:486.712050px;}
.x2c{left:496.171800px;}
.x50{left:520.497150px;}
.x28{left:524.728800px;}
.x56{left:530.743650px;}
.x5a{left:533.056500px;}
.x2e{left:534.715950px;}
.x5c{left:540.119250px;}
.x42{left:542.268750px;}
.x59{left:550.301550px;}
.x4f{left:551.482050px;}
.x4a{left:554.991900px;}
.x34{left:565.868400px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v6{vertical-align:-13.333333pt;}
.vd{vertical-align:-12.000000pt;}
.v3{vertical-align:-3.521600pt;}
.v5{vertical-align:-1.938667pt;}
.ve{vertical-align:-0.969600pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.776533pt;}
.v4{vertical-align:3.521600pt;}
.vb{vertical-align:13.333333pt;}
.va{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.v8{vertical-align:25.697600pt;}
.v7{vertical-align:26.666667pt;}
.vc{vertical-align:45.416000pt;}
.ls55{letter-spacing:-4.656000pt;}
.ls58{letter-spacing:-3.600000pt;}
.ls2c{letter-spacing:-1.584000pt;}
.ls1a{letter-spacing:-1.392000pt;}
.ls19{letter-spacing:-1.248000pt;}
.ls4b{letter-spacing:-1.152000pt;}
.ls27{letter-spacing:-0.912000pt;}
.ls59{letter-spacing:-0.816000pt;}
.ls50{letter-spacing:-0.746667pt;}
.ls1e{letter-spacing:-0.693333pt;}
.ls2f{letter-spacing:-0.672000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.624000pt;}
.ls5{letter-spacing:-0.589333pt;}
.ls3f{letter-spacing:-0.533333pt;}
.ls5a{letter-spacing:-0.528000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.468000pt;}
.ls3{letter-spacing:-0.453333pt;}
.ls30{letter-spacing:-0.432000pt;}
.ls1b{letter-spacing:-0.377391pt;}
.ls20{letter-spacing:-0.373333pt;}
.ls23{letter-spacing:-0.370589pt;}
.ls6{letter-spacing:-0.362667pt;}
.ls54{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.293333pt;}
.ls56{letter-spacing:-0.288000pt;}
.ls18{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:-0.226667pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.180000pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.144000pt;}
.ls12{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls57{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.009600pt;}
.ls7{letter-spacing:0.045333pt;}
.ls52{letter-spacing:0.048000pt;}
.lsd{letter-spacing:0.053333pt;}
.ls35{letter-spacing:0.056533pt;}
.ls36{letter-spacing:0.057067pt;}
.ls37{letter-spacing:0.075733pt;}
.ls34{letter-spacing:0.076267pt;}
.ls38{letter-spacing:0.076800pt;}
.ls51{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.110400pt;}
.lsc{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.213333pt;}
.ls2b{letter-spacing:0.216000pt;}
.ls45{letter-spacing:0.232533pt;}
.ls46{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls3d{letter-spacing:0.273067pt;}
.lse{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.426667pt;}
.ls4e{letter-spacing:0.432943pt;}
.ls14{letter-spacing:0.453333pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.693333pt;}
.ls3e{letter-spacing:0.840000pt;}
.ls16{letter-spacing:2.082667pt;}
.ls47{letter-spacing:2.083200pt;}
.ls53{letter-spacing:2.197867pt;}
.ls25{letter-spacing:4.870603pt;}
.ls3c{letter-spacing:7.847091pt;}
.ls4f{letter-spacing:9.524745pt;}
.ls33{letter-spacing:13.583585pt;}
.ls22{letter-spacing:26.682522pt;}
.ls21{letter-spacing:35.219340pt;}
.ls39{letter-spacing:41.237679pt;}
.ls4d{letter-spacing:86.290655pt;}
.ls1c{letter-spacing:120.711356pt;}
.ls31{letter-spacing:140.652335pt;}
.ls3b{letter-spacing:145.522943pt;}
.ls32{letter-spacing:155.967692pt;}
.ls3a{letter-spacing:165.275422pt;}
.ls17{letter-spacing:171.887768pt;}
.ls42{letter-spacing:191.502933pt;}
.ls40{letter-spacing:201.040533pt;}
.ls48{letter-spacing:217.332800pt;}
.ls49{letter-spacing:225.325333pt;}
.ls4a{letter-spacing:228.852267pt;}
.ls44{letter-spacing:241.508800pt;}
.ls43{letter-spacing:250.704533pt;}
.ls24{letter-spacing:269.207584pt;}
.ls41{letter-spacing:290.003733pt;}
.ws7f{word-spacing:-269.207584pt;}
.ws59{word-spacing:-181.147307pt;}
.ws9d{word-spacing:-170.363044pt;}
.ws9b{word-spacing:-82.481041pt;}
.ws5b{word-spacing:-79.236034pt;}
.ws66{word-spacing:-39.281278pt;}
.wsd3{word-spacing:-34.349850pt;}
.ws75{word-spacing:-29.280000pt;}
.wsbf{word-spacing:-26.352000pt;}
.wsd5{word-spacing:-23.508801pt;}
.ws69{word-spacing:-21.848888pt;}
.wsd7{word-spacing:-12.730667pt;}
.ws25{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.437333pt;}
.ws24{word-spacing:-12.373333pt;}
.ws3f{word-spacing:-12.320000pt;}
.ws23{word-spacing:-12.213333pt;}
.ws76{word-spacing:-12.106667pt;}
.ws5c{word-spacing:-11.520000pt;}
.wsd6{word-spacing:-11.466667pt;}
.ws6c{word-spacing:-10.992000pt;}
.ws50{word-spacing:-10.896000pt;}
.wsdf{word-spacing:-10.704000pt;}
.wsee{word-spacing:-10.656000pt;}
.ws6a{word-spacing:-10.272000pt;}
.ws8a{word-spacing:-10.224000pt;}
.ws6{word-spacing:-9.882667pt;}
.wsc3{word-spacing:-9.840000pt;}
.ws56{word-spacing:-9.600000pt;}
.ws4{word-spacing:-9.534000pt;}
.ws74{word-spacing:-9.408000pt;}
.ws5d{word-spacing:-9.160000pt;}
.ws65{word-spacing:-9.080000pt;}
.ws3{word-spacing:-8.480000pt;}
.ws2{word-spacing:-8.464000pt;}
.ws71{word-spacing:-8.388000pt;}
.ws1{word-spacing:-8.353600pt;}
.ws5{word-spacing:-8.244000pt;}
.wsbe{word-spacing:-8.172000pt;}
.ws6f{word-spacing:-8.028000pt;}
.ws6d{word-spacing:-7.992000pt;}
.ws70{word-spacing:-7.704000pt;}
.wsde{word-spacing:-6.336000pt;}
.wsf{word-spacing:-3.480000pt;}
.ws40{word-spacing:-0.453333pt;}
.ws2f{word-spacing:-0.053333pt;}
.ws58{word-spacing:-0.040435pt;}
.ws0{word-spacing:0.000000pt;}
.ws44{word-spacing:0.106667pt;}
.wsbc{word-spacing:0.160000pt;}
.wsab{word-spacing:0.213333pt;}
.ws61{word-spacing:0.266667pt;}
.ws46{word-spacing:0.320000pt;}
.ws64{word-spacing:0.373333pt;}
.wse7{word-spacing:0.384000pt;}
.ws38{word-spacing:0.426667pt;}
.ws97{word-spacing:0.432000pt;}
.ws15{word-spacing:0.453333pt;}
.ws9c{word-spacing:0.470825pt;}
.ws63{word-spacing:0.480000pt;}
.ws77{word-spacing:0.533333pt;}
.ws88{word-spacing:0.586667pt;}
.wsef{word-spacing:0.624000pt;}
.ws10{word-spacing:0.640000pt;}
.ws8{word-spacing:0.682667pt;}
.wse8{word-spacing:0.720000pt;}
.ws83{word-spacing:0.800000pt;}
.wse6{word-spacing:0.816000pt;}
.wsa3{word-spacing:0.906667pt;}
.ws31{word-spacing:0.960000pt;}
.wsea{word-spacing:1.008000pt;}
.ws41{word-spacing:1.013333pt;}
.ws2c{word-spacing:1.066667pt;}
.wsb0{word-spacing:1.120000pt;}
.ws29{word-spacing:1.173333pt;}
.wsf1{word-spacing:1.200000pt;}
.ws33{word-spacing:1.226667pt;}
.wsd0{word-spacing:1.248000pt;}
.ws47{word-spacing:1.280000pt;}
.ws1a{word-spacing:1.314667pt;}
.ws4a{word-spacing:1.333333pt;}
.wsba{word-spacing:1.386667pt;}
.wsf2{word-spacing:1.392000pt;}
.ws7c{word-spacing:1.546667pt;}
.ws2b{word-spacing:1.600000pt;}
.ws1c{word-spacing:1.632000pt;}
.ws48{word-spacing:1.653333pt;}
.wsb{word-spacing:1.656000pt;}
.ws11{word-spacing:1.680000pt;}
.wsed{word-spacing:1.728000pt;}
.ws9e{word-spacing:1.760000pt;}
.ws43{word-spacing:1.813333pt;}
.wsac{word-spacing:1.866667pt;}
.wsc{word-spacing:1.920000pt;}
.ws1e{word-spacing:1.949333pt;}
.wsd{word-spacing:1.962667pt;}
.ws30{word-spacing:2.026667pt;}
.ws1d{word-spacing:2.040000pt;}
.wscf{word-spacing:2.064000pt;}
.ws1f{word-spacing:2.080000pt;}
.ws5f{word-spacing:2.160000pt;}
.ws84{word-spacing:2.186667pt;}
.ws14{word-spacing:2.208000pt;}
.wse{word-spacing:2.240000pt;}
.ws81{word-spacing:2.280000pt;}
.ws2a{word-spacing:2.346667pt;}
.ws22{word-spacing:2.400000pt;}
.wsb8{word-spacing:2.453333pt;}
.ws12{word-spacing:2.496000pt;}
.ws13{word-spacing:2.520000pt;}
.ws35{word-spacing:2.522667pt;}
.wse1{word-spacing:2.544000pt;}
.wsa2{word-spacing:2.560000pt;}
.ws96{word-spacing:2.592000pt;}
.wsa1{word-spacing:2.613333pt;}
.ws28{word-spacing:2.666667pt;}
.wseb{word-spacing:2.688000pt;}
.ws99{word-spacing:2.773333pt;}
.ws79{word-spacing:2.826667pt;}
.wse2{word-spacing:2.832000pt;}
.ws16{word-spacing:2.856000pt;}
.wsb6{word-spacing:2.880000pt;}
.wse4{word-spacing:2.928000pt;}
.wsd9{word-spacing:2.933333pt;}
.wse5{word-spacing:2.976000pt;}
.ws5e{word-spacing:2.986667pt;}
.ws27{word-spacing:3.040000pt;}
.ws3a{word-spacing:3.093333pt;}
.ws45{word-spacing:3.146667pt;}
.wse9{word-spacing:3.168000pt;}
.wsdc{word-spacing:3.200000pt;}
.wse0{word-spacing:3.216000pt;}
.ws62{word-spacing:3.253333pt;}
.ws9{word-spacing:3.275200pt;}
.ws49{word-spacing:3.306667pt;}
.ws18{word-spacing:3.309333pt;}
.wsa{word-spacing:3.312000pt;}
.ws7a{word-spacing:3.413333pt;}
.wsb5{word-spacing:3.466667pt;}
.wsdb{word-spacing:3.573333pt;}
.ws20{word-spacing:3.626667pt;}
.ws9f{word-spacing:3.680000pt;}
.wsaa{word-spacing:3.733333pt;}
.ws7b{word-spacing:3.786667pt;}
.ws98{word-spacing:3.792000pt;}
.wsa4{word-spacing:3.840000pt;}
.ws4b{word-spacing:3.893333pt;}
.wsad{word-spacing:3.946667pt;}
.ws2e{word-spacing:4.053333pt;}
.ws1b{word-spacing:4.080000pt;}
.ws78{word-spacing:4.106667pt;}
.ws17{word-spacing:4.125333pt;}
.ws3b{word-spacing:4.160000pt;}
.ws34{word-spacing:4.213333pt;}
.ws3d{word-spacing:4.266667pt;}
.ws26{word-spacing:4.320000pt;}
.wse3{word-spacing:4.368000pt;}
.ws4e{word-spacing:4.373333pt;}
.ws21{word-spacing:4.426667pt;}
.wsd1{word-spacing:4.464000pt;}
.ws19{word-spacing:4.533333pt;}
.wsa0{word-spacing:4.586667pt;}
.ws32{word-spacing:4.640000pt;}
.ws89{word-spacing:4.746667pt;}
.ws37{word-spacing:4.800000pt;}
.ws2d{word-spacing:4.853333pt;}
.wsf0{word-spacing:4.896000pt;}
.ws36{word-spacing:5.013333pt;}
.ws4d{word-spacing:5.066667pt;}
.wsb9{word-spacing:5.120000pt;}
.wsbb{word-spacing:5.173333pt;}
.wsb1{word-spacing:5.226667pt;}
.wsaf{word-spacing:5.280000pt;}
.wsdd{word-spacing:5.333333pt;}
.wsb7{word-spacing:5.386667pt;}
.ws60{word-spacing:5.493333pt;}
.ws4c{word-spacing:5.546667pt;}
.ws87{word-spacing:5.653333pt;}
.ws82{word-spacing:5.706667pt;}
.wsec{word-spacing:5.808000pt;}
.ws39{word-spacing:5.866667pt;}
.ws42{word-spacing:5.920000pt;}
.ws85{word-spacing:5.973333pt;}
.wsda{word-spacing:6.080000pt;}
.wsb2{word-spacing:6.186667pt;}
.ws86{word-spacing:6.400000pt;}
.ws3c{word-spacing:6.506667pt;}
.ws9a{word-spacing:6.516298pt;}
.wsae{word-spacing:6.666667pt;}
.wsa7{word-spacing:7.744241pt;}
.wsa6{word-spacing:13.170893pt;}
.ws67{word-spacing:15.711717pt;}
.wsa8{word-spacing:15.937712pt;}
.wsd4{word-spacing:30.625301pt;}
.ws95{word-spacing:42.658667pt;}
.ws5a{word-spacing:57.676199pt;}
.ws72{word-spacing:65.039467pt;}
.wsa9{word-spacing:65.082146pt;}
.ws94{word-spacing:65.698133pt;}
.ws91{word-spacing:65.698667pt;}
.ws6e{word-spacing:66.645867pt;}
.ws68{word-spacing:68.156673pt;}
.ws6b{word-spacing:80.764267pt;}
.ws8c{word-spacing:87.217600pt;}
.ws73{word-spacing:88.540267pt;}
.ws93{word-spacing:88.738133pt;}
.ws8e{word-spacing:88.738667pt;}
.ws8d{word-spacing:94.636267pt;}
.ws8b{word-spacing:127.499733pt;}
.ws90{word-spacing:147.768533pt;}
.ws8f{word-spacing:148.924800pt;}
.ws92{word-spacing:171.964800pt;}
.wsd2{word-spacing:187.211440pt;}
.wsc4{word-spacing:215.004800pt;}
.wsc9{word-spacing:227.164800pt;}
.wsb4{word-spacing:234.826667pt;}
.wsa5{word-spacing:236.983204pt;}
.wscc{word-spacing:238.685333pt;}
.wsce{word-spacing:241.916800pt;}
.wsc6{word-spacing:254.493867pt;}
.wsc2{word-spacing:261.131200pt;}
.wsc8{word-spacing:266.013867pt;}
.wscb{word-spacing:266.653867pt;}
.wsc0{word-spacing:270.668800pt;}
.ws3e{word-spacing:278.257600pt;}
.ws80{word-spacing:285.013333pt;}
.ws7e{word-spacing:293.559693pt;}
.wsb3{word-spacing:297.333333pt;}
.ws57{word-spacing:329.849559pt;}
.wsbd{word-spacing:334.149867pt;}
.ws7d{word-spacing:347.520000pt;}
.wsc1{word-spacing:359.026667pt;}
.wsc5{word-spacing:394.410667pt;}
.wsc7{word-spacing:405.930667pt;}
.wsca{word-spacing:406.570667pt;}
.wscd{word-spacing:418.090667pt;}
.ws52{word-spacing:540.496000pt;}
.ws4f{word-spacing:555.472000pt;}
.ws55{word-spacing:561.312000pt;}
.ws54{word-spacing:563.536000pt;}
.wsd8{word-spacing:608.000000pt;}
.ws53{word-spacing:759.266133pt;}
.ws51{word-spacing:797.570133pt;}
._48{margin-left:-1269.671014pt;}
._39{margin-left:-631.380731pt;}
._53{margin-left:-480.571811pt;}
._3d{margin-left:-333.100365pt;}
._d{margin-left:-241.461428pt;}
._46{margin-left:-96.573333pt;}
._45{margin-left:-84.202271pt;}
._44{margin-left:-77.109589pt;}
._3e{margin-left:-65.850620pt;}
._54{margin-left:-7.480533pt;}
._47{margin-left:-6.245202pt;}
._7{margin-left:-5.251733pt;}
._3{margin-left:-4.352000pt;}
._0{margin-left:-2.564267pt;}
._1{margin-left:-0.938667pt;}
._2{width:1.258667pt;}
._4{width:2.666133pt;}
._6{width:4.270933pt;}
._8{width:5.842133pt;}
._40{width:6.974933pt;}
._4a{width:20.618907pt;}
._4b{width:21.966442pt;}
._49{width:26.958389pt;}
._1c{width:28.944459pt;}
._27{width:38.587467pt;}
._11{width:40.353343pt;}
._3c{width:41.697816pt;}
._12{width:43.168508pt;}
._28{width:44.671733pt;}
._2a{width:46.363467pt;}
._23{width:53.167467pt;}
._42{width:57.655633pt;}
._20{width:59.537823pt;}
._3a{width:61.867545pt;}
._3b{width:64.064731pt;}
._16{width:67.865723pt;}
._32{width:72.486933pt;}
._43{width:73.594316pt;}
._e{width:74.874467pt;}
._2b{width:77.541867pt;}
._1d{width:78.564939pt;}
._33{width:80.045867pt;}
._29{width:81.075733pt;}
._52{width:83.439652pt;}
._1b{width:85.156135pt;}
._1e{width:88.620608pt;}
._2c{width:97.099733pt;}
._24{width:98.975467pt;}
._25{width:104.115733pt;}
._4c{width:107.316785pt;}
._19{width:116.089756pt;}
._18{width:117.079759pt;}
._21{width:118.906235pt;}
._22{width:120.018133pt;}
._1f{width:121.252823pt;}
._2d{width:122.796267pt;}
._f{width:132.151709pt;}
._38{width:133.929268pt;}
._2f{width:135.752000pt;}
._2e{width:144.086933pt;}
._15{width:146.753869pt;}
._51{width:150.696116pt;}
._13{width:155.167598pt;}
._34{width:159.820800pt;}
._41{width:161.315112pt;}
._37{width:169.116800pt;}
._31{width:171.340800pt;}
._30{width:181.117000pt;}
._35{width:182.121600pt;}
._36{width:193.641067pt;}
._17{width:213.311220pt;}
._1a{width:232.835984pt;}
._26{width:253.832533pt;}
._50{width:292.301867pt;}
._10{width:386.156800pt;}
._4f{width:432.816533pt;}
._9{width:477.214933pt;}
._a{width:560.983467pt;}
._5{width:633.470400pt;}
._14{width:635.814313pt;}
._3f{width:645.173333pt;}
._4d{width:706.450667pt;}
._b{width:714.166400pt;}
._c{width:728.668800pt;}
._4e{width:748.897600pt;}
.fs9{font-size:36.000000pt;}
.fs6{font-size:36.800000pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:39.706133pt;}
.fs7{font-size:40.000000pt;}
.fsf{font-size:40.434667pt;}
.fs16{font-size:40.588267pt;}
.fs8{font-size:42.000000pt;}
.fs5{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs12{font-size:52.941333pt;}
.fs3{font-size:53.333333pt;}
.fs10{font-size:53.913067pt;}
.fs15{font-size:54.117867pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs14{font-size:77.117867pt;}
.fs13{font-size:79.411733pt;}
.fs2{font-size:90.666667pt;}
.fse{font-size:103.613867pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:2.666533pt;}
.ya6{bottom:3.061611pt;}
.ya2{bottom:3.061817pt;}
.y107{bottom:4.269467pt;}
.y158{bottom:4.270267pt;}
.y106{bottom:6.848533pt;}
.ye6{bottom:6.849200pt;}
.y157{bottom:6.849333pt;}
.y108{bottom:8.116933pt;}
.ye7{bottom:8.117600pt;}
.y159{bottom:8.117733pt;}
.y94{bottom:8.298133pt;}
.y93{bottom:9.182667pt;}
.y95{bottom:12.131067pt;}
.ya5{bottom:14.764993pt;}
.ya1{bottom:14.765200pt;}
.ya7{bottom:14.847867pt;}
.ya3{bottom:18.528933pt;}
.ya4{bottom:34.121733pt;}
.y25{bottom:46.068267pt;}
.y24{bottom:56.734933pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:67.401600pt;}
.y14d{bottom:67.600400pt;}
.y115{bottom:75.881600pt;}
.y9e{bottom:76.092533pt;}
.yc4{bottom:77.010933pt;}
.yfd{bottom:80.225867pt;}
.y71{bottom:81.225467pt;}
.y11a{bottom:82.464267pt;}
.y14c{bottom:84.933733pt;}
.y4{bottom:86.333337pt;}
.y179{bottom:86.576400pt;}
.yc2{bottom:86.658800pt;}
.y22{bottom:86.722400pt;}
.ye3{bottom:91.079867pt;}
.y114{bottom:93.214933pt;}
.y195{bottom:93.958267pt;}
.yfc{bottom:97.559200pt;}
.y70{bottom:98.558800pt;}
.y119{bottom:99.797600pt;}
.y14b{bottom:102.267067pt;}
.y178{bottom:103.909733pt;}
.yc1{bottom:103.992133pt;}
.ye2{bottom:104.146533pt;}
.y194{bottom:108.358267pt;}
.y113{bottom:110.548267pt;}
.yfb{bottom:114.892533pt;}
.y6f{bottom:115.892133pt;}
.y118{bottom:117.130933pt;}
.y26{bottom:120.977333pt;}
.y177{bottom:121.243067pt;}
.yc0{bottom:121.325467pt;}
.y21{bottom:123.790666pt;}
.ye1{bottom:123.936400pt;}
.y193{bottom:126.537733pt;}
.y7f{bottom:127.230667pt;}
.y112{bottom:127.881600pt;}
.y14a{bottom:131.508133pt;}
.yfa{bottom:132.225867pt;}
.y6e{bottom:133.225467pt;}
.y117{bottom:134.464267pt;}
.y176{bottom:138.576400pt;}
.ye0{bottom:140.219333pt;}
.y192{bottom:140.937733pt;}
.y111{bottom:145.214933pt;}
.yf9{bottom:149.559333pt;}
.y149{bottom:150.165600pt;}
.y6d{bottom:150.558800pt;}
.y116{bottom:151.797600pt;}
.y175{bottom:155.909733pt;}
.ybf{bottom:155.992133pt;}
.ydf{bottom:156.502267pt;}
.y191{bottom:159.117333pt;}
.y110{bottom:162.548267pt;}
.y47{bottom:166.402800pt;}
.yf8{bottom:166.892667pt;}
.y6c{bottom:167.892133pt;}
.y148{bottom:168.822933pt;}
.ybe{bottom:169.058933pt;}
.y7e{bottom:169.130933pt;}
.yde{bottom:172.785200pt;}
.y174{bottom:173.243067pt;}
.y190{bottom:173.517333pt;}
.y18{bottom:175.052000pt;}
.y10f{bottom:179.881600pt;}
.y46{bottom:183.736133pt;}
.yf7{bottom:184.226000pt;}
.y6b{bottom:185.225467pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y7d{bottom:186.464267pt;}
.y147{bottom:187.480267pt;}
.ydd{bottom:189.068133pt;}
.ybd{bottom:190.253867pt;}
.y173{bottom:190.576400pt;}
.y18f{bottom:191.696800pt;}
.y10e{bottom:197.214933pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y45{bottom:201.069467pt;}
.yf6{bottom:201.559333pt;}
.y6a{bottom:202.558800pt;}
.y7c{bottom:203.797600pt;}
.ydc{bottom:205.351067pt;}
.y9d{bottom:205.483867pt;}
.y18e{bottom:206.096800pt;}
.y146{bottom:206.541200pt;}
.y172{bottom:207.909733pt;}
.ybc{bottom:208.426533pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y10d{bottom:214.548267pt;}
.y44{bottom:218.402800pt;}
.yf5{bottom:218.892667pt;}
.y69{bottom:219.892133pt;}
.y7b{bottom:221.130933pt;}
.ydb{bottom:221.634000pt;}
.y9c{bottom:222.817200pt;}
.y18d{bottom:224.276400pt;}
.y145{bottom:224.794933pt;}
.y171{bottom:225.243067pt;}
.ybb{bottom:226.599200pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y10c{bottom:231.881600pt;}
.y43{bottom:235.736133pt;}
.y68{bottom:237.225467pt;}
.yda{bottom:237.916933pt;}
.y7a{bottom:238.464267pt;}
.y18c{bottom:238.676400pt;}
.y9b{bottom:240.150533pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y170{bottom:242.576400pt;}
.yf4{bottom:243.784933pt;}
.yba{bottom:244.771867pt;}
.y144{bottom:245.613333pt;}
.yc3{bottom:246.958667pt;}
.y10b{bottom:249.214933pt;}
.y42{bottom:253.069467pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yd9{bottom:254.199867pt;}
.y67{bottom:254.558800pt;}
.y79{bottom:255.797600pt;}
.y18b{bottom:256.855867pt;}
.y9a{bottom:257.483867pt;}
.y143{bottom:258.946667pt;}
.y16f{bottom:259.909733pt;}
.y141{bottom:263.634000pt;}
.yb9{bottom:265.590267pt;}
.y10a{bottom:266.548267pt;}
.y41{bottom:270.402800pt;}
.yd8{bottom:270.482800pt;}
.y18a{bottom:271.255867pt;}
.y66{bottom:271.892133pt;}
.y98{bottom:272.150667pt;}
.yb7{bottom:272.256933pt;}
.y78{bottom:273.130933pt;}
.y97{bottom:274.817200pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y16e{bottom:277.243067pt;}
.yb6{bottom:278.923600pt;}
.y142{bottom:281.654800pt;}
.y109{bottom:283.881600pt;}
.yd7{bottom:286.765733pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y40{bottom:287.736133pt;}
.y65{bottom:289.225467pt;}
.y189{bottom:289.435333pt;}
.y77{bottom:290.464267pt;}
.yb8{bottom:292.256933pt;}
.y16d{bottom:294.576400pt;}
.y92{bottom:295.268000pt;}
.y91{bottom:295.268667pt;}
.y105{bottom:300.774667pt;}
.yd6{bottom:303.048667pt;}
.y188{bottom:303.835467pt;}
.y64{bottom:306.558800pt;}
.y96{bottom:307.268667pt;}
.y76{bottom:307.797600pt;}
.y104{bottom:308.774000pt;}
.y140{bottom:309.340267pt;}
.yf{bottom:309.452000pt;}
.y16c{bottom:311.909733pt;}
.yb5{bottom:314.965067pt;}
.y3f{bottom:316.408000pt;}
.yd5{bottom:321.221333pt;}
.y187{bottom:322.014933pt;}
.y75{bottom:325.130933pt;}
.y16b{bottom:329.243067pt;}
.yb4{bottom:335.027600pt;}
.y63{bottom:335.230667pt;}
.y186{bottom:336.414933pt;}
.yd4{bottom:337.988933pt;}
.y90{bottom:339.720133pt;}
.y103{bottom:341.225467pt;}
.y13f{bottom:341.304667pt;}
.y74{bottom:342.464267pt;}
.ye{bottom:343.809333pt;}
.y16a{bottom:346.576400pt;}
.yb3{bottom:353.200267pt;}
.yd3{bottom:354.271867pt;}
.y185{bottom:354.594400pt;}
.y8f{bottom:357.053467pt;}
.y102{bottom:358.558800pt;}
.y13e{bottom:358.638000pt;}
.y73{bottom:359.797600pt;}
.yd{bottom:362.706666pt;}
.y169{bottom:363.909733pt;}
.y184{bottom:368.994400pt;}
.y3e{bottom:369.646800pt;}
.yd2{bottom:370.554800pt;}
.yb2{bottom:371.372933pt;}
.y8e{bottom:374.386800pt;}
.y101{bottom:375.892133pt;}
.y13d{bottom:375.971333pt;}
.y62{bottom:377.130933pt;}
.y168{bottom:381.243067pt;}
.yd1{bottom:386.837733pt;}
.y183{bottom:387.174000pt;}
.yb1{bottom:389.545600pt;}
.y8d{bottom:391.720133pt;}
.y100{bottom:393.225467pt;}
.y13c{bottom:393.304667pt;}
.y61{bottom:394.464267pt;}
.y3d{bottom:394.585467pt;}
.y167{bottom:398.576400pt;}
.y182{bottom:401.574000pt;}
.yd0{bottom:403.120667pt;}
.yf3{bottom:404.524933pt;}
.yb0{bottom:407.718400pt;}
.y3c{bottom:408.185467pt;}
.y8c{bottom:409.053467pt;}
.yff{bottom:410.558800pt;}
.y13b{bottom:410.638000pt;}
.y60{bottom:411.797600pt;}
.y181{bottom:419.753467pt;}
.ycf{bottom:421.293333pt;}
.y166{bottom:427.248267pt;}
.y13a{bottom:427.971333pt;}
.yaf{bottom:428.536667pt;}
.y5f{bottom:429.130933pt;}
.y3b{bottom:433.124000pt;}
.y180{bottom:434.153467pt;}
.yad{bottom:435.203333pt;}
.y8b{bottom:437.725333pt;}
.yce{bottom:439.026800pt;}
.yfe{bottom:439.230667pt;}
.yac{bottom:441.870000pt;}
.y5e{bottom:446.464267pt;}
.y3a{bottom:446.724000pt;}
.yc{bottom:446.990669pt;}
.y17f{bottom:452.333067pt;}
.yae{bottom:455.203333pt;}
.y139{bottom:456.643200pt;}
.ycd{bottom:456.760133pt;}
.y39{bottom:460.324000pt;}
.yb{bottom:462.990669pt;}
.y5d{bottom:463.797600pt;}
.y17e{bottom:466.733067pt;}
.y165{bottom:469.148533pt;}
.y138{bottom:471.599600pt;}
.y38{bottom:473.924000pt;}
.ycc{bottom:474.493467pt;}
.yab{bottom:477.911467pt;}
.ya{bottom:478.990666pt;}
.y8a{bottom:479.625600pt;}
.y5c{bottom:481.130933pt;}
.y17d{bottom:481.133067pt;}
.y137{bottom:484.666400pt;}
.y164{bottom:486.482000pt;}
.y37{bottom:487.524000pt;}
.ycb{bottom:492.226667pt;}
.y9{bottom:494.990666pt;}
.y89{bottom:496.958933pt;}
.y5b{bottom:498.464267pt;}
.y17c{bottom:499.312533pt;}
.y36{bottom:501.124000pt;}
.y163{bottom:503.815333pt;}
.yaa{bottom:505.597067pt;}
.y136{bottom:505.861333pt;}
.yca{bottom:509.560000pt;}
.y17b{bottom:513.712533pt;}
.y88{bottom:514.292267pt;}
.y35{bottom:514.724000pt;}
.y5a{bottom:515.797600pt;}
.y135{bottom:519.194667pt;}
.y162{bottom:521.148667pt;}
.yc9{bottom:525.842933pt;}
.y34{bottom:528.324000pt;}
.y1a6{bottom:532.617867pt;}
.y59{bottom:533.130933pt;}
.yf2{bottom:533.456400pt;}
.y134{bottom:537.367333pt;}
.ya9{bottom:537.561333pt;}
.y161{bottom:538.482000pt;}
.y33{bottom:541.924000pt;}
.y17a{bottom:543.230667pt;}
.y132{bottom:544.034000pt;}
.y1a5{bottom:547.017867pt;}
.y87{bottom:548.958933pt;}
.yc8{bottom:549.158667pt;}
.y58{bottom:550.464267pt;}
.y133{bottom:550.700667pt;}
.yf1{bottom:550.789733pt;}
.ya8{bottom:554.894667pt;}
.y160{bottom:555.815333pt;}
.yc7{bottom:562.492000pt;}
.y1a4{bottom:565.197467pt;}
.y57{bottom:567.797600pt;}
.yf0{bottom:568.123067pt;}
.ya0{bottom:568.680000pt;}
.y131{bottom:568.873333pt;}
.y86{bottom:570.638533pt;}
.y15f{bottom:573.148667pt;}
.y8{bottom:573.786667pt;}
.y32{bottom:574.421600pt;}
.y12f{bottom:575.540000pt;}
.y1a3{bottom:579.597467pt;}
.y130{bottom:582.206667pt;}
.y56{bottom:585.130933pt;}
.yef{bottom:585.456400pt;}
.yc6{bottom:587.212667pt;}
.y9f{bottom:587.346133pt;}
.y85{bottom:588.811333pt;}
.y15e{bottom:590.482000pt;}
.y7{bottom:592.685334pt;}
.y1a2{bottom:597.776933pt;}
.y31{bottom:598.560267pt;}
.y12e{bottom:600.379467pt;}
.y12c{bottom:600.621733pt;}
.y55{bottom:602.464267pt;}
.yee{bottom:602.789733pt;}
.y84{bottom:606.984000pt;}
.y12a{bottom:607.288400pt;}
.y15d{bottom:607.815333pt;}
.y12d{bottom:613.712800pt;}
.y12b{bottom:613.955067pt;}
.yc5{bottom:614.898133pt;}
.y1a1{bottom:615.956533pt;}
.y30{bottom:617.186933pt;}
.y54{bottom:619.797600pt;}
.yed{bottom:620.123067pt;}
.y15c{bottom:625.148667pt;}
.y83{bottom:625.156667pt;}
.y2f{bottom:627.893600pt;}
.y129{bottom:632.370133pt;}
.y1a0{bottom:634.136133pt;}
.y53{bottom:637.130933pt;}
.yec{bottom:637.456400pt;}
.y127{bottom:639.036800pt;}
.y15b{bottom:642.482000pt;}
.y82{bottom:643.329333pt;}
.y6{bottom:645.598667pt;}
.y128{bottom:645.703467pt;}
.y2e{bottom:646.520267pt;}
.y19f{bottom:648.536000pt;}
.y52{bottom:654.464267pt;}
.yeb{bottom:654.789733pt;}
.y156{bottom:661.264000pt;}
.y155{bottom:661.264133pt;}
.y125{bottom:663.876133pt;}
.y81{bottom:664.147733pt;}
.y19e{bottom:666.715600pt;}
.y2d{bottom:668.565467pt;}
.y3{bottom:668.977329pt;}
.y15a{bottom:669.264133pt;}
.y124{bottom:670.744533pt;}
.y51{bottom:671.797600pt;}
.yea{bottom:672.123067pt;}
.y126{bottom:677.209467pt;}
.y19d{bottom:681.115600pt;}
.y50{bottom:689.130933pt;}
.ye9{bottom:689.456400pt;}
.y80{bottom:691.833333pt;}
.y154{bottom:694.156400pt;}
.y123{bottom:695.382133pt;}
.y19c{bottom:699.295067pt;}
.y121{bottom:702.048800pt;}
.y4f{bottom:706.464267pt;}
.y2c{bottom:708.042667pt;}
.ye4{bottom:708.238533pt;}
.ye5{bottom:708.238667pt;}
.y122{bottom:708.715467pt;}
.y153{bottom:711.489733pt;}
.y19b{bottom:713.695067pt;}
.ye8{bottom:716.238533pt;}
.y4e{bottom:723.797600pt;}
.y2b{bottom:725.376000pt;}
.y120{bottom:726.888133pt;}
.y152{bottom:728.823067pt;}
.y19a{bottom:731.874533pt;}
.y11e{bottom:733.554800pt;}
.y11f{bottom:740.221467pt;}
.y4d{bottom:741.130933pt;}
.y151{bottom:746.156400pt;}
.y199{bottom:746.274533pt;}
.y4c{bottom:758.464267pt;}
.y11d{bottom:761.039867pt;}
.y150{bottom:763.489733pt;}
.y198{bottom:764.454133pt;}
.y11c{bottom:772.394000pt;}
.y4b{bottom:775.797600pt;}
.y197{bottom:778.854133pt;}
.y14f{bottom:780.823067pt;}
.y2{bottom:781.661334pt;}
.y4a{bottom:793.130933pt;}
.y196{bottom:797.033600pt;}
.y2a{bottom:808.536000pt;}
.y14e{bottom:809.494933pt;}
.y49{bottom:810.464267pt;}
.y11b{bottom:811.433600pt;}
.y29{bottom:824.536000pt;}
.y28{bottom:840.536000pt;}
.y72{bottom:844.173200pt;}
.y48{bottom:845.053600pt;}
.y27{bottom:858.425733pt;}
.y1{bottom:859.312000pt;}
.h1c{height:20.000000pt;}
.h2c{height:22.998667pt;}
.h2f{height:23.000000pt;}
.h10{height:25.704000pt;}
.hb{height:26.275200pt;}
.h1e{height:27.794293pt;}
.h20{height:28.350179pt;}
.h7{height:28.560000pt;}
.hd{height:28.840000pt;}
.h18{height:28.870352pt;}
.h31{height:28.980022pt;}
.h22{height:29.411233pt;}
.h1a{height:29.950874pt;}
.ha{height:30.464000pt;}
.h16{height:31.001333pt;}
.h12{height:32.368000pt;}
.h11{height:34.272000pt;}
.h15{height:34.931733pt;}
.h33{height:35.554688pt;}
.h35{height:36.176000pt;}
.h2b{height:36.210667pt;}
.h1f{height:37.058933pt;}
.h21{height:37.800112pt;}
.h14{height:38.080000pt;}
.hc{height:38.453333pt;}
.h19{height:38.493930pt;}
.h23{height:39.214845pt;}
.h29{height:39.505208pt;}
.h1b{height:39.934630pt;}
.h2e{height:40.086330pt;}
.h6{height:40.800000pt;}
.h13{height:41.242667pt;}
.h27{height:41.544000pt;}
.h28{height:41.544533pt;}
.h3{height:42.840000pt;}
.he{height:44.800000pt;}
.h1d{height:45.000000pt;}
.h37{height:46.160000pt;}
.hf{height:48.468000pt;}
.h2{height:48.960000pt;}
.h30{height:53.272373pt;}
.h2d{height:57.122951pt;}
.h24{height:58.822070pt;}
.h34{height:60.131733pt;}
.h25{height:60.938667pt;}
.h36{height:61.873067pt;}
.h26{height:63.028821pt;}
.h5{height:69.360000pt;}
.h17{height:76.749139pt;}
.h32{height:79.688000pt;}
.h2a{height:87.605333pt;}
.h4{height:105.826671pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:19.998667pt;}
.w8{width:123.000000pt;}
.wa{width:147.000000pt;}
.w5{width:163.000000pt;}
.w7{width:304.857333pt;}
.w9{width:333.000000pt;}
.w2{width:566.928019pt;}
.w4{width:634.666667pt;}
.w3{width:634.960000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:2.254267pt;}
.x41{left:8.615733pt;}
.x25{left:10.594800pt;}
.x3a{left:12.784533pt;}
.x65{left:14.866933pt;}
.x23{left:25.105894pt;}
.x40{left:33.590667pt;}
.x1a{left:37.952267pt;}
.x39{left:40.359200pt;}
.x64{left:41.552400pt;}
.x1f{left:50.137733pt;}
.x3f{left:51.697600pt;}
.x21{left:66.947600pt;}
.x5{left:68.381867pt;}
.x2f{left:72.211067pt;}
.x5e{left:73.270400pt;}
.x12{left:75.590533pt;}
.x5d{left:77.485067pt;}
.x15{left:79.770133pt;}
.x35{left:83.476533pt;}
.x18{left:84.756400pt;}
.x13{left:86.929067pt;}
.x1{left:90.706667pt;}
.x44{left:93.476000pt;}
.x2{left:94.486667pt;}
.x51{left:95.472000pt;}
.xa{left:100.631733pt;}
.x17{left:102.292133pt;}
.x14{left:123.234933pt;}
.x60{left:135.322667pt;}
.x4b{left:137.266267pt;}
.x57{left:140.146267pt;}
.x53{left:143.506133pt;}
.xf{left:144.546533pt;}
.x45{left:146.386133pt;}
.x3e{left:149.017333pt;}
.xd{left:154.413600pt;}
.x43{left:155.996533pt;}
.x1e{left:161.568000pt;}
.x32{left:165.729867pt;}
.x31{left:168.609867pt;}
.x2a{left:170.726133pt;}
.xb{left:179.666400pt;}
.x4{left:180.874667pt;}
.x16{left:190.889333pt;}
.x11{left:197.554400pt;}
.x26{left:199.508133pt;}
.x5f{left:202.037600pt;}
.xe{left:205.960267pt;}
.x3c{left:219.480933pt;}
.x24{left:222.951970pt;}
.x27{left:226.457566pt;}
.x22{left:227.496933pt;}
.x20{left:231.505813pt;}
.xc{left:234.551600pt;}
.x3d{left:237.633067pt;}
.x54{left:243.429333pt;}
.x10{left:244.831200pt;}
.x52{left:246.309333pt;}
.x37{left:247.251867pt;}
.x47{left:249.189333pt;}
.x36{left:250.341600pt;}
.x33{left:252.603600pt;}
.x61{left:254.465333pt;}
.x38{left:259.760000pt;}
.x2b{left:260.784667pt;}
.x58{left:263.694133pt;}
.x4c{left:264.743333pt;}
.x46{left:267.863333pt;}
.x30{left:278.043067pt;}
.x29{left:280.305067pt;}
.x6{left:286.573867pt;}
.x1c{left:291.798667pt;}
.x1d{left:311.798933pt;}
.x1b{left:353.888933pt;}
.x9{left:357.536000pt;}
.x63{left:364.907867pt;}
.x4e{left:367.993467pt;}
.x55{left:371.353333pt;}
.x49{left:374.233333pt;}
.x5b{left:381.505200pt;}
.x3b{left:382.759867pt;}
.x4d{left:389.787467pt;}
.x48{left:392.907333pt;}
.x62{left:394.639333pt;}
.x3{left:404.408000pt;}
.x7{left:417.465600pt;}
.x8{left:419.863600pt;}
.x2d{left:432.632933pt;}
.x2c{left:441.041600pt;}
.x50{left:462.664133pt;}
.x28{left:466.425600pt;}
.x56{left:471.772133pt;}
.x5a{left:473.828000pt;}
.x2e{left:475.303067pt;}
.x5c{left:480.106000pt;}
.x42{left:482.016667pt;}
.x59{left:489.156933pt;}
.x4f{left:490.206267pt;}
.x4a{left:493.326133pt;}
.x34{left:502.994133pt;}
}




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