
    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_c1239bc9309f92c039c38248.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_ab497ac0d79d2a4a273873b0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d478f22fb27836f9f63cb4aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_0df996478d0df6369b0898fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;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_7da8dc36b77ec3f87af39955.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.221191;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_be3b4bfc86bc805faf5e5224.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_e8c4746394389910396c52b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.207031;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_1b79ecaa41a8ce7eff0f2314.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.221191;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_18d73198c67c18cc7451d1ab.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_496d96b5ceb405f024bb20c9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.833496;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_6a6d5151e008335edbdddf68.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.024902;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;}
.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);}
.v4{vertical-align:-84.384000px;}
.v9{vertical-align:-48.816000px;}
.v1{vertical-align:-41.616000px;}
.v8{vertical-align:-36.864000px;}
.v7{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:65.820000px;}
.v3{vertical-align:77.472000px;}
.v2{vertical-align:105.840000px;}
.v5{vertical-align:118.200000px;}
.ls45{letter-spacing:-6.120000px;}
.lsab{letter-spacing:-3.078000px;}
.lsa6{letter-spacing:-2.934000px;}
.ls21{letter-spacing:-1.512000px;}
.ls20{letter-spacing:-1.476000px;}
.ls76{letter-spacing:-1.092000px;}
.ls6a{letter-spacing:-1.008000px;}
.ls6e{letter-spacing:-0.774000px;}
.lsa{letter-spacing:-0.762000px;}
.lsaf{letter-spacing:-0.720000px;}
.ls43{letter-spacing:-0.714000px;}
.ls3a{letter-spacing:-0.684000px;}
.ls6{letter-spacing:-0.672000px;}
.lsaa{letter-spacing:-0.654000px;}
.ls87{letter-spacing:-0.618000px;}
.ls3f{letter-spacing:-0.612000px;}
.ls8d{letter-spacing:-0.606000px;}
.ls7f{letter-spacing:-0.576000px;}
.ls4c{letter-spacing:-0.568800px;}
.ls7{letter-spacing:-0.555600px;}
.ls25{letter-spacing:-0.544800px;}
.ls64{letter-spacing:-0.530400px;}
.ls88{letter-spacing:-0.529800px;}
.ls5e{letter-spacing:-0.468000px;}
.ls24{letter-spacing:-0.454800px;}
.ls5f{letter-spacing:-0.432000px;}
.lsa1{letter-spacing:-0.386400px;}
.ls44{letter-spacing:-0.357000px;}
.ls1f{letter-spacing:-0.351600px;}
.lsbd{letter-spacing:-0.349800px;}
.ls14{letter-spacing:-0.339600px;}
.ls69{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.207600px;}
.ls78{letter-spacing:-0.194400px;}
.ls3c{letter-spacing:-0.183000px;}
.ls83{letter-spacing:-0.171600px;}
.ls9c{letter-spacing:-0.161400px;}
.lsa9{letter-spacing:-0.138000px;}
.ls9a{letter-spacing:-0.125400px;}
.ls7e{letter-spacing:-0.108000px;}
.ls61{letter-spacing:-0.039000px;}
.ls22{letter-spacing:-0.034560px;}
.ls8e{letter-spacing:-0.024480px;}
.ls2e{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.lsa5{letter-spacing:0.005760px;}
.ls15{letter-spacing:0.022920px;}
.ls94{letter-spacing:0.036000px;}
.ls17{letter-spacing:0.097800px;}
.ls6d{letter-spacing:0.101400px;}
.ls6f{letter-spacing:0.101520px;}
.ls86{letter-spacing:0.119400px;}
.ls8c{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.156000px;}
.ls73{letter-spacing:0.180000px;}
.lsb9{letter-spacing:0.192600px;}
.ls16{letter-spacing:0.241800px;}
.ls81{letter-spacing:0.243600px;}
.ls54{letter-spacing:0.245400px;}
.ls3e{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.306000px;}
.ls38{letter-spacing:0.324000px;}
.ls8f{letter-spacing:0.329400px;}
.ls6c{letter-spacing:0.336600px;}
.ls3d{letter-spacing:0.346200px;}
.lsbe{letter-spacing:0.373800px;}
.ls3b{letter-spacing:0.396000px;}
.ls9{letter-spacing:0.418800px;}
.ls39{letter-spacing:0.432000px;}
.ls48{letter-spacing:0.450000px;}
.ls42{letter-spacing:0.454800px;}
.ls5c{letter-spacing:0.468000px;}
.lsbf{letter-spacing:0.472200px;}
.lsa7{letter-spacing:0.473400px;}
.ls4b{letter-spacing:0.490200px;}
.ls60{letter-spacing:0.504000px;}
.ls4f{letter-spacing:0.540000px;}
.ls2b{letter-spacing:0.562800px;}
.ls8{letter-spacing:0.572400px;}
.ls50{letter-spacing:0.576000px;}
.lse{letter-spacing:0.596400px;}
.ls93{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.666000px;}
.ls29{letter-spacing:0.714000px;}
.ls77{letter-spacing:0.726000px;}
.ls80{letter-spacing:0.756000px;}
.ls89{letter-spacing:0.810000px;}
.ls33{letter-spacing:0.813312px;}
.ls4d{letter-spacing:0.816000px;}
.ls41{letter-spacing:0.822000px;}
.ls9d{letter-spacing:0.834000px;}
.ls3{letter-spacing:0.834912px;}
.ls34{letter-spacing:0.864000px;}
.ls2d{letter-spacing:0.882000px;}
.ls5d{letter-spacing:0.900000px;}
.lsb3{letter-spacing:0.933312px;}
.ls4e{letter-spacing:0.966000px;}
.ls51{letter-spacing:1.008000px;}
.ls8b{letter-spacing:1.078272px;}
.ls5{letter-spacing:1.128960px;}
.ls85{letter-spacing:1.182000px;}
.lsa8{letter-spacing:1.200000px;}
.ls4{letter-spacing:1.248960px;}
.ls26{letter-spacing:1.300320px;}
.ls9b{letter-spacing:1.302000px;}
.ls9e{letter-spacing:1.314000px;}
.ls10{letter-spacing:1.416000px;}
.ls84{letter-spacing:1.560000px;}
.ls9f{letter-spacing:1.770000px;}
.ls6b{letter-spacing:1.776000px;}
.ls95{letter-spacing:1.860000px;}
.ls2c{letter-spacing:1.914000px;}
.ls90{letter-spacing:2.010000px;}
.ls2f{letter-spacing:2.052000px;}
.lsf{letter-spacing:2.106000px;}
.ls1e{letter-spacing:2.276352px;}
.ls7b{letter-spacing:2.304000px;}
.lsa4{letter-spacing:2.324160px;}
.ls2a{letter-spacing:2.568960px;}
.ls59{letter-spacing:3.693312px;}
.ls52{letter-spacing:3.744000px;}
.ls37{letter-spacing:3.864000px;}
.ls5a{letter-spacing:5.133312px;}
.ls36{letter-spacing:5.184000px;}
.lsc{letter-spacing:5.448960px;}
.ls5b{letter-spacing:6.214752px;}
.ls7a{letter-spacing:6.573312px;}
.ls71{letter-spacing:6.624000px;}
.ls28{letter-spacing:6.838272px;}
.lsb{letter-spacing:6.888960px;}
.ls47{letter-spacing:8.013312px;}
.ls72{letter-spacing:9.144000px;}
.lsba{letter-spacing:9.718272px;}
.ls7d{letter-spacing:10.893312px;}
.lsb1{letter-spacing:10.944000px;}
.lsb0{letter-spacing:11.124000px;}
.lsb2{letter-spacing:13.584000px;}
.ls7c{letter-spacing:13.773312px;}
.ls65{letter-spacing:16.294752px;}
.ls35{letter-spacing:16.653312px;}
.ls79{letter-spacing:18.144000px;}
.ls96{letter-spacing:18.358272px;}
.ls27{letter-spacing:18.408960px;}
.ls98{letter-spacing:19.848960px;}
.lsad{letter-spacing:21.701520px;}
.lsac{letter-spacing:21.780000px;}
.ls97{letter-spacing:22.484160px;}
.ls1c{letter-spacing:29.687040px;}
.lsb7{letter-spacing:33.933312px;}
.ls70{letter-spacing:36.813312px;}
.lsb4{letter-spacing:39.693312px;}
.ls11{letter-spacing:39.767040px;}
.lsd{letter-spacing:40.078272px;}
.lsb5{letter-spacing:41.133312px;}
.ls99{letter-spacing:41.154912px;}
.lsb6{letter-spacing:42.214752px;}
.ls92{letter-spacing:42.573312px;}
.lsae{letter-spacing:42.789600px;}
.ls1{letter-spacing:42.888960px;}
.ls1a{letter-spacing:45.476352px;}
.lsa0{letter-spacing:49.824000px;}
.ls67{letter-spacing:51.264000px;}
.ls68{letter-spacing:52.704000px;}
.ls82{letter-spacing:53.148960px;}
.ls49{letter-spacing:54.264000px;}
.ls56{letter-spacing:55.533312px;}
.lsa2{letter-spacing:55.848960px;}
.lsb8{letter-spacing:56.664000px;}
.ls57{letter-spacing:58.464000px;}
.ls30{letter-spacing:59.904000px;}
.ls31{letter-spacing:60.024000px;}
.ls58{letter-spacing:60.984000px;}
.ls32{letter-spacing:61.344000px;}
.ls1d{letter-spacing:64.196352px;}
.ls8a{letter-spacing:64.558272px;}
.ls19{letter-spacing:65.867040px;}
.ls46{letter-spacing:70.113312px;}
.lsbb{letter-spacing:77.398272px;}
.lsbc{letter-spacing:78.838272px;}
.ls91{letter-spacing:80.064000px;}
.ls62{letter-spacing:87.264000px;}
.ls55{letter-spacing:91.584000px;}
.ls23{letter-spacing:92.880000px;}
.ls74{letter-spacing:95.544000px;}
.ls75{letter-spacing:95.664000px;}
.lsa3{letter-spacing:104.878272px;}
.ls63{letter-spacing:137.664000px;}
.ls66{letter-spacing:147.384000px;}
.ls4a{letter-spacing:176.532000px;}
.ls1b{letter-spacing:218.507040px;}
.ls12{letter-spacing:1192.296960px;}
.ls53{letter-spacing:1248.716736px;}
.lsc0{letter-spacing:2960.493312px;}
.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;}
}
.ws1b{word-spacing:-144.000000px;}
.ws5{word-spacing:-119.664000px;}
.ws6{word-spacing:-119.520000px;}
.ws2e{word-spacing:-108.144000px;}
.ws32{word-spacing:-108.000000px;}
.ws62{word-spacing:-49.536000px;}
.ws5d{word-spacing:-49.392000px;}
.ws11{word-spacing:-46.874760px;}
.ws13{word-spacing:-46.839648px;}
.ws12{word-spacing:-46.730760px;}
.ws10{word-spacing:-46.706568px;}
.wsf{word-spacing:-46.683648px;}
.ws14{word-spacing:-46.632960px;}
.ws18{word-spacing:-46.598400px;}
.wsd{word-spacing:-46.425360px;}
.wse{word-spacing:-46.293360px;}
.ws15{word-spacing:-46.281360px;}
.ws19{word-spacing:-46.178160px;}
.ws1a{word-spacing:-46.138848px;}
.ws17{word-spacing:-45.171648px;}
.ws16{word-spacing:-45.156960px;}
.wsb{word-spacing:-44.177040px;}
.ws61{word-spacing:-44.131728px;}
.ws21{word-spacing:-44.123040px;}
.ws1d{word-spacing:-44.035728px;}
.ws64{word-spacing:-43.931040px;}
.ws6a{word-spacing:-43.891728px;}
.ws5c{word-spacing:-42.881040px;}
.ws1e{word-spacing:-42.835728px;}
.ws3{word-spacing:-42.737040px;}
.ws7{word-spacing:-42.694128px;}
.ws1c{word-spacing:-42.633840px;}
.ws6d{word-spacing:-42.595128px;}
.ws76{word-spacing:-42.543240px;}
.ws75{word-spacing:-42.495528px;}
.ws8{word-spacing:-42.489840px;}
.ws60{word-spacing:-42.451128px;}
.ws57{word-spacing:-42.435840px;}
.wsc{word-spacing:-42.291840px;}
.ws69{word-spacing:-42.239088px;}
.ws66{word-spacing:-42.177840px;}
.ws72{word-spacing:-42.125088px;}
.ws58{word-spacing:-42.107088px;}
.ws22{word-spacing:-42.071040px;}
.ws68{word-spacing:-41.759088px;}
.ws1f{word-spacing:-41.757840px;}
.ws74{word-spacing:-41.721240px;}
.ws5b{word-spacing:-41.541240px;}
.ws5a{word-spacing:-41.503728px;}
.ws70{word-spacing:-41.417040px;}
.ws2{word-spacing:-41.399040px;}
.ws9{word-spacing:-41.359728px;}
.ws59{word-spacing:-40.995240px;}
.ws47{word-spacing:-40.925088px;}
.ws6e{word-spacing:-40.881600px;}
.ws1{word-spacing:-40.875840px;}
.ws20{word-spacing:-40.858560px;}
.ws5f{word-spacing:-40.851360px;}
.ws65{word-spacing:-40.799688px;}
.ws6f{word-spacing:-40.737840px;}
.ws67{word-spacing:-40.714440px;}
.ws56{word-spacing:-40.704240px;}
.ws4{word-spacing:-40.320240px;}
.ws5e{word-spacing:-40.319088px;}
.ws77{word-spacing:-40.032000px;}
.ws6c{word-spacing:-39.137040px;}
.ws3c{word-spacing:-39.032688px;}
.ws3f{word-spacing:-39.024000px;}
.ws71{word-spacing:-38.993040px;}
.ws30{word-spacing:-38.888688px;}
.ws2b{word-spacing:-38.880000px;}
.ws53{word-spacing:-38.772000px;}
.ws4b{word-spacing:-38.761248px;}
.ws4e{word-spacing:-38.732688px;}
.ws3e{word-spacing:-38.592000px;}
.ws37{word-spacing:-38.556888px;}
.ws3d{word-spacing:-38.556000px;}
.ws3b{word-spacing:-38.516688px;}
.ws41{word-spacing:-38.484000px;}
.ws25{word-spacing:-38.448000px;}
.ws2a{word-spacing:-38.412888px;}
.ws27{word-spacing:-38.412000px;}
.ws2f{word-spacing:-38.372688px;}
.ws23{word-spacing:-38.340000px;}
.ws54{word-spacing:-38.310288px;}
.ws40{word-spacing:-38.066688px;}
.ws63{word-spacing:-38.052000px;}
.ws46{word-spacing:-38.027688px;}
.wsa{word-spacing:-38.016000px;}
.ws52{word-spacing:-37.908000px;}
.ws29{word-spacing:-37.883688px;}
.ws50{word-spacing:-37.872288px;}
.ws42{word-spacing:-37.836000px;}
.ws3a{word-spacing:-37.801248px;}
.ws4f{word-spacing:-37.711248px;}
.ws6b{word-spacing:-37.680288px;}
.ws44{word-spacing:-37.584000px;}
.ws48{word-spacing:-37.536288px;}
.ws31{word-spacing:-37.440048px;}
.ws45{word-spacing:-37.440000px;}
.ws39{word-spacing:-37.368000px;}
.ws26{word-spacing:-37.332000px;}
.ws4c{word-spacing:-37.321848px;}
.ws51{word-spacing:-37.292688px;}
.ws2c{word-spacing:-37.224000px;}
.ws73{word-spacing:-37.177848px;}
.ws28{word-spacing:-36.985248px;}
.ws4d{word-spacing:-36.974688px;}
.ws24{word-spacing:-36.936000px;}
.ws49{word-spacing:-36.720000px;}
.ws43{word-spacing:-36.468000px;}
.ws38{word-spacing:-36.416448px;}
.ws55{word-spacing:-36.360000px;}
.ws2d{word-spacing:-36.324000px;}
.ws33{word-spacing:-36.271248px;}
.ws4a{word-spacing:-35.928000px;}
.ws36{word-spacing:-33.226560px;}
.ws34{word-spacing:-22.861560px;}
.ws35{word-spacing:-17.098560px;}
.ws0{word-spacing:0.000000px;}
._3e{margin-left:-135.810240px;}
._45{margin-left:-52.011360px;}
._1c{margin-left:-31.039200px;}
._68{margin-left:-17.779104px;}
._6f{margin-left:-16.084368px;}
._71{margin-left:-14.491296px;}
._28{margin-left:-13.098720px;}
._5a{margin-left:-12.096000px;}
._5c{margin-left:-10.087056px;}
._70{margin-left:-4.894128px;}
._3{margin-left:-3.556800px;}
._0{margin-left:-2.407680px;}
._1{margin-left:-1.149120px;}
._2{width:1.476480px;}
._4{width:2.821056px;}
._5{width:4.062720px;}
._8{width:5.136480px;}
._a{width:6.865440px;}
._2e{width:7.969968px;}
._27{width:9.027648px;}
._3b{width:10.780800px;}
._3f{width:11.887200px;}
._39{width:12.956640px;}
._3a{width:13.968000px;}
._42{width:15.394656px;}
._2b{width:16.492800px;}
._41{width:17.567856px;}
._20{width:18.997440px;}
._2d{width:20.415840px;}
._21{width:21.521280px;}
._73{width:24.642336px;}
._72{width:25.985664px;}
._67{width:27.306336px;}
._1a{width:28.873440px;}
._1b{width:30.455040px;}
._1f{width:32.262240px;}
._76{width:33.307584px;}
._1e{width:34.623840px;}
._4e{width:36.223680px;}
._75{width:37.414176px;}
._46{width:38.598480px;}
._b{width:39.861120px;}
._63{width:41.000496px;}
._7{width:42.316800px;}
._6{width:44.212320px;}
._40{width:45.867840px;}
._5b{width:49.924800px;}
._44{width:51.384000px;}
._59{width:52.644528px;}
._34{width:53.806608px;}
._37{width:55.541184px;}
._74{width:56.661840px;}
._36{width:57.691920px;}
._38{width:59.643600px;}
._29{width:60.764640px;}
._2a{width:62.150880px;}
._1d{width:63.681168px;}
._15{width:65.235840px;}
._14{width:66.564960px;}
._16{width:67.927680px;}
._13{width:69.182880px;}
._c{width:71.505744px;}
._d{width:72.520464px;}
._60{width:73.673520px;}
._e{width:75.681120px;}
._f{width:77.192784px;}
._54{width:79.002768px;}
._53{width:80.164080px;}
._57{width:82.364064px;}
._56{width:83.814912px;}
._55{width:85.751040px;}
._3c{width:87.440640px;}
._19{width:93.041568px;}
._35{width:94.296192px;}
._30{width:96.476640px;}
._2f{width:98.436000px;}
._12{width:103.833840px;}
._11{width:105.444912px;}
._49{width:107.286816px;}
._50{width:112.633248px;}
._4f{width:113.801040px;}
._52{width:114.846240px;}
._51{width:116.594160px;}
._33{width:118.812000px;}
._32{width:119.928000px;}
._69{width:127.509120px;}
._6a{width:128.781120px;}
._6c{width:131.327520px;}
._64{width:132.464160px;}
._65{width:133.536000px;}
._66{width:135.372000px;}
._9{width:136.451712px;}
._3d{width:140.325120px;}
._22{width:145.579200px;}
._43{width:147.137760px;}
._23{width:148.210560px;}
._6b{width:149.535936px;}
._10{width:151.193760px;}
._2c{width:152.624160px;}
._5e{width:183.485424px;}
._5f{width:184.688688px;}
._5d{width:185.897088px;}
._31{width:193.475904px;}
._24{width:210.481440px;}
._26{width:211.535520px;}
._25{width:212.778720px;}
._18{width:218.834880px;}
._17{width:219.839520px;}
._62{width:222.720000px;}
._61{width:224.208000px;}
._58{width:240.196944px;}
._4c{width:243.346032px;}
._4d{width:245.698704px;}
._4b{width:273.323520px;}
._4a{width:275.231520px;}
._6d{width:312.631536px;}
._6e{width:493.897680px;}
._47{width:761.147520px;}
._48{width:991.816896px;}
._77{width:1807.008480px;}
.fc8{color:rgb(25,25,102);}
.fc7{color:rgb(51,51,204);}
.fc6{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(96,96,96);}
.fc0{color:rgb(91,135,242);}
.fs1{font-size:54.720000px;}
.fs13{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.fs9{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs7{font-size:119.520000px;}
.fs8{font-size:119.664000px;}
.fs11{font-size:126.720000px;}
.fs12{font-size:126.864000px;}
.fsb{font-size:132.480000px;}
.fsc{font-size:132.624000px;}
.fsd{font-size:144.000000px;}
.fsf{font-size:144.144000px;}
.fs2{font-size:168.624000px;}
.fse{font-size:191.520000px;}
.fs6{font-size:191.664000px;}
.fs10{font-size:204.624000px;}
.fs3{font-size:216.144000px;}
.fs5{font-size:240.480000px;}
.fs4{font-size:263.664000px;}
.ybf{bottom:-125.712000px;}
.y11{bottom:-123.228000px;}
.ybe{bottom:-93.276000px;}
.ybd{bottom:-60.876000px;}
.y10{bottom:-53.712000px;}
.yab{bottom:-52.812000px;}
.ybc{bottom:-28.440000px;}
.y9f{bottom:-24.048000px;}
.yaa{bottom:-16.812000px;}
.y86{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.y93{bottom:1.692000px;}
.ybb{bottom:3.960000px;}
.y9e{bottom:11.988000px;}
.yae{bottom:13.320000px;}
.ya9{bottom:19.224000px;}
.yf{bottom:19.764000px;}
.y1{bottom:21.060000px;}
.y17b{bottom:21.996000px;}
.y12f{bottom:22.752000px;}
.y1d{bottom:25.308000px;}
.y85{bottom:25.920000px;}
.y1b2{bottom:27.900000px;}
.y1be{bottom:30.276000px;}
.y3c{bottom:31.464000px;}
.y117{bottom:31.536000px;}
.y13b{bottom:31.932000px;}
.y1cc{bottom:33.264000px;}
.yba{bottom:36.396000px;}
.y92{bottom:37.728000px;}
.y146{bottom:38.772000px;}
.y10a{bottom:40.932000px;}
.y7{bottom:41.868000px;}
.yec{bottom:42.156000px;}
.y77{bottom:42.804000px;}
.y122{bottom:44.280000px;}
.yad{bottom:45.756000px;}
.yd4{bottom:46.980000px;}
.y9d{bottom:47.988000px;}
.y29{bottom:51.660000px;}
.y16f{bottom:52.200000px;}
.ydf{bottom:52.668000px;}
.y12e{bottom:55.188000px;}
.ya8{bottom:55.224000px;}
.y17a{bottom:58.032000px;}
.y6{bottom:58.068000px;}
.y84{bottom:58.356000px;}
.yc9{bottom:58.464000px;}
.y1c{bottom:61.344000px;}
.y165{bottom:61.416000px;}
.y47{bottom:62.388000px;}
.y1b1{bottom:63.936000px;}
.yfd{bottom:63.972000px;}
.y13a{bottom:64.368000px;}
.y1cb{bottom:66.060000px;}
.y1bd{bottom:66.276000px;}
.y19a{bottom:67.536000px;}
.y116{bottom:67.572000px;}
.yb9{bottom:68.796000px;}
.y91{bottom:71.928000px;}
.y109{bottom:73.332000px;}
.y5{bottom:74.268000px;}
.yeb{bottom:74.556000px;}
.y145{bottom:74.772000px;}
.yac{bottom:78.156000px;}
.y6b{bottom:78.372000px;}
.y76{bottom:78.840000px;}
.yd3{bottom:79.380000px;}
.y121{bottom:80.316000px;}
.y2f{bottom:80.352000px;}
.y9c{bottom:84.024000px;}
.y28{bottom:84.096000px;}
.yde{bottom:85.104000px;}
.y159{bottom:86.148000px;}
.y5c{bottom:86.400000px;}
.y12d{bottom:87.588000px;}
.y16e{bottom:88.236000px;}
.y4{bottom:90.468000px;}
.y19c{bottom:90.648000px;}
.y83{bottom:90.756000px;}
.yc8{bottom:90.900000px;}
.ya7{bottom:91.260000px;}
.y164{bottom:93.852000px;}
.y179{bottom:94.032000px;}
.y46{bottom:94.104000px;}
.y1a6{bottom:96.300000px;}
.yfc{bottom:96.408000px;}
.y139{bottom:96.768000px;}
.y199{bottom:97.092000px;}
.y1b{bottom:97.380000px;}
.y1ca{bottom:98.100000px;}
.y3b{bottom:98.820000px;}
.y1b0{bottom:99.936000px;}
.yb8{bottom:101.232000px;}
.y1bc{bottom:102.312000px;}
.y115{bottom:103.572000px;}
.y90{bottom:104.364000px;}
.y108{bottom:105.768000px;}
.y3{bottom:106.704000px;}
.yea{bottom:106.992000px;}
.ye{bottom:109.800000px;}
.y144{bottom:110.808000px;}
.yd2{bottom:111.816000px;}
.y180{bottom:112.608000px;}
.y2e{bottom:112.752000px;}
.y6a{bottom:113.652000px;}
.y6d{bottom:114.660000px;}
.y75{bottom:114.876000px;}
.y120{bottom:116.316000px;}
.y27{bottom:116.496000px;}
.ydd{bottom:117.504000px;}
.y5b{bottom:118.836000px;}
.y9b{bottom:119.664000px;}
.y12c{bottom:120.024000px;}
.y18b{bottom:120.420000px;}
.y158{bottom:122.184000px;}
.y2{bottom:122.904000px;}
.y22{bottom:122.940000px;}
.y82{bottom:123.192000px;}
.yc7{bottom:123.300000px;}
.y16d{bottom:124.236000px;}
.y198{bottom:125.172000px;}
.y45{bottom:125.784000px;}
.y163{bottom:126.252000px;}
.y14e{bottom:127.080000px;}
.ya6{bottom:127.260000px;}
.y1a5{bottom:128.736000px;}
.yfb{bottom:128.808000px;}
.y17f{bottom:129.096000px;}
.y138{bottom:129.204000px;}
.y178{bottom:130.068000px;}
.y19b{bottom:130.284000px;}
.y1c9{bottom:130.536000px;}
.y1a{bottom:133.380000px;}
.yb7{bottom:133.632000px;}
.y1af{bottom:135.972000px;}
.y8f{bottom:136.764000px;}
.y107{bottom:138.168000px;}
.y1bb{bottom:138.312000px;}
.ye9{bottom:139.392000px;}
.y114{bottom:139.608000px;}
.y18c{bottom:141.048000px;}
.y3a{bottom:141.300000px;}
.yd1{bottom:144.216000px;}
.y2d{bottom:145.188000px;}
.y143{bottom:146.808000px;}
.y26{bottom:148.932000px;}
.y69{bottom:149.688000px;}
.ydc{bottom:149.940000px;}
.y74{bottom:150.870000px;}
.y5a{bottom:151.230000px;}
.y9a{bottom:152.100000px;}
.y11f{bottom:152.355000px;}
.y12b{bottom:152.430000px;}
.y197{bottom:152.895000px;}
.y52{bottom:155.340000px;}
.y81{bottom:155.595000px;}
.yc6{bottom:155.730000px;}
.y44{bottom:157.500000px;}
.y157{bottom:158.220000px;}
.y162{bottom:158.685000px;}
.y21{bottom:158.970000px;}
.y16c{bottom:160.275000px;}
.y1a4{bottom:161.130000px;}
.yfa{bottom:161.250000px;}
.y137{bottom:161.610000px;}
.y1c8{bottom:162.930000px;}
.y14d{bottom:163.080000px;}
.ya5{bottom:163.290000px;}
.yb6{bottom:166.065000px;}
.y8e{bottom:169.200000px;}
.y19{bottom:169.410000px;}
.y1d3{bottom:169.995000px;}
.y106{bottom:170.610000px;}
.y62{bottom:170.850000px;}
.ye8{bottom:171.825000px;}
.y1ae{bottom:172.005000px;}
.y1ba{bottom:174.345000px;}
.y113{bottom:175.605000px;}
.yd0{bottom:176.655000px;}
.y2c{bottom:177.585000px;}
.y18a{bottom:179.490000px;}
.y39{bottom:180.930000px;}
.y25{bottom:181.335000px;}
.ydb{bottom:182.340000px;}
.y142{bottom:182.850000px;}
.y59{bottom:183.675000px;}
.y99{bottom:184.500000px;}
.y12a{bottom:184.860000px;}
.y68{bottom:185.685000px;}
.y73{bottom:186.915000px;}
.y80{bottom:188.025000px;}
.yc5{bottom:188.130000px;}
.y11e{bottom:188.385000px;}
.y43{bottom:189.180000px;}
.y51{bottom:189.930000px;}
.y161{bottom:191.085000px;}
.y1a3{bottom:193.575000px;}
.yf9{bottom:193.650000px;}
.y136{bottom:194.040000px;}
.y156{bottom:194.220000px;}
.yd{bottom:194.835000px;}
.y20{bottom:195.015000px;}
.y1c7{bottom:195.375000px;}
.y16b{bottom:196.275000px;}
.yb5{bottom:198.465000px;}
.y14c{bottom:199.110000px;}
.ya4{bottom:199.335000px;}
.y8d{bottom:201.600000px;}
.y177{bottom:202.110000px;}
.y105{bottom:203.010000px;}
.ye7{bottom:204.225000px;}
.y18{bottom:205.410000px;}
.y61{bottom:206.850000px;}
.y1ad{bottom:208.005000px;}
.ycf{bottom:209.055000px;}
.y2b{bottom:210.030000px;}
.y1b9{bottom:210.345000px;}
.y1d2{bottom:210.675000px;}
.y112{bottom:211.650000px;}
.y24{bottom:213.765000px;}
.yda{bottom:214.770000px;}
.y58{bottom:216.075000px;}
.y98{bottom:216.930000px;}
.y129{bottom:217.260000px;}
.y141{bottom:218.850000px;}
.y7f{bottom:220.425000px;}
.y38{bottom:220.530000px;}
.yc4{bottom:220.575000px;}
.y42{bottom:220.890000px;}
.y67{bottom:221.730000px;}
.y72{bottom:222.915000px;}
.y160{bottom:223.530000px;}
.y11d{bottom:224.385000px;}
.y50{bottom:225.930000px;}
.y1a2{bottom:225.975000px;}
.yf8{bottom:226.080000px;}
.y135{bottom:226.440000px;}
.y1c6{bottom:227.775000px;}
.y155{bottom:230.250000px;}
.yb4{bottom:230.910000px;}
.y1f{bottom:231.735000px;}
.y16a{bottom:232.305000px;}
.y8c{bottom:234.030000px;}
.y14b{bottom:235.110000px;}
.ya3{bottom:235.335000px;}
.y104{bottom:235.440000px;}
.ye6{bottom:236.670000px;}
.y176{bottom:238.140000px;}
.y17{bottom:241.455000px;}
.yce{bottom:241.485000px;}
.y2a{bottom:242.430000px;}
.y196{bottom:242.610000px;}
.y60{bottom:242.895000px;}
.y1ac{bottom:244.050000px;}
.yf1{bottom:244.800000px;}
.y23{bottom:246.165000px;}
.y1b8{bottom:246.390000px;}
.yd9{bottom:247.170000px;}
.y111{bottom:247.650000px;}
.y57{bottom:248.505000px;}
.y97{bottom:249.330000px;}
.y128{bottom:249.690000px;}
.y1d1{bottom:250.305000px;}
.y41{bottom:252.570000px;}
.y7e{bottom:252.870000px;}
.yc3{bottom:252.975000px;}
.y140{bottom:254.880000px;}
.y15f{bottom:255.930000px;}
.y66{bottom:257.730000px;}
.y1c5{bottom:258.045000px;}
.y1a1{bottom:258.405000px;}
.yf7{bottom:258.480000px;}
.y134{bottom:258.870000px;}
.y71{bottom:258.945000px;}
.yee{bottom:259.560000px;}
.y37{bottom:260.175000px;}
.y11c{bottom:260.430000px;}
.y4f{bottom:261.975000px;}
.yb3{bottom:263.310000px;}
.y1e{bottom:264.165000px;}
.y154{bottom:266.250000px;}
.y8b{bottom:266.430000px;}
.y103{bottom:267.840000px;}
.y169{bottom:268.350000px;}
.ye5{bottom:269.070000px;}
.y187{bottom:269.970000px;}
.y14a{bottom:271.155000px;}
.ya2{bottom:271.365000px;}
.y195{bottom:272.160000px;}
.ycd{bottom:273.885000px;}
.y175{bottom:274.140000px;}
.yf0{bottom:274.350000px;}
.y16{bottom:277.455000px;}
.y5f{bottom:278.925000px;}
.yd8{bottom:279.615000px;}
.y1ab{bottom:280.050000px;}
.y56{bottom:280.905000px;}
.y96{bottom:281.775000px;}
.y1c4{bottom:281.805000px;}
.y127{bottom:282.090000px;}
.y1b7{bottom:282.420000px;}
.y110{bottom:283.680000px;}
.y40{bottom:284.295000px;}
.y7d{bottom:285.270000px;}
.yc2{bottom:285.405000px;}
.yc{bottom:286.305000px;}
.y17e{bottom:287.490000px;}
.y189{bottom:288.285000px;}
.y15e{bottom:288.360000px;}
.yed{bottom:289.110000px;}
.y1d0{bottom:289.905000px;}
.y1a0{bottom:290.805000px;}
.y13f{bottom:290.880000px;}
.yf6{bottom:290.910000px;}
.y133{bottom:291.270000px;}
.y65{bottom:293.760000px;}
.y70{bottom:294.945000px;}
.yb2{bottom:295.740000px;}
.y11b{bottom:296.430000px;}
.y4e{bottom:297.975000px;}
.y8a{bottom:298.875000px;}
.y6c{bottom:299.160000px;}
.y186{bottom:299.520000px;}
.y36{bottom:299.805000px;}
.y102{bottom:300.270000px;}
.ye4{bottom:301.500000px;}
.y194{bottom:302.040000px;}
.y153{bottom:302.295000px;}
.yef{bottom:303.870000px;}
.y168{bottom:304.350000px;}
.ycc{bottom:306.330000px;}
.y149{bottom:307.155000px;}
.ya1{bottom:307.365000px;}
.y174{bottom:310.170000px;}
.yd7{bottom:312.015000px;}
.y55{bottom:313.350000px;}
.y15{bottom:313.485000px;}
.y95{bottom:314.175000px;}
.y1c3{bottom:314.250000px;}
.y126{bottom:314.535000px;}
.y5e{bottom:314.925000px;}
.y3f{bottom:315.975000px;}
.y1aa{bottom:316.080000px;}
.y7c{bottom:317.700000px;}
.yc1{bottom:317.805000px;}
.y1b6{bottom:318.420000px;}
.y10f{bottom:319.680000px;}
.y17d{bottom:320.250000px;}
.y15d{bottom:320.760000px;}
.y19f{bottom:323.250000px;}
.yf5{bottom:323.310000px;}
.y132{bottom:323.715000px;}
.y32{bottom:323.820000px;}
.y13e{bottom:326.910000px;}
.y1cf{bottom:327.030000px;}
.y188{bottom:327.930000px;}
.yb1{bottom:328.140000px;}
.y185{bottom:329.040000px;}
.y64{bottom:329.760000px;}
.y6f{bottom:330.990000px;}
.y89{bottom:331.275000px;}
.y193{bottom:331.590000px;}
.y11a{bottom:332.460000px;}
.y101{bottom:332.670000px;}
.ye3{bottom:333.900000px;}
.y4d{bottom:334.005000px;}
.y152{bottom:338.295000px;}
.ycb{bottom:338.730000px;}
.y35{bottom:339.405000px;}
.y167{bottom:340.380000px;}
.y183{bottom:341.610000px;}
.y148{bottom:343.185000px;}
.ya0{bottom:343.410000px;}
.yd6{bottom:344.445000px;}
.y54{bottom:345.750000px;}
.y173{bottom:346.170000px;}
.y94{bottom:346.605000px;}
.y1c2{bottom:346.650000px;}
.y125{bottom:346.935000px;}
.y3e{bottom:347.685000px;}
.y18f{bottom:347.790000px;}
.y14{bottom:349.485000px;}
.y7b{bottom:350.100000px;}
.yc0{bottom:350.250000px;}
.y5d{bottom:350.970000px;}
.y1a9{bottom:352.080000px;}
.y9{bottom:352.950000px;}
.y15c{bottom:353.190000px;}
.y1b5{bottom:354.450000px;}
.y1ce{bottom:354.750000px;}
.y19e{bottom:355.650000px;}
.y10e{bottom:355.710000px;}
.yf4{bottom:355.755000px;}
.y131{bottom:356.115000px;}
.y184{bottom:358.590000px;}
.y31{bottom:359.820000px;}
.yb0{bottom:360.570000px;}
.y192{bottom:361.110000px;}
.y13d{bottom:362.955000px;}
.y88{bottom:363.705000px;}
.y100{bottom:365.115000px;}
.ye2{bottom:366.330000px;}
.y119{bottom:368.460000px;}
.y4c{bottom:370.050000px;}
.yca{bottom:371.160000px;}
.y49{bottom:372.570000px;}
.y151{bottom:374.325000px;}
.y166{bottom:376.380000px;}
.yd5{bottom:376.845000px;}
.y1c1{bottom:376.920000px;}
.yb{bottom:377.460000px;}
.y182{bottom:377.610000px;}
.y6e{bottom:377.820000px;}
.y53{bottom:378.180000px;}
.y3d{bottom:378.645000px;}
.y34{bottom:379.050000px;}
.y147{bottom:379.185000px;}
.y124{bottom:379.365000px;}
.y172{bottom:382.215000px;}
.y7a{bottom:382.530000px;}
.y18e{bottom:383.790000px;}
.y13{bottom:385.530000px;}
.y15b{bottom:385.590000px;}
.y19d{bottom:388.080000px;}
.y1a8{bottom:388.110000px;}
.yf3{bottom:388.155000px;}
.y130{bottom:390.345000px;}
.y1b4{bottom:390.450000px;}
.y191{bottom:390.675000px;}
.yaf{bottom:392.970000px;}
.y10d{bottom:393.195000px;}
.y30{bottom:395.850000px;}
.y87{bottom:396.105000px;}
.yff{bottom:397.515000px;}
.ye1{bottom:398.730000px;}
.y13c{bottom:400.395000px;}
.y1c0{bottom:400.680000px;}
.y8{bottom:403.380000px;}
.y118{bottom:405.930000px;}
.y150{bottom:410.325000px;}
.y123{bottom:413.610000px;}
.y181{bottom:413.640000px;}
.y63{bottom:413.820000px;}
.y48{bottom:415.770000px;}
.y17c{bottom:417.570000px;}
.y171{bottom:418.215000px;}
.y15a{bottom:418.395000px;}
.y33{bottom:418.680000px;}
.y18d{bottom:419.835000px;}
.y190{bottom:420.195000px;}
.yf2{bottom:420.585000px;}
.y12{bottom:421.560000px;}
.y1a7{bottom:424.155000px;}
.y1b3{bottom:426.495000px;}
.yfe{bottom:429.945000px;}
.ye0{bottom:431.175000px;}
.y1bf{bottom:433.110000px;}
.y4b{bottom:455.475000px;}
.y10c{bottom:460.905000px;}
.y1cd{bottom:506.880000px;}
.y78{bottom:507.135000px;}
.y79{bottom:507.855000px;}
.y4a{bottom:508.035000px;}
.ya{bottom:509.010000px;}
.y14f{bottom:510.225000px;}
.y170{bottom:511.665000px;}
.y10b{bottom:512.745000px;}
.h4{height:41.040000px;}
.h3{height:45.421875px;}
.h32{height:72.035156px;}
.he{height:81.000000px;}
.h1a{height:81.108000px;}
.h34{height:84.661875px;}
.h2{height:87.108750px;}
.h25{height:89.640000px;}
.h27{height:89.648438px;}
.h1d{height:89.748000px;}
.h21{height:107.147812px;}
.h22{height:107.276906px;}
.h10{height:108.052734px;}
.h35{height:108.108000px;}
.h11{height:108.196805px;}
.h1e{height:109.476562px;}
.hf{height:109.622531px;}
.h31{height:112.640625px;}
.h30{height:112.790813px;}
.hc{height:119.578359px;}
.hd{height:119.722430px;}
.ha{height:121.154062px;}
.hb{height:121.300031px;}
.h1c{height:124.655625px;}
.h1f{height:124.805812px;}
.h5{height:126.468000px;}
.h2b{height:132.165000px;}
.h2e{height:132.315188px;}
.h12{height:132.544687px;}
.h13{height:132.688758px;}
.h16{height:134.291250px;}
.h17{height:134.437219px;}
.h14{height:144.070312px;}
.h2f{height:144.214383px;}
.h19{height:145.968750px;}
.h18{height:146.114719px;}
.h33{height:150.187500px;}
.h29{height:150.337688px;}
.h26{height:164.580750px;}
.h2a{height:175.869563px;}
.h15{height:191.613516px;}
.h9{height:191.757586px;}
.h24{height:192.948750px;}
.h2d{height:197.397000px;}
.h2c{height:197.985000px;}
.h23{height:199.899562px;}
.h1b{height:213.416438px;}
.h6{height:225.431438px;}
.h28{height:227.676562px;}
.h8{height:240.597422px;}
.h20{height:252.000000px;}
.h7{height:263.792742px;}
.h1{height:607.500000px;}
.h0{height:607.680000px;}
.w2{width:442.440000px;}
.w3{width:464.400000px;}
.w1{width:756.720000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2e{left:10.908000px;}
.x43{left:32.004000px;}
.x4f{left:36.108000px;}
.x2a{left:38.160000px;}
.x25{left:46.800000px;}
.x4e{left:49.068000px;}
.x51{left:52.992000px;}
.x29{left:57.024000px;}
.x1f{left:60.408000px;}
.x26{left:64.728000px;}
.x4d{left:65.772000px;}
.x27{left:67.932000px;}
.x1c{left:69.876000px;}
.x44{left:71.136000px;}
.x14{left:74.628000px;}
.x12{left:77.148000px;}
.x52{left:78.336000px;}
.x32{left:83.880000px;}
.x41{left:88.344000px;}
.x40{left:94.068000px;}
.x50{left:95.616000px;}
.xc{left:100.080000px;}
.x13{left:102.348000px;}
.x5a{left:105.408000px;}
.x10{left:109.908000px;}
.x24{left:111.528000px;}
.x20{left:114.408000px;}
.x59{left:117.180000px;}
.x3d{left:123.408000px;}
.x4c{left:127.368000px;}
.x15{left:128.988000px;}
.x5b{left:135.468000px;}
.x11{left:164.670000px;}
.x58{left:170.610000px;}
.x2f{left:185.190000px;}
.x2{left:192.600000px;}
.xa{left:202.110000px;}
.x5e{left:205.125000px;}
.x21{left:210.600000px;}
.x54{left:212.760000px;}
.x53{left:218.520000px;}
.x5{left:227.085000px;}
.x3f{left:234.255000px;}
.x33{left:252.000000px;}
.x63{left:254.700000px;}
.x1d{left:256.245000px;}
.x42{left:258.765000px;}
.x1e{left:261.105000px;}
.x23{left:262.110000px;}
.x35{left:264.525000px;}
.x3e{left:268.920000px;}
.x4a{left:270.210000px;}
.x61{left:278.670000px;}
.x3{left:291.420000px;}
.x5f{left:293.115000px;}
.x5c{left:305.610000px;}
.x4b{left:306.795000px;}
.x5d{left:312.765000px;}
.xf{left:317.880000px;}
.x37{left:322.815000px;}
.x34{left:337.935000px;}
.x36{left:339.915000px;}
.xe{left:340.950000px;}
.x49{left:349.890000px;}
.x38{left:376.845000px;}
.x1b{left:382.170000px;}
.x39{left:387.285000px;}
.xb{left:389.520000px;}
.x8{left:391.170000px;}
.x60{left:404.280000px;}
.x7{left:405.930000px;}
.x2b{left:423.615000px;}
.x56{left:436.965000px;}
.x57{left:457.125000px;}
.x62{left:459.690000px;}
.x9{left:466.815000px;}
.x45{left:471.750000px;}
.x30{left:480.600000px;}
.x4{left:488.010000px;}
.x55{left:492.870000px;}
.x31{left:501.870000px;}
.x2d{left:518.115000px;}
.x2c{left:519.555000px;}
.xd{left:527.115000px;}
.x3c{left:589.500000px;}
.x3a{left:601.020000px;}
.x3b{left:611.460000px;}
.x6{left:620.925000px;}
.x18{left:809.205000px;}
.x16{left:816.045000px;}
.x1a{left:817.485000px;}
.x46{left:851.010000px;}
.x47{left:857.850000px;}
.x19{left:867.930000px;}
.x17{left:876.210000px;}
.x48{left:884.850000px;}
.x22{left:1028.310000px;}
.x28{left:1029.750000px;}
.x1{left:1039.860000px;}
@media print{
.v4{vertical-align:-75.008000pt;}
.v9{vertical-align:-43.392000pt;}
.v1{vertical-align:-36.992000pt;}
.v8{vertical-align:-32.768000pt;}
.v7{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:58.506667pt;}
.v3{vertical-align:68.864000pt;}
.v2{vertical-align:94.080000pt;}
.v5{vertical-align:105.066667pt;}
.ls45{letter-spacing:-5.440000pt;}
.lsab{letter-spacing:-2.736000pt;}
.lsa6{letter-spacing:-2.608000pt;}
.ls21{letter-spacing:-1.344000pt;}
.ls20{letter-spacing:-1.312000pt;}
.ls76{letter-spacing:-0.970667pt;}
.ls6a{letter-spacing:-0.896000pt;}
.ls6e{letter-spacing:-0.688000pt;}
.lsa{letter-spacing:-0.677333pt;}
.lsaf{letter-spacing:-0.640000pt;}
.ls43{letter-spacing:-0.634667pt;}
.ls3a{letter-spacing:-0.608000pt;}
.ls6{letter-spacing:-0.597333pt;}
.lsaa{letter-spacing:-0.581333pt;}
.ls87{letter-spacing:-0.549333pt;}
.ls3f{letter-spacing:-0.544000pt;}
.ls8d{letter-spacing:-0.538667pt;}
.ls7f{letter-spacing:-0.512000pt;}
.ls4c{letter-spacing:-0.505600pt;}
.ls7{letter-spacing:-0.493867pt;}
.ls25{letter-spacing:-0.484267pt;}
.ls64{letter-spacing:-0.471467pt;}
.ls88{letter-spacing:-0.470933pt;}
.ls5e{letter-spacing:-0.416000pt;}
.ls24{letter-spacing:-0.404267pt;}
.ls5f{letter-spacing:-0.384000pt;}
.lsa1{letter-spacing:-0.343467pt;}
.ls44{letter-spacing:-0.317333pt;}
.ls1f{letter-spacing:-0.312533pt;}
.lsbd{letter-spacing:-0.310933pt;}
.ls14{letter-spacing:-0.301867pt;}
.ls69{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.184533pt;}
.ls78{letter-spacing:-0.172800pt;}
.ls3c{letter-spacing:-0.162667pt;}
.ls83{letter-spacing:-0.152533pt;}
.ls9c{letter-spacing:-0.143467pt;}
.lsa9{letter-spacing:-0.122667pt;}
.ls9a{letter-spacing:-0.111467pt;}
.ls7e{letter-spacing:-0.096000pt;}
.ls61{letter-spacing:-0.034667pt;}
.ls22{letter-spacing:-0.030720pt;}
.ls8e{letter-spacing:-0.021760pt;}
.ls2e{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa5{letter-spacing:0.005120pt;}
.ls15{letter-spacing:0.020373pt;}
.ls94{letter-spacing:0.032000pt;}
.ls17{letter-spacing:0.086933pt;}
.ls6d{letter-spacing:0.090133pt;}
.ls6f{letter-spacing:0.090240pt;}
.ls86{letter-spacing:0.106133pt;}
.ls8c{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.138667pt;}
.ls73{letter-spacing:0.160000pt;}
.lsb9{letter-spacing:0.171200pt;}
.ls16{letter-spacing:0.214933pt;}
.ls81{letter-spacing:0.216533pt;}
.ls54{letter-spacing:0.218133pt;}
.ls3e{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.272000pt;}
.ls38{letter-spacing:0.288000pt;}
.ls8f{letter-spacing:0.292800pt;}
.ls6c{letter-spacing:0.299200pt;}
.ls3d{letter-spacing:0.307733pt;}
.lsbe{letter-spacing:0.332267pt;}
.ls3b{letter-spacing:0.352000pt;}
.ls9{letter-spacing:0.372267pt;}
.ls39{letter-spacing:0.384000pt;}
.ls48{letter-spacing:0.400000pt;}
.ls42{letter-spacing:0.404267pt;}
.ls5c{letter-spacing:0.416000pt;}
.lsbf{letter-spacing:0.419733pt;}
.lsa7{letter-spacing:0.420800pt;}
.ls4b{letter-spacing:0.435733pt;}
.ls60{letter-spacing:0.448000pt;}
.ls4f{letter-spacing:0.480000pt;}
.ls2b{letter-spacing:0.500267pt;}
.ls8{letter-spacing:0.508800pt;}
.ls50{letter-spacing:0.512000pt;}
.lse{letter-spacing:0.530133pt;}
.ls93{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.592000pt;}
.ls29{letter-spacing:0.634667pt;}
.ls77{letter-spacing:0.645333pt;}
.ls80{letter-spacing:0.672000pt;}
.ls89{letter-spacing:0.720000pt;}
.ls33{letter-spacing:0.722944pt;}
.ls4d{letter-spacing:0.725333pt;}
.ls41{letter-spacing:0.730667pt;}
.ls9d{letter-spacing:0.741333pt;}
.ls3{letter-spacing:0.742144pt;}
.ls34{letter-spacing:0.768000pt;}
.ls2d{letter-spacing:0.784000pt;}
.ls5d{letter-spacing:0.800000pt;}
.lsb3{letter-spacing:0.829611pt;}
.ls4e{letter-spacing:0.858667pt;}
.ls51{letter-spacing:0.896000pt;}
.ls8b{letter-spacing:0.958464pt;}
.ls5{letter-spacing:1.003520pt;}
.ls85{letter-spacing:1.050667pt;}
.lsa8{letter-spacing:1.066667pt;}
.ls4{letter-spacing:1.110187pt;}
.ls26{letter-spacing:1.155840pt;}
.ls9b{letter-spacing:1.157333pt;}
.ls9e{letter-spacing:1.168000pt;}
.ls10{letter-spacing:1.258667pt;}
.ls84{letter-spacing:1.386667pt;}
.ls9f{letter-spacing:1.573333pt;}
.ls6b{letter-spacing:1.578667pt;}
.ls95{letter-spacing:1.653333pt;}
.ls2c{letter-spacing:1.701333pt;}
.ls90{letter-spacing:1.786667pt;}
.ls2f{letter-spacing:1.824000pt;}
.lsf{letter-spacing:1.872000pt;}
.ls1e{letter-spacing:2.023424pt;}
.ls7b{letter-spacing:2.048000pt;}
.lsa4{letter-spacing:2.065920pt;}
.ls2a{letter-spacing:2.283520pt;}
.ls59{letter-spacing:3.282944pt;}
.ls52{letter-spacing:3.328000pt;}
.ls37{letter-spacing:3.434667pt;}
.ls5a{letter-spacing:4.562944pt;}
.ls36{letter-spacing:4.608000pt;}
.lsc{letter-spacing:4.843520pt;}
.ls5b{letter-spacing:5.524224pt;}
.ls7a{letter-spacing:5.842944pt;}
.ls71{letter-spacing:5.888000pt;}
.ls28{letter-spacing:6.078464pt;}
.lsb{letter-spacing:6.123520pt;}
.ls47{letter-spacing:7.122944pt;}
.ls72{letter-spacing:8.128000pt;}
.lsba{letter-spacing:8.638464pt;}
.ls7d{letter-spacing:9.682944pt;}
.lsb1{letter-spacing:9.728000pt;}
.lsb0{letter-spacing:9.888000pt;}
.lsb2{letter-spacing:12.074667pt;}
.ls7c{letter-spacing:12.242944pt;}
.ls65{letter-spacing:14.484224pt;}
.ls35{letter-spacing:14.802944pt;}
.ls79{letter-spacing:16.128000pt;}
.ls96{letter-spacing:16.318464pt;}
.ls27{letter-spacing:16.363520pt;}
.ls98{letter-spacing:17.643520pt;}
.lsad{letter-spacing:19.290240pt;}
.lsac{letter-spacing:19.360000pt;}
.ls97{letter-spacing:19.985920pt;}
.ls1c{letter-spacing:26.388480pt;}
.lsb7{letter-spacing:30.162944pt;}
.ls70{letter-spacing:32.722944pt;}
.lsb4{letter-spacing:35.282944pt;}
.ls11{letter-spacing:35.348480pt;}
.lsd{letter-spacing:35.625131pt;}
.lsb5{letter-spacing:36.562944pt;}
.ls99{letter-spacing:36.582144pt;}
.lsb6{letter-spacing:37.524224pt;}
.ls92{letter-spacing:37.842944pt;}
.lsae{letter-spacing:38.035200pt;}
.ls1{letter-spacing:38.123520pt;}
.ls1a{letter-spacing:40.423424pt;}
.lsa0{letter-spacing:44.288000pt;}
.ls67{letter-spacing:45.568000pt;}
.ls68{letter-spacing:46.848000pt;}
.ls82{letter-spacing:47.243520pt;}
.ls49{letter-spacing:48.234667pt;}
.ls56{letter-spacing:49.362944pt;}
.lsa2{letter-spacing:49.643520pt;}
.lsb8{letter-spacing:50.368000pt;}
.ls57{letter-spacing:51.968000pt;}
.ls30{letter-spacing:53.248000pt;}
.ls31{letter-spacing:53.354667pt;}
.ls58{letter-spacing:54.208000pt;}
.ls32{letter-spacing:54.528000pt;}
.ls1d{letter-spacing:57.063424pt;}
.ls8a{letter-spacing:57.385131pt;}
.ls19{letter-spacing:58.548480pt;}
.ls46{letter-spacing:62.322944pt;}
.lsbb{letter-spacing:68.798464pt;}
.lsbc{letter-spacing:70.078464pt;}
.ls91{letter-spacing:71.168000pt;}
.ls62{letter-spacing:77.568000pt;}
.ls55{letter-spacing:81.408000pt;}
.ls23{letter-spacing:82.560000pt;}
.ls74{letter-spacing:84.928000pt;}
.ls75{letter-spacing:85.034667pt;}
.lsa3{letter-spacing:93.225131pt;}
.ls63{letter-spacing:122.368000pt;}
.ls66{letter-spacing:131.008000pt;}
.ls4a{letter-spacing:156.917333pt;}
.ls1b{letter-spacing:194.228480pt;}
.ls12{letter-spacing:1059.819520pt;}
.ls53{letter-spacing:1109.970432pt;}
.lsc0{letter-spacing:2631.549611pt;}
.ws1b{word-spacing:-128.000000pt;}
.ws5{word-spacing:-106.368000pt;}
.ws6{word-spacing:-106.240000pt;}
.ws2e{word-spacing:-96.128000pt;}
.ws32{word-spacing:-96.000000pt;}
.ws62{word-spacing:-44.032000pt;}
.ws5d{word-spacing:-43.904000pt;}
.ws11{word-spacing:-41.666453pt;}
.ws13{word-spacing:-41.635243pt;}
.ws12{word-spacing:-41.538453pt;}
.ws10{word-spacing:-41.516949pt;}
.wsf{word-spacing:-41.496576pt;}
.ws14{word-spacing:-41.451520pt;}
.ws18{word-spacing:-41.420800pt;}
.wsd{word-spacing:-41.266987pt;}
.wse{word-spacing:-41.149653pt;}
.ws15{word-spacing:-41.138987pt;}
.ws19{word-spacing:-41.047253pt;}
.ws1a{word-spacing:-41.012309pt;}
.ws17{word-spacing:-40.152576pt;}
.ws16{word-spacing:-40.139520pt;}
.wsb{word-spacing:-39.268480pt;}
.ws61{word-spacing:-39.228203pt;}
.ws21{word-spacing:-39.220480pt;}
.ws1d{word-spacing:-39.142869pt;}
.ws64{word-spacing:-39.049813pt;}
.ws6a{word-spacing:-39.014869pt;}
.ws5c{word-spacing:-38.116480pt;}
.ws1e{word-spacing:-38.076203pt;}
.ws3{word-spacing:-37.988480pt;}
.ws7{word-spacing:-37.950336pt;}
.ws1c{word-spacing:-37.896747pt;}
.ws6d{word-spacing:-37.862336pt;}
.ws76{word-spacing:-37.816213pt;}
.ws75{word-spacing:-37.773803pt;}
.ws8{word-spacing:-37.768747pt;}
.ws60{word-spacing:-37.734336pt;}
.ws57{word-spacing:-37.720747pt;}
.wsc{word-spacing:-37.592747pt;}
.ws69{word-spacing:-37.545856pt;}
.ws66{word-spacing:-37.491413pt;}
.ws72{word-spacing:-37.444523pt;}
.ws58{word-spacing:-37.428523pt;}
.ws22{word-spacing:-37.396480pt;}
.ws68{word-spacing:-37.119189pt;}
.ws1f{word-spacing:-37.118080pt;}
.ws74{word-spacing:-37.085547pt;}
.ws5b{word-spacing:-36.925547pt;}
.ws5a{word-spacing:-36.892203pt;}
.ws70{word-spacing:-36.815147pt;}
.ws2{word-spacing:-36.799147pt;}
.ws9{word-spacing:-36.764203pt;}
.ws59{word-spacing:-36.440213pt;}
.ws47{word-spacing:-36.377856pt;}
.ws6e{word-spacing:-36.339200pt;}
.ws1{word-spacing:-36.334080pt;}
.ws20{word-spacing:-36.318720pt;}
.ws5f{word-spacing:-36.312320pt;}
.ws65{word-spacing:-36.266389pt;}
.ws6f{word-spacing:-36.211413pt;}
.ws67{word-spacing:-36.190613pt;}
.ws56{word-spacing:-36.181547pt;}
.ws4{word-spacing:-35.840213pt;}
.ws5e{word-spacing:-35.839189pt;}
.ws77{word-spacing:-35.584000pt;}
.ws6c{word-spacing:-34.788480pt;}
.ws3c{word-spacing:-34.695723pt;}
.ws3f{word-spacing:-34.688000pt;}
.ws71{word-spacing:-34.660480pt;}
.ws30{word-spacing:-34.567723pt;}
.ws2b{word-spacing:-34.560000pt;}
.ws53{word-spacing:-34.464000pt;}
.ws4b{word-spacing:-34.454443pt;}
.ws4e{word-spacing:-34.429056pt;}
.ws3e{word-spacing:-34.304000pt;}
.ws37{word-spacing:-34.272789pt;}
.ws3d{word-spacing:-34.272000pt;}
.ws3b{word-spacing:-34.237056pt;}
.ws41{word-spacing:-34.208000pt;}
.ws25{word-spacing:-34.176000pt;}
.ws2a{word-spacing:-34.144789pt;}
.ws27{word-spacing:-34.144000pt;}
.ws2f{word-spacing:-34.109056pt;}
.ws23{word-spacing:-34.080000pt;}
.ws54{word-spacing:-34.053589pt;}
.ws40{word-spacing:-33.837056pt;}
.ws63{word-spacing:-33.824000pt;}
.ws46{word-spacing:-33.802389pt;}
.wsa{word-spacing:-33.792000pt;}
.ws52{word-spacing:-33.696000pt;}
.ws29{word-spacing:-33.674389pt;}
.ws50{word-spacing:-33.664256pt;}
.ws42{word-spacing:-33.632000pt;}
.ws3a{word-spacing:-33.601109pt;}
.ws4f{word-spacing:-33.521109pt;}
.ws6b{word-spacing:-33.493589pt;}
.ws44{word-spacing:-33.408000pt;}
.ws48{word-spacing:-33.365589pt;}
.ws31{word-spacing:-33.280043pt;}
.ws45{word-spacing:-33.280000pt;}
.ws39{word-spacing:-33.216000pt;}
.ws26{word-spacing:-33.184000pt;}
.ws4c{word-spacing:-33.174976pt;}
.ws51{word-spacing:-33.149056pt;}
.ws2c{word-spacing:-33.088000pt;}
.ws73{word-spacing:-33.046976pt;}
.ws28{word-spacing:-32.875776pt;}
.ws4d{word-spacing:-32.866389pt;}
.ws24{word-spacing:-32.832000pt;}
.ws49{word-spacing:-32.640000pt;}
.ws43{word-spacing:-32.416000pt;}
.ws38{word-spacing:-32.370176pt;}
.ws55{word-spacing:-32.320000pt;}
.ws2d{word-spacing:-32.288000pt;}
.ws33{word-spacing:-32.241109pt;}
.ws4a{word-spacing:-31.936000pt;}
.ws36{word-spacing:-29.534720pt;}
.ws34{word-spacing:-20.321387pt;}
.ws35{word-spacing:-15.198720pt;}
.ws0{word-spacing:0.000000pt;}
._3e{margin-left:-120.720213pt;}
._45{margin-left:-46.232320pt;}
._1c{margin-left:-27.590400pt;}
._68{margin-left:-15.803648pt;}
._6f{margin-left:-14.297216pt;}
._71{margin-left:-12.881152pt;}
._28{margin-left:-11.643307pt;}
._5a{margin-left:-10.752000pt;}
._5c{margin-left:-8.966272pt;}
._70{margin-left:-4.350336pt;}
._3{margin-left:-3.161600pt;}
._0{margin-left:-2.140160pt;}
._1{margin-left:-1.021440pt;}
._2{width:1.312427pt;}
._4{width:2.507605pt;}
._5{width:3.611307pt;}
._8{width:4.565760pt;}
._a{width:6.102613pt;}
._2e{width:7.084416pt;}
._27{width:8.024576pt;}
._3b{width:9.582933pt;}
._3f{width:10.566400pt;}
._39{width:11.517013pt;}
._3a{width:12.416000pt;}
._42{width:13.684139pt;}
._2b{width:14.660267pt;}
._41{width:15.615872pt;}
._20{width:16.886613pt;}
._2d{width:18.147413pt;}
._21{width:19.130027pt;}
._73{width:21.904299pt;}
._72{width:23.098368pt;}
._67{width:24.272299pt;}
._1a{width:25.665280pt;}
._1b{width:27.071147pt;}
._1f{width:28.677547pt;}
._76{width:29.606741pt;}
._1e{width:30.776747pt;}
._4e{width:32.198827pt;}
._75{width:33.257045pt;}
._46{width:34.309760pt;}
._b{width:35.432107pt;}
._63{width:36.444885pt;}
._7{width:37.614933pt;}
._6{width:39.299840pt;}
._40{width:40.771413pt;}
._5b{width:44.377600pt;}
._44{width:45.674667pt;}
._59{width:46.795136pt;}
._34{width:47.828096pt;}
._37{width:49.369941pt;}
._74{width:50.366080pt;}
._36{width:51.281707pt;}
._38{width:53.016533pt;}
._29{width:54.013013pt;}
._2a{width:55.245227pt;}
._1d{width:56.605483pt;}
._15{width:57.987413pt;}
._14{width:59.168853pt;}
._16{width:60.380160pt;}
._13{width:61.495893pt;}
._c{width:63.560661pt;}
._d{width:64.462635pt;}
._60{width:65.487573pt;}
._e{width:67.272107pt;}
._f{width:68.615808pt;}
._54{width:70.224683pt;}
._53{width:71.256960pt;}
._57{width:73.212501pt;}
._56{width:74.502144pt;}
._55{width:76.223147pt;}
._3c{width:77.725013pt;}
._19{width:82.703616pt;}
._35{width:83.818837pt;}
._30{width:85.757013pt;}
._2f{width:87.498667pt;}
._12{width:92.296747pt;}
._11{width:93.728811pt;}
._49{width:95.366059pt;}
._50{width:100.118443pt;}
._4f{width:101.156480pt;}
._52{width:102.085547pt;}
._51{width:103.639253pt;}
._33{width:105.610667pt;}
._32{width:106.602667pt;}
._69{width:113.341440pt;}
._6a{width:114.472107pt;}
._6c{width:116.735573pt;}
._64{width:117.745920pt;}
._65{width:118.698667pt;}
._66{width:120.330667pt;}
._9{width:121.290411pt;}
._3d{width:124.733440pt;}
._22{width:129.403733pt;}
._43{width:130.789120pt;}
._23{width:131.742720pt;}
._6b{width:132.920832pt;}
._10{width:134.394453pt;}
._2c{width:135.665920pt;}
._5e{width:163.098155pt;}
._5f{width:164.167723pt;}
._5d{width:165.241856pt;}
._31{width:171.978581pt;}
._24{width:187.094613pt;}
._26{width:188.031573pt;}
._25{width:189.136640pt;}
._18{width:194.519893pt;}
._17{width:195.412907pt;}
._62{width:197.973333pt;}
._61{width:199.296000pt;}
._58{width:213.508395pt;}
._4c{width:216.307584pt;}
._4d{width:218.398848pt;}
._4b{width:242.954240pt;}
._4a{width:244.650240pt;}
._6d{width:277.894699pt;}
._6e{width:439.020160pt;}
._47{width:676.575573pt;}
._48{width:881.615019pt;}
._77{width:1606.229760pt;}
.fs1{font-size:48.640000pt;}
.fs13{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.fs9{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs7{font-size:106.240000pt;}
.fs8{font-size:106.368000pt;}
.fs11{font-size:112.640000pt;}
.fs12{font-size:112.768000pt;}
.fsb{font-size:117.760000pt;}
.fsc{font-size:117.888000pt;}
.fsd{font-size:128.000000pt;}
.fsf{font-size:128.128000pt;}
.fs2{font-size:149.888000pt;}
.fse{font-size:170.240000pt;}
.fs6{font-size:170.368000pt;}
.fs10{font-size:181.888000pt;}
.fs3{font-size:192.128000pt;}
.fs5{font-size:213.760000pt;}
.fs4{font-size:234.368000pt;}
.ybf{bottom:-111.744000pt;}
.y11{bottom:-109.536000pt;}
.ybe{bottom:-82.912000pt;}
.ybd{bottom:-54.112000pt;}
.y10{bottom:-47.744000pt;}
.yab{bottom:-46.944000pt;}
.ybc{bottom:-25.280000pt;}
.y9f{bottom:-21.376000pt;}
.yaa{bottom:-14.944000pt;}
.y86{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:1.504000pt;}
.ybb{bottom:3.520000pt;}
.y9e{bottom:10.656000pt;}
.yae{bottom:11.840000pt;}
.ya9{bottom:17.088000pt;}
.yf{bottom:17.568000pt;}
.y1{bottom:18.720000pt;}
.y17b{bottom:19.552000pt;}
.y12f{bottom:20.224000pt;}
.y1d{bottom:22.496000pt;}
.y85{bottom:23.040000pt;}
.y1b2{bottom:24.800000pt;}
.y1be{bottom:26.912000pt;}
.y3c{bottom:27.968000pt;}
.y117{bottom:28.032000pt;}
.y13b{bottom:28.384000pt;}
.y1cc{bottom:29.568000pt;}
.yba{bottom:32.352000pt;}
.y92{bottom:33.536000pt;}
.y146{bottom:34.464000pt;}
.y10a{bottom:36.384000pt;}
.y7{bottom:37.216000pt;}
.yec{bottom:37.472000pt;}
.y77{bottom:38.048000pt;}
.y122{bottom:39.360000pt;}
.yad{bottom:40.672000pt;}
.yd4{bottom:41.760000pt;}
.y9d{bottom:42.656000pt;}
.y29{bottom:45.920000pt;}
.y16f{bottom:46.400000pt;}
.ydf{bottom:46.816000pt;}
.y12e{bottom:49.056000pt;}
.ya8{bottom:49.088000pt;}
.y17a{bottom:51.584000pt;}
.y6{bottom:51.616000pt;}
.y84{bottom:51.872000pt;}
.yc9{bottom:51.968000pt;}
.y1c{bottom:54.528000pt;}
.y165{bottom:54.592000pt;}
.y47{bottom:55.456000pt;}
.y1b1{bottom:56.832000pt;}
.yfd{bottom:56.864000pt;}
.y13a{bottom:57.216000pt;}
.y1cb{bottom:58.720000pt;}
.y1bd{bottom:58.912000pt;}
.y19a{bottom:60.032000pt;}
.y116{bottom:60.064000pt;}
.yb9{bottom:61.152000pt;}
.y91{bottom:63.936000pt;}
.y109{bottom:65.184000pt;}
.y5{bottom:66.016000pt;}
.yeb{bottom:66.272000pt;}
.y145{bottom:66.464000pt;}
.yac{bottom:69.472000pt;}
.y6b{bottom:69.664000pt;}
.y76{bottom:70.080000pt;}
.yd3{bottom:70.560000pt;}
.y121{bottom:71.392000pt;}
.y2f{bottom:71.424000pt;}
.y9c{bottom:74.688000pt;}
.y28{bottom:74.752000pt;}
.yde{bottom:75.648000pt;}
.y159{bottom:76.576000pt;}
.y5c{bottom:76.800000pt;}
.y12d{bottom:77.856000pt;}
.y16e{bottom:78.432000pt;}
.y4{bottom:80.416000pt;}
.y19c{bottom:80.576000pt;}
.y83{bottom:80.672000pt;}
.yc8{bottom:80.800000pt;}
.ya7{bottom:81.120000pt;}
.y164{bottom:83.424000pt;}
.y179{bottom:83.584000pt;}
.y46{bottom:83.648000pt;}
.y1a6{bottom:85.600000pt;}
.yfc{bottom:85.696000pt;}
.y139{bottom:86.016000pt;}
.y199{bottom:86.304000pt;}
.y1b{bottom:86.560000pt;}
.y1ca{bottom:87.200000pt;}
.y3b{bottom:87.840000pt;}
.y1b0{bottom:88.832000pt;}
.yb8{bottom:89.984000pt;}
.y1bc{bottom:90.944000pt;}
.y115{bottom:92.064000pt;}
.y90{bottom:92.768000pt;}
.y108{bottom:94.016000pt;}
.y3{bottom:94.848000pt;}
.yea{bottom:95.104000pt;}
.ye{bottom:97.600000pt;}
.y144{bottom:98.496000pt;}
.yd2{bottom:99.392000pt;}
.y180{bottom:100.096000pt;}
.y2e{bottom:100.224000pt;}
.y6a{bottom:101.024000pt;}
.y6d{bottom:101.920000pt;}
.y75{bottom:102.112000pt;}
.y120{bottom:103.392000pt;}
.y27{bottom:103.552000pt;}
.ydd{bottom:104.448000pt;}
.y5b{bottom:105.632000pt;}
.y9b{bottom:106.368000pt;}
.y12c{bottom:106.688000pt;}
.y18b{bottom:107.040000pt;}
.y158{bottom:108.608000pt;}
.y2{bottom:109.248000pt;}
.y22{bottom:109.280000pt;}
.y82{bottom:109.504000pt;}
.yc7{bottom:109.600000pt;}
.y16d{bottom:110.432000pt;}
.y198{bottom:111.264000pt;}
.y45{bottom:111.808000pt;}
.y163{bottom:112.224000pt;}
.y14e{bottom:112.960000pt;}
.ya6{bottom:113.120000pt;}
.y1a5{bottom:114.432000pt;}
.yfb{bottom:114.496000pt;}
.y17f{bottom:114.752000pt;}
.y138{bottom:114.848000pt;}
.y178{bottom:115.616000pt;}
.y19b{bottom:115.808000pt;}
.y1c9{bottom:116.032000pt;}
.y1a{bottom:118.560000pt;}
.yb7{bottom:118.784000pt;}
.y1af{bottom:120.864000pt;}
.y8f{bottom:121.568000pt;}
.y107{bottom:122.816000pt;}
.y1bb{bottom:122.944000pt;}
.ye9{bottom:123.904000pt;}
.y114{bottom:124.096000pt;}
.y18c{bottom:125.376000pt;}
.y3a{bottom:125.600000pt;}
.yd1{bottom:128.192000pt;}
.y2d{bottom:129.056000pt;}
.y143{bottom:130.496000pt;}
.y26{bottom:132.384000pt;}
.y69{bottom:133.056000pt;}
.ydc{bottom:133.280000pt;}
.y74{bottom:134.106667pt;}
.y5a{bottom:134.426667pt;}
.y9a{bottom:135.200000pt;}
.y11f{bottom:135.426667pt;}
.y12b{bottom:135.493333pt;}
.y197{bottom:135.906667pt;}
.y52{bottom:138.080000pt;}
.y81{bottom:138.306667pt;}
.yc6{bottom:138.426667pt;}
.y44{bottom:140.000000pt;}
.y157{bottom:140.640000pt;}
.y162{bottom:141.053333pt;}
.y21{bottom:141.306667pt;}
.y16c{bottom:142.466667pt;}
.y1a4{bottom:143.226667pt;}
.yfa{bottom:143.333333pt;}
.y137{bottom:143.653333pt;}
.y1c8{bottom:144.826667pt;}
.y14d{bottom:144.960000pt;}
.ya5{bottom:145.146667pt;}
.yb6{bottom:147.613333pt;}
.y8e{bottom:150.400000pt;}
.y19{bottom:150.586667pt;}
.y1d3{bottom:151.106667pt;}
.y106{bottom:151.653333pt;}
.y62{bottom:151.866667pt;}
.ye8{bottom:152.733333pt;}
.y1ae{bottom:152.893333pt;}
.y1ba{bottom:154.973333pt;}
.y113{bottom:156.093333pt;}
.yd0{bottom:157.026667pt;}
.y2c{bottom:157.853333pt;}
.y18a{bottom:159.546667pt;}
.y39{bottom:160.826667pt;}
.y25{bottom:161.186667pt;}
.ydb{bottom:162.080000pt;}
.y142{bottom:162.533333pt;}
.y59{bottom:163.266667pt;}
.y99{bottom:164.000000pt;}
.y12a{bottom:164.320000pt;}
.y68{bottom:165.053333pt;}
.y73{bottom:166.146667pt;}
.y80{bottom:167.133333pt;}
.yc5{bottom:167.226667pt;}
.y11e{bottom:167.453333pt;}
.y43{bottom:168.160000pt;}
.y51{bottom:168.826667pt;}
.y161{bottom:169.853333pt;}
.y1a3{bottom:172.066667pt;}
.yf9{bottom:172.133333pt;}
.y136{bottom:172.480000pt;}
.y156{bottom:172.640000pt;}
.yd{bottom:173.186667pt;}
.y20{bottom:173.346667pt;}
.y1c7{bottom:173.666667pt;}
.y16b{bottom:174.466667pt;}
.yb5{bottom:176.413333pt;}
.y14c{bottom:176.986667pt;}
.ya4{bottom:177.186667pt;}
.y8d{bottom:179.200000pt;}
.y177{bottom:179.653333pt;}
.y105{bottom:180.453333pt;}
.ye7{bottom:181.533333pt;}
.y18{bottom:182.586667pt;}
.y61{bottom:183.866667pt;}
.y1ad{bottom:184.893333pt;}
.ycf{bottom:185.826667pt;}
.y2b{bottom:186.693333pt;}
.y1b9{bottom:186.973333pt;}
.y1d2{bottom:187.266667pt;}
.y112{bottom:188.133333pt;}
.y24{bottom:190.013333pt;}
.yda{bottom:190.906667pt;}
.y58{bottom:192.066667pt;}
.y98{bottom:192.826667pt;}
.y129{bottom:193.120000pt;}
.y141{bottom:194.533333pt;}
.y7f{bottom:195.933333pt;}
.y38{bottom:196.026667pt;}
.yc4{bottom:196.066667pt;}
.y42{bottom:196.346667pt;}
.y67{bottom:197.093333pt;}
.y72{bottom:198.146667pt;}
.y160{bottom:198.693333pt;}
.y11d{bottom:199.453333pt;}
.y50{bottom:200.826667pt;}
.y1a2{bottom:200.866667pt;}
.yf8{bottom:200.960000pt;}
.y135{bottom:201.280000pt;}
.y1c6{bottom:202.466667pt;}
.y155{bottom:204.666667pt;}
.yb4{bottom:205.253333pt;}
.y1f{bottom:205.986667pt;}
.y16a{bottom:206.493333pt;}
.y8c{bottom:208.026667pt;}
.y14b{bottom:208.986667pt;}
.ya3{bottom:209.186667pt;}
.y104{bottom:209.280000pt;}
.ye6{bottom:210.373333pt;}
.y176{bottom:211.680000pt;}
.y17{bottom:214.626667pt;}
.yce{bottom:214.653333pt;}
.y2a{bottom:215.493333pt;}
.y196{bottom:215.653333pt;}
.y60{bottom:215.906667pt;}
.y1ac{bottom:216.933333pt;}
.yf1{bottom:217.600000pt;}
.y23{bottom:218.813333pt;}
.y1b8{bottom:219.013333pt;}
.yd9{bottom:219.706667pt;}
.y111{bottom:220.133333pt;}
.y57{bottom:220.893333pt;}
.y97{bottom:221.626667pt;}
.y128{bottom:221.946667pt;}
.y1d1{bottom:222.493333pt;}
.y41{bottom:224.506667pt;}
.y7e{bottom:224.773333pt;}
.yc3{bottom:224.866667pt;}
.y140{bottom:226.560000pt;}
.y15f{bottom:227.493333pt;}
.y66{bottom:229.093333pt;}
.y1c5{bottom:229.373333pt;}
.y1a1{bottom:229.693333pt;}
.yf7{bottom:229.760000pt;}
.y134{bottom:230.106667pt;}
.y71{bottom:230.173333pt;}
.yee{bottom:230.720000pt;}
.y37{bottom:231.266667pt;}
.y11c{bottom:231.493333pt;}
.y4f{bottom:232.866667pt;}
.yb3{bottom:234.053333pt;}
.y1e{bottom:234.813333pt;}
.y154{bottom:236.666667pt;}
.y8b{bottom:236.826667pt;}
.y103{bottom:238.080000pt;}
.y169{bottom:238.533333pt;}
.ye5{bottom:239.173333pt;}
.y187{bottom:239.973333pt;}
.y14a{bottom:241.026667pt;}
.ya2{bottom:241.213333pt;}
.y195{bottom:241.920000pt;}
.ycd{bottom:243.453333pt;}
.y175{bottom:243.680000pt;}
.yf0{bottom:243.866667pt;}
.y16{bottom:246.626667pt;}
.y5f{bottom:247.933333pt;}
.yd8{bottom:248.546667pt;}
.y1ab{bottom:248.933333pt;}
.y56{bottom:249.693333pt;}
.y96{bottom:250.466667pt;}
.y1c4{bottom:250.493333pt;}
.y127{bottom:250.746667pt;}
.y1b7{bottom:251.040000pt;}
.y110{bottom:252.160000pt;}
.y40{bottom:252.706667pt;}
.y7d{bottom:253.573333pt;}
.yc2{bottom:253.693333pt;}
.yc{bottom:254.493333pt;}
.y17e{bottom:255.546667pt;}
.y189{bottom:256.253333pt;}
.y15e{bottom:256.320000pt;}
.yed{bottom:256.986667pt;}
.y1d0{bottom:257.693333pt;}
.y1a0{bottom:258.493333pt;}
.y13f{bottom:258.560000pt;}
.yf6{bottom:258.586667pt;}
.y133{bottom:258.906667pt;}
.y65{bottom:261.120000pt;}
.y70{bottom:262.173333pt;}
.yb2{bottom:262.880000pt;}
.y11b{bottom:263.493333pt;}
.y4e{bottom:264.866667pt;}
.y8a{bottom:265.666667pt;}
.y6c{bottom:265.920000pt;}
.y186{bottom:266.240000pt;}
.y36{bottom:266.493333pt;}
.y102{bottom:266.906667pt;}
.ye4{bottom:268.000000pt;}
.y194{bottom:268.480000pt;}
.y153{bottom:268.706667pt;}
.yef{bottom:270.106667pt;}
.y168{bottom:270.533333pt;}
.ycc{bottom:272.293333pt;}
.y149{bottom:273.026667pt;}
.ya1{bottom:273.213333pt;}
.y174{bottom:275.706667pt;}
.yd7{bottom:277.346667pt;}
.y55{bottom:278.533333pt;}
.y15{bottom:278.653333pt;}
.y95{bottom:279.266667pt;}
.y1c3{bottom:279.333333pt;}
.y126{bottom:279.586667pt;}
.y5e{bottom:279.933333pt;}
.y3f{bottom:280.866667pt;}
.y1aa{bottom:280.960000pt;}
.y7c{bottom:282.400000pt;}
.yc1{bottom:282.493333pt;}
.y1b6{bottom:283.040000pt;}
.y10f{bottom:284.160000pt;}
.y17d{bottom:284.666667pt;}
.y15d{bottom:285.120000pt;}
.y19f{bottom:287.333333pt;}
.yf5{bottom:287.386667pt;}
.y132{bottom:287.746667pt;}
.y32{bottom:287.840000pt;}
.y13e{bottom:290.586667pt;}
.y1cf{bottom:290.693333pt;}
.y188{bottom:291.493333pt;}
.yb1{bottom:291.680000pt;}
.y185{bottom:292.480000pt;}
.y64{bottom:293.120000pt;}
.y6f{bottom:294.213333pt;}
.y89{bottom:294.466667pt;}
.y193{bottom:294.746667pt;}
.y11a{bottom:295.520000pt;}
.y101{bottom:295.706667pt;}
.ye3{bottom:296.800000pt;}
.y4d{bottom:296.893333pt;}
.y152{bottom:300.706667pt;}
.ycb{bottom:301.093333pt;}
.y35{bottom:301.693333pt;}
.y167{bottom:302.560000pt;}
.y183{bottom:303.653333pt;}
.y148{bottom:305.053333pt;}
.ya0{bottom:305.253333pt;}
.yd6{bottom:306.173333pt;}
.y54{bottom:307.333333pt;}
.y173{bottom:307.706667pt;}
.y94{bottom:308.093333pt;}
.y1c2{bottom:308.133333pt;}
.y125{bottom:308.386667pt;}
.y3e{bottom:309.053333pt;}
.y18f{bottom:309.146667pt;}
.y14{bottom:310.653333pt;}
.y7b{bottom:311.200000pt;}
.yc0{bottom:311.333333pt;}
.y5d{bottom:311.973333pt;}
.y1a9{bottom:312.960000pt;}
.y9{bottom:313.733333pt;}
.y15c{bottom:313.946667pt;}
.y1b5{bottom:315.066667pt;}
.y1ce{bottom:315.333333pt;}
.y19e{bottom:316.133333pt;}
.y10e{bottom:316.186667pt;}
.yf4{bottom:316.226667pt;}
.y131{bottom:316.546667pt;}
.y184{bottom:318.746667pt;}
.y31{bottom:319.840000pt;}
.yb0{bottom:320.506667pt;}
.y192{bottom:320.986667pt;}
.y13d{bottom:322.626667pt;}
.y88{bottom:323.293333pt;}
.y100{bottom:324.546667pt;}
.ye2{bottom:325.626667pt;}
.y119{bottom:327.520000pt;}
.y4c{bottom:328.933333pt;}
.yca{bottom:329.920000pt;}
.y49{bottom:331.173333pt;}
.y151{bottom:332.733333pt;}
.y166{bottom:334.560000pt;}
.yd5{bottom:334.973333pt;}
.y1c1{bottom:335.040000pt;}
.yb{bottom:335.520000pt;}
.y182{bottom:335.653333pt;}
.y6e{bottom:335.840000pt;}
.y53{bottom:336.160000pt;}
.y3d{bottom:336.573333pt;}
.y34{bottom:336.933333pt;}
.y147{bottom:337.053333pt;}
.y124{bottom:337.213333pt;}
.y172{bottom:339.746667pt;}
.y7a{bottom:340.026667pt;}
.y18e{bottom:341.146667pt;}
.y13{bottom:342.693333pt;}
.y15b{bottom:342.746667pt;}
.y19d{bottom:344.960000pt;}
.y1a8{bottom:344.986667pt;}
.yf3{bottom:345.026667pt;}
.y130{bottom:346.973333pt;}
.y1b4{bottom:347.066667pt;}
.y191{bottom:347.266667pt;}
.yaf{bottom:349.306667pt;}
.y10d{bottom:349.506667pt;}
.y30{bottom:351.866667pt;}
.y87{bottom:352.093333pt;}
.yff{bottom:353.346667pt;}
.ye1{bottom:354.426667pt;}
.y13c{bottom:355.906667pt;}
.y1c0{bottom:356.160000pt;}
.y8{bottom:358.560000pt;}
.y118{bottom:360.826667pt;}
.y150{bottom:364.733333pt;}
.y123{bottom:367.653333pt;}
.y181{bottom:367.680000pt;}
.y63{bottom:367.840000pt;}
.y48{bottom:369.573333pt;}
.y17c{bottom:371.173333pt;}
.y171{bottom:371.746667pt;}
.y15a{bottom:371.906667pt;}
.y33{bottom:372.160000pt;}
.y18d{bottom:373.186667pt;}
.y190{bottom:373.506667pt;}
.yf2{bottom:373.853333pt;}
.y12{bottom:374.720000pt;}
.y1a7{bottom:377.026667pt;}
.y1b3{bottom:379.106667pt;}
.yfe{bottom:382.173333pt;}
.ye0{bottom:383.266667pt;}
.y1bf{bottom:384.986667pt;}
.y4b{bottom:404.866667pt;}
.y10c{bottom:409.693333pt;}
.y1cd{bottom:450.560000pt;}
.y78{bottom:450.786667pt;}
.y79{bottom:451.426667pt;}
.y4a{bottom:451.586667pt;}
.ya{bottom:452.453333pt;}
.y14f{bottom:453.533333pt;}
.y170{bottom:454.813333pt;}
.y10b{bottom:455.773333pt;}
.h4{height:36.480000pt;}
.h3{height:40.375000pt;}
.h32{height:64.031250pt;}
.he{height:72.000000pt;}
.h1a{height:72.096000pt;}
.h34{height:75.255000pt;}
.h2{height:77.430000pt;}
.h25{height:79.680000pt;}
.h27{height:79.687500pt;}
.h1d{height:79.776000pt;}
.h21{height:95.242500pt;}
.h22{height:95.357250pt;}
.h10{height:96.046875pt;}
.h35{height:96.096000pt;}
.h11{height:96.174937pt;}
.h1e{height:97.312500pt;}
.hf{height:97.442250pt;}
.h31{height:100.125000pt;}
.h30{height:100.258500pt;}
.hc{height:106.291875pt;}
.hd{height:106.419937pt;}
.ha{height:107.692500pt;}
.hb{height:107.822250pt;}
.h1c{height:110.805000pt;}
.h1f{height:110.938500pt;}
.h5{height:112.416000pt;}
.h2b{height:117.480000pt;}
.h2e{height:117.613500pt;}
.h12{height:117.817500pt;}
.h13{height:117.945563pt;}
.h16{height:119.370000pt;}
.h17{height:119.499750pt;}
.h14{height:128.062500pt;}
.h2f{height:128.190562pt;}
.h19{height:129.750000pt;}
.h18{height:129.879750pt;}
.h33{height:133.500000pt;}
.h29{height:133.633500pt;}
.h26{height:146.294000pt;}
.h2a{height:156.328500pt;}
.h15{height:170.323125pt;}
.h9{height:170.451187pt;}
.h24{height:171.510000pt;}
.h2d{height:175.464000pt;}
.h2c{height:175.986667pt;}
.h23{height:177.688500pt;}
.h1b{height:189.703500pt;}
.h6{height:200.383500pt;}
.h28{height:202.379167pt;}
.h8{height:213.864375pt;}
.h20{height:224.000000pt;}
.h7{height:234.482437pt;}
.h1{height:540.000000pt;}
.h0{height:540.160000pt;}
.w2{width:393.280000pt;}
.w3{width:412.800000pt;}
.w1{width:672.640000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:9.696000pt;}
.x43{left:28.448000pt;}
.x4f{left:32.096000pt;}
.x2a{left:33.920000pt;}
.x25{left:41.600000pt;}
.x4e{left:43.616000pt;}
.x51{left:47.104000pt;}
.x29{left:50.688000pt;}
.x1f{left:53.696000pt;}
.x26{left:57.536000pt;}
.x4d{left:58.464000pt;}
.x27{left:60.384000pt;}
.x1c{left:62.112000pt;}
.x44{left:63.232000pt;}
.x14{left:66.336000pt;}
.x12{left:68.576000pt;}
.x52{left:69.632000pt;}
.x32{left:74.560000pt;}
.x41{left:78.528000pt;}
.x40{left:83.616000pt;}
.x50{left:84.992000pt;}
.xc{left:88.960000pt;}
.x13{left:90.976000pt;}
.x5a{left:93.696000pt;}
.x10{left:97.696000pt;}
.x24{left:99.136000pt;}
.x20{left:101.696000pt;}
.x59{left:104.160000pt;}
.x3d{left:109.696000pt;}
.x4c{left:113.216000pt;}
.x15{left:114.656000pt;}
.x5b{left:120.416000pt;}
.x11{left:146.373333pt;}
.x58{left:151.653333pt;}
.x2f{left:164.613333pt;}
.x2{left:171.200000pt;}
.xa{left:179.653333pt;}
.x5e{left:182.333333pt;}
.x21{left:187.200000pt;}
.x54{left:189.120000pt;}
.x53{left:194.240000pt;}
.x5{left:201.853333pt;}
.x3f{left:208.226667pt;}
.x33{left:224.000000pt;}
.x63{left:226.400000pt;}
.x1d{left:227.773333pt;}
.x42{left:230.013333pt;}
.x1e{left:232.093333pt;}
.x23{left:232.986667pt;}
.x35{left:235.133333pt;}
.x3e{left:239.040000pt;}
.x4a{left:240.186667pt;}
.x61{left:247.706667pt;}
.x3{left:259.040000pt;}
.x5f{left:260.546667pt;}
.x5c{left:271.653333pt;}
.x4b{left:272.706667pt;}
.x5d{left:278.013333pt;}
.xf{left:282.560000pt;}
.x37{left:286.946667pt;}
.x34{left:300.386667pt;}
.x36{left:302.146667pt;}
.xe{left:303.066667pt;}
.x49{left:311.013333pt;}
.x38{left:334.973333pt;}
.x1b{left:339.706667pt;}
.x39{left:344.253333pt;}
.xb{left:346.240000pt;}
.x8{left:347.706667pt;}
.x60{left:359.360000pt;}
.x7{left:360.826667pt;}
.x2b{left:376.546667pt;}
.x56{left:388.413333pt;}
.x57{left:406.333333pt;}
.x62{left:408.613333pt;}
.x9{left:414.946667pt;}
.x45{left:419.333333pt;}
.x30{left:427.200000pt;}
.x4{left:433.786667pt;}
.x55{left:438.106667pt;}
.x31{left:446.106667pt;}
.x2d{left:460.546667pt;}
.x2c{left:461.826667pt;}
.xd{left:468.546667pt;}
.x3c{left:524.000000pt;}
.x3a{left:534.240000pt;}
.x3b{left:543.520000pt;}
.x6{left:551.933333pt;}
.x18{left:719.293333pt;}
.x16{left:725.373333pt;}
.x1a{left:726.653333pt;}
.x46{left:756.453333pt;}
.x47{left:762.533333pt;}
.x19{left:771.493333pt;}
.x17{left:778.853333pt;}
.x48{left:786.533333pt;}
.x22{left:914.053333pt;}
.x28{left:915.333333pt;}
.x1{left:924.320000pt;}
}




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