
    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_d66f8141fcb26765d02b9fa5.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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8d707cdf90be51f0db33032c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.222000;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_3818b05d907438b87abde826.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.213000;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_ef2d33ce342d015c7fe50342.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_ab21399aaeba613d663f6fe8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202000;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_3dad44cac53c238d328e489f.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_f5b13a85376ede2d426c62d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.133000;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_25ceb44855fa05b8ebee958b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.133000;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_d798f5590c4c437dc82b67fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.230000;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_1d842f388c3c88eadd57332f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.898000;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_7b3217de874b4dbe89ac94be.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.650000;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_3f9ad8cb51d35b241efaa4b7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.858000;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);}
.v7{vertical-align:-5.555223px;}
.v1{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.728292px;}
.v4{vertical-align:4.799927px;}
.v8{vertical-align:9.135256px;}
.v5{vertical-align:18.270511px;}
.v3{vertical-align:20.400604px;}
.v2{vertical-align:24.000000px;}
.ls61{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.480000px;}
.ls38{letter-spacing:-0.420000px;}
.ls36{letter-spacing:-0.360000px;}
.ls88{letter-spacing:-0.357000px;}
.ls89{letter-spacing:-0.306000px;}
.ls37{letter-spacing:-0.300000px;}
.ls8f{letter-spacing:-0.255000px;}
.ls39{letter-spacing:-0.240000px;}
.ls87{letter-spacing:-0.204000px;}
.ls3f{letter-spacing:-0.180000px;}
.ls86{letter-spacing:-0.153000px;}
.ls3e{letter-spacing:-0.120000px;}
.ls85{letter-spacing:-0.102000px;}
.ls52{letter-spacing:-0.082300px;}
.ls18{letter-spacing:-0.060000px;}
.ls90{letter-spacing:-0.051000px;}
.ls55{letter-spacing:-0.038688px;}
.ls17{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.038688px;}
.ls6a{letter-spacing:0.051000px;}
.ls5{letter-spacing:0.060000px;}
.ls53{letter-spacing:0.075970px;}
.ls4e{letter-spacing:0.077376px;}
.ls3c{letter-spacing:0.090000px;}
.ls6e{letter-spacing:0.102000px;}
.ls33{letter-spacing:0.120000px;}
.ls56{letter-spacing:0.140332px;}
.ls16{letter-spacing:0.150897px;}
.ls8e{letter-spacing:0.153000px;}
.ls4{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.204000px;}
.ls5e{letter-spacing:0.210000px;}
.ls1{letter-spacing:0.240000px;}
.ls67{letter-spacing:0.255000px;}
.ls69{letter-spacing:0.264000px;}
.ls3d{letter-spacing:0.281988px;}
.ls6b{letter-spacing:0.288000px;}
.ls34{letter-spacing:0.300000px;}
.ls73{letter-spacing:0.306000px;}
.ls46{letter-spacing:0.330000px;}
.ls8b{letter-spacing:0.357000px;}
.ls32{letter-spacing:0.360000px;}
.ls83{letter-spacing:0.382500px;}
.ls72{letter-spacing:0.408000px;}
.ls3{letter-spacing:0.420000px;}
.ls45{letter-spacing:0.450000px;}
.ls74{letter-spacing:0.459000px;}
.ls2{letter-spacing:0.480000px;}
.ls1e{letter-spacing:0.510000px;}
.ls5b{letter-spacing:0.516000px;}
.ls1d{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.546000px;}
.ls82{letter-spacing:0.561000px;}
.ls62{letter-spacing:0.570000px;}
.ls8c{letter-spacing:0.586500px;}
.ls6{letter-spacing:0.600000px;}
.ls77{letter-spacing:0.612000px;}
.lse{letter-spacing:0.660000px;}
.ls71{letter-spacing:0.663000px;}
.ls5a{letter-spacing:0.672000px;}
.ls12{letter-spacing:0.689974px;}
.ls3a{letter-spacing:0.690000px;}
.ls63{letter-spacing:0.714000px;}
.ls2d{letter-spacing:0.720000px;}
.ls59{letter-spacing:0.750000px;}
.ls68{letter-spacing:0.765000px;}
.ls25{letter-spacing:0.780000px;}
.ls5d{letter-spacing:0.810000px;}
.ls64{letter-spacing:0.816000px;}
.ls29{letter-spacing:0.840000px;}
.ls44{letter-spacing:0.857980px;}
.ls5f{letter-spacing:0.870000px;}
.ls35{letter-spacing:0.900000px;}
.ls4a{letter-spacing:0.912000px;}
.ls65{letter-spacing:0.918000px;}
.ls60{letter-spacing:0.930000px;}
.ls2a{letter-spacing:0.960000px;}
.ls76{letter-spacing:0.969000px;}
.ls7{letter-spacing:1.020000px;}
.ls1f{letter-spacing:1.050000px;}
.ls66{letter-spacing:1.071000px;}
.ls8{letter-spacing:1.080000px;}
.ls7b{letter-spacing:1.122000px;}
.ls19{letter-spacing:1.140000px;}
.ls70{letter-spacing:1.147500px;}
.ls14{letter-spacing:1.170000px;}
.ls7c{letter-spacing:1.173000px;}
.ls11{letter-spacing:1.200000px;}
.ls6d{letter-spacing:1.224000px;}
.ls3b{letter-spacing:1.230000px;}
.ls1b{letter-spacing:1.260000px;}
.ls81{letter-spacing:1.275000px;}
.ls28{letter-spacing:1.320000px;}
.ls84{letter-spacing:1.326000px;}
.ls31{letter-spacing:1.374000px;}
.ls7a{letter-spacing:1.377000px;}
.lsc{letter-spacing:1.380000px;}
.ls6c{letter-spacing:1.428000px;}
.ls27{letter-spacing:1.440000px;}
.ls2b{letter-spacing:1.493972px;}
.ls1a{letter-spacing:1.500000px;}
.ls7e{letter-spacing:1.530000px;}
.ls48{letter-spacing:1.547988px;}
.lsd{letter-spacing:1.560000px;}
.ls8d{letter-spacing:1.581000px;}
.ls13{letter-spacing:1.590000px;}
.lsa{letter-spacing:1.620000px;}
.ls7f{letter-spacing:1.632000px;}
.ls43{letter-spacing:1.650000px;}
.ls1c{letter-spacing:1.680000px;}
.ls7d{letter-spacing:1.683000px;}
.ls57{letter-spacing:1.710000px;}
.ls79{letter-spacing:1.734000px;}
.ls10{letter-spacing:1.740000px;}
.ls5c{letter-spacing:1.782000px;}
.ls75{letter-spacing:1.785000px;}
.ls30{letter-spacing:1.800000px;}
.ls9{letter-spacing:1.860000px;}
.ls42{letter-spacing:1.890000px;}
.ls24{letter-spacing:1.920000px;}
.ls6f{letter-spacing:1.938000px;}
.ls20{letter-spacing:1.950000px;}
.lsb{letter-spacing:1.980000px;}
.ls80{letter-spacing:1.989000px;}
.ls78{letter-spacing:2.014500px;}
.ls2c{letter-spacing:2.040000px;}
.ls47{letter-spacing:2.100000px;}
.ls2f{letter-spacing:2.160000px;}
.ls2e{letter-spacing:2.220000px;}
.ls8a{letter-spacing:2.244000px;}
.ls49{letter-spacing:2.280000px;}
.ls23{letter-spacing:2.340000px;}
.ls22{letter-spacing:2.370000px;}
.ls21{letter-spacing:2.400000px;}
.ls26{letter-spacing:2.460000px;}
.ls58{letter-spacing:2.580000px;}
.ls41{letter-spacing:2.700000px;}
.ls0{letter-spacing:2.850000px;}
.ls51{letter-spacing:158.212500px;}
.ls50{letter-spacing:158.212591px;}
.ls54{letter-spacing:224.184110px;}
.ls4c{letter-spacing:230.206525px;}
.ls4d{letter-spacing:230.235727px;}
.ls4b{letter-spacing:230.352487px;}
.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;}
}
.ws8c{word-spacing:-230.235727px;}
.ws8b{word-spacing:-224.184110px;}
.wsa3{word-spacing:-14.832000px;}
.ws1f{word-spacing:-14.544000px;}
.ws8d{word-spacing:-13.980000px;}
.ws96{word-spacing:-13.860000px;}
.ws9d{word-spacing:-13.620000px;}
.ws61{word-spacing:-13.200000px;}
.ws69{word-spacing:-12.960000px;}
.ws4f{word-spacing:-12.474000px;}
.wsd3{word-spacing:-12.444000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.wsb9{word-spacing:-11.781000px;}
.wsa4{word-spacing:-11.730000px;}
.ws5{word-spacing:-11.520000px;}
.wsd6{word-spacing:-11.067000px;}
.wsb2{word-spacing:-11.016000px;}
.ws7f{word-spacing:-10.711979px;}
.ws1e{word-spacing:-10.512000px;}
.wsa2{word-spacing:-10.506000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.ws3{word-spacing:-8.694000px;}
.ws72{word-spacing:-5.220000px;}
.wsa0{word-spacing:-3.720000px;}
.ws56{word-spacing:-2.520000px;}
.ws29{word-spacing:-2.400000px;}
.ws3c{word-spacing:-2.040000px;}
.ws38{word-spacing:-1.680000px;}
.ws3b{word-spacing:-1.620000px;}
.ws3a{word-spacing:-1.500000px;}
.ws9e{word-spacing:-1.440000px;}
.ws5a{word-spacing:-1.380000px;}
.wsd{word-spacing:-1.320000px;}
.ws8{word-spacing:-1.260000px;}
.wsbb{word-spacing:-1.224000px;}
.ws1a{word-spacing:-1.200000px;}
.wsc8{word-spacing:-1.173000px;}
.ws99{word-spacing:-1.140000px;}
.wsb0{word-spacing:-1.122000px;}
.ws2e{word-spacing:-1.080000px;}
.wsad{word-spacing:-1.071000px;}
.ws37{word-spacing:-1.020000px;}
.wsaf{word-spacing:-0.969000px;}
.ws70{word-spacing:-0.960000px;}
.wsb3{word-spacing:-0.918000px;}
.ws4e{word-spacing:-0.900000px;}
.ws45{word-spacing:-0.840000px;}
.ws2d{word-spacing:-0.780000px;}
.wsd5{word-spacing:-0.765000px;}
.ws4a{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.660000px;}
.wsf{word-spacing:-0.600000px;}
.wsae{word-spacing:-0.561000px;}
.ws98{word-spacing:-0.540000px;}
.ws1d{word-spacing:-0.510000px;}
.ws4b{word-spacing:-0.480000px;}
.wsbc{word-spacing:-0.459000px;}
.ws88{word-spacing:-0.420000px;}
.wsd0{word-spacing:-0.408000px;}
.ws48{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.300000px;}
.wsce{word-spacing:-0.255000px;}
.ws33{word-spacing:-0.240000px;}
.wsa9{word-spacing:-0.204000px;}
.ws5f{word-spacing:-0.180000px;}
.wsd8{word-spacing:-0.153000px;}
.ws3f{word-spacing:-0.120000px;}
.wsdd{word-spacing:-0.102000px;}
.ws8a{word-spacing:-0.075970px;}
.wse{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:0.060000px;}
.ws89{word-spacing:0.082300px;}
.ws97{word-spacing:0.120000px;}
.wsc2{word-spacing:0.153000px;}
.wse3{word-spacing:0.204000px;}
.ws11{word-spacing:0.240000px;}
.wsc5{word-spacing:0.255000px;}
.ws19{word-spacing:0.300000px;}
.wscc{word-spacing:0.306000px;}
.wsc9{word-spacing:0.357000px;}
.ws12{word-spacing:0.360000px;}
.ws49{word-spacing:0.420000px;}
.ws74{word-spacing:0.459000px;}
.ws2c{word-spacing:0.480000px;}
.ws86{word-spacing:0.540000px;}
.ws63{word-spacing:0.600000px;}
.ws2a{word-spacing:0.660000px;}
.wsdc{word-spacing:0.765000px;}
.ws71{word-spacing:0.780000px;}
.wsb6{word-spacing:0.816000px;}
.ws9b{word-spacing:0.840000px;}
.wsd9{word-spacing:0.867000px;}
.ws44{word-spacing:0.900000px;}
.wsb1{word-spacing:0.918000px;}
.ws5d{word-spacing:0.960000px;}
.wse4{word-spacing:0.969000px;}
.ws34{word-spacing:1.020000px;}
.wsa7{word-spacing:1.071000px;}
.ws1b{word-spacing:1.080000px;}
.wsba{word-spacing:1.122000px;}
.ws41{word-spacing:1.140000px;}
.ws5e{word-spacing:1.200000px;}
.ws9{word-spacing:1.260000px;}
.wscf{word-spacing:1.275000px;}
.wsa{word-spacing:1.320000px;}
.wsd4{word-spacing:1.326000px;}
.wsd1{word-spacing:1.377000px;}
.ws20{word-spacing:1.380000px;}
.ws4d{word-spacing:1.440000px;}
.ws35{word-spacing:1.500000px;}
.ws65{word-spacing:1.560000px;}
.wsc7{word-spacing:1.581000px;}
.ws16{word-spacing:1.620000px;}
.wsc3{word-spacing:1.632000px;}
.ws8f{word-spacing:1.680000px;}
.wsdb{word-spacing:1.683000px;}
.ws27{word-spacing:1.740000px;}
.ws95{word-spacing:1.785000px;}
.ws1c{word-spacing:1.800000px;}
.ws73{word-spacing:1.860000px;}
.wsc6{word-spacing:1.887000px;}
.ws87{word-spacing:1.920000px;}
.ws14{word-spacing:1.980000px;}
.ws2f{word-spacing:2.040000px;}
.ws22{word-spacing:2.100000px;}
.wsa8{word-spacing:2.142000px;}
.ws21{word-spacing:2.160000px;}
.ws32{word-spacing:2.220000px;}
.ws25{word-spacing:2.280000px;}
.ws62{word-spacing:2.340000px;}
.wsa5{word-spacing:2.397000px;}
.ws57{word-spacing:2.400000px;}
.ws30{word-spacing:2.460000px;}
.wsca{word-spacing:2.499000px;}
.ws23{word-spacing:2.520000px;}
.ws9f{word-spacing:2.580000px;}
.ws18{word-spacing:2.640000px;}
.wsac{word-spacing:2.652000px;}
.ws36{word-spacing:2.700000px;}
.ws4c{word-spacing:2.760000px;}
.ws51{word-spacing:2.820000px;}
.wsde{word-spacing:2.856000px;}
.ws43{word-spacing:2.880000px;}
.wsdf{word-spacing:2.907000px;}
.ws6a{word-spacing:2.940000px;}
.wsd7{word-spacing:2.958000px;}
.ws5c{word-spacing:3.000000px;}
.wscb{word-spacing:3.009000px;}
.ws50{word-spacing:3.060000px;}
.ws92{word-spacing:3.120000px;}
.ws55{word-spacing:3.180000px;}
.ws52{word-spacing:3.240000px;}
.wsc4{word-spacing:3.264000px;}
.ws13{word-spacing:3.300000px;}
.ws68{word-spacing:3.315000px;}
.ws2b{word-spacing:3.360000px;}
.ws6d{word-spacing:3.417000px;}
.ws81{word-spacing:3.420000px;}
.ws3d{word-spacing:3.480000px;}
.wsc1{word-spacing:3.519000px;}
.ws67{word-spacing:3.540000px;}
.wsbf{word-spacing:3.570000px;}
.ws24{word-spacing:3.600000px;}
.ws60{word-spacing:3.660000px;}
.wsbd{word-spacing:3.672000px;}
.ws6b{word-spacing:3.720000px;}
.wsbe{word-spacing:3.723000px;}
.wsa6{word-spacing:3.774000px;}
.ws15{word-spacing:3.780000px;}
.wsaa{word-spacing:3.825000px;}
.ws66{word-spacing:3.840000px;}
.ws59{word-spacing:3.900000px;}
.ws39{word-spacing:4.020000px;}
.ws8e{word-spacing:4.140000px;}
.ws54{word-spacing:4.200000px;}
.wsab{word-spacing:4.233000px;}
.ws83{word-spacing:4.320000px;}
.ws6c{word-spacing:4.440000px;}
.wsb8{word-spacing:4.488000px;}
.ws46{word-spacing:4.500000px;}
.wsd2{word-spacing:4.539000px;}
.ws94{word-spacing:4.560000px;}
.wsb5{word-spacing:4.590000px;}
.ws9a{word-spacing:4.620000px;}
.wscd{word-spacing:4.641000px;}
.ws40{word-spacing:4.680000px;}
.ws82{word-spacing:4.740000px;}
.ws6e{word-spacing:4.794000px;}
.ws42{word-spacing:4.800000px;}
.wsc0{word-spacing:4.845000px;}
.ws3e{word-spacing:4.980000px;}
.wsa1{word-spacing:5.160000px;}
.ws91{word-spacing:5.220000px;}
.ws84{word-spacing:5.280000px;}
.wsda{word-spacing:5.355000px;}
.ws80{word-spacing:5.400000px;}
.wsb4{word-spacing:5.457000px;}
.ws9c{word-spacing:5.460000px;}
.wse0{word-spacing:5.610000px;}
.ws28{word-spacing:5.700000px;}
.ws26{word-spacing:5.760000px;}
.ws85{word-spacing:5.820000px;}
.wsb7{word-spacing:5.865000px;}
.ws47{word-spacing:6.000000px;}
.ws31{word-spacing:6.060000px;}
.wse1{word-spacing:6.273000px;}
.wse5{word-spacing:6.528000px;}
.ws53{word-spacing:6.840000px;}
.ws5b{word-spacing:6.900000px;}
.wse2{word-spacing:7.191000px;}
.ws58{word-spacing:7.200000px;}
.ws6f{word-spacing:7.854000px;}
.ws93{word-spacing:9.360000px;}
.ws90{word-spacing:9.660000px;}
.wse6{word-spacing:10.761000px;}
.ws64{word-spacing:11.640000px;}
.wse7{word-spacing:11.883000px;}
.ws77{word-spacing:14.625086px;}
.ws7b{word-spacing:17.989920px;}
.ws10{word-spacing:21.456000px;}
.ws7{word-spacing:43.416000px;}
.ws7c{word-spacing:47.818368px;}
.ws7e{word-spacing:52.228800px;}
.ws7a{word-spacing:63.564378px;}
.ws7d{word-spacing:81.592992px;}
.ws79{word-spacing:83.527392px;}
.ws78{word-spacing:112.891580px;}
.ws75{word-spacing:203.485761px;}
.ws76{word-spacing:203.650360px;}
._7{margin-left:-16.881000px;}
._23{margin-left:-15.759000px;}
._c{margin-left:-14.544000px;}
._10{margin-left:-13.404000px;}
._12{margin-left:-11.514000px;}
._15{margin-left:-9.600021px;}
._16{margin-left:-8.342400px;}
._18{margin-left:-7.290000px;}
._e{margin-left:-5.628000px;}
._5{margin-left:-3.870000px;}
._3{margin-left:-2.820000px;}
._0{margin-left:-1.632000px;}
._1{width:1.142400px;}
._2{width:2.284800px;}
._d{width:3.490800px;}
._17{width:4.596000px;}
._1b{width:6.911975px;}
._a{width:8.531962px;}
._1d{width:10.659000px;}
._14{width:12.513000px;}
._1e{width:13.821000px;}
._8{width:15.198000px;}
._6{width:16.320000px;}
._11{width:18.474000px;}
._24{width:19.992000px;}
._b{width:21.456000px;}
._20{width:23.490600px;}
._25{width:25.236000px;}
._1f{width:26.410200px;}
._22{width:28.023025px;}
._21{width:30.267025px;}
._13{width:33.000000px;}
._1c{width:36.000000px;}
._4{width:40.559368px;}
._1a{width:55.478592px;}
._19{width:120.900000px;}
._f{width:705.109757px;}
._9{width:706.437590px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(237,106,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:29.191800px;}
.fs8{font-size:35.699999px;}
.fsb{font-size:37.984800px;}
.fsd{font-size:38.688000px;}
.fsa{font-size:41.149800px;}
.fs5{font-size:42.000000px;}
.fse{font-size:46.777199px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y16e{bottom:3.580948px;}
.y1{bottom:68.829002px;}
.y29{bottom:69.499649px;}
.yc6{bottom:113.629795px;}
.y14f{bottom:113.635795px;}
.yf0{bottom:113.929802px;}
.y20f{bottom:114.555267px;}
.y102{bottom:114.555313px;}
.y122{bottom:114.690296px;}
.y22f{bottom:114.744605px;}
.y27{bottom:116.445750px;}
.y271{bottom:116.516886px;}
.y14e{bottom:128.629795px;}
.y22e{bottom:129.738605px;}
.y91{bottom:129.915344px;}
.y202{bottom:131.283325px;}
.y270{bottom:131.510886px;}
.y5e{bottom:132.165344px;}
.y20e{bottom:133.305267px;}
.y101{bottom:133.305313px;}
.y121{bottom:133.440296px;}
.y16f{bottom:135.472504px;}
.y162{bottom:139.194763px;}
.y158{bottom:139.899307px;}
.y169{bottom:141.950111px;}
.y167{bottom:142.008614px;}
.y22d{bottom:144.732605px;}
.y2{bottom:146.503796px;}
.y26f{bottom:146.504886px;}
.y90{bottom:148.665344px;}
.y201{bottom:150.033325px;}
.y5d{bottom:150.915344px;}
.y1cf{bottom:152.049261px;}
.y20d{bottom:152.055267px;}
.y100{bottom:152.055313px;}
.y120{bottom:152.190296px;}
.y22c{bottom:159.726605px;}
.y26e{bottom:161.498886px;}
.y8f{bottom:167.415344px;}
.y200{bottom:168.783325px;}
.y5c{bottom:169.665344px;}
.y157{bottom:170.546997px;}
.y1ce{bottom:170.799261px;}
.y20c{bottom:170.805267px;}
.y11f{bottom:170.940296px;}
.y16d{bottom:174.627445px;}
.y22b{bottom:174.720605px;}
.y26d{bottom:176.492886px;}
.y28{bottom:185.799145px;}
.y8e{bottom:186.165344px;}
.y1ff{bottom:187.533325px;}
.y5b{bottom:188.415344px;}
.y1cd{bottom:189.549261px;}
.y20b{bottom:189.555267px;}
.yff{bottom:189.555313px;}
.y11e{bottom:189.690296px;}
.y22a{bottom:189.714605px;}
.y1a8{bottom:190.147912px;}
.y26c{bottom:191.486886px;}
.y229{bottom:204.708605px;}
.y8d{bottom:204.915344px;}
.y1a7{bottom:205.141912px;}
.y1fe{bottom:206.283325px;}
.y26b{bottom:206.480886px;}
.y16c{bottom:206.953650px;}
.y5a{bottom:207.165344px;}
.y1cc{bottom:208.299261px;}
.y20a{bottom:208.305267px;}
.yfe{bottom:208.305313px;}
.y11d{bottom:208.440296px;}
.y16a{bottom:219.382805px;}
.y228{bottom:219.702605px;}
.y1a6{bottom:220.135912px;}
.y26a{bottom:221.474886px;}
.y151{bottom:222.017445px;}
.y8c{bottom:223.665344px;}
.y1fd{bottom:225.033325px;}
.y59{bottom:225.915344px;}
.y1cb{bottom:227.049261px;}
.y209{bottom:227.055267px;}
.y11c{bottom:227.190296px;}
.y25{bottom:231.723450px;}
.y152{bottom:233.889162px;}
.y227{bottom:234.696605px;}
.y1a5{bottom:235.129912px;}
.y269{bottom:236.468886px;}
.y154{bottom:238.888863px;}
.y159{bottom:239.165543px;}
.y8b{bottom:242.415344px;}
.y1fc{bottom:243.783325px;}
.y58{bottom:244.665344px;}
.y1ca{bottom:245.799261px;}
.y208{bottom:245.805267px;}
.yfd{bottom:245.805313px;}
.y11b{bottom:245.940296px;}
.y155{bottom:248.034406px;}
.y153{bottom:249.382062px;}
.y226{bottom:249.690605px;}
.y24{bottom:250.473450px;}
.y268{bottom:251.462886px;}
.y156{bottom:256.243791px;}
.y8a{bottom:261.165344px;}
.y1fb{bottom:262.533325px;}
.y57{bottom:263.415344px;}
.y15c{bottom:263.817678px;}
.y1c9{bottom:264.549261px;}
.y207{bottom:264.555267px;}
.yfc{bottom:264.555313px;}
.y11a{bottom:264.690296px;}
.y150{bottom:265.368759px;}
.y16b{bottom:265.954091px;}
.y267{bottom:266.456886px;}
.y23{bottom:269.223450px;}
.y15a{bottom:270.645446px;}
.y15d{bottom:272.497205px;}
.y15b{bottom:277.036388px;}
.y163{bottom:279.085510px;}
.y89{bottom:279.915344px;}
.y1fa{bottom:281.283325px;}
.yf8{bottom:281.354982px;}
.y266{bottom:281.450886px;}
.y56{bottom:282.165344px;}
.y1c8{bottom:283.299261px;}
.y206{bottom:283.305267px;}
.yfb{bottom:283.305313px;}
.y119{bottom:283.440296px;}
.y225{bottom:283.440605px;}
.y188{bottom:283.821304px;}
.y15f{bottom:285.279090px;}
.y1a3{bottom:285.846279px;}
.y22{bottom:287.973450px;}
.y165{bottom:294.146337px;}
.y160{bottom:294.860756px;}
.y15e{bottom:296.237705px;}
.yf7{bottom:296.348982px;}
.y265{bottom:296.444886px;}
.y88{bottom:298.665344px;}
.y1f9{bottom:300.033325px;}
.y55{bottom:300.915344px;}
.y164{bottom:301.450427px;}
.y1c7{bottom:302.049261px;}
.y205{bottom:302.055267px;}
.yfa{bottom:302.055313px;}
.y118{bottom:302.190296px;}
.y187{bottom:302.571304px;}
.y161{bottom:303.065472px;}
.y1a2{bottom:304.596279px;}
.y166{bottom:305.081896px;}
.y21{bottom:306.723450px;}
.y168{bottom:309.772499px;}
.yf6{bottom:311.342982px;}
.y264{bottom:311.438886px;}
.y87{bottom:317.415344px;}
.y1f8{bottom:318.783325px;}
.y54{bottom:319.665344px;}
.y1c6{bottom:320.799261px;}
.y204{bottom:320.805267px;}
.yde{bottom:320.805313px;}
.y117{bottom:320.940296px;}
.y186{bottom:321.321304px;}
.y1a1{bottom:323.346279px;}
.y20{bottom:325.473450px;}
.yf5{bottom:326.336982px;}
.y263{bottom:326.432886px;}
.y86{bottom:336.165344px;}
.y1f7{bottom:337.533325px;}
.y53{bottom:338.415344px;}
.y1c5{bottom:339.549261px;}
.y203{bottom:339.555267px;}
.ydd{bottom:339.555313px;}
.y185{bottom:340.071304px;}
.yf4{bottom:341.330982px;}
.y262{bottom:341.426886px;}
.y1a0{bottom:342.096279px;}
.y1f{bottom:344.223450px;}
.y85{bottom:354.915344px;}
.y1f6{bottom:356.283325px;}
.y261{bottom:356.420886px;}
.y52{bottom:357.165344px;}
.y1c4{bottom:358.299261px;}
.yb6{bottom:358.305267px;}
.ydc{bottom:358.305313px;}
.y116{bottom:358.440296px;}
.y224{bottom:358.506461px;}
.y184{bottom:358.821304px;}
.y1e{bottom:362.973450px;}
.y260{bottom:371.414886px;}
.y223{bottom:373.500461px;}
.y84{bottom:373.665344px;}
.y1f5{bottom:375.033325px;}
.y51{bottom:375.915344px;}
.y1c3{bottom:377.049261px;}
.yb5{bottom:377.055267px;}
.ydb{bottom:377.055313px;}
.y115{bottom:377.190296px;}
.y183{bottom:377.571304px;}
.y19f{bottom:379.596279px;}
.y1d{bottom:381.723450px;}
.y25f{bottom:386.408886px;}
.y222{bottom:388.494461px;}
.y83{bottom:392.415344px;}
.y1f4{bottom:393.783325px;}
.y50{bottom:394.665344px;}
.y1c2{bottom:395.799261px;}
.yb4{bottom:395.805267px;}
.yda{bottom:395.805313px;}
.y182{bottom:396.321304px;}
.y19e{bottom:398.346279px;}
.yf3{bottom:399.840732px;}
.y1c{bottom:400.473450px;}
.y25e{bottom:401.402886px;}
.y221{bottom:403.488461px;}
.y82{bottom:411.165344px;}
.y1f3{bottom:412.533325px;}
.y4f{bottom:413.415344px;}
.y1c1{bottom:414.549261px;}
.yb3{bottom:414.555267px;}
.yd9{bottom:414.555313px;}
.y114{bottom:414.690296px;}
.y13e{bottom:414.694794px;}
.yf2{bottom:414.834732px;}
.y181{bottom:415.071304px;}
.y25d{bottom:416.396886px;}
.y220{bottom:418.482461px;}
.y26{bottom:419.223450px;}
.y81{bottom:429.915344px;}
.y1f2{bottom:431.283325px;}
.y25c{bottom:431.390886px;}
.y4e{bottom:432.165344px;}
.y1c0{bottom:433.299261px;}
.yb2{bottom:433.305267px;}
.yd8{bottom:433.305313px;}
.y113{bottom:433.440296px;}
.y13d{bottom:433.444794px;}
.y21f{bottom:433.476461px;}
.y180{bottom:433.821304px;}
.y19d{bottom:435.846279px;}
.y1b{bottom:437.973450px;}
.y1aa{bottom:440.309696px;}
.y25b{bottom:446.384886px;}
.y80{bottom:448.665344px;}
.y1f1{bottom:450.033325px;}
.y4d{bottom:450.915344px;}
.y1bf{bottom:452.049261px;}
.yb1{bottom:452.055267px;}
.yd7{bottom:452.055313px;}
.y112{bottom:452.190296px;}
.y13c{bottom:452.194794px;}
.y17f{bottom:452.571304px;}
.y19c{bottom:454.596279px;}
.y1a9{bottom:455.303696px;}
.y25a{bottom:461.378886px;}
.y7f{bottom:467.415344px;}
.y1f0{bottom:468.783325px;}
.y4c{bottom:469.665344px;}
.y1be{bottom:470.799261px;}
.yb0{bottom:470.805267px;}
.yd6{bottom:470.805313px;}
.y111{bottom:470.940296px;}
.y13b{bottom:470.944794px;}
.y17e{bottom:471.321304px;}
.y19b{bottom:473.346279px;}
.y21e{bottom:474.671711px;}
.y259{bottom:476.372886px;}
.y7e{bottom:486.165344px;}
.y1ef{bottom:487.533325px;}
.y4b{bottom:488.415344px;}
.y1bd{bottom:489.549261px;}
.yaf{bottom:489.555267px;}
.yd5{bottom:489.555313px;}
.y21d{bottom:489.665711px;}
.y110{bottom:489.690296px;}
.y13a{bottom:489.694794px;}
.y17d{bottom:490.071304px;}
.y258{bottom:491.366886px;}
.y19a{bottom:492.096279px;}
.y1a{bottom:494.223450px;}
.y7d{bottom:504.915344px;}
.y1ee{bottom:506.283325px;}
.y257{bottom:506.360886px;}
.y4a{bottom:507.165344px;}
.y1bc{bottom:508.299261px;}
.yae{bottom:508.305267px;}
.yd4{bottom:508.305313px;}
.y10f{bottom:508.440296px;}
.y139{bottom:508.444794px;}
.y17c{bottom:508.821304px;}
.y199{bottom:510.846279px;}
.y21c{bottom:519.628211px;}
.y256{bottom:521.354886px;}
.y7c{bottom:523.665344px;}
.y1ed{bottom:525.033325px;}
.y49{bottom:525.915344px;}
.y1bb{bottom:527.049261px;}
.yad{bottom:527.055267px;}
.yd3{bottom:527.055313px;}
.y10e{bottom:527.190296px;}
.y138{bottom:527.194794px;}
.y17b{bottom:527.571304px;}
.y198{bottom:529.596279px;}
.y19{bottom:531.723450px;}
.y21b{bottom:534.622211px;}
.y255{bottom:536.348886px;}
.y7b{bottom:542.415344px;}
.y1ec{bottom:543.783325px;}
.y48{bottom:544.665344px;}
.yac{bottom:545.805267px;}
.yd2{bottom:545.805313px;}
.y10d{bottom:545.940296px;}
.y137{bottom:545.944794px;}
.y17a{bottom:546.321304px;}
.y197{bottom:548.346279px;}
.y21a{bottom:549.616211px;}
.y18{bottom:550.473450px;}
.y254{bottom:551.342886px;}
.y7a{bottom:561.165344px;}
.y1eb{bottom:562.533325px;}
.y47{bottom:563.415344px;}
.y1ba{bottom:564.549261px;}
.yab{bottom:564.555267px;}
.yd1{bottom:564.555313px;}
.y10c{bottom:564.690296px;}
.y136{bottom:564.694794px;}
.y179{bottom:565.071304px;}
.y253{bottom:566.336886px;}
.y196{bottom:567.096279px;}
.y17{bottom:569.223450px;}
.y219{bottom:579.578711px;}
.y79{bottom:579.915344px;}
.y1ea{bottom:581.283325px;}
.y252{bottom:581.330886px;}
.y46{bottom:582.165344px;}
.yaa{bottom:583.305267px;}
.yd0{bottom:583.305313px;}
.y10b{bottom:583.440296px;}
.y14c{bottom:583.444794px;}
.y195{bottom:585.846279px;}
.y16{bottom:587.973450px;}
.y218{bottom:594.572711px;}
.y251{bottom:596.324886px;}
.y78{bottom:598.665344px;}
.y1e9{bottom:600.033325px;}
.y45{bottom:600.915344px;}
.y1b9{bottom:602.049261px;}
.ya9{bottom:602.055267px;}
.ycf{bottom:602.055313px;}
.y10a{bottom:602.190296px;}
.y135{bottom:602.194794px;}
.y178{bottom:602.571304px;}
.y194{bottom:604.596279px;}
.y15{bottom:606.723450px;}
.y217{bottom:609.566711px;}
.y292{bottom:611.263838px;}
.y250{bottom:611.318886px;}
.y77{bottom:617.415344px;}
.y1e8{bottom:618.783325px;}
.y44{bottom:619.665344px;}
.y1b8{bottom:620.799261px;}
.ya8{bottom:620.805267px;}
.yce{bottom:620.805313px;}
.y109{bottom:620.940296px;}
.y14b{bottom:620.944794px;}
.y177{bottom:621.321304px;}
.y193{bottom:623.346279px;}
.y14{bottom:625.473450px;}
.y2b1{bottom:625.594830px;}
.y291{bottom:626.257838px;}
.y24f{bottom:626.312886px;}
.y76{bottom:636.165344px;}
.y1e7{bottom:637.533325px;}
.y43{bottom:638.415344px;}
.y1b7{bottom:639.549261px;}
.ya7{bottom:639.555267px;}
.ycd{bottom:639.555313px;}
.y108{bottom:639.690296px;}
.y14a{bottom:639.694794px;}
.y134{bottom:639.699268px;}
.y2b0{bottom:640.588830px;}
.y290{bottom:641.251838px;}
.y24e{bottom:641.306886px;}
.y192{bottom:642.096279px;}
.y216{bottom:643.316711px;}
.y13{bottom:644.223450px;}
.y75{bottom:654.915344px;}
.y28f{bottom:656.245838px;}
.y1e6{bottom:656.283325px;}
.y24d{bottom:656.300886px;}
.y42{bottom:657.165344px;}
.y1b6{bottom:658.299261px;}
.ya6{bottom:658.305267px;}
.ycc{bottom:658.305313px;}
.y107{bottom:658.440296px;}
.y149{bottom:658.444794px;}
.y133{bottom:658.449268px;}
.y176{bottom:658.821304px;}
.y191{bottom:660.846279px;}
.y12{bottom:662.973450px;}
.y28e{bottom:671.239838px;}
.y24c{bottom:671.294886px;}
.y2af{bottom:671.431080px;}
.y74{bottom:673.665344px;}
.y1e5{bottom:675.033325px;}
.y41{bottom:675.915344px;}
.y1b5{bottom:677.049261px;}
.ya5{bottom:677.055267px;}
.ycb{bottom:677.055313px;}
.y106{bottom:677.190296px;}
.y148{bottom:677.194794px;}
.y132{bottom:677.199268px;}
.y175{bottom:677.571304px;}
.y190{bottom:679.596279px;}
.y215{bottom:680.876695px;}
.y11{bottom:681.723450px;}
.y28d{bottom:686.233838px;}
.y24b{bottom:686.288886px;}
.y2ae{bottom:686.425080px;}
.y73{bottom:692.415344px;}
.y1e4{bottom:693.783325px;}
.y40{bottom:694.665344px;}
.y1b4{bottom:695.799261px;}
.ya4{bottom:695.805267px;}
.yca{bottom:695.805313px;}
.y214{bottom:695.870695px;}
.y105{bottom:695.940296px;}
.y147{bottom:695.944794px;}
.y131{bottom:695.949268px;}
.y174{bottom:696.321304px;}
.y18f{bottom:698.346279px;}
.y10{bottom:700.473450px;}
.y28c{bottom:701.227838px;}
.y24a{bottom:701.282886px;}
.y2ad{bottom:701.419080px;}
.y213{bottom:710.864695px;}
.y72{bottom:711.165344px;}
.y1e3{bottom:712.533325px;}
.y3f{bottom:713.415344px;}
.y1b3{bottom:714.549261px;}
.ya3{bottom:714.555267px;}
.yc9{bottom:714.555313px;}
.y104{bottom:714.690296px;}
.y146{bottom:714.694794px;}
.y130{bottom:714.699268px;}
.y173{bottom:715.071304px;}
.y28b{bottom:716.221838px;}
.y249{bottom:716.276886px;}
.y2ac{bottom:716.413080px;}
.y18e{bottom:717.096279px;}
.yf{bottom:719.223450px;}
.y212{bottom:725.858695px;}
.y71{bottom:729.915344px;}
.y28a{bottom:731.215838px;}
.y248{bottom:731.270886px;}
.y1e2{bottom:731.283325px;}
.y2ab{bottom:731.407080px;}
.y3e{bottom:732.165344px;}
.y1b2{bottom:733.299261px;}
.ya2{bottom:733.305267px;}
.yef{bottom:733.305313px;}
.y103{bottom:733.440296px;}
.y145{bottom:733.444794px;}
.y12f{bottom:733.449268px;}
.y18d{bottom:735.846279px;}
.ye{bottom:737.973450px;}
.y211{bottom:740.852695px;}
.y289{bottom:746.209838px;}
.y247{bottom:746.264886px;}
.y2aa{bottom:746.401080px;}
.y70{bottom:748.665344px;}
.y1e1{bottom:750.033325px;}
.y3d{bottom:750.915344px;}
.y1b1{bottom:752.049261px;}
.yc5{bottom:752.055267px;}
.yc8{bottom:752.055313px;}
.y144{bottom:752.194794px;}
.y12e{bottom:752.199268px;}
.y172{bottom:752.571304px;}
.y18c{bottom:754.596279px;}
.y210{bottom:755.846695px;}
.yd{bottom:756.723450px;}
.y288{bottom:761.203838px;}
.y246{bottom:761.258886px;}
.y2a9{bottom:761.395080px;}
.y6f{bottom:767.415344px;}
.y1e0{bottom:768.783325px;}
.y3c{bottom:769.665344px;}
.y1b0{bottom:770.799261px;}
.ya1{bottom:770.805267px;}
.yee{bottom:770.805313px;}
.y12d{bottom:770.949268px;}
.y18b{bottom:773.346279px;}
.yc{bottom:775.473450px;}
.y287{bottom:776.197838px;}
.y245{bottom:776.252886px;}
.y2a8{bottom:776.389080px;}
.y6e{bottom:786.165344px;}
.y1df{bottom:787.533325px;}
.y3b{bottom:788.415344px;}
.y1af{bottom:789.549261px;}
.ya0{bottom:789.555267px;}
.yed{bottom:789.555313px;}
.yc7{bottom:789.561267px;}
.y143{bottom:789.694794px;}
.y12c{bottom:789.699268px;}
.y171{bottom:790.065259px;}
.y286{bottom:791.191838px;}
.y244{bottom:791.246886px;}
.y2a7{bottom:791.383080px;}
.y126{bottom:792.088770px;}
.y18a{bottom:792.096279px;}
.yb{bottom:794.223450px;}
.y6d{bottom:804.915344px;}
.y285{bottom:806.185838px;}
.y243{bottom:806.240886px;}
.y1de{bottom:806.283325px;}
.y2a6{bottom:806.377080px;}
.y125{bottom:807.082770px;}
.y3a{bottom:807.165344px;}
.y1ae{bottom:808.299261px;}
.yc4{bottom:808.305267px;}
.yec{bottom:808.305313px;}
.y12b{bottom:808.449268px;}
.y170{bottom:808.821259px;}
.y189{bottom:810.846279px;}
.ya{bottom:812.973450px;}
.y284{bottom:821.179838px;}
.y242{bottom:821.234886px;}
.y2a5{bottom:821.371080px;}
.y124{bottom:822.076770px;}
.y6c{bottom:823.665344px;}
.y1dd{bottom:825.033325px;}
.y39{bottom:825.915344px;}
.y1ad{bottom:827.049261px;}
.yf1{bottom:827.055267px;}
.yeb{bottom:827.055313px;}
.y9f{bottom:827.061267px;}
.y142{bottom:827.194794px;}
.y12a{bottom:827.199268px;}
.y9{bottom:831.723450px;}
.y283{bottom:836.173838px;}
.y241{bottom:836.228886px;}
.y2a4{bottom:836.365080px;}
.y123{bottom:837.070770px;}
.y6b{bottom:842.415344px;}
.y1dc{bottom:843.783325px;}
.y38{bottom:844.665344px;}
.y1ac{bottom:845.799261px;}
.y9e{bottom:845.805267px;}
.yea{bottom:845.805313px;}
.y141{bottom:845.944794px;}
.y129{bottom:845.949268px;}
.y8{bottom:850.473450px;}
.y282{bottom:851.167838px;}
.y240{bottom:851.222886px;}
.y2a3{bottom:851.359080px;}
.y6a{bottom:861.165344px;}
.y1db{bottom:862.533325px;}
.y1a4{bottom:862.990906px;}
.y37{bottom:863.415344px;}
.y1ab{bottom:864.549261px;}
.yc3{bottom:864.555267px;}
.ye9{bottom:864.555313px;}
.y140{bottom:864.694794px;}
.y128{bottom:864.699268px;}
.y281{bottom:866.161838px;}
.y23f{bottom:866.216886px;}
.y2a2{bottom:866.353080px;}
.y69{bottom:879.915344px;}
.y280{bottom:881.155838px;}
.y23e{bottom:881.210886px;}
.y1da{bottom:881.283325px;}
.y2a1{bottom:881.347080px;}
.y36{bottom:882.165344px;}
.y9d{bottom:883.299261px;}
.yc2{bottom:883.305267px;}
.ye8{bottom:883.305313px;}
.y13f{bottom:883.444794px;}
.y127{bottom:883.449268px;}
.y7{bottom:894.650208px;}
.y27f{bottom:896.149838px;}
.y23d{bottom:896.204886px;}
.y2a0{bottom:896.341080px;}
.y68{bottom:898.665344px;}
.y1d9{bottom:900.033325px;}
.y35{bottom:900.915344px;}
.y9c{bottom:902.049261px;}
.yc1{bottom:902.055267px;}
.ye7{bottom:902.055313px;}
.y27e{bottom:911.143838px;}
.y23c{bottom:911.198886px;}
.y29f{bottom:911.335080px;}
.y67{bottom:917.415344px;}
.y1d8{bottom:918.783325px;}
.y34{bottom:919.665344px;}
.y9b{bottom:920.799261px;}
.yf9{bottom:920.799267px;}
.yc0{bottom:920.805267px;}
.y27d{bottom:926.137838px;}
.y23b{bottom:926.192886px;}
.y29e{bottom:926.329080px;}
.y14d{bottom:930.310913px;}
.y66{bottom:936.165344px;}
.y6{bottom:937.250244px;}
.y1d7{bottom:937.533325px;}
.y33{bottom:938.415344px;}
.y9a{bottom:939.549261px;}
.ybf{bottom:939.555267px;}
.ye6{bottom:939.555313px;}
.y27c{bottom:941.131838px;}
.y23a{bottom:941.186886px;}
.y29d{bottom:941.323080px;}
.y65{bottom:954.915344px;}
.y27b{bottom:956.125838px;}
.y239{bottom:956.180886px;}
.y1d6{bottom:956.283325px;}
.y29c{bottom:956.317080px;}
.y32{bottom:957.165344px;}
.y99{bottom:958.299261px;}
.ybe{bottom:958.305267px;}
.y27a{bottom:971.119838px;}
.y238{bottom:971.174886px;}
.y29b{bottom:971.311080px;}
.y64{bottom:973.665344px;}
.y1d5{bottom:975.033325px;}
.y31{bottom:975.915344px;}
.y98{bottom:977.049261px;}
.ybd{bottom:977.055267px;}
.ye5{bottom:977.055313px;}
.y5{bottom:981.936768px;}
.y279{bottom:986.113838px;}
.y237{bottom:986.168886px;}
.y29a{bottom:986.305080px;}
.y63{bottom:992.415344px;}
.y1d4{bottom:993.783325px;}
.y30{bottom:994.665344px;}
.y97{bottom:995.799261px;}
.ybc{bottom:995.805267px;}
.ye4{bottom:995.805313px;}
.y278{bottom:1001.107838px;}
.y236{bottom:1001.162886px;}
.y299{bottom:1001.299080px;}
.y4{bottom:1008.936768px;}
.y62{bottom:1011.165344px;}
.y1d3{bottom:1012.533325px;}
.y2f{bottom:1013.415344px;}
.y96{bottom:1014.549261px;}
.ybb{bottom:1014.555267px;}
.ye3{bottom:1014.555313px;}
.y277{bottom:1016.101838px;}
.y235{bottom:1016.156886px;}
.y298{bottom:1016.293080px;}
.y61{bottom:1029.915344px;}
.y276{bottom:1031.095838px;}
.y234{bottom:1031.150886px;}
.y1d2{bottom:1031.283325px;}
.y297{bottom:1031.287080px;}
.y2e{bottom:1032.165344px;}
.y95{bottom:1033.299261px;}
.yba{bottom:1033.305267px;}
.ye2{bottom:1033.305313px;}
.y275{bottom:1046.089838px;}
.y233{bottom:1046.144886px;}
.y296{bottom:1046.281080px;}
.y1d1{bottom:1050.033325px;}
.y2d{bottom:1050.915344px;}
.y3{bottom:1051.470154px;}
.y94{bottom:1052.049261px;}
.yb9{bottom:1052.055267px;}
.ye1{bottom:1052.055313px;}
.y274{bottom:1061.083838px;}
.y232{bottom:1061.138886px;}
.y295{bottom:1061.275080px;}
.y60{bottom:1067.409344px;}
.y2c{bottom:1069.665344px;}
.y93{bottom:1070.799261px;}
.yb8{bottom:1070.805267px;}
.ye0{bottom:1070.805313px;}
.y273{bottom:1076.077838px;}
.y231{bottom:1076.132886px;}
.y294{bottom:1076.269080px;}
.y5f{bottom:1086.165344px;}
.y1d0{bottom:1087.533325px;}
.y2b{bottom:1088.415344px;}
.y92{bottom:1089.549261px;}
.yb7{bottom:1089.555267px;}
.ydf{bottom:1089.555313px;}
.y272{bottom:1091.071838px;}
.y230{bottom:1091.126886px;}
.y293{bottom:1091.263080px;}
.y2a{bottom:1125.794861px;}
.h19{height:18.711944px;}
.h1a{height:18.945478px;}
.h17{height:24.348257px;}
.h1b{height:26.307840px;}
.h14{height:26.377022px;}
.h1c{height:31.808495px;}
.h18{height:35.512277px;}
.h2{height:42.048000px;}
.hd{height:42.384000px;}
.h15{height:44.647533px;}
.h3{height:44.676000px;}
.h7{height:47.304000px;}
.h13{height:48.552000px;}
.h11{height:49.113000px;}
.h12{height:50.439000px;}
.he{height:52.980000px;}
.hc{height:54.387003px;}
.h4{height:55.404000px;}
.h9{height:57.120000px;}
.hf{height:57.397603px;}
.ha{height:57.780000px;}
.h8{height:59.340000px;}
.h10{height:64.680000px;}
.h6{height:64.824000px;}
.hb{height:71.208000px;}
.h5{height:92.448000px;}
.h16{height:150.343494px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:739.841995px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:51.022653px;}
.x3{left:76.535402px;}
.x5{left:93.530410px;}
.xa{left:95.525402px;}
.x20{left:102.048152px;}
.x13{left:104.306402px;}
.x8{left:105.971402px;}
.x9{left:113.345402px;}
.x2{left:119.817902px;}
.x1b{left:132.747813px;}
.x1a{left:137.963550px;}
.x1e{left:161.000999px;}
.x1d{left:166.422455px;}
.xc{left:175.479595px;}
.x19{left:227.464651px;}
.x14{left:239.753998px;}
.xd{left:241.957096px;}
.x1f{left:283.474646px;}
.xe{left:300.667571px;}
.x15{left:362.273970px;}
.x16{left:423.562445px;}
.x4{left:459.200392px;}
.x18{left:471.754789px;}
.x7{left:476.237540px;}
.x6{left:478.202540px;}
.x17{left:484.822431px;}
.xb{left:495.515402px;}
.xf{left:545.745490px;}
.x10{left:606.996967px;}
.x11{left:668.279305px;}
.x1{left:728.220612px;}
.x12{left:729.530782px;}
@media print{
.v7{vertical-align:-4.937976pt;}
.v1{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.536259pt;}
.v4{vertical-align:4.266602pt;}
.v8{vertical-align:8.120227pt;}
.v5{vertical-align:16.240454pt;}
.v3{vertical-align:18.133870pt;}
.v2{vertical-align:21.333333pt;}
.ls61{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.426667pt;}
.ls38{letter-spacing:-0.373333pt;}
.ls36{letter-spacing:-0.320000pt;}
.ls88{letter-spacing:-0.317333pt;}
.ls89{letter-spacing:-0.272000pt;}
.ls37{letter-spacing:-0.266667pt;}
.ls8f{letter-spacing:-0.226667pt;}
.ls39{letter-spacing:-0.213333pt;}
.ls87{letter-spacing:-0.181333pt;}
.ls3f{letter-spacing:-0.160000pt;}
.ls86{letter-spacing:-0.136000pt;}
.ls3e{letter-spacing:-0.106667pt;}
.ls85{letter-spacing:-0.090667pt;}
.ls52{letter-spacing:-0.073155pt;}
.ls18{letter-spacing:-0.053333pt;}
.ls90{letter-spacing:-0.045333pt;}
.ls55{letter-spacing:-0.034389pt;}
.ls17{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.034389pt;}
.ls6a{letter-spacing:0.045333pt;}
.ls5{letter-spacing:0.053333pt;}
.ls53{letter-spacing:0.067529pt;}
.ls4e{letter-spacing:0.068779pt;}
.ls3c{letter-spacing:0.080000pt;}
.ls6e{letter-spacing:0.090667pt;}
.ls33{letter-spacing:0.106667pt;}
.ls56{letter-spacing:0.124739pt;}
.ls16{letter-spacing:0.134131pt;}
.ls8e{letter-spacing:0.136000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.181333pt;}
.ls5e{letter-spacing:0.186667pt;}
.ls1{letter-spacing:0.213333pt;}
.ls67{letter-spacing:0.226667pt;}
.ls69{letter-spacing:0.234667pt;}
.ls3d{letter-spacing:0.250656pt;}
.ls6b{letter-spacing:0.256000pt;}
.ls34{letter-spacing:0.266667pt;}
.ls73{letter-spacing:0.272000pt;}
.ls46{letter-spacing:0.293333pt;}
.ls8b{letter-spacing:0.317333pt;}
.ls32{letter-spacing:0.320000pt;}
.ls83{letter-spacing:0.340000pt;}
.ls72{letter-spacing:0.362667pt;}
.ls3{letter-spacing:0.373333pt;}
.ls45{letter-spacing:0.400000pt;}
.ls74{letter-spacing:0.408000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls1e{letter-spacing:0.453333pt;}
.ls5b{letter-spacing:0.458667pt;}
.ls1d{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.485333pt;}
.ls82{letter-spacing:0.498667pt;}
.ls62{letter-spacing:0.506667pt;}
.ls8c{letter-spacing:0.521333pt;}
.ls6{letter-spacing:0.533333pt;}
.ls77{letter-spacing:0.544000pt;}
.lse{letter-spacing:0.586667pt;}
.ls71{letter-spacing:0.589333pt;}
.ls5a{letter-spacing:0.597333pt;}
.ls12{letter-spacing:0.613310pt;}
.ls3a{letter-spacing:0.613333pt;}
.ls63{letter-spacing:0.634667pt;}
.ls2d{letter-spacing:0.640000pt;}
.ls59{letter-spacing:0.666667pt;}
.ls68{letter-spacing:0.680000pt;}
.ls25{letter-spacing:0.693333pt;}
.ls5d{letter-spacing:0.720000pt;}
.ls64{letter-spacing:0.725333pt;}
.ls29{letter-spacing:0.746667pt;}
.ls44{letter-spacing:0.762649pt;}
.ls5f{letter-spacing:0.773333pt;}
.ls35{letter-spacing:0.800000pt;}
.ls4a{letter-spacing:0.810667pt;}
.ls65{letter-spacing:0.816000pt;}
.ls60{letter-spacing:0.826667pt;}
.ls2a{letter-spacing:0.853333pt;}
.ls76{letter-spacing:0.861333pt;}
.ls7{letter-spacing:0.906667pt;}
.ls1f{letter-spacing:0.933333pt;}
.ls66{letter-spacing:0.952000pt;}
.ls8{letter-spacing:0.960000pt;}
.ls7b{letter-spacing:0.997333pt;}
.ls19{letter-spacing:1.013333pt;}
.ls70{letter-spacing:1.020000pt;}
.ls14{letter-spacing:1.040000pt;}
.ls7c{letter-spacing:1.042667pt;}
.ls11{letter-spacing:1.066667pt;}
.ls6d{letter-spacing:1.088000pt;}
.ls3b{letter-spacing:1.093333pt;}
.ls1b{letter-spacing:1.120000pt;}
.ls81{letter-spacing:1.133333pt;}
.ls28{letter-spacing:1.173333pt;}
.ls84{letter-spacing:1.178667pt;}
.ls31{letter-spacing:1.221333pt;}
.ls7a{letter-spacing:1.224000pt;}
.lsc{letter-spacing:1.226667pt;}
.ls6c{letter-spacing:1.269333pt;}
.ls27{letter-spacing:1.280000pt;}
.ls2b{letter-spacing:1.327975pt;}
.ls1a{letter-spacing:1.333333pt;}
.ls7e{letter-spacing:1.360000pt;}
.ls48{letter-spacing:1.375989pt;}
.lsd{letter-spacing:1.386667pt;}
.ls8d{letter-spacing:1.405333pt;}
.ls13{letter-spacing:1.413333pt;}
.lsa{letter-spacing:1.440000pt;}
.ls7f{letter-spacing:1.450667pt;}
.ls43{letter-spacing:1.466667pt;}
.ls1c{letter-spacing:1.493333pt;}
.ls7d{letter-spacing:1.496000pt;}
.ls57{letter-spacing:1.520000pt;}
.ls79{letter-spacing:1.541333pt;}
.ls10{letter-spacing:1.546667pt;}
.ls5c{letter-spacing:1.584000pt;}
.ls75{letter-spacing:1.586667pt;}
.ls30{letter-spacing:1.600000pt;}
.ls9{letter-spacing:1.653333pt;}
.ls42{letter-spacing:1.680000pt;}
.ls24{letter-spacing:1.706667pt;}
.ls6f{letter-spacing:1.722667pt;}
.ls20{letter-spacing:1.733333pt;}
.lsb{letter-spacing:1.760000pt;}
.ls80{letter-spacing:1.768000pt;}
.ls78{letter-spacing:1.790667pt;}
.ls2c{letter-spacing:1.813333pt;}
.ls47{letter-spacing:1.866667pt;}
.ls2f{letter-spacing:1.920000pt;}
.ls2e{letter-spacing:1.973333pt;}
.ls8a{letter-spacing:1.994667pt;}
.ls49{letter-spacing:2.026667pt;}
.ls23{letter-spacing:2.080000pt;}
.ls22{letter-spacing:2.106667pt;}
.ls21{letter-spacing:2.133333pt;}
.ls26{letter-spacing:2.186667pt;}
.ls58{letter-spacing:2.293333pt;}
.ls41{letter-spacing:2.400000pt;}
.ls0{letter-spacing:2.533333pt;}
.ls51{letter-spacing:140.633333pt;}
.ls50{letter-spacing:140.633415pt;}
.ls54{letter-spacing:199.274765pt;}
.ls4c{letter-spacing:204.628022pt;}
.ls4d{letter-spacing:204.653979pt;}
.ls4b{letter-spacing:204.757766pt;}
.ws8c{word-spacing:-204.653979pt;}
.ws8b{word-spacing:-199.274765pt;}
.wsa3{word-spacing:-13.184000pt;}
.ws1f{word-spacing:-12.928000pt;}
.ws8d{word-spacing:-12.426667pt;}
.ws96{word-spacing:-12.320000pt;}
.ws9d{word-spacing:-12.106667pt;}
.ws61{word-spacing:-11.733333pt;}
.ws69{word-spacing:-11.520000pt;}
.ws4f{word-spacing:-11.088000pt;}
.wsd3{word-spacing:-11.061333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.wsb9{word-spacing:-10.472000pt;}
.wsa4{word-spacing:-10.426667pt;}
.ws5{word-spacing:-10.240000pt;}
.wsd6{word-spacing:-9.837333pt;}
.wsb2{word-spacing:-9.792000pt;}
.ws7f{word-spacing:-9.521759pt;}
.ws1e{word-spacing:-9.344000pt;}
.wsa2{word-spacing:-9.338667pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws3{word-spacing:-7.728000pt;}
.ws72{word-spacing:-4.640000pt;}
.wsa0{word-spacing:-3.306667pt;}
.ws56{word-spacing:-2.240000pt;}
.ws29{word-spacing:-2.133333pt;}
.ws3c{word-spacing:-1.813333pt;}
.ws38{word-spacing:-1.493333pt;}
.ws3b{word-spacing:-1.440000pt;}
.ws3a{word-spacing:-1.333333pt;}
.ws9e{word-spacing:-1.280000pt;}
.ws5a{word-spacing:-1.226667pt;}
.wsd{word-spacing:-1.173333pt;}
.ws8{word-spacing:-1.120000pt;}
.wsbb{word-spacing:-1.088000pt;}
.ws1a{word-spacing:-1.066667pt;}
.wsc8{word-spacing:-1.042667pt;}
.ws99{word-spacing:-1.013333pt;}
.wsb0{word-spacing:-0.997333pt;}
.ws2e{word-spacing:-0.960000pt;}
.wsad{word-spacing:-0.952000pt;}
.ws37{word-spacing:-0.906667pt;}
.wsaf{word-spacing:-0.861333pt;}
.ws70{word-spacing:-0.853333pt;}
.wsb3{word-spacing:-0.816000pt;}
.ws4e{word-spacing:-0.800000pt;}
.ws45{word-spacing:-0.746667pt;}
.ws2d{word-spacing:-0.693333pt;}
.wsd5{word-spacing:-0.680000pt;}
.ws4a{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.586667pt;}
.wsf{word-spacing:-0.533333pt;}
.wsae{word-spacing:-0.498667pt;}
.ws98{word-spacing:-0.480000pt;}
.ws1d{word-spacing:-0.453333pt;}
.ws4b{word-spacing:-0.426667pt;}
.wsbc{word-spacing:-0.408000pt;}
.ws88{word-spacing:-0.373333pt;}
.wsd0{word-spacing:-0.362667pt;}
.ws48{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.266667pt;}
.wsce{word-spacing:-0.226667pt;}
.ws33{word-spacing:-0.213333pt;}
.wsa9{word-spacing:-0.181333pt;}
.ws5f{word-spacing:-0.160000pt;}
.wsd8{word-spacing:-0.136000pt;}
.ws3f{word-spacing:-0.106667pt;}
.wsdd{word-spacing:-0.090667pt;}
.ws8a{word-spacing:-0.067529pt;}
.wse{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:0.053333pt;}
.ws89{word-spacing:0.073155pt;}
.ws97{word-spacing:0.106667pt;}
.wsc2{word-spacing:0.136000pt;}
.wse3{word-spacing:0.181333pt;}
.ws11{word-spacing:0.213333pt;}
.wsc5{word-spacing:0.226667pt;}
.ws19{word-spacing:0.266667pt;}
.wscc{word-spacing:0.272000pt;}
.wsc9{word-spacing:0.317333pt;}
.ws12{word-spacing:0.320000pt;}
.ws49{word-spacing:0.373333pt;}
.ws74{word-spacing:0.408000pt;}
.ws2c{word-spacing:0.426667pt;}
.ws86{word-spacing:0.480000pt;}
.ws63{word-spacing:0.533333pt;}
.ws2a{word-spacing:0.586667pt;}
.wsdc{word-spacing:0.680000pt;}
.ws71{word-spacing:0.693333pt;}
.wsb6{word-spacing:0.725333pt;}
.ws9b{word-spacing:0.746667pt;}
.wsd9{word-spacing:0.770667pt;}
.ws44{word-spacing:0.800000pt;}
.wsb1{word-spacing:0.816000pt;}
.ws5d{word-spacing:0.853333pt;}
.wse4{word-spacing:0.861333pt;}
.ws34{word-spacing:0.906667pt;}
.wsa7{word-spacing:0.952000pt;}
.ws1b{word-spacing:0.960000pt;}
.wsba{word-spacing:0.997333pt;}
.ws41{word-spacing:1.013333pt;}
.ws5e{word-spacing:1.066667pt;}
.ws9{word-spacing:1.120000pt;}
.wscf{word-spacing:1.133333pt;}
.wsa{word-spacing:1.173333pt;}
.wsd4{word-spacing:1.178667pt;}
.wsd1{word-spacing:1.224000pt;}
.ws20{word-spacing:1.226667pt;}
.ws4d{word-spacing:1.280000pt;}
.ws35{word-spacing:1.333333pt;}
.ws65{word-spacing:1.386667pt;}
.wsc7{word-spacing:1.405333pt;}
.ws16{word-spacing:1.440000pt;}
.wsc3{word-spacing:1.450667pt;}
.ws8f{word-spacing:1.493333pt;}
.wsdb{word-spacing:1.496000pt;}
.ws27{word-spacing:1.546667pt;}
.ws95{word-spacing:1.586667pt;}
.ws1c{word-spacing:1.600000pt;}
.ws73{word-spacing:1.653333pt;}
.wsc6{word-spacing:1.677333pt;}
.ws87{word-spacing:1.706667pt;}
.ws14{word-spacing:1.760000pt;}
.ws2f{word-spacing:1.813333pt;}
.ws22{word-spacing:1.866667pt;}
.wsa8{word-spacing:1.904000pt;}
.ws21{word-spacing:1.920000pt;}
.ws32{word-spacing:1.973333pt;}
.ws25{word-spacing:2.026667pt;}
.ws62{word-spacing:2.080000pt;}
.wsa5{word-spacing:2.130667pt;}
.ws57{word-spacing:2.133333pt;}
.ws30{word-spacing:2.186667pt;}
.wsca{word-spacing:2.221333pt;}
.ws23{word-spacing:2.240000pt;}
.ws9f{word-spacing:2.293333pt;}
.ws18{word-spacing:2.346667pt;}
.wsac{word-spacing:2.357333pt;}
.ws36{word-spacing:2.400000pt;}
.ws4c{word-spacing:2.453333pt;}
.ws51{word-spacing:2.506667pt;}
.wsde{word-spacing:2.538667pt;}
.ws43{word-spacing:2.560000pt;}
.wsdf{word-spacing:2.584000pt;}
.ws6a{word-spacing:2.613333pt;}
.wsd7{word-spacing:2.629333pt;}
.ws5c{word-spacing:2.666667pt;}
.wscb{word-spacing:2.674667pt;}
.ws50{word-spacing:2.720000pt;}
.ws92{word-spacing:2.773333pt;}
.ws55{word-spacing:2.826667pt;}
.ws52{word-spacing:2.880000pt;}
.wsc4{word-spacing:2.901333pt;}
.ws13{word-spacing:2.933333pt;}
.ws68{word-spacing:2.946667pt;}
.ws2b{word-spacing:2.986667pt;}
.ws6d{word-spacing:3.037333pt;}
.ws81{word-spacing:3.040000pt;}
.ws3d{word-spacing:3.093333pt;}
.wsc1{word-spacing:3.128000pt;}
.ws67{word-spacing:3.146667pt;}
.wsbf{word-spacing:3.173333pt;}
.ws24{word-spacing:3.200000pt;}
.ws60{word-spacing:3.253333pt;}
.wsbd{word-spacing:3.264000pt;}
.ws6b{word-spacing:3.306667pt;}
.wsbe{word-spacing:3.309333pt;}
.wsa6{word-spacing:3.354667pt;}
.ws15{word-spacing:3.360000pt;}
.wsaa{word-spacing:3.400000pt;}
.ws66{word-spacing:3.413333pt;}
.ws59{word-spacing:3.466667pt;}
.ws39{word-spacing:3.573333pt;}
.ws8e{word-spacing:3.680000pt;}
.ws54{word-spacing:3.733333pt;}
.wsab{word-spacing:3.762667pt;}
.ws83{word-spacing:3.840000pt;}
.ws6c{word-spacing:3.946667pt;}
.wsb8{word-spacing:3.989333pt;}
.ws46{word-spacing:4.000000pt;}
.wsd2{word-spacing:4.034667pt;}
.ws94{word-spacing:4.053333pt;}
.wsb5{word-spacing:4.080000pt;}
.ws9a{word-spacing:4.106667pt;}
.wscd{word-spacing:4.125333pt;}
.ws40{word-spacing:4.160000pt;}
.ws82{word-spacing:4.213333pt;}
.ws6e{word-spacing:4.261333pt;}
.ws42{word-spacing:4.266667pt;}
.wsc0{word-spacing:4.306667pt;}
.ws3e{word-spacing:4.426667pt;}
.wsa1{word-spacing:4.586667pt;}
.ws91{word-spacing:4.640000pt;}
.ws84{word-spacing:4.693333pt;}
.wsda{word-spacing:4.760000pt;}
.ws80{word-spacing:4.800000pt;}
.wsb4{word-spacing:4.850667pt;}
.ws9c{word-spacing:4.853333pt;}
.wse0{word-spacing:4.986667pt;}
.ws28{word-spacing:5.066667pt;}
.ws26{word-spacing:5.120000pt;}
.ws85{word-spacing:5.173333pt;}
.wsb7{word-spacing:5.213333pt;}
.ws47{word-spacing:5.333333pt;}
.ws31{word-spacing:5.386667pt;}
.wse1{word-spacing:5.576000pt;}
.wse5{word-spacing:5.802667pt;}
.ws53{word-spacing:6.080000pt;}
.ws5b{word-spacing:6.133333pt;}
.wse2{word-spacing:6.392000pt;}
.ws58{word-spacing:6.400000pt;}
.ws6f{word-spacing:6.981333pt;}
.ws93{word-spacing:8.320000pt;}
.ws90{word-spacing:8.586667pt;}
.wse6{word-spacing:9.565333pt;}
.ws64{word-spacing:10.346667pt;}
.wse7{word-spacing:10.562667pt;}
.ws77{word-spacing:13.000076pt;}
.ws7b{word-spacing:15.991040pt;}
.ws10{word-spacing:19.072000pt;}
.ws7{word-spacing:38.592000pt;}
.ws7c{word-spacing:42.505216pt;}
.ws7e{word-spacing:46.425600pt;}
.ws7a{word-spacing:56.501669pt;}
.ws7d{word-spacing:72.527104pt;}
.ws79{word-spacing:74.246571pt;}
.ws78{word-spacing:100.348071pt;}
.ws75{word-spacing:180.876232pt;}
.ws76{word-spacing:181.022542pt;}
._7{margin-left:-15.005333pt;}
._23{margin-left:-14.008000pt;}
._c{margin-left:-12.928000pt;}
._10{margin-left:-11.914667pt;}
._12{margin-left:-10.234666pt;}
._15{margin-left:-8.533352pt;}
._16{margin-left:-7.415467pt;}
._18{margin-left:-6.480000pt;}
._e{margin-left:-5.002667pt;}
._5{margin-left:-3.440000pt;}
._3{margin-left:-2.506667pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.015467pt;}
._2{width:2.030933pt;}
._d{width:3.102933pt;}
._17{width:4.085333pt;}
._1b{width:6.143978pt;}
._a{width:7.583967pt;}
._1d{width:9.474667pt;}
._14{width:11.122667pt;}
._1e{width:12.285333pt;}
._8{width:13.509333pt;}
._6{width:14.506667pt;}
._11{width:16.421333pt;}
._24{width:17.770667pt;}
._b{width:19.072000pt;}
._20{width:20.880533pt;}
._25{width:22.432000pt;}
._1f{width:23.475733pt;}
._22{width:24.909355pt;}
._21{width:26.904022pt;}
._13{width:29.333333pt;}
._1c{width:32.000000pt;}
._4{width:36.052772pt;}
._1a{width:49.314304pt;}
._19{width:107.466667pt;}
._f{width:626.764228pt;}
._9{width:627.944524pt;}
.fsc{font-size:25.948267pt;}
.fs8{font-size:31.733332pt;}
.fsb{font-size:33.764267pt;}
.fsd{font-size:34.389333pt;}
.fsa{font-size:36.577600pt;}
.fs5{font-size:37.333333pt;}
.fse{font-size:41.579732pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y16e{bottom:3.183065pt;}
.y1{bottom:61.181335pt;}
.y29{bottom:61.777466pt;}
.yc6{bottom:101.004262pt;}
.y14f{bottom:101.009596pt;}
.yf0{bottom:101.270935pt;}
.y20f{bottom:101.826904pt;}
.y102{bottom:101.826945pt;}
.y122{bottom:101.946930pt;}
.y22f{bottom:101.995205pt;}
.y27{bottom:103.507333pt;}
.y271{bottom:103.570565pt;}
.y14e{bottom:114.337596pt;}
.y22e{bottom:115.323205pt;}
.y91{bottom:115.480306pt;}
.y202{bottom:116.696289pt;}
.y270{bottom:116.898565pt;}
.y5e{bottom:117.480306pt;}
.y20e{bottom:118.493571pt;}
.y101{bottom:118.493612pt;}
.y121{bottom:118.613597pt;}
.y16f{bottom:120.420003pt;}
.y162{bottom:123.728678pt;}
.y158{bottom:124.354940pt;}
.y169{bottom:126.177877pt;}
.y167{bottom:126.229879pt;}
.y22d{bottom:128.651205pt;}
.y2{bottom:130.225596pt;}
.y26f{bottom:130.226565pt;}
.y90{bottom:132.146973pt;}
.y201{bottom:133.362956pt;}
.y5d{bottom:134.146973pt;}
.y1cf{bottom:135.154899pt;}
.y20d{bottom:135.160238pt;}
.y100{bottom:135.160278pt;}
.y120{bottom:135.280263pt;}
.y22c{bottom:141.979205pt;}
.y26e{bottom:143.554565pt;}
.y8f{bottom:148.813639pt;}
.y200{bottom:150.029622pt;}
.y5c{bottom:150.813639pt;}
.y157{bottom:151.597331pt;}
.y1ce{bottom:151.821566pt;}
.y20c{bottom:151.826904pt;}
.y11f{bottom:151.946930pt;}
.y16d{bottom:155.224396pt;}
.y22b{bottom:155.307205pt;}
.y26d{bottom:156.882565pt;}
.y28{bottom:165.154795pt;}
.y8e{bottom:165.480306pt;}
.y1ff{bottom:166.696289pt;}
.y5b{bottom:167.480306pt;}
.y1cd{bottom:168.488232pt;}
.y20b{bottom:168.493571pt;}
.yff{bottom:168.493612pt;}
.y11e{bottom:168.613597pt;}
.y22a{bottom:168.635205pt;}
.y1a8{bottom:169.020367pt;}
.y26c{bottom:170.210565pt;}
.y229{bottom:181.963205pt;}
.y8d{bottom:182.146973pt;}
.y1a7{bottom:182.348367pt;}
.y1fe{bottom:183.362956pt;}
.y26b{bottom:183.538565pt;}
.y16c{bottom:183.958800pt;}
.y5a{bottom:184.146973pt;}
.y1cc{bottom:185.154899pt;}
.y20a{bottom:185.160238pt;}
.yfe{bottom:185.160278pt;}
.y11d{bottom:185.280263pt;}
.y16a{bottom:195.006938pt;}
.y228{bottom:195.291205pt;}
.y1a6{bottom:195.676367pt;}
.y26a{bottom:196.866565pt;}
.y151{bottom:197.348840pt;}
.y8c{bottom:198.813639pt;}
.y1fd{bottom:200.029622pt;}
.y59{bottom:200.813639pt;}
.y1cb{bottom:201.821566pt;}
.y209{bottom:201.826904pt;}
.y11c{bottom:201.946930pt;}
.y25{bottom:205.976400pt;}
.y152{bottom:207.901477pt;}
.y227{bottom:208.619205pt;}
.y1a5{bottom:209.004367pt;}
.y269{bottom:210.194565pt;}
.y154{bottom:212.345656pt;}
.y159{bottom:212.591593pt;}
.y8b{bottom:215.480306pt;}
.y1fc{bottom:216.696289pt;}
.y58{bottom:217.480306pt;}
.y1ca{bottom:218.488232pt;}
.y208{bottom:218.493571pt;}
.yfd{bottom:218.493612pt;}
.y11b{bottom:218.613597pt;}
.y155{bottom:220.475027pt;}
.y153{bottom:221.672944pt;}
.y226{bottom:221.947205pt;}
.y24{bottom:222.643066pt;}
.y268{bottom:223.522565pt;}
.y156{bottom:227.772259pt;}
.y8a{bottom:232.146973pt;}
.y1fb{bottom:233.362956pt;}
.y57{bottom:234.146973pt;}
.y15c{bottom:234.504602pt;}
.y1c9{bottom:235.154899pt;}
.y207{bottom:235.160238pt;}
.yfc{bottom:235.160278pt;}
.y11a{bottom:235.280263pt;}
.y150{bottom:235.883341pt;}
.y16b{bottom:236.403636pt;}
.y267{bottom:236.850565pt;}
.y23{bottom:239.309733pt;}
.y15a{bottom:240.573729pt;}
.y15d{bottom:242.219737pt;}
.y15b{bottom:246.254567pt;}
.y163{bottom:248.076009pt;}
.y89{bottom:248.813639pt;}
.y1fa{bottom:250.029622pt;}
.yf8{bottom:250.093317pt;}
.y266{bottom:250.178565pt;}
.y56{bottom:250.813639pt;}
.y1c8{bottom:251.821566pt;}
.y206{bottom:251.826904pt;}
.yfb{bottom:251.826945pt;}
.y119{bottom:251.946930pt;}
.y225{bottom:251.947205pt;}
.y188{bottom:252.285604pt;}
.y15f{bottom:253.581413pt;}
.y1a3{bottom:254.085581pt;}
.y22{bottom:255.976400pt;}
.y165{bottom:261.463411pt;}
.y160{bottom:262.098449pt;}
.y15e{bottom:263.322404pt;}
.yf7{bottom:263.421317pt;}
.y265{bottom:263.506565pt;}
.y88{bottom:265.480306pt;}
.y1f9{bottom:266.696289pt;}
.y55{bottom:267.480306pt;}
.y164{bottom:267.955935pt;}
.y1c7{bottom:268.488232pt;}
.y205{bottom:268.493571pt;}
.yfa{bottom:268.493612pt;}
.y118{bottom:268.613597pt;}
.y187{bottom:268.952271pt;}
.y161{bottom:269.391531pt;}
.y1a2{bottom:270.752248pt;}
.y166{bottom:271.183908pt;}
.y21{bottom:272.643066pt;}
.y168{bottom:275.353333pt;}
.yf6{bottom:276.749317pt;}
.y264{bottom:276.834565pt;}
.y87{bottom:282.146973pt;}
.y1f8{bottom:283.362956pt;}
.y54{bottom:284.146973pt;}
.y1c6{bottom:285.154899pt;}
.y204{bottom:285.160238pt;}
.yde{bottom:285.160278pt;}
.y117{bottom:285.280263pt;}
.y186{bottom:285.618937pt;}
.y1a1{bottom:287.418915pt;}
.y20{bottom:289.309733pt;}
.yf5{bottom:290.077317pt;}
.y263{bottom:290.162565pt;}
.y86{bottom:298.813639pt;}
.y1f7{bottom:300.029622pt;}
.y53{bottom:300.813639pt;}
.y1c5{bottom:301.821566pt;}
.y203{bottom:301.826904pt;}
.ydd{bottom:301.826945pt;}
.y185{bottom:302.285604pt;}
.yf4{bottom:303.405317pt;}
.y262{bottom:303.490565pt;}
.y1a0{bottom:304.085581pt;}
.y1f{bottom:305.976400pt;}
.y85{bottom:315.480306pt;}
.y1f6{bottom:316.696289pt;}
.y261{bottom:316.818565pt;}
.y52{bottom:317.480306pt;}
.y1c4{bottom:318.488232pt;}
.yb6{bottom:318.493571pt;}
.ydc{bottom:318.493612pt;}
.y116{bottom:318.613597pt;}
.y224{bottom:318.672410pt;}
.y184{bottom:318.952271pt;}
.y1e{bottom:322.643066pt;}
.y260{bottom:330.146565pt;}
.y223{bottom:332.000410pt;}
.y84{bottom:332.146973pt;}
.y1f5{bottom:333.362956pt;}
.y51{bottom:334.146973pt;}
.y1c3{bottom:335.154899pt;}
.yb5{bottom:335.160238pt;}
.ydb{bottom:335.160278pt;}
.y115{bottom:335.280263pt;}
.y183{bottom:335.618937pt;}
.y19f{bottom:337.418915pt;}
.y1d{bottom:339.309733pt;}
.y25f{bottom:343.474565pt;}
.y222{bottom:345.328410pt;}
.y83{bottom:348.813639pt;}
.y1f4{bottom:350.029622pt;}
.y50{bottom:350.813639pt;}
.y1c2{bottom:351.821566pt;}
.yb4{bottom:351.826904pt;}
.yda{bottom:351.826945pt;}
.y182{bottom:352.285604pt;}
.y19e{bottom:354.085581pt;}
.yf3{bottom:355.413984pt;}
.y1c{bottom:355.976400pt;}
.y25e{bottom:356.802565pt;}
.y221{bottom:358.656410pt;}
.y82{bottom:365.480306pt;}
.y1f3{bottom:366.696289pt;}
.y4f{bottom:367.480306pt;}
.y1c1{bottom:368.488232pt;}
.yb3{bottom:368.493571pt;}
.yd9{bottom:368.493612pt;}
.y114{bottom:368.613597pt;}
.y13e{bottom:368.617594pt;}
.yf2{bottom:368.741984pt;}
.y181{bottom:368.952271pt;}
.y25d{bottom:370.130565pt;}
.y220{bottom:371.984410pt;}
.y26{bottom:372.643066pt;}
.y81{bottom:382.146973pt;}
.y1f2{bottom:383.362956pt;}
.y25c{bottom:383.458565pt;}
.y4e{bottom:384.146973pt;}
.y1c0{bottom:385.154899pt;}
.yb2{bottom:385.160238pt;}
.yd8{bottom:385.160278pt;}
.y113{bottom:385.280263pt;}
.y13d{bottom:385.284261pt;}
.y21f{bottom:385.312410pt;}
.y180{bottom:385.618937pt;}
.y19d{bottom:387.418915pt;}
.y1b{bottom:389.309733pt;}
.y1aa{bottom:391.386396pt;}
.y25b{bottom:396.786565pt;}
.y80{bottom:398.813639pt;}
.y1f1{bottom:400.029622pt;}
.y4d{bottom:400.813639pt;}
.y1bf{bottom:401.821566pt;}
.yb1{bottom:401.826904pt;}
.yd7{bottom:401.826945pt;}
.y112{bottom:401.946930pt;}
.y13c{bottom:401.950928pt;}
.y17f{bottom:402.285604pt;}
.y19c{bottom:404.085581pt;}
.y1a9{bottom:404.714396pt;}
.y25a{bottom:410.114565pt;}
.y7f{bottom:415.480306pt;}
.y1f0{bottom:416.696289pt;}
.y4c{bottom:417.480306pt;}
.y1be{bottom:418.488232pt;}
.yb0{bottom:418.493571pt;}
.yd6{bottom:418.493612pt;}
.y111{bottom:418.613597pt;}
.y13b{bottom:418.617594pt;}
.y17e{bottom:418.952271pt;}
.y19b{bottom:420.752248pt;}
.y21e{bottom:421.930410pt;}
.y259{bottom:423.442565pt;}
.y7e{bottom:432.146973pt;}
.y1ef{bottom:433.362956pt;}
.y4b{bottom:434.146973pt;}
.y1bd{bottom:435.154899pt;}
.yaf{bottom:435.160238pt;}
.yd5{bottom:435.160278pt;}
.y21d{bottom:435.258410pt;}
.y110{bottom:435.280263pt;}
.y13a{bottom:435.284261pt;}
.y17d{bottom:435.618937pt;}
.y258{bottom:436.770565pt;}
.y19a{bottom:437.418915pt;}
.y1a{bottom:439.309733pt;}
.y7d{bottom:448.813639pt;}
.y1ee{bottom:450.029622pt;}
.y257{bottom:450.098565pt;}
.y4a{bottom:450.813639pt;}
.y1bc{bottom:451.821566pt;}
.yae{bottom:451.826904pt;}
.yd4{bottom:451.826945pt;}
.y10f{bottom:451.946930pt;}
.y139{bottom:451.950928pt;}
.y17c{bottom:452.285604pt;}
.y199{bottom:454.085581pt;}
.y21c{bottom:461.891743pt;}
.y256{bottom:463.426565pt;}
.y7c{bottom:465.480306pt;}
.y1ed{bottom:466.696289pt;}
.y49{bottom:467.480306pt;}
.y1bb{bottom:468.488232pt;}
.yad{bottom:468.493571pt;}
.yd3{bottom:468.493612pt;}
.y10e{bottom:468.613597pt;}
.y138{bottom:468.617594pt;}
.y17b{bottom:468.952271pt;}
.y198{bottom:470.752248pt;}
.y19{bottom:472.643066pt;}
.y21b{bottom:475.219743pt;}
.y255{bottom:476.754565pt;}
.y7b{bottom:482.146973pt;}
.y1ec{bottom:483.362956pt;}
.y48{bottom:484.146973pt;}
.yac{bottom:485.160238pt;}
.yd2{bottom:485.160278pt;}
.y10d{bottom:485.280263pt;}
.y137{bottom:485.284261pt;}
.y17a{bottom:485.618937pt;}
.y197{bottom:487.418915pt;}
.y21a{bottom:488.547743pt;}
.y18{bottom:489.309733pt;}
.y254{bottom:490.082565pt;}
.y7a{bottom:498.813639pt;}
.y1eb{bottom:500.029622pt;}
.y47{bottom:500.813639pt;}
.y1ba{bottom:501.821566pt;}
.yab{bottom:501.826904pt;}
.yd1{bottom:501.826945pt;}
.y10c{bottom:501.946930pt;}
.y136{bottom:501.950928pt;}
.y179{bottom:502.285604pt;}
.y253{bottom:503.410565pt;}
.y196{bottom:504.085581pt;}
.y17{bottom:505.976400pt;}
.y219{bottom:515.181077pt;}
.y79{bottom:515.480306pt;}
.y1ea{bottom:516.696289pt;}
.y252{bottom:516.738565pt;}
.y46{bottom:517.480306pt;}
.yaa{bottom:518.493571pt;}
.yd0{bottom:518.493612pt;}
.y10b{bottom:518.613597pt;}
.y14c{bottom:518.617594pt;}
.y195{bottom:520.752248pt;}
.y16{bottom:522.643066pt;}
.y218{bottom:528.509077pt;}
.y251{bottom:530.066565pt;}
.y78{bottom:532.146973pt;}
.y1e9{bottom:533.362956pt;}
.y45{bottom:534.146973pt;}
.y1b9{bottom:535.154899pt;}
.ya9{bottom:535.160238pt;}
.ycf{bottom:535.160278pt;}
.y10a{bottom:535.280263pt;}
.y135{bottom:535.284261pt;}
.y178{bottom:535.618937pt;}
.y194{bottom:537.418915pt;}
.y15{bottom:539.309733pt;}
.y217{bottom:541.837077pt;}
.y292{bottom:543.345634pt;}
.y250{bottom:543.394565pt;}
.y77{bottom:548.813639pt;}
.y1e8{bottom:550.029622pt;}
.y44{bottom:550.813639pt;}
.y1b8{bottom:551.821566pt;}
.ya8{bottom:551.826904pt;}
.yce{bottom:551.826945pt;}
.y109{bottom:551.946930pt;}
.y14b{bottom:551.950928pt;}
.y177{bottom:552.285604pt;}
.y193{bottom:554.085581pt;}
.y14{bottom:555.976400pt;}
.y2b1{bottom:556.084294pt;}
.y291{bottom:556.673634pt;}
.y24f{bottom:556.722565pt;}
.y76{bottom:565.480306pt;}
.y1e7{bottom:566.696289pt;}
.y43{bottom:567.480306pt;}
.y1b7{bottom:568.488232pt;}
.ya7{bottom:568.493571pt;}
.ycd{bottom:568.493612pt;}
.y108{bottom:568.613597pt;}
.y14a{bottom:568.617594pt;}
.y134{bottom:568.621572pt;}
.y2b0{bottom:569.412294pt;}
.y290{bottom:570.001634pt;}
.y24e{bottom:570.050565pt;}
.y192{bottom:570.752248pt;}
.y216{bottom:571.837077pt;}
.y13{bottom:572.643066pt;}
.y75{bottom:582.146973pt;}
.y28f{bottom:583.329634pt;}
.y1e6{bottom:583.362956pt;}
.y24d{bottom:583.378565pt;}
.y42{bottom:584.146973pt;}
.y1b6{bottom:585.154899pt;}
.ya6{bottom:585.160238pt;}
.ycc{bottom:585.160278pt;}
.y107{bottom:585.280263pt;}
.y149{bottom:585.284261pt;}
.y133{bottom:585.288239pt;}
.y176{bottom:585.618937pt;}
.y191{bottom:587.418915pt;}
.y12{bottom:589.309733pt;}
.y28e{bottom:596.657634pt;}
.y24c{bottom:596.706565pt;}
.y2af{bottom:596.827627pt;}
.y74{bottom:598.813639pt;}
.y1e5{bottom:600.029622pt;}
.y41{bottom:600.813639pt;}
.y1b5{bottom:601.821566pt;}
.ya5{bottom:601.826904pt;}
.ycb{bottom:601.826945pt;}
.y106{bottom:601.946930pt;}
.y148{bottom:601.950928pt;}
.y132{bottom:601.954905pt;}
.y175{bottom:602.285604pt;}
.y190{bottom:604.085581pt;}
.y215{bottom:605.223729pt;}
.y11{bottom:605.976400pt;}
.y28d{bottom:609.985634pt;}
.y24b{bottom:610.034565pt;}
.y2ae{bottom:610.155627pt;}
.y73{bottom:615.480306pt;}
.y1e4{bottom:616.696289pt;}
.y40{bottom:617.480306pt;}
.y1b4{bottom:618.488232pt;}
.ya4{bottom:618.493571pt;}
.yca{bottom:618.493612pt;}
.y214{bottom:618.551729pt;}
.y105{bottom:618.613597pt;}
.y147{bottom:618.617594pt;}
.y131{bottom:618.621572pt;}
.y174{bottom:618.952271pt;}
.y18f{bottom:620.752248pt;}
.y10{bottom:622.643066pt;}
.y28c{bottom:623.313634pt;}
.y24a{bottom:623.362565pt;}
.y2ad{bottom:623.483627pt;}
.y213{bottom:631.879729pt;}
.y72{bottom:632.146973pt;}
.y1e3{bottom:633.362956pt;}
.y3f{bottom:634.146973pt;}
.y1b3{bottom:635.154899pt;}
.ya3{bottom:635.160238pt;}
.yc9{bottom:635.160278pt;}
.y104{bottom:635.280263pt;}
.y146{bottom:635.284261pt;}
.y130{bottom:635.288239pt;}
.y173{bottom:635.618937pt;}
.y28b{bottom:636.641634pt;}
.y249{bottom:636.690565pt;}
.y2ac{bottom:636.811627pt;}
.y18e{bottom:637.418915pt;}
.yf{bottom:639.309733pt;}
.y212{bottom:645.207729pt;}
.y71{bottom:648.813639pt;}
.y28a{bottom:649.969634pt;}
.y248{bottom:650.018565pt;}
.y1e2{bottom:650.029622pt;}
.y2ab{bottom:650.139627pt;}
.y3e{bottom:650.813639pt;}
.y1b2{bottom:651.821566pt;}
.ya2{bottom:651.826904pt;}
.yef{bottom:651.826945pt;}
.y103{bottom:651.946930pt;}
.y145{bottom:651.950928pt;}
.y12f{bottom:651.954905pt;}
.y18d{bottom:654.085581pt;}
.ye{bottom:655.976400pt;}
.y211{bottom:658.535729pt;}
.y289{bottom:663.297634pt;}
.y247{bottom:663.346565pt;}
.y2aa{bottom:663.467627pt;}
.y70{bottom:665.480306pt;}
.y1e1{bottom:666.696289pt;}
.y3d{bottom:667.480306pt;}
.y1b1{bottom:668.488232pt;}
.yc5{bottom:668.493571pt;}
.yc8{bottom:668.493612pt;}
.y144{bottom:668.617594pt;}
.y12e{bottom:668.621572pt;}
.y172{bottom:668.952271pt;}
.y18c{bottom:670.752248pt;}
.y210{bottom:671.863729pt;}
.yd{bottom:672.643066pt;}
.y288{bottom:676.625634pt;}
.y246{bottom:676.674565pt;}
.y2a9{bottom:676.795627pt;}
.y6f{bottom:682.146973pt;}
.y1e0{bottom:683.362956pt;}
.y3c{bottom:684.146973pt;}
.y1b0{bottom:685.154899pt;}
.ya1{bottom:685.160238pt;}
.yee{bottom:685.160278pt;}
.y12d{bottom:685.288239pt;}
.y18b{bottom:687.418915pt;}
.yc{bottom:689.309733pt;}
.y287{bottom:689.953634pt;}
.y245{bottom:690.002565pt;}
.y2a8{bottom:690.123627pt;}
.y6e{bottom:698.813639pt;}
.y1df{bottom:700.029622pt;}
.y3b{bottom:700.813639pt;}
.y1af{bottom:701.821566pt;}
.ya0{bottom:701.826904pt;}
.yed{bottom:701.826945pt;}
.yc7{bottom:701.832238pt;}
.y143{bottom:701.950928pt;}
.y12c{bottom:701.954905pt;}
.y171{bottom:702.280230pt;}
.y286{bottom:703.281634pt;}
.y244{bottom:703.330565pt;}
.y2a7{bottom:703.451627pt;}
.y126{bottom:704.078907pt;}
.y18a{bottom:704.085581pt;}
.yb{bottom:705.976400pt;}
.y6d{bottom:715.480306pt;}
.y285{bottom:716.609634pt;}
.y243{bottom:716.658565pt;}
.y1de{bottom:716.696289pt;}
.y2a6{bottom:716.779627pt;}
.y125{bottom:717.406907pt;}
.y3a{bottom:717.480306pt;}
.y1ae{bottom:718.488232pt;}
.yc4{bottom:718.493571pt;}
.yec{bottom:718.493612pt;}
.y12b{bottom:718.621572pt;}
.y170{bottom:718.952230pt;}
.y189{bottom:720.752248pt;}
.ya{bottom:722.643066pt;}
.y284{bottom:729.937634pt;}
.y242{bottom:729.986565pt;}
.y2a5{bottom:730.107627pt;}
.y124{bottom:730.734907pt;}
.y6c{bottom:732.146973pt;}
.y1dd{bottom:733.362956pt;}
.y39{bottom:734.146973pt;}
.y1ad{bottom:735.154899pt;}
.yf1{bottom:735.160238pt;}
.yeb{bottom:735.160278pt;}
.y9f{bottom:735.165571pt;}
.y142{bottom:735.284261pt;}
.y12a{bottom:735.288239pt;}
.y9{bottom:739.309733pt;}
.y283{bottom:743.265634pt;}
.y241{bottom:743.314565pt;}
.y2a4{bottom:743.435627pt;}
.y123{bottom:744.062907pt;}
.y6b{bottom:748.813639pt;}
.y1dc{bottom:750.029622pt;}
.y38{bottom:750.813639pt;}
.y1ac{bottom:751.821566pt;}
.y9e{bottom:751.826904pt;}
.yea{bottom:751.826945pt;}
.y141{bottom:751.950928pt;}
.y129{bottom:751.954905pt;}
.y8{bottom:755.976400pt;}
.y282{bottom:756.593634pt;}
.y240{bottom:756.642565pt;}
.y2a3{bottom:756.763627pt;}
.y6a{bottom:765.480306pt;}
.y1db{bottom:766.696289pt;}
.y1a4{bottom:767.103027pt;}
.y37{bottom:767.480306pt;}
.y1ab{bottom:768.488232pt;}
.yc3{bottom:768.493571pt;}
.ye9{bottom:768.493612pt;}
.y140{bottom:768.617594pt;}
.y128{bottom:768.621572pt;}
.y281{bottom:769.921634pt;}
.y23f{bottom:769.970565pt;}
.y2a2{bottom:770.091627pt;}
.y69{bottom:782.146973pt;}
.y280{bottom:783.249634pt;}
.y23e{bottom:783.298565pt;}
.y1da{bottom:783.362956pt;}
.y2a1{bottom:783.419627pt;}
.y36{bottom:784.146973pt;}
.y9d{bottom:785.154899pt;}
.yc2{bottom:785.160238pt;}
.ye8{bottom:785.160278pt;}
.y13f{bottom:785.284261pt;}
.y127{bottom:785.288239pt;}
.y7{bottom:795.244629pt;}
.y27f{bottom:796.577634pt;}
.y23d{bottom:796.626565pt;}
.y2a0{bottom:796.747627pt;}
.y68{bottom:798.813639pt;}
.y1d9{bottom:800.029622pt;}
.y35{bottom:800.813639pt;}
.y9c{bottom:801.821566pt;}
.yc1{bottom:801.826904pt;}
.ye7{bottom:801.826945pt;}
.y27e{bottom:809.905634pt;}
.y23c{bottom:809.954565pt;}
.y29f{bottom:810.075627pt;}
.y67{bottom:815.480306pt;}
.y1d8{bottom:816.696289pt;}
.y34{bottom:817.480306pt;}
.y9b{bottom:818.488232pt;}
.yf9{bottom:818.488238pt;}
.yc0{bottom:818.493571pt;}
.y27d{bottom:823.233634pt;}
.y23b{bottom:823.282565pt;}
.y29e{bottom:823.403627pt;}
.y14d{bottom:826.943034pt;}
.y66{bottom:832.146973pt;}
.y6{bottom:833.111328pt;}
.y1d7{bottom:833.362956pt;}
.y33{bottom:834.146973pt;}
.y9a{bottom:835.154899pt;}
.ybf{bottom:835.160238pt;}
.ye6{bottom:835.160278pt;}
.y27c{bottom:836.561634pt;}
.y23a{bottom:836.610565pt;}
.y29d{bottom:836.731627pt;}
.y65{bottom:848.813639pt;}
.y27b{bottom:849.889634pt;}
.y239{bottom:849.938565pt;}
.y1d6{bottom:850.029622pt;}
.y29c{bottom:850.059627pt;}
.y32{bottom:850.813639pt;}
.y99{bottom:851.821566pt;}
.ybe{bottom:851.826904pt;}
.y27a{bottom:863.217634pt;}
.y238{bottom:863.266565pt;}
.y29b{bottom:863.387627pt;}
.y64{bottom:865.480306pt;}
.y1d5{bottom:866.696289pt;}
.y31{bottom:867.480306pt;}
.y98{bottom:868.488232pt;}
.ybd{bottom:868.493571pt;}
.ye5{bottom:868.493612pt;}
.y5{bottom:872.832682pt;}
.y279{bottom:876.545634pt;}
.y237{bottom:876.594565pt;}
.y29a{bottom:876.715627pt;}
.y63{bottom:882.146973pt;}
.y1d4{bottom:883.362956pt;}
.y30{bottom:884.146973pt;}
.y97{bottom:885.154899pt;}
.ybc{bottom:885.160238pt;}
.ye4{bottom:885.160278pt;}
.y278{bottom:889.873634pt;}
.y236{bottom:889.922565pt;}
.y299{bottom:890.043627pt;}
.y4{bottom:896.832682pt;}
.y62{bottom:898.813639pt;}
.y1d3{bottom:900.029622pt;}
.y2f{bottom:900.813639pt;}
.y96{bottom:901.821566pt;}
.ybb{bottom:901.826904pt;}
.ye3{bottom:901.826945pt;}
.y277{bottom:903.201634pt;}
.y235{bottom:903.250565pt;}
.y298{bottom:903.371627pt;}
.y61{bottom:915.480306pt;}
.y276{bottom:916.529634pt;}
.y234{bottom:916.578565pt;}
.y1d2{bottom:916.696289pt;}
.y297{bottom:916.699627pt;}
.y2e{bottom:917.480306pt;}
.y95{bottom:918.488232pt;}
.yba{bottom:918.493571pt;}
.ye2{bottom:918.493612pt;}
.y275{bottom:929.857634pt;}
.y233{bottom:929.906565pt;}
.y296{bottom:930.027627pt;}
.y1d1{bottom:933.362956pt;}
.y2d{bottom:934.146973pt;}
.y3{bottom:934.640137pt;}
.y94{bottom:935.154899pt;}
.yb9{bottom:935.160238pt;}
.ye1{bottom:935.160278pt;}
.y274{bottom:943.185634pt;}
.y232{bottom:943.234565pt;}
.y295{bottom:943.355627pt;}
.y60{bottom:948.808306pt;}
.y2c{bottom:950.813639pt;}
.y93{bottom:951.821566pt;}
.yb8{bottom:951.826904pt;}
.ye0{bottom:951.826945pt;}
.y273{bottom:956.513634pt;}
.y231{bottom:956.562565pt;}
.y294{bottom:956.683627pt;}
.y5f{bottom:965.480306pt;}
.y1d0{bottom:966.696289pt;}
.y2b{bottom:967.480306pt;}
.y92{bottom:968.488232pt;}
.yb7{bottom:968.493571pt;}
.ydf{bottom:968.493612pt;}
.y272{bottom:969.841634pt;}
.y230{bottom:969.890565pt;}
.y293{bottom:970.011627pt;}
.y2a{bottom:1000.706543pt;}
.h19{height:16.632839pt;}
.h1a{height:16.840425pt;}
.h17{height:21.642895pt;}
.h1b{height:23.384747pt;}
.h14{height:23.446242pt;}
.h1c{height:28.274218pt;}
.h18{height:31.566469pt;}
.h2{height:37.376000pt;}
.hd{height:37.674667pt;}
.h15{height:39.686696pt;}
.h3{height:39.712000pt;}
.h7{height:42.048000pt;}
.h13{height:43.157333pt;}
.h11{height:43.656000pt;}
.h12{height:44.834667pt;}
.he{height:47.093333pt;}
.hc{height:48.344003pt;}
.h4{height:49.248000pt;}
.h9{height:50.773333pt;}
.hf{height:51.020091pt;}
.ha{height:51.360000pt;}
.h8{height:52.746667pt;}
.h10{height:57.493333pt;}
.h6{height:57.621333pt;}
.hb{height:63.296000pt;}
.h5{height:82.176000pt;}
.h16{height:133.638662pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:657.637329pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:45.353469pt;}
.x3{left:68.031469pt;}
.x5{left:83.138142pt;}
.xa{left:84.911469pt;}
.x20{left:90.709469pt;}
.x13{left:92.716802pt;}
.x8{left:94.196802pt;}
.x9{left:100.751469pt;}
.x2{left:106.504801pt;}
.x1b{left:117.998056pt;}
.x1a{left:122.634267pt;}
.x1e{left:143.112000pt;}
.x1d{left:147.931071pt;}
.xc{left:155.981862pt;}
.x19{left:202.190801pt;}
.x14{left:213.114665pt;}
.xd{left:215.072974pt;}
.x1f{left:251.977463pt;}
.xe{left:267.260063pt;}
.x15{left:322.021307pt;}
.x16{left:376.499951pt;}
.x4{left:408.178127pt;}
.x18{left:419.337591pt;}
.x7{left:423.322257pt;}
.x6{left:425.068924pt;}
.x17{left:430.953272pt;}
.xb{left:440.458135pt;}
.xf{left:485.107102pt;}
.x10{left:539.552860pt;}
.x11{left:594.026049pt;}
.x1{left:647.307210pt;}
.x12{left:648.471806pt;}
}




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