
    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_78eeeecfd8bacad667768bf8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_aab2fc17f1ad9aba74be5a16.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_673b7099fdaaf3bc8ceb89cd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7e9ca4a1860721cd7c1e413b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7fa03df2dde6fbd4a004b170.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8ad27ac1a25a77226045aec8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_430ce0dbf1c726339c658ba5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7f0edf1fce3ea69387fae92d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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_928bf3d5b93d15066fec2f8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924000;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_c63da7ee0ea15fea6c1d432e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7e9ca4a1860721cd7c1e413b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_935eca831fa5fcad745a97bd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_31b591ef88d1db872432d18f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7e9ca4a1860721cd7c1e413b.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_27912a5b82b4b1a6371c1ac6.woff2')format("woff");}.fff{font-family:fff;line-height:0.710000;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.400011px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.400009px;}
.v1{vertical-align:24.000000px;}
.ls1e{letter-spacing:-1.740000px;}
.ls4b{letter-spacing:-1.140000px;}
.ls4d{letter-spacing:-0.960000px;}
.ls4a{letter-spacing:-0.900000px;}
.ls3e{letter-spacing:-0.765000px;}
.ls4f{letter-spacing:-0.720000px;}
.ls4c{letter-spacing:-0.660000px;}
.ls57{letter-spacing:-0.612000px;}
.ls4e{letter-spacing:-0.600000px;}
.ls3d{letter-spacing:-0.540000px;}
.ls56{letter-spacing:-0.480000px;}
.ls1f{letter-spacing:-0.420000px;}
.ls7c{letter-spacing:-0.408000px;}
.ls2f{letter-spacing:-0.360000px;}
.ls69{letter-spacing:-0.357000px;}
.ls7d{letter-spacing:-0.306000px;}
.ls1d{letter-spacing:-0.300000px;}
.ls7e{letter-spacing:-0.255000px;}
.ls30{letter-spacing:-0.240000px;}
.ls6a{letter-spacing:-0.204000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls7b{letter-spacing:-0.153000px;}
.ls1b{letter-spacing:-0.120000px;}
.ls7a{letter-spacing:-0.102000px;}
.ls1c{letter-spacing:-0.060000px;}
.ls6b{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000039px;}
.ls47{letter-spacing:0.000435px;}
.ls49{letter-spacing:0.001102px;}
.ls27{letter-spacing:0.030000px;}
.ls64{letter-spacing:0.051000px;}
.ls5{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.090000px;}
.ls65{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.120000px;}
.ls58{letter-spacing:0.150000px;}
.ls5d{letter-spacing:0.153000px;}
.ls19{letter-spacing:0.178791px;}
.lse{letter-spacing:0.180000px;}
.ls5e{letter-spacing:0.204000px;}
.ls55{letter-spacing:0.210000px;}
.ls40{letter-spacing:0.219000px;}
.ls3{letter-spacing:0.240000px;}
.ls18{letter-spacing:0.255000px;}
.ls63{letter-spacing:0.264000px;}
.ls29{letter-spacing:0.270000px;}
.ls70{letter-spacing:0.280500px;}
.ls2d{letter-spacing:0.287965px;}
.ls66{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls67{letter-spacing:0.306000px;}
.ls2c{letter-spacing:0.324000px;}
.ls3f{letter-spacing:0.329983px;}
.ls7f{letter-spacing:0.331500px;}
.ls5a{letter-spacing:0.357000px;}
.ls24{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.390000px;}
.ls6d{letter-spacing:0.408000px;}
.ls7{letter-spacing:0.420000px;}
.ls51{letter-spacing:0.450000px;}
.ls5b{letter-spacing:0.459000px;}
.ls31{letter-spacing:0.480000px;}
.ls81{letter-spacing:0.484500px;}
.ls59{letter-spacing:0.510000px;}
.ls12{letter-spacing:0.540000px;}
.ls6e{letter-spacing:0.561000px;}
.ls50{letter-spacing:0.570000px;}
.ls25{letter-spacing:0.600000px;}
.ls62{letter-spacing:0.612000px;}
.ls35{letter-spacing:0.630000px;}
.ls80{letter-spacing:0.637500px;}
.ls2b{letter-spacing:0.660000px;}
.ls5c{letter-spacing:0.663000px;}
.ls71{letter-spacing:0.714000px;}
.ls17{letter-spacing:0.720000px;}
.ls5f{letter-spacing:0.765000px;}
.ls10{letter-spacing:0.780000px;}
.ls82{letter-spacing:0.790500px;}
.ls36{letter-spacing:0.810000px;}
.ls73{letter-spacing:0.816000px;}
.lsc{letter-spacing:0.840000px;}
.ls68{letter-spacing:0.867000px;}
.ls34{letter-spacing:0.870000px;}
.lsf{letter-spacing:0.900000px;}
.ls60{letter-spacing:0.918000px;}
.ls26{letter-spacing:0.960000px;}
.ls72{letter-spacing:0.969000px;}
.lsa{letter-spacing:0.990000px;}
.ls13{letter-spacing:1.020000px;}
.ls41{letter-spacing:1.050000px;}
.ls61{letter-spacing:1.071000px;}
.lsd{letter-spacing:1.080000px;}
.ls6f{letter-spacing:1.122000px;}
.ls14{letter-spacing:1.140000px;}
.ls79{letter-spacing:1.173000px;}
.ls32{letter-spacing:1.200000px;}
.ls75{letter-spacing:1.224000px;}
.lsb{letter-spacing:1.260000px;}
.ls77{letter-spacing:1.275000px;}
.ls8{letter-spacing:1.320000px;}
.ls78{letter-spacing:1.326000px;}
.ls15{letter-spacing:1.380000px;}
.ls2a{letter-spacing:1.404000px;}
.ls76{letter-spacing:1.428000px;}
.ls11{letter-spacing:1.440000px;}
.ls74{letter-spacing:1.479000px;}
.ls2e{letter-spacing:1.500000px;}
.ls16{letter-spacing:1.560000px;}
.ls21{letter-spacing:1.620000px;}
.ls22{letter-spacing:1.680000px;}
.ls6c{letter-spacing:1.734000px;}
.ls20{letter-spacing:1.740000px;}
.ls9{letter-spacing:1.800000px;}
.ls43{letter-spacing:1.860000px;}
.ls23{letter-spacing:1.920000px;}
.ls42{letter-spacing:1.980000px;}
.ls1{letter-spacing:3.990000px;}
.ls38{letter-spacing:39.854462px;}
.ls3c{letter-spacing:44.230262px;}
.ls39{letter-spacing:46.229462px;}
.ls3b{letter-spacing:85.540320px;}
.ls3a{letter-spacing:87.539520px;}
.ls45{letter-spacing:148.921275px;}
.ls48{letter-spacing:148.921363px;}
.ls37{letter-spacing:166.923000px;}
.ls46{letter-spacing:227.205000px;}
.ls44{letter-spacing:233.580000px;}
.ls52{letter-spacing:255.203988px;}
.ls54{letter-spacing:260.660988px;}
.ls53{letter-spacing:267.035988px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws9c{word-spacing:-16.560000px;}
.ws62{word-spacing:-16.200000px;}
.ws9{word-spacing:-16.080000px;}
.wsa{word-spacing:-15.720000px;}
.ws9b{word-spacing:-15.570000px;}
.ws32{word-spacing:-15.480000px;}
.ws31{word-spacing:-15.300000px;}
.ws63{word-spacing:-15.240000px;}
.ws64{word-spacing:-15.000000px;}
.ws30{word-spacing:-14.640000px;}
.ws73{word-spacing:-14.100000px;}
.wsb1{word-spacing:-13.005000px;}
.ws2e{word-spacing:-12.750000px;}
.ws33{word-spacing:-12.474000px;}
.ws4{word-spacing:-12.420000px;}
.ws8f{word-spacing:-12.138000px;}
.ws7{word-spacing:-11.520000px;}
.ws74{word-spacing:-10.500000px;}
.ws9d{word-spacing:-10.149000px;}
.ws3{word-spacing:-9.996000px;}
.ws9e{word-spacing:-9.945000px;}
.ws2{word-spacing:-9.408000px;}
.ws65{word-spacing:-8.925000px;}
.ws5{word-spacing:-8.694000px;}
.ws4e{word-spacing:-7.500000px;}
.ws71{word-spacing:-6.375000px;}
.wsd{word-spacing:-2.400000px;}
.ws3b{word-spacing:-1.920000px;}
.wsb{word-spacing:-1.890000px;}
.ws38{word-spacing:-1.800000px;}
.ws7e{word-spacing:-1.620000px;}
.wsf{word-spacing:-1.500000px;}
.ws26{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.380000px;}
.wsba{word-spacing:-1.326000px;}
.ws76{word-spacing:-1.320000px;}
.wsa6{word-spacing:-1.275000px;}
.ws56{word-spacing:-1.200000px;}
.ws36{word-spacing:-1.140000px;}
.ws4c{word-spacing:-1.080000px;}
.wsae{word-spacing:-1.071000px;}
.ws60{word-spacing:-1.020000px;}
.wsac{word-spacing:-0.969000px;}
.ws5d{word-spacing:-0.960000px;}
.wsd4{word-spacing:-0.918000px;}
.ws20{word-spacing:-0.900000px;}
.ws3e{word-spacing:-0.840000px;}
.wsbb{word-spacing:-0.816000px;}
.ws8a{word-spacing:-0.780000px;}
.wsaf{word-spacing:-0.765000px;}
.ws13{word-spacing:-0.720000px;}
.wsb0{word-spacing:-0.714000px;}
.wsb6{word-spacing:-0.663000px;}
.ws57{word-spacing:-0.660000px;}
.ws2d{word-spacing:-0.612000px;}
.ws43{word-spacing:-0.600000px;}
.wsc{word-spacing:-0.570000px;}
.ws46{word-spacing:-0.540000px;}
.ws4f{word-spacing:-0.480000px;}
.wsc4{word-spacing:-0.459000px;}
.ws10{word-spacing:-0.420000px;}
.wsd7{word-spacing:-0.408000px;}
.ws27{word-spacing:-0.360000px;}
.ws6{word-spacing:-0.300000px;}
.wsb3{word-spacing:-0.255000px;}
.ws7c{word-spacing:-0.240000px;}
.ws72{word-spacing:-0.204000px;}
.ws23{word-spacing:-0.180000px;}
.ws11{word-spacing:-0.120000px;}
.wsc2{word-spacing:-0.102000px;}
.ws8{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.060000px;}
.wsd2{word-spacing:-0.051000px;}
.ws1{word-spacing:0.000000px;}
.ws3c{word-spacing:0.060000px;}
.ws1c{word-spacing:0.120000px;}
.wsbe{word-spacing:0.153000px;}
.ws86{word-spacing:0.240000px;}
.ws1d{word-spacing:0.300000px;}
.wsbd{word-spacing:0.306000px;}
.wsc1{word-spacing:0.357000px;}
.ws91{word-spacing:0.360000px;}
.ws45{word-spacing:0.420000px;}
.wsa9{word-spacing:0.459000px;}
.ws55{word-spacing:0.480000px;}
.wse{word-spacing:0.540000px;}
.wsd8{word-spacing:0.561000px;}
.ws2a{word-spacing:0.600000px;}
.ws51{word-spacing:0.660000px;}
.wsb9{word-spacing:0.714000px;}
.ws22{word-spacing:0.720000px;}
.ws81{word-spacing:0.765000px;}
.ws2c{word-spacing:0.840000px;}
.ws8d{word-spacing:0.867000px;}
.ws1b{word-spacing:0.900000px;}
.ws4d{word-spacing:0.960000px;}
.ws14{word-spacing:1.020000px;}
.wsc6{word-spacing:1.071000px;}
.ws4a{word-spacing:1.080000px;}
.wsb5{word-spacing:1.122000px;}
.ws52{word-spacing:1.140000px;}
.wsad{word-spacing:1.173000px;}
.ws35{word-spacing:1.200000px;}
.ws70{word-spacing:1.224000px;}
.ws47{word-spacing:1.260000px;}
.wsa4{word-spacing:1.275000px;}
.wsa2{word-spacing:1.320000px;}
.wsca{word-spacing:1.377000px;}
.ws41{word-spacing:1.380000px;}
.wsa3{word-spacing:1.440000px;}
.wsa5{word-spacing:1.479000px;}
.ws12{word-spacing:1.500000px;}
.ws8c{word-spacing:1.530000px;}
.ws48{word-spacing:1.560000px;}
.wsd0{word-spacing:1.581000px;}
.ws34{word-spacing:1.620000px;}
.wsc5{word-spacing:1.632000px;}
.ws24{word-spacing:1.680000px;}
.wsc3{word-spacing:1.734000px;}
.ws28{word-spacing:1.740000px;}
.ws37{word-spacing:1.800000px;}
.wsd3{word-spacing:1.836000px;}
.ws42{word-spacing:1.860000px;}
.ws40{word-spacing:1.920000px;}
.wsa7{word-spacing:1.938000px;}
.ws19{word-spacing:1.980000px;}
.wsc7{word-spacing:1.989000px;}
.ws2b{word-spacing:2.040000px;}
.ws3f{word-spacing:2.100000px;}
.ws3d{word-spacing:2.160000px;}
.ws21{word-spacing:2.220000px;}
.wsc9{word-spacing:2.244000px;}
.ws1f{word-spacing:2.280000px;}
.ws98{word-spacing:2.295000px;}
.ws4b{word-spacing:2.340000px;}
.wscf{word-spacing:2.346000px;}
.ws7f{word-spacing:2.397000px;}
.ws79{word-spacing:2.400000px;}
.wsb4{word-spacing:2.448000px;}
.ws5e{word-spacing:2.460000px;}
.ws39{word-spacing:2.520000px;}
.ws61{word-spacing:2.580000px;}
.ws5a{word-spacing:2.640000px;}
.ws17{word-spacing:2.700000px;}
.wsa8{word-spacing:2.754000px;}
.ws29{word-spacing:2.760000px;}
.ws54{word-spacing:2.820000px;}
.wsc8{word-spacing:2.856000px;}
.ws7a{word-spacing:2.880000px;}
.ws6f{word-spacing:2.940000px;}
.ws1a{word-spacing:3.000000px;}
.ws3a{word-spacing:3.060000px;}
.wsbc{word-spacing:3.162000px;}
.ws5b{word-spacing:3.180000px;}
.wsb8{word-spacing:3.213000px;}
.wsa1{word-spacing:3.240000px;}
.ws6e{word-spacing:3.300000px;}
.ws7d{word-spacing:3.360000px;}
.ws89{word-spacing:3.420000px;}
.wsab{word-spacing:3.468000px;}
.ws77{word-spacing:3.480000px;}
.wsaa{word-spacing:3.519000px;}
.ws5c{word-spacing:3.540000px;}
.wsb2{word-spacing:3.570000px;}
.ws49{word-spacing:3.600000px;}
.wsbf{word-spacing:3.621000px;}
.ws53{word-spacing:3.660000px;}
.wsc0{word-spacing:3.672000px;}
.ws5f{word-spacing:3.780000px;}
.wsd6{word-spacing:3.876000px;}
.ws6b{word-spacing:3.900000px;}
.ws8b{word-spacing:3.927000px;}
.ws90{word-spacing:3.960000px;}
.ws18{word-spacing:4.020000px;}
.wsd9{word-spacing:4.182000px;}
.ws88{word-spacing:4.200000px;}
.wscc{word-spacing:4.233000px;}
.ws58{word-spacing:4.260000px;}
.ws7b{word-spacing:4.380000px;}
.wsd1{word-spacing:4.386000px;}
.ws15{word-spacing:4.440000px;}
.ws6d{word-spacing:4.500000px;}
.ws80{word-spacing:4.539000px;}
.ws87{word-spacing:4.680000px;}
.wsd5{word-spacing:4.692000px;}
.ws92{word-spacing:4.896000px;}
.ws25{word-spacing:4.980000px;}
.ws99{word-spacing:4.998000px;}
.ws6c{word-spacing:5.220000px;}
.ws50{word-spacing:5.280000px;}
.ws59{word-spacing:5.340000px;}
.wscd{word-spacing:5.355000px;}
.wsce{word-spacing:5.406000px;}
.wscb{word-spacing:5.508000px;}
.ws9f{word-spacing:5.520000px;}
.wsa0{word-spacing:5.700000px;}
.ws78{word-spacing:5.760000px;}
.ws8e{word-spacing:5.814000px;}
.ws16{word-spacing:6.720000px;}
.wsb7{word-spacing:6.732000px;}
.ws95{word-spacing:7.599000px;}
.ws9a{word-spacing:7.650000px;}
.ws96{word-spacing:8.313000px;}
.ws93{word-spacing:10.761000px;}
.ws94{word-spacing:11.832000px;}
.ws97{word-spacing:12.546000px;}
.wsda{word-spacing:13.668000px;}
.wsdb{word-spacing:17.799000px;}
.ws2f{word-spacing:72.267000px;}
.ws83{word-spacing:117.554991px;}
.ws84{word-spacing:143.054991px;}
.ws82{word-spacing:147.287991px;}
.ws69{word-spacing:147.287992px;}
.ws75{word-spacing:159.681000px;}
.ws85{word-spacing:184.364988px;}
.ws67{word-spacing:203.795990px;}
.ws6a{word-spacing:227.612992px;}
.ws68{word-spacing:267.545990px;}
.ws66{word-spacing:1167.252081px;}
._8{margin-left:-16.575000px;}
._52{margin-left:-14.112000px;}
._10{margin-left:-10.608618px;}
._e{margin-left:-8.764800px;}
._2{margin-left:-7.353600px;}
._5{margin-left:-5.334026px;}
._3{margin-left:-4.284000px;}
._7{margin-left:-3.049200px;}
._1{margin-left:-1.996800px;}
._4{width:1.017600px;}
._6{width:2.347815px;}
._c{width:4.320000px;}
._0{width:5.587200px;}
._56{width:7.242000px;}
._d{width:9.638400px;}
._54{width:10.812000px;}
._51{width:12.462000px;}
._55{width:14.797800px;}
._f{width:16.396787px;}
._9{width:18.360000px;}
._53{width:19.839892px;}
._15{width:36.873000px;}
._28{width:42.584992px;}
._a{width:54.621000px;}
._13{width:77.876983px;}
._11{width:100.317000px;}
._18{width:106.321648px;}
._32{width:108.681000px;}
._25{width:127.448992px;}
._16{width:128.622000px;}
._47{width:130.723788px;}
._1c{width:131.741985px;}
._36{width:134.170200px;}
._50{width:136.679991px;}
._3b{width:150.246000px;}
._1a{width:154.122000px;}
._49{width:155.804988px;}
._43{width:158.660991px;}
._1f{width:159.791970px;}
._1e{width:161.721017px;}
._4f{width:165.494988px;}
._38{width:168.511800px;}
._35{width:172.431000px;}
._20{width:175.389000px;}
._4e{width:178.300792px;}
._14{width:181.865985px;}
._12{width:184.671000px;}
._46{width:196.696191px;}
._4b{width:197.887780px;}
._30{width:200.991000px;}
._48{width:203.489988px;}
._44{width:206.345988px;}
._19{width:210.170985px;}
._17{width:212.976000px;}
._2c{width:217.464000px;}
._2f{width:218.943000px;}
._42{width:222.971980px;}
._4d{width:230.468991px;}
._33{width:232.866000px;}
._1d{width:235.670985px;}
._1b{width:238.476000px;}
._3c{width:243.007200px;}
._4c{width:247.696191px;}
._4a{width:256.537791px;}
._26{width:265.564800px;}
._34{width:287.181000px;}
._2b{width:293.454000px;}
._3f{width:299.267988px;}
._40{width:305.489991px;}
._39{width:306.612000px;}
._22{width:320.798921px;}
._21{width:324.054000px;}
._37{width:332.112000px;}
._27{width:348.942000px;}
._31{width:359.907000px;}
._45{width:365.720988px;}
._24{width:384.386985px;}
._23{width:387.302995px;}
._3a{width:420.487200px;}
._3d{width:421.660200px;}
._2a{width:597.568797px;}
._2e{width:619.230608px;}
._29{width:737.563915px;}
._2d{width:759.225626px;}
._3e{width:905.643704px;}
._41{width:1127.517600px;}
._b{width:2408.015936px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:35.699999px;}
.fs8{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs6{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y1b{bottom:68.547300px;}
.y1a{bottom:68.829002px;}
.y14{bottom:77.715000px;}
.y13{bottom:99.795000px;}
.y50{bottom:112.944300px;}
.ya7{bottom:113.415298px;}
.y86{bottom:113.415344px;}
.y18{bottom:113.670000px;}
.yfc{bottom:114.735168px;}
.ydc{bottom:114.735260px;}
.y1ae{bottom:114.735306px;}
.y15e{bottom:114.874786px;}
.y47{bottom:122.461349px;}
.y4f{bottom:127.938300px;}
.y106{bottom:130.709999px;}
.y21f{bottom:131.608823px;}
.ya6{bottom:132.165298px;}
.y85{bottom:132.165344px;}
.yfb{bottom:133.485168px;}
.ydb{bottom:133.485260px;}
.y1ad{bottom:133.485306px;}
.y15d{bottom:133.624786px;}
.y17{bottom:135.750000px;}
.y1de{bottom:140.483561px;}
.y46{bottom:141.211349px;}
.y105{bottom:144.865354px;}
.y21e{bottom:146.602823px;}
.y25f{bottom:146.985307px;}
.y4e{bottom:148.032303px;}
.y132{bottom:150.913650px;}
.ya5{bottom:150.915298px;}
.y84{bottom:150.915344px;}
.yfa{bottom:152.235168px;}
.yda{bottom:152.235260px;}
.y1ac{bottom:152.235306px;}
.y15c{bottom:152.374786px;}
.y15{bottom:154.950000px;}
.y1dd{bottom:155.477561px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.y104{bottom:159.859354px;}
.y45{bottom:159.961349px;}
.y21d{bottom:161.596823px;}
.y25e{bottom:161.979307px;}
.y131{bottom:169.663650px;}
.ya4{bottom:169.665298px;}
.y83{bottom:169.665344px;}
.y1dc{bottom:170.471561px;}
.yf9{bottom:170.985168px;}
.yd9{bottom:170.985260px;}
.y1ab{bottom:170.985306px;}
.y15b{bottom:171.124786px;}
.y4d{bottom:173.041640px;}
.y21c{bottom:176.590823px;}
.y25d{bottom:176.973307px;}
.y44{bottom:178.711349px;}
.y1db{bottom:185.465561px;}
.y11c{bottom:187.796539px;}
.y4c{bottom:188.035640px;}
.y130{bottom:188.413650px;}
.ya3{bottom:188.415298px;}
.y82{bottom:188.415344px;}
.yf8{bottom:189.735168px;}
.yd8{bottom:189.735260px;}
.y1aa{bottom:189.735306px;}
.y15a{bottom:189.874786px;}
.y21b{bottom:191.584823px;}
.y25c{bottom:191.967307px;}
.y43{bottom:197.461349px;}
.y1da{bottom:200.459561px;}
.y21a{bottom:206.578823px;}
.y11b{bottom:206.590039px;}
.y25b{bottom:206.961307px;}
.y12f{bottom:207.163650px;}
.ya2{bottom:207.165298px;}
.y81{bottom:207.165344px;}
.yf7{bottom:208.485168px;}
.yd7{bottom:208.485260px;}
.y1a9{bottom:208.485306px;}
.y159{bottom:208.624786px;}
.y1d9{bottom:215.453561px;}
.y42{bottom:216.211349px;}
.y4b{bottom:218.852390px;}
.y219{bottom:221.572823px;}
.y25a{bottom:221.955307px;}
.y11a{bottom:225.307039px;}
.y12e{bottom:225.913650px;}
.y80{bottom:225.915344px;}
.yf6{bottom:227.235168px;}
.yd6{bottom:227.235260px;}
.y1a8{bottom:227.235306px;}
.y158{bottom:227.374786px;}
.y1d8{bottom:230.447561px;}
.y4a{bottom:233.846390px;}
.y41{bottom:234.961349px;}
.y218{bottom:236.566823px;}
.y259{bottom:236.949307px;}
.y119{bottom:244.024039px;}
.y12d{bottom:244.663650px;}
.ya1{bottom:244.665298px;}
.y7f{bottom:244.665344px;}
.y1d7{bottom:245.441561px;}
.yf5{bottom:245.985168px;}
.yd5{bottom:245.985260px;}
.y1a7{bottom:245.985306px;}
.y157{bottom:246.124786px;}
.y49{bottom:248.840390px;}
.y217{bottom:251.560823px;}
.y258{bottom:251.943307px;}
.y40{bottom:253.711349px;}
.y1d6{bottom:260.435561px;}
.y118{bottom:262.741039px;}
.y12c{bottom:263.413650px;}
.y7e{bottom:263.415344px;}
.yf4{bottom:264.735168px;}
.yd4{bottom:264.735260px;}
.y1a6{bottom:264.735306px;}
.y156{bottom:264.874786px;}
.y216{bottom:266.554823px;}
.y257{bottom:266.937307px;}
.y3f{bottom:272.461349px;}
.y1d5{bottom:275.429561px;}
.y117{bottom:277.735039px;}
.y48{bottom:279.682640px;}
.y215{bottom:281.548823px;}
.y256{bottom:281.931307px;}
.y12b{bottom:282.163650px;}
.ya0{bottom:282.165298px;}
.y7d{bottom:282.165344px;}
.yf3{bottom:283.485168px;}
.yd3{bottom:283.485260px;}
.y1a5{bottom:283.485306px;}
.y155{bottom:283.624786px;}
.y1d4{bottom:290.423561px;}
.y3e{bottom:291.211349px;}
.y116{bottom:296.447548px;}
.y214{bottom:296.542823px;}
.y255{bottom:296.925307px;}
.y12a{bottom:300.913650px;}
.y9f{bottom:300.915298px;}
.y7c{bottom:300.915344px;}
.yf2{bottom:302.235168px;}
.yd2{bottom:302.235260px;}
.y154{bottom:302.374786px;}
.y3d{bottom:309.961349px;}
.y213{bottom:311.536823px;}
.y254{bottom:311.919307px;}
.y115{bottom:315.166057px;}
.y129{bottom:319.663650px;}
.y9e{bottom:319.665298px;}
.y7b{bottom:319.665344px;}
.yf1{bottom:320.985168px;}
.yd1{bottom:320.985260px;}
.y1a4{bottom:320.985306px;}
.y153{bottom:321.124786px;}
.y1d3{bottom:324.173561px;}
.y212{bottom:326.530823px;}
.y253{bottom:326.913307px;}
.y3b{bottom:328.711349px;}
.y114{bottom:330.160057px;}
.y128{bottom:338.413650px;}
.y9d{bottom:338.415298px;}
.y7a{bottom:338.415344px;}
.yf0{bottom:339.735168px;}
.yd0{bottom:339.735260px;}
.y152{bottom:339.874786px;}
.y211{bottom:341.524823px;}
.y252{bottom:341.907307px;}
.ya{bottom:344.680500px;}
.y3a{bottom:347.461349px;}
.y113{bottom:348.878543px;}
.y210{bottom:356.518823px;}
.y251{bottom:356.901307px;}
.y134{bottom:357.163650px;}
.y9c{bottom:357.165298px;}
.y79{bottom:357.165344px;}
.yef{bottom:358.485168px;}
.ycf{bottom:358.485260px;}
.y1a3{bottom:358.485306px;}
.y151{bottom:358.624786px;}
.y112{bottom:363.872543px;}
.y39{bottom:366.211349px;}
.y20f{bottom:371.512823px;}
.y250{bottom:371.895307px;}
.y127{bottom:375.913650px;}
.y9b{bottom:375.915298px;}
.y78{bottom:375.915344px;}
.yee{bottom:377.235168px;}
.yce{bottom:377.235260px;}
.y1a2{bottom:377.235306px;}
.y150{bottom:377.374786px;}
.y111{bottom:382.591052px;}
.y38{bottom:384.961349px;}
.y1d2{bottom:386.446190px;}
.yd{bottom:386.490000px;}
.y20e{bottom:386.506823px;}
.y24f{bottom:386.889307px;}
.y133{bottom:394.663650px;}
.y9a{bottom:394.665298px;}
.y77{bottom:394.665344px;}
.y9{bottom:395.689500px;}
.yed{bottom:395.985168px;}
.ycd{bottom:395.985260px;}
.y1a1{bottom:395.985306px;}
.y14f{bottom:396.124786px;}
.y110{bottom:397.585052px;}
.y1d1{bottom:401.440190px;}
.y20d{bottom:401.500823px;}
.y24e{bottom:401.883307px;}
.y37{bottom:403.711349px;}
.y126{bottom:413.413650px;}
.y99{bottom:413.415298px;}
.y76{bottom:413.415344px;}
.yec{bottom:414.735168px;}
.ycc{bottom:414.735260px;}
.y1a0{bottom:414.735306px;}
.y14e{bottom:414.874786px;}
.y10e{bottom:416.309562px;}
.y1d0{bottom:416.434190px;}
.y20c{bottom:416.494823px;}
.y24d{bottom:416.877307px;}
.y36{bottom:422.461349px;}
.y10d{bottom:431.303562px;}
.y1cf{bottom:431.428190px;}
.y20b{bottom:431.488823px;}
.y24c{bottom:431.871307px;}
.y125{bottom:432.163650px;}
.y98{bottom:432.165298px;}
.y75{bottom:432.165344px;}
.yeb{bottom:433.485168px;}
.ycb{bottom:433.485260px;}
.y19f{bottom:433.485306px;}
.y14d{bottom:433.624786px;}
.yb{bottom:434.850000px;}
.y35{bottom:441.211349px;}
.y10c{bottom:446.297562px;}
.y10f{bottom:446.310312px;}
.y1ce{bottom:446.422190px;}
.y20a{bottom:446.482823px;}
.y8{bottom:446.698500px;}
.y24b{bottom:446.865307px;}
.y124{bottom:450.913650px;}
.y97{bottom:450.915298px;}
.y74{bottom:450.915344px;}
.yea{bottom:452.235168px;}
.yca{bottom:452.235260px;}
.y19e{bottom:452.235306px;}
.y14c{bottom:452.374786px;}
.y34{bottom:459.961349px;}
.y1cd{bottom:461.416190px;}
.y209{bottom:461.476823px;}
.y24a{bottom:461.859307px;}
.y10b{bottom:465.014534px;}
.y123{bottom:469.663650px;}
.y96{bottom:469.665298px;}
.y73{bottom:469.665344px;}
.ye9{bottom:470.985168px;}
.yc9{bottom:470.985260px;}
.y19d{bottom:470.985306px;}
.y14b{bottom:471.124786px;}
.y1cc{bottom:476.410190px;}
.y208{bottom:476.470823px;}
.y249{bottom:476.853307px;}
.y33{bottom:478.711349px;}
.y10{bottom:488.055000px;}
.y122{bottom:488.413650px;}
.y95{bottom:488.415298px;}
.y72{bottom:488.415344px;}
.ye8{bottom:489.735168px;}
.yc8{bottom:489.735260px;}
.y19c{bottom:489.735306px;}
.y181{bottom:489.874786px;}
.y1cb{bottom:491.404190px;}
.y207{bottom:491.464823px;}
.y248{bottom:491.847307px;}
.y10a{bottom:493.102784px;}
.y3c{bottom:497.461349px;}
.y7{bottom:497.707500px;}
.y1ca{bottom:506.398190px;}
.y206{bottom:506.458823px;}
.y247{bottom:506.841307px;}
.y121{bottom:507.163650px;}
.y94{bottom:507.165298px;}
.y71{bottom:507.165344px;}
.ye7{bottom:508.485168px;}
.yc7{bottom:508.485260px;}
.y19b{bottom:508.485306px;}
.y180{bottom:508.624786px;}
.y32{bottom:516.211349px;}
.y109{bottom:517.519034px;}
.y1c9{bottom:521.392190px;}
.y205{bottom:521.452823px;}
.y246{bottom:521.835307px;}
.y162{bottom:523.390859px;}
.y120{bottom:525.913650px;}
.y93{bottom:525.915298px;}
.y70{bottom:525.915344px;}
.ye6{bottom:527.235168px;}
.yc6{bottom:527.235260px;}
.y19a{bottom:527.235306px;}
.y17f{bottom:527.374786px;}
.y108{bottom:532.513034px;}
.y1c8{bottom:536.386190px;}
.y204{bottom:536.446823px;}
.y245{bottom:536.829307px;}
.y11{bottom:538.230000px;}
.y11f{bottom:544.663650px;}
.y92{bottom:544.665298px;}
.y6f{bottom:544.665344px;}
.ye5{bottom:545.985168px;}
.yc5{bottom:545.985260px;}
.y199{bottom:545.985306px;}
.y17e{bottom:546.124786px;}
.y6{bottom:548.716500px;}
.y1c7{bottom:551.380190px;}
.y203{bottom:551.440823px;}
.y17c{bottom:551.553024px;}
.y244{bottom:551.823307px;}
.y107{bottom:557.222534px;}
.y11e{bottom:563.413650px;}
.y91{bottom:563.415298px;}
.y6e{bottom:563.415344px;}
.ye4{bottom:564.735168px;}
.yc4{bottom:564.735260px;}
.y198{bottom:564.735306px;}
.y17d{bottom:564.874786px;}
.y202{bottom:566.434823px;}
.y243{bottom:566.817307px;}
.y17b{bottom:570.346524px;}
.y31{bottom:572.461395px;}
.y201{bottom:581.428823px;}
.y242{bottom:581.811307px;}
.y11d{bottom:582.163650px;}
.y90{bottom:582.165298px;}
.y6d{bottom:582.165344px;}
.y103{bottom:582.713104px;}
.ye3{bottom:583.485168px;}
.yc3{bottom:583.485260px;}
.y197{bottom:583.485306px;}
.y1c6{bottom:585.091190px;}
.y17a{bottom:589.063524px;}
.y19{bottom:589.605000px;}
.y200{bottom:596.422823px;}
.y241{bottom:596.805307px;}
.y5{bottom:599.725500px;}
.y1c5{bottom:600.085190px;}
.y8f{bottom:600.915298px;}
.y6c{bottom:600.915344px;}
.ye2{bottom:602.235168px;}
.yc2{bottom:602.235260px;}
.y196{bottom:602.235306px;}
.y179{bottom:607.780524px;}
.y30{bottom:609.961395px;}
.y1ff{bottom:611.416823px;}
.y240{bottom:611.799307px;}
.y18b{bottom:613.714933px;}
.y195{bottom:614.254820px;}
.y8e{bottom:619.665298px;}
.y6b{bottom:619.665344px;}
.ye1{bottom:620.985168px;}
.yc1{bottom:620.985260px;}
.y1fe{bottom:626.410823px;}
.y178{bottom:626.497524px;}
.y23f{bottom:626.793307px;}
.y18a{bottom:628.708933px;}
.y2f{bottom:628.711395px;}
.y194{bottom:629.248820px;}
.ye{bottom:631.920000px;}
.y1c4{bottom:633.835190px;}
.y8d{bottom:638.415298px;}
.y6a{bottom:638.415344px;}
.ye0{bottom:639.735168px;}
.yc0{bottom:639.735260px;}
.y102{bottom:639.735306px;}
.y1fd{bottom:641.404823px;}
.y23e{bottom:641.787307px;}
.y189{bottom:643.702933px;}
.y193{bottom:644.242820px;}
.y177{bottom:645.214524px;}
.y2e{bottom:647.461395px;}
.y1fc{bottom:656.398823px;}
.y23d{bottom:656.781307px;}
.y8c{bottom:657.165298px;}
.y69{bottom:657.165344px;}
.ydf{bottom:658.485168px;}
.ybf{bottom:658.485260px;}
.y101{bottom:658.485306px;}
.y188{bottom:658.696933px;}
.y192{bottom:659.236820px;}
.y176{bottom:663.931524px;}
.y2d{bottom:666.211395px;}
.y1fb{bottom:671.392823px;}
.y1c3{bottom:671.410792px;}
.y23c{bottom:671.775307px;}
.y187{bottom:673.720933px;}
.y191{bottom:674.260820px;}
.y8b{bottom:675.915298px;}
.y68{bottom:675.915344px;}
.yde{bottom:677.235168px;}
.ybe{bottom:677.235260px;}
.y100{bottom:677.235306px;}
.y139{bottom:677.882601px;}
.y175{bottom:682.648524px;}
.y2c{bottom:684.961395px;}
.y1fa{bottom:686.386823px;}
.y1c2{bottom:686.404792px;}
.y23b{bottom:686.769307px;}
.y186{bottom:688.714933px;}
.y190{bottom:689.254820px;}
.y138{bottom:692.876601px;}
.y8a{bottom:694.665298px;}
.y67{bottom:694.665344px;}
.ybd{bottom:695.985260px;}
.yff{bottom:695.985306px;}
.y174{bottom:701.365524px;}
.y1f9{bottom:701.380823px;}
.y1c1{bottom:701.398792px;}
.y23a{bottom:701.763307px;}
.y185{bottom:703.708933px;}
.y2b{bottom:703.711395px;}
.y18f{bottom:704.248820px;}
.y137{bottom:707.870601px;}
.y89{bottom:713.415298px;}
.y66{bottom:713.415344px;}
.ydd{bottom:714.735168px;}
.ybc{bottom:714.735260px;}
.yfe{bottom:714.735306px;}
.y1f8{bottom:716.374823px;}
.y1c0{bottom:716.392792px;}
.y239{bottom:716.757307px;}
.y184{bottom:718.702933px;}
.y18e{bottom:719.242820px;}
.y173{bottom:720.082524px;}
.y2a{bottom:722.461395px;}
.y1f7{bottom:731.368823px;}
.y1bf{bottom:731.386792px;}
.y238{bottom:731.751307px;}
.y88{bottom:732.165298px;}
.y65{bottom:732.165344px;}
.ybb{bottom:733.485260px;}
.yfd{bottom:733.485306px;}
.y183{bottom:733.696933px;}
.y18d{bottom:734.236820px;}
.y14a{bottom:735.741915px;}
.y172{bottom:738.799524px;}
.y29{bottom:741.211395px;}
.y1f6{bottom:746.362823px;}
.y1be{bottom:746.380792px;}
.y237{bottom:746.745307px;}
.y182{bottom:748.690933px;}
.y18c{bottom:749.230820px;}
.y87{bottom:750.915298px;}
.y64{bottom:750.915344px;}
.yba{bottom:752.235260px;}
.y149{bottom:754.535415px;}
.y171{bottom:757.516524px;}
.y28{bottom:759.961395px;}
.y1f5{bottom:761.356823px;}
.y1bd{bottom:761.374792px;}
.y236{bottom:761.739307px;}
.y63{bottom:769.665344px;}
.yb9{bottom:770.985260px;}
.y148{bottom:773.252415px;}
.y170{bottom:776.233524px;}
.y1f4{bottom:776.350823px;}
.y235{bottom:776.733307px;}
.y4{bottom:778.225500px;}
.y27{bottom:778.711395px;}
.y62{bottom:788.415344px;}
.yb8{bottom:789.735260px;}
.y1f3{bottom:791.344823px;}
.y234{bottom:791.727307px;}
.y147{bottom:791.969415px;}
.y16f{bottom:794.950524px;}
.y1bc{bottom:795.085792px;}
.y26{bottom:797.461395px;}
.y1f2{bottom:806.338823px;}
.y233{bottom:806.721307px;}
.y61{bottom:807.165344px;}
.yb7{bottom:808.485260px;}
.y1bb{bottom:810.079792px;}
.y146{bottom:810.686415px;}
.y16e{bottom:813.667524px;}
.y12{bottom:815.670000px;}
.y25{bottom:816.211395px;}
.y1f1{bottom:821.332823px;}
.y232{bottom:821.715307px;}
.y1ba{bottom:825.073792px;}
.y60{bottom:825.915344px;}
.yb6{bottom:827.235260px;}
.y145{bottom:829.403415px;}
.y16d{bottom:832.384524px;}
.y24{bottom:834.961395px;}
.y1f0{bottom:836.326823px;}
.y231{bottom:836.709307px;}
.y5f{bottom:844.665344px;}
.yb5{bottom:845.985260px;}
.y144{bottom:848.120415px;}
.y26f{bottom:850.581323px;}
.y16c{bottom:851.101524px;}
.y1ef{bottom:851.320823px;}
.y230{bottom:851.703307px;}
.y1b9{bottom:858.782593px;}
.y5e{bottom:863.415344px;}
.yb4{bottom:864.735260px;}
.y26e{bottom:865.575323px;}
.y1ee{bottom:866.314823px;}
.y22f{bottom:866.697307px;}
.y143{bottom:866.837415px;}
.y16b{bottom:869.818524px;}
.y1b8{bottom:877.532593px;}
.y23{bottom:879.144153px;}
.y1ed{bottom:881.308823px;}
.y22e{bottom:881.691307px;}
.y5d{bottom:882.165344px;}
.yb3{bottom:883.485260px;}
.y142{bottom:885.554415px;}
.y16a{bottom:888.535524px;}
.y22{bottom:894.138153px;}
.y1b7{bottom:896.282593px;}
.y1ec{bottom:896.302823px;}
.y26d{bottom:896.417573px;}
.y22d{bottom:896.685307px;}
.y5c{bottom:900.915344px;}
.yb2{bottom:902.235260px;}
.y141{bottom:904.271415px;}
.y3{bottom:905.716500px;}
.y169{bottom:907.252524px;}
.y1eb{bottom:911.296823px;}
.y26c{bottom:911.411573px;}
.y22c{bottom:911.679307px;}
.y1b6{bottom:915.032593px;}
.y5b{bottom:919.665344px;}
.yb1{bottom:920.985260px;}
.y140{bottom:922.988415px;}
.y168{bottom:925.969524px;}
.y1ea{bottom:926.290823px;}
.y26b{bottom:926.405573px;}
.y22b{bottom:926.673307px;}
.y1b5{bottom:933.782593px;}
.y21{bottom:936.738190px;}
.y5a{bottom:938.415344px;}
.yb0{bottom:939.735260px;}
.y1e9{bottom:941.284823px;}
.y26a{bottom:941.399573px;}
.y22a{bottom:941.667307px;}
.y13f{bottom:941.705415px;}
.y167{bottom:944.686524px;}
.y1b4{bottom:952.532593px;}
.y1e8{bottom:956.278823px;}
.y269{bottom:956.393573px;}
.y229{bottom:956.661307px;}
.y59{bottom:957.165344px;}
.yaf{bottom:958.485260px;}
.y13e{bottom:960.422415px;}
.y166{bottom:963.403524px;}
.y2{bottom:964.228500px;}
.y1e7{bottom:971.272823px;}
.y1b3{bottom:971.282593px;}
.y268{bottom:971.387573px;}
.y228{bottom:971.655307px;}
.y58{bottom:975.915344px;}
.yae{bottom:977.235260px;}
.y13d{bottom:979.139415px;}
.y20{bottom:981.424622px;}
.y165{bottom:982.120524px;}
.y1e6{bottom:986.266823px;}
.y267{bottom:986.381573px;}
.y227{bottom:986.649307px;}
.y1{bottom:989.716500px;}
.y1b2{bottom:990.032593px;}
.y57{bottom:994.665344px;}
.yad{bottom:995.985260px;}
.y13c{bottom:997.856415px;}
.y1e5{bottom:1001.260823px;}
.y266{bottom:1001.375573px;}
.y226{bottom:1001.643307px;}
.y1f{bottom:1008.424622px;}
.y164{bottom:1010.196024px;}
.y56{bottom:1013.415344px;}
.yac{bottom:1014.735260px;}
.y1e4{bottom:1016.254823px;}
.y265{bottom:1016.369573px;}
.y225{bottom:1016.637307px;}
.y13b{bottom:1025.196024px;}
.y1b1{bottom:1027.532593px;}
.y1e3{bottom:1031.248823px;}
.y264{bottom:1031.363573px;}
.y224{bottom:1031.631307px;}
.y55{bottom:1032.165344px;}
.yab{bottom:1033.485260px;}
.y163{bottom:1034.612274px;}
.y1e2{bottom:1046.242823px;}
.y263{bottom:1046.357573px;}
.y223{bottom:1046.625307px;}
.y13a{bottom:1049.612274px;}
.y54{bottom:1050.915344px;}
.yaa{bottom:1052.235260px;}
.y15f{bottom:1060.114844px;}
.y1e1{bottom:1061.236823px;}
.y262{bottom:1061.351573px;}
.y222{bottom:1061.619307px;}
.y53{bottom:1069.665344px;}
.ya9{bottom:1070.985260px;}
.y1b0{bottom:1070.985306px;}
.y136{bottom:1075.108844px;}
.y161{bottom:1075.121594px;}
.y1e{bottom:1076.132080px;}
.y1e0{bottom:1076.230823px;}
.y261{bottom:1076.345573px;}
.y221{bottom:1076.613307px;}
.y52{bottom:1088.415344px;}
.ya8{bottom:1089.735260px;}
.y1af{bottom:1089.735306px;}
.y135{bottom:1090.102844px;}
.y160{bottom:1090.115594px;}
.y1df{bottom:1091.224823px;}
.y260{bottom:1091.339573px;}
.y220{bottom:1091.607307px;}
.y1d{bottom:1109.586556px;}
.y1c{bottom:1126.582306px;}
.y51{bottom:1127.482361px;}
.h18{height:25.204199px;}
.h4{height:33.000000px;}
.h15{height:36.006000px;}
.h17{height:36.855469px;}
.hb{height:42.048000px;}
.h12{height:42.360000px;}
.h11{height:43.260000px;}
.hd{height:44.676000px;}
.h1d{height:45.553163px;}
.h1c{height:45.586309px;}
.h1e{height:45.604163px;}
.h1f{height:45.604254px;}
.h20{height:45.658272px;}
.h16{height:49.113000px;}
.h14{height:51.912000px;}
.h1b{height:52.173000px;}
.h21{height:52.188586px;}
.hc{height:54.862258px;}
.he{height:55.404000px;}
.h13{height:57.780000px;}
.h3{height:58.406250px;}
.h1a{height:61.380000px;}
.h19{height:64.680000px;}
.h10{height:64.824000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hf{height:92.448000px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:1186.299000px;}
.ha{height:1186.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:892.914000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xc{left:76.535402px;}
.x11{left:78.746400px;}
.x1a{left:81.028937px;}
.xd{left:85.181849px;}
.x12{left:93.545402px;}
.x10{left:97.796100px;}
.x1d{left:102.047253px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x13{left:180.883198px;}
.x2{left:191.040000px;}
.x1b{left:196.066040px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x14{left:262.971468px;}
.x15{left:366.144468px;}
.x19{left:448.236152px;}
.xe{left:459.215389px;}
.xf{left:476.225387px;}
.x1c{left:484.725290px;}
.x16{left:496.398463px;}
.x17{left:599.596961px;}
.x18{left:676.045959px;}
.xa{left:728.220612px;}
.xb{left:755.489868px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.133341pt;}
.v1{vertical-align:21.333333pt;}
.ls1e{letter-spacing:-1.546667pt;}
.ls4b{letter-spacing:-1.013333pt;}
.ls4d{letter-spacing:-0.853333pt;}
.ls4a{letter-spacing:-0.800000pt;}
.ls3e{letter-spacing:-0.680000pt;}
.ls4f{letter-spacing:-0.640000pt;}
.ls4c{letter-spacing:-0.586667pt;}
.ls57{letter-spacing:-0.544000pt;}
.ls4e{letter-spacing:-0.533333pt;}
.ls3d{letter-spacing:-0.480000pt;}
.ls56{letter-spacing:-0.426667pt;}
.ls1f{letter-spacing:-0.373333pt;}
.ls7c{letter-spacing:-0.362667pt;}
.ls2f{letter-spacing:-0.320000pt;}
.ls69{letter-spacing:-0.317333pt;}
.ls7d{letter-spacing:-0.272000pt;}
.ls1d{letter-spacing:-0.266667pt;}
.ls7e{letter-spacing:-0.226667pt;}
.ls30{letter-spacing:-0.213333pt;}
.ls6a{letter-spacing:-0.181333pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls7b{letter-spacing:-0.136000pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls7a{letter-spacing:-0.090667pt;}
.ls1c{letter-spacing:-0.053333pt;}
.ls6b{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000035pt;}
.ls47{letter-spacing:0.000387pt;}
.ls49{letter-spacing:0.000979pt;}
.ls27{letter-spacing:0.026667pt;}
.ls64{letter-spacing:0.045333pt;}
.ls5{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.080000pt;}
.ls65{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.106667pt;}
.ls58{letter-spacing:0.133333pt;}
.ls5d{letter-spacing:0.136000pt;}
.ls19{letter-spacing:0.158926pt;}
.lse{letter-spacing:0.160000pt;}
.ls5e{letter-spacing:0.181333pt;}
.ls55{letter-spacing:0.186667pt;}
.ls40{letter-spacing:0.194666pt;}
.ls3{letter-spacing:0.213333pt;}
.ls18{letter-spacing:0.226667pt;}
.ls63{letter-spacing:0.234667pt;}
.ls29{letter-spacing:0.240000pt;}
.ls70{letter-spacing:0.249333pt;}
.ls2d{letter-spacing:0.255969pt;}
.ls66{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls67{letter-spacing:0.272000pt;}
.ls2c{letter-spacing:0.288000pt;}
.ls3f{letter-spacing:0.293319pt;}
.ls7f{letter-spacing:0.294667pt;}
.ls5a{letter-spacing:0.317333pt;}
.ls24{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.346667pt;}
.ls6d{letter-spacing:0.362667pt;}
.ls7{letter-spacing:0.373333pt;}
.ls51{letter-spacing:0.400000pt;}
.ls5b{letter-spacing:0.408000pt;}
.ls31{letter-spacing:0.426667pt;}
.ls81{letter-spacing:0.430667pt;}
.ls59{letter-spacing:0.453333pt;}
.ls12{letter-spacing:0.480000pt;}
.ls6e{letter-spacing:0.498667pt;}
.ls50{letter-spacing:0.506667pt;}
.ls25{letter-spacing:0.533333pt;}
.ls62{letter-spacing:0.544000pt;}
.ls35{letter-spacing:0.560000pt;}
.ls80{letter-spacing:0.566667pt;}
.ls2b{letter-spacing:0.586667pt;}
.ls5c{letter-spacing:0.589333pt;}
.ls71{letter-spacing:0.634667pt;}
.ls17{letter-spacing:0.640000pt;}
.ls5f{letter-spacing:0.680000pt;}
.ls10{letter-spacing:0.693333pt;}
.ls82{letter-spacing:0.702667pt;}
.ls36{letter-spacing:0.720000pt;}
.ls73{letter-spacing:0.725333pt;}
.lsc{letter-spacing:0.746667pt;}
.ls68{letter-spacing:0.770667pt;}
.ls34{letter-spacing:0.773333pt;}
.lsf{letter-spacing:0.800000pt;}
.ls60{letter-spacing:0.816000pt;}
.ls26{letter-spacing:0.853333pt;}
.ls72{letter-spacing:0.861333pt;}
.lsa{letter-spacing:0.880000pt;}
.ls13{letter-spacing:0.906667pt;}
.ls41{letter-spacing:0.933333pt;}
.ls61{letter-spacing:0.952000pt;}
.lsd{letter-spacing:0.960000pt;}
.ls6f{letter-spacing:0.997333pt;}
.ls14{letter-spacing:1.013333pt;}
.ls79{letter-spacing:1.042667pt;}
.ls32{letter-spacing:1.066667pt;}
.ls75{letter-spacing:1.088000pt;}
.lsb{letter-spacing:1.120000pt;}
.ls77{letter-spacing:1.133333pt;}
.ls8{letter-spacing:1.173333pt;}
.ls78{letter-spacing:1.178667pt;}
.ls15{letter-spacing:1.226667pt;}
.ls2a{letter-spacing:1.248000pt;}
.ls76{letter-spacing:1.269333pt;}
.ls11{letter-spacing:1.280000pt;}
.ls74{letter-spacing:1.314667pt;}
.ls2e{letter-spacing:1.333333pt;}
.ls16{letter-spacing:1.386667pt;}
.ls21{letter-spacing:1.440000pt;}
.ls22{letter-spacing:1.493333pt;}
.ls6c{letter-spacing:1.541333pt;}
.ls20{letter-spacing:1.546667pt;}
.ls9{letter-spacing:1.600000pt;}
.ls43{letter-spacing:1.653333pt;}
.ls23{letter-spacing:1.706667pt;}
.ls42{letter-spacing:1.760000pt;}
.ls1{letter-spacing:3.546667pt;}
.ls38{letter-spacing:35.426188pt;}
.ls3c{letter-spacing:39.315788pt;}
.ls39{letter-spacing:41.092855pt;}
.ls3b{letter-spacing:76.035840pt;}
.ls3a{letter-spacing:77.812907pt;}
.ls45{letter-spacing:132.374467pt;}
.ls48{letter-spacing:132.374545pt;}
.ls37{letter-spacing:148.376000pt;}
.ls46{letter-spacing:201.960000pt;}
.ls44{letter-spacing:207.626667pt;}
.ls52{letter-spacing:226.847990pt;}
.ls54{letter-spacing:231.698656pt;}
.ls53{letter-spacing:237.365323pt;}
.ws0{word-spacing:-16.874667pt;}
.ws9c{word-spacing:-14.720000pt;}
.ws62{word-spacing:-14.400000pt;}
.ws9{word-spacing:-14.293333pt;}
.wsa{word-spacing:-13.973333pt;}
.ws9b{word-spacing:-13.840000pt;}
.ws32{word-spacing:-13.760000pt;}
.ws31{word-spacing:-13.600000pt;}
.ws63{word-spacing:-13.546667pt;}
.ws64{word-spacing:-13.333333pt;}
.ws30{word-spacing:-13.013333pt;}
.ws73{word-spacing:-12.533333pt;}
.wsb1{word-spacing:-11.560000pt;}
.ws2e{word-spacing:-11.333333pt;}
.ws33{word-spacing:-11.088000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws8f{word-spacing:-10.789333pt;}
.ws7{word-spacing:-10.240000pt;}
.ws74{word-spacing:-9.333333pt;}
.ws9d{word-spacing:-9.021333pt;}
.ws3{word-spacing:-8.885333pt;}
.ws9e{word-spacing:-8.840000pt;}
.ws2{word-spacing:-8.362667pt;}
.ws65{word-spacing:-7.933333pt;}
.ws5{word-spacing:-7.728000pt;}
.ws4e{word-spacing:-6.666667pt;}
.ws71{word-spacing:-5.666667pt;}
.wsd{word-spacing:-2.133333pt;}
.ws3b{word-spacing:-1.706667pt;}
.wsb{word-spacing:-1.680000pt;}
.ws38{word-spacing:-1.600000pt;}
.ws7e{word-spacing:-1.440000pt;}
.wsf{word-spacing:-1.333333pt;}
.ws26{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.226667pt;}
.wsba{word-spacing:-1.178667pt;}
.ws76{word-spacing:-1.173333pt;}
.wsa6{word-spacing:-1.133333pt;}
.ws56{word-spacing:-1.066667pt;}
.ws36{word-spacing:-1.013333pt;}
.ws4c{word-spacing:-0.960000pt;}
.wsae{word-spacing:-0.952000pt;}
.ws60{word-spacing:-0.906667pt;}
.wsac{word-spacing:-0.861333pt;}
.ws5d{word-spacing:-0.853333pt;}
.wsd4{word-spacing:-0.816000pt;}
.ws20{word-spacing:-0.800000pt;}
.ws3e{word-spacing:-0.746667pt;}
.wsbb{word-spacing:-0.725333pt;}
.ws8a{word-spacing:-0.693333pt;}
.wsaf{word-spacing:-0.680000pt;}
.ws13{word-spacing:-0.640000pt;}
.wsb0{word-spacing:-0.634667pt;}
.wsb6{word-spacing:-0.589333pt;}
.ws57{word-spacing:-0.586667pt;}
.ws2d{word-spacing:-0.544000pt;}
.ws43{word-spacing:-0.533333pt;}
.wsc{word-spacing:-0.506667pt;}
.ws46{word-spacing:-0.480000pt;}
.ws4f{word-spacing:-0.426667pt;}
.wsc4{word-spacing:-0.408000pt;}
.ws10{word-spacing:-0.373333pt;}
.wsd7{word-spacing:-0.362667pt;}
.ws27{word-spacing:-0.320000pt;}
.ws6{word-spacing:-0.266667pt;}
.wsb3{word-spacing:-0.226667pt;}
.ws7c{word-spacing:-0.213333pt;}
.ws72{word-spacing:-0.181333pt;}
.ws23{word-spacing:-0.160000pt;}
.ws11{word-spacing:-0.106667pt;}
.wsc2{word-spacing:-0.090667pt;}
.ws8{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.053333pt;}
.wsd2{word-spacing:-0.045333pt;}
.ws1{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.053333pt;}
.ws1c{word-spacing:0.106667pt;}
.wsbe{word-spacing:0.136000pt;}
.ws86{word-spacing:0.213333pt;}
.ws1d{word-spacing:0.266667pt;}
.wsbd{word-spacing:0.272000pt;}
.wsc1{word-spacing:0.317333pt;}
.ws91{word-spacing:0.320000pt;}
.ws45{word-spacing:0.373333pt;}
.wsa9{word-spacing:0.408000pt;}
.ws55{word-spacing:0.426667pt;}
.wse{word-spacing:0.480000pt;}
.wsd8{word-spacing:0.498667pt;}
.ws2a{word-spacing:0.533333pt;}
.ws51{word-spacing:0.586667pt;}
.wsb9{word-spacing:0.634667pt;}
.ws22{word-spacing:0.640000pt;}
.ws81{word-spacing:0.680000pt;}
.ws2c{word-spacing:0.746667pt;}
.ws8d{word-spacing:0.770667pt;}
.ws1b{word-spacing:0.800000pt;}
.ws4d{word-spacing:0.853333pt;}
.ws14{word-spacing:0.906667pt;}
.wsc6{word-spacing:0.952000pt;}
.ws4a{word-spacing:0.960000pt;}
.wsb5{word-spacing:0.997333pt;}
.ws52{word-spacing:1.013333pt;}
.wsad{word-spacing:1.042667pt;}
.ws35{word-spacing:1.066667pt;}
.ws70{word-spacing:1.088000pt;}
.ws47{word-spacing:1.120000pt;}
.wsa4{word-spacing:1.133333pt;}
.wsa2{word-spacing:1.173333pt;}
.wsca{word-spacing:1.224000pt;}
.ws41{word-spacing:1.226667pt;}
.wsa3{word-spacing:1.280000pt;}
.wsa5{word-spacing:1.314667pt;}
.ws12{word-spacing:1.333333pt;}
.ws8c{word-spacing:1.360000pt;}
.ws48{word-spacing:1.386667pt;}
.wsd0{word-spacing:1.405333pt;}
.ws34{word-spacing:1.440000pt;}
.wsc5{word-spacing:1.450667pt;}
.ws24{word-spacing:1.493333pt;}
.wsc3{word-spacing:1.541333pt;}
.ws28{word-spacing:1.546667pt;}
.ws37{word-spacing:1.600000pt;}
.wsd3{word-spacing:1.632000pt;}
.ws42{word-spacing:1.653333pt;}
.ws40{word-spacing:1.706667pt;}
.wsa7{word-spacing:1.722667pt;}
.ws19{word-spacing:1.760000pt;}
.wsc7{word-spacing:1.768000pt;}
.ws2b{word-spacing:1.813333pt;}
.ws3f{word-spacing:1.866667pt;}
.ws3d{word-spacing:1.920000pt;}
.ws21{word-spacing:1.973333pt;}
.wsc9{word-spacing:1.994667pt;}
.ws1f{word-spacing:2.026667pt;}
.ws98{word-spacing:2.040000pt;}
.ws4b{word-spacing:2.080000pt;}
.wscf{word-spacing:2.085333pt;}
.ws7f{word-spacing:2.130667pt;}
.ws79{word-spacing:2.133333pt;}
.wsb4{word-spacing:2.176000pt;}
.ws5e{word-spacing:2.186667pt;}
.ws39{word-spacing:2.240000pt;}
.ws61{word-spacing:2.293333pt;}
.ws5a{word-spacing:2.346667pt;}
.ws17{word-spacing:2.400000pt;}
.wsa8{word-spacing:2.448000pt;}
.ws29{word-spacing:2.453333pt;}
.ws54{word-spacing:2.506667pt;}
.wsc8{word-spacing:2.538667pt;}
.ws7a{word-spacing:2.560000pt;}
.ws6f{word-spacing:2.613333pt;}
.ws1a{word-spacing:2.666667pt;}
.ws3a{word-spacing:2.720000pt;}
.wsbc{word-spacing:2.810667pt;}
.ws5b{word-spacing:2.826667pt;}
.wsb8{word-spacing:2.856000pt;}
.wsa1{word-spacing:2.880000pt;}
.ws6e{word-spacing:2.933333pt;}
.ws7d{word-spacing:2.986667pt;}
.ws89{word-spacing:3.040000pt;}
.wsab{word-spacing:3.082667pt;}
.ws77{word-spacing:3.093333pt;}
.wsaa{word-spacing:3.128000pt;}
.ws5c{word-spacing:3.146667pt;}
.wsb2{word-spacing:3.173333pt;}
.ws49{word-spacing:3.200000pt;}
.wsbf{word-spacing:3.218667pt;}
.ws53{word-spacing:3.253333pt;}
.wsc0{word-spacing:3.264000pt;}
.ws5f{word-spacing:3.360000pt;}
.wsd6{word-spacing:3.445333pt;}
.ws6b{word-spacing:3.466667pt;}
.ws8b{word-spacing:3.490667pt;}
.ws90{word-spacing:3.520000pt;}
.ws18{word-spacing:3.573333pt;}
.wsd9{word-spacing:3.717333pt;}
.ws88{word-spacing:3.733333pt;}
.wscc{word-spacing:3.762667pt;}
.ws58{word-spacing:3.786667pt;}
.ws7b{word-spacing:3.893333pt;}
.wsd1{word-spacing:3.898667pt;}
.ws15{word-spacing:3.946667pt;}
.ws6d{word-spacing:4.000000pt;}
.ws80{word-spacing:4.034667pt;}
.ws87{word-spacing:4.160000pt;}
.wsd5{word-spacing:4.170667pt;}
.ws92{word-spacing:4.352000pt;}
.ws25{word-spacing:4.426667pt;}
.ws99{word-spacing:4.442667pt;}
.ws6c{word-spacing:4.640000pt;}
.ws50{word-spacing:4.693333pt;}
.ws59{word-spacing:4.746667pt;}
.wscd{word-spacing:4.760000pt;}
.wsce{word-spacing:4.805333pt;}
.wscb{word-spacing:4.896000pt;}
.ws9f{word-spacing:4.906667pt;}
.wsa0{word-spacing:5.066667pt;}
.ws78{word-spacing:5.120000pt;}
.ws8e{word-spacing:5.168000pt;}
.ws16{word-spacing:5.973333pt;}
.wsb7{word-spacing:5.984000pt;}
.ws95{word-spacing:6.754667pt;}
.ws9a{word-spacing:6.800000pt;}
.ws96{word-spacing:7.389333pt;}
.ws93{word-spacing:9.565333pt;}
.ws94{word-spacing:10.517333pt;}
.ws97{word-spacing:11.152000pt;}
.wsda{word-spacing:12.149333pt;}
.wsdb{word-spacing:15.821333pt;}
.ws2f{word-spacing:64.237333pt;}
.ws83{word-spacing:104.493326pt;}
.ws84{word-spacing:127.159992pt;}
.ws82{word-spacing:130.922659pt;}
.ws69{word-spacing:130.922660pt;}
.ws75{word-spacing:141.938667pt;}
.ws85{word-spacing:163.879990pt;}
.ws67{word-spacing:181.151992pt;}
.ws6a{word-spacing:202.322660pt;}
.ws68{word-spacing:237.818658pt;}
.ws66{word-spacing:1037.557405pt;}
._8{margin-left:-14.733333pt;}
._52{margin-left:-12.544000pt;}
._10{margin-left:-9.429883pt;}
._e{margin-left:-7.790933pt;}
._2{margin-left:-6.536533pt;}
._5{margin-left:-4.741356pt;}
._3{margin-left:-3.808000pt;}
._7{margin-left:-2.710400pt;}
._1{margin-left:-1.774933pt;}
._4{width:0.904533pt;}
._6{width:2.086947pt;}
._c{width:3.840000pt;}
._0{width:4.966400pt;}
._56{width:6.437333pt;}
._d{width:8.567467pt;}
._54{width:9.610667pt;}
._51{width:11.077333pt;}
._55{width:13.153600pt;}
._f{width:14.574922pt;}
._9{width:16.320000pt;}
._53{width:17.635460pt;}
._15{width:32.776000pt;}
._28{width:37.853327pt;}
._a{width:48.552000pt;}
._13{width:69.223985pt;}
._11{width:89.170667pt;}
._18{width:94.508131pt;}
._32{width:96.605333pt;}
._25{width:113.287993pt;}
._16{width:114.330667pt;}
._47{width:116.198923pt;}
._1c{width:117.103987pt;}
._36{width:119.262400pt;}
._50{width:121.493326pt;}
._3b{width:133.552000pt;}
._1a{width:136.997333pt;}
._49{width:138.493323pt;}
._43{width:141.031992pt;}
._1f{width:142.037307pt;}
._1e{width:143.752015pt;}
._4f{width:147.106656pt;}
._38{width:149.788267pt;}
._35{width:153.272000pt;}
._20{width:155.901333pt;}
._4e{width:158.489592pt;}
._14{width:161.658653pt;}
._12{width:164.152000pt;}
._46{width:174.841059pt;}
._4b{width:175.900249pt;}
._30{width:178.658667pt;}
._48{width:180.879990pt;}
._44{width:183.418656pt;}
._19{width:186.818653pt;}
._17{width:189.312000pt;}
._2c{width:193.301333pt;}
._2f{width:194.616000pt;}
._42{width:198.197315pt;}
._4d{width:204.861326pt;}
._33{width:206.992000pt;}
._1d{width:209.485320pt;}
._1b{width:211.978667pt;}
._3c{width:216.006400pt;}
._4c{width:220.174392pt;}
._4a{width:228.033592pt;}
._26{width:236.057600pt;}
._34{width:255.272000pt;}
._2b{width:260.848000pt;}
._3f{width:266.015990pt;}
._40{width:271.546659pt;}
._39{width:272.544000pt;}
._22{width:285.154596pt;}
._21{width:288.048000pt;}
._37{width:295.210667pt;}
._27{width:310.170667pt;}
._31{width:319.917333pt;}
._45{width:325.085323pt;}
._24{width:341.677320pt;}
._23{width:344.269329pt;}
._3a{width:373.766400pt;}
._3d{width:374.809067pt;}
._2a{width:531.172264pt;}
._2e{width:550.427207pt;}
._29{width:655.612368pt;}
._2d{width:674.867223pt;}
._3e{width:805.016626pt;}
._41{width:1002.237867pt;}
._b{width:2140.458610pt;}
.fsa{font-size:31.733332pt;}
.fs8{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs6{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y1b{bottom:60.930933pt;}
.y1a{bottom:61.181335pt;}
.y14{bottom:69.080000pt;}
.y13{bottom:88.706667pt;}
.y50{bottom:100.394933pt;}
.ya7{bottom:100.813599pt;}
.y86{bottom:100.813639pt;}
.y18{bottom:101.040000pt;}
.yfc{bottom:101.986816pt;}
.ydc{bottom:101.986898pt;}
.y1ae{bottom:101.986938pt;}
.y15e{bottom:102.110921pt;}
.y47{bottom:108.854533pt;}
.y4f{bottom:113.722933pt;}
.y106{bottom:116.186666pt;}
.y21f{bottom:116.985620pt;}
.ya6{bottom:117.480265pt;}
.y85{bottom:117.480306pt;}
.yfb{bottom:118.653483pt;}
.ydb{bottom:118.653564pt;}
.y1ad{bottom:118.653605pt;}
.y15d{bottom:118.777588pt;}
.y17{bottom:120.666667pt;}
.y1de{bottom:124.874277pt;}
.y46{bottom:125.521200pt;}
.y105{bottom:128.769204pt;}
.y21e{bottom:130.313620pt;}
.y25f{bottom:130.653606pt;}
.y4e{bottom:131.584269pt;}
.y132{bottom:134.145467pt;}
.ya5{bottom:134.146932pt;}
.y84{bottom:134.146973pt;}
.yfa{bottom:135.320150pt;}
.yda{bottom:135.320231pt;}
.y1ac{bottom:135.320272pt;}
.y15c{bottom:135.444255pt;}
.y15{bottom:137.733333pt;}
.y1dd{bottom:138.202277pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.y104{bottom:142.097204pt;}
.y45{bottom:142.187866pt;}
.y21d{bottom:143.641620pt;}
.y25e{bottom:143.981606pt;}
.y131{bottom:150.812133pt;}
.ya4{bottom:150.813599pt;}
.y83{bottom:150.813639pt;}
.y1dc{bottom:151.530277pt;}
.yf9{bottom:151.986816pt;}
.yd9{bottom:151.986898pt;}
.y1ab{bottom:151.986938pt;}
.y15b{bottom:152.110921pt;}
.y4d{bottom:153.814791pt;}
.y21c{bottom:156.969620pt;}
.y25d{bottom:157.309606pt;}
.y44{bottom:158.854533pt;}
.y1db{bottom:164.858277pt;}
.y11c{bottom:166.930257pt;}
.y4c{bottom:167.142791pt;}
.y130{bottom:167.478800pt;}
.ya3{bottom:167.480265pt;}
.y82{bottom:167.480306pt;}
.yf8{bottom:168.653483pt;}
.yd8{bottom:168.653564pt;}
.y1aa{bottom:168.653605pt;}
.y15a{bottom:168.777588pt;}
.y21b{bottom:170.297620pt;}
.y25c{bottom:170.637606pt;}
.y43{bottom:175.521200pt;}
.y1da{bottom:178.186277pt;}
.y21a{bottom:183.625620pt;}
.y11b{bottom:183.635590pt;}
.y25b{bottom:183.965606pt;}
.y12f{bottom:184.145467pt;}
.ya2{bottom:184.146932pt;}
.y81{bottom:184.146973pt;}
.yf7{bottom:185.320150pt;}
.yd7{bottom:185.320231pt;}
.y1a9{bottom:185.320272pt;}
.y159{bottom:185.444255pt;}
.y1d9{bottom:191.514277pt;}
.y42{bottom:192.187866pt;}
.y4b{bottom:194.535458pt;}
.y219{bottom:196.953620pt;}
.y25a{bottom:197.293606pt;}
.y11a{bottom:200.272923pt;}
.y12e{bottom:200.812133pt;}
.y80{bottom:200.813639pt;}
.yf6{bottom:201.986816pt;}
.yd6{bottom:201.986898pt;}
.y1a8{bottom:201.986938pt;}
.y158{bottom:202.110921pt;}
.y1d8{bottom:204.842277pt;}
.y4a{bottom:207.863458pt;}
.y41{bottom:208.854533pt;}
.y218{bottom:210.281620pt;}
.y259{bottom:210.621606pt;}
.y119{bottom:216.910257pt;}
.y12d{bottom:217.478800pt;}
.ya1{bottom:217.480265pt;}
.y7f{bottom:217.480306pt;}
.y1d7{bottom:218.170277pt;}
.yf5{bottom:218.653483pt;}
.yd5{bottom:218.653564pt;}
.y1a7{bottom:218.653605pt;}
.y157{bottom:218.777588pt;}
.y49{bottom:221.191458pt;}
.y217{bottom:223.609620pt;}
.y258{bottom:223.949606pt;}
.y40{bottom:225.521200pt;}
.y1d6{bottom:231.498277pt;}
.y118{bottom:233.547590pt;}
.y12c{bottom:234.145467pt;}
.y7e{bottom:234.146973pt;}
.yf4{bottom:235.320150pt;}
.yd4{bottom:235.320231pt;}
.y1a6{bottom:235.320272pt;}
.y156{bottom:235.444255pt;}
.y216{bottom:236.937620pt;}
.y257{bottom:237.277606pt;}
.y3f{bottom:242.187866pt;}
.y1d5{bottom:244.826277pt;}
.y117{bottom:246.875590pt;}
.y48{bottom:248.606791pt;}
.y215{bottom:250.265620pt;}
.y256{bottom:250.605606pt;}
.y12b{bottom:250.812133pt;}
.ya0{bottom:250.813599pt;}
.y7d{bottom:250.813639pt;}
.yf3{bottom:251.986816pt;}
.yd3{bottom:251.986898pt;}
.y1a5{bottom:251.986938pt;}
.y155{bottom:252.110921pt;}
.y1d4{bottom:258.154277pt;}
.y3e{bottom:258.854533pt;}
.y116{bottom:263.508931pt;}
.y214{bottom:263.593620pt;}
.y255{bottom:263.933606pt;}
.y12a{bottom:267.478800pt;}
.y9f{bottom:267.480265pt;}
.y7c{bottom:267.480306pt;}
.yf2{bottom:268.653483pt;}
.yd2{bottom:268.653564pt;}
.y154{bottom:268.777588pt;}
.y3d{bottom:275.521200pt;}
.y213{bottom:276.921620pt;}
.y254{bottom:277.261606pt;}
.y115{bottom:280.147606pt;}
.y129{bottom:284.145467pt;}
.y9e{bottom:284.146932pt;}
.y7b{bottom:284.146973pt;}
.yf1{bottom:285.320150pt;}
.yd1{bottom:285.320231pt;}
.y1a4{bottom:285.320272pt;}
.y153{bottom:285.444255pt;}
.y1d3{bottom:288.154277pt;}
.y212{bottom:290.249620pt;}
.y253{bottom:290.589606pt;}
.y3b{bottom:292.187866pt;}
.y114{bottom:293.475606pt;}
.y128{bottom:300.812133pt;}
.y9d{bottom:300.813599pt;}
.y7a{bottom:300.813639pt;}
.yf0{bottom:301.986816pt;}
.yd0{bottom:301.986898pt;}
.y152{bottom:302.110921pt;}
.y211{bottom:303.577620pt;}
.y252{bottom:303.917606pt;}
.ya{bottom:306.382667pt;}
.y3a{bottom:308.854533pt;}
.y113{bottom:310.114261pt;}
.y210{bottom:316.905620pt;}
.y251{bottom:317.245606pt;}
.y134{bottom:317.478800pt;}
.y9c{bottom:317.480265pt;}
.y79{bottom:317.480306pt;}
.yef{bottom:318.653483pt;}
.ycf{bottom:318.653564pt;}
.y1a3{bottom:318.653605pt;}
.y151{bottom:318.777588pt;}
.y112{bottom:323.442261pt;}
.y39{bottom:325.521200pt;}
.y20f{bottom:330.233620pt;}
.y250{bottom:330.573606pt;}
.y127{bottom:334.145467pt;}
.y9b{bottom:334.146932pt;}
.y78{bottom:334.146973pt;}
.yee{bottom:335.320150pt;}
.yce{bottom:335.320231pt;}
.y1a2{bottom:335.320272pt;}
.y150{bottom:335.444255pt;}
.y111{bottom:340.080936pt;}
.y38{bottom:342.187866pt;}
.y1d2{bottom:343.507724pt;}
.yd{bottom:343.546667pt;}
.y20e{bottom:343.561620pt;}
.y24f{bottom:343.901606pt;}
.y133{bottom:350.812133pt;}
.y9a{bottom:350.813599pt;}
.y77{bottom:350.813639pt;}
.y9{bottom:351.724000pt;}
.yed{bottom:351.986816pt;}
.ycd{bottom:351.986898pt;}
.y1a1{bottom:351.986938pt;}
.y14f{bottom:352.110921pt;}
.y110{bottom:353.408936pt;}
.y1d1{bottom:356.835724pt;}
.y20d{bottom:356.889620pt;}
.y24e{bottom:357.229606pt;}
.y37{bottom:358.854533pt;}
.y126{bottom:367.478800pt;}
.y99{bottom:367.480265pt;}
.y76{bottom:367.480306pt;}
.yec{bottom:368.653483pt;}
.ycc{bottom:368.653564pt;}
.y1a0{bottom:368.653605pt;}
.y14e{bottom:368.777588pt;}
.y10e{bottom:370.052944pt;}
.y1d0{bottom:370.163724pt;}
.y20c{bottom:370.217620pt;}
.y24d{bottom:370.557606pt;}
.y36{bottom:375.521200pt;}
.y10d{bottom:383.380944pt;}
.y1cf{bottom:383.491724pt;}
.y20b{bottom:383.545620pt;}
.y24c{bottom:383.885606pt;}
.y125{bottom:384.145467pt;}
.y98{bottom:384.146932pt;}
.y75{bottom:384.146973pt;}
.yeb{bottom:385.320150pt;}
.ycb{bottom:385.320231pt;}
.y19f{bottom:385.320272pt;}
.y14d{bottom:385.444255pt;}
.yb{bottom:386.533333pt;}
.y35{bottom:392.187866pt;}
.y10c{bottom:396.708944pt;}
.y10f{bottom:396.720277pt;}
.y1ce{bottom:396.819724pt;}
.y20a{bottom:396.873620pt;}
.y8{bottom:397.065333pt;}
.y24b{bottom:397.213606pt;}
.y124{bottom:400.812133pt;}
.y97{bottom:400.813599pt;}
.y74{bottom:400.813639pt;}
.yea{bottom:401.986816pt;}
.yca{bottom:401.986898pt;}
.y19e{bottom:401.986938pt;}
.y14c{bottom:402.110921pt;}
.y34{bottom:408.854533pt;}
.y1cd{bottom:410.147724pt;}
.y209{bottom:410.201620pt;}
.y24a{bottom:410.541606pt;}
.y10b{bottom:413.346253pt;}
.y123{bottom:417.478800pt;}
.y96{bottom:417.480265pt;}
.y73{bottom:417.480306pt;}
.ye9{bottom:418.653483pt;}
.yc9{bottom:418.653564pt;}
.y19d{bottom:418.653605pt;}
.y14b{bottom:418.777588pt;}
.y1cc{bottom:423.475724pt;}
.y208{bottom:423.529620pt;}
.y249{bottom:423.869606pt;}
.y33{bottom:425.521200pt;}
.y10{bottom:433.826667pt;}
.y122{bottom:434.145467pt;}
.y95{bottom:434.146932pt;}
.y72{bottom:434.146973pt;}
.ye8{bottom:435.320150pt;}
.yc8{bottom:435.320231pt;}
.y19c{bottom:435.320272pt;}
.y181{bottom:435.444255pt;}
.y1cb{bottom:436.803724pt;}
.y207{bottom:436.857620pt;}
.y248{bottom:437.197606pt;}
.y10a{bottom:438.313586pt;}
.y3c{bottom:442.187866pt;}
.y7{bottom:442.406667pt;}
.y1ca{bottom:450.131724pt;}
.y206{bottom:450.185620pt;}
.y247{bottom:450.525606pt;}
.y121{bottom:450.812133pt;}
.y94{bottom:450.813599pt;}
.y71{bottom:450.813639pt;}
.ye7{bottom:451.986816pt;}
.yc7{bottom:451.986898pt;}
.y19b{bottom:451.986938pt;}
.y180{bottom:452.110921pt;}
.y32{bottom:458.854533pt;}
.y109{bottom:460.016919pt;}
.y1c9{bottom:463.459724pt;}
.y205{bottom:463.513620pt;}
.y246{bottom:463.853606pt;}
.y162{bottom:465.236319pt;}
.y120{bottom:467.478800pt;}
.y93{bottom:467.480265pt;}
.y70{bottom:467.480306pt;}
.ye6{bottom:468.653483pt;}
.yc6{bottom:468.653564pt;}
.y19a{bottom:468.653605pt;}
.y17f{bottom:468.777588pt;}
.y108{bottom:473.344919pt;}
.y1c8{bottom:476.787724pt;}
.y204{bottom:476.841620pt;}
.y245{bottom:477.181606pt;}
.y11{bottom:478.426667pt;}
.y11f{bottom:484.145467pt;}
.y92{bottom:484.146932pt;}
.y6f{bottom:484.146973pt;}
.ye5{bottom:485.320150pt;}
.yc5{bottom:485.320231pt;}
.y199{bottom:485.320272pt;}
.y17e{bottom:485.444255pt;}
.y6{bottom:487.748000pt;}
.y1c7{bottom:490.115724pt;}
.y203{bottom:490.169620pt;}
.y17c{bottom:490.269355pt;}
.y244{bottom:490.509606pt;}
.y107{bottom:495.308919pt;}
.y11e{bottom:500.812133pt;}
.y91{bottom:500.813599pt;}
.y6e{bottom:500.813639pt;}
.ye4{bottom:501.986816pt;}
.yc4{bottom:501.986898pt;}
.y198{bottom:501.986938pt;}
.y17d{bottom:502.110921pt;}
.y202{bottom:503.497620pt;}
.y243{bottom:503.837606pt;}
.y17b{bottom:506.974688pt;}
.y31{bottom:508.854574pt;}
.y201{bottom:516.825620pt;}
.y242{bottom:517.165606pt;}
.y11d{bottom:517.478800pt;}
.y90{bottom:517.480265pt;}
.y6d{bottom:517.480306pt;}
.y103{bottom:517.967204pt;}
.ye3{bottom:518.653483pt;}
.yc3{bottom:518.653564pt;}
.y197{bottom:518.653605pt;}
.y1c6{bottom:520.081058pt;}
.y17a{bottom:523.612021pt;}
.y19{bottom:524.093333pt;}
.y200{bottom:530.153620pt;}
.y241{bottom:530.493606pt;}
.y5{bottom:533.089333pt;}
.y1c5{bottom:533.409058pt;}
.y8f{bottom:534.146932pt;}
.y6c{bottom:534.146973pt;}
.ye2{bottom:535.320150pt;}
.yc2{bottom:535.320231pt;}
.y196{bottom:535.320272pt;}
.y179{bottom:540.249355pt;}
.y30{bottom:542.187907pt;}
.y1ff{bottom:543.481620pt;}
.y240{bottom:543.821606pt;}
.y18b{bottom:545.524385pt;}
.y195{bottom:546.004284pt;}
.y8e{bottom:550.813599pt;}
.y6b{bottom:550.813639pt;}
.ye1{bottom:551.986816pt;}
.yc1{bottom:551.986898pt;}
.y1fe{bottom:556.809620pt;}
.y178{bottom:556.886688pt;}
.y23f{bottom:557.149606pt;}
.y18a{bottom:558.852385pt;}
.y2f{bottom:558.854574pt;}
.y194{bottom:559.332284pt;}
.ye{bottom:561.706667pt;}
.y1c4{bottom:563.409058pt;}
.y8d{bottom:567.480265pt;}
.y6a{bottom:567.480306pt;}
.ye0{bottom:568.653483pt;}
.yc0{bottom:568.653564pt;}
.y102{bottom:568.653605pt;}
.y1fd{bottom:570.137620pt;}
.y23e{bottom:570.477606pt;}
.y189{bottom:572.180385pt;}
.y193{bottom:572.660284pt;}
.y177{bottom:573.524021pt;}
.y2e{bottom:575.521240pt;}
.y1fc{bottom:583.465620pt;}
.y23d{bottom:583.805606pt;}
.y8c{bottom:584.146932pt;}
.y69{bottom:584.146973pt;}
.ydf{bottom:585.320150pt;}
.ybf{bottom:585.320231pt;}
.y101{bottom:585.320272pt;}
.y188{bottom:585.508385pt;}
.y192{bottom:585.988284pt;}
.y176{bottom:590.161355pt;}
.y2d{bottom:592.187907pt;}
.y1fb{bottom:596.793620pt;}
.y1c3{bottom:596.809592pt;}
.y23c{bottom:597.133606pt;}
.y187{bottom:598.863052pt;}
.y191{bottom:599.342951pt;}
.y8b{bottom:600.813599pt;}
.y68{bottom:600.813639pt;}
.yde{bottom:601.986816pt;}
.ybe{bottom:601.986898pt;}
.y100{bottom:601.986938pt;}
.y139{bottom:602.562312pt;}
.y175{bottom:606.798688pt;}
.y2c{bottom:608.854574pt;}
.y1fa{bottom:610.121620pt;}
.y1c2{bottom:610.137592pt;}
.y23b{bottom:610.461606pt;}
.y186{bottom:612.191052pt;}
.y190{bottom:612.670951pt;}
.y138{bottom:615.890312pt;}
.y8a{bottom:617.480265pt;}
.y67{bottom:617.480306pt;}
.ybd{bottom:618.653564pt;}
.yff{bottom:618.653605pt;}
.y174{bottom:623.436021pt;}
.y1f9{bottom:623.449620pt;}
.y1c1{bottom:623.465592pt;}
.y23a{bottom:623.789606pt;}
.y185{bottom:625.519052pt;}
.y2b{bottom:625.521240pt;}
.y18f{bottom:625.998951pt;}
.y137{bottom:629.218312pt;}
.y89{bottom:634.146932pt;}
.y66{bottom:634.146973pt;}
.ydd{bottom:635.320150pt;}
.ybc{bottom:635.320231pt;}
.yfe{bottom:635.320272pt;}
.y1f8{bottom:636.777620pt;}
.y1c0{bottom:636.793592pt;}
.y239{bottom:637.117606pt;}
.y184{bottom:638.847052pt;}
.y18e{bottom:639.326951pt;}
.y173{bottom:640.073355pt;}
.y2a{bottom:642.187907pt;}
.y1f7{bottom:650.105620pt;}
.y1bf{bottom:650.121592pt;}
.y238{bottom:650.445606pt;}
.y88{bottom:650.813599pt;}
.y65{bottom:650.813639pt;}
.ybb{bottom:651.986898pt;}
.yfd{bottom:651.986938pt;}
.y183{bottom:652.175052pt;}
.y18d{bottom:652.654951pt;}
.y14a{bottom:653.992813pt;}
.y172{bottom:656.710688pt;}
.y29{bottom:658.854574pt;}
.y1f6{bottom:663.433620pt;}
.y1be{bottom:663.449592pt;}
.y237{bottom:663.773606pt;}
.y182{bottom:665.503052pt;}
.y18c{bottom:665.982951pt;}
.y87{bottom:667.480265pt;}
.y64{bottom:667.480306pt;}
.yba{bottom:668.653564pt;}
.y149{bottom:670.698146pt;}
.y171{bottom:673.348021pt;}
.y28{bottom:675.521240pt;}
.y1f5{bottom:676.761620pt;}
.y1bd{bottom:676.777592pt;}
.y236{bottom:677.101606pt;}
.y63{bottom:684.146973pt;}
.yb9{bottom:685.320231pt;}
.y148{bottom:687.335480pt;}
.y170{bottom:689.985355pt;}
.y1f4{bottom:690.089620pt;}
.y235{bottom:690.429606pt;}
.y4{bottom:691.756000pt;}
.y27{bottom:692.187907pt;}
.y62{bottom:700.813639pt;}
.yb8{bottom:701.986898pt;}
.y1f3{bottom:703.417620pt;}
.y234{bottom:703.757606pt;}
.y147{bottom:703.972813pt;}
.y16f{bottom:706.622688pt;}
.y1bc{bottom:706.742926pt;}
.y26{bottom:708.854574pt;}
.y1f2{bottom:716.745620pt;}
.y233{bottom:717.085606pt;}
.y61{bottom:717.480306pt;}
.yb7{bottom:718.653564pt;}
.y1bb{bottom:720.070926pt;}
.y146{bottom:720.610146pt;}
.y16e{bottom:723.260021pt;}
.y12{bottom:725.040000pt;}
.y25{bottom:725.521240pt;}
.y1f1{bottom:730.073620pt;}
.y232{bottom:730.413606pt;}
.y1ba{bottom:733.398926pt;}
.y60{bottom:734.146973pt;}
.yb6{bottom:735.320231pt;}
.y145{bottom:737.247480pt;}
.y16d{bottom:739.897355pt;}
.y24{bottom:742.187907pt;}
.y1f0{bottom:743.401620pt;}
.y231{bottom:743.741606pt;}
.y5f{bottom:750.813639pt;}
.yb5{bottom:751.986898pt;}
.y144{bottom:753.884813pt;}
.y26f{bottom:756.072287pt;}
.y16c{bottom:756.534688pt;}
.y1ef{bottom:756.729620pt;}
.y230{bottom:757.069606pt;}
.y1b9{bottom:763.362305pt;}
.y5e{bottom:767.480306pt;}
.yb4{bottom:768.653564pt;}
.y26e{bottom:769.400287pt;}
.y1ee{bottom:770.057620pt;}
.y22f{bottom:770.397606pt;}
.y143{bottom:770.522146pt;}
.y16b{bottom:773.172021pt;}
.y1b8{bottom:780.028971pt;}
.y23{bottom:781.461469pt;}
.y1ed{bottom:783.385620pt;}
.y22e{bottom:783.725606pt;}
.y5d{bottom:784.146973pt;}
.yb3{bottom:785.320231pt;}
.y142{bottom:787.159480pt;}
.y16a{bottom:789.809355pt;}
.y22{bottom:794.789469pt;}
.y1b7{bottom:796.695638pt;}
.y1ec{bottom:796.713620pt;}
.y26d{bottom:796.815620pt;}
.y22d{bottom:797.053606pt;}
.y5c{bottom:800.813639pt;}
.yb2{bottom:801.986898pt;}
.y141{bottom:803.796813pt;}
.y3{bottom:805.081333pt;}
.y169{bottom:806.446688pt;}
.y1eb{bottom:810.041620pt;}
.y26c{bottom:810.143620pt;}
.y22c{bottom:810.381606pt;}
.y1b6{bottom:813.362305pt;}
.y5b{bottom:817.480306pt;}
.yb1{bottom:818.653564pt;}
.y140{bottom:820.434146pt;}
.y168{bottom:823.084021pt;}
.y1ea{bottom:823.369620pt;}
.y26b{bottom:823.471620pt;}
.y22b{bottom:823.709606pt;}
.y1b5{bottom:830.028971pt;}
.y21{bottom:832.656169pt;}
.y5a{bottom:834.146973pt;}
.yb0{bottom:835.320231pt;}
.y1e9{bottom:836.697620pt;}
.y26a{bottom:836.799620pt;}
.y22a{bottom:837.037606pt;}
.y13f{bottom:837.071480pt;}
.y167{bottom:839.721355pt;}
.y1b4{bottom:846.695638pt;}
.y1e8{bottom:850.025620pt;}
.y269{bottom:850.127620pt;}
.y229{bottom:850.365606pt;}
.y59{bottom:850.813639pt;}
.yaf{bottom:851.986898pt;}
.y13e{bottom:853.708813pt;}
.y166{bottom:856.358688pt;}
.y2{bottom:857.092000pt;}
.y1e7{bottom:863.353620pt;}
.y1b3{bottom:863.362305pt;}
.y268{bottom:863.455620pt;}
.y228{bottom:863.693606pt;}
.y58{bottom:867.480306pt;}
.yae{bottom:868.653564pt;}
.y13d{bottom:870.346146pt;}
.y20{bottom:872.377441pt;}
.y165{bottom:872.996021pt;}
.y1e6{bottom:876.681620pt;}
.y267{bottom:876.783620pt;}
.y227{bottom:877.021606pt;}
.y1{bottom:879.748000pt;}
.y1b2{bottom:880.028971pt;}
.y57{bottom:884.146973pt;}
.yad{bottom:885.320231pt;}
.y13c{bottom:886.983480pt;}
.y1e5{bottom:890.009620pt;}
.y266{bottom:890.111620pt;}
.y226{bottom:890.349606pt;}
.y1f{bottom:896.377441pt;}
.y164{bottom:897.952021pt;}
.y56{bottom:900.813639pt;}
.yac{bottom:901.986898pt;}
.y1e4{bottom:903.337620pt;}
.y265{bottom:903.439620pt;}
.y225{bottom:903.677606pt;}
.y13b{bottom:911.285355pt;}
.y1b1{bottom:913.362305pt;}
.y1e3{bottom:916.665620pt;}
.y264{bottom:916.767620pt;}
.y224{bottom:917.005606pt;}
.y55{bottom:917.480306pt;}
.yab{bottom:918.653564pt;}
.y163{bottom:919.655355pt;}
.y1e2{bottom:929.993620pt;}
.y263{bottom:930.095620pt;}
.y223{bottom:930.333606pt;}
.y13a{bottom:932.988688pt;}
.y54{bottom:934.146973pt;}
.yaa{bottom:935.320231pt;}
.y15f{bottom:942.324306pt;}
.y1e1{bottom:943.321620pt;}
.y262{bottom:943.423620pt;}
.y222{bottom:943.661606pt;}
.y53{bottom:950.813639pt;}
.ya9{bottom:951.986898pt;}
.y1b0{bottom:951.986938pt;}
.y136{bottom:955.652306pt;}
.y161{bottom:955.663639pt;}
.y1e{bottom:956.561849pt;}
.y1e0{bottom:956.649620pt;}
.y261{bottom:956.751620pt;}
.y221{bottom:956.989606pt;}
.y52{bottom:967.480306pt;}
.ya8{bottom:968.653564pt;}
.y1af{bottom:968.653605pt;}
.y135{bottom:968.980306pt;}
.y160{bottom:968.991639pt;}
.y1df{bottom:969.977620pt;}
.y260{bottom:970.079620pt;}
.y220{bottom:970.317606pt;}
.y1d{bottom:986.299161pt;}
.y1c{bottom:1001.406494pt;}
.y51{bottom:1002.206543pt;}
.h18{height:22.403733pt;}
.h4{height:29.333333pt;}
.h15{height:32.005333pt;}
.h17{height:32.760417pt;}
.hb{height:37.376000pt;}
.h12{height:37.653333pt;}
.h11{height:38.453333pt;}
.hd{height:39.712000pt;}
.h1d{height:40.491700pt;}
.h1c{height:40.521164pt;}
.h1e{height:40.537033pt;}
.h1f{height:40.537115pt;}
.h20{height:40.585131pt;}
.h16{height:43.656000pt;}
.h14{height:46.144000pt;}
.h1b{height:46.376000pt;}
.h21{height:46.389854pt;}
.hc{height:48.766452pt;}
.he{height:49.248000pt;}
.h13{height:51.360000pt;}
.h3{height:51.916667pt;}
.h1a{height:54.560000pt;}
.h19{height:57.493333pt;}
.h10{height:57.621333pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hf{height:82.176000pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:1054.488000pt;}
.ha{height:1054.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:793.701333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xc{left:68.031469pt;}
.x11{left:69.996800pt;}
.x1a{left:72.025722pt;}
.xd{left:75.717199pt;}
.x12{left:83.151469pt;}
.x10{left:86.929867pt;}
.x1d{left:90.708669pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x13{left:160.785065pt;}
.x2{left:169.813333pt;}
.x1b{left:174.280924pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x14{left:233.752416pt;}
.x15{left:325.461749pt;}
.x19{left:398.432135pt;}
.xe{left:408.191457pt;}
.xf{left:423.311456pt;}
.x1c{left:430.866924pt;}
.x16{left:441.243078pt;}
.x17{left:532.975077pt;}
.x18{left:600.929741pt;}
.xa{left:647.307210pt;}
.xb{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; }
  