
    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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_08006aa83c25fb195b55222a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_40bf95fbd0b72fbaf7688971.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_eb5ec22eaf7af138801a73c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.179000;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_c573f061f55259a1530d1dac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_da45c7c55f741c179a4079c5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065581;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_a9785fbf0253a6e3bb2acdf3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.328000;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_c1106f4aed9bc1c66dd60d49.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.144000;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_006868f0263d9c5c0e083a5b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677246;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.399963px;}
.v3{vertical-align:-14.988647px;}
.v4{vertical-align:-12.798000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls92{letter-spacing:-2.499000px;}
.ls20{letter-spacing:-1.860000px;}
.ls21{letter-spacing:-1.800000px;}
.ls28{letter-spacing:-1.740000px;}
.ls24{letter-spacing:-1.680000px;}
.ls27{letter-spacing:-1.620000px;}
.ls1e{letter-spacing:-1.560000px;}
.ls14{letter-spacing:-1.500000px;}
.ls11{letter-spacing:-1.380000px;}
.ls1f{letter-spacing:-1.320000px;}
.ls1d{letter-spacing:-1.260000px;}
.lsf{letter-spacing:-1.200000px;}
.ls13{letter-spacing:-1.140000px;}
.ls12{letter-spacing:-1.080000px;}
.ls22{letter-spacing:-1.020000px;}
.ls18{letter-spacing:-0.960000px;}
.ls10{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.840000px;}
.ls1a{letter-spacing:-0.780000px;}
.lse{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.600000px;}
.ls26{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.480000px;}
.ls91{letter-spacing:-0.459000px;}
.ls23{letter-spacing:-0.420000px;}
.ls84{letter-spacing:-0.408000px;}
.ls15{letter-spacing:-0.360000px;}
.ls6e{letter-spacing:-0.357000px;}
.ls83{letter-spacing:-0.306000px;}
.ls19{letter-spacing:-0.300000px;}
.ls6d{letter-spacing:-0.255000px;}
.ls25{letter-spacing:-0.240000px;}
.ls6f{letter-spacing:-0.204000px;}
.lsa{letter-spacing:-0.180000px;}
.ls6c{letter-spacing:-0.153000px;}
.lsc{letter-spacing:-0.120000px;}
.ls6b{letter-spacing:-0.102000px;}
.lsb{letter-spacing:-0.060000px;}
.ls6a{letter-spacing:-0.051000px;}
.ls9{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.000037px;}
.ls1{letter-spacing:0.000085px;}
.ls8d{letter-spacing:0.025500px;}
.ls5c{letter-spacing:0.030000px;}
.ls67{letter-spacing:0.051000px;}
.ls6{letter-spacing:0.060000px;}
.ls8c{letter-spacing:0.076500px;}
.ls66{letter-spacing:0.102000px;}
.ls1b{letter-spacing:0.120000px;}
.ls8f{letter-spacing:0.127500px;}
.ls5b{letter-spacing:0.131983px;}
.ls44{letter-spacing:0.150000px;}
.ls8a{letter-spacing:0.153000px;}
.ls8{letter-spacing:0.178791px;}
.ls4{letter-spacing:0.180000px;}
.ls60{letter-spacing:0.204000px;}
.ls4b{letter-spacing:0.210000px;}
.ls53{letter-spacing:0.210022px;}
.ls2{letter-spacing:0.240000px;}
.ls56{letter-spacing:0.251354px;}
.ls7{letter-spacing:0.255000px;}
.ls68{letter-spacing:0.264000px;}
.ls48{letter-spacing:0.270000px;}
.ls70{letter-spacing:0.288000px;}
.ls4f{letter-spacing:0.289691px;}
.ls55{letter-spacing:0.299991px;}
.ls3{letter-spacing:0.300000px;}
.ls72{letter-spacing:0.306000px;}
.ls54{letter-spacing:0.313903px;}
.ls74{letter-spacing:0.331500px;}
.ls69{letter-spacing:0.357000px;}
.ls52{letter-spacing:0.358689px;}
.ls45{letter-spacing:0.360000px;}
.ls5a{letter-spacing:0.370239px;}
.ls51{letter-spacing:0.370267px;}
.ls5{letter-spacing:0.390000px;}
.ls64{letter-spacing:0.408000px;}
.ls2b{letter-spacing:0.420000px;}
.ls82{letter-spacing:0.433500px;}
.ls4c{letter-spacing:0.450000px;}
.ls62{letter-spacing:0.459000px;}
.ls3e{letter-spacing:0.480000px;}
.ls50{letter-spacing:0.510000px;}
.ls42{letter-spacing:0.540000px;}
.ls75{letter-spacing:0.561000px;}
.ls59{letter-spacing:0.574219px;}
.ls4a{letter-spacing:0.580170px;}
.ls7a{letter-spacing:0.586500px;}
.ls47{letter-spacing:0.600000px;}
.ls87{letter-spacing:0.612000px;}
.ls58{letter-spacing:0.630000px;}
.ls30{letter-spacing:0.660000px;}
.ls63{letter-spacing:0.663000px;}
.ls81{letter-spacing:0.714000px;}
.ls46{letter-spacing:0.720000px;}
.ls73{letter-spacing:0.739500px;}
.ls4e{letter-spacing:0.756000px;}
.ls61{letter-spacing:0.765000px;}
.ls43{letter-spacing:0.780000px;}
.ls39{letter-spacing:0.797974px;}
.ls3d{letter-spacing:0.810000px;}
.ls79{letter-spacing:0.816000px;}
.ls31{letter-spacing:0.840000px;}
.ls8b{letter-spacing:0.867000px;}
.ls2a{letter-spacing:0.900000px;}
.ls90{letter-spacing:0.918000px;}
.ls3a{letter-spacing:0.960000px;}
.ls77{letter-spacing:0.969000px;}
.ls41{letter-spacing:1.020000px;}
.ls88{letter-spacing:1.071000px;}
.ls29{letter-spacing:1.080000px;}
.ls4d{letter-spacing:1.090752px;}
.ls78{letter-spacing:1.122000px;}
.ls32{letter-spacing:1.140000px;}
.ls71{letter-spacing:1.173000px;}
.ls2f{letter-spacing:1.200000px;}
.ls7c{letter-spacing:1.224000px;}
.ls38{letter-spacing:1.260000px;}
.ls35{letter-spacing:1.317075px;}
.ls36{letter-spacing:1.317261px;}
.ls40{letter-spacing:1.320000px;}
.ls8e{letter-spacing:1.326000px;}
.ls5d{letter-spacing:1.350000px;}
.ls7d{letter-spacing:1.377000px;}
.ls7b{letter-spacing:1.428000px;}
.ls5e{letter-spacing:1.440000px;}
.ls7e{letter-spacing:1.479000px;}
.ls3f{letter-spacing:1.500000px;}
.ls76{letter-spacing:1.530000px;}
.ls33{letter-spacing:1.560000px;}
.ls89{letter-spacing:1.581000px;}
.ls2e{letter-spacing:1.620000px;}
.ls86{letter-spacing:1.683000px;}
.ls2c{letter-spacing:1.740000px;}
.ls3c{letter-spacing:1.770000px;}
.ls65{letter-spacing:1.785000px;}
.ls2d{letter-spacing:1.800000px;}
.ls34{letter-spacing:1.860000px;}
.ls37{letter-spacing:1.980000px;}
.ls7f{letter-spacing:1.989000px;}
.ls80{letter-spacing:2.142000px;}
.ls3b{letter-spacing:2.160000px;}
.ls49{letter-spacing:2.220000px;}
.ls85{letter-spacing:2.244000px;}
.ls5f{letter-spacing:2.400000px;}
.ls0{letter-spacing:3.990000px;}
.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;}
}
.ws27{word-spacing:-60.000000px;}
.ws92{word-spacing:-16.320000px;}
.ws66{word-spacing:-16.140000px;}
.ws63{word-spacing:-15.600000px;}
.ws86{word-spacing:-15.480000px;}
.ws91{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.000000px;}
.ws6e{word-spacing:-14.940000px;}
.wsa9{word-spacing:-14.832000px;}
.ws71{word-spacing:-14.760000px;}
.ws7{word-spacing:-14.544000px;}
.ws8{word-spacing:-14.520000px;}
.ws50{word-spacing:-14.340000px;}
.ws26{word-spacing:-14.280000px;}
.ws25{word-spacing:-13.740000px;}
.ws99{word-spacing:-13.005000px;}
.ws7f{word-spacing:-12.750000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws5{word-spacing:-11.520000px;}
.ws6f{word-spacing:-11.256000px;}
.ws70{word-spacing:-10.710000px;}
.ws94{word-spacing:-10.302000px;}
.wsc4{word-spacing:-10.251000px;}
.ws1{word-spacing:-9.996000px;}
.ws93{word-spacing:-9.741000px;}
.ws0{word-spacing:-9.408000px;}
.ws9{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws78{word-spacing:-7.500000px;}
.ws80{word-spacing:-6.375000px;}
.wsa{word-spacing:-1.890000px;}
.ws54{word-spacing:-1.740000px;}
.ws7b{word-spacing:-1.620000px;}
.ws5e{word-spacing:-1.560000px;}
.wse{word-spacing:-1.500000px;}
.ws52{word-spacing:-1.440000px;}
.ws2d{word-spacing:-1.380000px;}
.wsc8{word-spacing:-1.326000px;}
.ws1e{word-spacing:-1.320000px;}
.ws98{word-spacing:-1.275000px;}
.ws11{word-spacing:-1.260000px;}
.ws87{word-spacing:-1.200000px;}
.wsae{word-spacing:-1.173000px;}
.ws46{word-spacing:-1.140000px;}
.wscd{word-spacing:-1.122000px;}
.wsa7{word-spacing:-1.071000px;}
.wsd{word-spacing:-1.020000px;}
.wsa5{word-spacing:-0.969000px;}
.ws65{word-spacing:-0.960000px;}
.wsc6{word-spacing:-0.918000px;}
.ws56{word-spacing:-0.900000px;}
.ws45{word-spacing:-0.840000px;}
.wsaf{word-spacing:-0.816000px;}
.ws67{word-spacing:-0.780000px;}
.wsa0{word-spacing:-0.765000px;}
.ws14{word-spacing:-0.720000px;}
.wsa8{word-spacing:-0.714000px;}
.ws10{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.612000px;}
.ws34{word-spacing:-0.600000px;}
.wsc{word-spacing:-0.570000px;}
.wsd1{word-spacing:-0.561000px;}
.ws22{word-spacing:-0.540000px;}
.wsd5{word-spacing:-0.510000px;}
.ws6c{word-spacing:-0.480000px;}
.ws47{word-spacing:-0.420000px;}
.wsd0{word-spacing:-0.408000px;}
.ws5d{word-spacing:-0.360000px;}
.wsbb{word-spacing:-0.357000px;}
.ws5b{word-spacing:-0.300000px;}
.wsa2{word-spacing:-0.264000px;}
.wsb2{word-spacing:-0.255000px;}
.ws59{word-spacing:-0.240000px;}
.wsa4{word-spacing:-0.204000px;}
.wsa3{word-spacing:-0.153000px;}
.ws4f{word-spacing:-0.120000px;}
.ws9d{word-spacing:-0.102000px;}
.ws3b{word-spacing:-0.060000px;}
.wsd6{word-spacing:-0.051000px;}
.wsb{word-spacing:0.000000px;}
.wsb9{word-spacing:0.051000px;}
.ws58{word-spacing:0.060000px;}
.ws2a{word-spacing:0.120000px;}
.ws20{word-spacing:0.180000px;}
.ws13{word-spacing:0.240000px;}
.ws97{word-spacing:0.255000px;}
.ws2b{word-spacing:0.300000px;}
.ws82{word-spacing:0.357000px;}
.ws29{word-spacing:0.360000px;}
.wsb0{word-spacing:0.408000px;}
.ws4e{word-spacing:0.420000px;}
.wsab{word-spacing:0.459000px;}
.ws1d{word-spacing:0.480000px;}
.wsad{word-spacing:0.510000px;}
.ws51{word-spacing:0.540000px;}
.wsb5{word-spacing:0.561000px;}
.ws33{word-spacing:0.600000px;}
.wsb3{word-spacing:0.612000px;}
.ws4c{word-spacing:0.660000px;}
.wsa1{word-spacing:0.663000px;}
.wsd9{word-spacing:0.714000px;}
.ws4b{word-spacing:0.720000px;}
.ws31{word-spacing:0.780000px;}
.wsbd{word-spacing:0.816000px;}
.ws42{word-spacing:0.840000px;}
.ws12{word-spacing:0.900000px;}
.wsc7{word-spacing:0.918000px;}
.ws18{word-spacing:0.960000px;}
.wsb7{word-spacing:0.969000px;}
.ws3a{word-spacing:1.020000px;}
.ws19{word-spacing:1.080000px;}
.ws9b{word-spacing:1.122000px;}
.ws1b{word-spacing:1.140000px;}
.wsa6{word-spacing:1.173000px;}
.ws16{word-spacing:1.200000px;}
.ws40{word-spacing:1.260000px;}
.ws9c{word-spacing:1.275000px;}
.ws6b{word-spacing:1.320000px;}
.wsd4{word-spacing:1.326000px;}
.ws2e{word-spacing:1.380000px;}
.ws9e{word-spacing:1.428000px;}
.ws6d{word-spacing:1.440000px;}
.wsb1{word-spacing:1.479000px;}
.wsf{word-spacing:1.500000px;}
.ws36{word-spacing:1.560000px;}
.wsba{word-spacing:1.581000px;}
.ws5c{word-spacing:1.620000px;}
.wscc{word-spacing:1.632000px;}
.ws3f{word-spacing:1.680000px;}
.wsc2{word-spacing:1.734000px;}
.ws4a{word-spacing:1.740000px;}
.wsac{word-spacing:1.785000px;}
.ws38{word-spacing:1.800000px;}
.ws37{word-spacing:1.860000px;}
.ws9a{word-spacing:1.887000px;}
.ws7e{word-spacing:1.920000px;}
.wsb4{word-spacing:1.938000px;}
.ws95{word-spacing:1.980000px;}
.wsbc{word-spacing:1.989000px;}
.ws32{word-spacing:2.040000px;}
.wsc0{word-spacing:2.091000px;}
.ws1c{word-spacing:2.100000px;}
.ws53{word-spacing:2.160000px;}
.ws21{word-spacing:2.220000px;}
.wsb8{word-spacing:2.244000px;}
.ws2c{word-spacing:2.280000px;}
.wscf{word-spacing:2.295000px;}
.ws89{word-spacing:2.340000px;}
.ws64{word-spacing:2.400000px;}
.ws5f{word-spacing:2.448000px;}
.ws68{word-spacing:2.460000px;}
.ws7d{word-spacing:2.520000px;}
.ws43{word-spacing:2.580000px;}
.ws60{word-spacing:2.601000px;}
.ws55{word-spacing:2.640000px;}
.ws1f{word-spacing:2.700000px;}
.wsd7{word-spacing:2.703000px;}
.ws69{word-spacing:2.820000px;}
.ws61{word-spacing:2.856000px;}
.ws35{word-spacing:2.880000px;}
.ws17{word-spacing:2.940000px;}
.ws3e{word-spacing:3.000000px;}
.ws44{word-spacing:3.060000px;}
.ws1a{word-spacing:3.120000px;}
.ws4d{word-spacing:3.180000px;}
.ws3c{word-spacing:3.240000px;}
.wsc1{word-spacing:3.264000px;}
.ws49{word-spacing:3.300000px;}
.ws81{word-spacing:3.315000px;}
.ws3d{word-spacing:3.360000px;}
.wsce{word-spacing:3.366000px;}
.wsc9{word-spacing:3.468000px;}
.ws62{word-spacing:3.570000px;}
.ws57{word-spacing:3.600000px;}
.ws41{word-spacing:3.720000px;}
.ws84{word-spacing:3.825000px;}
.wsb6{word-spacing:3.876000px;}
.ws88{word-spacing:3.900000px;}
.wsd8{word-spacing:3.978000px;}
.wsaa{word-spacing:4.029000px;}
.ws7a{word-spacing:4.140000px;}
.ws15{word-spacing:4.200000px;}
.ws8f{word-spacing:4.284000px;}
.ws5a{word-spacing:4.440000px;}
.ws39{word-spacing:4.560000px;}
.wsbe{word-spacing:4.590000px;}
.wsd2{word-spacing:4.641000px;}
.ws48{word-spacing:4.740000px;}
.ws85{word-spacing:4.794000px;}
.ws90{word-spacing:4.845000px;}
.wsc3{word-spacing:5.049000px;}
.wsd3{word-spacing:5.100000px;}
.wsbf{word-spacing:5.253000px;}
.ws96{word-spacing:5.400000px;}
.ws79{word-spacing:5.460000px;}
.wscb{word-spacing:5.508000px;}
.ws30{word-spacing:5.700000px;}
.ws8a{word-spacing:5.820000px;}
.ws83{word-spacing:5.865000px;}
.ws7c{word-spacing:5.880000px;}
.ws2f{word-spacing:5.940000px;}
.wsca{word-spacing:6.069000px;}
.ws8e{word-spacing:6.273000px;}
.wsc5{word-spacing:6.630000px;}
.ws8d{word-spacing:6.834000px;}
.ws9f{word-spacing:7.089000px;}
.ws6a{word-spacing:8.820000px;}
.ws8c{word-spacing:14.331000px;}
.ws8b{word-spacing:16.014000px;}
.ws77{word-spacing:33.150000px;}
.ws76{word-spacing:71.400000px;}
.ws24{word-spacing:72.267000px;}
.ws74{word-spacing:133.722000px;}
.ws73{word-spacing:244.494000px;}
.ws75{word-spacing:277.848000px;}
.ws72{word-spacing:1889.040000px;}
.ws28{word-spacing:2751.959953px;}
._c{margin-left:-19.630811px;}
._2b{margin-left:-18.405654px;}
._6{margin-left:-16.575000px;}
._12{margin-left:-13.380000px;}
._20{margin-left:-12.342000px;}
._21{margin-left:-11.118000px;}
._d{margin-left:-10.008000px;}
._9{margin-left:-8.734800px;}
._a{margin-left:-7.114831px;}
._b{margin-left:-6.000000px;}
._5{margin-left:-4.872000px;}
._1{margin-left:-3.198000px;}
._0{margin-left:-1.632000px;}
._2{width:1.354800px;}
._4{width:2.394000px;}
._10{width:3.834000px;}
._11{width:6.504000px;}
._2a{width:8.850000px;}
._f{width:10.584000px;}
._2c{width:11.701201px;}
._13{width:12.750000px;}
._2d{width:14.280000px;}
._e{width:15.606000px;}
._7{width:18.360000px;}
._3{width:39.304791px;}
._25{width:44.931000px;}
._23{width:46.512000px;}
._8{width:54.621000px;}
._29{width:84.762000px;}
._28{width:87.210000px;}
._24{width:109.395000px;}
._22{width:140.352000px;}
._27{width:161.619000px;}
._1f{width:226.884000px;}
._19{width:267.225000px;}
._15{width:389.778000px;}
._18{width:423.744000px;}
._14{width:546.297000px;}
._26{width:710.684995px;}
._1c{width:789.975000px;}
._1a{width:822.309000px;}
._1e{width:884.034000px;}
._17{width:946.494000px;}
._1d{width:1048.560000px;}
._1b{width:1080.894000px;}
._16{width:1203.447000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y135{bottom:112.672806px;}
.y3a{bottom:112.938300px;}
.y74{bottom:113.415298px;}
.y70{bottom:113.415344px;}
.ya7{bottom:114.735306px;}
.yc6{bottom:115.323143px;}
.y21d{bottom:116.989804px;}
.y2e{bottom:122.461349px;}
.y10a{bottom:122.725960px;}
.y1db{bottom:124.155325px;}
.y134{bottom:131.422806px;}
.y21c{bottom:131.983804px;}
.y73{bottom:132.165298px;}
.y6f{bottom:132.165344px;}
.y39{bottom:133.032303px;}
.y171{bottom:133.485260px;}
.ya6{bottom:133.485306px;}
.yc5{bottom:134.073143px;}
.y1da{bottom:139.149325px;}
.y2d{bottom:141.211349px;}
.y109{bottom:141.519460px;}
.y21b{bottom:146.977804px;}
.y133{bottom:150.172806px;}
.y38{bottom:150.491553px;}
.y6e{bottom:150.915344px;}
.y170{bottom:152.235260px;}
.ya5{bottom:152.235306px;}
.y19b{bottom:152.582253px;}
.yc4{bottom:152.823143px;}
.y1d9{bottom:154.143325px;}
.y2c{bottom:159.961349px;}
.y108{bottom:160.236460px;}
.y21a{bottom:161.971804px;}
.y37{bottom:165.485553px;}
.y19a{bottom:167.576253px;}
.y132{bottom:168.922806px;}
.y1d8{bottom:169.137325px;}
.y72{bottom:169.665298px;}
.y6d{bottom:169.665344px;}
.y16f{bottom:170.985260px;}
.ya4{bottom:170.985306px;}
.yc3{bottom:171.573143px;}
.y219{bottom:176.965804px;}
.y2b{bottom:178.711349px;}
.y107{bottom:178.953460px;}
.y199{bottom:182.570253px;}
.y1d7{bottom:184.131325px;}
.y36{bottom:185.579556px;}
.y131{bottom:187.672806px;}
.y6c{bottom:188.415344px;}
.y16e{bottom:189.735260px;}
.ya3{bottom:189.735306px;}
.yc2{bottom:190.323143px;}
.y218{bottom:191.959804px;}
.y2a{bottom:197.461349px;}
.y198{bottom:197.564253px;}
.y106{bottom:197.670460px;}
.y1d6{bottom:199.125325px;}
.y35{bottom:203.032794px;}
.y130{bottom:206.422806px;}
.y217{bottom:206.953804px;}
.y71{bottom:207.165298px;}
.y6b{bottom:207.165344px;}
.y16d{bottom:208.485260px;}
.ya2{bottom:208.485306px;}
.yc1{bottom:209.073143px;}
.y197{bottom:212.558253px;}
.y1d5{bottom:214.119325px;}
.y29{bottom:216.211349px;}
.y105{bottom:216.387460px;}
.y216{bottom:221.947804px;}
.y34{bottom:223.126808px;}
.y12f{bottom:225.172806px;}
.y6a{bottom:225.915344px;}
.y16c{bottom:227.235260px;}
.ya1{bottom:227.235306px;}
.y196{bottom:227.552253px;}
.yc0{bottom:227.823143px;}
.y1d4{bottom:229.113325px;}
.y28{bottom:234.961349px;}
.y104{bottom:235.104460px;}
.y215{bottom:236.941804px;}
.y33{bottom:240.580059px;}
.y195{bottom:242.546253px;}
.y12e{bottom:243.922806px;}
.y1d3{bottom:244.107325px;}
.y69{bottom:244.665344px;}
.y16b{bottom:245.985260px;}
.ya0{bottom:245.985306px;}
.y214{bottom:251.935804px;}
.y27{bottom:253.711349px;}
.y103{bottom:253.821460px;}
.y194{bottom:257.540253px;}
.y1d2{bottom:259.101325px;}
.y32{bottom:260.674049px;}
.y12d{bottom:262.672806px;}
.y68{bottom:263.415344px;}
.y16a{bottom:264.735260px;}
.yf9{bottom:264.735306px;}
.y162{bottom:264.742806px;}
.ybf{bottom:265.323143px;}
.y213{bottom:266.929804px;}
.y26{bottom:272.461349px;}
.y193{bottom:272.534253px;}
.y102{bottom:272.538460px;}
.y1d1{bottom:274.095325px;}
.y12c{bottom:281.422806px;}
.y212{bottom:281.923804px;}
.y67{bottom:282.165344px;}
.ycd{bottom:283.485260px;}
.y9f{bottom:283.485306px;}
.y161{bottom:283.492806px;}
.y31{bottom:285.675150px;}
.y192{bottom:287.528253px;}
.y1d0{bottom:289.089325px;}
.y25{bottom:291.211349px;}
.y101{bottom:291.255460px;}
.y253{bottom:296.542823px;}
.y289{bottom:296.861573px;}
.y211{bottom:296.917804px;}
.y12b{bottom:300.172806px;}
.y30{bottom:300.669150px;}
.y66{bottom:300.915344px;}
.ycc{bottom:302.235260px;}
.yf8{bottom:302.235306px;}
.y160{bottom:302.242806px;}
.y191{bottom:302.522253px;}
.ybe{bottom:302.823166px;}
.y1cf{bottom:304.083325px;}
.y24{bottom:309.961349px;}
.y100{bottom:309.972460px;}
.y252{bottom:311.536823px;}
.y288{bottom:311.855573px;}
.y210{bottom:311.911804px;}
.y190{bottom:317.516253px;}
.yfd{bottom:317.608798px;}
.y12a{bottom:318.922806px;}
.y1ce{bottom:319.077325px;}
.y65{bottom:319.665344px;}
.y9e{bottom:320.985260px;}
.yf7{bottom:320.985306px;}
.y15f{bottom:320.992806px;}
.ybd{bottom:321.573166px;}
.y251{bottom:326.530823px;}
.y287{bottom:326.849573px;}
.y20f{bottom:326.905804px;}
.yff{bottom:328.689460px;}
.y23{bottom:328.711349px;}
.y2f{bottom:331.485900px;}
.yfc{bottom:332.614798px;}
.y1cd{bottom:334.071325px;}
.y129{bottom:337.672806px;}
.y64{bottom:338.415344px;}
.y9d{bottom:339.735260px;}
.yf6{bottom:339.735306px;}
.y15e{bottom:339.742806px;}
.ybc{bottom:340.323166px;}
.y250{bottom:341.524823px;}
.y286{bottom:341.843573px;}
.y20e{bottom:341.899804px;}
.y22{bottom:347.461349px;}
.yfb{bottom:347.608798px;}
.y1cc{bottom:349.065325px;}
.y128{bottom:356.422806px;}
.y24f{bottom:356.518823px;}
.yfe{bottom:356.777710px;}
.y285{bottom:356.837573px;}
.y20d{bottom:356.893804px;}
.y63{bottom:357.165344px;}
.y9c{bottom:358.485260px;}
.yf5{bottom:358.485306px;}
.y15d{bottom:358.492806px;}
.y18f{bottom:358.711503px;}
.ybb{bottom:359.073166px;}
.yfa{bottom:362.602798px;}
.y1cb{bottom:364.059325px;}
.y21{bottom:366.211349px;}
.y24e{bottom:371.512823px;}
.y284{bottom:371.831573px;}
.y20c{bottom:371.887804px;}
.y18e{bottom:373.705503px;}
.y127{bottom:375.172806px;}
.y62{bottom:375.915344px;}
.y9b{bottom:377.235260px;}
.yf4{bottom:377.235306px;}
.y15c{bottom:377.242806px;}
.yba{bottom:377.823166px;}
.y1ca{bottom:379.053325px;}
.y1f{bottom:384.961349px;}
.y24d{bottom:386.506823px;}
.y283{bottom:386.825573px;}
.y20b{bottom:386.881804px;}
.y126{bottom:393.922806px;}
.y1c9{bottom:394.047325px;}
.y61{bottom:394.665344px;}
.y9a{bottom:395.985260px;}
.yf3{bottom:395.985306px;}
.y15b{bottom:395.992806px;}
.yb9{bottom:396.573166px;}
.y111{bottom:399.042128px;}
.y24c{bottom:401.500823px;}
.y282{bottom:401.819573px;}
.y20a{bottom:401.875804px;}
.y18d{bottom:403.668003px;}
.y1e{bottom:403.711349px;}
.y1c8{bottom:409.041325px;}
.y125{bottom:412.672806px;}
.y60{bottom:413.415344px;}
.y110{bottom:414.036128px;}
.y99{bottom:414.735260px;}
.yf2{bottom:414.735306px;}
.y15a{bottom:414.742806px;}
.yb8{bottom:415.323166px;}
.y24b{bottom:416.494823px;}
.y281{bottom:416.813573px;}
.y209{bottom:416.869804px;}
.y18c{bottom:418.662003px;}
.y1d{bottom:422.461349px;}
.y1c7{bottom:424.035325px;}
.y10f{bottom:429.030128px;}
.y124{bottom:431.422806px;}
.y24a{bottom:431.488823px;}
.y280{bottom:431.807573px;}
.y208{bottom:431.863804px;}
.y5f{bottom:432.165344px;}
.y98{bottom:433.485260px;}
.yf1{bottom:433.485306px;}
.y159{bottom:433.492806px;}
.yb7{bottom:434.073166px;}
.y1c6{bottom:439.029325px;}
.y1c{bottom:441.211349px;}
.y10e{bottom:444.024128px;}
.y249{bottom:446.482823px;}
.y27f{bottom:446.801573px;}
.y207{bottom:446.857804px;}
.y123{bottom:450.172806px;}
.y5e{bottom:450.915344px;}
.y97{bottom:452.235260px;}
.yf0{bottom:452.235306px;}
.y158{bottom:452.242806px;}
.y18b{bottom:452.412003px;}
.yb6{bottom:452.823166px;}
.y1c5{bottom:454.023325px;}
.y10d{bottom:459.018128px;}
.y1b{bottom:459.961349px;}
.y248{bottom:461.476823px;}
.y27e{bottom:461.795573px;}
.y206{bottom:461.851804px;}
.y122{bottom:468.922806px;}
.y1c4{bottom:469.017325px;}
.y5d{bottom:469.665344px;}
.y96{bottom:470.985260px;}
.yef{bottom:470.985306px;}
.y157{bottom:470.992806px;}
.yb5{bottom:471.573166px;}
.y247{bottom:476.470823px;}
.y27d{bottom:476.789573px;}
.y205{bottom:476.845804px;}
.y20{bottom:478.711349px;}
.y1c3{bottom:484.011325px;}
.y116{bottom:486.950104px;}
.y121{bottom:487.672806px;}
.y5c{bottom:488.415344px;}
.y95{bottom:489.735260px;}
.yee{bottom:489.735306px;}
.y156{bottom:489.742806px;}
.y18a{bottom:490.052733px;}
.yb4{bottom:490.323166px;}
.y246{bottom:491.464823px;}
.y27c{bottom:491.783573px;}
.y204{bottom:491.839804px;}
.y1a{bottom:497.461349px;}
.y1c2{bottom:499.005325px;}
.y189{bottom:505.046733px;}
.y115{bottom:505.743604px;}
.y120{bottom:506.422806px;}
.y245{bottom:506.458823px;}
.y27b{bottom:506.777573px;}
.y203{bottom:506.833804px;}
.y5b{bottom:507.165344px;}
.y94{bottom:508.485260px;}
.yed{bottom:508.485306px;}
.y155{bottom:508.492806px;}
.yb3{bottom:509.073166px;}
.y1c1{bottom:513.999325px;}
.y188{bottom:520.040733px;}
.y244{bottom:521.452823px;}
.y27a{bottom:521.771573px;}
.y202{bottom:521.827804px;}
.y114{bottom:524.460604px;}
.y11f{bottom:525.172806px;}
.y5a{bottom:525.915344px;}
.y93{bottom:527.235260px;}
.yec{bottom:527.235306px;}
.y154{bottom:527.242806px;}
.yb2{bottom:527.823166px;}
.y1c0{bottom:528.993325px;}
.y243{bottom:536.446823px;}
.y279{bottom:536.765573px;}
.y201{bottom:536.821804px;}
.y113{bottom:543.177604px;}
.y11e{bottom:543.922806px;}
.y1bf{bottom:543.987325px;}
.y59{bottom:544.665344px;}
.y92{bottom:545.985260px;}
.yeb{bottom:545.985306px;}
.y153{bottom:545.992806px;}
.yb1{bottom:546.573166px;}
.y242{bottom:551.440823px;}
.y278{bottom:551.759573px;}
.y200{bottom:551.815804px;}
.y19{bottom:553.711395px;}
.y187{bottom:553.751733px;}
.y1be{bottom:558.981325px;}
.y11d{bottom:562.672806px;}
.y58{bottom:563.415344px;}
.y91{bottom:564.735260px;}
.yea{bottom:564.735306px;}
.y152{bottom:564.742806px;}
.yb0{bottom:565.323166px;}
.y241{bottom:566.434823px;}
.y277{bottom:566.753573px;}
.y1ff{bottom:566.809804px;}
.y186{bottom:568.745733px;}
.y112{bottom:571.265854px;}
.y18{bottom:572.461395px;}
.y1bd{bottom:573.975325px;}
.y11c{bottom:581.422806px;}
.y240{bottom:581.428823px;}
.y276{bottom:581.747573px;}
.y1fe{bottom:581.803804px;}
.y57{bottom:582.165344px;}
.y90{bottom:583.485260px;}
.ye9{bottom:583.485306px;}
.y151{bottom:583.492806px;}
.y185{bottom:583.739733px;}
.yaf{bottom:584.073166px;}
.y1bc{bottom:588.969325px;}
.y23f{bottom:596.422823px;}
.y10c{bottom:596.707232px;}
.y275{bottom:596.741573px;}
.y1fd{bottom:596.797804px;}
.y184{bottom:598.733733px;}
.y11b{bottom:600.172806px;}
.y56{bottom:600.915344px;}
.y8f{bottom:602.235260px;}
.ye8{bottom:602.235306px;}
.y150{bottom:602.242806px;}
.yae{bottom:602.820328px;}
.y1bb{bottom:603.963325px;}
.y17{bottom:609.961395px;}
.y23e{bottom:611.416823px;}
.y10b{bottom:611.701232px;}
.y274{bottom:611.735573px;}
.y1fc{bottom:611.791804px;}
.y183{bottom:613.727733px;}
.y11a{bottom:618.922806px;}
.y1ba{bottom:618.957325px;}
.y55{bottom:619.665344px;}
.y8e{bottom:620.985260px;}
.ye7{bottom:620.985306px;}
.y14f{bottom:620.992806px;}
.yad{bottom:621.570328px;}
.y23d{bottom:626.410823px;}
.y273{bottom:626.729573px;}
.y1fb{bottom:626.785804px;}
.y16{bottom:628.711395px;}
.y182{bottom:628.721733px;}
.y1b9{bottom:633.951325px;}
.y119{bottom:637.672806px;}
.y54{bottom:638.415344px;}
.y8d{bottom:639.735260px;}
.ye6{bottom:639.735306px;}
.y14e{bottom:639.742806px;}
.yac{bottom:640.320328px;}
.y23c{bottom:641.404823px;}
.y272{bottom:641.723573px;}
.y1fa{bottom:641.779804px;}
.y181{bottom:643.715733px;}
.y15{bottom:647.461395px;}
.y1b8{bottom:648.945325px;}
.y23b{bottom:656.398823px;}
.y118{bottom:656.422806px;}
.y271{bottom:656.717573px;}
.y1f9{bottom:656.773804px;}
.y53{bottom:657.165344px;}
.y8c{bottom:658.485260px;}
.ye5{bottom:658.485306px;}
.y14d{bottom:658.492806px;}
.y180{bottom:658.709733px;}
.yab{bottom:659.070328px;}
.y1b7{bottom:663.939325px;}
.y14{bottom:666.211395px;}
.y23a{bottom:671.392823px;}
.y270{bottom:671.711573px;}
.y1f8{bottom:671.767804px;}
.y17f{bottom:673.703733px;}
.y52{bottom:675.915344px;}
.y8b{bottom:677.235260px;}
.ye4{bottom:677.235306px;}
.y14c{bottom:677.242806px;}
.yaa{bottom:677.820328px;}
.y1b6{bottom:678.933325px;}
.y13{bottom:684.961395px;}
.y239{bottom:686.386823px;}
.y26f{bottom:686.705573px;}
.y1f7{bottom:686.761804px;}
.y17e{bottom:688.697733px;}
.y117{bottom:693.922806px;}
.y1b5{bottom:693.927325px;}
.y51{bottom:694.665344px;}
.y8a{bottom:695.985260px;}
.ye3{bottom:695.985306px;}
.y14b{bottom:695.992806px;}
.ya9{bottom:696.570328px;}
.y238{bottom:701.380823px;}
.y26e{bottom:701.699573px;}
.y1f6{bottom:701.755804px;}
.y12{bottom:703.711395px;}
.y1b4{bottom:708.921325px;}
.y50{bottom:713.415344px;}
.y89{bottom:714.735260px;}
.ye2{bottom:714.735306px;}
.y14a{bottom:714.742806px;}
.ya8{bottom:715.320328px;}
.y237{bottom:716.374823px;}
.y26d{bottom:716.693573px;}
.y1f5{bottom:716.749804px;}
.y17d{bottom:722.408733px;}
.y11{bottom:722.461395px;}
.y1b3{bottom:723.915325px;}
.y236{bottom:731.368823px;}
.y26c{bottom:731.687573px;}
.y1f4{bottom:731.743804px;}
.y4f{bottom:732.165344px;}
.y88{bottom:733.485260px;}
.ye1{bottom:733.485306px;}
.y149{bottom:733.492806px;}
.y17c{bottom:737.402733px;}
.y1b2{bottom:738.909325px;}
.y10{bottom:741.211395px;}
.y235{bottom:746.362823px;}
.y26b{bottom:746.681573px;}
.y1f3{bottom:746.737804px;}
.y169{bottom:750.856937px;}
.y4e{bottom:750.915344px;}
.y87{bottom:752.235260px;}
.ye0{bottom:752.235306px;}
.y148{bottom:752.242806px;}
.y17b{bottom:752.396733px;}
.y1b1{bottom:753.903325px;}
.yf{bottom:759.961395px;}
.y234{bottom:761.356823px;}
.y26a{bottom:761.675573px;}
.y1f2{bottom:761.731804px;}
.y168{bottom:765.880983px;}
.y17a{bottom:767.390733px;}
.y1b0{bottom:768.897325px;}
.y4d{bottom:769.665344px;}
.y86{bottom:770.985260px;}
.ydf{bottom:770.985306px;}
.y147{bottom:770.992806px;}
.y233{bottom:776.350823px;}
.y269{bottom:776.669573px;}
.y1f1{bottom:776.725804px;}
.ye{bottom:778.711395px;}
.y167{bottom:780.874983px;}
.y179{bottom:782.384733px;}
.y1af{bottom:783.891325px;}
.ycb{bottom:784.834913px;}
.y4c{bottom:788.415344px;}
.y85{bottom:789.735260px;}
.yde{bottom:789.735306px;}
.y146{bottom:789.742806px;}
.y232{bottom:791.344823px;}
.y268{bottom:791.663573px;}
.y1f0{bottom:791.719804px;}
.y166{bottom:795.868983px;}
.yd{bottom:797.461395px;}
.y1ae{bottom:798.885325px;}
.yca{bottom:799.828913px;}
.y231{bottom:806.338823px;}
.y267{bottom:806.657573px;}
.y1ef{bottom:806.713804px;}
.y4b{bottom:807.165344px;}
.y84{bottom:808.485260px;}
.ydd{bottom:808.485306px;}
.y145{bottom:808.492806px;}
.y165{bottom:810.862983px;}
.y1ad{bottom:813.879325px;}
.yc9{bottom:814.822913px;}
.y178{bottom:816.095733px;}
.yc{bottom:816.211395px;}
.y230{bottom:821.332823px;}
.y266{bottom:821.651573px;}
.y1ee{bottom:821.707804px;}
.y164{bottom:825.856983px;}
.y4a{bottom:825.915344px;}
.y83{bottom:827.235260px;}
.ydc{bottom:827.235306px;}
.y144{bottom:827.242806px;}
.y1ac{bottom:828.873325px;}
.yc8{bottom:829.816913px;}
.y177{bottom:831.089733px;}
.yb{bottom:834.961395px;}
.y22f{bottom:836.326823px;}
.y265{bottom:836.645573px;}
.y1ed{bottom:836.701804px;}
.y163{bottom:840.850983px;}
.y1ab{bottom:843.867325px;}
.y49{bottom:844.665344px;}
.yc7{bottom:844.810913px;}
.y82{bottom:845.985260px;}
.ydb{bottom:845.985306px;}
.y143{bottom:845.992806px;}
.y176{bottom:846.083733px;}
.y22e{bottom:851.320823px;}
.y264{bottom:851.639573px;}
.y1ec{bottom:851.695804px;}
.y1aa{bottom:858.861325px;}
.y175{bottom:861.077733px;}
.y48{bottom:863.415344px;}
.y81{bottom:864.735260px;}
.yda{bottom:864.735306px;}
.y142{bottom:864.742806px;}
.y22d{bottom:866.314823px;}
.y263{bottom:866.633573px;}
.y1eb{bottom:866.689804px;}
.y1a9{bottom:873.855325px;}
.y174{bottom:876.071733px;}
.ya{bottom:879.144153px;}
.y22c{bottom:881.308823px;}
.y262{bottom:881.627573px;}
.y1ea{bottom:881.683804px;}
.y47{bottom:882.165344px;}
.y80{bottom:883.485260px;}
.yd9{bottom:883.485306px;}
.y141{bottom:883.492806px;}
.y1a8{bottom:888.849325px;}
.y9{bottom:894.138153px;}
.y22b{bottom:896.302823px;}
.y261{bottom:896.621573px;}
.y1e9{bottom:896.677804px;}
.y46{bottom:900.915344px;}
.y7f{bottom:902.235260px;}
.yd8{bottom:902.235306px;}
.y140{bottom:902.242806px;}
.y1a7{bottom:903.843325px;}
.y173{bottom:909.782733px;}
.y22a{bottom:911.296823px;}
.y260{bottom:911.615573px;}
.y1e8{bottom:911.671804px;}
.y1a6{bottom:918.837325px;}
.y45{bottom:919.665344px;}
.y7e{bottom:920.985260px;}
.yd7{bottom:920.985306px;}
.y13f{bottom:920.992806px;}
.y172{bottom:924.776733px;}
.y229{bottom:926.290823px;}
.y25f{bottom:926.609573px;}
.y1e7{bottom:926.665804px;}
.y1a5{bottom:933.831325px;}
.y8{bottom:936.738190px;}
.y44{bottom:938.415344px;}
.y7d{bottom:939.735260px;}
.yd6{bottom:939.735306px;}
.y13e{bottom:939.742806px;}
.y228{bottom:941.284823px;}
.y25e{bottom:941.603573px;}
.y1e6{bottom:941.659804px;}
.y1a4{bottom:948.825325px;}
.y227{bottom:956.278823px;}
.y25d{bottom:956.597573px;}
.y1e5{bottom:956.653804px;}
.y43{bottom:957.165344px;}
.y7c{bottom:958.485260px;}
.yd5{bottom:958.485306px;}
.y13d{bottom:958.492806px;}
.y1a3{bottom:963.819325px;}
.y226{bottom:971.272823px;}
.y25c{bottom:971.591573px;}
.y1e4{bottom:971.647804px;}
.y42{bottom:975.915344px;}
.y7b{bottom:977.235260px;}
.yd4{bottom:977.235306px;}
.y13c{bottom:977.242806px;}
.y1a2{bottom:978.813325px;}
.y7{bottom:981.424622px;}
.y225{bottom:986.266823px;}
.y25b{bottom:986.585573px;}
.y1e3{bottom:986.641804px;}
.y1a1{bottom:993.807325px;}
.y41{bottom:994.665344px;}
.y7a{bottom:995.985260px;}
.yd3{bottom:995.985306px;}
.y13b{bottom:995.992806px;}
.y224{bottom:1001.260823px;}
.y25a{bottom:1001.579573px;}
.y1e2{bottom:1001.635804px;}
.y6{bottom:1008.424622px;}
.y1a0{bottom:1008.801325px;}
.y40{bottom:1013.415344px;}
.y79{bottom:1014.735260px;}
.yd2{bottom:1014.735306px;}
.y13a{bottom:1014.742806px;}
.y223{bottom:1016.254823px;}
.y259{bottom:1016.573573px;}
.y1e1{bottom:1016.629804px;}
.y19f{bottom:1023.795325px;}
.y222{bottom:1031.248823px;}
.y258{bottom:1031.567573px;}
.y1e0{bottom:1031.623804px;}
.y3f{bottom:1032.165344px;}
.y78{bottom:1033.485260px;}
.yd1{bottom:1033.485306px;}
.y139{bottom:1033.492806px;}
.y19e{bottom:1038.789325px;}
.y221{bottom:1046.242823px;}
.y257{bottom:1046.561573px;}
.y1df{bottom:1046.617804px;}
.y3e{bottom:1050.915344px;}
.y77{bottom:1052.235260px;}
.yd0{bottom:1052.235306px;}
.y138{bottom:1052.242806px;}
.y19d{bottom:1053.783325px;}
.y220{bottom:1061.236823px;}
.y256{bottom:1061.555573px;}
.y1de{bottom:1061.611804px;}
.y3d{bottom:1069.665344px;}
.y76{bottom:1070.985260px;}
.ycf{bottom:1070.985306px;}
.y137{bottom:1070.992806px;}
.y5{bottom:1076.132080px;}
.y21f{bottom:1076.230823px;}
.y255{bottom:1076.549573px;}
.y1dd{bottom:1076.605804px;}
.y19c{bottom:1087.533325px;}
.y3c{bottom:1088.415344px;}
.y75{bottom:1089.735260px;}
.yce{bottom:1089.735306px;}
.y136{bottom:1089.742806px;}
.y21e{bottom:1091.224823px;}
.y254{bottom:1091.543573px;}
.y1dc{bottom:1091.599804px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y3b{bottom:1127.482361px;}
.hc{height:34.307699px;}
.h2{height:42.048000px;}
.h4{height:44.676000px;}
.hb{height:49.011000px;}
.h12{height:49.207584px;}
.h13{height:52.173000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h9{height:57.660000px;}
.hf{height:57.671353px;}
.he{height:59.004000px;}
.h8{height:59.340000px;}
.hd{height:61.380000px;}
.h11{height:61.380183px;}
.h10{height:64.361817px;}
.h7{height:64.866000px;}
.ha{height:71.208000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x7{left:78.746400px;}
.x4{left:85.181849px;}
.x8{left:93.545402px;}
.x6{left:97.796100px;}
.xb{left:102.048152px;}
.xa{left:267.873894px;}
.x5{left:459.215389px;}
.x9{left:476.225362px;}
.xc{left:484.726652px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v3{vertical-align:-13.323242pt;}
.v4{vertical-align:-11.376000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls92{letter-spacing:-2.221333pt;}
.ls20{letter-spacing:-1.653333pt;}
.ls21{letter-spacing:-1.600000pt;}
.ls28{letter-spacing:-1.546667pt;}
.ls24{letter-spacing:-1.493333pt;}
.ls27{letter-spacing:-1.440000pt;}
.ls1e{letter-spacing:-1.386667pt;}
.ls14{letter-spacing:-1.333333pt;}
.ls11{letter-spacing:-1.226667pt;}
.ls1f{letter-spacing:-1.173333pt;}
.ls1d{letter-spacing:-1.120000pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls13{letter-spacing:-1.013333pt;}
.ls12{letter-spacing:-0.960000pt;}
.ls22{letter-spacing:-0.906667pt;}
.ls18{letter-spacing:-0.853333pt;}
.ls10{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.746667pt;}
.ls1a{letter-spacing:-0.693333pt;}
.lse{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.533333pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls91{letter-spacing:-0.408000pt;}
.ls23{letter-spacing:-0.373333pt;}
.ls84{letter-spacing:-0.362667pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls6e{letter-spacing:-0.317333pt;}
.ls83{letter-spacing:-0.272000pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls6d{letter-spacing:-0.226667pt;}
.ls25{letter-spacing:-0.213333pt;}
.ls6f{letter-spacing:-0.181333pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls6c{letter-spacing:-0.136000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls6b{letter-spacing:-0.090667pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls6a{letter-spacing:-0.045333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.000033pt;}
.ls1{letter-spacing:0.000076pt;}
.ls8d{letter-spacing:0.022667pt;}
.ls5c{letter-spacing:0.026667pt;}
.ls67{letter-spacing:0.045333pt;}
.ls6{letter-spacing:0.053333pt;}
.ls8c{letter-spacing:0.068000pt;}
.ls66{letter-spacing:0.090667pt;}
.ls1b{letter-spacing:0.106667pt;}
.ls8f{letter-spacing:0.113333pt;}
.ls5b{letter-spacing:0.117318pt;}
.ls44{letter-spacing:0.133333pt;}
.ls8a{letter-spacing:0.136000pt;}
.ls8{letter-spacing:0.158926pt;}
.ls4{letter-spacing:0.160000pt;}
.ls60{letter-spacing:0.181333pt;}
.ls4b{letter-spacing:0.186667pt;}
.ls53{letter-spacing:0.186686pt;}
.ls2{letter-spacing:0.213333pt;}
.ls56{letter-spacing:0.223426pt;}
.ls7{letter-spacing:0.226667pt;}
.ls68{letter-spacing:0.234667pt;}
.ls48{letter-spacing:0.240000pt;}
.ls70{letter-spacing:0.256000pt;}
.ls4f{letter-spacing:0.257503pt;}
.ls55{letter-spacing:0.266659pt;}
.ls3{letter-spacing:0.266667pt;}
.ls72{letter-spacing:0.272000pt;}
.ls54{letter-spacing:0.279024pt;}
.ls74{letter-spacing:0.294667pt;}
.ls69{letter-spacing:0.317333pt;}
.ls52{letter-spacing:0.318834pt;}
.ls45{letter-spacing:0.320000pt;}
.ls5a{letter-spacing:0.329102pt;}
.ls51{letter-spacing:0.329126pt;}
.ls5{letter-spacing:0.346667pt;}
.ls64{letter-spacing:0.362667pt;}
.ls2b{letter-spacing:0.373333pt;}
.ls82{letter-spacing:0.385333pt;}
.ls4c{letter-spacing:0.400000pt;}
.ls62{letter-spacing:0.408000pt;}
.ls3e{letter-spacing:0.426667pt;}
.ls50{letter-spacing:0.453333pt;}
.ls42{letter-spacing:0.480000pt;}
.ls75{letter-spacing:0.498667pt;}
.ls59{letter-spacing:0.510417pt;}
.ls4a{letter-spacing:0.515706pt;}
.ls7a{letter-spacing:0.521333pt;}
.ls47{letter-spacing:0.533333pt;}
.ls87{letter-spacing:0.544000pt;}
.ls58{letter-spacing:0.560000pt;}
.ls30{letter-spacing:0.586667pt;}
.ls63{letter-spacing:0.589333pt;}
.ls81{letter-spacing:0.634667pt;}
.ls46{letter-spacing:0.640000pt;}
.ls73{letter-spacing:0.657333pt;}
.ls4e{letter-spacing:0.672000pt;}
.ls61{letter-spacing:0.680000pt;}
.ls43{letter-spacing:0.693333pt;}
.ls39{letter-spacing:0.709310pt;}
.ls3d{letter-spacing:0.720000pt;}
.ls79{letter-spacing:0.725333pt;}
.ls31{letter-spacing:0.746667pt;}
.ls8b{letter-spacing:0.770667pt;}
.ls2a{letter-spacing:0.800000pt;}
.ls90{letter-spacing:0.816000pt;}
.ls3a{letter-spacing:0.853333pt;}
.ls77{letter-spacing:0.861333pt;}
.ls41{letter-spacing:0.906667pt;}
.ls88{letter-spacing:0.952000pt;}
.ls29{letter-spacing:0.960000pt;}
.ls4d{letter-spacing:0.969558pt;}
.ls78{letter-spacing:0.997333pt;}
.ls32{letter-spacing:1.013333pt;}
.ls71{letter-spacing:1.042667pt;}
.ls2f{letter-spacing:1.066667pt;}
.ls7c{letter-spacing:1.088000pt;}
.ls38{letter-spacing:1.120000pt;}
.ls35{letter-spacing:1.170734pt;}
.ls36{letter-spacing:1.170898pt;}
.ls40{letter-spacing:1.173333pt;}
.ls8e{letter-spacing:1.178667pt;}
.ls5d{letter-spacing:1.200000pt;}
.ls7d{letter-spacing:1.224000pt;}
.ls7b{letter-spacing:1.269333pt;}
.ls5e{letter-spacing:1.280000pt;}
.ls7e{letter-spacing:1.314667pt;}
.ls3f{letter-spacing:1.333333pt;}
.ls76{letter-spacing:1.360000pt;}
.ls33{letter-spacing:1.386667pt;}
.ls89{letter-spacing:1.405333pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls86{letter-spacing:1.496000pt;}
.ls2c{letter-spacing:1.546667pt;}
.ls3c{letter-spacing:1.573333pt;}
.ls65{letter-spacing:1.586667pt;}
.ls2d{letter-spacing:1.600000pt;}
.ls34{letter-spacing:1.653333pt;}
.ls37{letter-spacing:1.760000pt;}
.ls7f{letter-spacing:1.768000pt;}
.ls80{letter-spacing:1.904000pt;}
.ls3b{letter-spacing:1.920000pt;}
.ls49{letter-spacing:1.973333pt;}
.ls85{letter-spacing:1.994667pt;}
.ls5f{letter-spacing:2.133333pt;}
.ls0{letter-spacing:3.546667pt;}
.ws27{word-spacing:-53.333333pt;}
.ws92{word-spacing:-14.506667pt;}
.ws66{word-spacing:-14.346667pt;}
.ws63{word-spacing:-13.866667pt;}
.ws86{word-spacing:-13.760000pt;}
.ws91{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws6e{word-spacing:-13.280000pt;}
.wsa9{word-spacing:-13.184000pt;}
.ws71{word-spacing:-13.120000pt;}
.ws7{word-spacing:-12.928000pt;}
.ws8{word-spacing:-12.906667pt;}
.ws50{word-spacing:-12.746667pt;}
.ws26{word-spacing:-12.693333pt;}
.ws25{word-spacing:-12.213333pt;}
.ws99{word-spacing:-11.560000pt;}
.ws7f{word-spacing:-11.333333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws6f{word-spacing:-10.005333pt;}
.ws70{word-spacing:-9.520000pt;}
.ws94{word-spacing:-9.157333pt;}
.wsc4{word-spacing:-9.112000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws93{word-spacing:-8.658667pt;}
.ws0{word-spacing:-8.362667pt;}
.ws9{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws78{word-spacing:-6.666667pt;}
.ws80{word-spacing:-5.666667pt;}
.wsa{word-spacing:-1.680000pt;}
.ws54{word-spacing:-1.546667pt;}
.ws7b{word-spacing:-1.440000pt;}
.ws5e{word-spacing:-1.386667pt;}
.wse{word-spacing:-1.333333pt;}
.ws52{word-spacing:-1.280000pt;}
.ws2d{word-spacing:-1.226667pt;}
.wsc8{word-spacing:-1.178667pt;}
.ws1e{word-spacing:-1.173333pt;}
.ws98{word-spacing:-1.133333pt;}
.ws11{word-spacing:-1.120000pt;}
.ws87{word-spacing:-1.066667pt;}
.wsae{word-spacing:-1.042667pt;}
.ws46{word-spacing:-1.013333pt;}
.wscd{word-spacing:-0.997333pt;}
.wsa7{word-spacing:-0.952000pt;}
.wsd{word-spacing:-0.906667pt;}
.wsa5{word-spacing:-0.861333pt;}
.ws65{word-spacing:-0.853333pt;}
.wsc6{word-spacing:-0.816000pt;}
.ws56{word-spacing:-0.800000pt;}
.ws45{word-spacing:-0.746667pt;}
.wsaf{word-spacing:-0.725333pt;}
.ws67{word-spacing:-0.693333pt;}
.wsa0{word-spacing:-0.680000pt;}
.ws14{word-spacing:-0.640000pt;}
.wsa8{word-spacing:-0.634667pt;}
.ws10{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.544000pt;}
.ws34{word-spacing:-0.533333pt;}
.wsc{word-spacing:-0.506667pt;}
.wsd1{word-spacing:-0.498667pt;}
.ws22{word-spacing:-0.480000pt;}
.wsd5{word-spacing:-0.453333pt;}
.ws6c{word-spacing:-0.426667pt;}
.ws47{word-spacing:-0.373333pt;}
.wsd0{word-spacing:-0.362667pt;}
.ws5d{word-spacing:-0.320000pt;}
.wsbb{word-spacing:-0.317333pt;}
.ws5b{word-spacing:-0.266667pt;}
.wsa2{word-spacing:-0.234667pt;}
.wsb2{word-spacing:-0.226667pt;}
.ws59{word-spacing:-0.213333pt;}
.wsa4{word-spacing:-0.181333pt;}
.wsa3{word-spacing:-0.136000pt;}
.ws4f{word-spacing:-0.106667pt;}
.ws9d{word-spacing:-0.090667pt;}
.ws3b{word-spacing:-0.053333pt;}
.wsd6{word-spacing:-0.045333pt;}
.wsb{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.045333pt;}
.ws58{word-spacing:0.053333pt;}
.ws2a{word-spacing:0.106667pt;}
.ws20{word-spacing:0.160000pt;}
.ws13{word-spacing:0.213333pt;}
.ws97{word-spacing:0.226667pt;}
.ws2b{word-spacing:0.266667pt;}
.ws82{word-spacing:0.317333pt;}
.ws29{word-spacing:0.320000pt;}
.wsb0{word-spacing:0.362667pt;}
.ws4e{word-spacing:0.373333pt;}
.wsab{word-spacing:0.408000pt;}
.ws1d{word-spacing:0.426667pt;}
.wsad{word-spacing:0.453333pt;}
.ws51{word-spacing:0.480000pt;}
.wsb5{word-spacing:0.498667pt;}
.ws33{word-spacing:0.533333pt;}
.wsb3{word-spacing:0.544000pt;}
.ws4c{word-spacing:0.586667pt;}
.wsa1{word-spacing:0.589333pt;}
.wsd9{word-spacing:0.634667pt;}
.ws4b{word-spacing:0.640000pt;}
.ws31{word-spacing:0.693333pt;}
.wsbd{word-spacing:0.725333pt;}
.ws42{word-spacing:0.746667pt;}
.ws12{word-spacing:0.800000pt;}
.wsc7{word-spacing:0.816000pt;}
.ws18{word-spacing:0.853333pt;}
.wsb7{word-spacing:0.861333pt;}
.ws3a{word-spacing:0.906667pt;}
.ws19{word-spacing:0.960000pt;}
.ws9b{word-spacing:0.997333pt;}
.ws1b{word-spacing:1.013333pt;}
.wsa6{word-spacing:1.042667pt;}
.ws16{word-spacing:1.066667pt;}
.ws40{word-spacing:1.120000pt;}
.ws9c{word-spacing:1.133333pt;}
.ws6b{word-spacing:1.173333pt;}
.wsd4{word-spacing:1.178667pt;}
.ws2e{word-spacing:1.226667pt;}
.ws9e{word-spacing:1.269333pt;}
.ws6d{word-spacing:1.280000pt;}
.wsb1{word-spacing:1.314667pt;}
.wsf{word-spacing:1.333333pt;}
.ws36{word-spacing:1.386667pt;}
.wsba{word-spacing:1.405333pt;}
.ws5c{word-spacing:1.440000pt;}
.wscc{word-spacing:1.450667pt;}
.ws3f{word-spacing:1.493333pt;}
.wsc2{word-spacing:1.541333pt;}
.ws4a{word-spacing:1.546667pt;}
.wsac{word-spacing:1.586667pt;}
.ws38{word-spacing:1.600000pt;}
.ws37{word-spacing:1.653333pt;}
.ws9a{word-spacing:1.677333pt;}
.ws7e{word-spacing:1.706667pt;}
.wsb4{word-spacing:1.722667pt;}
.ws95{word-spacing:1.760000pt;}
.wsbc{word-spacing:1.768000pt;}
.ws32{word-spacing:1.813333pt;}
.wsc0{word-spacing:1.858667pt;}
.ws1c{word-spacing:1.866667pt;}
.ws53{word-spacing:1.920000pt;}
.ws21{word-spacing:1.973333pt;}
.wsb8{word-spacing:1.994667pt;}
.ws2c{word-spacing:2.026667pt;}
.wscf{word-spacing:2.040000pt;}
.ws89{word-spacing:2.080000pt;}
.ws64{word-spacing:2.133333pt;}
.ws5f{word-spacing:2.176000pt;}
.ws68{word-spacing:2.186667pt;}
.ws7d{word-spacing:2.240000pt;}
.ws43{word-spacing:2.293333pt;}
.ws60{word-spacing:2.312000pt;}
.ws55{word-spacing:2.346667pt;}
.ws1f{word-spacing:2.400000pt;}
.wsd7{word-spacing:2.402667pt;}
.ws69{word-spacing:2.506667pt;}
.ws61{word-spacing:2.538667pt;}
.ws35{word-spacing:2.560000pt;}
.ws17{word-spacing:2.613333pt;}
.ws3e{word-spacing:2.666667pt;}
.ws44{word-spacing:2.720000pt;}
.ws1a{word-spacing:2.773333pt;}
.ws4d{word-spacing:2.826667pt;}
.ws3c{word-spacing:2.880000pt;}
.wsc1{word-spacing:2.901333pt;}
.ws49{word-spacing:2.933333pt;}
.ws81{word-spacing:2.946667pt;}
.ws3d{word-spacing:2.986667pt;}
.wsce{word-spacing:2.992000pt;}
.wsc9{word-spacing:3.082667pt;}
.ws62{word-spacing:3.173333pt;}
.ws57{word-spacing:3.200000pt;}
.ws41{word-spacing:3.306667pt;}
.ws84{word-spacing:3.400000pt;}
.wsb6{word-spacing:3.445333pt;}
.ws88{word-spacing:3.466667pt;}
.wsd8{word-spacing:3.536000pt;}
.wsaa{word-spacing:3.581333pt;}
.ws7a{word-spacing:3.680000pt;}
.ws15{word-spacing:3.733333pt;}
.ws8f{word-spacing:3.808000pt;}
.ws5a{word-spacing:3.946667pt;}
.ws39{word-spacing:4.053333pt;}
.wsbe{word-spacing:4.080000pt;}
.wsd2{word-spacing:4.125333pt;}
.ws48{word-spacing:4.213333pt;}
.ws85{word-spacing:4.261333pt;}
.ws90{word-spacing:4.306667pt;}
.wsc3{word-spacing:4.488000pt;}
.wsd3{word-spacing:4.533333pt;}
.wsbf{word-spacing:4.669333pt;}
.ws96{word-spacing:4.800000pt;}
.ws79{word-spacing:4.853333pt;}
.wscb{word-spacing:4.896000pt;}
.ws30{word-spacing:5.066667pt;}
.ws8a{word-spacing:5.173333pt;}
.ws83{word-spacing:5.213333pt;}
.ws7c{word-spacing:5.226667pt;}
.ws2f{word-spacing:5.280000pt;}
.wsca{word-spacing:5.394667pt;}
.ws8e{word-spacing:5.576000pt;}
.wsc5{word-spacing:5.893333pt;}
.ws8d{word-spacing:6.074667pt;}
.ws9f{word-spacing:6.301333pt;}
.ws6a{word-spacing:7.840000pt;}
.ws8c{word-spacing:12.738667pt;}
.ws8b{word-spacing:14.234667pt;}
.ws77{word-spacing:29.466667pt;}
.ws76{word-spacing:63.466667pt;}
.ws24{word-spacing:64.237333pt;}
.ws74{word-spacing:118.864000pt;}
.ws73{word-spacing:217.328000pt;}
.ws75{word-spacing:246.976000pt;}
.ws72{word-spacing:1679.146667pt;}
.ws28{word-spacing:2446.186625pt;}
._c{margin-left:-17.449610pt;}
._2b{margin-left:-16.360581pt;}
._6{margin-left:-14.733333pt;}
._12{margin-left:-11.893333pt;}
._20{margin-left:-10.970667pt;}
._21{margin-left:-9.882667pt;}
._d{margin-left:-8.896000pt;}
._9{margin-left:-7.764267pt;}
._a{margin-left:-6.324294pt;}
._b{margin-left:-5.333333pt;}
._5{margin-left:-4.330667pt;}
._1{margin-left:-2.842667pt;}
._0{margin-left:-1.450667pt;}
._2{width:1.204267pt;}
._4{width:2.128000pt;}
._10{width:3.408000pt;}
._11{width:5.781333pt;}
._2a{width:7.866667pt;}
._f{width:9.408000pt;}
._2c{width:10.401068pt;}
._13{width:11.333333pt;}
._2d{width:12.693333pt;}
._e{width:13.872000pt;}
._7{width:16.320000pt;}
._3{width:34.937592pt;}
._25{width:39.938667pt;}
._23{width:41.344000pt;}
._8{width:48.552000pt;}
._29{width:75.344000pt;}
._28{width:77.520000pt;}
._24{width:97.240000pt;}
._22{width:124.757333pt;}
._27{width:143.661333pt;}
._1f{width:201.674667pt;}
._19{width:237.533333pt;}
._15{width:346.469333pt;}
._18{width:376.661333pt;}
._14{width:485.597333pt;}
._26{width:631.719995pt;}
._1c{width:702.200000pt;}
._1a{width:730.941333pt;}
._1e{width:785.808000pt;}
._17{width:841.328000pt;}
._1d{width:932.053333pt;}
._1b{width:960.794667pt;}
._16{width:1069.730667pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y135{bottom:100.153605pt;}
.y3a{bottom:100.389600pt;}
.y74{bottom:100.813599pt;}
.y70{bottom:100.813639pt;}
.ya7{bottom:101.986938pt;}
.yc6{bottom:102.509460pt;}
.y21d{bottom:103.990937pt;}
.y2e{bottom:108.854533pt;}
.y10a{bottom:109.089742pt;}
.y1db{bottom:110.360289pt;}
.y134{bottom:116.820272pt;}
.y21c{bottom:117.318937pt;}
.y73{bottom:117.480265pt;}
.y6f{bottom:117.480306pt;}
.y39{bottom:118.250936pt;}
.y171{bottom:118.653564pt;}
.ya6{bottom:118.653605pt;}
.yc5{bottom:119.176127pt;}
.y1da{bottom:123.688289pt;}
.y2d{bottom:125.521200pt;}
.y109{bottom:125.795076pt;}
.y21b{bottom:130.646937pt;}
.y133{bottom:133.486938pt;}
.y38{bottom:133.770270pt;}
.y6e{bottom:134.146973pt;}
.y170{bottom:135.320231pt;}
.ya5{bottom:135.320272pt;}
.y19b{bottom:135.628669pt;}
.yc4{bottom:135.842794pt;}
.y1d9{bottom:137.016289pt;}
.y2c{bottom:142.187866pt;}
.y108{bottom:142.432409pt;}
.y21a{bottom:143.974937pt;}
.y37{bottom:147.098270pt;}
.y19a{bottom:148.956669pt;}
.y132{bottom:150.153605pt;}
.y1d8{bottom:150.344289pt;}
.y72{bottom:150.813599pt;}
.y6d{bottom:150.813639pt;}
.y16f{bottom:151.986898pt;}
.ya4{bottom:151.986938pt;}
.yc3{bottom:152.509460pt;}
.y219{bottom:157.302937pt;}
.y2b{bottom:158.854533pt;}
.y107{bottom:159.069742pt;}
.y199{bottom:162.284669pt;}
.y1d7{bottom:163.672289pt;}
.y36{bottom:164.959605pt;}
.y131{bottom:166.820272pt;}
.y6c{bottom:167.480306pt;}
.y16e{bottom:168.653564pt;}
.ya3{bottom:168.653605pt;}
.yc2{bottom:169.176127pt;}
.y218{bottom:170.630937pt;}
.y2a{bottom:175.521200pt;}
.y198{bottom:175.612669pt;}
.y106{bottom:175.707076pt;}
.y1d6{bottom:177.000289pt;}
.y35{bottom:180.473595pt;}
.y130{bottom:183.486938pt;}
.y217{bottom:183.958937pt;}
.y71{bottom:184.146932pt;}
.y6b{bottom:184.146973pt;}
.y16d{bottom:185.320231pt;}
.ya2{bottom:185.320272pt;}
.yc1{bottom:185.842794pt;}
.y197{bottom:188.940669pt;}
.y1d5{bottom:190.328289pt;}
.y29{bottom:192.187866pt;}
.y105{bottom:192.344409pt;}
.y216{bottom:197.286937pt;}
.y34{bottom:198.334941pt;}
.y12f{bottom:200.153605pt;}
.y6a{bottom:200.813639pt;}
.y16c{bottom:201.986898pt;}
.ya1{bottom:201.986938pt;}
.y196{bottom:202.268669pt;}
.yc0{bottom:202.509460pt;}
.y1d4{bottom:203.656289pt;}
.y28{bottom:208.854533pt;}
.y104{bottom:208.981742pt;}
.y215{bottom:210.614937pt;}
.y33{bottom:213.848941pt;}
.y195{bottom:215.596669pt;}
.y12e{bottom:216.820272pt;}
.y1d3{bottom:216.984289pt;}
.y69{bottom:217.480306pt;}
.y16b{bottom:218.653564pt;}
.ya0{bottom:218.653605pt;}
.y214{bottom:223.942937pt;}
.y27{bottom:225.521200pt;}
.y103{bottom:225.619076pt;}
.y194{bottom:228.924669pt;}
.y1d2{bottom:230.312289pt;}
.y32{bottom:231.710266pt;}
.y12d{bottom:233.486938pt;}
.y68{bottom:234.146973pt;}
.y16a{bottom:235.320231pt;}
.yf9{bottom:235.320272pt;}
.y162{bottom:235.326938pt;}
.ybf{bottom:235.842794pt;}
.y213{bottom:237.270937pt;}
.y26{bottom:242.187866pt;}
.y193{bottom:242.252669pt;}
.y102{bottom:242.256409pt;}
.y1d1{bottom:243.640289pt;}
.y12c{bottom:250.153605pt;}
.y212{bottom:250.598937pt;}
.y67{bottom:250.813639pt;}
.ycd{bottom:251.986898pt;}
.y9f{bottom:251.986938pt;}
.y161{bottom:251.993605pt;}
.y31{bottom:253.933467pt;}
.y192{bottom:255.580669pt;}
.y1d0{bottom:256.968289pt;}
.y25{bottom:258.854533pt;}
.y101{bottom:258.893742pt;}
.y253{bottom:263.593620pt;}
.y289{bottom:263.876954pt;}
.y211{bottom:263.926937pt;}
.y12b{bottom:266.820272pt;}
.y30{bottom:267.261467pt;}
.y66{bottom:267.480306pt;}
.ycc{bottom:268.653564pt;}
.yf8{bottom:268.653605pt;}
.y160{bottom:268.660272pt;}
.y191{bottom:268.908669pt;}
.ybe{bottom:269.176147pt;}
.y1cf{bottom:270.296289pt;}
.y24{bottom:275.521200pt;}
.y100{bottom:275.531076pt;}
.y252{bottom:276.921620pt;}
.y288{bottom:277.204954pt;}
.y210{bottom:277.254937pt;}
.y190{bottom:282.236669pt;}
.yfd{bottom:282.318932pt;}
.y12a{bottom:283.486938pt;}
.y1ce{bottom:283.624289pt;}
.y65{bottom:284.146973pt;}
.y9e{bottom:285.320231pt;}
.yf7{bottom:285.320272pt;}
.y15f{bottom:285.326938pt;}
.ybd{bottom:285.842814pt;}
.y251{bottom:290.249620pt;}
.y287{bottom:290.532954pt;}
.y20f{bottom:290.582937pt;}
.yff{bottom:292.168409pt;}
.y23{bottom:292.187866pt;}
.y2f{bottom:294.654133pt;}
.yfc{bottom:295.657599pt;}
.y1cd{bottom:296.952289pt;}
.y129{bottom:300.153605pt;}
.y64{bottom:300.813639pt;}
.y9d{bottom:301.986898pt;}
.yf6{bottom:301.986938pt;}
.y15e{bottom:301.993605pt;}
.ybc{bottom:302.509481pt;}
.y250{bottom:303.577620pt;}
.y286{bottom:303.860954pt;}
.y20e{bottom:303.910937pt;}
.y22{bottom:308.854533pt;}
.yfb{bottom:308.985599pt;}
.y1cc{bottom:310.280289pt;}
.y128{bottom:316.820272pt;}
.y24f{bottom:316.905620pt;}
.yfe{bottom:317.135742pt;}
.y285{bottom:317.188954pt;}
.y20d{bottom:317.238937pt;}
.y63{bottom:317.480306pt;}
.y9c{bottom:318.653564pt;}
.yf5{bottom:318.653605pt;}
.y15d{bottom:318.660272pt;}
.y18f{bottom:318.854669pt;}
.ybb{bottom:319.176147pt;}
.yfa{bottom:322.313599pt;}
.y1cb{bottom:323.608289pt;}
.y21{bottom:325.521200pt;}
.y24e{bottom:330.233620pt;}
.y284{bottom:330.516954pt;}
.y20c{bottom:330.566937pt;}
.y18e{bottom:332.182669pt;}
.y127{bottom:333.486938pt;}
.y62{bottom:334.146973pt;}
.y9b{bottom:335.320231pt;}
.yf4{bottom:335.320272pt;}
.y15c{bottom:335.326938pt;}
.yba{bottom:335.842814pt;}
.y1ca{bottom:336.936289pt;}
.y1f{bottom:342.187866pt;}
.y24d{bottom:343.561620pt;}
.y283{bottom:343.844954pt;}
.y20b{bottom:343.894937pt;}
.y126{bottom:350.153605pt;}
.y1c9{bottom:350.264289pt;}
.y61{bottom:350.813639pt;}
.y9a{bottom:351.986898pt;}
.yf3{bottom:351.986938pt;}
.y15b{bottom:351.993605pt;}
.yb9{bottom:352.509481pt;}
.y111{bottom:354.704114pt;}
.y24c{bottom:356.889620pt;}
.y282{bottom:357.172954pt;}
.y20a{bottom:357.222937pt;}
.y18d{bottom:358.816002pt;}
.y1e{bottom:358.854533pt;}
.y1c8{bottom:363.592289pt;}
.y125{bottom:366.820272pt;}
.y60{bottom:367.480306pt;}
.y110{bottom:368.032114pt;}
.y99{bottom:368.653564pt;}
.yf2{bottom:368.653605pt;}
.y15a{bottom:368.660272pt;}
.yb8{bottom:369.176147pt;}
.y24b{bottom:370.217620pt;}
.y281{bottom:370.500954pt;}
.y209{bottom:370.550937pt;}
.y18c{bottom:372.144002pt;}
.y1d{bottom:375.521200pt;}
.y1c7{bottom:376.920289pt;}
.y10f{bottom:381.360114pt;}
.y124{bottom:383.486938pt;}
.y24a{bottom:383.545620pt;}
.y280{bottom:383.828954pt;}
.y208{bottom:383.878937pt;}
.y5f{bottom:384.146973pt;}
.y98{bottom:385.320231pt;}
.yf1{bottom:385.320272pt;}
.y159{bottom:385.326938pt;}
.yb7{bottom:385.842814pt;}
.y1c6{bottom:390.248289pt;}
.y1c{bottom:392.187866pt;}
.y10e{bottom:394.688114pt;}
.y249{bottom:396.873620pt;}
.y27f{bottom:397.156954pt;}
.y207{bottom:397.206937pt;}
.y123{bottom:400.153605pt;}
.y5e{bottom:400.813639pt;}
.y97{bottom:401.986898pt;}
.yf0{bottom:401.986938pt;}
.y158{bottom:401.993605pt;}
.y18b{bottom:402.144002pt;}
.yb6{bottom:402.509481pt;}
.y1c5{bottom:403.576289pt;}
.y10d{bottom:408.016114pt;}
.y1b{bottom:408.854533pt;}
.y248{bottom:410.201620pt;}
.y27e{bottom:410.484954pt;}
.y206{bottom:410.534937pt;}
.y122{bottom:416.820272pt;}
.y1c4{bottom:416.904289pt;}
.y5d{bottom:417.480306pt;}
.y96{bottom:418.653564pt;}
.yef{bottom:418.653605pt;}
.y157{bottom:418.660272pt;}
.yb5{bottom:419.176147pt;}
.y247{bottom:423.529620pt;}
.y27d{bottom:423.812954pt;}
.y205{bottom:423.862937pt;}
.y20{bottom:425.521200pt;}
.y1c3{bottom:430.232289pt;}
.y116{bottom:432.844537pt;}
.y121{bottom:433.486938pt;}
.y5c{bottom:434.146973pt;}
.y95{bottom:435.320231pt;}
.yee{bottom:435.320272pt;}
.y156{bottom:435.326938pt;}
.y18a{bottom:435.602430pt;}
.yb4{bottom:435.842814pt;}
.y246{bottom:436.857620pt;}
.y27c{bottom:437.140954pt;}
.y204{bottom:437.190937pt;}
.y1a{bottom:442.187866pt;}
.y1c2{bottom:443.560289pt;}
.y189{bottom:448.930430pt;}
.y115{bottom:449.549870pt;}
.y120{bottom:450.153605pt;}
.y245{bottom:450.185620pt;}
.y27b{bottom:450.468954pt;}
.y203{bottom:450.518937pt;}
.y5b{bottom:450.813639pt;}
.y94{bottom:451.986898pt;}
.yed{bottom:451.986938pt;}
.y155{bottom:451.993605pt;}
.yb3{bottom:452.509481pt;}
.y1c1{bottom:456.888289pt;}
.y188{bottom:462.258430pt;}
.y244{bottom:463.513620pt;}
.y27a{bottom:463.796954pt;}
.y202{bottom:463.846937pt;}
.y114{bottom:466.187203pt;}
.y11f{bottom:466.820272pt;}
.y5a{bottom:467.480306pt;}
.y93{bottom:468.653564pt;}
.yec{bottom:468.653605pt;}
.y154{bottom:468.660272pt;}
.yb2{bottom:469.176147pt;}
.y1c0{bottom:470.216289pt;}
.y243{bottom:476.841620pt;}
.y279{bottom:477.124954pt;}
.y201{bottom:477.174937pt;}
.y113{bottom:482.824537pt;}
.y11e{bottom:483.486938pt;}
.y1bf{bottom:483.544289pt;}
.y59{bottom:484.146973pt;}
.y92{bottom:485.320231pt;}
.yeb{bottom:485.320272pt;}
.y153{bottom:485.326938pt;}
.yb1{bottom:485.842814pt;}
.y242{bottom:490.169620pt;}
.y278{bottom:490.452954pt;}
.y200{bottom:490.502937pt;}
.y19{bottom:492.187907pt;}
.y187{bottom:492.223763pt;}
.y1be{bottom:496.872289pt;}
.y11d{bottom:500.153605pt;}
.y58{bottom:500.813639pt;}
.y91{bottom:501.986898pt;}
.yea{bottom:501.986938pt;}
.y152{bottom:501.993605pt;}
.yb0{bottom:502.509481pt;}
.y241{bottom:503.497620pt;}
.y277{bottom:503.780954pt;}
.y1ff{bottom:503.830937pt;}
.y186{bottom:505.551763pt;}
.y112{bottom:507.791870pt;}
.y18{bottom:508.854574pt;}
.y1bd{bottom:510.200289pt;}
.y11c{bottom:516.820272pt;}
.y240{bottom:516.825620pt;}
.y276{bottom:517.108954pt;}
.y1fe{bottom:517.158937pt;}
.y57{bottom:517.480306pt;}
.y90{bottom:518.653564pt;}
.ye9{bottom:518.653605pt;}
.y151{bottom:518.660272pt;}
.y185{bottom:518.879763pt;}
.yaf{bottom:519.176147pt;}
.y1bc{bottom:523.528289pt;}
.y23f{bottom:530.153620pt;}
.y10c{bottom:530.406429pt;}
.y275{bottom:530.436954pt;}
.y1fd{bottom:530.486937pt;}
.y184{bottom:532.207763pt;}
.y11b{bottom:533.486938pt;}
.y56{bottom:534.146973pt;}
.y8f{bottom:535.320231pt;}
.ye8{bottom:535.320272pt;}
.y150{bottom:535.326938pt;}
.yae{bottom:535.840291pt;}
.y1bb{bottom:536.856289pt;}
.y17{bottom:542.187907pt;}
.y23e{bottom:543.481620pt;}
.y10b{bottom:543.734429pt;}
.y274{bottom:543.764954pt;}
.y1fc{bottom:543.814937pt;}
.y183{bottom:545.535763pt;}
.y11a{bottom:550.153605pt;}
.y1ba{bottom:550.184289pt;}
.y55{bottom:550.813639pt;}
.y8e{bottom:551.986898pt;}
.ye7{bottom:551.986938pt;}
.y14f{bottom:551.993605pt;}
.yad{bottom:552.506958pt;}
.y23d{bottom:556.809620pt;}
.y273{bottom:557.092954pt;}
.y1fb{bottom:557.142937pt;}
.y16{bottom:558.854574pt;}
.y182{bottom:558.863763pt;}
.y1b9{bottom:563.512289pt;}
.y119{bottom:566.820272pt;}
.y54{bottom:567.480306pt;}
.y8d{bottom:568.653564pt;}
.ye6{bottom:568.653605pt;}
.y14e{bottom:568.660272pt;}
.yac{bottom:569.173625pt;}
.y23c{bottom:570.137620pt;}
.y272{bottom:570.420954pt;}
.y1fa{bottom:570.470937pt;}
.y181{bottom:572.191763pt;}
.y15{bottom:575.521240pt;}
.y1b8{bottom:576.840289pt;}
.y23b{bottom:583.465620pt;}
.y118{bottom:583.486938pt;}
.y271{bottom:583.748954pt;}
.y1f9{bottom:583.798937pt;}
.y53{bottom:584.146973pt;}
.y8c{bottom:585.320231pt;}
.ye5{bottom:585.320272pt;}
.y14d{bottom:585.326938pt;}
.y180{bottom:585.519763pt;}
.yab{bottom:585.840291pt;}
.y1b7{bottom:590.168289pt;}
.y14{bottom:592.187907pt;}
.y23a{bottom:596.793620pt;}
.y270{bottom:597.076954pt;}
.y1f8{bottom:597.126937pt;}
.y17f{bottom:598.847763pt;}
.y52{bottom:600.813639pt;}
.y8b{bottom:601.986898pt;}
.ye4{bottom:601.986938pt;}
.y14c{bottom:601.993605pt;}
.yaa{bottom:602.506958pt;}
.y1b6{bottom:603.496289pt;}
.y13{bottom:608.854574pt;}
.y239{bottom:610.121620pt;}
.y26f{bottom:610.404954pt;}
.y1f7{bottom:610.454937pt;}
.y17e{bottom:612.175763pt;}
.y117{bottom:616.820272pt;}
.y1b5{bottom:616.824289pt;}
.y51{bottom:617.480306pt;}
.y8a{bottom:618.653564pt;}
.ye3{bottom:618.653605pt;}
.y14b{bottom:618.660272pt;}
.ya9{bottom:619.173625pt;}
.y238{bottom:623.449620pt;}
.y26e{bottom:623.732954pt;}
.y1f6{bottom:623.782937pt;}
.y12{bottom:625.521240pt;}
.y1b4{bottom:630.152289pt;}
.y50{bottom:634.146973pt;}
.y89{bottom:635.320231pt;}
.ye2{bottom:635.320272pt;}
.y14a{bottom:635.326938pt;}
.ya8{bottom:635.840291pt;}
.y237{bottom:636.777620pt;}
.y26d{bottom:637.060954pt;}
.y1f5{bottom:637.110937pt;}
.y17d{bottom:642.141096pt;}
.y11{bottom:642.187907pt;}
.y1b3{bottom:643.480289pt;}
.y236{bottom:650.105620pt;}
.y26c{bottom:650.388954pt;}
.y1f4{bottom:650.438937pt;}
.y4f{bottom:650.813639pt;}
.y88{bottom:651.986898pt;}
.ye1{bottom:651.986938pt;}
.y149{bottom:651.993605pt;}
.y17c{bottom:655.469096pt;}
.y1b2{bottom:656.808289pt;}
.y10{bottom:658.854574pt;}
.y235{bottom:663.433620pt;}
.y26b{bottom:663.716954pt;}
.y1f3{bottom:663.766937pt;}
.y169{bottom:667.428388pt;}
.y4e{bottom:667.480306pt;}
.y87{bottom:668.653564pt;}
.ye0{bottom:668.653605pt;}
.y148{bottom:668.660272pt;}
.y17b{bottom:668.797096pt;}
.y1b1{bottom:670.136289pt;}
.yf{bottom:675.521240pt;}
.y234{bottom:676.761620pt;}
.y26a{bottom:677.044954pt;}
.y1f2{bottom:677.094937pt;}
.y168{bottom:680.783096pt;}
.y17a{bottom:682.125096pt;}
.y1b0{bottom:683.464289pt;}
.y4d{bottom:684.146973pt;}
.y86{bottom:685.320231pt;}
.ydf{bottom:685.320272pt;}
.y147{bottom:685.326938pt;}
.y233{bottom:690.089620pt;}
.y269{bottom:690.372954pt;}
.y1f1{bottom:690.422937pt;}
.ye{bottom:692.187907pt;}
.y167{bottom:694.111096pt;}
.y179{bottom:695.453096pt;}
.y1af{bottom:696.792289pt;}
.ycb{bottom:697.631034pt;}
.y4c{bottom:700.813639pt;}
.y85{bottom:701.986898pt;}
.yde{bottom:701.986938pt;}
.y146{bottom:701.993605pt;}
.y232{bottom:703.417620pt;}
.y268{bottom:703.700954pt;}
.y1f0{bottom:703.750937pt;}
.y166{bottom:707.439096pt;}
.yd{bottom:708.854574pt;}
.y1ae{bottom:710.120289pt;}
.yca{bottom:710.959034pt;}
.y231{bottom:716.745620pt;}
.y267{bottom:717.028954pt;}
.y1ef{bottom:717.078937pt;}
.y4b{bottom:717.480306pt;}
.y84{bottom:718.653564pt;}
.ydd{bottom:718.653605pt;}
.y145{bottom:718.660272pt;}
.y165{bottom:720.767096pt;}
.y1ad{bottom:723.448289pt;}
.yc9{bottom:724.287034pt;}
.y178{bottom:725.418430pt;}
.yc{bottom:725.521240pt;}
.y230{bottom:730.073620pt;}
.y266{bottom:730.356954pt;}
.y1ee{bottom:730.406937pt;}
.y164{bottom:734.095096pt;}
.y4a{bottom:734.146973pt;}
.y83{bottom:735.320231pt;}
.ydc{bottom:735.320272pt;}
.y144{bottom:735.326938pt;}
.y1ac{bottom:736.776289pt;}
.yc8{bottom:737.615034pt;}
.y177{bottom:738.746430pt;}
.yb{bottom:742.187907pt;}
.y22f{bottom:743.401620pt;}
.y265{bottom:743.684954pt;}
.y1ed{bottom:743.734937pt;}
.y163{bottom:747.423096pt;}
.y1ab{bottom:750.104289pt;}
.y49{bottom:750.813639pt;}
.yc7{bottom:750.943034pt;}
.y82{bottom:751.986898pt;}
.ydb{bottom:751.986938pt;}
.y143{bottom:751.993605pt;}
.y176{bottom:752.074430pt;}
.y22e{bottom:756.729620pt;}
.y264{bottom:757.012954pt;}
.y1ec{bottom:757.062937pt;}
.y1aa{bottom:763.432289pt;}
.y175{bottom:765.402430pt;}
.y48{bottom:767.480306pt;}
.y81{bottom:768.653564pt;}
.yda{bottom:768.653605pt;}
.y142{bottom:768.660272pt;}
.y22d{bottom:770.057620pt;}
.y263{bottom:770.340954pt;}
.y1eb{bottom:770.390937pt;}
.y1a9{bottom:776.760289pt;}
.y174{bottom:778.730430pt;}
.ya{bottom:781.461469pt;}
.y22c{bottom:783.385620pt;}
.y262{bottom:783.668954pt;}
.y1ea{bottom:783.718937pt;}
.y47{bottom:784.146973pt;}
.y80{bottom:785.320231pt;}
.yd9{bottom:785.320272pt;}
.y141{bottom:785.326938pt;}
.y1a8{bottom:790.088289pt;}
.y9{bottom:794.789469pt;}
.y22b{bottom:796.713620pt;}
.y261{bottom:796.996954pt;}
.y1e9{bottom:797.046937pt;}
.y46{bottom:800.813639pt;}
.y7f{bottom:801.986898pt;}
.yd8{bottom:801.986938pt;}
.y140{bottom:801.993605pt;}
.y1a7{bottom:803.416289pt;}
.y173{bottom:808.695763pt;}
.y22a{bottom:810.041620pt;}
.y260{bottom:810.324954pt;}
.y1e8{bottom:810.374937pt;}
.y1a6{bottom:816.744289pt;}
.y45{bottom:817.480306pt;}
.y7e{bottom:818.653564pt;}
.yd7{bottom:818.653605pt;}
.y13f{bottom:818.660272pt;}
.y172{bottom:822.023763pt;}
.y229{bottom:823.369620pt;}
.y25f{bottom:823.652954pt;}
.y1e7{bottom:823.702937pt;}
.y1a5{bottom:830.072289pt;}
.y8{bottom:832.656169pt;}
.y44{bottom:834.146973pt;}
.y7d{bottom:835.320231pt;}
.yd6{bottom:835.320272pt;}
.y13e{bottom:835.326938pt;}
.y228{bottom:836.697620pt;}
.y25e{bottom:836.980954pt;}
.y1e6{bottom:837.030937pt;}
.y1a4{bottom:843.400289pt;}
.y227{bottom:850.025620pt;}
.y25d{bottom:850.308954pt;}
.y1e5{bottom:850.358937pt;}
.y43{bottom:850.813639pt;}
.y7c{bottom:851.986898pt;}
.yd5{bottom:851.986938pt;}
.y13d{bottom:851.993605pt;}
.y1a3{bottom:856.728289pt;}
.y226{bottom:863.353620pt;}
.y25c{bottom:863.636954pt;}
.y1e4{bottom:863.686937pt;}
.y42{bottom:867.480306pt;}
.y7b{bottom:868.653564pt;}
.yd4{bottom:868.653605pt;}
.y13c{bottom:868.660272pt;}
.y1a2{bottom:870.056289pt;}
.y7{bottom:872.377441pt;}
.y225{bottom:876.681620pt;}
.y25b{bottom:876.964954pt;}
.y1e3{bottom:877.014937pt;}
.y1a1{bottom:883.384289pt;}
.y41{bottom:884.146973pt;}
.y7a{bottom:885.320231pt;}
.yd3{bottom:885.320272pt;}
.y13b{bottom:885.326938pt;}
.y224{bottom:890.009620pt;}
.y25a{bottom:890.292954pt;}
.y1e2{bottom:890.342937pt;}
.y6{bottom:896.377441pt;}
.y1a0{bottom:896.712289pt;}
.y40{bottom:900.813639pt;}
.y79{bottom:901.986898pt;}
.yd2{bottom:901.986938pt;}
.y13a{bottom:901.993605pt;}
.y223{bottom:903.337620pt;}
.y259{bottom:903.620954pt;}
.y1e1{bottom:903.670937pt;}
.y19f{bottom:910.040289pt;}
.y222{bottom:916.665620pt;}
.y258{bottom:916.948954pt;}
.y1e0{bottom:916.998937pt;}
.y3f{bottom:917.480306pt;}
.y78{bottom:918.653564pt;}
.yd1{bottom:918.653605pt;}
.y139{bottom:918.660272pt;}
.y19e{bottom:923.368289pt;}
.y221{bottom:929.993620pt;}
.y257{bottom:930.276954pt;}
.y1df{bottom:930.326937pt;}
.y3e{bottom:934.146973pt;}
.y77{bottom:935.320231pt;}
.yd0{bottom:935.320272pt;}
.y138{bottom:935.326938pt;}
.y19d{bottom:936.696289pt;}
.y220{bottom:943.321620pt;}
.y256{bottom:943.604954pt;}
.y1de{bottom:943.654937pt;}
.y3d{bottom:950.813639pt;}
.y76{bottom:951.986898pt;}
.ycf{bottom:951.986938pt;}
.y137{bottom:951.993605pt;}
.y5{bottom:956.561849pt;}
.y21f{bottom:956.649620pt;}
.y255{bottom:956.932954pt;}
.y1dd{bottom:956.982937pt;}
.y19c{bottom:966.696289pt;}
.y3c{bottom:967.480306pt;}
.y75{bottom:968.653564pt;}
.yce{bottom:968.653605pt;}
.y136{bottom:968.660272pt;}
.y21e{bottom:969.977620pt;}
.y254{bottom:970.260954pt;}
.y1dc{bottom:970.310937pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y3b{bottom:1002.206543pt;}
.hc{height:30.495732pt;}
.h2{height:37.376000pt;}
.h4{height:39.712000pt;}
.hb{height:43.565333pt;}
.h12{height:43.740075pt;}
.h13{height:46.376000pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h9{height:51.253333pt;}
.hf{height:51.263425pt;}
.he{height:52.448000pt;}
.h8{height:52.746667pt;}
.hd{height:54.560000pt;}
.h11{height:54.560163pt;}
.h10{height:57.210504pt;}
.h7{height:57.658667pt;}
.ha{height:63.296000pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x7{left:69.996800pt;}
.x4{left:75.717199pt;}
.x8{left:83.151469pt;}
.x6{left:86.929867pt;}
.xb{left:90.709469pt;}
.xa{left:238.110128pt;}
.x5{left:408.191457pt;}
.x9{left:423.311433pt;}
.xc{left:430.868135pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
}




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