
    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_b3b1519220197cdf4d13d109.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_1a0fa60de00e2a260ea5cadd.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_ad1bebf6277bb3f938503b70.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.825000;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_24004569aec4a85a2e543d8f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ad0c00c3c0255184e0029b18.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0458a6bcfd0b24f80e67f37b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_eba4ae498f27fc167d4f75bf.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_33d1fba7043d5224268f14e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.146000;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_4f71d90cdc035b336914bb51.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e250aec3157664eb7bcb17a8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_a3ff416d27e4b68afbf55ee2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b52ecea915bdcf13adc23031.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_78c5be7a9d083eb7af568104.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.896000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400011px;}
.v3{vertical-align:-11.335693px;}
.v4{vertical-align:-9.337646px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls3c{letter-spacing:-1.020000px;}
.ls3b{letter-spacing:-0.780000px;}
.ls3a{letter-spacing:-0.720000px;}
.ls4c{letter-spacing:-0.660000px;}
.ls3d{letter-spacing:-0.600000px;}
.ls39{letter-spacing:-0.540000px;}
.ls3e{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.420000px;}
.ls6a{letter-spacing:-0.408000px;}
.ls15{letter-spacing:-0.360000px;}
.ls67{letter-spacing:-0.357000px;}
.ls65{letter-spacing:-0.306000px;}
.ls17{letter-spacing:-0.300000px;}
.ls6c{letter-spacing:-0.255000px;}
.ls16{letter-spacing:-0.240000px;}
.ls29{letter-spacing:-0.180000px;}
.ls36{letter-spacing:-0.166041px;}
.ls68{letter-spacing:-0.153000px;}
.ls13{letter-spacing:-0.120000px;}
.ls33{letter-spacing:-0.110694px;}
.ls66{letter-spacing:-0.102000px;}
.ls34{letter-spacing:-0.061348px;}
.ls14{letter-spacing:-0.060000px;}
.ls38{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000090px;}
.ls58{letter-spacing:0.025500px;}
.ls63{letter-spacing:0.051000px;}
.ls2e{letter-spacing:0.055347px;}
.ls1b{letter-spacing:0.060000px;}
.ls25{letter-spacing:0.090000px;}
.ls51{letter-spacing:0.102000px;}
.ls30{letter-spacing:0.110694px;}
.lsb{letter-spacing:0.120000px;}
.ls5b{letter-spacing:0.153000px;}
.ls11{letter-spacing:0.178791px;}
.ls5{letter-spacing:0.180000px;}
.ls6b{letter-spacing:0.204000px;}
.ls3{letter-spacing:0.240000px;}
.ls35{letter-spacing:0.245393px;}
.ls12{letter-spacing:0.255000px;}
.ls2f{letter-spacing:0.276735px;}
.ls53{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls59{letter-spacing:0.306000px;}
.ls4b{letter-spacing:0.330000px;}
.ls64{letter-spacing:0.331500px;}
.ls5c{letter-spacing:0.357000px;}
.ls7{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.387429px;}
.ls4a{letter-spacing:0.390000px;}
.ls5d{letter-spacing:0.408000px;}
.ls1a{letter-spacing:0.420000px;}
.ls4f{letter-spacing:0.459000px;}
.ls8{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.510000px;}
.ls27{letter-spacing:0.540000px;}
.ls50{letter-spacing:0.561000px;}
.ls2d{letter-spacing:0.570000px;}
.ls1c{letter-spacing:0.600000px;}
.ls4d{letter-spacing:0.612000px;}
.lsf{letter-spacing:0.630000px;}
.ls6{letter-spacing:0.660000px;}
.ls56{letter-spacing:0.663000px;}
.ls31{letter-spacing:0.664164px;}
.ls48{letter-spacing:0.690000px;}
.ls60{letter-spacing:0.714000px;}
.ls19{letter-spacing:0.720000px;}
.ls52{letter-spacing:0.739500px;}
.ls37{letter-spacing:0.750000px;}
.ls4e{letter-spacing:0.765000px;}
.ls2b{letter-spacing:0.780000px;}
.ls61{letter-spacing:0.816000px;}
.lsa{letter-spacing:0.840000px;}
.ls55{letter-spacing:0.867000px;}
.ls62{letter-spacing:0.892500px;}
.ls1f{letter-spacing:0.900000px;}
.ls5f{letter-spacing:0.918000px;}
.lsc{letter-spacing:0.960000px;}
.ls5a{letter-spacing:0.969000px;}
.ls54{letter-spacing:0.994500px;}
.ls23{letter-spacing:1.020000px;}
.ls9{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.110000px;}
.ls57{letter-spacing:1.122000px;}
.ls18{letter-spacing:1.140000px;}
.ls5e{letter-spacing:1.147500px;}
.ls40{letter-spacing:1.170000px;}
.ls69{letter-spacing:1.173000px;}
.lse{letter-spacing:1.200000px;}
.ls10{letter-spacing:1.260000px;}
.ls21{letter-spacing:1.320000px;}
.ls26{letter-spacing:1.380000px;}
.ls24{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.500000px;}
.ls3f{letter-spacing:1.530000px;}
.ls46{letter-spacing:1.560000px;}
.ls20{letter-spacing:1.620000px;}
.ls43{letter-spacing:1.680000px;}
.ls49{letter-spacing:1.740000px;}
.ls41{letter-spacing:1.800000px;}
.ls2a{letter-spacing:1.860000px;}
.ls47{letter-spacing:1.920000px;}
.ls1d{letter-spacing:1.980000px;}
.ls2c{letter-spacing:2.100000px;}
.ls45{letter-spacing:2.160000px;}
.ls44{letter-spacing:2.400000px;}
.ls42{letter-spacing:2.880000px;}
.ls1{letter-spacing:3.990000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.984000px;}
.ws4{word-spacing:-18.432000px;}
.ws83{word-spacing:-16.140000px;}
.ws25{word-spacing:-15.840000px;}
.ws22{word-spacing:-15.540000px;}
.ws24{word-spacing:-15.300000px;}
.ws67{word-spacing:-15.240000px;}
.ws68{word-spacing:-15.000000px;}
.ws23{word-spacing:-14.880000px;}
.ws8d{word-spacing:-14.832000px;}
.ws9{word-spacing:-14.544000px;}
.ws7b{word-spacing:-14.460000px;}
.ws51{word-spacing:-13.864693px;}
.ws4c{word-spacing:-13.172586px;}
.ws8e{word-spacing:-13.005000px;}
.ws4e{word-spacing:-12.895851px;}
.ws50{word-spacing:-12.785157px;}
.ws78{word-spacing:-12.750000px;}
.ws75{word-spacing:-12.699000px;}
.ws4d{word-spacing:-12.563769px;}
.ws4b{word-spacing:-12.508422px;}
.ws5{word-spacing:-12.420000px;}
.ws4f{word-spacing:-12.397728px;}
.ws7{word-spacing:-12.360000px;}
.ws53{word-spacing:-12.342381px;}
.ws8{word-spacing:-11.520000px;}
.ws8c{word-spacing:-10.404000px;}
.ws3{word-spacing:-9.996000px;}
.ws6{word-spacing:-8.694000px;}
.ws3b{word-spacing:-1.980000px;}
.ws85{word-spacing:-1.620000px;}
.wsc{word-spacing:-1.500000px;}
.ws7e{word-spacing:-1.440000px;}
.ws87{word-spacing:-1.380000px;}
.ws36{word-spacing:-1.320000px;}
.ws93{word-spacing:-1.275000px;}
.ws2b{word-spacing:-1.260000px;}
.wsae{word-spacing:-1.224000px;}
.ws5f{word-spacing:-1.200000px;}
.wsa3{word-spacing:-1.173000px;}
.ws19{word-spacing:-1.140000px;}
.ws27{word-spacing:-1.080000px;}
.wsb1{word-spacing:-1.071000px;}
.ws2d{word-spacing:-1.020000px;}
.wsb4{word-spacing:-0.969000px;}
.ws60{word-spacing:-0.960000px;}
.ws30{word-spacing:-0.900000px;}
.ws7d{word-spacing:-0.840000px;}
.ws41{word-spacing:-0.780000px;}
.wse{word-spacing:-0.720000px;}
.wsb9{word-spacing:-0.714000px;}
.wsa8{word-spacing:-0.663000px;}
.ws1e{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.612000px;}
.ws38{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.570000px;}
.ws39{word-spacing:-0.480000px;}
.wsa1{word-spacing:-0.459000px;}
.ws31{word-spacing:-0.420000px;}
.ws6c{word-spacing:-0.360000px;}
.wsb8{word-spacing:-0.306000px;}
.ws15{word-spacing:-0.300000px;}
.ws90{word-spacing:-0.255000px;}
.ws65{word-spacing:-0.245393px;}
.ws34{word-spacing:-0.240000px;}
.wsba{word-spacing:-0.204000px;}
.ws11{word-spacing:-0.180000px;}
.ws79{word-spacing:-0.153000px;}
.ws66{word-spacing:-0.110694px;}
.ws32{word-spacing:-0.060000px;}
.ws9d{word-spacing:-0.051000px;}
.ws2{word-spacing:-0.048000px;}
.ws1{word-spacing:0.000000px;}
.ws82{word-spacing:0.060000px;}
.ws9e{word-spacing:0.102000px;}
.ws13{word-spacing:0.120000px;}
.wsb5{word-spacing:0.153000px;}
.ws61{word-spacing:0.180000px;}
.wsf{word-spacing:0.240000px;}
.wsb{word-spacing:0.300000px;}
.wsa0{word-spacing:0.357000px;}
.wsb0{word-spacing:0.408000px;}
.ws2f{word-spacing:0.420000px;}
.ws94{word-spacing:0.459000px;}
.ws6d{word-spacing:0.480000px;}
.wsac{word-spacing:0.510000px;}
.ws12{word-spacing:0.540000px;}
.wsb6{word-spacing:0.612000px;}
.ws84{word-spacing:0.660000px;}
.wsad{word-spacing:0.663000px;}
.ws18{word-spacing:0.720000px;}
.wsb7{word-spacing:0.816000px;}
.ws49{word-spacing:0.900000px;}
.wsaa{word-spacing:0.918000px;}
.ws2e{word-spacing:0.960000px;}
.ws91{word-spacing:0.969000px;}
.ws3c{word-spacing:1.020000px;}
.ws2c{word-spacing:1.080000px;}
.ws88{word-spacing:1.140000px;}
.ws9c{word-spacing:1.173000px;}
.ws2a{word-spacing:1.200000px;}
.ws33{word-spacing:1.260000px;}
.ws92{word-spacing:1.275000px;}
.ws9b{word-spacing:1.326000px;}
.ws1a{word-spacing:1.380000px;}
.ws99{word-spacing:1.428000px;}
.wsd{word-spacing:1.440000px;}
.ws14{word-spacing:1.500000px;}
.ws10{word-spacing:1.560000px;}
.wsa5{word-spacing:1.581000px;}
.ws58{word-spacing:1.620000px;}
.ws95{word-spacing:1.734000px;}
.ws47{word-spacing:1.740000px;}
.wsa6{word-spacing:1.785000px;}
.ws48{word-spacing:1.800000px;}
.ws46{word-spacing:1.860000px;}
.ws73{word-spacing:1.920000px;}
.ws98{word-spacing:1.938000px;}
.ws5e{word-spacing:1.980000px;}
.ws8f{word-spacing:1.989000px;}
.ws17{word-spacing:2.040000px;}
.ws3e{word-spacing:2.100000px;}
.wsa7{word-spacing:2.142000px;}
.ws3f{word-spacing:2.160000px;}
.wsab{word-spacing:2.193000px;}
.ws56{word-spacing:2.220000px;}
.ws7f{word-spacing:2.280000px;}
.wsaf{word-spacing:2.295000px;}
.ws81{word-spacing:2.340000px;}
.ws96{word-spacing:2.397000px;}
.ws8b{word-spacing:2.400000px;}
.ws1b{word-spacing:2.460000px;}
.ws70{word-spacing:2.520000px;}
.wsa9{word-spacing:2.550000px;}
.ws28{word-spacing:2.580000px;}
.wsa4{word-spacing:2.601000px;}
.ws5c{word-spacing:2.640000px;}
.ws3d{word-spacing:2.700000px;}
.ws59{word-spacing:2.760000px;}
.ws43{word-spacing:2.880000px;}
.wsbb{word-spacing:2.907000px;}
.ws69{word-spacing:2.940000px;}
.ws57{word-spacing:3.000000px;}
.ws9f{word-spacing:3.009000px;}
.ws16{word-spacing:3.060000px;}
.ws97{word-spacing:3.111000px;}
.ws6a{word-spacing:3.240000px;}
.ws26{word-spacing:3.300000px;}
.ws35{word-spacing:3.420000px;}
.ws74{word-spacing:3.480000px;}
.ws6e{word-spacing:3.540000px;}
.ws1d{word-spacing:3.660000px;}
.ws63{word-spacing:3.720000px;}
.ws9a{word-spacing:3.723000px;}
.ws6f{word-spacing:3.780000px;}
.wsa2{word-spacing:3.825000px;}
.ws72{word-spacing:3.840000px;}
.ws6b{word-spacing:3.900000px;}
.ws71{word-spacing:4.020000px;}
.ws5d{word-spacing:4.080000px;}
.ws1f{word-spacing:4.140000px;}
.ws29{word-spacing:4.200000px;}
.ws42{word-spacing:4.260000px;}
.ws5a{word-spacing:4.320000px;}
.ws62{word-spacing:4.380000px;}
.ws80{word-spacing:4.440000px;}
.ws37{word-spacing:4.500000px;}
.ws4a{word-spacing:4.740000px;}
.ws64{word-spacing:4.860000px;}
.ws45{word-spacing:5.040000px;}
.ws1c{word-spacing:5.340000px;}
.ws44{word-spacing:5.400000px;}
.ws89{word-spacing:5.580000px;}
.ws7c{word-spacing:5.700000px;}
.ws40{word-spacing:5.820000px;}
.ws8a{word-spacing:6.720000px;}
.ws55{word-spacing:6.960000px;}
.ws3a{word-spacing:7.620000px;}
.ws86{word-spacing:7.920000px;}
.ws5b{word-spacing:8.160000px;}
.wsb2{word-spacing:13.668000px;}
.wsb3{word-spacing:17.799000px;}
.ws20{word-spacing:72.267000px;}
.ws54{word-spacing:553.210026px;}
.ws52{word-spacing:582.174525px;}
.ws7a{word-spacing:2398.172942px;}
.ws76{word-spacing:2437.238942px;}
.ws77{word-spacing:2500.886942px;}
._8{margin-left:-16.575000px;}
._10{margin-left:-9.121200px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._d{margin-left:-3.192900px;}
._1{margin-left:-1.996800px;}
._4{width:1.175700px;}
._e{width:2.373600px;}
._f{width:4.020000px;}
._0{width:5.587200px;}
._2b{width:11.380800px;}
._2c{width:14.430300px;}
._11{width:15.970800px;}
._9{width:18.360000px;}
._7{width:27.856800px;}
._5{width:34.216800px;}
._6{width:35.580000px;}
._12{width:41.009100px;}
._26{width:44.441700px;}
._b{width:54.621000px;}
._29{width:65.912700px;}
._a{width:72.267000px;}
._21{width:79.572900px;}
._2a{width:181.524600px;}
._1c{width:200.236200px;}
._19{width:211.800300px;}
._1f{width:227.052000px;}
._1d{width:228.123000px;}
._17{width:253.623000px;}
._16{width:286.592400px;}
._1b{width:288.565800px;}
._1e{width:297.133800px;}
._27{width:312.120000px;}
._14{width:348.133800px;}
._13{width:368.676300px;}
._28{width:426.513000px;}
._23{width:442.942800px;}
._15{width:459.204000px;}
._24{width:480.369000px;}
._18{width:537.649800px;}
._1a{width:555.795300px;}
._20{width:581.289900px;}
._22{width:652.014900px;}
._25{width:655.255800px;}
._c{width:2656.538992px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:35.699999px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fsa{font-size:55.346998px;}
.fs5{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:61.348200px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y19{bottom:68.829002px;}
.y13{bottom:99.795000px;}
.y166{bottom:112.893931px;}
.y16c{bottom:112.893936px;}
.y174{bottom:112.893940px;}
.y14b{bottom:112.894089px;}
.y14f{bottom:112.906839px;}
.y15e{bottom:112.919422px;}
.y146{bottom:112.919570px;}
.y153{bottom:112.919589px;}
.y159{bottom:112.932152px;}
.y141{bottom:112.932300px;}
.y4e{bottom:112.938300px;}
.yb4{bottom:113.412300px;}
.y17{bottom:113.670000px;}
.y11c{bottom:114.735306px;}
.ycc{bottom:114.874947px;}
.y44{bottom:122.461349px;}
.y279{bottom:130.998442px;}
.y1eb{bottom:131.283325px;}
.yb3{bottom:132.162300px;}
.y4d{bottom:133.032303px;}
.y7f{bottom:133.182312px;}
.y11b{bottom:133.485306px;}
.ycb{bottom:133.624947px;}
.y16{bottom:135.750000px;}
.y43{bottom:141.211349px;}
.y23d{bottom:142.639220px;}
.y278{bottom:145.992442px;}
.y1ea{bottom:150.033325px;}
.yb2{bottom:150.912300px;}
.y7e{bottom:151.932312px;}
.y140{bottom:152.235260px;}
.y11a{bottom:152.235306px;}
.yca{bottom:152.374947px;}
.y14{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y23c{bottom:157.633220px;}
.y15{bottom:157.830000px;}
.y4c{bottom:158.066541px;}
.y42{bottom:159.961349px;}
.y277{bottom:160.986442px;}
.y1e9{bottom:168.783325px;}
.yb1{bottom:169.662300px;}
.y7d{bottom:170.682312px;}
.y13f{bottom:170.985260px;}
.y119{bottom:170.985306px;}
.yc9{bottom:171.124947px;}
.y23b{bottom:172.627220px;}
.y4b{bottom:173.060541px;}
.y276{bottom:175.980442px;}
.y41{bottom:178.711349px;}
.y1e8{bottom:187.533325px;}
.y23a{bottom:187.621220px;}
.yb0{bottom:188.412300px;}
.y7c{bottom:189.432312px;}
.y13e{bottom:189.735260px;}
.y118{bottom:189.735306px;}
.yc8{bottom:189.874947px;}
.y275{bottom:190.974442px;}
.y4a{bottom:195.602541px;}
.y40{bottom:197.461349px;}
.y239{bottom:202.615220px;}
.y274{bottom:205.968442px;}
.y1e7{bottom:206.283325px;}
.yaf{bottom:207.162300px;}
.y7b{bottom:208.182312px;}
.y13d{bottom:208.485260px;}
.y117{bottom:208.485306px;}
.yc7{bottom:208.624947px;}
.y49{bottom:210.596541px;}
.y3f{bottom:216.211349px;}
.y238{bottom:217.609220px;}
.y1e6{bottom:225.033325px;}
.yae{bottom:225.912300px;}
.y1ae{bottom:226.044342px;}
.y7a{bottom:226.932312px;}
.y13c{bottom:227.235260px;}
.y116{bottom:227.235306px;}
.yc6{bottom:227.374947px;}
.y237{bottom:232.603220px;}
.y48{bottom:233.138541px;}
.y273{bottom:235.969192px;}
.y1e5{bottom:243.783325px;}
.yad{bottom:244.662300px;}
.y1ad{bottom:244.794342px;}
.y79{bottom:245.682312px;}
.y13b{bottom:245.985260px;}
.y115{bottom:245.985306px;}
.yc5{bottom:246.124947px;}
.y236{bottom:247.597220px;}
.y47{bottom:248.132541px;}
.y272{bottom:250.963192px;}
.y3e{bottom:253.711349px;}
.y1e4{bottom:262.533325px;}
.y235{bottom:262.591220px;}
.yac{bottom:263.412300px;}
.y1ac{bottom:263.544342px;}
.y78{bottom:264.432312px;}
.y13a{bottom:264.735260px;}
.y114{bottom:264.735306px;}
.yc4{bottom:264.874947px;}
.y271{bottom:265.957192px;}
.y46{bottom:270.674541px;}
.y3d{bottom:272.461349px;}
.y234{bottom:277.585220px;}
.y270{bottom:280.951192px;}
.y1e3{bottom:281.283325px;}
.yab{bottom:282.162300px;}
.y1ab{bottom:282.294342px;}
.y77{bottom:283.182312px;}
.y139{bottom:283.485260px;}
.y113{bottom:283.485306px;}
.yc3{bottom:283.624947px;}
.y45{bottom:285.668541px;}
.y3c{bottom:291.211349px;}
.y233{bottom:292.579220px;}
.y26f{bottom:295.945192px;}
.y1e2{bottom:300.033325px;}
.yaa{bottom:300.912300px;}
.y1aa{bottom:301.044342px;}
.y76{bottom:301.932312px;}
.y138{bottom:302.235260px;}
.y112{bottom:302.235306px;}
.ydc{bottom:302.374947px;}
.y17e{bottom:303.863447px;}
.y164{bottom:303.876181px;}
.y16a{bottom:303.876186px;}
.y171{bottom:303.876190px;}
.y17a{bottom:303.876193px;}
.y160{bottom:303.888926px;}
.y149{bottom:303.889075px;}
.y1b4{bottom:303.901817px;}
.y15a{bottom:303.914402px;}
.y142{bottom:303.914550px;}
.y232{bottom:307.573220px;}
.y3b{bottom:309.961349px;}
.y26e{bottom:310.939192px;}
.y175{bottom:312.877694px;}
.y1af{bottom:312.903320px;}
.y154{bottom:312.903339px;}
.y1e1{bottom:318.783325px;}
.ya9{bottom:319.662300px;}
.y1a9{bottom:319.794342px;}
.y75{bottom:320.682312px;}
.y137{bottom:320.985260px;}
.y111{bottom:320.985306px;}
.yc2{bottom:321.124947px;}
.y231{bottom:322.567220px;}
.y26d{bottom:325.933192px;}
.y3a{bottom:328.711349px;}
.y1e0{bottom:337.533325px;}
.y230{bottom:337.561220px;}
.ya8{bottom:338.412300px;}
.y1a8{bottom:338.544342px;}
.y74{bottom:339.432312px;}
.y136{bottom:339.735260px;}
.y110{bottom:339.735306px;}
.ydb{bottom:339.874947px;}
.ya{bottom:344.680500px;}
.y38{bottom:347.461349px;}
.y22f{bottom:352.555220px;}
.y1df{bottom:356.283325px;}
.ya7{bottom:357.162300px;}
.y1a7{bottom:357.294342px;}
.y73{bottom:358.182312px;}
.y135{bottom:358.485260px;}
.y10f{bottom:358.485306px;}
.yda{bottom:358.624947px;}
.y37{bottom:366.211349px;}
.y22e{bottom:367.549220px;}
.y1de{bottom:375.033325px;}
.ya6{bottom:375.912300px;}
.y1a6{bottom:376.044342px;}
.y72{bottom:376.932312px;}
.y134{bottom:377.235260px;}
.y10e{bottom:377.235306px;}
.yc1{bottom:377.374786px;}
.yd9{bottom:377.374947px;}
.y22d{bottom:382.543220px;}
.y36{bottom:384.961349px;}
.y26c{bottom:385.934690px;}
.yd{bottom:386.490000px;}
.y1dd{bottom:393.783325px;}
.ya5{bottom:394.662300px;}
.y1a5{bottom:394.794342px;}
.y71{bottom:395.682312px;}
.y9{bottom:395.689500px;}
.y133{bottom:395.985260px;}
.y10d{bottom:395.985306px;}
.yc0{bottom:396.124786px;}
.yd8{bottom:396.124947px;}
.y22c{bottom:397.537220px;}
.y26b{bottom:400.928690px;}
.y35{bottom:403.711349px;}
.y22b{bottom:412.531220px;}
.y1dc{bottom:412.533325px;}
.ya4{bottom:413.412300px;}
.y1a4{bottom:413.544342px;}
.y70{bottom:414.432312px;}
.y132{bottom:414.735260px;}
.y10c{bottom:414.735306px;}
.ybf{bottom:414.874786px;}
.yd7{bottom:414.874947px;}
.y34{bottom:422.461349px;}
.y22a{bottom:427.525220px;}
.y1db{bottom:431.283325px;}
.y26a{bottom:431.770940px;}
.ya3{bottom:432.162300px;}
.y1a3{bottom:432.294342px;}
.y6f{bottom:433.182312px;}
.y131{bottom:433.485260px;}
.y10b{bottom:433.485306px;}
.ybe{bottom:433.624786px;}
.yd6{bottom:433.624947px;}
.yb{bottom:434.850000px;}
.y33{bottom:441.211349px;}
.y229{bottom:442.519220px;}
.y8{bottom:446.698500px;}
.y269{bottom:446.764940px;}
.y1da{bottom:450.033325px;}
.ya2{bottom:450.912300px;}
.y1a2{bottom:451.044342px;}
.y6e{bottom:451.932312px;}
.y130{bottom:452.235260px;}
.y10a{bottom:452.235306px;}
.ybd{bottom:452.374786px;}
.yd5{bottom:452.374947px;}
.y228{bottom:457.513220px;}
.y32{bottom:459.961349px;}
.y268{bottom:461.758940px;}
.y1d9{bottom:468.783325px;}
.ya1{bottom:469.662300px;}
.y1a1{bottom:469.794342px;}
.y6d{bottom:470.682312px;}
.y12f{bottom:470.985260px;}
.y109{bottom:470.985306px;}
.ybc{bottom:471.124786px;}
.yd4{bottom:471.124947px;}
.y227{bottom:472.507220px;}
.y267{bottom:476.752940px;}
.y31{bottom:478.711349px;}
.y226{bottom:487.501220px;}
.y1d8{bottom:487.533325px;}
.y10{bottom:488.055000px;}
.ya0{bottom:488.412300px;}
.y1a0{bottom:488.544342px;}
.y6c{bottom:489.432312px;}
.y12e{bottom:489.735260px;}
.y108{bottom:489.735306px;}
.ybb{bottom:489.874786px;}
.yd3{bottom:489.874947px;}
.y266{bottom:491.746940px;}
.y30{bottom:497.461349px;}
.y7{bottom:497.707500px;}
.y225{bottom:502.495220px;}
.y1d7{bottom:506.283325px;}
.y265{bottom:506.740940px;}
.y9f{bottom:507.162300px;}
.y19f{bottom:507.294342px;}
.y6b{bottom:508.182312px;}
.y12d{bottom:508.485260px;}
.y107{bottom:508.485306px;}
.yba{bottom:508.624786px;}
.yd2{bottom:508.624947px;}
.y2f{bottom:516.211349px;}
.y224{bottom:517.489220px;}
.y264{bottom:521.734940px;}
.y1d6{bottom:525.033325px;}
.y9e{bottom:525.912300px;}
.y19e{bottom:526.044342px;}
.y6a{bottom:526.932312px;}
.y12c{bottom:527.235260px;}
.y106{bottom:527.235306px;}
.yb9{bottom:527.374786px;}
.yd1{bottom:527.374947px;}
.y223{bottom:532.483220px;}
.y2e{bottom:534.961349px;}
.y263{bottom:536.728940px;}
.y11{bottom:538.230000px;}
.y1d5{bottom:543.783325px;}
.y9d{bottom:544.662300px;}
.y19d{bottom:544.794342px;}
.y69{bottom:545.682312px;}
.y12b{bottom:545.985260px;}
.y105{bottom:545.985306px;}
.yb8{bottom:546.124786px;}
.yd0{bottom:546.124947px;}
.y17f{bottom:546.138947px;}
.y16d{bottom:546.151686px;}
.y176{bottom:546.151688px;}
.y172{bottom:546.151690px;}
.y17b{bottom:546.151693px;}
.y161{bottom:546.164426px;}
.y1b0{bottom:546.177314px;}
.y1b5{bottom:546.177317px;}
.y155{bottom:546.177333px;}
.y15b{bottom:546.189902px;}
.y143{bottom:546.190050px;}
.y222{bottom:547.477220px;}
.y6{bottom:548.716500px;}
.y262{bottom:551.722940px;}
.y2d{bottom:553.711349px;}
.y167{bottom:555.153181px;}
.y16e{bottom:555.153186px;}
.y177{bottom:555.153188px;}
.y14c{bottom:555.153339px;}
.y150{bottom:555.166089px;}
.y1b1{bottom:555.178812px;}
.y1b6{bottom:555.178817px;}
.y156{bottom:555.178833px;}
.y221{bottom:562.471220px;}
.y1d4{bottom:562.533325px;}
.y9c{bottom:563.412300px;}
.y19c{bottom:563.544342px;}
.y68{bottom:564.432312px;}
.y12a{bottom:564.735260px;}
.y104{bottom:564.735306px;}
.yb7{bottom:564.874786px;}
.ycf{bottom:564.874947px;}
.y261{bottom:566.716940px;}
.y2c{bottom:572.461349px;}
.y220{bottom:577.465220px;}
.y1d3{bottom:581.283325px;}
.y260{bottom:581.710940px;}
.y9b{bottom:582.162300px;}
.y19b{bottom:582.294342px;}
.y67{bottom:583.182312px;}
.y129{bottom:583.485260px;}
.y103{bottom:583.485306px;}
.yb6{bottom:583.624786px;}
.yce{bottom:583.624947px;}
.y18{bottom:589.605000px;}
.y2b{bottom:591.211349px;}
.y21f{bottom:592.459220px;}
.y25f{bottom:596.704940px;}
.y5{bottom:599.725500px;}
.y1d2{bottom:600.033325px;}
.y9a{bottom:600.912300px;}
.y19a{bottom:601.044342px;}
.y66{bottom:601.932312px;}
.y128{bottom:602.235260px;}
.y202{bottom:602.235306px;}
.yb5{bottom:602.374786px;}
.ycd{bottom:602.374947px;}
.y21e{bottom:607.453220px;}
.y39{bottom:609.961349px;}
.y25e{bottom:611.698940px;}
.y1d1{bottom:618.783325px;}
.y99{bottom:619.662300px;}
.y199{bottom:619.794342px;}
.y65{bottom:620.682312px;}
.y127{bottom:620.985260px;}
.y102{bottom:620.985306px;}
.y21d{bottom:622.447220px;}
.y25d{bottom:626.692940px;}
.y2a{bottom:628.711349px;}
.ye{bottom:631.920000px;}
.y21c{bottom:637.441220px;}
.y1d0{bottom:637.533325px;}
.y98{bottom:638.412300px;}
.y198{bottom:638.544342px;}
.y64{bottom:639.432312px;}
.y126{bottom:639.735260px;}
.y201{bottom:639.735306px;}
.y25c{bottom:641.686940px;}
.y21b{bottom:652.435220px;}
.y1cf{bottom:656.283325px;}
.y25b{bottom:656.680940px;}
.yec{bottom:657.070496px;}
.y97{bottom:657.162300px;}
.y197{bottom:657.294342px;}
.y63{bottom:658.182312px;}
.y101{bottom:658.485260px;}
.y200{bottom:658.485306px;}
.y21a{bottom:667.429220px;}
.y25a{bottom:671.674940px;}
.y1ce{bottom:675.033325px;}
.y96{bottom:675.912300px;}
.y196{bottom:676.044342px;}
.y62{bottom:676.932312px;}
.y100{bottom:677.235260px;}
.y1ff{bottom:677.235306px;}
.y219{bottom:682.423220px;}
.y29{bottom:684.961395px;}
.y259{bottom:686.668940px;}
.y1cd{bottom:693.783325px;}
.y95{bottom:694.662300px;}
.y195{bottom:694.794342px;}
.y61{bottom:695.682312px;}
.yff{bottom:695.985260px;}
.y1fe{bottom:695.985306px;}
.y218{bottom:697.417220px;}
.y258{bottom:701.662940px;}
.yea{bottom:708.623978px;}
.y217{bottom:712.411220px;}
.y1cc{bottom:712.533325px;}
.y94{bottom:713.412300px;}
.y194{bottom:713.544342px;}
.yfe{bottom:714.735260px;}
.y1fd{bottom:714.735306px;}
.y257{bottom:716.656940px;}
.y28{bottom:722.461395px;}
.y216{bottom:727.405220px;}
.y1cb{bottom:731.283325px;}
.y256{bottom:731.650940px;}
.y93{bottom:732.162300px;}
.y193{bottom:732.294342px;}
.y60{bottom:733.176312px;}
.yfd{bottom:733.485260px;}
.y1fc{bottom:733.485306px;}
.y27{bottom:741.211395px;}
.y215{bottom:742.399220px;}
.y255{bottom:746.644940px;}
.y1ca{bottom:750.033325px;}
.y92{bottom:750.912300px;}
.y192{bottom:751.044342px;}
.y5f{bottom:751.932312px;}
.yfc{bottom:752.235260px;}
.y214{bottom:757.393220px;}
.y26{bottom:759.961395px;}
.y254{bottom:761.638940px;}
.y1c9{bottom:768.783325px;}
.y91{bottom:769.662300px;}
.y191{bottom:769.794342px;}
.yfb{bottom:770.985260px;}
.y213{bottom:772.387220px;}
.y253{bottom:776.632940px;}
.y4{bottom:778.225500px;}
.y25{bottom:778.711395px;}
.y212{bottom:787.381220px;}
.y1c8{bottom:787.533325px;}
.y90{bottom:788.412300px;}
.y190{bottom:788.544342px;}
.y17c{bottom:788.745943px;}
.y162{bottom:788.758676px;}
.y168{bottom:788.758681px;}
.y16f{bottom:788.758686px;}
.y178{bottom:788.758688px;}
.y14a{bottom:788.758825px;}
.y14d{bottom:788.758839px;}
.y151{bottom:788.771589px;}
.y15c{bottom:788.784152px;}
.y144{bottom:788.784300px;}
.y1b2{bottom:788.784312px;}
.y1b7{bottom:788.784317px;}
.y157{bottom:788.784333px;}
.yfa{bottom:789.735260px;}
.y252{bottom:791.626940px;}
.ye6{bottom:792.481823px;}
.y24{bottom:797.461395px;}
.y211{bottom:802.375220px;}
.y1c7{bottom:806.283325px;}
.y251{bottom:806.620940px;}
.y8f{bottom:807.162300px;}
.y18f{bottom:807.294342px;}
.yf9{bottom:808.485260px;}
.y1fb{bottom:808.488316px;}
.ye9{bottom:809.815521px;}
.ye5{bottom:810.649475px;}
.y12{bottom:815.670000px;}
.y23{bottom:816.211395px;}
.y210{bottom:817.369220px;}
.y250{bottom:821.614940px;}
.y1c6{bottom:825.033325px;}
.y8e{bottom:825.912300px;}
.y5e{bottom:825.915344px;}
.y18e{bottom:826.044342px;}
.yf8{bottom:827.235260px;}
.y1fa{bottom:827.238316px;}
.y20f{bottom:832.363220px;}
.y22{bottom:834.961395px;}
.y24f{bottom:836.608940px;}
.y1c5{bottom:843.783325px;}
.y8d{bottom:844.662300px;}
.y5d{bottom:844.665344px;}
.y18d{bottom:844.794342px;}
.yf7{bottom:845.985260px;}
.y1f9{bottom:845.988316px;}
.ye1{bottom:849.166665px;}
.y24e{bottom:851.602940px;}
.y148{bottom:858.552320px;}
.y15d{bottom:858.564902px;}
.y145{bottom:858.565050px;}
.y1c4{bottom:862.533325px;}
.y8c{bottom:863.412300px;}
.y5c{bottom:863.415344px;}
.y18c{bottom:863.544342px;}
.yf6{bottom:864.735260px;}
.y1f8{bottom:864.738316px;}
.y20e{bottom:866.113220px;}
.y24d{bottom:866.596940px;}
.y180{bottom:867.515447px;}
.y165{bottom:867.528181px;}
.y16b{bottom:867.528186px;}
.y173{bottom:867.528190px;}
.y17d{bottom:867.528193px;}
.y163{bottom:867.540926px;}
.y169{bottom:867.540931px;}
.y170{bottom:867.540936px;}
.y179{bottom:867.540938px;}
.y14e{bottom:867.541089px;}
.y15f{bottom:867.553672px;}
.y147{bottom:867.553820px;}
.y152{bottom:867.553839px;}
.y1b3{bottom:867.566562px;}
.y1b8{bottom:867.566567px;}
.y158{bottom:867.566583px;}
.ye0{bottom:878.500573px;}
.y21{bottom:879.144153px;}
.ye4{bottom:880.670507px;}
.y1c3{bottom:881.283325px;}
.y24c{bottom:881.590940px;}
.y8b{bottom:882.162300px;}
.y5b{bottom:882.165344px;}
.y18b{bottom:882.294342px;}
.yf5{bottom:883.485260px;}
.y1f7{bottom:883.488316px;}
.y20{bottom:894.138153px;}
.y24b{bottom:896.584940px;}
.ydf{bottom:896.709735px;}
.ye8{bottom:896.878693px;}
.ye3{bottom:898.879669px;}
.y1c2{bottom:900.033325px;}
.y8a{bottom:900.912300px;}
.y5a{bottom:900.915344px;}
.y18a{bottom:901.044342px;}
.yf4{bottom:902.235260px;}
.y1f6{bottom:902.238316px;}
.y3{bottom:905.716500px;}
.y24a{bottom:911.578940px;}
.y1c1{bottom:918.783325px;}
.y89{bottom:919.662300px;}
.y59{bottom:919.665344px;}
.y189{bottom:919.794342px;}
.yf3{bottom:920.985260px;}
.y1f5{bottom:920.988316px;}
.y20d{bottom:922.414838px;}
.yde{bottom:926.389563px;}
.y249{bottom:926.572940px;}
.y1f{bottom:936.738190px;}
.y20c{bottom:937.408838px;}
.y1c0{bottom:937.533325px;}
.y88{bottom:938.412300px;}
.y58{bottom:938.415344px;}
.y188{bottom:938.544342px;}
.yf2{bottom:939.735260px;}
.y125{bottom:939.735306px;}
.y1f4{bottom:939.738316px;}
.y281{bottom:941.119088px;}
.y248{bottom:941.566940px;}
.ydd{bottom:944.391174px;}
.y20b{bottom:952.402838px;}
.y280{bottom:956.113088px;}
.y1bf{bottom:956.283325px;}
.y247{bottom:956.560940px;}
.y87{bottom:957.162300px;}
.y57{bottom:957.165344px;}
.y187{bottom:957.294342px;}
.yf1{bottom:958.485260px;}
.y124{bottom:958.485306px;}
.y1f3{bottom:958.488316px;}
.y2{bottom:964.228500px;}
.y20a{bottom:967.396838px;}
.y27f{bottom:971.107088px;}
.y246{bottom:971.554940px;}
.y1be{bottom:975.033325px;}
.y86{bottom:975.912300px;}
.y56{bottom:975.915344px;}
.y186{bottom:976.044342px;}
.y123{bottom:977.235306px;}
.y1f2{bottom:977.238316px;}
.y1e{bottom:981.424622px;}
.y209{bottom:982.390838px;}
.y245{bottom:986.548940px;}
.ye7{bottom:986.734314px;}
.ye2{bottom:987.401550px;}
.y1{bottom:989.716500px;}
.y1bd{bottom:993.783325px;}
.y85{bottom:994.662300px;}
.y55{bottom:994.665344px;}
.y185{bottom:994.794342px;}
.yf0{bottom:995.985260px;}
.y122{bottom:995.985306px;}
.y1f1{bottom:995.988316px;}
.y208{bottom:997.384838px;}
.y27e{bottom:1001.107838px;}
.y244{bottom:1001.542940px;}
.y1d{bottom:1008.424622px;}
.y207{bottom:1012.378838px;}
.y1bc{bottom:1012.533325px;}
.y84{bottom:1013.412300px;}
.y54{bottom:1013.415344px;}
.y184{bottom:1013.544342px;}
.y121{bottom:1014.735306px;}
.y1f0{bottom:1014.738316px;}
.y27d{bottom:1016.101838px;}
.y243{bottom:1016.536940px;}
.y206{bottom:1027.372838px;}
.y27c{bottom:1031.095838px;}
.y1bb{bottom:1031.283325px;}
.y286{bottom:1031.299838px;}
.y242{bottom:1031.530940px;}
.y83{bottom:1032.162300px;}
.y53{bottom:1032.165344px;}
.y183{bottom:1032.294342px;}
.y120{bottom:1033.485306px;}
.y1ef{bottom:1033.488316px;}
.y205{bottom:1042.366838px;}
.y27b{bottom:1046.089838px;}
.y285{bottom:1046.293838px;}
.y241{bottom:1046.524940px;}
.y1ba{bottom:1050.033325px;}
.y82{bottom:1050.912300px;}
.y52{bottom:1050.915344px;}
.y182{bottom:1051.044342px;}
.yef{bottom:1052.235260px;}
.y11f{bottom:1052.235306px;}
.y1ee{bottom:1052.238316px;}
.y27a{bottom:1061.083838px;}
.y284{bottom:1061.287838px;}
.y240{bottom:1061.518940px;}
.y81{bottom:1069.662300px;}
.y51{bottom:1069.665344px;}
.yee{bottom:1070.985260px;}
.y11e{bottom:1070.985306px;}
.y1ed{bottom:1070.988316px;}
.y204{bottom:1076.077838px;}
.y1c{bottom:1076.132080px;}
.y283{bottom:1076.281838px;}
.y23f{bottom:1076.512940px;}
.yeb{bottom:1078.923706px;}
.y1b9{bottom:1087.533325px;}
.y80{bottom:1088.412300px;}
.y50{bottom:1088.415344px;}
.y181{bottom:1088.544342px;}
.yed{bottom:1089.735260px;}
.y11d{bottom:1089.735306px;}
.y1ec{bottom:1089.738316px;}
.y203{bottom:1091.071838px;}
.y282{bottom:1091.275838px;}
.y23e{bottom:1091.506940px;}
.y1b{bottom:1109.586556px;}
.y1a{bottom:1126.582306px;}
.y4f{bottom:1127.482361px;}
.h4{height:33.000000px;}
.h14{height:33.129599px;}
.hb{height:33.840000px;}
.h19{height:35.241000px;}
.h15{height:35.477426px;}
.h16{height:39.324196px;}
.hc{height:44.676000px;}
.h13{height:47.328000px;}
.h1a{height:52.173000px;}
.hd{height:55.461000px;}
.h11{height:55.680000px;}
.h3{height:58.406250px;}
.h17{height:59.004000px;}
.h10{height:59.340000px;}
.h18{height:61.380000px;}
.hf{height:64.866000px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.h12{height:71.208000px;}
.he{height:85.056000px;}
.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;}
.xb{left:76.535402px;}
.xc{left:85.181849px;}
.x11{left:93.543303px;}
.x10{left:97.796100px;}
.x74{left:102.048152px;}
.x4b{left:110.485645px;}
.x20{left:111.588455px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x4c{left:153.147145px;}
.x21{left:154.670705px;}
.x16{left:156.676804px;}
.x17{left:164.179653px;}
.x4d{left:168.141145px;}
.x5{left:174.105000px;}
.x19{left:176.176804px;}
.x4e{left:183.135145px;}
.x1f{left:186.345749px;}
.x22{left:188.381705px;}
.x2{left:191.040000px;}
.x18{left:196.682178px;}
.x7{left:200.715000px;}
.x1a{left:201.857810px;}
.x23{left:203.375705px;}
.x4f{left:206.952145px;}
.x8{left:217.320000px;}
.x24{left:218.369705px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x25{left:233.363705px;}
.x73{left:236.940145px;}
.x50{left:245.763145px;}
.x26{left:252.080705px;}
.x51{left:260.757145px;}
.x27{left:267.074705px;}
.x36{left:270.708455px;}
.x52{left:275.751145px;}
.x28{left:282.068705px;}
.x53{left:290.745145px;}
.x29{left:297.062705px;}
.x54{left:309.462145px;}
.x2a{left:312.056705px;}
.x55{left:324.456145px;}
.x2b{left:327.050705px;}
.x56{left:339.450145px;}
.x2c{left:342.044705px;}
.x35{left:345.703955px;}
.x57{left:354.444145px;}
.x2d{left:357.038705px;}
.x58{left:369.438145px;}
.x2e{left:372.032705px;}
.x1e{left:382.101906px;}
.x59{left:384.432145px;}
.x2f{left:387.026705px;}
.x15{left:396.769019px;}
.x14{left:400.269715px;}
.x30{left:402.020705px;}
.x5a{left:403.149145px;}
.x12{left:406.440903px;}
.x13{left:408.779316px;}
.x31{left:417.014705px;}
.x5b{left:418.143145px;}
.x32{left:432.008705px;}
.x5c{left:433.137145px;}
.x33{left:447.002705px;}
.x5d{left:448.131145px;}
.xd{left:459.215389px;}
.x34{left:461.996705px;}
.x5e{left:466.848145px;}
.xe{left:476.225396px;}
.x37{left:480.700955px;}
.x5f{left:485.565145px;}
.xf{left:489.545398px;}
.x38{left:495.694955px;}
.x60{left:500.559145px;}
.x39{left:510.688955px;}
.x61{left:515.553145px;}
.x3a{left:525.670205px;}
.x62{left:530.547145px;}
.x3b{left:540.664205px;}
.x63{left:549.264145px;}
.x3c{left:555.658205px;}
.x64{left:564.258145px;}
.x3d{left:570.652205px;}
.x65{left:579.252145px;}
.x3e{left:585.646205px;}
.x1b{left:592.514420px;}
.x66{left:594.246145px;}
.x1d{left:598.350906px;}
.x1c{left:600.350418px;}
.x67{left:612.963145px;}
.x3f{left:619.357205px;}
.x68{left:627.957145px;}
.x40{left:634.351205px;}
.x69{left:642.951145px;}
.x41{left:649.345205px;}
.x6a{left:661.655395px;}
.x42{left:664.339205px;}
.x6b{left:676.649395px;}
.x43{left:679.333205px;}
.x6c{left:691.643395px;}
.x44{left:698.050205px;}
.x6d{left:706.637395px;}
.x45{left:716.767205px;}
.x6e{left:725.354395px;}
.xa{left:728.220612px;}
.x46{left:731.761205px;}
.x6f{left:740.348395px;}
.x47{left:746.755205px;}
.x70{left:755.342395px;}
.x48{left:761.736455px;}
.x71{left:770.336395px;}
.x49{left:776.730455px;}
.x72{left:785.330395px;}
.x4a{left:791.724455px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v3{vertical-align:-10.076172pt;}
.v4{vertical-align:-8.300130pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls3c{letter-spacing:-0.906667pt;}
.ls3b{letter-spacing:-0.693333pt;}
.ls3a{letter-spacing:-0.640000pt;}
.ls4c{letter-spacing:-0.586667pt;}
.ls3d{letter-spacing:-0.533333pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls3e{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.373333pt;}
.ls6a{letter-spacing:-0.362667pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls67{letter-spacing:-0.317333pt;}
.ls65{letter-spacing:-0.272000pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls6c{letter-spacing:-0.226667pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls36{letter-spacing:-0.147592pt;}
.ls68{letter-spacing:-0.136000pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls33{letter-spacing:-0.098395pt;}
.ls66{letter-spacing:-0.090667pt;}
.ls34{letter-spacing:-0.054532pt;}
.ls14{letter-spacing:-0.053333pt;}
.ls38{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000080pt;}
.ls58{letter-spacing:0.022667pt;}
.ls63{letter-spacing:0.045333pt;}
.ls2e{letter-spacing:0.049197pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls25{letter-spacing:0.080000pt;}
.ls51{letter-spacing:0.090667pt;}
.ls30{letter-spacing:0.098395pt;}
.lsb{letter-spacing:0.106667pt;}
.ls5b{letter-spacing:0.136000pt;}
.ls11{letter-spacing:0.158926pt;}
.ls5{letter-spacing:0.160000pt;}
.ls6b{letter-spacing:0.181333pt;}
.ls3{letter-spacing:0.213333pt;}
.ls35{letter-spacing:0.218127pt;}
.ls12{letter-spacing:0.226667pt;}
.ls2f{letter-spacing:0.245987pt;}
.ls53{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls59{letter-spacing:0.272000pt;}
.ls4b{letter-spacing:0.293333pt;}
.ls64{letter-spacing:0.294667pt;}
.ls5c{letter-spacing:0.317333pt;}
.ls7{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.344381pt;}
.ls4a{letter-spacing:0.346667pt;}
.ls5d{letter-spacing:0.362667pt;}
.ls1a{letter-spacing:0.373333pt;}
.ls4f{letter-spacing:0.408000pt;}
.ls8{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.453333pt;}
.ls27{letter-spacing:0.480000pt;}
.ls50{letter-spacing:0.498667pt;}
.ls2d{letter-spacing:0.506667pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls4d{letter-spacing:0.544000pt;}
.lsf{letter-spacing:0.560000pt;}
.ls6{letter-spacing:0.586667pt;}
.ls56{letter-spacing:0.589333pt;}
.ls31{letter-spacing:0.590368pt;}
.ls48{letter-spacing:0.613333pt;}
.ls60{letter-spacing:0.634667pt;}
.ls19{letter-spacing:0.640000pt;}
.ls52{letter-spacing:0.657333pt;}
.ls37{letter-spacing:0.666667pt;}
.ls4e{letter-spacing:0.680000pt;}
.ls2b{letter-spacing:0.693333pt;}
.ls61{letter-spacing:0.725333pt;}
.lsa{letter-spacing:0.746667pt;}
.ls55{letter-spacing:0.770667pt;}
.ls62{letter-spacing:0.793333pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls5f{letter-spacing:0.816000pt;}
.lsc{letter-spacing:0.853333pt;}
.ls5a{letter-spacing:0.861333pt;}
.ls54{letter-spacing:0.884000pt;}
.ls23{letter-spacing:0.906667pt;}
.ls9{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:0.986667pt;}
.ls57{letter-spacing:0.997333pt;}
.ls18{letter-spacing:1.013333pt;}
.ls5e{letter-spacing:1.020000pt;}
.ls40{letter-spacing:1.040000pt;}
.ls69{letter-spacing:1.042667pt;}
.lse{letter-spacing:1.066667pt;}
.ls10{letter-spacing:1.120000pt;}
.ls21{letter-spacing:1.173333pt;}
.ls26{letter-spacing:1.226667pt;}
.ls24{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.333333pt;}
.ls3f{letter-spacing:1.360000pt;}
.ls46{letter-spacing:1.386667pt;}
.ls20{letter-spacing:1.440000pt;}
.ls43{letter-spacing:1.493333pt;}
.ls49{letter-spacing:1.546667pt;}
.ls41{letter-spacing:1.600000pt;}
.ls2a{letter-spacing:1.653333pt;}
.ls47{letter-spacing:1.706667pt;}
.ls1d{letter-spacing:1.760000pt;}
.ls2c{letter-spacing:1.866667pt;}
.ls45{letter-spacing:1.920000pt;}
.ls44{letter-spacing:2.133333pt;}
.ls42{letter-spacing:2.560000pt;}
.ls1{letter-spacing:3.546667pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4{word-spacing:-16.384000pt;}
.ws83{word-spacing:-14.346667pt;}
.ws25{word-spacing:-14.080000pt;}
.ws22{word-spacing:-13.813333pt;}
.ws24{word-spacing:-13.600000pt;}
.ws67{word-spacing:-13.546667pt;}
.ws68{word-spacing:-13.333333pt;}
.ws23{word-spacing:-13.226667pt;}
.ws8d{word-spacing:-13.184000pt;}
.ws9{word-spacing:-12.928000pt;}
.ws7b{word-spacing:-12.853333pt;}
.ws51{word-spacing:-12.324172pt;}
.ws4c{word-spacing:-11.708965pt;}
.ws8e{word-spacing:-11.560000pt;}
.ws4e{word-spacing:-11.462978pt;}
.ws50{word-spacing:-11.364584pt;}
.ws78{word-spacing:-11.333333pt;}
.ws75{word-spacing:-11.288000pt;}
.ws4d{word-spacing:-11.167794pt;}
.ws4b{word-spacing:-11.118597pt;}
.ws5{word-spacing:-11.040000pt;}
.ws4f{word-spacing:-11.020202pt;}
.ws7{word-spacing:-10.986667pt;}
.ws53{word-spacing:-10.971005pt;}
.ws8{word-spacing:-10.240000pt;}
.ws8c{word-spacing:-9.248000pt;}
.ws3{word-spacing:-8.885333pt;}
.ws6{word-spacing:-7.728000pt;}
.ws3b{word-spacing:-1.760000pt;}
.ws85{word-spacing:-1.440000pt;}
.wsc{word-spacing:-1.333333pt;}
.ws7e{word-spacing:-1.280000pt;}
.ws87{word-spacing:-1.226667pt;}
.ws36{word-spacing:-1.173333pt;}
.ws93{word-spacing:-1.133333pt;}
.ws2b{word-spacing:-1.120000pt;}
.wsae{word-spacing:-1.088000pt;}
.ws5f{word-spacing:-1.066667pt;}
.wsa3{word-spacing:-1.042667pt;}
.ws19{word-spacing:-1.013333pt;}
.ws27{word-spacing:-0.960000pt;}
.wsb1{word-spacing:-0.952000pt;}
.ws2d{word-spacing:-0.906667pt;}
.wsb4{word-spacing:-0.861333pt;}
.ws60{word-spacing:-0.853333pt;}
.ws30{word-spacing:-0.800000pt;}
.ws7d{word-spacing:-0.746667pt;}
.ws41{word-spacing:-0.693333pt;}
.wse{word-spacing:-0.640000pt;}
.wsb9{word-spacing:-0.634667pt;}
.wsa8{word-spacing:-0.589333pt;}
.ws1e{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.544000pt;}
.ws38{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.506667pt;}
.ws39{word-spacing:-0.426667pt;}
.wsa1{word-spacing:-0.408000pt;}
.ws31{word-spacing:-0.373333pt;}
.ws6c{word-spacing:-0.320000pt;}
.wsb8{word-spacing:-0.272000pt;}
.ws15{word-spacing:-0.266667pt;}
.ws90{word-spacing:-0.226667pt;}
.ws65{word-spacing:-0.218127pt;}
.ws34{word-spacing:-0.213333pt;}
.wsba{word-spacing:-0.181333pt;}
.ws11{word-spacing:-0.160000pt;}
.ws79{word-spacing:-0.136000pt;}
.ws66{word-spacing:-0.098395pt;}
.ws32{word-spacing:-0.053333pt;}
.ws9d{word-spacing:-0.045333pt;}
.ws2{word-spacing:-0.042667pt;}
.ws1{word-spacing:0.000000pt;}
.ws82{word-spacing:0.053333pt;}
.ws9e{word-spacing:0.090667pt;}
.ws13{word-spacing:0.106667pt;}
.wsb5{word-spacing:0.136000pt;}
.ws61{word-spacing:0.160000pt;}
.wsf{word-spacing:0.213333pt;}
.wsb{word-spacing:0.266667pt;}
.wsa0{word-spacing:0.317333pt;}
.wsb0{word-spacing:0.362667pt;}
.ws2f{word-spacing:0.373333pt;}
.ws94{word-spacing:0.408000pt;}
.ws6d{word-spacing:0.426667pt;}
.wsac{word-spacing:0.453333pt;}
.ws12{word-spacing:0.480000pt;}
.wsb6{word-spacing:0.544000pt;}
.ws84{word-spacing:0.586667pt;}
.wsad{word-spacing:0.589333pt;}
.ws18{word-spacing:0.640000pt;}
.wsb7{word-spacing:0.725333pt;}
.ws49{word-spacing:0.800000pt;}
.wsaa{word-spacing:0.816000pt;}
.ws2e{word-spacing:0.853333pt;}
.ws91{word-spacing:0.861333pt;}
.ws3c{word-spacing:0.906667pt;}
.ws2c{word-spacing:0.960000pt;}
.ws88{word-spacing:1.013333pt;}
.ws9c{word-spacing:1.042667pt;}
.ws2a{word-spacing:1.066667pt;}
.ws33{word-spacing:1.120000pt;}
.ws92{word-spacing:1.133333pt;}
.ws9b{word-spacing:1.178667pt;}
.ws1a{word-spacing:1.226667pt;}
.ws99{word-spacing:1.269333pt;}
.wsd{word-spacing:1.280000pt;}
.ws14{word-spacing:1.333333pt;}
.ws10{word-spacing:1.386667pt;}
.wsa5{word-spacing:1.405333pt;}
.ws58{word-spacing:1.440000pt;}
.ws95{word-spacing:1.541333pt;}
.ws47{word-spacing:1.546667pt;}
.wsa6{word-spacing:1.586667pt;}
.ws48{word-spacing:1.600000pt;}
.ws46{word-spacing:1.653333pt;}
.ws73{word-spacing:1.706667pt;}
.ws98{word-spacing:1.722667pt;}
.ws5e{word-spacing:1.760000pt;}
.ws8f{word-spacing:1.768000pt;}
.ws17{word-spacing:1.813333pt;}
.ws3e{word-spacing:1.866667pt;}
.wsa7{word-spacing:1.904000pt;}
.ws3f{word-spacing:1.920000pt;}
.wsab{word-spacing:1.949333pt;}
.ws56{word-spacing:1.973333pt;}
.ws7f{word-spacing:2.026667pt;}
.wsaf{word-spacing:2.040000pt;}
.ws81{word-spacing:2.080000pt;}
.ws96{word-spacing:2.130667pt;}
.ws8b{word-spacing:2.133333pt;}
.ws1b{word-spacing:2.186667pt;}
.ws70{word-spacing:2.240000pt;}
.wsa9{word-spacing:2.266667pt;}
.ws28{word-spacing:2.293333pt;}
.wsa4{word-spacing:2.312000pt;}
.ws5c{word-spacing:2.346667pt;}
.ws3d{word-spacing:2.400000pt;}
.ws59{word-spacing:2.453333pt;}
.ws43{word-spacing:2.560000pt;}
.wsbb{word-spacing:2.584000pt;}
.ws69{word-spacing:2.613333pt;}
.ws57{word-spacing:2.666667pt;}
.ws9f{word-spacing:2.674667pt;}
.ws16{word-spacing:2.720000pt;}
.ws97{word-spacing:2.765333pt;}
.ws6a{word-spacing:2.880000pt;}
.ws26{word-spacing:2.933333pt;}
.ws35{word-spacing:3.040000pt;}
.ws74{word-spacing:3.093333pt;}
.ws6e{word-spacing:3.146667pt;}
.ws1d{word-spacing:3.253333pt;}
.ws63{word-spacing:3.306667pt;}
.ws9a{word-spacing:3.309333pt;}
.ws6f{word-spacing:3.360000pt;}
.wsa2{word-spacing:3.400000pt;}
.ws72{word-spacing:3.413333pt;}
.ws6b{word-spacing:3.466667pt;}
.ws71{word-spacing:3.573333pt;}
.ws5d{word-spacing:3.626667pt;}
.ws1f{word-spacing:3.680000pt;}
.ws29{word-spacing:3.733333pt;}
.ws42{word-spacing:3.786667pt;}
.ws5a{word-spacing:3.840000pt;}
.ws62{word-spacing:3.893333pt;}
.ws80{word-spacing:3.946667pt;}
.ws37{word-spacing:4.000000pt;}
.ws4a{word-spacing:4.213333pt;}
.ws64{word-spacing:4.320000pt;}
.ws45{word-spacing:4.480000pt;}
.ws1c{word-spacing:4.746667pt;}
.ws44{word-spacing:4.800000pt;}
.ws89{word-spacing:4.960000pt;}
.ws7c{word-spacing:5.066667pt;}
.ws40{word-spacing:5.173333pt;}
.ws8a{word-spacing:5.973333pt;}
.ws55{word-spacing:6.186667pt;}
.ws3a{word-spacing:6.773333pt;}
.ws86{word-spacing:7.040000pt;}
.ws5b{word-spacing:7.253333pt;}
.wsb2{word-spacing:12.149333pt;}
.wsb3{word-spacing:15.821333pt;}
.ws20{word-spacing:64.237333pt;}
.ws54{word-spacing:491.742246pt;}
.ws52{word-spacing:517.488467pt;}
.ws7a{word-spacing:2131.709282pt;}
.ws76{word-spacing:2166.434615pt;}
.ws77{word-spacing:2223.010615pt;}
._8{margin-left:-14.733333pt;}
._10{margin-left:-8.107733pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._d{margin-left:-2.838133pt;}
._1{margin-left:-1.774933pt;}
._4{width:1.045067pt;}
._e{width:2.109867pt;}
._f{width:3.573333pt;}
._0{width:4.966400pt;}
._2b{width:10.116267pt;}
._2c{width:12.826933pt;}
._11{width:14.196267pt;}
._9{width:16.320000pt;}
._7{width:24.761600pt;}
._5{width:30.414933pt;}
._6{width:31.626667pt;}
._12{width:36.452533pt;}
._26{width:39.503733pt;}
._b{width:48.552000pt;}
._29{width:58.589067pt;}
._a{width:64.237333pt;}
._21{width:70.731467pt;}
._2a{width:161.355200pt;}
._1c{width:177.987733pt;}
._19{width:188.266933pt;}
._1f{width:201.824000pt;}
._1d{width:202.776000pt;}
._17{width:225.442667pt;}
._16{width:254.748800pt;}
._1b{width:256.502933pt;}
._1e{width:264.118933pt;}
._27{width:277.440000pt;}
._14{width:309.452267pt;}
._13{width:327.712267pt;}
._28{width:379.122667pt;}
._23{width:393.726933pt;}
._15{width:408.181333pt;}
._24{width:426.994667pt;}
._18{width:477.910933pt;}
._1a{width:494.040267pt;}
._20{width:516.702133pt;}
._22{width:579.568800pt;}
._25{width:582.449600pt;}
._c{width:2361.367993pt;}
.fs9{font-size:31.733332pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fsa{font-size:49.197332pt;}
.fs5{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fsb{font-size:54.531733pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y19{bottom:61.181335pt;}
.y13{bottom:88.706667pt;}
.y166{bottom:100.350161pt;}
.y16c{bottom:100.350165pt;}
.y174{bottom:100.350169pt;}
.y14b{bottom:100.350301pt;}
.y14f{bottom:100.361635pt;}
.y15e{bottom:100.372819pt;}
.y146{bottom:100.372951pt;}
.y153{bottom:100.372968pt;}
.y159{bottom:100.384135pt;}
.y141{bottom:100.384267pt;}
.y4e{bottom:100.389600pt;}
.yb4{bottom:100.810933pt;}
.y17{bottom:101.040000pt;}
.y11c{bottom:101.986938pt;}
.ycc{bottom:102.111064pt;}
.y44{bottom:108.854533pt;}
.y279{bottom:116.443059pt;}
.y1eb{bottom:116.696289pt;}
.yb3{bottom:117.477600pt;}
.y4d{bottom:118.250936pt;}
.y7f{bottom:118.384277pt;}
.y11b{bottom:118.653605pt;}
.ycb{bottom:118.777730pt;}
.y16{bottom:120.666667pt;}
.y43{bottom:125.521200pt;}
.y23d{bottom:126.790418pt;}
.y278{bottom:129.771059pt;}
.y1ea{bottom:133.362956pt;}
.yb2{bottom:134.144267pt;}
.y7e{bottom:135.050944pt;}
.y140{bottom:135.320231pt;}
.y11a{bottom:135.320272pt;}
.yca{bottom:135.444397pt;}
.y14{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y23c{bottom:140.118418pt;}
.y15{bottom:140.293333pt;}
.y4c{bottom:140.503592pt;}
.y42{bottom:142.187866pt;}
.y277{bottom:143.099059pt;}
.y1e9{bottom:150.029622pt;}
.yb1{bottom:150.810933pt;}
.y7d{bottom:151.717611pt;}
.y13f{bottom:151.986898pt;}
.y119{bottom:151.986938pt;}
.yc9{bottom:152.111064pt;}
.y23b{bottom:153.446418pt;}
.y4b{bottom:153.831592pt;}
.y276{bottom:156.427059pt;}
.y41{bottom:158.854533pt;}
.y1e8{bottom:166.696289pt;}
.y23a{bottom:166.774418pt;}
.yb0{bottom:167.477600pt;}
.y7c{bottom:168.384277pt;}
.y13e{bottom:168.653564pt;}
.y118{bottom:168.653605pt;}
.yc8{bottom:168.777730pt;}
.y275{bottom:169.755059pt;}
.y4a{bottom:173.868925pt;}
.y40{bottom:175.521200pt;}
.y239{bottom:180.102418pt;}
.y274{bottom:183.083059pt;}
.y1e7{bottom:183.362956pt;}
.yaf{bottom:184.144267pt;}
.y7b{bottom:185.050944pt;}
.y13d{bottom:185.320231pt;}
.y117{bottom:185.320272pt;}
.yc7{bottom:185.444397pt;}
.y49{bottom:187.196925pt;}
.y3f{bottom:192.187866pt;}
.y238{bottom:193.430418pt;}
.y1e6{bottom:200.029622pt;}
.yae{bottom:200.810933pt;}
.y1ae{bottom:200.928304pt;}
.y7a{bottom:201.717611pt;}
.y13c{bottom:201.986898pt;}
.y116{bottom:201.986938pt;}
.yc6{bottom:202.111064pt;}
.y237{bottom:206.758418pt;}
.y48{bottom:207.234259pt;}
.y273{bottom:209.750393pt;}
.y1e5{bottom:216.696289pt;}
.yad{bottom:217.477600pt;}
.y1ad{bottom:217.594971pt;}
.y79{bottom:218.384277pt;}
.y13b{bottom:218.653564pt;}
.y115{bottom:218.653605pt;}
.yc5{bottom:218.777730pt;}
.y236{bottom:220.086418pt;}
.y47{bottom:220.562259pt;}
.y272{bottom:223.078393pt;}
.y3e{bottom:225.521200pt;}
.y1e4{bottom:233.362956pt;}
.y235{bottom:233.414418pt;}
.yac{bottom:234.144267pt;}
.y1ac{bottom:234.261637pt;}
.y78{bottom:235.050944pt;}
.y13a{bottom:235.320231pt;}
.y114{bottom:235.320272pt;}
.yc4{bottom:235.444397pt;}
.y271{bottom:236.406393pt;}
.y46{bottom:240.599592pt;}
.y3d{bottom:242.187866pt;}
.y234{bottom:246.742418pt;}
.y270{bottom:249.734393pt;}
.y1e3{bottom:250.029622pt;}
.yab{bottom:250.810933pt;}
.y1ab{bottom:250.928304pt;}
.y77{bottom:251.717611pt;}
.y139{bottom:251.986898pt;}
.y113{bottom:251.986938pt;}
.yc3{bottom:252.111064pt;}
.y45{bottom:253.927592pt;}
.y3c{bottom:258.854533pt;}
.y233{bottom:260.070418pt;}
.y26f{bottom:263.062393pt;}
.y1e2{bottom:266.696289pt;}
.yaa{bottom:267.477600pt;}
.y1aa{bottom:267.594971pt;}
.y76{bottom:268.384277pt;}
.y138{bottom:268.653564pt;}
.y112{bottom:268.653605pt;}
.ydc{bottom:268.777730pt;}
.y17e{bottom:270.100842pt;}
.y164{bottom:270.112161pt;}
.y16a{bottom:270.112165pt;}
.y171{bottom:270.112169pt;}
.y17a{bottom:270.112171pt;}
.y160{bottom:270.123490pt;}
.y149{bottom:270.123622pt;}
.y1b4{bottom:270.134948pt;}
.y15a{bottom:270.146135pt;}
.y142{bottom:270.146267pt;}
.y232{bottom:273.398418pt;}
.y3b{bottom:275.521200pt;}
.y26e{bottom:276.390393pt;}
.y175{bottom:278.113506pt;}
.y1af{bottom:278.136284pt;}
.y154{bottom:278.136301pt;}
.y1e1{bottom:283.362956pt;}
.ya9{bottom:284.144267pt;}
.y1a9{bottom:284.261637pt;}
.y75{bottom:285.050944pt;}
.y137{bottom:285.320231pt;}
.y111{bottom:285.320272pt;}
.yc2{bottom:285.444397pt;}
.y231{bottom:286.726418pt;}
.y26d{bottom:289.718393pt;}
.y3a{bottom:292.187866pt;}
.y1e0{bottom:300.029622pt;}
.y230{bottom:300.054418pt;}
.ya8{bottom:300.810933pt;}
.y1a8{bottom:300.928304pt;}
.y74{bottom:301.717611pt;}
.y136{bottom:301.986898pt;}
.y110{bottom:301.986938pt;}
.ydb{bottom:302.111064pt;}
.ya{bottom:306.382667pt;}
.y38{bottom:308.854533pt;}
.y22f{bottom:313.382418pt;}
.y1df{bottom:316.696289pt;}
.ya7{bottom:317.477600pt;}
.y1a7{bottom:317.594971pt;}
.y73{bottom:318.384277pt;}
.y135{bottom:318.653564pt;}
.y10f{bottom:318.653605pt;}
.yda{bottom:318.777730pt;}
.y37{bottom:325.521200pt;}
.y22e{bottom:326.710418pt;}
.y1de{bottom:333.362956pt;}
.ya6{bottom:334.144267pt;}
.y1a6{bottom:334.261637pt;}
.y72{bottom:335.050944pt;}
.y134{bottom:335.320231pt;}
.y10e{bottom:335.320272pt;}
.yc1{bottom:335.444255pt;}
.yd9{bottom:335.444397pt;}
.y22d{bottom:340.038418pt;}
.y36{bottom:342.187866pt;}
.y26c{bottom:343.053058pt;}
.yd{bottom:343.546667pt;}
.y1dd{bottom:350.029622pt;}
.ya5{bottom:350.810933pt;}
.y1a5{bottom:350.928304pt;}
.y71{bottom:351.717611pt;}
.y9{bottom:351.724000pt;}
.y133{bottom:351.986898pt;}
.y10d{bottom:351.986938pt;}
.yc0{bottom:352.110921pt;}
.yd8{bottom:352.111064pt;}
.y22c{bottom:353.366418pt;}
.y26b{bottom:356.381058pt;}
.y35{bottom:358.854533pt;}
.y22b{bottom:366.694418pt;}
.y1dc{bottom:366.696289pt;}
.ya4{bottom:367.477600pt;}
.y1a4{bottom:367.594971pt;}
.y70{bottom:368.384277pt;}
.y132{bottom:368.653564pt;}
.y10c{bottom:368.653605pt;}
.ybf{bottom:368.777588pt;}
.yd7{bottom:368.777730pt;}
.y34{bottom:375.521200pt;}
.y22a{bottom:380.022418pt;}
.y1db{bottom:383.362956pt;}
.y26a{bottom:383.796391pt;}
.ya3{bottom:384.144267pt;}
.y1a3{bottom:384.261637pt;}
.y6f{bottom:385.050944pt;}
.y131{bottom:385.320231pt;}
.y10b{bottom:385.320272pt;}
.ybe{bottom:385.444255pt;}
.yd6{bottom:385.444397pt;}
.yb{bottom:386.533333pt;}
.y33{bottom:392.187866pt;}
.y229{bottom:393.350418pt;}
.y8{bottom:397.065333pt;}
.y269{bottom:397.124391pt;}
.y1da{bottom:400.029622pt;}
.ya2{bottom:400.810933pt;}
.y1a2{bottom:400.928304pt;}
.y6e{bottom:401.717611pt;}
.y130{bottom:401.986898pt;}
.y10a{bottom:401.986938pt;}
.ybd{bottom:402.110921pt;}
.yd5{bottom:402.111064pt;}
.y228{bottom:406.678418pt;}
.y32{bottom:408.854533pt;}
.y268{bottom:410.452391pt;}
.y1d9{bottom:416.696289pt;}
.ya1{bottom:417.477600pt;}
.y1a1{bottom:417.594971pt;}
.y6d{bottom:418.384277pt;}
.y12f{bottom:418.653564pt;}
.y109{bottom:418.653605pt;}
.ybc{bottom:418.777588pt;}
.yd4{bottom:418.777730pt;}
.y227{bottom:420.006418pt;}
.y267{bottom:423.780391pt;}
.y31{bottom:425.521200pt;}
.y226{bottom:433.334418pt;}
.y1d8{bottom:433.362956pt;}
.y10{bottom:433.826667pt;}
.ya0{bottom:434.144267pt;}
.y1a0{bottom:434.261637pt;}
.y6c{bottom:435.050944pt;}
.y12e{bottom:435.320231pt;}
.y108{bottom:435.320272pt;}
.ybb{bottom:435.444255pt;}
.yd3{bottom:435.444397pt;}
.y266{bottom:437.108391pt;}
.y30{bottom:442.187866pt;}
.y7{bottom:442.406667pt;}
.y225{bottom:446.662418pt;}
.y1d7{bottom:450.029622pt;}
.y265{bottom:450.436391pt;}
.y9f{bottom:450.810933pt;}
.y19f{bottom:450.928304pt;}
.y6b{bottom:451.717611pt;}
.y12d{bottom:451.986898pt;}
.y107{bottom:451.986938pt;}
.yba{bottom:452.110921pt;}
.yd2{bottom:452.111064pt;}
.y2f{bottom:458.854533pt;}
.y224{bottom:459.990418pt;}
.y264{bottom:463.764391pt;}
.y1d6{bottom:466.696289pt;}
.y9e{bottom:467.477600pt;}
.y19e{bottom:467.594971pt;}
.y6a{bottom:468.384277pt;}
.y12c{bottom:468.653564pt;}
.y106{bottom:468.653605pt;}
.yb9{bottom:468.777588pt;}
.yd1{bottom:468.777730pt;}
.y223{bottom:473.318418pt;}
.y2e{bottom:475.521200pt;}
.y263{bottom:477.092391pt;}
.y11{bottom:478.426667pt;}
.y1d5{bottom:483.362956pt;}
.y9d{bottom:484.144267pt;}
.y19d{bottom:484.261637pt;}
.y69{bottom:485.050944pt;}
.y12b{bottom:485.320231pt;}
.y105{bottom:485.320272pt;}
.yb8{bottom:485.444255pt;}
.yd0{bottom:485.444397pt;}
.y17f{bottom:485.456842pt;}
.y16d{bottom:485.468165pt;}
.y176{bottom:485.468167pt;}
.y172{bottom:485.468169pt;}
.y17b{bottom:485.468171pt;}
.y161{bottom:485.479490pt;}
.y1b0{bottom:485.490946pt;}
.y1b5{bottom:485.490948pt;}
.y155{bottom:485.490963pt;}
.y15b{bottom:485.502135pt;}
.y143{bottom:485.502267pt;}
.y222{bottom:486.646418pt;}
.y6{bottom:487.748000pt;}
.y262{bottom:490.420391pt;}
.y2d{bottom:492.187866pt;}
.y167{bottom:493.469494pt;}
.y16e{bottom:493.469498pt;}
.y177{bottom:493.469500pt;}
.y14c{bottom:493.469635pt;}
.y150{bottom:493.480968pt;}
.y1b1{bottom:493.492277pt;}
.y1b6{bottom:493.492281pt;}
.y156{bottom:493.492296pt;}
.y221{bottom:499.974418pt;}
.y1d4{bottom:500.029622pt;}
.y9c{bottom:500.810933pt;}
.y19c{bottom:500.928304pt;}
.y68{bottom:501.717611pt;}
.y12a{bottom:501.986898pt;}
.y104{bottom:501.986938pt;}
.yb7{bottom:502.110921pt;}
.ycf{bottom:502.111064pt;}
.y261{bottom:503.748391pt;}
.y2c{bottom:508.854533pt;}
.y220{bottom:513.302418pt;}
.y1d3{bottom:516.696289pt;}
.y260{bottom:517.076391pt;}
.y9b{bottom:517.477600pt;}
.y19b{bottom:517.594971pt;}
.y67{bottom:518.384277pt;}
.y129{bottom:518.653564pt;}
.y103{bottom:518.653605pt;}
.yb6{bottom:518.777588pt;}
.yce{bottom:518.777730pt;}
.y18{bottom:524.093333pt;}
.y2b{bottom:525.521200pt;}
.y21f{bottom:526.630418pt;}
.y25f{bottom:530.404391pt;}
.y5{bottom:533.089333pt;}
.y1d2{bottom:533.362956pt;}
.y9a{bottom:534.144267pt;}
.y19a{bottom:534.261637pt;}
.y66{bottom:535.050944pt;}
.y128{bottom:535.320231pt;}
.y202{bottom:535.320272pt;}
.yb5{bottom:535.444255pt;}
.ycd{bottom:535.444397pt;}
.y21e{bottom:539.958418pt;}
.y39{bottom:542.187866pt;}
.y25e{bottom:543.732391pt;}
.y1d1{bottom:550.029622pt;}
.y99{bottom:550.810933pt;}
.y199{bottom:550.928304pt;}
.y65{bottom:551.717611pt;}
.y127{bottom:551.986898pt;}
.y102{bottom:551.986938pt;}
.y21d{bottom:553.286418pt;}
.y25d{bottom:557.060391pt;}
.y2a{bottom:558.854533pt;}
.ye{bottom:561.706667pt;}
.y21c{bottom:566.614418pt;}
.y1d0{bottom:566.696289pt;}
.y98{bottom:567.477600pt;}
.y198{bottom:567.594971pt;}
.y64{bottom:568.384277pt;}
.y126{bottom:568.653564pt;}
.y201{bottom:568.653605pt;}
.y25c{bottom:570.388391pt;}
.y21b{bottom:579.942418pt;}
.y1cf{bottom:583.362956pt;}
.y25b{bottom:583.716391pt;}
.yec{bottom:584.062663pt;}
.y97{bottom:584.144267pt;}
.y197{bottom:584.261637pt;}
.y63{bottom:585.050944pt;}
.y101{bottom:585.320231pt;}
.y200{bottom:585.320272pt;}
.y21a{bottom:593.270418pt;}
.y25a{bottom:597.044391pt;}
.y1ce{bottom:600.029622pt;}
.y96{bottom:600.810933pt;}
.y196{bottom:600.928304pt;}
.y62{bottom:601.717611pt;}
.y100{bottom:601.986898pt;}
.y1ff{bottom:601.986938pt;}
.y219{bottom:606.598418pt;}
.y29{bottom:608.854574pt;}
.y259{bottom:610.372391pt;}
.y1cd{bottom:616.696289pt;}
.y95{bottom:617.477600pt;}
.y195{bottom:617.594971pt;}
.y61{bottom:618.384277pt;}
.yff{bottom:618.653564pt;}
.y1fe{bottom:618.653605pt;}
.y218{bottom:619.926418pt;}
.y258{bottom:623.700391pt;}
.yea{bottom:629.887980pt;}
.y217{bottom:633.254418pt;}
.y1cc{bottom:633.362956pt;}
.y94{bottom:634.144267pt;}
.y194{bottom:634.261637pt;}
.yfe{bottom:635.320231pt;}
.y1fd{bottom:635.320272pt;}
.y257{bottom:637.028391pt;}
.y28{bottom:642.187907pt;}
.y216{bottom:646.582418pt;}
.y1cb{bottom:650.029622pt;}
.y256{bottom:650.356391pt;}
.y93{bottom:650.810933pt;}
.y193{bottom:650.928304pt;}
.y60{bottom:651.712277pt;}
.yfd{bottom:651.986898pt;}
.y1fc{bottom:651.986938pt;}
.y27{bottom:658.854574pt;}
.y215{bottom:659.910418pt;}
.y255{bottom:663.684391pt;}
.y1ca{bottom:666.696289pt;}
.y92{bottom:667.477600pt;}
.y192{bottom:667.594971pt;}
.y5f{bottom:668.384277pt;}
.yfc{bottom:668.653564pt;}
.y214{bottom:673.238418pt;}
.y26{bottom:675.521240pt;}
.y254{bottom:677.012391pt;}
.y1c9{bottom:683.362956pt;}
.y91{bottom:684.144267pt;}
.y191{bottom:684.261637pt;}
.yfb{bottom:685.320231pt;}
.y213{bottom:686.566418pt;}
.y253{bottom:690.340391pt;}
.y4{bottom:691.756000pt;}
.y25{bottom:692.187907pt;}
.y212{bottom:699.894418pt;}
.y1c8{bottom:700.029622pt;}
.y90{bottom:700.810933pt;}
.y190{bottom:700.928304pt;}
.y17c{bottom:701.107505pt;}
.y162{bottom:701.118823pt;}
.y168{bottom:701.118828pt;}
.y16f{bottom:701.118832pt;}
.y178{bottom:701.118834pt;}
.y14a{bottom:701.118955pt;}
.y14d{bottom:701.118968pt;}
.y151{bottom:701.130301pt;}
.y15c{bottom:701.141468pt;}
.y144{bottom:701.141600pt;}
.y1b2{bottom:701.141611pt;}
.y1b7{bottom:701.141615pt;}
.y157{bottom:701.141629pt;}
.yfa{bottom:701.986898pt;}
.y252{bottom:703.668391pt;}
.ye6{bottom:704.428287pt;}
.y24{bottom:708.854574pt;}
.y211{bottom:713.222418pt;}
.y1c7{bottom:716.696289pt;}
.y251{bottom:716.996391pt;}
.y8f{bottom:717.477600pt;}
.y18f{bottom:717.594971pt;}
.yf9{bottom:718.653564pt;}
.y1fb{bottom:718.656281pt;}
.ye9{bottom:719.836019pt;}
.ye5{bottom:720.577311pt;}
.y12{bottom:725.040000pt;}
.y23{bottom:725.521240pt;}
.y210{bottom:726.550418pt;}
.y250{bottom:730.324391pt;}
.y1c6{bottom:733.362956pt;}
.y8e{bottom:734.144267pt;}
.y5e{bottom:734.146973pt;}
.y18e{bottom:734.261637pt;}
.yf8{bottom:735.320231pt;}
.y1fa{bottom:735.322947pt;}
.y20f{bottom:739.878418pt;}
.y22{bottom:742.187907pt;}
.y24f{bottom:743.652391pt;}
.y1c5{bottom:750.029622pt;}
.y8d{bottom:750.810933pt;}
.y5d{bottom:750.813639pt;}
.y18d{bottom:750.928304pt;}
.yf7{bottom:751.986898pt;}
.y1f9{bottom:751.989614pt;}
.ye1{bottom:754.814814pt;}
.y24e{bottom:756.980391pt;}
.y148{bottom:763.157618pt;}
.y15d{bottom:763.168802pt;}
.y145{bottom:763.168933pt;}
.y1c4{bottom:766.696289pt;}
.y8c{bottom:767.477600pt;}
.y5c{bottom:767.480306pt;}
.y18c{bottom:767.594971pt;}
.yf6{bottom:768.653564pt;}
.y1f8{bottom:768.656281pt;}
.y20e{bottom:769.878418pt;}
.y24d{bottom:770.308391pt;}
.y180{bottom:771.124842pt;}
.y165{bottom:771.136161pt;}
.y16b{bottom:771.136165pt;}
.y173{bottom:771.136169pt;}
.y17d{bottom:771.136171pt;}
.y163{bottom:771.147490pt;}
.y169{bottom:771.147494pt;}
.y170{bottom:771.147498pt;}
.y179{bottom:771.147500pt;}
.y14e{bottom:771.147635pt;}
.y15f{bottom:771.158819pt;}
.y147{bottom:771.158951pt;}
.y152{bottom:771.158968pt;}
.y1b3{bottom:771.170277pt;}
.y1b8{bottom:771.170281pt;}
.y158{bottom:771.170296pt;}
.ye0{bottom:780.889398pt;}
.y21{bottom:781.461469pt;}
.ye4{bottom:782.818228pt;}
.y1c3{bottom:783.362956pt;}
.y24c{bottom:783.636391pt;}
.y8b{bottom:784.144267pt;}
.y5b{bottom:784.146973pt;}
.y18b{bottom:784.261637pt;}
.yf5{bottom:785.320231pt;}
.y1f7{bottom:785.322947pt;}
.y20{bottom:794.789469pt;}
.y24b{bottom:796.964391pt;}
.ydf{bottom:797.075320pt;}
.ye8{bottom:797.225505pt;}
.ye3{bottom:799.004150pt;}
.y1c2{bottom:800.029622pt;}
.y8a{bottom:800.810933pt;}
.y5a{bottom:800.813639pt;}
.y18a{bottom:800.928304pt;}
.yf4{bottom:801.986898pt;}
.y1f6{bottom:801.989614pt;}
.y3{bottom:805.081333pt;}
.y24a{bottom:810.292391pt;}
.y1c1{bottom:816.696289pt;}
.y89{bottom:817.477600pt;}
.y59{bottom:817.480306pt;}
.y189{bottom:817.594971pt;}
.yf3{bottom:818.653564pt;}
.y1f5{bottom:818.656281pt;}
.y20d{bottom:819.924301pt;}
.yde{bottom:823.457389pt;}
.y249{bottom:823.620391pt;}
.y1f{bottom:832.656169pt;}
.y20c{bottom:833.252301pt;}
.y1c0{bottom:833.362956pt;}
.y88{bottom:834.144267pt;}
.y58{bottom:834.146973pt;}
.y188{bottom:834.261637pt;}
.yf2{bottom:835.320231pt;}
.y125{bottom:835.320272pt;}
.y1f4{bottom:835.322947pt;}
.y281{bottom:836.550301pt;}
.y248{bottom:836.948391pt;}
.ydd{bottom:839.458822pt;}
.y20b{bottom:846.580301pt;}
.y280{bottom:849.878301pt;}
.y1bf{bottom:850.029622pt;}
.y247{bottom:850.276391pt;}
.y87{bottom:850.810933pt;}
.y57{bottom:850.813639pt;}
.y187{bottom:850.928304pt;}
.yf1{bottom:851.986898pt;}
.y124{bottom:851.986938pt;}
.y1f3{bottom:851.989614pt;}
.y2{bottom:857.092000pt;}
.y20a{bottom:859.908301pt;}
.y27f{bottom:863.206301pt;}
.y246{bottom:863.604391pt;}
.y1be{bottom:866.696289pt;}
.y86{bottom:867.477600pt;}
.y56{bottom:867.480306pt;}
.y186{bottom:867.594971pt;}
.y123{bottom:868.653605pt;}
.y1f2{bottom:868.656281pt;}
.y1e{bottom:872.377441pt;}
.y209{bottom:873.236301pt;}
.y245{bottom:876.932391pt;}
.ye7{bottom:877.097168pt;}
.ye2{bottom:877.690267pt;}
.y1{bottom:879.748000pt;}
.y1bd{bottom:883.362956pt;}
.y85{bottom:884.144267pt;}
.y55{bottom:884.146973pt;}
.y185{bottom:884.261637pt;}
.yf0{bottom:885.320231pt;}
.y122{bottom:885.320272pt;}
.y1f1{bottom:885.322947pt;}
.y208{bottom:886.564301pt;}
.y27e{bottom:889.873634pt;}
.y244{bottom:890.260391pt;}
.y1d{bottom:896.377441pt;}
.y207{bottom:899.892301pt;}
.y1bc{bottom:900.029622pt;}
.y84{bottom:900.810933pt;}
.y54{bottom:900.813639pt;}
.y184{bottom:900.928304pt;}
.y121{bottom:901.986938pt;}
.y1f0{bottom:901.989614pt;}
.y27d{bottom:903.201634pt;}
.y243{bottom:903.588391pt;}
.y206{bottom:913.220301pt;}
.y27c{bottom:916.529634pt;}
.y1bb{bottom:916.696289pt;}
.y286{bottom:916.710967pt;}
.y242{bottom:916.916391pt;}
.y83{bottom:917.477600pt;}
.y53{bottom:917.480306pt;}
.y183{bottom:917.594971pt;}
.y120{bottom:918.653605pt;}
.y1ef{bottom:918.656281pt;}
.y205{bottom:926.548301pt;}
.y27b{bottom:929.857634pt;}
.y285{bottom:930.038967pt;}
.y241{bottom:930.244391pt;}
.y1ba{bottom:933.362956pt;}
.y82{bottom:934.144267pt;}
.y52{bottom:934.146973pt;}
.y182{bottom:934.261637pt;}
.yef{bottom:935.320231pt;}
.y11f{bottom:935.320272pt;}
.y1ee{bottom:935.322947pt;}
.y27a{bottom:943.185634pt;}
.y284{bottom:943.366967pt;}
.y240{bottom:943.572391pt;}
.y81{bottom:950.810933pt;}
.y51{bottom:950.813639pt;}
.yee{bottom:951.986898pt;}
.y11e{bottom:951.986938pt;}
.y1ed{bottom:951.989614pt;}
.y204{bottom:956.513634pt;}
.y1c{bottom:956.561849pt;}
.y283{bottom:956.694967pt;}
.y23f{bottom:956.900391pt;}
.yeb{bottom:959.043294pt;}
.y1b9{bottom:966.696289pt;}
.y80{bottom:967.477600pt;}
.y50{bottom:967.480306pt;}
.y181{bottom:967.594971pt;}
.yed{bottom:968.653564pt;}
.y11d{bottom:968.653605pt;}
.y1ec{bottom:968.656281pt;}
.y203{bottom:969.841634pt;}
.y282{bottom:970.022967pt;}
.y23e{bottom:970.228391pt;}
.y1b{bottom:986.299161pt;}
.y1a{bottom:1001.406494pt;}
.y4f{bottom:1002.206543pt;}
.h4{height:29.333333pt;}
.h14{height:29.448532pt;}
.hb{height:30.080000pt;}
.h19{height:31.325333pt;}
.h15{height:31.535490pt;}
.h16{height:34.954841pt;}
.hc{height:39.712000pt;}
.h13{height:42.069333pt;}
.h1a{height:46.376000pt;}
.hd{height:49.298667pt;}
.h11{height:49.493333pt;}
.h3{height:51.916667pt;}
.h17{height:52.448000pt;}
.h10{height:52.746667pt;}
.h18{height:54.560000pt;}
.hf{height:57.658667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.h12{height:63.296000pt;}
.he{height:75.605333pt;}
.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;}
.xb{left:68.031469pt;}
.xc{left:75.717199pt;}
.x11{left:83.149602pt;}
.x10{left:86.929867pt;}
.x74{left:90.709469pt;}
.x4b{left:98.209462pt;}
.x20{left:99.189738pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x4c{left:136.130796pt;}
.x21{left:137.485071pt;}
.x16{left:139.268270pt;}
.x17{left:145.937469pt;}
.x4d{left:149.458796pt;}
.x5{left:154.760000pt;}
.x19{left:156.601603pt;}
.x4e{left:162.786796pt;}
.x1f{left:165.640666pt;}
.x22{left:167.450405pt;}
.x2{left:169.813333pt;}
.x18{left:174.828603pt;}
.x7{left:178.413333pt;}
.x1a{left:179.429164pt;}
.x23{left:180.778405pt;}
.x4f{left:183.957462pt;}
.x8{left:193.173333pt;}
.x24{left:194.106405pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x25{left:207.434405pt;}
.x73{left:210.613462pt;}
.x50{left:218.456129pt;}
.x26{left:224.071738pt;}
.x51{left:231.784129pt;}
.x27{left:237.399738pt;}
.x36{left:240.629738pt;}
.x52{left:245.112129pt;}
.x28{left:250.727738pt;}
.x53{left:258.440129pt;}
.x29{left:264.055738pt;}
.x54{left:275.077462pt;}
.x2a{left:277.383738pt;}
.x55{left:288.405462pt;}
.x2b{left:290.711738pt;}
.x56{left:301.733462pt;}
.x2c{left:304.039738pt;}
.x35{left:307.292405pt;}
.x57{left:315.061462pt;}
.x2d{left:317.367738pt;}
.x58{left:328.389462pt;}
.x2e{left:330.695738pt;}
.x1e{left:339.646139pt;}
.x59{left:341.717462pt;}
.x2f{left:344.023738pt;}
.x15{left:352.683572pt;}
.x14{left:355.795303pt;}
.x30{left:357.351738pt;}
.x5a{left:358.354796pt;}
.x12{left:361.280802pt;}
.x13{left:363.359392pt;}
.x31{left:370.679738pt;}
.x5b{left:371.682796pt;}
.x32{left:384.007738pt;}
.x5c{left:385.010796pt;}
.x33{left:397.335738pt;}
.x5d{left:398.338796pt;}
.xd{left:408.191457pt;}
.x34{left:410.663738pt;}
.x5e{left:414.976129pt;}
.xe{left:423.311463pt;}
.x37{left:427.289738pt;}
.x5f{left:431.613462pt;}
.xf{left:435.151465pt;}
.x38{left:440.617738pt;}
.x60{left:444.941462pt;}
.x39{left:453.945738pt;}
.x61{left:458.269462pt;}
.x3a{left:467.262405pt;}
.x62{left:471.597462pt;}
.x3b{left:480.590405pt;}
.x63{left:488.234796pt;}
.x3c{left:493.918405pt;}
.x64{left:501.562796pt;}
.x3d{left:507.246405pt;}
.x65{left:514.890796pt;}
.x3e{left:520.574405pt;}
.x1b{left:526.679484pt;}
.x66{left:528.218796pt;}
.x1d{left:531.867472pt;}
.x1c{left:533.644816pt;}
.x67{left:544.856129pt;}
.x3f{left:550.539738pt;}
.x68{left:558.184129pt;}
.x40{left:563.867738pt;}
.x69{left:571.512129pt;}
.x41{left:577.195738pt;}
.x6a{left:588.138129pt;}
.x42{left:590.523738pt;}
.x6b{left:601.466129pt;}
.x43{left:603.851738pt;}
.x6c{left:614.794129pt;}
.x44{left:620.489071pt;}
.x6d{left:628.122129pt;}
.x45{left:637.126405pt;}
.x6e{left:644.759462pt;}
.xa{left:647.307210pt;}
.x46{left:650.454405pt;}
.x6f{left:658.087462pt;}
.x47{left:663.782405pt;}
.x70{left:671.415462pt;}
.x48{left:677.099071pt;}
.x71{left:684.743462pt;}
.x49{left:690.427071pt;}
.x72{left:698.071462pt;}
.x4a{left:703.755071pt;}
}




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