
    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_4b0996ceb4ac750e079dd0b5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.858887;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_86d6784592b2067ce71e749f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.857422;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_41eb80c1edbeb432b798002e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.849609;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_70071ef79a8b9a292db633ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.841797;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_5cc5b1864711cbd854066d97.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999023;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_d5aecd27d2b23c68aa118759.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.677734;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_2045bed794a7a3d0714d295d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.952148;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_c7c156c9a66fcb4611d00d89.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.862793;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_3255675b0dcd34de9eb0dfaf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850098;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_297c6f3cccfbb55c30740b26.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.954102;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_8d9ceb4f23d9bf169b850e5f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740723;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_8769f2f77769a819e3f0bf15.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.675293;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_0a4327938a4ac7533d19f2cb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675293;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_d3eb2ff2b579fdf8853cf462.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.857422;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.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);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.196000px;}
.v5{vertical-align:28.512000px;}
.v2{vertical-align:44.394480px;}
.v1{vertical-align:66.549600px;}
.v3{vertical-align:110.944080px;}
.ls2d{letter-spacing:-7.884720px;}
.ls4b{letter-spacing:-5.756400px;}
.ls57{letter-spacing:-3.126240px;}
.ls6f{letter-spacing:-3.024000px;}
.ls6d{letter-spacing:-2.489760px;}
.ls50{letter-spacing:-2.448000px;}
.ls42{letter-spacing:-2.052000px;}
.ls7a{letter-spacing:-1.840320px;}
.ls1c{letter-spacing:-1.819440px;}
.ls64{letter-spacing:-1.728000px;}
.ls56{letter-spacing:-1.563120px;}
.ls13{letter-spacing:-1.442880px;}
.ls49{letter-spacing:-1.404000px;}
.ls71{letter-spacing:-1.188000px;}
.ls36{letter-spacing:-1.080000px;}
.ls78{letter-spacing:-1.022400px;}
.ls69{letter-spacing:-1.008000px;}
.ls4e{letter-spacing:-0.972000px;}
.ls65{letter-spacing:-0.756000px;}
.ls66{letter-spacing:-0.720000px;}
.ls68{letter-spacing:-0.648000px;}
.ls67{letter-spacing:-0.576000px;}
.ls4c{letter-spacing:-0.540000px;}
.ls7b{letter-spacing:-0.511200px;}
.ls7e{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.358560px;}
.ls38{letter-spacing:-0.341280px;}
.ls26{letter-spacing:-0.336960px;}
.ls2b{letter-spacing:-0.335520px;}
.ls0{letter-spacing:-0.324000px;}
.ls77{letter-spacing:-0.306720px;}
.ls1f{letter-spacing:-0.289440px;}
.lsf{letter-spacing:-0.288000px;}
.ls41{letter-spacing:-0.287280px;}
.ls1e{letter-spacing:-0.270000px;}
.ls4d{letter-spacing:-0.264240px;}
.ls39{letter-spacing:-0.252720px;}
.ls15{letter-spacing:-0.240480px;}
.ls7c{letter-spacing:-0.239760px;}
.ls3{letter-spacing:-0.239040px;}
.ls47{letter-spacing:-0.234000px;}
.ls3a{letter-spacing:-0.227520px;}
.ls1{letter-spacing:-0.216000px;}
.ls76{letter-spacing:-0.204480px;}
.ls21{letter-spacing:-0.192960px;}
.ls3f{letter-spacing:-0.192240px;}
.ls53{letter-spacing:-0.191520px;}
.ls6{letter-spacing:-0.180000px;}
.ls25{letter-spacing:-0.174240px;}
.ls2a{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.132480px;}
.ls14{letter-spacing:-0.131760px;}
.ls11{letter-spacing:-0.120240px;}
.ls1a{letter-spacing:-0.119520px;}
.ls3c{letter-spacing:-0.113760px;}
.ls2f{letter-spacing:-0.108000px;}
.ls79{letter-spacing:-0.102240px;}
.ls23{letter-spacing:-0.096480px;}
.ls52{letter-spacing:-0.095760px;}
.ls6c{letter-spacing:-0.084240px;}
.ls4f{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.059760px;}
.ls27{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.048240px;}
.ls6a{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.090000px;}
.ls51{letter-spacing:0.095760px;}
.ls74{letter-spacing:0.102240px;}
.ls1b{letter-spacing:0.108000px;}
.ls3b{letter-spacing:0.113760px;}
.ls9{letter-spacing:0.119520px;}
.ls10{letter-spacing:0.120240px;}
.ls18{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.167760px;}
.ls40{letter-spacing:0.168480px;}
.ls2e{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.179280px;}
.ls8{letter-spacing:0.180000px;}
.ls55{letter-spacing:0.191520px;}
.ls35{letter-spacing:0.192240px;}
.ls31{letter-spacing:0.198720px;}
.ls30{letter-spacing:0.216000px;}
.ls3e{letter-spacing:0.227520px;}
.ls48{letter-spacing:0.234000px;}
.ls7d{letter-spacing:0.239760px;}
.lsc{letter-spacing:0.240480px;}
.ls34{letter-spacing:0.252720px;}
.ls12{letter-spacing:0.263520px;}
.ls1d{letter-spacing:0.287280px;}
.ls17{letter-spacing:0.288000px;}
.ls72{letter-spacing:0.289440px;}
.ls32{letter-spacing:0.324000px;}
.ls29{letter-spacing:0.335520px;}
.ls6b{letter-spacing:0.336960px;}
.ls22{letter-spacing:0.337680px;}
.ls3d{letter-spacing:0.341280px;}
.ls5{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.360720px;}
.ls54{letter-spacing:0.383040px;}
.ls70{letter-spacing:0.432000px;}
.ls44{letter-spacing:0.468000px;}
.ls62{letter-spacing:0.504000px;}
.ls75{letter-spacing:0.817920px;}
.ls63{letter-spacing:0.926640px;}
.ls5c{letter-spacing:1.080000px;}
.ls61{letter-spacing:1.224000px;}
.ls28{letter-spacing:1.342080px;}
.ls4a{letter-spacing:1.836000px;}
.ls58{letter-spacing:5.400000px;}
.ls59{letter-spacing:9.720000px;}
.ls5a{letter-spacing:10.476000px;}
.ls5f{letter-spacing:17.712000px;}
.lse{letter-spacing:21.522960px;}
.ls45{letter-spacing:30.564000px;}
.ls60{letter-spacing:32.904000px;}
.ls43{letter-spacing:47.113920px;}
.ls37{letter-spacing:53.467200px;}
.ls5b{letter-spacing:62.316000px;}
.ls46{letter-spacing:89.496000px;}
.ls5d{letter-spacing:89.640000px;}
.ls5e{letter-spacing:89.672400px;}
.ls6e{letter-spacing:98.640000px;}
.ls73{letter-spacing:100.598400px;}
.ls24{letter-spacing:196.868880px;}
.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;}
}
.ws92{word-spacing:-72.146880px;}
.ws49{word-spacing:-52.620480px;}
.ws37{word-spacing:-52.446240px;}
.wsd2{word-spacing:-50.734080px;}
.ws83{word-spacing:-47.268000px;}
.ws15{word-spacing:-43.200000px;}
.ws3f{word-spacing:-42.611040px;}
.ws59{word-spacing:-39.216960px;}
.ws11{word-spacing:-36.552960px;}
.ws10{word-spacing:-36.312480px;}
.ws55{word-spacing:-33.719760px;}
.ws28{word-spacing:-29.376000px;}
.wsac{word-spacing:-29.206800px;}
.wsad{word-spacing:-29.015280px;}
.wsaa{word-spacing:-28.728000px;}
.wsab{word-spacing:-28.632240px;}
.ws14{word-spacing:-27.414720px;}
.ws12{word-spacing:-27.174240px;}
.ws13{word-spacing:-26.933760px;}
.wseb{word-spacing:-25.103520px;}
.wsae{word-spacing:-24.528960px;}
.wsb5{word-spacing:-24.408720px;}
.wsba{word-spacing:-24.168240px;}
.ws78{word-spacing:-24.084000px;}
.ws91{word-spacing:-23.446800px;}
.ws67{word-spacing:-23.434560px;}
.ws69{word-spacing:-23.320800px;}
.ws90{word-spacing:-23.206320px;}
.wsb9{word-spacing:-22.845600px;}
.ws64{word-spacing:-22.752000px;}
.ws5c{word-spacing:-22.140000px;}
.ws29{word-spacing:-22.032000px;}
.ws5a{word-spacing:-21.924000px;}
.ws4c{word-spacing:-21.816000px;}
.ws93{word-spacing:-21.708000px;}
.ws9b{word-spacing:-21.600000px;}
.wsc2{word-spacing:-21.384000px;}
.wsc1{word-spacing:-21.168000px;}
.wsc0{word-spacing:-20.952000px;}
.wsdf{word-spacing:-20.856960px;}
.ws84{word-spacing:-20.844000px;}
.wsdb{word-spacing:-20.754720px;}
.wsd7{word-spacing:-20.736000px;}
.wsdc{word-spacing:-20.550240px;}
.ws86{word-spacing:-20.520000px;}
.wsdd{word-spacing:-20.448000px;}
.wse1{word-spacing:-20.243520px;}
.wsbf{word-spacing:-20.196000px;}
.wsed{word-spacing:-20.160000px;}
.wsde{word-spacing:-19.732320px;}
.ws2b{word-spacing:-19.726560px;}
.wsee{word-spacing:-19.584000px;}
.ws39{word-spacing:-19.439280px;}
.ws2c{word-spacing:-18.360000px;}
.ws2a{word-spacing:-17.619840px;}
.wscb{word-spacing:-17.016480px;}
.ws72{word-spacing:-16.763760px;}
.wsca{word-spacing:-14.832000px;}
.wsc9{word-spacing:-14.688000px;}
.wsc8{word-spacing:-14.616000px;}
.wsc3{word-spacing:-14.544000px;}
.wsa6{word-spacing:-14.472000px;}
.wsd8{word-spacing:-14.423760px;}
.wsc5{word-spacing:-14.400000px;}
.ws71{word-spacing:-14.328000px;}
.wsc6{word-spacing:-14.256000px;}
.wsc4{word-spacing:-13.968000px;}
.wsc7{word-spacing:-13.608000px;}
.ws26{word-spacing:-12.310560px;}
.ws24{word-spacing:-12.250800px;}
.wsa5{word-spacing:-12.168000px;}
.ws25{word-spacing:-12.131280px;}
.ws27{word-spacing:-12.011760px;}
.ws0{word-spacing:-11.892240px;}
.ws7{word-spacing:-11.772720px;}
.ws56{word-spacing:-11.286000px;}
.ws2d{word-spacing:-9.840960px;}
.ws2e{word-spacing:-9.696240px;}
.wsda{word-spacing:-3.280320px;}
.ws9d{word-spacing:-2.883600px;}
.ws82{word-spacing:-2.700000px;}
.ws3c{word-spacing:-2.645280px;}
.ws63{word-spacing:-2.592000px;}
.ws94{word-spacing:-2.525040px;}
.wsd0{word-spacing:-2.358720px;}
.ws19{word-spacing:-2.284560px;}
.wsbe{word-spacing:-2.164320px;}
.wse6{word-spacing:-2.147040px;}
.wsb7{word-spacing:-2.044080px;}
.ws2{word-spacing:-1.980000px;}
.ws7f{word-spacing:-1.944000px;}
.wsd1{word-spacing:-1.937520px;}
.ws6a{word-spacing:-1.922400px;}
.ws80{word-spacing:-1.868400px;}
.ws53{word-spacing:-1.836000px;}
.wsd{word-spacing:-1.800000px;}
.ws99{word-spacing:-1.728000px;}
.ws9a{word-spacing:-1.620000px;}
.wsb6{word-spacing:-1.563120px;}
.wsa8{word-spacing:-1.516320px;}
.ws9c{word-spacing:-1.479600px;}
.ws58{word-spacing:-1.465776px;}
.ws22{word-spacing:-1.442880px;}
.wse2{word-spacing:-1.431360px;}
.wsb8{word-spacing:-1.322640px;}
.ws7e{word-spacing:-1.296000px;}
.ws1{word-spacing:-1.260000px;}
.ws3b{word-spacing:-1.219680px;}
.ws6{word-spacing:-1.219104px;}
.ws18{word-spacing:-1.202400px;}
.ws54{word-spacing:-1.188000px;}
.ws1b{word-spacing:-1.185840px;}
.ws41{word-spacing:-1.174320px;}
.ws8f{word-spacing:-1.153440px;}
.ws97{word-spacing:-1.080000px;}
.wse9{word-spacing:-1.022400px;}
.ws48{word-spacing:-1.006560px;}
.ws50{word-spacing:-0.972000px;}
.wsbd{word-spacing:-0.961920px;}
.ws5f{word-spacing:-0.926640px;}
.wsc{word-spacing:-0.900000px;}
.ws7b{word-spacing:-0.864000px;}
.wscf{word-spacing:-0.842400px;}
.wsa{word-spacing:-0.776880px;}
.ws73{word-spacing:-0.768960px;}
.ws74{word-spacing:-0.758160px;}
.wsd5{word-spacing:-0.756000px;}
.ws95{word-spacing:-0.721440px;}
.wse3{word-spacing:-0.715680px;}
.wsec{word-spacing:-0.673920px;}
.ws5e{word-spacing:-0.662400px;}
.ws96{word-spacing:-0.601200px;}
.ws4{word-spacing:-0.540000px;}
.ws75{word-spacing:-0.503280px;}
.wsef{word-spacing:-0.479520px;}
.ws8a{word-spacing:-0.478800px;}
.ws5{word-spacing:-0.460152px;}
.ws51{word-spacing:-0.432000px;}
.ws6d{word-spacing:-0.410400px;}
.wsb{word-spacing:-0.360000px;}
.ws36{word-spacing:-0.337680px;}
.ws79{word-spacing:-0.335520px;}
.ws52{word-spacing:-0.324000px;}
.wse4{word-spacing:-0.306720px;}
.ws23{word-spacing:-0.288000px;}
.ws8c{word-spacing:-0.287280px;}
.ws1c{word-spacing:-0.263520px;}
.ws62{word-spacing:-0.252720px;}
.ws1a{word-spacing:-0.240480px;}
.wsaf{word-spacing:-0.239760px;}
.ws8e{word-spacing:-0.234000px;}
.ws6f{word-spacing:-0.227520px;}
.ws4f{word-spacing:-0.216000px;}
.ws40{word-spacing:-0.167760px;}
.ws70{word-spacing:-0.144000px;}
.ws4d{word-spacing:-0.131760px;}
.ws42{word-spacing:-0.120240px;}
.wse{word-spacing:-0.119520px;}
.ws9{word-spacing:-0.108000px;}
.wsb4{word-spacing:-0.095760px;}
.wsa9{word-spacing:-0.084240px;}
.ws3{word-spacing:-0.018000px;}
.ws8{word-spacing:0.000000px;}
.ws3e{word-spacing:0.054000px;}
.wsf{word-spacing:0.059760px;}
.ws6b{word-spacing:0.084240px;}
.ws7a{word-spacing:0.095760px;}
.ws9f{word-spacing:0.108000px;}
.ws6e{word-spacing:0.113760px;}
.ws21{word-spacing:0.120240px;}
.ws2f{word-spacing:0.144000px;}
.ws3a{word-spacing:0.174240px;}
.ws35{word-spacing:0.192960px;}
.wse5{word-spacing:0.204480px;}
.ws98{word-spacing:0.216000px;}
.ws6c{word-spacing:0.227520px;}
.ws1e{word-spacing:0.240480px;}
.ws33{word-spacing:0.270000px;}
.ws88{word-spacing:0.287280px;}
.ws17{word-spacing:0.288000px;}
.wse7{word-spacing:0.306720px;}
.ws43{word-spacing:0.324000px;}
.ws46{word-spacing:0.335520px;}
.ws3d{word-spacing:0.336960px;}
.ws7d{word-spacing:0.358560px;}
.ws89{word-spacing:0.383040px;}
.ws31{word-spacing:0.432000px;}
.ws87{word-spacing:0.479520px;}
.wsce{word-spacing:0.505440px;}
.wsd4{word-spacing:0.540000px;}
.wsb3{word-spacing:0.574560px;}
.ws30{word-spacing:0.576000px;}
.ws34{word-spacing:0.578880px;}
.ws8b{word-spacing:0.670320px;}
.ws61{word-spacing:0.720000px;}
.ws4e{word-spacing:0.756000px;}
.wsea{word-spacing:0.817920px;}
.ws7c{word-spacing:0.861840px;}
.ws32{word-spacing:0.864000px;}
.ws47{word-spacing:1.006560px;}
.wsa7{word-spacing:1.056960px;}
.ws60{word-spacing:1.080000px;}
.wsb2{word-spacing:1.149120px;}
.wsbb{word-spacing:1.152000px;}
.wsd6{word-spacing:1.188000px;}
.wse8{word-spacing:1.226880px;}
.ws16{word-spacing:1.296000px;}
.ws1f{word-spacing:1.317600px;}
.wsb0{word-spacing:1.340640px;}
.wsd9{word-spacing:1.404000px;}
.ws1d{word-spacing:1.442880px;}
.ws44{word-spacing:1.677600px;}
.ws8d{word-spacing:1.723680px;}
.ws20{word-spacing:1.803600px;}
.ws45{word-spacing:1.845360px;}
.wsb1{word-spacing:2.010960px;}
.ws5d{word-spacing:2.232000px;}
.ws9e{word-spacing:2.667600px;}
.wsbc{word-spacing:3.246480px;}
.wsd3{word-spacing:3.312000px;}
.ws81{word-spacing:4.204800px;}
.ws85{word-spacing:8.640000px;}
.ws77{word-spacing:33.696000px;}
.wse0{word-spacing:79.843680px;}
.ws57{word-spacing:103.215168px;}
.ws76{word-spacing:114.912000px;}
.ws5b{word-spacing:117.990000px;}
.ws38{word-spacing:135.794880px;}
.wscd{word-spacing:207.983280px;}
.wscc{word-spacing:292.796520px;}
.wsa1{word-spacing:339.336000px;}
.wsa3{word-spacing:511.812000px;}
.wsa0{word-spacing:701.524800px;}
.ws65{word-spacing:734.077080px;}
.wsa2{word-spacing:797.904000px;}
.wsa4{word-spacing:908.377200px;}
.ws68{word-spacing:908.948952px;}
.ws4a{word-spacing:1108.867992px;}
.ws66{word-spacing:1133.408808px;}
.ws4b{word-spacing:1135.900200px;}
._1d{margin-left:-15.335856px;}
._a{margin-left:-9.310680px;}
._b{margin-left:-7.599528px;}
._5{margin-left:-6.386400px;}
._e{margin-left:-5.031360px;}
._2{margin-left:-3.816000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.101600px;}
._0{width:1.296000px;}
._6{width:2.422008px;}
._18{width:3.554712px;}
._8{width:4.608000px;}
._9{width:6.551424px;}
._c{width:8.001936px;}
._10{width:10.368000px;}
._4{width:13.212936px;}
._13{width:17.625600px;}
._f{width:18.900000px;}
._7{width:21.522960px;}
._17{width:32.472000px;}
._16{width:33.768000px;}
._11{width:62.532000px;}
._14{width:73.980000px;}
._12{width:89.640000px;}
._1b{width:98.640000px;}
._15{width:151.194000px;}
._d{width:357.645240px;}
._19{width:662.872992px;}
._1a{width:981.447864px;}
._1c{width:992.579064px;}
.fce{color:rgb(138,172,187);}
.fcd{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc5{color:rgb(64,64,64);}
.fc2{color:rgb(0,32,96);}
.fc8{color:rgb(70,120,134);}
.fc3{color:rgb(32,56,100);}
.fca{color:rgb(38,38,38);}
.fc4{color:rgb(0,52,101);}
.fc6{color:rgb(89,89,89);}
.fc7{color:rgb(11,48,65);}
.fc9{color:rgb(56,94,121);}
.fcb{color:rgb(39,83,23);}
.fcc{color:rgb(7,27,80);}
.fs8{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs10{font-size:66.240000px;}
.fsf{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.fs18{font-size:102.240000px;}
.fs0{font-size:108.000000px;}
.fse{font-size:113.760000px;}
.fs4{font-size:120.240000px;}
.fs15{font-size:131.040000px;}
.fs5{font-size:131.760000px;}
.fs12{font-size:136.800000px;}
.fs3{font-size:144.000000px;}
.fsd{font-size:162.000000px;}
.fsc{font-size:167.760000px;}
.fs9{font-size:174.240000px;}
.fs2{font-size:180.000000px;}
.fs11{font-size:192.240000px;}
.fs14{font-size:234.000000px;}
.fs13{font-size:239.760000px;}
.fs17{font-size:264.240000px;}
.fs16{font-size:383.760000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:4.177650px;}
.ya{bottom:21.585150px;}
.yd1{bottom:80.381850px;}
.y26{bottom:81.992550px;}
.yca{bottom:82.518300px;}
.y9a{bottom:82.914300px;}
.y14c{bottom:84.270630px;}
.yd2{bottom:89.399250px;}
.y36{bottom:91.602450px;}
.y154{bottom:94.686000px;}
.y68{bottom:103.593600px;}
.y1af{bottom:104.740200px;}
.y12e{bottom:104.834250px;}
.y136{bottom:104.860800px;}
.y133{bottom:104.937450px;}
.y1ad{bottom:108.203880px;}
.y14b{bottom:110.197650px;}
.y18e{bottom:110.357850px;}
.y101{bottom:113.551650px;}
.y103{bottom:117.173100px;}
.y181{bottom:118.568580px;}
.y33{bottom:119.563050px;}
.y1b0{bottom:120.102300px;}
.y15e{bottom:123.656400px;}
.y153{bottom:124.197000px;}
.yf4{bottom:127.707750px;}
.y162{bottom:129.682800px;}
.y1ae{bottom:129.937800px;}
.y168{bottom:133.250400px;}
.y1ac{bottom:133.412700px;}
.y4a{bottom:135.720000px;}
.y14a{bottom:137.705130px;}
.y69{bottom:138.684750px;}
.yf6{bottom:138.883350px;}
.y169{bottom:140.030700px;}
.y13c{bottom:141.371550px;}
.y18d{bottom:142.757850px;}
.y32{bottom:143.863050px;}
.y198{bottom:144.234000px;}
.y17e{bottom:144.938250px;}
.y180{bottom:145.022280px;}
.yce{bottom:145.158300px;}
.y122{bottom:146.373750px;}
.y102{bottom:149.573100px;}
.y22{bottom:150.929190px;}
.y111{bottom:151.586250px;}
.ya6{bottom:153.128100px;}
.y113{bottom:154.403880px;}
.y70{bottom:158.664450px;}
.yc7{bottom:160.123560px;}
.y87{bottom:161.652450px;}
.yf3{bottom:162.267750px;}
.yd0{bottom:162.703500px;}
.y149{bottom:163.632150px;}
.y12a{bottom:164.673000px;}
.y58{bottom:165.574770px;}
.y53{bottom:167.119170px;}
.y1a1{bottom:168.894000px;}
.y17f{bottom:171.308400px;}
.y13b{bottom:173.771550px;}
.y18c{bottom:175.157850px;}
.y199{bottom:175.252500px;}
.y15d{bottom:175.489200px;}
.y197{bottom:176.634000px;}
.y121{bottom:178.773750px;}
.y110{bottom:181.286250px;}
.yb7{bottom:182.719650px;}
.y21{bottom:183.333870px;}
.y152{bottom:185.711550px;}
.yda{bottom:186.625050px;}
.y79{bottom:191.216250px;}
.y148{bottom:191.869530px;}
.ya5{bottom:196.572600px;}
.yf2{bottom:196.827750px;}
.y129{bottom:197.073000px;}
.ya8{bottom:197.338500px;}
.y41{bottom:202.576050px;}
.yf5{bottom:203.116350px;}
.y66{bottom:203.857650px;}
.y5c{bottom:205.058550px;}
.yb6{bottom:206.136600px;}
.y18b{bottom:207.557850px;}
.y196{bottom:209.034000px;}
.yb5{bottom:209.502600px;}
.y10f{bottom:210.986250px;}
.y120{bottom:211.173750px;}
.yb3{bottom:213.174600px;}
.y71{bottom:213.406950px;}
.y100{bottom:214.930050px;}
.y57{bottom:215.986650px;}
.y8e{bottom:216.543450px;}
.y52{bottom:217.531050px;}
.yb2{bottom:217.746600px;}
.y147{bottom:217.796550px;}
.yd9{bottom:219.025050px;}
.yb8{bottom:219.153450px;}
.yb4{bottom:220.194600px;}
.y20{bottom:221.119290px;}
.y6a{bottom:222.042750px;}
.y15c{bottom:228.000750px;}
.y128{bottom:229.473000px;}
.y37{bottom:229.872450px;}
.y1a0{bottom:230.094000px;}
.yf1{bottom:231.387750px;}
.y88{bottom:233.944950px;}
.y1b7{bottom:234.185250px;}
.y130{bottom:234.434250px;}
.y65{bottom:236.257650px;}
.y18a{bottom:239.957850px;}
.ya4{bottom:240.017100px;}
.y10e{bottom:240.686250px;}
.y195{bottom:241.434000px;}
.y167{bottom:241.844400px;}
.yb1{bottom:243.270600px;}
.y11f{bottom:243.573750px;}
.y5a{bottom:247.115250px;}
.yd8{bottom:251.425050px;}
.y17d{bottom:252.368460px;}
.y1f{bottom:253.523970px;}
.yb9{bottom:255.587250px;}
.y1ab{bottom:257.799750px;}
.y34{bottom:257.988600px;}
.y42{bottom:258.047550px;}
.y146{bottom:258.068850px;}
.y112{bottom:259.746000px;}
.y83{bottom:260.541300px;}
.y151{bottom:262.057500px;}
.y18{bottom:264.214290px;}
.y72{bottom:268.149450px;}
.y64{bottom:268.657650px;}
.y10d{bottom:270.386250px;}
.y38{bottom:274.245870px;}
.y81{bottom:274.995300px;}
.y11e{bottom:275.973750px;}
.y17c{bottom:277.577280px;}
.y15b{bottom:280.512450px;}
.ya3{bottom:283.461600px;}
.ycc{bottom:283.770000px;}
.yd7{bottom:283.825050px;}
.y13a{bottom:284.726100px;}
.yb0{bottom:288.594600px;}
.y1aa{bottom:290.199750px;}
.y95{bottom:290.435100px;}
.y19f{bottom:291.294000px;}
.y1e{bottom:291.309390px;}
.y1b6{bottom:291.519600px;}
.yc6{bottom:291.689340px;}
.y104{bottom:291.975750px;}
.yba{bottom:292.021050px;}
.y171{bottom:292.593750px;}
.ye2{bottom:294.037200px;}
.y31{bottom:294.978630px;}
.y9{bottom:295.197000px;}
.y10c{bottom:299.897250px;}
.y63{bottom:301.057650px;}
.y17{bottom:301.999710px;}
.y17b{bottom:302.786100px;}
.y11{bottom:303.422130px;}
.y189{bottom:304.757850px;}
.y194{bottom:306.234000px;}
.y89{bottom:306.237450px;}
.ycf{bottom:306.799500px;}
.y11d{bottom:308.373750px;}
.y99{bottom:309.454950px;}
.y6b{bottom:309.630750px;}
.y145{bottom:311.301150px;}
.y80{bottom:311.540100px;}
.y94{bottom:312.035100px;}
.y43{bottom:313.519050px;}
.yd6{bottom:316.225050px;}
.y39{bottom:318.619290px;}
.y6f{bottom:320.574750px;}
.y30{bottom:320.905650px;}
.y73{bottom:322.891950px;}
.y56{bottom:323.146920px;}
.y1d{bottom:323.714070px;}
.y1b5{bottom:323.919750px;}
.yf0{bottom:324.282000px;}
.y170{bottom:324.993750px;}
.ye1{bottom:326.437200px;}
.ybb{bottom:328.454850px;}
.yee{bottom:330.363600px;}
.yf9{bottom:331.757250px;}
.y82{bottom:332.829300px;}
.y15a{bottom:333.023850px;}
.y7f{bottom:333.140100px;}
.y62{bottom:333.457650px;}
.y139{bottom:333.513870px;}
.y16{bottom:334.404390px;}
.y93{bottom:336.155100px;}
.y12f{bottom:336.780000px;}
.y166{bottom:337.478730px;}
.y150{bottom:338.403300px;}
.y10{bottom:339.434010px;}
.y50{bottom:340.260300px;}
.y11c{bottom:340.773750px;}
.y127{bottom:342.360000px;}
.y8{bottom:343.797000px;}
.yd5{bottom:348.625050px;}
.y3a{bottom:351.915150px;}
.y19e{bottom:352.494000px;}
.yaf{bottom:352.962600px;}
.y1a9{bottom:354.999750px;}
.y135{bottom:356.760000px;}
.y7e{bottom:357.260100px;}
.y16f{bottom:357.393750px;}
.y9d{bottom:357.939600px;}
.ye0{bottom:358.837200px;}
.y1c{bottom:361.499490px;}
.y9e{bottom:363.400080px;}
.y144{bottom:363.551400px;}
.yf8{bottom:364.157250px;}
.y6c{bottom:364.368750px;}
.ybc{bottom:364.888650px;}
.yed{bottom:364.923600px;}
.y15{bottom:366.809070px;}
.y92{bottom:368.555100px;}
.y44{bottom:368.990550px;}
.y138{bottom:369.525750px;}
.y188{bottom:369.557850px;}
.y165{bottom:370.604850px;}
.y193{bottom:371.034000px;}
.y11b{bottom:373.173750px;}
.y55{bottom:373.558800px;}
.y126{bottom:374.760000px;}
.yf{bottom:375.445890px;}
.y74{bottom:377.634450px;}
.y8a{bottom:378.529950px;}
.y175{bottom:379.774050px;}
.yd4{bottom:381.025050px;}
.yad{bottom:381.870600px;}
.yae{bottom:384.048600px;}
.y159{bottom:385.535400px;}
.yac{bottom:385.830600px;}
.y1a8{bottom:387.399750px;}
.yef{bottom:388.515000px;}
.y1b4{bottom:388.719750px;}
.y4f{bottom:388.860300px;}
.y7d{bottom:389.660100px;}
.y16e{bottom:389.793750px;}
.y86{bottom:390.663300px;}
.ydf{bottom:391.237200px;}
.y7{bottom:392.397000px;}
.y1b{bottom:393.904170px;}
.yff{bottom:395.119500px;}
.y132{bottom:395.280000px;}
.yf7{bottom:396.557250px;}
.y61{bottom:398.257650px;}
.y14{bottom:399.213750px;}
.yec{bottom:399.483600px;}
.y91{bottom:400.955100px;}
.ybd{bottom:401.322450px;}
.y187{bottom:401.957850px;}
.y192{bottom:403.434000px;}
.y11a{bottom:405.573750px;}
.y9c{bottom:408.306840px;}
.ye{bottom:411.457770px;}
.y3b{bottom:412.925970px;}
.y106{bottom:413.061150px;}
.y19d{bottom:413.694000px;}
.y14f{bottom:414.749250px;}
.y143{bottom:416.278500px;}
.y137{bottom:418.963950px;}
.y6d{bottom:419.106750px;}
.y9f{bottom:419.540640px;}
.y84{bottom:419.571300px;}
.y1a7{bottom:419.799750px;}
.yab{bottom:420.102600px;}
.y1b3{bottom:421.119750px;}
.y7c{bottom:422.060100px;}
.y16d{bottom:422.193750px;}
.y45{bottom:424.462050px;}
.yc9{bottom:425.939280px;}
.y1a{bottom:426.308850px;}
.yfe{bottom:427.519500px;}
.y98{bottom:428.791800px;}
.ycd{bottom:429.050160px;}
.y60{bottom:430.657650px;}
.y97{bottom:431.516850px;}
.y75{bottom:432.376950px;}
.ya7{bottom:433.626000px;}
.y12d{bottom:433.980000px;}
.y3c{bottom:435.123210px;}
.y2d{bottom:435.422400px;}
.y191{bottom:435.834000px;}
.ybe{bottom:437.756250px;}
.y119{bottom:437.973750px;}
.y158{bottom:438.046950px;}
.y164{bottom:443.617380px;}
.y105{bottom:445.461150px;}
.yd{bottom:447.469650px;}
.y8b{bottom:450.822450px;}
.y1b2{bottom:453.519750px;}
.y16c{bottom:454.593750px;}
.yfd{bottom:459.919500px;}
.y134{bottom:461.620800px;}
.y13{bottom:462.941580px;}
.y5f{bottom:463.057650px;}
.yaa{bottom:465.480600px;}
.y186{bottom:466.757850px;}
.y142{bottom:470.104050px;}
.y118{bottom:470.373750px;}
.y10b{bottom:470.943270px;}
.ya0{bottom:471.870240px;}
.ybf{bottom:474.190050px;}
.y19c{bottom:474.898680px;}
.y163{bottom:476.743500px;}
.y2c{bottom:478.622400px;}
.y46{bottom:479.933550px;}
.y173{bottom:481.627650px;}
.ydc{bottom:481.897050px;}
.y1a6{bottom:484.599750px;}
.y2f{bottom:485.956950px;}
.yc{bottom:486.169650px;}
.y16b{bottom:486.993750px;}
.y76{bottom:487.119450px;}
.y6{bottom:489.597000px;}
.y157{bottom:490.558650px;}
.y14e{bottom:491.095050px;}
.y85{bottom:491.859300px;}
.y9b{bottom:493.171800px;}
.yea{bottom:493.961400px;}
.y5e{bottom:495.457650px;}
.y6e{bottom:495.750750px;}
.y3d{bottom:496.134030px;}
.y185{bottom:499.157850px;}
.y54{bottom:499.552500px;}
.y131{bottom:500.217450px;}
.y190{bottom:500.634000px;}
.ya1{bottom:502.557000px;}
.y117{bottom:502.773750px;}
.y10a{bottom:503.889030px;}
.y19b{bottom:505.494000px;}
.yc0{bottom:510.623850px;}
.y12{bottom:512.450400px;}
.y19{bottom:512.505000px;}
.ydb{bottom:514.297050px;}
.yde{bottom:515.846250px;}
.y90{bottom:516.348600px;}
.y3e{bottom:518.331270px;}
.y16a{bottom:519.393750px;}
.ye9{bottom:520.415100px;}
.y125{bottom:521.247450px;}
.y2b{bottom:521.822400px;}
.y7b{bottom:522.548400px;}
.y8c{bottom:523.114950px;}
.y4e{bottom:523.367400px;}
.y141{bottom:524.649600px;}
.y5d{bottom:527.857650px;}
.y1b1{bottom:530.811300px;}
.y5b{bottom:530.890350px;}
.yfc{bottom:532.726350px;}
.y116{bottom:535.173750px;}
.y47{bottom:535.405050px;}
.y109{bottom:537.015150px;}
.y5{bottom:538.197000px;}
.y12c{bottom:538.814250px;}
.ya9{bottom:540.288600px;}
.yeb{bottom:541.776150px;}
.y77{bottom:541.861950px;}
.y156{bottom:543.070050px;}
.ye8{bottom:546.701220px;}
.yc1{bottom:547.057650px;}
.y107{bottom:549.407250px;}
.y124{bottom:550.407450px;}
.y1a5{bottom:552.315750px;}
.y3f{bottom:562.704690px;}
.y184{bottom:563.957850px;}
.y2a{bottom:565.022400px;}
.yfb{bottom:565.126350px;}
.y18f{bottom:565.434000px;}
.y140{bottom:565.868130px;}
.yc8{bottom:566.396340px;}
.y19a{bottom:566.694000px;}
.y14d{bottom:567.440850px;}
.y115{bottom:567.573750px;}
.yc5{bottom:568.451400px;}
.yc3{bottom:571.612950px;}
.y17a{bottom:576.598050px;}
.ye7{bottom:577.488060px;}
.y161{bottom:579.976650px;}
.y1a4{bottom:584.715750px;}
.y25{bottom:586.067400px;}
.ya2{bottom:588.987900px;}
.ye4{bottom:589.057350px;}
.y40{bottom:590.440710px;}
.y48{bottom:590.876550px;}
.y13f{bottom:591.795150px;}
.y8d{bottom:595.407450px;}
.ydd{bottom:595.807200px;}
.y78{bottom:596.604450px;}
.y179{bottom:598.198050px;}
.y114{bottom:599.973750px;}
.y174{bottom:601.993650px;}
.yc2{bottom:604.912950px;}
.y29{bottom:608.222400px;}
.ye6{bottom:608.274900px;}
.y1a3{bottom:617.115750px;}
.y4d{bottom:617.932620px;}
.y178{bottom:619.798050px;}
.y172{bottom:623.373000px;}
.y8f{bottom:624.824850px;}
.y7a{bottom:624.825000px;}
.y24{bottom:629.267400px;}
.y15f{bottom:632.865300px;}
.y183{bottom:634.280850px;}
.y177{bottom:641.398050px;}
.y51{bottom:641.400450px;}
.y12b{bottom:642.118350px;}
.y13e{bottom:643.129500px;}
.y155{bottom:643.660200px;}
.y49{bottom:646.348050px;}
.y160{bottom:646.487100px;}
.y96{bottom:649.325850px;}
.y28{bottom:651.422400px;}
.ye3{bottom:652.829100px;}
.y123{bottom:657.154950px;}
.yd3{bottom:658.138050px;}
.y2e{bottom:658.275600px;}
.y108{bottom:661.032600px;}
.y4c{bottom:661.843800px;}
.y176{bottom:662.998050px;}
.y59{bottom:664.386000px;}
.yc4{bottom:667.906200px;}
.ye5{bottom:669.441300px;}
.y23{bottom:672.467400px;}
.yfa{bottom:673.228650px;}
.ycb{bottom:676.845300px;}
.y35{bottom:677.736300px;}
.y1a2{bottom:678.571650px;}
.y182{bottom:685.050000px;}
.y13d{bottom:689.922600px;}
.y67{bottom:691.365900px;}
.y27{bottom:694.622400px;}
.y4{bottom:709.933350px;}
.y3{bottom:727.936050px;}
.y2{bottom:749.356050px;}
.yb{bottom:764.581950px;}
.y1{bottom:781.756050px;}
.h10{height:32.481914px;}
.h16{height:36.360352px;}
.h38{height:38.111484px;}
.h2{height:40.238789px;}
.h1f{height:44.602031px;}
.h1e{height:48.480469px;}
.h20{height:48.585938px;}
.h3c{height:52.453125px;}
.h13{height:56.722148px;}
.h37{height:56.845547px;}
.hf{height:60.600586px;}
.he{height:64.479023px;}
.h24{height:66.552891px;}
.h27{height:66.676641px;}
.h39{height:68.842266px;}
.h3a{height:68.992031px;}
.h2c{height:69.762656px;}
.hd{height:72.720703px;}
.h3b{height:72.721303px;}
.h1{height:72.878906px;}
.h35{height:75.654141px;}
.h23{height:76.765781px;}
.h2f{height:80.962383px;}
.h34{height:81.138516px;}
.h9{height:82.312734px;}
.h1c{height:88.912266px;}
.h19{height:89.827734px;}
.h8{height:90.198984px;}
.h26{height:92.313281px;}
.h28{height:94.129594px;}
.h7{height:94.994297px;}
.h2e{height:95.464687px;}
.h6{height:95.976562px;}
.hb{height:96.960938px;}
.hc{height:97.171875px;}
.h36{height:98.578125px;}
.h14{height:101.116628px;}
.h29{height:102.445594px;}
.ha{height:107.578125px;}
.h2a{height:112.959492px;}
.h1d{height:113.205234px;}
.h5{height:113.765625px;}
.h4{height:119.970703px;}
.h3{height:121.201172px;}
.h25{height:121.700981px;}
.h12{height:123.271748px;}
.h18{height:125.328516px;}
.h1a{height:127.986328px;}
.h21{height:129.442852px;}
.h11{height:130.169531px;}
.h1b{height:132.536953px;}
.h22{height:143.616797px;}
.h2d{height:157.561523px;}
.h2b{height:161.439961px;}
.h15{height:167.666228px;}
.h31{height:177.923320px;}
.h32{height:226.980000px;}
.h30{height:258.400898px;}
.h33{height:453.780000px;}
.h17{height:538.740000px;}
.h0{height:810.000000px;}
.w2{width:147.960000px;}
.w1{width:1097.820000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1{left:10.800000px;}
.x9e{left:20.925000px;}
.x11{left:27.796200px;}
.x8c{left:33.039750px;}
.x40{left:34.644150px;}
.x4b{left:37.227000px;}
.x49{left:39.832500px;}
.xaf{left:40.861050px;}
.x4a{left:44.436000px;}
.x4c{left:46.483650px;}
.xb3{left:50.366790px;}
.xa6{left:52.438500px;}
.xa9{left:54.429600px;}
.xa0{left:57.487500px;}
.x92{left:62.332200px;}
.xc0{left:64.566000px;}
.x19{left:66.664800px;}
.xbf{left:67.737150px;}
.xb8{left:68.884350px;}
.x81{left:70.222350px;}
.x63{left:72.677700px;}
.x3a{left:75.579150px;}
.xb2{left:77.914500px;}
.x39{left:79.042950px;}
.xb7{left:81.965850px;}
.xce{left:83.924850px;}
.x27{left:86.156100px;}
.x65{left:88.519350px;}
.xa2{left:89.571300px;}
.x86{left:92.033250px;}
.xcf{left:94.726650px;}
.xf{left:96.300000px;}
.xc9{left:97.425000px;}
.x38{left:100.047900px;}
.x2{left:103.133250px;}
.x84{left:104.657100px;}
.xcb{left:105.990750px;}
.x70{left:108.328200px;}
.xd1{left:114.277950px;}
.xab{left:117.857100px;}
.x43{left:123.688950px;}
.xae{left:128.409300px;}
.xca{left:131.265000px;}
.xa8{left:132.771300px;}
.xcc{left:139.830750px;}
.x28{left:146.614650px;}
.x99{left:149.092350px;}
.xb0{left:151.440900px;}
.xb1{left:154.598100px;}
.x98{left:164.951400px;}
.x4d{left:173.403750px;}
.x97{left:186.959700px;}
.x44{left:188.092950px;}
.x90{left:205.449300px;}
.x29{left:207.073350px;}
.x26{left:209.340000px;}
.x5{left:212.631150px;}
.x7{left:219.845550px;}
.xb9{left:222.154650px;}
.x6{left:224.504850px;}
.x8{left:229.735290px;}
.xbe{left:232.693350px;}
.x7c{left:235.126500px;}
.x25{left:237.739200px;}
.x64{left:243.590100px;}
.x8f{left:246.520200px;}
.x45{left:247.816950px;}
.xac{left:255.661050px;}
.x7d{left:262.681080px;}
.x79{left:265.655550px;}
.x2a{left:267.531900px;}
.x4{left:273.651150px;}
.x1b{left:282.082200px;}
.xbb{left:283.989450px;}
.x9{left:285.346290px;}
.x46{left:312.220950px;}
.x78{left:320.051550px;}
.x2b{left:327.990600px;}
.xad{left:335.407260px;}
.x87{left:346.660200px;}
.x8a{left:351.346800px;}
.xa1{left:357.120000px;}
.x89{left:359.039700px;}
.x77{left:374.447550px;}
.x47{left:376.624950px;}
.x7b{left:384.971400px;}
.x2c{left:388.449150px;}
.x1c{left:397.427820px;}
.xbd{left:410.533200px;}
.xbc{left:415.922790px;}
.xd4{left:418.065900px;}
.x76{left:428.843550px;}
.x48{left:441.028950px;}
.xba{left:447.364170px;}
.x2d{left:448.907700px;}
.x1d{left:457.891080px;}
.xaa{left:474.446100px;}
.x75{left:483.239550px;}
.x9c{left:487.259550px;}
.xd2{left:508.224000px;}
.x2e{left:509.366400px;}
.x41{left:510.983550px;}
.x9d{left:514.410570px;}
.x9f{left:527.435400px;}
.x10{left:536.249100px;}
.x74{left:537.635550px;}
.x51{left:558.145350px;}
.x52{left:562.654350px;}
.x1a{left:570.025350px;}
.x50{left:577.585350px;}
.x1e{left:578.817600px;}
.x8d{left:581.138850px;}
.x4f{left:583.174350px;}
.x4e{left:591.203100px;}
.x53{left:595.234350px;}
.x3f{left:601.630950px;}
.xb6{left:609.183750px;}
.x8e{left:621.645330px;}
.x2f{left:630.283800px;}
.x88{left:637.129050px;}
.x3d{left:645.467700px;}
.xa3{left:652.860000px;}
.x8b{left:654.769050px;}
.x6e{left:671.313150px;}
.x30{left:690.742350px;}
.x73{left:700.823550px;}
.xa{left:715.983150px;}
.x5b{left:719.294850px;}
.x59{left:721.900350px;}
.x5a{left:726.503850px;}
.x5c{left:731.755350px;}
.x31{left:751.201050px;}
.x72{left:755.219550px;}
.x42{left:756.652050px;}
.xc2{left:758.039250px;}
.x1f{left:760.207380px;}
.xb{left:767.542350px;}
.xb4{left:774.182250px;}
.x91{left:776.050950px;}
.x7e{left:783.030660px;}
.x9a{left:786.237600px;}
.xc5{left:793.066950px;}
.xc4{left:794.509350px;}
.x5d{left:798.594750px;}
.x54{left:802.362300px;}
.x7f{left:807.104220px;}
.x71{left:809.615550px;}
.x32{left:811.659600px;}
.x9b{left:813.261540px;}
.x20{left:820.670640px;}
.x3e{left:826.669500px;}
.xc1{left:832.785600px;}
.x66{left:843.838950px;}
.x55{left:863.364300px;}
.x33{left:872.118300px;}
.xd0{left:882.025050px;}
.x83{left:887.940450px;}
.xa4{left:890.215650px;}
.x82{left:894.559500px;}
.x85{left:901.335600px;}
.x6b{left:904.345200px;}
.x6c{left:913.019400px;}
.x3c{left:919.225650px;}
.x56{left:924.366300px;}
.x37{left:926.328900px;}
.x34{left:932.576850px;}
.x6a{left:934.065000px;}
.x3b{left:940.230600px;}
.x6d{left:941.630040px;}
.x6f{left:970.539600px;}
.x12{left:971.974950px;}
.x14{left:980.735250px;}
.x13{left:982.510350px;}
.x95{left:984.375900px;}
.x96{left:987.063600px;}
.x15{left:988.108770px;}
.x35{left:993.035400px;}
.x16{left:999.710400px;}
.x21{left:1002.060420px;}
.xb5{left:1009.846050px;}
.x69{left:1011.649320px;}
.x7a{left:1013.460000px;}
.x3{left:1024.521900px;}
.x80{left:1030.441950px;}
.x67{left:1034.031600px;}
.x57{left:1041.690300px;}
.x36{left:1053.494100px;}
.xd5{left:1056.295950px;}
.x22{left:1062.523680px;}
.x68{left:1063.978920px;}
.xc{left:1075.389150px;}
.xc3{left:1084.896000px;}
.xd3{left:1092.999720px;}
.xa5{left:1096.380000px;}
.x58{left:1102.692300px;}
.xd{left:1124.943300px;}
.xe{left:1145.293920px;}
.x93{left:1169.927100px;}
.x23{left:1183.450200px;}
.xa7{left:1185.898350px;}
.x61{left:1241.917200px;}
.x24{left:1243.913460px;}
.xc7{left:1248.675510px;}
.x94{left:1250.052750px;}
.x60{left:1252.717200px;}
.x5f{left:1262.437200px;}
.x17{left:1265.622900px;}
.x5e{left:1270.409700px;}
.x62{left:1274.497200px;}
.x18{left:1280.022540px;}
.xc6{left:1286.285250px;}
.xc8{left:1299.619830px;}
.xcd{left:1345.116150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.952000pt;}
.v5{vertical-align:25.344000pt;}
.v2{vertical-align:39.461760pt;}
.v1{vertical-align:59.155200pt;}
.v3{vertical-align:98.616960pt;}
.ls2d{letter-spacing:-7.008640pt;}
.ls4b{letter-spacing:-5.116800pt;}
.ls57{letter-spacing:-2.778880pt;}
.ls6f{letter-spacing:-2.688000pt;}
.ls6d{letter-spacing:-2.213120pt;}
.ls50{letter-spacing:-2.176000pt;}
.ls42{letter-spacing:-1.824000pt;}
.ls7a{letter-spacing:-1.635840pt;}
.ls1c{letter-spacing:-1.617280pt;}
.ls64{letter-spacing:-1.536000pt;}
.ls56{letter-spacing:-1.389440pt;}
.ls13{letter-spacing:-1.282560pt;}
.ls49{letter-spacing:-1.248000pt;}
.ls71{letter-spacing:-1.056000pt;}
.ls36{letter-spacing:-0.960000pt;}
.ls78{letter-spacing:-0.908800pt;}
.ls69{letter-spacing:-0.896000pt;}
.ls4e{letter-spacing:-0.864000pt;}
.ls65{letter-spacing:-0.672000pt;}
.ls66{letter-spacing:-0.640000pt;}
.ls68{letter-spacing:-0.576000pt;}
.ls67{letter-spacing:-0.512000pt;}
.ls4c{letter-spacing:-0.480000pt;}
.ls7b{letter-spacing:-0.454400pt;}
.ls7e{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.318720pt;}
.ls38{letter-spacing:-0.303360pt;}
.ls26{letter-spacing:-0.299520pt;}
.ls2b{letter-spacing:-0.298240pt;}
.ls0{letter-spacing:-0.288000pt;}
.ls77{letter-spacing:-0.272640pt;}
.ls1f{letter-spacing:-0.257280pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls41{letter-spacing:-0.255360pt;}
.ls1e{letter-spacing:-0.240000pt;}
.ls4d{letter-spacing:-0.234880pt;}
.ls39{letter-spacing:-0.224640pt;}
.ls15{letter-spacing:-0.213760pt;}
.ls7c{letter-spacing:-0.213120pt;}
.ls3{letter-spacing:-0.212480pt;}
.ls47{letter-spacing:-0.208000pt;}
.ls3a{letter-spacing:-0.202240pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls76{letter-spacing:-0.181760pt;}
.ls21{letter-spacing:-0.171520pt;}
.ls3f{letter-spacing:-0.170880pt;}
.ls53{letter-spacing:-0.170240pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls25{letter-spacing:-0.154880pt;}
.ls2a{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.117760pt;}
.ls14{letter-spacing:-0.117120pt;}
.ls11{letter-spacing:-0.106880pt;}
.ls1a{letter-spacing:-0.106240pt;}
.ls3c{letter-spacing:-0.101120pt;}
.ls2f{letter-spacing:-0.096000pt;}
.ls79{letter-spacing:-0.090880pt;}
.ls23{letter-spacing:-0.085760pt;}
.ls52{letter-spacing:-0.085120pt;}
.ls6c{letter-spacing:-0.074880pt;}
.ls4f{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.053120pt;}
.ls27{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.042880pt;}
.ls6a{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.080000pt;}
.ls51{letter-spacing:0.085120pt;}
.ls74{letter-spacing:0.090880pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls3b{letter-spacing:0.101120pt;}
.ls9{letter-spacing:0.106240pt;}
.ls10{letter-spacing:0.106880pt;}
.ls18{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.149120pt;}
.ls40{letter-spacing:0.149760pt;}
.ls2e{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.159360pt;}
.ls8{letter-spacing:0.160000pt;}
.ls55{letter-spacing:0.170240pt;}
.ls35{letter-spacing:0.170880pt;}
.ls31{letter-spacing:0.176640pt;}
.ls30{letter-spacing:0.192000pt;}
.ls3e{letter-spacing:0.202240pt;}
.ls48{letter-spacing:0.208000pt;}
.ls7d{letter-spacing:0.213120pt;}
.lsc{letter-spacing:0.213760pt;}
.ls34{letter-spacing:0.224640pt;}
.ls12{letter-spacing:0.234240pt;}
.ls1d{letter-spacing:0.255360pt;}
.ls17{letter-spacing:0.256000pt;}
.ls72{letter-spacing:0.257280pt;}
.ls32{letter-spacing:0.288000pt;}
.ls29{letter-spacing:0.298240pt;}
.ls6b{letter-spacing:0.299520pt;}
.ls22{letter-spacing:0.300160pt;}
.ls3d{letter-spacing:0.303360pt;}
.ls5{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.320640pt;}
.ls54{letter-spacing:0.340480pt;}
.ls70{letter-spacing:0.384000pt;}
.ls44{letter-spacing:0.416000pt;}
.ls62{letter-spacing:0.448000pt;}
.ls75{letter-spacing:0.727040pt;}
.ls63{letter-spacing:0.823680pt;}
.ls5c{letter-spacing:0.960000pt;}
.ls61{letter-spacing:1.088000pt;}
.ls28{letter-spacing:1.192960pt;}
.ls4a{letter-spacing:1.632000pt;}
.ls58{letter-spacing:4.800000pt;}
.ls59{letter-spacing:8.640000pt;}
.ls5a{letter-spacing:9.312000pt;}
.ls5f{letter-spacing:15.744000pt;}
.lse{letter-spacing:19.131520pt;}
.ls45{letter-spacing:27.168000pt;}
.ls60{letter-spacing:29.248000pt;}
.ls43{letter-spacing:41.879040pt;}
.ls37{letter-spacing:47.526400pt;}
.ls5b{letter-spacing:55.392000pt;}
.ls46{letter-spacing:79.552000pt;}
.ls5d{letter-spacing:79.680000pt;}
.ls5e{letter-spacing:79.708800pt;}
.ls6e{letter-spacing:87.680000pt;}
.ls73{letter-spacing:89.420800pt;}
.ls24{letter-spacing:174.994560pt;}
.ws92{word-spacing:-64.130560pt;}
.ws49{word-spacing:-46.773760pt;}
.ws37{word-spacing:-46.618880pt;}
.wsd2{word-spacing:-45.096960pt;}
.ws83{word-spacing:-42.016000pt;}
.ws15{word-spacing:-38.400000pt;}
.ws3f{word-spacing:-37.876480pt;}
.ws59{word-spacing:-34.859520pt;}
.ws11{word-spacing:-32.491520pt;}
.ws10{word-spacing:-32.277760pt;}
.ws55{word-spacing:-29.973120pt;}
.ws28{word-spacing:-26.112000pt;}
.wsac{word-spacing:-25.961600pt;}
.wsad{word-spacing:-25.791360pt;}
.wsaa{word-spacing:-25.536000pt;}
.wsab{word-spacing:-25.450880pt;}
.ws14{word-spacing:-24.368640pt;}
.ws12{word-spacing:-24.154880pt;}
.ws13{word-spacing:-23.941120pt;}
.wseb{word-spacing:-22.314240pt;}
.wsae{word-spacing:-21.803520pt;}
.wsb5{word-spacing:-21.696640pt;}
.wsba{word-spacing:-21.482880pt;}
.ws78{word-spacing:-21.408000pt;}
.ws91{word-spacing:-20.841600pt;}
.ws67{word-spacing:-20.830720pt;}
.ws69{word-spacing:-20.729600pt;}
.ws90{word-spacing:-20.627840pt;}
.wsb9{word-spacing:-20.307200pt;}
.ws64{word-spacing:-20.224000pt;}
.ws5c{word-spacing:-19.680000pt;}
.ws29{word-spacing:-19.584000pt;}
.ws5a{word-spacing:-19.488000pt;}
.ws4c{word-spacing:-19.392000pt;}
.ws93{word-spacing:-19.296000pt;}
.ws9b{word-spacing:-19.200000pt;}
.wsc2{word-spacing:-19.008000pt;}
.wsc1{word-spacing:-18.816000pt;}
.wsc0{word-spacing:-18.624000pt;}
.wsdf{word-spacing:-18.539520pt;}
.ws84{word-spacing:-18.528000pt;}
.wsdb{word-spacing:-18.448640pt;}
.wsd7{word-spacing:-18.432000pt;}
.wsdc{word-spacing:-18.266880pt;}
.ws86{word-spacing:-18.240000pt;}
.wsdd{word-spacing:-18.176000pt;}
.wse1{word-spacing:-17.994240pt;}
.wsbf{word-spacing:-17.952000pt;}
.wsed{word-spacing:-17.920000pt;}
.wsde{word-spacing:-17.539840pt;}
.ws2b{word-spacing:-17.534720pt;}
.wsee{word-spacing:-17.408000pt;}
.ws39{word-spacing:-17.279360pt;}
.ws2c{word-spacing:-16.320000pt;}
.ws2a{word-spacing:-15.662080pt;}
.wscb{word-spacing:-15.125760pt;}
.ws72{word-spacing:-14.901120pt;}
.wsca{word-spacing:-13.184000pt;}
.wsc9{word-spacing:-13.056000pt;}
.wsc8{word-spacing:-12.992000pt;}
.wsc3{word-spacing:-12.928000pt;}
.wsa6{word-spacing:-12.864000pt;}
.wsd8{word-spacing:-12.821120pt;}
.wsc5{word-spacing:-12.800000pt;}
.ws71{word-spacing:-12.736000pt;}
.wsc6{word-spacing:-12.672000pt;}
.wsc4{word-spacing:-12.416000pt;}
.wsc7{word-spacing:-12.096000pt;}
.ws26{word-spacing:-10.942720pt;}
.ws24{word-spacing:-10.889600pt;}
.wsa5{word-spacing:-10.816000pt;}
.ws25{word-spacing:-10.783360pt;}
.ws27{word-spacing:-10.677120pt;}
.ws0{word-spacing:-10.570880pt;}
.ws7{word-spacing:-10.464640pt;}
.ws56{word-spacing:-10.032000pt;}
.ws2d{word-spacing:-8.747520pt;}
.ws2e{word-spacing:-8.618880pt;}
.wsda{word-spacing:-2.915840pt;}
.ws9d{word-spacing:-2.563200pt;}
.ws82{word-spacing:-2.400000pt;}
.ws3c{word-spacing:-2.351360pt;}
.ws63{word-spacing:-2.304000pt;}
.ws94{word-spacing:-2.244480pt;}
.wsd0{word-spacing:-2.096640pt;}
.ws19{word-spacing:-2.030720pt;}
.wsbe{word-spacing:-1.923840pt;}
.wse6{word-spacing:-1.908480pt;}
.wsb7{word-spacing:-1.816960pt;}
.ws2{word-spacing:-1.760000pt;}
.ws7f{word-spacing:-1.728000pt;}
.wsd1{word-spacing:-1.722240pt;}
.ws6a{word-spacing:-1.708800pt;}
.ws80{word-spacing:-1.660800pt;}
.ws53{word-spacing:-1.632000pt;}
.wsd{word-spacing:-1.600000pt;}
.ws99{word-spacing:-1.536000pt;}
.ws9a{word-spacing:-1.440000pt;}
.wsb6{word-spacing:-1.389440pt;}
.wsa8{word-spacing:-1.347840pt;}
.ws9c{word-spacing:-1.315200pt;}
.ws58{word-spacing:-1.302912pt;}
.ws22{word-spacing:-1.282560pt;}
.wse2{word-spacing:-1.272320pt;}
.wsb8{word-spacing:-1.175680pt;}
.ws7e{word-spacing:-1.152000pt;}
.ws1{word-spacing:-1.120000pt;}
.ws3b{word-spacing:-1.084160pt;}
.ws6{word-spacing:-1.083648pt;}
.ws18{word-spacing:-1.068800pt;}
.ws54{word-spacing:-1.056000pt;}
.ws1b{word-spacing:-1.054080pt;}
.ws41{word-spacing:-1.043840pt;}
.ws8f{word-spacing:-1.025280pt;}
.ws97{word-spacing:-0.960000pt;}
.wse9{word-spacing:-0.908800pt;}
.ws48{word-spacing:-0.894720pt;}
.ws50{word-spacing:-0.864000pt;}
.wsbd{word-spacing:-0.855040pt;}
.ws5f{word-spacing:-0.823680pt;}
.wsc{word-spacing:-0.800000pt;}
.ws7b{word-spacing:-0.768000pt;}
.wscf{word-spacing:-0.748800pt;}
.wsa{word-spacing:-0.690560pt;}
.ws73{word-spacing:-0.683520pt;}
.ws74{word-spacing:-0.673920pt;}
.wsd5{word-spacing:-0.672000pt;}
.ws95{word-spacing:-0.641280pt;}
.wse3{word-spacing:-0.636160pt;}
.wsec{word-spacing:-0.599040pt;}
.ws5e{word-spacing:-0.588800pt;}
.ws96{word-spacing:-0.534400pt;}
.ws4{word-spacing:-0.480000pt;}
.ws75{word-spacing:-0.447360pt;}
.wsef{word-spacing:-0.426240pt;}
.ws8a{word-spacing:-0.425600pt;}
.ws5{word-spacing:-0.409024pt;}
.ws51{word-spacing:-0.384000pt;}
.ws6d{word-spacing:-0.364800pt;}
.wsb{word-spacing:-0.320000pt;}
.ws36{word-spacing:-0.300160pt;}
.ws79{word-spacing:-0.298240pt;}
.ws52{word-spacing:-0.288000pt;}
.wse4{word-spacing:-0.272640pt;}
.ws23{word-spacing:-0.256000pt;}
.ws8c{word-spacing:-0.255360pt;}
.ws1c{word-spacing:-0.234240pt;}
.ws62{word-spacing:-0.224640pt;}
.ws1a{word-spacing:-0.213760pt;}
.wsaf{word-spacing:-0.213120pt;}
.ws8e{word-spacing:-0.208000pt;}
.ws6f{word-spacing:-0.202240pt;}
.ws4f{word-spacing:-0.192000pt;}
.ws40{word-spacing:-0.149120pt;}
.ws70{word-spacing:-0.128000pt;}
.ws4d{word-spacing:-0.117120pt;}
.ws42{word-spacing:-0.106880pt;}
.wse{word-spacing:-0.106240pt;}
.ws9{word-spacing:-0.096000pt;}
.wsb4{word-spacing:-0.085120pt;}
.wsa9{word-spacing:-0.074880pt;}
.ws3{word-spacing:-0.016000pt;}
.ws8{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.048000pt;}
.wsf{word-spacing:0.053120pt;}
.ws6b{word-spacing:0.074880pt;}
.ws7a{word-spacing:0.085120pt;}
.ws9f{word-spacing:0.096000pt;}
.ws6e{word-spacing:0.101120pt;}
.ws21{word-spacing:0.106880pt;}
.ws2f{word-spacing:0.128000pt;}
.ws3a{word-spacing:0.154880pt;}
.ws35{word-spacing:0.171520pt;}
.wse5{word-spacing:0.181760pt;}
.ws98{word-spacing:0.192000pt;}
.ws6c{word-spacing:0.202240pt;}
.ws1e{word-spacing:0.213760pt;}
.ws33{word-spacing:0.240000pt;}
.ws88{word-spacing:0.255360pt;}
.ws17{word-spacing:0.256000pt;}
.wse7{word-spacing:0.272640pt;}
.ws43{word-spacing:0.288000pt;}
.ws46{word-spacing:0.298240pt;}
.ws3d{word-spacing:0.299520pt;}
.ws7d{word-spacing:0.318720pt;}
.ws89{word-spacing:0.340480pt;}
.ws31{word-spacing:0.384000pt;}
.ws87{word-spacing:0.426240pt;}
.wsce{word-spacing:0.449280pt;}
.wsd4{word-spacing:0.480000pt;}
.wsb3{word-spacing:0.510720pt;}
.ws30{word-spacing:0.512000pt;}
.ws34{word-spacing:0.514560pt;}
.ws8b{word-spacing:0.595840pt;}
.ws61{word-spacing:0.640000pt;}
.ws4e{word-spacing:0.672000pt;}
.wsea{word-spacing:0.727040pt;}
.ws7c{word-spacing:0.766080pt;}
.ws32{word-spacing:0.768000pt;}
.ws47{word-spacing:0.894720pt;}
.wsa7{word-spacing:0.939520pt;}
.ws60{word-spacing:0.960000pt;}
.wsb2{word-spacing:1.021440pt;}
.wsbb{word-spacing:1.024000pt;}
.wsd6{word-spacing:1.056000pt;}
.wse8{word-spacing:1.090560pt;}
.ws16{word-spacing:1.152000pt;}
.ws1f{word-spacing:1.171200pt;}
.wsb0{word-spacing:1.191680pt;}
.wsd9{word-spacing:1.248000pt;}
.ws1d{word-spacing:1.282560pt;}
.ws44{word-spacing:1.491200pt;}
.ws8d{word-spacing:1.532160pt;}
.ws20{word-spacing:1.603200pt;}
.ws45{word-spacing:1.640320pt;}
.wsb1{word-spacing:1.787520pt;}
.ws5d{word-spacing:1.984000pt;}
.ws9e{word-spacing:2.371200pt;}
.wsbc{word-spacing:2.885760pt;}
.wsd3{word-spacing:2.944000pt;}
.ws81{word-spacing:3.737600pt;}
.ws85{word-spacing:7.680000pt;}
.ws77{word-spacing:29.952000pt;}
.wse0{word-spacing:70.972160pt;}
.ws57{word-spacing:91.746816pt;}
.ws76{word-spacing:102.144000pt;}
.ws5b{word-spacing:104.880000pt;}
.ws38{word-spacing:120.706560pt;}
.wscd{word-spacing:184.874027pt;}
.wscc{word-spacing:260.263573pt;}
.wsa1{word-spacing:301.632000pt;}
.wsa3{word-spacing:454.944000pt;}
.wsa0{word-spacing:623.577600pt;}
.ws65{word-spacing:652.512960pt;}
.wsa2{word-spacing:709.248000pt;}
.wsa4{word-spacing:807.446400pt;}
.ws68{word-spacing:807.954624pt;}
.ws4a{word-spacing:985.660437pt;}
.ws66{word-spacing:1007.474496pt;}
.ws4b{word-spacing:1009.689067pt;}
._1d{margin-left:-13.631872pt;}
._a{margin-left:-8.276160pt;}
._b{margin-left:-6.755136pt;}
._5{margin-left:-5.676800pt;}
._e{margin-left:-4.472320pt;}
._2{margin-left:-3.392000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-0.979200pt;}
._0{width:1.152000pt;}
._6{width:2.152896pt;}
._18{width:3.159744pt;}
._8{width:4.096000pt;}
._9{width:5.823488pt;}
._c{width:7.112832pt;}
._10{width:9.216000pt;}
._4{width:11.744832pt;}
._13{width:15.667200pt;}
._f{width:16.800000pt;}
._7{width:19.131520pt;}
._17{width:28.864000pt;}
._16{width:30.016000pt;}
._11{width:55.584000pt;}
._14{width:65.760000pt;}
._12{width:79.680000pt;}
._1b{width:87.680000pt;}
._15{width:134.394667pt;}
._d{width:317.906880pt;}
._19{width:589.220437pt;}
._1a{width:872.398101pt;}
._1c{width:882.292501pt;}
.fs8{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs10{font-size:58.880000pt;}
.fsf{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.fs18{font-size:90.880000pt;}
.fs0{font-size:96.000000pt;}
.fse{font-size:101.120000pt;}
.fs4{font-size:106.880000pt;}
.fs15{font-size:116.480000pt;}
.fs5{font-size:117.120000pt;}
.fs12{font-size:121.600000pt;}
.fs3{font-size:128.000000pt;}
.fsd{font-size:144.000000pt;}
.fsc{font-size:149.120000pt;}
.fs9{font-size:154.880000pt;}
.fs2{font-size:160.000000pt;}
.fs11{font-size:170.880000pt;}
.fs14{font-size:208.000000pt;}
.fs13{font-size:213.120000pt;}
.fs17{font-size:234.880000pt;}
.fs16{font-size:341.120000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:3.713467pt;}
.ya{bottom:19.186800pt;}
.yd1{bottom:71.450533pt;}
.y26{bottom:72.882267pt;}
.yca{bottom:73.349600pt;}
.y9a{bottom:73.701600pt;}
.y14c{bottom:74.907227pt;}
.yd2{bottom:79.466000pt;}
.y36{bottom:81.424400pt;}
.y154{bottom:84.165333pt;}
.y68{bottom:92.083200pt;}
.y1af{bottom:93.102400pt;}
.y12e{bottom:93.186000pt;}
.y136{bottom:93.209600pt;}
.y133{bottom:93.277733pt;}
.y1ad{bottom:96.181227pt;}
.y14b{bottom:97.953467pt;}
.y18e{bottom:98.095867pt;}
.y101{bottom:100.934800pt;}
.y103{bottom:104.153867pt;}
.y181{bottom:105.394293pt;}
.y33{bottom:106.278267pt;}
.y1b0{bottom:106.757600pt;}
.y15e{bottom:109.916800pt;}
.y153{bottom:110.397333pt;}
.yf4{bottom:113.518000pt;}
.y162{bottom:115.273600pt;}
.y1ae{bottom:115.500267pt;}
.y168{bottom:118.444800pt;}
.y1ac{bottom:118.589067pt;}
.y4a{bottom:120.640000pt;}
.y14a{bottom:122.404560pt;}
.y69{bottom:123.275333pt;}
.yf6{bottom:123.451867pt;}
.y169{bottom:124.471733pt;}
.y13c{bottom:125.663600pt;}
.y18d{bottom:126.895867pt;}
.y32{bottom:127.878267pt;}
.y198{bottom:128.208000pt;}
.y17e{bottom:128.834000pt;}
.y180{bottom:128.908693pt;}
.yce{bottom:129.029600pt;}
.y122{bottom:130.110000pt;}
.y102{bottom:132.953867pt;}
.y22{bottom:134.159280pt;}
.y111{bottom:134.743333pt;}
.ya6{bottom:136.113867pt;}
.y113{bottom:137.247893pt;}
.y70{bottom:141.035067pt;}
.yc7{bottom:142.332053pt;}
.y87{bottom:143.691067pt;}
.yf3{bottom:144.238000pt;}
.yd0{bottom:144.625333pt;}
.y149{bottom:145.450800pt;}
.y12a{bottom:146.376000pt;}
.y58{bottom:147.177573pt;}
.y53{bottom:148.550373pt;}
.y1a1{bottom:150.128000pt;}
.y17f{bottom:152.274133pt;}
.y13b{bottom:154.463600pt;}
.y18c{bottom:155.695867pt;}
.y199{bottom:155.780000pt;}
.y15d{bottom:155.990400pt;}
.y197{bottom:157.008000pt;}
.y121{bottom:158.910000pt;}
.y110{bottom:161.143333pt;}
.yb7{bottom:162.417467pt;}
.y21{bottom:162.963440pt;}
.y152{bottom:165.076933pt;}
.yda{bottom:165.888933pt;}
.y79{bottom:169.970000pt;}
.y148{bottom:170.550693pt;}
.ya5{bottom:174.731200pt;}
.yf2{bottom:174.958000pt;}
.y129{bottom:175.176000pt;}
.ya8{bottom:175.412000pt;}
.y41{bottom:180.067600pt;}
.yf5{bottom:180.547867pt;}
.y66{bottom:181.206800pt;}
.y5c{bottom:182.274267pt;}
.yb6{bottom:183.232533pt;}
.y18b{bottom:184.495867pt;}
.y196{bottom:185.808000pt;}
.yb5{bottom:186.224533pt;}
.y10f{bottom:187.543333pt;}
.y120{bottom:187.710000pt;}
.yb3{bottom:189.488533pt;}
.y71{bottom:189.695067pt;}
.y100{bottom:191.048933pt;}
.y57{bottom:191.988133pt;}
.y8e{bottom:192.483067pt;}
.y52{bottom:193.360933pt;}
.yb2{bottom:193.552533pt;}
.y147{bottom:193.596933pt;}
.yd9{bottom:194.688933pt;}
.yb8{bottom:194.803067pt;}
.yb4{bottom:195.728533pt;}
.y20{bottom:196.550480pt;}
.y6a{bottom:197.371333pt;}
.y15c{bottom:202.667333pt;}
.y128{bottom:203.976000pt;}
.y37{bottom:204.331067pt;}
.y1a0{bottom:204.528000pt;}
.yf1{bottom:205.678000pt;}
.y88{bottom:207.951067pt;}
.y1b7{bottom:208.164667pt;}
.y130{bottom:208.386000pt;}
.y65{bottom:210.006800pt;}
.y18a{bottom:213.295867pt;}
.ya4{bottom:213.348533pt;}
.y10e{bottom:213.943333pt;}
.y195{bottom:214.608000pt;}
.y167{bottom:214.972800pt;}
.yb1{bottom:216.240533pt;}
.y11f{bottom:216.510000pt;}
.y5a{bottom:219.658000pt;}
.yd8{bottom:223.488933pt;}
.y17d{bottom:224.327520pt;}
.y1f{bottom:225.354640pt;}
.yb9{bottom:227.188667pt;}
.y1ab{bottom:229.155333pt;}
.y34{bottom:229.323200pt;}
.y42{bottom:229.375600pt;}
.y146{bottom:229.394533pt;}
.y112{bottom:230.885333pt;}
.y83{bottom:231.592267pt;}
.y151{bottom:232.940000pt;}
.y18{bottom:234.857147pt;}
.y72{bottom:238.355067pt;}
.y64{bottom:238.806800pt;}
.y10d{bottom:240.343333pt;}
.y38{bottom:243.774107pt;}
.y81{bottom:244.440267pt;}
.y11e{bottom:245.310000pt;}
.y17c{bottom:246.735360pt;}
.y15b{bottom:249.344400pt;}
.ya3{bottom:251.965867pt;}
.ycc{bottom:252.240000pt;}
.yd7{bottom:252.288933pt;}
.y13a{bottom:253.089867pt;}
.yb0{bottom:256.528533pt;}
.y1aa{bottom:257.955333pt;}
.y95{bottom:258.164533pt;}
.y19f{bottom:258.928000pt;}
.y1e{bottom:258.941680pt;}
.y1b6{bottom:259.128533pt;}
.yc6{bottom:259.279413pt;}
.y104{bottom:259.534000pt;}
.yba{bottom:259.574267pt;}
.y171{bottom:260.083333pt;}
.ye2{bottom:261.366400pt;}
.y31{bottom:262.203227pt;}
.y9{bottom:262.397333pt;}
.y10c{bottom:266.575333pt;}
.y63{bottom:267.606800pt;}
.y17{bottom:268.444187pt;}
.y17b{bottom:269.143200pt;}
.y11{bottom:269.708560pt;}
.y189{bottom:270.895867pt;}
.y194{bottom:272.208000pt;}
.y89{bottom:272.211067pt;}
.ycf{bottom:272.710667pt;}
.y11d{bottom:274.110000pt;}
.y99{bottom:275.071067pt;}
.y6b{bottom:275.227333pt;}
.y145{bottom:276.712133pt;}
.y80{bottom:276.924533pt;}
.y94{bottom:277.364533pt;}
.y43{bottom:278.683600pt;}
.yd6{bottom:281.088933pt;}
.y39{bottom:283.217147pt;}
.y6f{bottom:284.955333pt;}
.y30{bottom:285.249467pt;}
.y73{bottom:287.015067pt;}
.y56{bottom:287.241707pt;}
.y1d{bottom:287.745840pt;}
.y1b5{bottom:287.928667pt;}
.yf0{bottom:288.250667pt;}
.y170{bottom:288.883333pt;}
.ye1{bottom:290.166400pt;}
.ybb{bottom:291.959867pt;}
.yee{bottom:293.656533pt;}
.yf9{bottom:294.895333pt;}
.y82{bottom:295.848267pt;}
.y15a{bottom:296.021200pt;}
.y7f{bottom:296.124533pt;}
.y62{bottom:296.406800pt;}
.y139{bottom:296.456773pt;}
.y16{bottom:297.248347pt;}
.y93{bottom:298.804533pt;}
.y12f{bottom:299.360000pt;}
.y166{bottom:299.981093pt;}
.y150{bottom:300.802933pt;}
.y10{bottom:301.719120pt;}
.y50{bottom:302.453600pt;}
.y11c{bottom:302.910000pt;}
.y127{bottom:304.320000pt;}
.y8{bottom:305.597333pt;}
.yd5{bottom:309.888933pt;}
.y3a{bottom:312.813467pt;}
.y19e{bottom:313.328000pt;}
.yaf{bottom:313.744533pt;}
.y1a9{bottom:315.555333pt;}
.y135{bottom:317.120000pt;}
.y7e{bottom:317.564533pt;}
.y16f{bottom:317.683333pt;}
.y9d{bottom:318.168533pt;}
.ye0{bottom:318.966400pt;}
.y1c{bottom:321.332880pt;}
.y9e{bottom:323.022293pt;}
.y144{bottom:323.156800pt;}
.yf8{bottom:323.695333pt;}
.y6c{bottom:323.883333pt;}
.ybc{bottom:324.345467pt;}
.yed{bottom:324.376533pt;}
.y15{bottom:326.052507pt;}
.y92{bottom:327.604533pt;}
.y44{bottom:327.991600pt;}
.y138{bottom:328.467333pt;}
.y188{bottom:328.495867pt;}
.y165{bottom:329.426533pt;}
.y193{bottom:329.808000pt;}
.y11b{bottom:331.710000pt;}
.y55{bottom:332.052267pt;}
.y126{bottom:333.120000pt;}
.yf{bottom:333.729680pt;}
.y74{bottom:335.675067pt;}
.y8a{bottom:336.471067pt;}
.y175{bottom:337.576933pt;}
.yd4{bottom:338.688933pt;}
.yad{bottom:339.440533pt;}
.yae{bottom:341.376533pt;}
.y159{bottom:342.698133pt;}
.yac{bottom:342.960533pt;}
.y1a8{bottom:344.355333pt;}
.yef{bottom:345.346667pt;}
.y1b4{bottom:345.528667pt;}
.y4f{bottom:345.653600pt;}
.y7d{bottom:346.364533pt;}
.y16e{bottom:346.483333pt;}
.y86{bottom:347.256267pt;}
.ydf{bottom:347.766400pt;}
.y7{bottom:348.797333pt;}
.y1b{bottom:350.137040pt;}
.yff{bottom:351.217333pt;}
.y132{bottom:351.360000pt;}
.yf7{bottom:352.495333pt;}
.y61{bottom:354.006800pt;}
.y14{bottom:354.856667pt;}
.yec{bottom:355.096533pt;}
.y91{bottom:356.404533pt;}
.ybd{bottom:356.731067pt;}
.y187{bottom:357.295867pt;}
.y192{bottom:358.608000pt;}
.y11a{bottom:360.510000pt;}
.y9c{bottom:362.939413pt;}
.ye{bottom:365.740240pt;}
.y3b{bottom:367.045307pt;}
.y106{bottom:367.165467pt;}
.y19d{bottom:367.728000pt;}
.y14f{bottom:368.666000pt;}
.y143{bottom:370.025333pt;}
.y137{bottom:372.412400pt;}
.y6d{bottom:372.539333pt;}
.y9f{bottom:372.925013pt;}
.y84{bottom:372.952267pt;}
.y1a7{bottom:373.155333pt;}
.yab{bottom:373.424533pt;}
.y1b3{bottom:374.328667pt;}
.y7c{bottom:375.164533pt;}
.y16d{bottom:375.283333pt;}
.y45{bottom:377.299600pt;}
.yc9{bottom:378.612693pt;}
.y1a{bottom:378.941200pt;}
.yfe{bottom:380.017333pt;}
.y98{bottom:381.148267pt;}
.ycd{bottom:381.377920pt;}
.y60{bottom:382.806800pt;}
.y97{bottom:383.570533pt;}
.y75{bottom:384.335067pt;}
.ya7{bottom:385.445333pt;}
.y12d{bottom:385.760000pt;}
.y3c{bottom:386.776187pt;}
.y2d{bottom:387.042133pt;}
.y191{bottom:387.408000pt;}
.ybe{bottom:389.116667pt;}
.y119{bottom:389.310000pt;}
.y158{bottom:389.375067pt;}
.y164{bottom:394.326560pt;}
.y105{bottom:395.965467pt;}
.yd{bottom:397.750800pt;}
.y8b{bottom:400.731067pt;}
.y1b2{bottom:403.128667pt;}
.y16c{bottom:404.083333pt;}
.yfd{bottom:408.817333pt;}
.y134{bottom:410.329600pt;}
.y13{bottom:411.503627pt;}
.y5f{bottom:411.606800pt;}
.yaa{bottom:413.760533pt;}
.y186{bottom:414.895867pt;}
.y142{bottom:417.870267pt;}
.y118{bottom:418.110000pt;}
.y10b{bottom:418.616240pt;}
.ya0{bottom:419.440213pt;}
.ybf{bottom:421.502267pt;}
.y19c{bottom:422.132160pt;}
.y163{bottom:423.772000pt;}
.y2c{bottom:425.442133pt;}
.y46{bottom:426.607600pt;}
.y173{bottom:428.113467pt;}
.ydc{bottom:428.352933pt;}
.y1a6{bottom:430.755333pt;}
.y2f{bottom:431.961733pt;}
.yc{bottom:432.150800pt;}
.y16b{bottom:432.883333pt;}
.y76{bottom:432.995067pt;}
.y6{bottom:435.197333pt;}
.y157{bottom:436.052133pt;}
.y14e{bottom:436.528933pt;}
.y85{bottom:437.208267pt;}
.y9b{bottom:438.374933pt;}
.yea{bottom:439.076800pt;}
.y5e{bottom:440.406800pt;}
.y6e{bottom:440.667333pt;}
.y3d{bottom:441.008027pt;}
.y185{bottom:443.695867pt;}
.y54{bottom:444.046667pt;}
.y131{bottom:444.637733pt;}
.y190{bottom:445.008000pt;}
.ya1{bottom:446.717333pt;}
.y117{bottom:446.910000pt;}
.y10a{bottom:447.901360pt;}
.y19b{bottom:449.328000pt;}
.yc0{bottom:453.887867pt;}
.y12{bottom:455.511467pt;}
.y19{bottom:455.560000pt;}
.ydb{bottom:457.152933pt;}
.yde{bottom:458.530000pt;}
.y90{bottom:458.976533pt;}
.y3e{bottom:460.738907pt;}
.y16a{bottom:461.683333pt;}
.ye9{bottom:462.591200pt;}
.y125{bottom:463.331067pt;}
.y2b{bottom:463.842133pt;}
.y7b{bottom:464.487467pt;}
.y8c{bottom:464.991067pt;}
.y4e{bottom:465.215467pt;}
.y141{bottom:466.355200pt;}
.y5d{bottom:469.206800pt;}
.y1b1{bottom:471.832267pt;}
.y5b{bottom:471.902533pt;}
.yfc{bottom:473.534533pt;}
.y116{bottom:475.710000pt;}
.y47{bottom:475.915600pt;}
.y109{bottom:477.346800pt;}
.y5{bottom:478.397333pt;}
.y12c{bottom:478.946000pt;}
.ya9{bottom:480.256533pt;}
.yeb{bottom:481.578800pt;}
.y77{bottom:481.655067pt;}
.y156{bottom:482.728933pt;}
.ye8{bottom:485.956640pt;}
.yc1{bottom:486.273467pt;}
.y107{bottom:488.362000pt;}
.y124{bottom:489.251067pt;}
.y1a5{bottom:490.947333pt;}
.y3f{bottom:500.181947pt;}
.y184{bottom:501.295867pt;}
.y2a{bottom:502.242133pt;}
.yfb{bottom:502.334533pt;}
.y18f{bottom:502.608000pt;}
.y140{bottom:502.993893pt;}
.yc8{bottom:503.463413pt;}
.y19a{bottom:503.728000pt;}
.y14d{bottom:504.391867pt;}
.y115{bottom:504.510000pt;}
.yc5{bottom:505.290133pt;}
.yc3{bottom:508.100400pt;}
.y17a{bottom:512.531600pt;}
.ye7{bottom:513.322720pt;}
.y161{bottom:515.534800pt;}
.y1a4{bottom:519.747333pt;}
.y25{bottom:520.948800pt;}
.ya2{bottom:523.544800pt;}
.ye4{bottom:523.606533pt;}
.y40{bottom:524.836187pt;}
.y48{bottom:525.223600pt;}
.y13f{bottom:526.040133pt;}
.y8d{bottom:529.251067pt;}
.ydd{bottom:529.606400pt;}
.y78{bottom:530.315067pt;}
.y179{bottom:531.731600pt;}
.y114{bottom:533.310000pt;}
.y174{bottom:535.105467pt;}
.yc2{bottom:537.700400pt;}
.y29{bottom:540.642133pt;}
.ye6{bottom:540.688800pt;}
.y1a3{bottom:548.547333pt;}
.y4d{bottom:549.273440pt;}
.y178{bottom:550.931600pt;}
.y172{bottom:554.109333pt;}
.y8f{bottom:555.399867pt;}
.y7a{bottom:555.400000pt;}
.y24{bottom:559.348800pt;}
.y15f{bottom:562.546933pt;}
.y183{bottom:563.805200pt;}
.y177{bottom:570.131600pt;}
.y51{bottom:570.133733pt;}
.y12b{bottom:570.771867pt;}
.y13e{bottom:571.670667pt;}
.y155{bottom:572.142400pt;}
.y49{bottom:574.531600pt;}
.y160{bottom:574.655200pt;}
.y96{bottom:577.178533pt;}
.y28{bottom:579.042133pt;}
.ye3{bottom:580.292533pt;}
.y123{bottom:584.137733pt;}
.yd3{bottom:585.011600pt;}
.y2e{bottom:585.133867pt;}
.y108{bottom:587.584533pt;}
.y4c{bottom:588.305600pt;}
.y176{bottom:589.331600pt;}
.y59{bottom:590.565333pt;}
.yc4{bottom:593.694400pt;}
.ye5{bottom:595.058933pt;}
.y23{bottom:597.748800pt;}
.yfa{bottom:598.425467pt;}
.ycb{bottom:601.640267pt;}
.y35{bottom:602.432267pt;}
.y1a2{bottom:603.174800pt;}
.y182{bottom:608.933333pt;}
.y13d{bottom:613.264533pt;}
.y67{bottom:614.547467pt;}
.y27{bottom:617.442133pt;}
.y4{bottom:631.051867pt;}
.y3{bottom:647.054267pt;}
.y2{bottom:666.094267pt;}
.yb{bottom:679.628400pt;}
.y1{bottom:694.894267pt;}
.h10{height:28.872812pt;}
.h16{height:32.320312pt;}
.h38{height:33.876875pt;}
.h2{height:35.767812pt;}
.h1f{height:39.646250pt;}
.h1e{height:43.093750pt;}
.h20{height:43.187500pt;}
.h3c{height:46.625000pt;}
.h13{height:50.419687pt;}
.h37{height:50.529375pt;}
.hf{height:53.867188pt;}
.he{height:57.314687pt;}
.h24{height:59.158125pt;}
.h27{height:59.268125pt;}
.h39{height:61.193125pt;}
.h3a{height:61.326250pt;}
.h2c{height:62.011250pt;}
.hd{height:64.640625pt;}
.h3b{height:64.641158pt;}
.h1{height:64.781250pt;}
.h35{height:67.248125pt;}
.h23{height:68.236250pt;}
.h2f{height:71.966562pt;}
.h34{height:72.123125pt;}
.h9{height:73.166875pt;}
.h1c{height:79.033125pt;}
.h19{height:79.846875pt;}
.h8{height:80.176875pt;}
.h26{height:82.056250pt;}
.h28{height:83.670750pt;}
.h7{height:84.439375pt;}
.h2e{height:84.857500pt;}
.h6{height:85.312500pt;}
.hb{height:86.187500pt;}
.hc{height:86.375000pt;}
.h36{height:87.625000pt;}
.h14{height:89.881447pt;}
.h29{height:91.062750pt;}
.ha{height:95.625000pt;}
.h2a{height:100.408437pt;}
.h1d{height:100.626875pt;}
.h5{height:101.125000pt;}
.h4{height:106.640625pt;}
.h3{height:107.734375pt;}
.h25{height:108.178650pt;}
.h12{height:109.574888pt;}
.h18{height:111.403125pt;}
.h1a{height:113.765625pt;}
.h21{height:115.060313pt;}
.h11{height:115.706250pt;}
.h1b{height:117.810625pt;}
.h22{height:127.659375pt;}
.h2d{height:140.054688pt;}
.h2b{height:143.502187pt;}
.h15{height:149.036647pt;}
.h31{height:158.154063pt;}
.h32{height:201.760000pt;}
.h30{height:229.689687pt;}
.h33{height:403.360000pt;}
.h17{height:478.880000pt;}
.h0{height:720.000000pt;}
.w2{width:131.520000pt;}
.w1{width:975.840000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.600000pt;}
.x9e{left:18.600000pt;}
.x11{left:24.707733pt;}
.x8c{left:29.368667pt;}
.x40{left:30.794800pt;}
.x4b{left:33.090667pt;}
.x49{left:35.406667pt;}
.xaf{left:36.320933pt;}
.x4a{left:39.498667pt;}
.x4c{left:41.318800pt;}
.xb3{left:44.770480pt;}
.xa6{left:46.612000pt;}
.xa9{left:48.381867pt;}
.xa0{left:51.100000pt;}
.x92{left:55.406400pt;}
.xc0{left:57.392000pt;}
.x19{left:59.257600pt;}
.xbf{left:60.210800pt;}
.xb8{left:61.230533pt;}
.x81{left:62.419867pt;}
.x63{left:64.602400pt;}
.x3a{left:67.181467pt;}
.xb2{left:69.257333pt;}
.x39{left:70.260400pt;}
.xb7{left:72.858533pt;}
.xce{left:74.599867pt;}
.x27{left:76.583200pt;}
.x65{left:78.683867pt;}
.xa2{left:79.618933pt;}
.x86{left:81.807333pt;}
.xcf{left:84.201467pt;}
.xf{left:85.600000pt;}
.xc9{left:86.600000pt;}
.x38{left:88.931467pt;}
.x2{left:91.674000pt;}
.x84{left:93.028533pt;}
.xcb{left:94.214000pt;}
.x70{left:96.291733pt;}
.xd1{left:101.580400pt;}
.xab{left:104.761867pt;}
.x43{left:109.945733pt;}
.xae{left:114.141600pt;}
.xca{left:116.680000pt;}
.xa8{left:118.018933pt;}
.xcc{left:124.294000pt;}
.x28{left:130.324133pt;}
.x99{left:132.526533pt;}
.xb0{left:134.614133pt;}
.xb1{left:137.420533pt;}
.x98{left:146.623467pt;}
.x4d{left:154.136667pt;}
.x97{left:166.186400pt;}
.x44{left:167.193733pt;}
.x90{left:182.621600pt;}
.x29{left:184.065200pt;}
.x26{left:186.080000pt;}
.x5{left:189.005467pt;}
.x7{left:195.418267pt;}
.xb9{left:197.470800pt;}
.x6{left:199.559867pt;}
.x8{left:204.209147pt;}
.xbe{left:206.838533pt;}
.x7c{left:209.001333pt;}
.x25{left:211.323733pt;}
.x64{left:216.524533pt;}
.x8f{left:219.129067pt;}
.x45{left:220.281733pt;}
.xac{left:227.254267pt;}
.x7d{left:233.494293pt;}
.x79{left:236.138267pt;}
.x2a{left:237.806133pt;}
.x4{left:243.245467pt;}
.x1b{left:250.739733pt;}
.xbb{left:252.435067pt;}
.x9{left:253.641147pt;}
.x46{left:277.529733pt;}
.x78{left:284.490267pt;}
.x2b{left:291.547200pt;}
.xad{left:298.139787pt;}
.x87{left:308.142400pt;}
.x8a{left:312.308267pt;}
.xa1{left:317.440000pt;}
.x89{left:319.146400pt;}
.x77{left:332.842267pt;}
.x47{left:334.777733pt;}
.x7b{left:342.196800pt;}
.x2c{left:345.288133pt;}
.x1c{left:353.269173pt;}
.xbd{left:364.918400pt;}
.xbc{left:369.709147pt;}
.xd4{left:371.614133pt;}
.x76{left:381.194267pt;}
.x48{left:392.025733pt;}
.xba{left:397.657040pt;}
.x2d{left:399.029067pt;}
.x1d{left:407.014293pt;}
.xaa{left:421.729867pt;}
.x75{left:429.546267pt;}
.x9c{left:433.119600pt;}
.xd2{left:451.754667pt;}
.x2e{left:452.770133pt;}
.x41{left:454.207600pt;}
.x9d{left:457.253840pt;}
.x9f{left:468.831467pt;}
.x10{left:476.665867pt;}
.x74{left:477.898267pt;}
.x51{left:496.129200pt;}
.x52{left:500.137200pt;}
.x1a{left:506.689200pt;}
.x50{left:513.409200pt;}
.x1e{left:514.504533pt;}
.x8d{left:516.567867pt;}
.x4f{left:518.377200pt;}
.x4e{left:525.513867pt;}
.x53{left:529.097200pt;}
.x3f{left:534.783067pt;}
.xb6{left:541.496667pt;}
.x8e{left:552.573627pt;}
.x2f{left:560.252267pt;}
.x88{left:566.336933pt;}
.x3d{left:573.749067pt;}
.xa3{left:580.320000pt;}
.x8b{left:582.016933pt;}
.x6e{left:596.722800pt;}
.x30{left:613.993200pt;}
.x73{left:622.954267pt;}
.xa{left:636.429467pt;}
.x5b{left:639.373200pt;}
.x59{left:641.689200pt;}
.x5a{left:645.781200pt;}
.x5c{left:650.449200pt;}
.x31{left:667.734267pt;}
.x72{left:671.306267pt;}
.x42{left:672.579600pt;}
.xc2{left:673.812667pt;}
.x1f{left:675.739893pt;}
.xb{left:682.259867pt;}
.xb4{left:688.162000pt;}
.x91{left:689.823067pt;}
.x7e{left:696.027253pt;}
.x9a{left:698.877867pt;}
.xc5{left:704.948400pt;}
.xc4{left:706.230533pt;}
.x5d{left:709.862000pt;}
.x54{left:713.210933pt;}
.x7f{left:717.425973pt;}
.x71{left:719.658267pt;}
.x32{left:721.475200pt;}
.x9b{left:722.899147pt;}
.x20{left:729.485013pt;}
.x3e{left:734.817333pt;}
.xc1{left:740.253867pt;}
.x66{left:750.079067pt;}
.x55{left:767.434933pt;}
.x33{left:775.216267pt;}
.xd0{left:784.022267pt;}
.x83{left:789.280400pt;}
.xa4{left:791.302800pt;}
.x82{left:795.164000pt;}
.x85{left:801.187200pt;}
.x6b{left:803.862400pt;}
.x6c{left:811.572800pt;}
.x3c{left:817.089467pt;}
.x56{left:821.658933pt;}
.x37{left:823.403467pt;}
.x34{left:828.957200pt;}
.x6a{left:830.280000pt;}
.x3b{left:835.760533pt;}
.x6d{left:837.004480pt;}
.x6f{left:862.701867pt;}
.x12{left:863.977733pt;}
.x14{left:871.764667pt;}
.x13{left:873.342533pt;}
.x95{left:875.000800pt;}
.x96{left:877.389867pt;}
.x15{left:878.318907pt;}
.x35{left:882.698133pt;}
.x16{left:888.631467pt;}
.x21{left:890.720373pt;}
.xb5{left:897.640933pt;}
.x69{left:899.243840pt;}
.x7a{left:900.853333pt;}
.x3{left:910.686133pt;}
.x80{left:915.948400pt;}
.x67{left:919.139200pt;}
.x57{left:925.946933pt;}
.x36{left:936.439200pt;}
.xd5{left:938.929733pt;}
.x22{left:944.465493pt;}
.x68{left:945.759040pt;}
.xc{left:955.901467pt;}
.xc3{left:964.352000pt;}
.xd3{left:971.555307pt;}
.xa5{left:974.560000pt;}
.x58{left:980.170933pt;}
.xd{left:999.949600pt;}
.xe{left:1018.039040pt;}
.x93{left:1039.935200pt;}
.x23{left:1051.955733pt;}
.xa7{left:1054.131867pt;}
.x61{left:1103.926400pt;}
.x24{left:1105.700853pt;}
.xc7{left:1109.933787pt;}
.x94{left:1111.158000pt;}
.x60{left:1113.526400pt;}
.x5f{left:1122.166400pt;}
.x17{left:1124.998133pt;}
.x5e{left:1129.253067pt;}
.x62{left:1132.886400pt;}
.x18{left:1137.797813pt;}
.xc6{left:1143.364667pt;}
.xc8{left:1155.217627pt;}
.xcd{left:1195.658800pt;}
}




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