
    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_3cedc5c909f0dec677084388.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_c5ef316f8bb325b293a3c68f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_9a96c889a413cfa8da21ac5b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.851000;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_c4f782aac8026134de3b01bf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_f2481a6141606a0ee55c3e70.woff')format("woff");}.ff5{font-family:ff5;line-height:1.045000;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_f373ed8faf4c74a15bec192e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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_ad41b06126f21d0457a22eed.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;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_d8e643bf8997652280766f13.woff')format("woff");}.ff8{font-family:ff8;line-height:0.947266;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_93cb18fb849bc4c303bf8793.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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_765e04b2ae4328c27762a5b8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.070312;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);}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.840000px;}
.v4{vertical-align:19.799400px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:183.600000px;}
.ls94{letter-spacing:-4.800000px;}
.ls7d{letter-spacing:-3.672000px;}
.ls12{letter-spacing:-3.540000px;}
.ls36{letter-spacing:-2.808000px;}
.ls2e{letter-spacing:-2.448000px;}
.ls7f{letter-spacing:-2.376000px;}
.ls6f{letter-spacing:-2.340000px;}
.ls8e{letter-spacing:-2.112000px;}
.ls6e{letter-spacing:-2.088000px;}
.ls4c{letter-spacing:-1.872000px;}
.ls8d{letter-spacing:-1.632000px;}
.ls69{letter-spacing:-1.296000px;}
.ls67{letter-spacing:-1.152000px;}
.ls1f{letter-spacing:-1.080000px;}
.ls5a{letter-spacing:-0.936000px;}
.ls39{letter-spacing:-0.864000px;}
.ls45{letter-spacing:-0.792000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls68{letter-spacing:-0.655200px;}
.ls60{letter-spacing:-0.648000px;}
.ls74{letter-spacing:-0.600000px;}
.ls53{letter-spacing:-0.576000px;}
.ls99{letter-spacing:-0.528000px;}
.ls54{letter-spacing:-0.504000px;}
.ls8c{letter-spacing:-0.480000px;}
.ls37{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.420000px;}
.ls38{letter-spacing:-0.360000px;}
.ls9b{letter-spacing:-0.300000px;}
.ls14{letter-spacing:-0.288000px;}
.ls7c{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.216000px;}
.ls5f{letter-spacing:-0.151200px;}
.ls44{letter-spacing:-0.144000px;}
.ls63{letter-spacing:-0.100800px;}
.lsf{letter-spacing:-0.072000px;}
.lsa{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000600px;}
.ls64{letter-spacing:0.050400px;}
.ls70{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.216000px;}
.ls66{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.252000px;}
.ls32{letter-spacing:0.282000px;}
.ls47{letter-spacing:0.288000px;}
.ls9c{letter-spacing:0.300000px;}
.ls87{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.360000px;}
.ls8a{letter-spacing:0.384000px;}
.ls30{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.576000px;}
.ls4{letter-spacing:0.648000px;}
.ls3{letter-spacing:0.720000px;}
.ls43{letter-spacing:0.792000px;}
.ls82{letter-spacing:0.816000px;}
.ls5{letter-spacing:0.864000px;}
.ls5d{letter-spacing:0.936000px;}
.ls91{letter-spacing:0.960000px;}
.ls7{letter-spacing:1.008000px;}
.ls24{letter-spacing:1.080000px;}
.ls95{letter-spacing:1.104000px;}
.ls2f{letter-spacing:1.152000px;}
.ls42{letter-spacing:1.224000px;}
.ls20{letter-spacing:1.296000px;}
.ls22{letter-spacing:1.368000px;}
.lse{letter-spacing:1.440000px;}
.ls4f{letter-spacing:1.512000px;}
.ls25{letter-spacing:1.584000px;}
.ls7a{letter-spacing:1.872000px;}
.ls49{letter-spacing:2.304000px;}
.ls2b{letter-spacing:2.376000px;}
.ls2c{letter-spacing:2.448000px;}
.ls81{letter-spacing:2.496000px;}
.ls96{letter-spacing:2.544000px;}
.ls8b{letter-spacing:2.654400px;}
.ls2d{letter-spacing:2.664000px;}
.ls89{letter-spacing:2.688000px;}
.ls88{letter-spacing:2.736000px;}
.ls6c{letter-spacing:2.928000px;}
.ls8f{letter-spacing:3.072000px;}
.ls84{letter-spacing:3.168000px;}
.ls71{letter-spacing:3.180000px;}
.ls83{letter-spacing:3.216000px;}
.ls85{letter-spacing:3.264000px;}
.ls9a{letter-spacing:3.360000px;}
.ls77{letter-spacing:3.384000px;}
.ls6d{letter-spacing:3.408000px;}
.ls78{letter-spacing:3.456000px;}
.ls40{letter-spacing:3.528000px;}
.ls1d{letter-spacing:3.600000px;}
.ls6b{letter-spacing:3.660000px;}
.ls57{letter-spacing:4.032000px;}
.ls51{letter-spacing:4.104000px;}
.ls58{letter-spacing:4.176000px;}
.ls73{letter-spacing:4.200000px;}
.ls50{letter-spacing:4.248000px;}
.ls6a{letter-spacing:4.260000px;}
.ls1{letter-spacing:4.368000px;}
.ls3c{letter-spacing:4.464000px;}
.ls5b{letter-spacing:4.536000px;}
.ls80{letter-spacing:4.752000px;}
.ls4b{letter-spacing:4.800000px;}
.ls3a{letter-spacing:5.400000px;}
.ls56{letter-spacing:5.544000px;}
.ls55{letter-spacing:5.616000px;}
.ls46{letter-spacing:5.976000px;}
.ls61{letter-spacing:6.192000px;}
.ls62{letter-spacing:6.264000px;}
.ls31{letter-spacing:6.336000px;}
.ls48{letter-spacing:6.408000px;}
.ls3f{letter-spacing:6.624000px;}
.ls23{letter-spacing:6.696000px;}
.ls4d{letter-spacing:7.560000px;}
.ls3b{letter-spacing:7.632000px;}
.ls4e{letter-spacing:7.704000px;}
.ls65{letter-spacing:8.220000px;}
.ls3d{letter-spacing:8.280000px;}
.ls3e{letter-spacing:8.352000px;}
.ls17{letter-spacing:8.400000px;}
.ls11{letter-spacing:8.460000px;}
.ls52{letter-spacing:8.640000px;}
.lsb{letter-spacing:8.700000px;}
.ls19{letter-spacing:8.856000px;}
.ls18{letter-spacing:8.928000px;}
.ls26{letter-spacing:9.000000px;}
.ls7e{letter-spacing:9.072000px;}
.ls59{letter-spacing:9.144000px;}
.ls33{letter-spacing:9.216000px;}
.ls7b{letter-spacing:9.288000px;}
.ls28{letter-spacing:9.360000px;}
.ls29{letter-spacing:9.432000px;}
.ls34{letter-spacing:9.504000px;}
.ls1c{letter-spacing:9.576000px;}
.ls1b{letter-spacing:9.648000px;}
.ls72{letter-spacing:9.720000px;}
.ls79{letter-spacing:9.792000px;}
.ls41{letter-spacing:9.936000px;}
.ls21{letter-spacing:10.080000px;}
.ls5c{letter-spacing:10.152000px;}
.ls27{letter-spacing:10.296000px;}
.ls35{letter-spacing:10.656000px;}
.ls0{letter-spacing:10.740000px;}
.ls2{letter-spacing:10.757713px;}
.ls75{letter-spacing:11.016000px;}
.ls76{letter-spacing:11.160000px;}
.ls5e{letter-spacing:13.795500px;}
.ls4a{letter-spacing:13.796100px;}
.ls97{letter-spacing:17.472000px;}
.ls98{letter-spacing:18.360000px;}
.ls92{letter-spacing:42.144000px;}
.ls90{letter-spacing:51.840000px;}
.ls86{letter-spacing:52.512000px;}
.ls93{letter-spacing:59.904000px;}
.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;}
}
.ws73{word-spacing:-58.464000px;}
.ws24{word-spacing:-49.824000px;}
.ws3a{word-spacing:-49.608000px;}
.ws56{word-spacing:-49.464000px;}
.ws6a{word-spacing:-49.392000px;}
.ws3b{word-spacing:-49.320000px;}
.ws1f{word-spacing:-49.248000px;}
.ws72{word-spacing:-49.176000px;}
.ws47{word-spacing:-49.104000px;}
.ws28{word-spacing:-49.032000px;}
.ws71{word-spacing:-48.960000px;}
.ws29{word-spacing:-48.888000px;}
.ws51{word-spacing:-48.816000px;}
.ws3e{word-spacing:-48.744000px;}
.ws21{word-spacing:-48.672000px;}
.ws26{word-spacing:-48.600000px;}
.ws2{word-spacing:-48.528000px;}
.ws27{word-spacing:-48.456000px;}
.ws39{word-spacing:-48.384000px;}
.ws20{word-spacing:-48.312000px;}
.ws7d{word-spacing:-48.240000px;}
.ws2f{word-spacing:-48.168000px;}
.ws49{word-spacing:-48.096000px;}
.ws4b{word-spacing:-48.024000px;}
.ws4c{word-spacing:-47.952000px;}
.ws70{word-spacing:-47.880000px;}
.ws1e{word-spacing:-47.808000px;}
.ws48{word-spacing:-47.736000px;}
.ws74{word-spacing:-47.664000px;}
.ws67{word-spacing:-40.500000px;}
.ws13{word-spacing:-40.440000px;}
.ws12{word-spacing:-36.900000px;}
.ws81{word-spacing:-32.592000px;}
.ws3{word-spacing:-32.352000px;}
.ws82{word-spacing:-32.112000px;}
.ws80{word-spacing:-31.872000px;}
.ws8d{word-spacing:-31.824000px;}
.ws8c{word-spacing:-29.952000px;}
.ws87{word-spacing:-26.256000px;}
.ws89{word-spacing:-25.920000px;}
.ws15{word-spacing:-25.320000px;}
.ws8b{word-spacing:-21.072000px;}
.ws38{word-spacing:-20.952000px;}
.ws30{word-spacing:-20.664000px;}
.ws2a{word-spacing:-20.592000px;}
.ws7f{word-spacing:-20.520000px;}
.ws1c{word-spacing:-20.460000px;}
.ws7c{word-spacing:-20.304000px;}
.ws1d{word-spacing:-20.232000px;}
.ws7b{word-spacing:-20.160000px;}
.ws5a{word-spacing:-20.088000px;}
.ws4a{word-spacing:-19.656000px;}
.ws50{word-spacing:-19.296000px;}
.ws55{word-spacing:-18.360000px;}
.ws1{word-spacing:-18.240000px;}
.ws25{word-spacing:-17.784000px;}
.ws14{word-spacing:-16.860000px;}
.ws5c{word-spacing:-14.212800px;}
.ws16{word-spacing:-14.162400px;}
.ws5b{word-spacing:-14.061600px;}
.ws57{word-spacing:-14.011200px;}
.ws6f{word-spacing:-13.910400px;}
.ws60{word-spacing:-13.507200px;}
.ws3f{word-spacing:-13.488000px;}
.ws5f{word-spacing:-11.382000px;}
.ws6e{word-spacing:-11.160000px;}
.ws6d{word-spacing:-11.016000px;}
.ws75{word-spacing:-10.080000px;}
.ws90{word-spacing:-9.180000px;}
.ws8e{word-spacing:-8.736000px;}
.ws19{word-spacing:-8.460000px;}
.ws61{word-spacing:-8.400000px;}
.ws44{word-spacing:-4.800000px;}
.ws6b{word-spacing:-4.200000px;}
.ws8f{word-spacing:-3.360000px;}
.ws84{word-spacing:-2.654400px;}
.wsb{word-spacing:-1.440000px;}
.ws2b{word-spacing:-1.368000px;}
.ws3c{word-spacing:-1.224000px;}
.ws32{word-spacing:-1.152000px;}
.ws2c{word-spacing:-1.080000px;}
.wsf{word-spacing:-1.008000px;}
.ws58{word-spacing:-0.936000px;}
.wsc{word-spacing:-0.864000px;}
.ws4d{word-spacing:-0.792000px;}
.ws9{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.648000px;}
.ws11{word-spacing:-0.576000px;}
.ws10{word-spacing:-0.504000px;}
.ws6{word-spacing:-0.480000px;}
.ws35{word-spacing:-0.432000px;}
.wsd{word-spacing:-0.360000px;}
.ws92{word-spacing:-0.300000px;}
.ws40{word-spacing:-0.288000px;}
.ws43{word-spacing:-0.252000px;}
.ws65{word-spacing:-0.240000px;}
.ws1a{word-spacing:-0.216000px;}
.ws22{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:0.072000px;}
.ws53{word-spacing:0.144000px;}
.ws1b{word-spacing:0.216000px;}
.ws8{word-spacing:0.240000px;}
.ws18{word-spacing:0.288000px;}
.ws91{word-spacing:0.300000px;}
.ws36{word-spacing:0.360000px;}
.ws7{word-spacing:0.420000px;}
.ws34{word-spacing:0.432000px;}
.ws85{word-spacing:0.480000px;}
.ws4e{word-spacing:0.504000px;}
.ws4f{word-spacing:0.576000px;}
.ws6c{word-spacing:0.600000px;}
.ws59{word-spacing:0.648000px;}
.ws2d{word-spacing:0.720000px;}
.ws3d{word-spacing:0.792000px;}
.ws37{word-spacing:0.864000px;}
.ws63{word-spacing:0.936000px;}
.ws23{word-spacing:1.080000px;}
.ws62{word-spacing:1.152000px;}
.ws64{word-spacing:1.296000px;}
.ws83{word-spacing:1.392000px;}
.ws86{word-spacing:1.632000px;}
.ws5{word-spacing:1.800000px;}
.ws45{word-spacing:1.872000px;}
.ws68{word-spacing:2.088000px;}
.ws88{word-spacing:2.112000px;}
.ws78{word-spacing:2.304000px;}
.ws54{word-spacing:2.340000px;}
.ws7e{word-spacing:2.376000px;}
.ws33{word-spacing:2.808000px;}
.ws69{word-spacing:3.360000px;}
.ws46{word-spacing:3.408000px;}
.ws76{word-spacing:3.672000px;}
.ws42{word-spacing:4.104000px;}
.ws52{word-spacing:4.680000px;}
.ws8a{word-spacing:4.800000px;}
.ws77{word-spacing:5.040000px;}
.ws2e{word-spacing:5.112000px;}
.ws31{word-spacing:5.544000px;}
.ws41{word-spacing:5.688000px;}
.ws5d{word-spacing:6.984000px;}
.ws79{word-spacing:7.200000px;}
.ws7a{word-spacing:7.704000px;}
.ws0{word-spacing:8.400000px;}
.ws5e{word-spacing:10.152000px;}
.ws66{word-spacing:511.980000px;}
._0{margin-left:-940.440000px;}
._13{margin-left:-19.824000px;}
._19{margin-left:-18.288000px;}
._16{margin-left:-13.776000px;}
._14{margin-left:-12.444000px;}
._17{margin-left:-11.304000px;}
._18{margin-left:-10.008000px;}
._10{margin-left:-8.700000px;}
._c{margin-left:-7.608000px;}
._1{margin-left:-5.940000px;}
._f{margin-left:-4.452000px;}
._7{margin-left:-2.880000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._6{width:3.000000px;}
._4{width:4.200000px;}
._a{width:5.628000px;}
._11{width:7.200000px;}
._5{width:8.520000px;}
._9{width:10.236000px;}
._8{width:11.244000px;}
._b{width:12.252000px;}
._15{width:13.796100px;}
._1b{width:15.420000px;}
._1a{width:22.380000px;}
._d{width:31.645500px;}
._12{width:40.248000px;}
._e{width:201.540000px;}
.fc1{color:rgb(17,16,36);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs7{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs4{font-size:430.504200px;}
.y0{bottom:0.000000px;}
.y1e{bottom:93.257850px;}
.y1{bottom:93.260700px;}
.y42{bottom:138.257550px;}
.yb0{bottom:138.257700px;}
.y8b{bottom:138.257850px;}
.y1d{bottom:138.260700px;}
.yd5{bottom:138.260850px;}
.y158{bottom:138.261000px;}
.yfc{bottom:138.261150px;}
.y246{bottom:139.370700px;}
.y2f7{bottom:139.380000px;}
.y2c6{bottom:139.457850px;}
.y1fe{bottom:141.124800px;}
.y1d8{bottom:142.464900px;}
.y268{bottom:142.465050px;}
.y293{bottom:142.465200px;}
.y222{bottom:142.468200px;}
.y66{bottom:143.039850px;}
.y121{bottom:143.591850px;}
.y192{bottom:153.257700px;}
.y157{bottom:153.261000px;}
.yfb{bottom:153.261150px;}
.y2c5{bottom:154.913850px;}
.y41{bottom:157.465050px;}
.yaf{bottom:157.465200px;}
.y142{bottom:157.465350px;}
.y1c{bottom:157.468200px;}
.yd4{bottom:157.468350px;}
.y2f6{bottom:158.580000px;}
.y1d7{bottom:160.757400px;}
.y8a{bottom:160.757850px;}
.y245{bottom:162.464700px;}
.y1fd{bottom:163.930800px;}
.y65{bottom:165.539850px;}
.y120{bottom:165.947850px;}
.y191{bottom:168.257700px;}
.y156{bottom:168.261000px;}
.yfa{bottom:168.261150px;}
.y2c4{bottom:170.369850px;}
.y40{bottom:175.757550px;}
.y1b1{bottom:175.757700px;}
.yd3{bottom:175.760850px;}
.y2f5{bottom:177.780000px;}
.y292{bottom:179.135850px;}
.y1d6{bottom:179.964900px;}
.yae{bottom:179.965200px;}
.y89{bottom:183.257850px;}
.y221{bottom:183.260700px;}
.y155{bottom:183.261000px;}
.yf9{bottom:183.261150px;}
.y267{bottom:185.393550px;}
.y244{bottom:185.558700px;}
.y2c3{bottom:185.825850px;}
.y1fc{bottom:186.736800px;}
.y190{bottom:187.465200px;}
.y64{bottom:188.039850px;}
.y11f{bottom:188.303850px;}
.y3f{bottom:190.757550px;}
.y1b0{bottom:190.757700px;}
.y291{bottom:194.279850px;}
.yd2{bottom:194.968350px;}
.y2f4{bottom:196.980000px;}
.y154{bottom:198.261000px;}
.yf8{bottom:198.261150px;}
.y1b{bottom:199.529250px;}
.y141{bottom:199.763850px;}
.y176{bottom:200.870850px;}
.y2c2{bottom:201.281850px;}
.y18f{bottom:205.757700px;}
.y88{bottom:205.757850px;}
.y220{bottom:205.760700px;}
.y266{bottom:208.487550px;}
.y243{bottom:208.652700px;}
.y1fb{bottom:209.542800px;}
.y290{bottom:209.579850px;}
.y3e{bottom:209.965050px;}
.y1af{bottom:209.965200px;}
.y63{bottom:210.539850px;}
.y11e{bottom:210.659850px;}
.y2f3{bottom:216.180000px;}
.y2c1{bottom:216.737850px;}
.y153{bottom:217.468500px;}
.yf7{bottom:217.468650px;}
.yad{bottom:220.007700px;}
.y18e{bottom:220.757700px;}
.y140{bottom:222.407850px;}
.y1a{bottom:222.479250px;}
.y175{bottom:222.776850px;}
.y28f{bottom:224.879850px;}
.y1d5{bottom:227.697000px;}
.y1ae{bottom:228.257700px;}
.y87{bottom:228.257850px;}
.y21f{bottom:228.260700px;}
.y265{bottom:231.581550px;}
.y242{bottom:231.746700px;}
.y2c0{bottom:232.193850px;}
.y1fa{bottom:232.348800px;}
.y11d{bottom:233.015850px;}
.y62{bottom:233.039850px;}
.y2f2{bottom:235.380000px;}
.y152{bottom:235.761000px;}
.yf6{bottom:235.761150px;}
.yd1{bottom:238.190850px;}
.y18d{bottom:239.965200px;}
.y28e{bottom:240.179850px;}
.yac{bottom:242.057700px;}
.y1ad{bottom:243.257700px;}
.y174{bottom:244.682850px;}
.y13f{bottom:245.051850px;}
.y19{bottom:245.429250px;}
.y1d4{bottom:245.997000px;}
.y2bf{bottom:247.649850px;}
.y86{bottom:250.757850px;}
.y21e{bottom:250.760700px;}
.y151{bottom:250.761000px;}
.y3d{bottom:254.279550px;}
.y2f1{bottom:254.580000px;}
.y264{bottom:254.675550px;}
.y241{bottom:254.840700px;}
.yf5{bottom:254.968650px;}
.y1f9{bottom:255.154800px;}
.y11c{bottom:255.371850px;}
.y28d{bottom:255.479850px;}
.y61{bottom:255.539850px;}
.yd0{bottom:260.384850px;}
.y1ac{bottom:262.465200px;}
.y2be{bottom:263.105850px;}
.yab{bottom:264.107700px;}
.y1d3{bottom:264.297000px;}
.y173{bottom:266.588850px;}
.y13e{bottom:267.695850px;}
.y18{bottom:268.379250px;}
.y150{bottom:269.968500px;}
.y28c{bottom:270.779850px;}
.y85{bottom:273.257850px;}
.y21d{bottom:273.260700px;}
.yf4{bottom:273.261150px;}
.y2f0{bottom:273.780000px;}
.y3c{bottom:276.635550px;}
.y11b{bottom:277.727850px;}
.y263{bottom:277.769550px;}
.y240{bottom:277.934700px;}
.y1f8{bottom:277.960800px;}
.y60{bottom:278.039850px;}
.y2bd{bottom:278.561850px;}
.ycf{bottom:282.578850px;}
.y1d2{bottom:282.597000px;}
.y28b{bottom:286.079850px;}
.yaa{bottom:286.157700px;}
.y18c{bottom:287.207700px;}
.y172{bottom:288.494850px;}
.y13d{bottom:290.339850px;}
.y17{bottom:291.329250px;}
.yf3{bottom:292.468650px;}
.y2ef{bottom:292.980000px;}
.y2bc{bottom:294.017850px;}
.y84{bottom:295.757850px;}
.y21c{bottom:295.760700px;}
.y3b{bottom:298.991550px;}
.y11a{bottom:300.083850px;}
.y5f{bottom:300.539850px;}
.y1f7{bottom:300.766800px;}
.y262{bottom:300.863550px;}
.y1d1{bottom:300.897000px;}
.y23f{bottom:301.028700px;}
.y28a{bottom:301.379850px;}
.yce{bottom:304.772850px;}
.y1ab{bottom:306.125700px;}
.ya9{bottom:308.207700px;}
.y18b{bottom:309.257700px;}
.y2bb{bottom:309.473850px;}
.y171{bottom:310.400850px;}
.y2ee{bottom:312.180000px;}
.y13c{bottom:312.983850px;}
.y16{bottom:314.279250px;}
.y289{bottom:316.679850px;}
.y83{bottom:318.257850px;}
.y21b{bottom:318.260700px;}
.y1d0{bottom:319.197000px;}
.y3a{bottom:321.347550px;}
.y119{bottom:322.439850px;}
.y5e{bottom:323.039850px;}
.y1f6{bottom:323.572800px;}
.y261{bottom:323.957550px;}
.y23e{bottom:324.122700px;}
.y2ba{bottom:324.929850px;}
.ycd{bottom:326.966850px;}
.y1aa{bottom:328.031700px;}
.ya8{bottom:330.257700px;}
.y18a{bottom:331.307700px;}
.y288{bottom:331.979850px;}
.y170{bottom:332.306850px;}
.y13b{bottom:335.627850px;}
.yf2{bottom:335.643150px;}
.y313{bottom:337.007850px;}
.y15{bottom:337.229250px;}
.y1cf{bottom:337.497000px;}
.y2ed{bottom:337.619850px;}
.y2b9{bottom:340.385850px;}
.y82{bottom:340.757850px;}
.y21a{bottom:340.760700px;}
.y39{bottom:343.703550px;}
.y118{bottom:344.795850px;}
.y5d{bottom:345.539850px;}
.y1f5{bottom:346.378800px;}
.y260{bottom:347.057550px;}
.y23d{bottom:347.216700px;}
.y287{bottom:347.279850px;}
.ycc{bottom:349.184850px;}
.y1a9{bottom:349.937700px;}
.ya7{bottom:352.307700px;}
.y189{bottom:353.357700px;}
.y16f{bottom:354.212850px;}
.y312{bottom:355.757850px;}
.y1ce{bottom:355.797000px;}
.y2b8{bottom:355.985850px;}
.yf1{bottom:357.549150px;}
.y13a{bottom:358.271850px;}
.y14{bottom:360.179250px;}
.y286{bottom:362.579850px;}
.y81{bottom:363.257850px;}
.y219{bottom:363.260700px;}
.y38{bottom:366.059550px;}
.y117{bottom:367.151850px;}
.y5c{bottom:368.039850px;}
.y1f4{bottom:369.184800px;}
.y23c{bottom:370.310700px;}
.ycb{bottom:371.378850px;}
.y2b7{bottom:371.585850px;}
.y1a8{bottom:372.131700px;}
.ya6{bottom:374.357700px;}
.y311{bottom:374.507850px;}
.y188{bottom:375.407700px;}
.y16e{bottom:376.118850px;}
.y285{bottom:377.879850px;}
.y1cd{bottom:378.522000px;}
.yf0{bottom:379.455150px;}
.y139{bottom:380.915850px;}
.y13{bottom:383.129250px;}
.y2ec{bottom:383.519850px;}
.y80{bottom:385.757850px;}
.y218{bottom:385.760700px;}
.y2b6{bottom:387.185850px;}
.y37{bottom:388.415550px;}
.y116{bottom:389.507850px;}
.y5b{bottom:390.539850px;}
.y1f3{bottom:391.990800px;}
.y284{bottom:393.179850px;}
.y310{bottom:393.257850px;}
.y25f{bottom:393.365550px;}
.y23b{bottom:393.404700px;}
.yca{bottom:393.572850px;}
.y1a7{bottom:394.325700px;}
.ya5{bottom:396.407700px;}
.y1cc{bottom:396.822000px;}
.y187{bottom:397.457700px;}
.y16d{bottom:398.024850px;}
.y2eb{bottom:398.975850px;}
.yef{bottom:401.343150px;}
.y2b5{bottom:402.785850px;}
.y138{bottom:403.559850px;}
.y12{bottom:406.079250px;}
.y7f{bottom:408.257850px;}
.y217{bottom:408.260700px;}
.y283{bottom:408.479850px;}
.y36{bottom:410.771550px;}
.y115{bottom:411.863850px;}
.y5a{bottom:413.039850px;}
.y2ea{bottom:414.431850px;}
.y1f2{bottom:414.796800px;}
.y1cb{bottom:415.122000px;}
.yc9{bottom:415.766850px;}
.y25e{bottom:416.459550px;}
.y23a{bottom:416.498700px;}
.y1a6{bottom:416.519700px;}
.y2b4{bottom:418.241850px;}
.ya4{bottom:418.457700px;}
.y186{bottom:419.507700px;}
.y16c{bottom:419.930850px;}
.yee{bottom:423.249150px;}
.y30f{bottom:423.257850px;}
.y282{bottom:423.779850px;}
.y137{bottom:426.203850px;}
.y11{bottom:429.029250px;}
.y2e9{bottom:429.887850px;}
.y7e{bottom:430.757850px;}
.y216{bottom:430.760700px;}
.y35{bottom:433.127550px;}
.y1ca{bottom:433.422000px;}
.y2b3{bottom:433.697850px;}
.y114{bottom:434.219850px;}
.y59{bottom:435.539850px;}
.y1f1{bottom:437.602800px;}
.yc8{bottom:438.098700px;}
.y1a5{bottom:438.713700px;}
.y281{bottom:439.079850px;}
.y25d{bottom:439.553550px;}
.y239{bottom:439.592700px;}
.ya3{bottom:440.507700px;}
.y185{bottom:441.557700px;}
.y16b{bottom:441.836850px;}
.yed{bottom:445.155150px;}
.y2e8{bottom:445.331850px;}
.y136{bottom:448.847850px;}
.y2b2{bottom:449.153850px;}
.y1c9{bottom:451.722000px;}
.y10{bottom:451.979250px;}
.y7d{bottom:453.257850px;}
.y215{bottom:453.260700px;}
.y280{bottom:454.379850px;}
.y34{bottom:455.483550px;}
.y113{bottom:456.575850px;}
.y58{bottom:458.039850px;}
.yc7{bottom:460.292700px;}
.y1f0{bottom:460.408800px;}
.y2e7{bottom:460.787850px;}
.y1a4{bottom:460.937700px;}
.ya2{bottom:462.557700px;}
.y25c{bottom:462.647550px;}
.y238{bottom:462.686700px;}
.y184{bottom:463.607700px;}
.y16a{bottom:463.742850px;}
.y30e{bottom:464.507850px;}
.y2b1{bottom:464.609850px;}
.yec{bottom:467.061150px;}
.y27f{bottom:469.679850px;}
.y1c8{bottom:470.022000px;}
.y135{bottom:471.491850px;}
.yf{bottom:474.929250px;}
.y7c{bottom:475.757850px;}
.y214{bottom:475.760700px;}
.y2e6{bottom:476.243850px;}
.y33{bottom:477.839550px;}
.y112{bottom:478.931850px;}
.y2b0{bottom:480.065850px;}
.y57{bottom:480.539850px;}
.yc6{bottom:482.486700px;}
.y1a3{bottom:483.131700px;}
.y1ef{bottom:483.214800px;}
.y30d{bottom:483.257850px;}
.ya1{bottom:484.607700px;}
.y27e{bottom:484.979850px;}
.y169{bottom:485.648850px;}
.y183{bottom:485.657700px;}
.y25b{bottom:485.741550px;}
.y237{bottom:485.780700px;}
.y1c7{bottom:488.322000px;}
.yeb{bottom:488.937150px;}
.y2e5{bottom:491.699850px;}
.y134{bottom:494.135850px;}
.y2af{bottom:495.521850px;}
.ye{bottom:497.879250px;}
.y7b{bottom:498.257850px;}
.y213{bottom:498.260700px;}
.y32{bottom:500.195550px;}
.y27d{bottom:500.279850px;}
.y111{bottom:501.287850px;}
.y30c{bottom:502.007850px;}
.y56{bottom:503.039850px;}
.yc5{bottom:504.680700px;}
.y1a2{bottom:505.325700px;}
.y1ee{bottom:506.020800px;}
.y1c6{bottom:506.622000px;}
.ya0{bottom:506.657700px;}
.y2e4{bottom:507.155850px;}
.y168{bottom:507.554850px;}
.y182{bottom:507.707700px;}
.y25a{bottom:508.835550px;}
.y236{bottom:508.874700px;}
.yea{bottom:510.843150px;}
.y2ae{bottom:510.977850px;}
.y27c{bottom:515.579850px;}
.y133{bottom:516.779850px;}
.y7a{bottom:520.757850px;}
.y212{bottom:520.760700px;}
.yd{bottom:520.829250px;}
.y31{bottom:522.551550px;}
.y2e3{bottom:522.599850px;}
.y110{bottom:523.643850px;}
.y1c5{bottom:524.922000px;}
.y55{bottom:524.945850px;}
.y2ad{bottom:526.433850px;}
.yc4{bottom:526.874700px;}
.y1a1{bottom:527.519700px;}
.y9f{bottom:528.707700px;}
.y1ed{bottom:528.826800px;}
.y167{bottom:529.394700px;}
.y181{bottom:529.757850px;}
.y27b{bottom:530.879850px;}
.y259{bottom:531.929550px;}
.y235{bottom:531.968700px;}
.ye9{bottom:532.749150px;}
.y2e2{bottom:538.055850px;}
.y132{bottom:539.423850px;}
.y30b{bottom:539.507850px;}
.y2ac{bottom:541.889850px;}
.y1c4{bottom:543.222000px;}
.y79{bottom:543.257850px;}
.y211{bottom:543.260700px;}
.yc{bottom:543.779250px;}
.y30{bottom:544.895550px;}
.y10f{bottom:545.999850px;}
.y27a{bottom:546.179850px;}
.y54{bottom:546.851850px;}
.yc3{bottom:549.068700px;}
.y1a0{bottom:549.713700px;}
.y9e{bottom:550.757700px;}
.y166{bottom:551.300700px;}
.y1ec{bottom:551.632800px;}
.y180{bottom:551.807850px;}
.y2e1{bottom:553.511850px;}
.ye8{bottom:554.655150px;}
.y258{bottom:555.023550px;}
.y234{bottom:555.062700px;}
.y2ab{bottom:557.345850px;}
.y30a{bottom:558.257850px;}
.y279{bottom:561.479850px;}
.y131{bottom:562.067850px;}
.y78{bottom:565.757850px;}
.y210{bottom:565.760700px;}
.y1c3{bottom:565.947000px;}
.yb{bottom:566.729250px;}
.y2f{bottom:567.251550px;}
.y10e{bottom:568.355850px;}
.y53{bottom:568.757850px;}
.y2e0{bottom:568.967850px;}
.yc2{bottom:571.262700px;}
.y19f{bottom:571.985700px;}
.y2aa{bottom:572.801850px;}
.y9d{bottom:572.807700px;}
.y165{bottom:573.206700px;}
.y17f{bottom:573.857850px;}
.y1eb{bottom:574.438800px;}
.ye7{bottom:576.458850px;}
.y309{bottom:577.007850px;}
.y257{bottom:578.117550px;}
.y233{bottom:578.156700px;}
.y278{bottom:583.157700px;}
.y2df{bottom:584.423850px;}
.y130{bottom:584.711850px;}
.y77{bottom:588.257850px;}
.y20f{bottom:588.260700px;}
.y2e{bottom:589.607550px;}
.ya{bottom:589.679250px;}
.y52{bottom:590.657850px;}
.y10d{bottom:590.711850px;}
.yc1{bottom:593.456700px;}
.y19e{bottom:594.179700px;}
.y9c{bottom:594.857700px;}
.y164{bottom:595.112700px;}
.y308{bottom:595.757850px;}
.y17e{bottom:595.907850px;}
.y1ea{bottom:597.244800px;}
.ye6{bottom:598.364850px;}
.y2de{bottom:599.867850px;}
.y256{bottom:601.211550px;}
.y232{bottom:601.250700px;}
.y1c2{bottom:603.557550px;}
.y2a9{bottom:603.557850px;}
.y12f{bottom:607.355850px;}
.y76{bottom:610.757850px;}
.y20e{bottom:610.760700px;}
.y2d{bottom:611.957550px;}
.y8{bottom:612.629250px;}
.y10c{bottom:613.067850px;}
.y307{bottom:614.507850px;}
.y2dd{bottom:615.323850px;}
.yc0{bottom:615.650700px;}
.y19d{bottom:616.373700px;}
.y9b{bottom:616.949850px;}
.y163{bottom:617.018700px;}
.y17d{bottom:617.957850px;}
.y2a8{bottom:618.857850px;}
.ye5{bottom:620.270850px;}
.y255{bottom:624.305550px;}
.y231{bottom:624.344700px;}
.y1c1{bottom:625.157550px;}
.y277{bottom:628.673850px;}
.y12e{bottom:629.999850px;}
.y2dc{bottom:630.779850px;}
.y75{bottom:633.257850px;}
.y20d{bottom:633.260700px;}
.y2a7{bottom:634.157850px;}
.y2c{bottom:634.307550px;}
.y51{bottom:634.451850px;}
.y10b{bottom:635.423850px;}
.y9{bottom:635.579250px;}
.ybf{bottom:637.844700px;}
.y19c{bottom:638.567700px;}
.y162{bottom:638.924700px;}
.y9a{bottom:639.143850px;}
.y17c{bottom:640.007850px;}
.ye4{bottom:642.176850px;}
.y1e9{bottom:643.304250px;}
.y2db{bottom:646.235850px;}
.y1c0{bottom:646.757550px;}
.y254{bottom:647.399550px;}
.y230{bottom:647.438700px;}
.y2a6{bottom:649.457850px;}
.y276{bottom:651.479850px;}
.y306{bottom:652.007850px;}
.y12d{bottom:652.643850px;}
.y14f{bottom:655.611000px;}
.y74{bottom:655.757850px;}
.y20c{bottom:655.760700px;}
.y50{bottom:656.951850px;}
.y10a{bottom:657.779850px;}
.ybe{bottom:660.038700px;}
.y19b{bottom:660.761700px;}
.y161{bottom:660.830700px;}
.y99{bottom:661.337850px;}
.y2da{bottom:661.691850px;}
.y17b{bottom:662.057850px;}
.y1e8{bottom:662.504250px;}
.ye3{bottom:664.082850px;}
.y2a5{bottom:664.757850px;}
.y1bf{bottom:668.357550px;}
.y253{bottom:670.493550px;}
.y22f{bottom:670.532700px;}
.y305{bottom:670.757850px;}
.y275{bottom:674.285850px;}
.y12c{bottom:675.287850px;}
.y2d9{bottom:677.135850px;}
.y73{bottom:678.257850px;}
.y20b{bottom:678.260700px;}
.y2b{bottom:678.983550px;}
.y4f{bottom:679.451850px;}
.y2a4{bottom:680.057850px;}
.y109{bottom:680.135850px;}
.y1e7{bottom:681.704250px;}
.ybd{bottom:682.232700px;}
.y160{bottom:682.736700px;}
.y19a{bottom:682.955700px;}
.y98{bottom:683.531850px;}
.y17a{bottom:684.107850px;}
.ye2{bottom:685.988850px;}
.y304{bottom:689.507850px;}
.y1be{bottom:689.957550px;}
.y2d8{bottom:692.591850px;}
.y252{bottom:693.587550px;}
.y22e{bottom:693.626700px;}
.y2a3{bottom:695.357850px;}
.y274{bottom:697.091850px;}
.y12b{bottom:697.931850px;}
.y14e{bottom:700.299000px;}
.y72{bottom:700.757850px;}
.y20a{bottom:700.760700px;}
.y1e6{bottom:700.904250px;}
.y2a{bottom:701.339550px;}
.y4e{bottom:701.951850px;}
.y108{bottom:702.491850px;}
.ybc{bottom:704.426700px;}
.y15f{bottom:704.642700px;}
.y199{bottom:705.149700px;}
.y97{bottom:705.725850px;}
.y179{bottom:706.157850px;}
.ye1{bottom:707.894850px;}
.y2d7{bottom:708.047850px;}
.y303{bottom:708.257850px;}
.y2a2{bottom:710.657850px;}
.y1bd{bottom:711.557550px;}
.y251{bottom:716.681550px;}
.y22d{bottom:716.720700px;}
.y273{bottom:719.897850px;}
.y1e5{bottom:720.104250px;}
.y12a{bottom:720.575850px;}
.y14d{bottom:722.655000px;}
.y71{bottom:723.257850px;}
.y209{bottom:723.260700px;}
.y2d6{bottom:723.503850px;}
.y29{bottom:723.695550px;}
.y4d{bottom:724.451850px;}
.y107{bottom:724.847850px;}
.y2a1{bottom:725.957850px;}
.y7{bottom:726.479250px;}
.y15e{bottom:726.548700px;}
.ybb{bottom:726.620700px;}
.y302{bottom:727.007850px;}
.y198{bottom:727.343700px;}
.y96{bottom:727.919850px;}
.y178{bottom:728.207850px;}
.ye0{bottom:729.800850px;}
.y1bc{bottom:733.157550px;}
.y2d5{bottom:738.959850px;}
.y1e4{bottom:739.304250px;}
.y250{bottom:739.775550px;}
.y22c{bottom:739.814700px;}
.y2a0{bottom:741.257850px;}
.y272{bottom:742.703850px;}
.y129{bottom:743.219850px;}
.y14c{bottom:745.016850px;}
.y6{bottom:745.229250px;}
.y70{bottom:745.757850px;}
.y208{bottom:745.760700px;}
.y28{bottom:746.051550px;}
.y4c{bottom:746.951850px;}
.y106{bottom:747.203850px;}
.y15d{bottom:748.454700px;}
.yba{bottom:748.814700px;}
.y197{bottom:749.537700px;}
.y95{bottom:750.113850px;}
.y177{bottom:750.257850px;}
.ydf{bottom:751.706850px;}
.y2d4{bottom:754.403850px;}
.y1bb{bottom:754.757550px;}
.y29f{bottom:756.557850px;}
.y1e3{bottom:758.504250px;}
.y24f{bottom:762.869550px;}
.y22b{bottom:762.908700px;}
.y5{bottom:763.979250px;}
.y301{bottom:764.507850px;}
.y271{bottom:765.509850px;}
.y128{bottom:765.863850px;}
.y14b{bottom:767.372850px;}
.y6f{bottom:768.257850px;}
.y207{bottom:768.260700px;}
.y27{bottom:768.365850px;}
.y4b{bottom:769.451850px;}
.y105{bottom:769.559850px;}
.y2d3{bottom:769.859850px;}
.y15c{bottom:770.360700px;}
.yb9{bottom:771.008700px;}
.y196{bottom:771.731700px;}
.y29e{bottom:771.857850px;}
.y94{bottom:772.307850px;}
.yde{bottom:773.612850px;}
.y1ba{bottom:776.357550px;}
.y1e2{bottom:777.704250px;}
.y300{bottom:783.257850px;}
.y2d2{bottom:785.315850px;}
.y24e{bottom:785.963550px;}
.y22a{bottom:786.002700px;}
.y29d{bottom:787.157850px;}
.y270{bottom:788.315850px;}
.y127{bottom:788.507850px;}
.y14a{bottom:789.728850px;}
.y26{bottom:790.721850px;}
.y6e{bottom:790.757850px;}
.y206{bottom:790.760700px;}
.y104{bottom:791.915850px;}
.y4a{bottom:791.951850px;}
.y15b{bottom:792.716700px;}
.yb8{bottom:793.202700px;}
.y195{bottom:793.925700px;}
.y93{bottom:794.357850px;}
.ydd{bottom:795.518850px;}
.y1e1{bottom:796.904250px;}
.y1b9{bottom:797.957550px;}
.y2d1{bottom:800.771850px;}
.y2ff{bottom:802.007850px;}
.y29c{bottom:802.457850px;}
.y4{bottom:806.115000px;}
.y24d{bottom:809.093850px;}
.y229{bottom:809.096700px;}
.y126{bottom:811.007850px;}
.y26f{bottom:811.121850px;}
.y149{bottom:812.084850px;}
.y25{bottom:813.077850px;}
.y6d{bottom:813.257850px;}
.y205{bottom:813.260700px;}
.y103{bottom:814.271850px;}
.y49{bottom:814.451850px;}
.y15a{bottom:815.072700px;}
.yb7{bottom:815.396700px;}
.y1e0{bottom:816.104250px;}
.y194{bottom:816.119700px;}
.y2d0{bottom:816.227850px;}
.y92{bottom:816.407850px;}
.ydc{bottom:817.424850px;}
.y29b{bottom:817.757850px;}
.y1b8{bottom:819.557850px;}
.y2fe{bottom:820.757850px;}
.y3{bottom:828.615000px;}
.y2cf{bottom:831.671850px;}
.y24c{bottom:832.187850px;}
.y228{bottom:832.190700px;}
.y29a{bottom:833.057850px;}
.y125{bottom:833.507850px;}
.y26e{bottom:833.927850px;}
.y148{bottom:834.728850px;}
.y1df{bottom:835.304250px;}
.y24{bottom:835.433850px;}
.y6c{bottom:835.757850px;}
.y204{bottom:835.760700px;}
.y102{bottom:836.627850px;}
.y48{bottom:836.951850px;}
.y159{bottom:837.428700px;}
.yb6{bottom:837.590700px;}
.y193{bottom:838.313700px;}
.y91{bottom:838.457850px;}
.ydb{bottom:839.330850px;}
.y2fd{bottom:839.507850px;}
.y1b7{bottom:841.157850px;}
.y2ce{bottom:847.127850px;}
.y299{bottom:848.357850px;}
.y1de{bottom:854.504250px;}
.y24b{bottom:855.281850px;}
.y227{bottom:855.284700px;}
.y124{bottom:856.007850px;}
.y26d{bottom:856.733850px;}
.y147{bottom:857.372850px;}
.y23{bottom:857.789850px;}
.y6b{bottom:858.257850px;}
.y203{bottom:858.260700px;}
.y101{bottom:858.983850px;}
.y47{bottom:859.451850px;}
.yb5{bottom:859.784700px;}
.y90{bottom:860.507850px;}
.yda{bottom:861.236850px;}
.y2cd{bottom:862.583850px;}
.y1b6{bottom:862.757850px;}
.y298{bottom:863.657850px;}
.y1dd{bottom:873.704250px;}
.y2fc{bottom:877.007850px;}
.y2cc{bottom:878.039850px;}
.y24a{bottom:878.375850px;}
.y226{bottom:878.378700px;}
.y123{bottom:878.957850px;}
.y26c{bottom:879.539850px;}
.y146{bottom:880.016850px;}
.y22{bottom:880.145850px;}
.y6a{bottom:880.757850px;}
.y202{bottom:880.760700px;}
.y100{bottom:881.339850px;}
.y46{bottom:881.951850px;}
.yb4{bottom:881.978700px;}
.y8f{bottom:882.557850px;}
.yd9{bottom:883.142850px;}
.y1b5{bottom:884.357850px;}
.y1dc{bottom:892.904250px;}
.y2cb{bottom:893.495850px;}
.y297{bottom:894.257850px;}
.y2fb{bottom:895.757850px;}
.y2{bottom:895.760700px;}
.y249{bottom:901.469850px;}
.y225{bottom:901.472700px;}
.y122{bottom:901.907850px;}
.y26b{bottom:902.345850px;}
.y21{bottom:902.501850px;}
.y145{bottom:902.660850px;}
.y69{bottom:903.257850px;}
.y201{bottom:903.260700px;}
.yff{bottom:903.695850px;}
.yb3{bottom:904.172700px;}
.y45{bottom:904.451850px;}
.y8e{bottom:904.607850px;}
.yd8{bottom:905.048850px;}
.y1b4{bottom:905.957850px;}
.y2ca{bottom:908.939850px;}
.y296{bottom:909.557850px;}
.y1db{bottom:912.104250px;}
.y2fa{bottom:914.507850px;}
.y2c9{bottom:924.395850px;}
.y248{bottom:924.563850px;}
.y224{bottom:924.566700px;}
.y20{bottom:924.857850px;}
.y26a{bottom:925.151850px;}
.y144{bottom:925.466850px;}
.y68{bottom:925.757850px;}
.y200{bottom:925.760700px;}
.yfe{bottom:926.051850px;}
.yb2{bottom:926.366700px;}
.y8d{bottom:926.657850px;}
.y44{bottom:926.951850px;}
.yd7{bottom:926.954850px;}
.y1b3{bottom:927.557850px;}
.y1da{bottom:931.304250px;}
.y2f9{bottom:933.257850px;}
.y2c8{bottom:939.851850px;}
.y295{bottom:940.157850px;}
.y247{bottom:947.657850px;}
.y223{bottom:947.660700px;}
.y1f{bottom:947.807850px;}
.y269{bottom:947.957850px;}
.y143{bottom:948.110850px;}
.y67{bottom:948.257850px;}
.y1ff{bottom:948.260700px;}
.yfd{bottom:948.407850px;}
.yb1{bottom:948.560700px;}
.y8c{bottom:948.707850px;}
.y43{bottom:948.857850px;}
.yd6{bottom:948.860850px;}
.y1b2{bottom:949.157850px;}
.y2f8{bottom:952.007850px;}
.y1d9{bottom:954.029250px;}
.y2c7{bottom:955.307850px;}
.y294{bottom:955.457850px;}
.h7{height:24.630908px;}
.he{height:30.313623px;}
.h17{height:39.888000px;}
.h8{height:40.757812px;}
.ha{height:41.396484px;}
.h16{height:43.761600px;}
.h11{height:49.860000px;}
.h4{height:50.580000px;}
.h2{height:50.947266px;}
.h5{height:61.136719px;}
.hb{height:61.184719px;}
.h9{height:61.303519px;}
.h14{height:66.243703px;}
.hc{height:66.387103px;}
.h15{height:66.554503px;}
.h13{height:66.555103px;}
.hd{height:66.555703px;}
.h10{height:66.627703px;}
.h12{height:66.820303px;}
.hf{height:66.964903px;}
.h3{height:101.894531px;}
.h6{height:301.352940px;}
.h0{height:1059.519000px;}
.h1{height:1059.750000px;}
.w1{width:741.000000px;}
.w0{width:741.259500px;}
.x0{left:0.000000px;}
.x5{left:88.759800px;}
.x7{left:97.234800px;}
.x6{left:103.641750px;}
.x2{left:112.500000px;}
.x9{left:120.975000px;}
.x4{left:127.381800px;}
.x3{left:153.289050px;}
.xb{left:156.799800px;}
.x8{left:271.909800px;}
.xa{left:295.650000px;}
.x1{left:635.390550px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.080000pt;}
.v4{vertical-align:17.599467pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:163.200000pt;}
.ls94{letter-spacing:-4.266667pt;}
.ls7d{letter-spacing:-3.264000pt;}
.ls12{letter-spacing:-3.146667pt;}
.ls36{letter-spacing:-2.496000pt;}
.ls2e{letter-spacing:-2.176000pt;}
.ls7f{letter-spacing:-2.112000pt;}
.ls6f{letter-spacing:-2.080000pt;}
.ls8e{letter-spacing:-1.877333pt;}
.ls6e{letter-spacing:-1.856000pt;}
.ls4c{letter-spacing:-1.664000pt;}
.ls8d{letter-spacing:-1.450667pt;}
.ls69{letter-spacing:-1.152000pt;}
.ls67{letter-spacing:-1.024000pt;}
.ls1f{letter-spacing:-0.960000pt;}
.ls5a{letter-spacing:-0.832000pt;}
.ls39{letter-spacing:-0.768000pt;}
.ls45{letter-spacing:-0.704000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls68{letter-spacing:-0.582400pt;}
.ls60{letter-spacing:-0.576000pt;}
.ls74{letter-spacing:-0.533333pt;}
.ls53{letter-spacing:-0.512000pt;}
.ls99{letter-spacing:-0.469333pt;}
.ls54{letter-spacing:-0.448000pt;}
.ls8c{letter-spacing:-0.426667pt;}
.ls37{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.373333pt;}
.ls38{letter-spacing:-0.320000pt;}
.ls9b{letter-spacing:-0.266667pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls7c{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls5f{letter-spacing:-0.134400pt;}
.ls44{letter-spacing:-0.128000pt;}
.ls63{letter-spacing:-0.089600pt;}
.lsf{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000533pt;}
.ls64{letter-spacing:0.044800pt;}
.ls70{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls66{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.224000pt;}
.ls32{letter-spacing:0.250667pt;}
.ls47{letter-spacing:0.256000pt;}
.ls9c{letter-spacing:0.266667pt;}
.ls87{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls8a{letter-spacing:0.341333pt;}
.ls30{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.512000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls43{letter-spacing:0.704000pt;}
.ls82{letter-spacing:0.725333pt;}
.ls5{letter-spacing:0.768000pt;}
.ls5d{letter-spacing:0.832000pt;}
.ls91{letter-spacing:0.853333pt;}
.ls7{letter-spacing:0.896000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls95{letter-spacing:0.981333pt;}
.ls2f{letter-spacing:1.024000pt;}
.ls42{letter-spacing:1.088000pt;}
.ls20{letter-spacing:1.152000pt;}
.ls22{letter-spacing:1.216000pt;}
.lse{letter-spacing:1.280000pt;}
.ls4f{letter-spacing:1.344000pt;}
.ls25{letter-spacing:1.408000pt;}
.ls7a{letter-spacing:1.664000pt;}
.ls49{letter-spacing:2.048000pt;}
.ls2b{letter-spacing:2.112000pt;}
.ls2c{letter-spacing:2.176000pt;}
.ls81{letter-spacing:2.218667pt;}
.ls96{letter-spacing:2.261333pt;}
.ls8b{letter-spacing:2.359467pt;}
.ls2d{letter-spacing:2.368000pt;}
.ls89{letter-spacing:2.389333pt;}
.ls88{letter-spacing:2.432000pt;}
.ls6c{letter-spacing:2.602667pt;}
.ls8f{letter-spacing:2.730667pt;}
.ls84{letter-spacing:2.816000pt;}
.ls71{letter-spacing:2.826667pt;}
.ls83{letter-spacing:2.858667pt;}
.ls85{letter-spacing:2.901333pt;}
.ls9a{letter-spacing:2.986667pt;}
.ls77{letter-spacing:3.008000pt;}
.ls6d{letter-spacing:3.029333pt;}
.ls78{letter-spacing:3.072000pt;}
.ls40{letter-spacing:3.136000pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls6b{letter-spacing:3.253333pt;}
.ls57{letter-spacing:3.584000pt;}
.ls51{letter-spacing:3.648000pt;}
.ls58{letter-spacing:3.712000pt;}
.ls73{letter-spacing:3.733333pt;}
.ls50{letter-spacing:3.776000pt;}
.ls6a{letter-spacing:3.786667pt;}
.ls1{letter-spacing:3.882667pt;}
.ls3c{letter-spacing:3.968000pt;}
.ls5b{letter-spacing:4.032000pt;}
.ls80{letter-spacing:4.224000pt;}
.ls4b{letter-spacing:4.266667pt;}
.ls3a{letter-spacing:4.800000pt;}
.ls56{letter-spacing:4.928000pt;}
.ls55{letter-spacing:4.992000pt;}
.ls46{letter-spacing:5.312000pt;}
.ls61{letter-spacing:5.504000pt;}
.ls62{letter-spacing:5.568000pt;}
.ls31{letter-spacing:5.632000pt;}
.ls48{letter-spacing:5.696000pt;}
.ls3f{letter-spacing:5.888000pt;}
.ls23{letter-spacing:5.952000pt;}
.ls4d{letter-spacing:6.720000pt;}
.ls3b{letter-spacing:6.784000pt;}
.ls4e{letter-spacing:6.848000pt;}
.ls65{letter-spacing:7.306667pt;}
.ls3d{letter-spacing:7.360000pt;}
.ls3e{letter-spacing:7.424000pt;}
.ls17{letter-spacing:7.466667pt;}
.ls11{letter-spacing:7.520000pt;}
.ls52{letter-spacing:7.680000pt;}
.lsb{letter-spacing:7.733333pt;}
.ls19{letter-spacing:7.872000pt;}
.ls18{letter-spacing:7.936000pt;}
.ls26{letter-spacing:8.000000pt;}
.ls7e{letter-spacing:8.064000pt;}
.ls59{letter-spacing:8.128000pt;}
.ls33{letter-spacing:8.192000pt;}
.ls7b{letter-spacing:8.256000pt;}
.ls28{letter-spacing:8.320000pt;}
.ls29{letter-spacing:8.384000pt;}
.ls34{letter-spacing:8.448000pt;}
.ls1c{letter-spacing:8.512000pt;}
.ls1b{letter-spacing:8.576000pt;}
.ls72{letter-spacing:8.640000pt;}
.ls79{letter-spacing:8.704000pt;}
.ls41{letter-spacing:8.832000pt;}
.ls21{letter-spacing:8.960000pt;}
.ls5c{letter-spacing:9.024000pt;}
.ls27{letter-spacing:9.152000pt;}
.ls35{letter-spacing:9.472000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls2{letter-spacing:9.562412pt;}
.ls75{letter-spacing:9.792000pt;}
.ls76{letter-spacing:9.920000pt;}
.ls5e{letter-spacing:12.262667pt;}
.ls4a{letter-spacing:12.263200pt;}
.ls97{letter-spacing:15.530667pt;}
.ls98{letter-spacing:16.320000pt;}
.ls92{letter-spacing:37.461333pt;}
.ls90{letter-spacing:46.080000pt;}
.ls86{letter-spacing:46.677333pt;}
.ls93{letter-spacing:53.248000pt;}
.ws73{word-spacing:-51.968000pt;}
.ws24{word-spacing:-44.288000pt;}
.ws3a{word-spacing:-44.096000pt;}
.ws56{word-spacing:-43.968000pt;}
.ws6a{word-spacing:-43.904000pt;}
.ws3b{word-spacing:-43.840000pt;}
.ws1f{word-spacing:-43.776000pt;}
.ws72{word-spacing:-43.712000pt;}
.ws47{word-spacing:-43.648000pt;}
.ws28{word-spacing:-43.584000pt;}
.ws71{word-spacing:-43.520000pt;}
.ws29{word-spacing:-43.456000pt;}
.ws51{word-spacing:-43.392000pt;}
.ws3e{word-spacing:-43.328000pt;}
.ws21{word-spacing:-43.264000pt;}
.ws26{word-spacing:-43.200000pt;}
.ws2{word-spacing:-43.136000pt;}
.ws27{word-spacing:-43.072000pt;}
.ws39{word-spacing:-43.008000pt;}
.ws20{word-spacing:-42.944000pt;}
.ws7d{word-spacing:-42.880000pt;}
.ws2f{word-spacing:-42.816000pt;}
.ws49{word-spacing:-42.752000pt;}
.ws4b{word-spacing:-42.688000pt;}
.ws4c{word-spacing:-42.624000pt;}
.ws70{word-spacing:-42.560000pt;}
.ws1e{word-spacing:-42.496000pt;}
.ws48{word-spacing:-42.432000pt;}
.ws74{word-spacing:-42.368000pt;}
.ws67{word-spacing:-36.000000pt;}
.ws13{word-spacing:-35.946667pt;}
.ws12{word-spacing:-32.800000pt;}
.ws81{word-spacing:-28.970667pt;}
.ws3{word-spacing:-28.757333pt;}
.ws82{word-spacing:-28.544000pt;}
.ws80{word-spacing:-28.330667pt;}
.ws8d{word-spacing:-28.288000pt;}
.ws8c{word-spacing:-26.624000pt;}
.ws87{word-spacing:-23.338667pt;}
.ws89{word-spacing:-23.040000pt;}
.ws15{word-spacing:-22.506667pt;}
.ws8b{word-spacing:-18.730667pt;}
.ws38{word-spacing:-18.624000pt;}
.ws30{word-spacing:-18.368000pt;}
.ws2a{word-spacing:-18.304000pt;}
.ws7f{word-spacing:-18.240000pt;}
.ws1c{word-spacing:-18.186667pt;}
.ws7c{word-spacing:-18.048000pt;}
.ws1d{word-spacing:-17.984000pt;}
.ws7b{word-spacing:-17.920000pt;}
.ws5a{word-spacing:-17.856000pt;}
.ws4a{word-spacing:-17.472000pt;}
.ws50{word-spacing:-17.152000pt;}
.ws55{word-spacing:-16.320000pt;}
.ws1{word-spacing:-16.213333pt;}
.ws25{word-spacing:-15.808000pt;}
.ws14{word-spacing:-14.986667pt;}
.ws5c{word-spacing:-12.633600pt;}
.ws16{word-spacing:-12.588800pt;}
.ws5b{word-spacing:-12.499200pt;}
.ws57{word-spacing:-12.454400pt;}
.ws6f{word-spacing:-12.364800pt;}
.ws60{word-spacing:-12.006400pt;}
.ws3f{word-spacing:-11.989333pt;}
.ws5f{word-spacing:-10.117333pt;}
.ws6e{word-spacing:-9.920000pt;}
.ws6d{word-spacing:-9.792000pt;}
.ws75{word-spacing:-8.960000pt;}
.ws90{word-spacing:-8.160000pt;}
.ws8e{word-spacing:-7.765333pt;}
.ws19{word-spacing:-7.520000pt;}
.ws61{word-spacing:-7.466667pt;}
.ws44{word-spacing:-4.266667pt;}
.ws6b{word-spacing:-3.733333pt;}
.ws8f{word-spacing:-2.986667pt;}
.ws84{word-spacing:-2.359467pt;}
.wsb{word-spacing:-1.280000pt;}
.ws2b{word-spacing:-1.216000pt;}
.ws3c{word-spacing:-1.088000pt;}
.ws32{word-spacing:-1.024000pt;}
.ws2c{word-spacing:-0.960000pt;}
.wsf{word-spacing:-0.896000pt;}
.ws58{word-spacing:-0.832000pt;}
.wsc{word-spacing:-0.768000pt;}
.ws4d{word-spacing:-0.704000pt;}
.ws9{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.576000pt;}
.ws11{word-spacing:-0.512000pt;}
.ws10{word-spacing:-0.448000pt;}
.ws6{word-spacing:-0.426667pt;}
.ws35{word-spacing:-0.384000pt;}
.wsd{word-spacing:-0.320000pt;}
.ws92{word-spacing:-0.266667pt;}
.ws40{word-spacing:-0.256000pt;}
.ws43{word-spacing:-0.224000pt;}
.ws65{word-spacing:-0.213333pt;}
.ws1a{word-spacing:-0.192000pt;}
.ws22{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:0.064000pt;}
.ws53{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.192000pt;}
.ws8{word-spacing:0.213333pt;}
.ws18{word-spacing:0.256000pt;}
.ws91{word-spacing:0.266667pt;}
.ws36{word-spacing:0.320000pt;}
.ws7{word-spacing:0.373333pt;}
.ws34{word-spacing:0.384000pt;}
.ws85{word-spacing:0.426667pt;}
.ws4e{word-spacing:0.448000pt;}
.ws4f{word-spacing:0.512000pt;}
.ws6c{word-spacing:0.533333pt;}
.ws59{word-spacing:0.576000pt;}
.ws2d{word-spacing:0.640000pt;}
.ws3d{word-spacing:0.704000pt;}
.ws37{word-spacing:0.768000pt;}
.ws63{word-spacing:0.832000pt;}
.ws23{word-spacing:0.960000pt;}
.ws62{word-spacing:1.024000pt;}
.ws64{word-spacing:1.152000pt;}
.ws83{word-spacing:1.237333pt;}
.ws86{word-spacing:1.450667pt;}
.ws5{word-spacing:1.600000pt;}
.ws45{word-spacing:1.664000pt;}
.ws68{word-spacing:1.856000pt;}
.ws88{word-spacing:1.877333pt;}
.ws78{word-spacing:2.048000pt;}
.ws54{word-spacing:2.080000pt;}
.ws7e{word-spacing:2.112000pt;}
.ws33{word-spacing:2.496000pt;}
.ws69{word-spacing:2.986667pt;}
.ws46{word-spacing:3.029333pt;}
.ws76{word-spacing:3.264000pt;}
.ws42{word-spacing:3.648000pt;}
.ws52{word-spacing:4.160000pt;}
.ws8a{word-spacing:4.266667pt;}
.ws77{word-spacing:4.480000pt;}
.ws2e{word-spacing:4.544000pt;}
.ws31{word-spacing:4.928000pt;}
.ws41{word-spacing:5.056000pt;}
.ws5d{word-spacing:6.208000pt;}
.ws79{word-spacing:6.400000pt;}
.ws7a{word-spacing:6.848000pt;}
.ws0{word-spacing:7.466667pt;}
.ws5e{word-spacing:9.024000pt;}
.ws66{word-spacing:455.093333pt;}
._0{margin-left:-835.946667pt;}
._13{margin-left:-17.621333pt;}
._19{margin-left:-16.256000pt;}
._16{margin-left:-12.245333pt;}
._14{margin-left:-11.061333pt;}
._17{margin-left:-10.048000pt;}
._18{margin-left:-8.896000pt;}
._10{margin-left:-7.733333pt;}
._c{margin-left:-6.762667pt;}
._1{margin-left:-5.280000pt;}
._f{margin-left:-3.957333pt;}
._7{margin-left:-2.560000pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._6{width:2.666667pt;}
._4{width:3.733333pt;}
._a{width:5.002667pt;}
._11{width:6.400000pt;}
._5{width:7.573333pt;}
._9{width:9.098667pt;}
._8{width:9.994667pt;}
._b{width:10.890667pt;}
._15{width:12.263200pt;}
._1b{width:13.706667pt;}
._1a{width:19.893333pt;}
._d{width:28.129333pt;}
._12{width:35.776000pt;}
._e{width:179.146667pt;}
.fs8{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs7{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs4{font-size:382.670400pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:82.895867pt;}
.y1{bottom:82.898400pt;}
.y42{bottom:122.895600pt;}
.yb0{bottom:122.895733pt;}
.y8b{bottom:122.895867pt;}
.y1d{bottom:122.898400pt;}
.yd5{bottom:122.898533pt;}
.y158{bottom:122.898667pt;}
.yfc{bottom:122.898800pt;}
.y246{bottom:123.885067pt;}
.y2f7{bottom:123.893333pt;}
.y2c6{bottom:123.962533pt;}
.y1fe{bottom:125.444267pt;}
.y1d8{bottom:126.635467pt;}
.y268{bottom:126.635600pt;}
.y293{bottom:126.635733pt;}
.y222{bottom:126.638400pt;}
.y66{bottom:127.146533pt;}
.y121{bottom:127.637200pt;}
.y192{bottom:136.229067pt;}
.y157{bottom:136.232000pt;}
.yfb{bottom:136.232133pt;}
.y2c5{bottom:137.701200pt;}
.y41{bottom:139.968933pt;}
.yaf{bottom:139.969067pt;}
.y142{bottom:139.969200pt;}
.y1c{bottom:139.971733pt;}
.yd4{bottom:139.971867pt;}
.y2f6{bottom:140.960000pt;}
.y1d7{bottom:142.895467pt;}
.y8a{bottom:142.895867pt;}
.y245{bottom:144.413067pt;}
.y1fd{bottom:145.716267pt;}
.y65{bottom:147.146533pt;}
.y120{bottom:147.509200pt;}
.y191{bottom:149.562400pt;}
.y156{bottom:149.565333pt;}
.yfa{bottom:149.565467pt;}
.y2c4{bottom:151.439867pt;}
.y40{bottom:156.228933pt;}
.y1b1{bottom:156.229067pt;}
.yd3{bottom:156.231867pt;}
.y2f5{bottom:158.026667pt;}
.y292{bottom:159.231867pt;}
.y1d6{bottom:159.968800pt;}
.yae{bottom:159.969067pt;}
.y89{bottom:162.895867pt;}
.y221{bottom:162.898400pt;}
.y155{bottom:162.898667pt;}
.yf9{bottom:162.898800pt;}
.y267{bottom:164.794267pt;}
.y244{bottom:164.941067pt;}
.y2c3{bottom:165.178533pt;}
.y1fc{bottom:165.988267pt;}
.y190{bottom:166.635733pt;}
.y64{bottom:167.146533pt;}
.y11f{bottom:167.381200pt;}
.y3f{bottom:169.562267pt;}
.y1b0{bottom:169.562400pt;}
.y291{bottom:172.693200pt;}
.yd2{bottom:173.305200pt;}
.y2f4{bottom:175.093333pt;}
.y154{bottom:176.232000pt;}
.yf8{bottom:176.232133pt;}
.y1b{bottom:177.359333pt;}
.y141{bottom:177.567867pt;}
.y176{bottom:178.551867pt;}
.y2c2{bottom:178.917200pt;}
.y18f{bottom:182.895733pt;}
.y88{bottom:182.895867pt;}
.y220{bottom:182.898400pt;}
.y266{bottom:185.322267pt;}
.y243{bottom:185.469067pt;}
.y1fb{bottom:186.260267pt;}
.y290{bottom:186.293200pt;}
.y3e{bottom:186.635600pt;}
.y1af{bottom:186.635733pt;}
.y63{bottom:187.146533pt;}
.y11e{bottom:187.253200pt;}
.y2f3{bottom:192.160000pt;}
.y2c1{bottom:192.655867pt;}
.y153{bottom:193.305333pt;}
.yf7{bottom:193.305467pt;}
.yad{bottom:195.562400pt;}
.y18e{bottom:196.229067pt;}
.y140{bottom:197.695867pt;}
.y1a{bottom:197.759333pt;}
.y175{bottom:198.023867pt;}
.y28f{bottom:199.893200pt;}
.y1d5{bottom:202.397333pt;}
.y1ae{bottom:202.895733pt;}
.y87{bottom:202.895867pt;}
.y21f{bottom:202.898400pt;}
.y265{bottom:205.850267pt;}
.y242{bottom:205.997067pt;}
.y2c0{bottom:206.394533pt;}
.y1fa{bottom:206.532267pt;}
.y11d{bottom:207.125200pt;}
.y62{bottom:207.146533pt;}
.y2f2{bottom:209.226667pt;}
.y152{bottom:209.565333pt;}
.yf6{bottom:209.565467pt;}
.yd1{bottom:211.725200pt;}
.y18d{bottom:213.302400pt;}
.y28e{bottom:213.493200pt;}
.yac{bottom:215.162400pt;}
.y1ad{bottom:216.229067pt;}
.y174{bottom:217.495867pt;}
.y13f{bottom:217.823867pt;}
.y19{bottom:218.159333pt;}
.y1d4{bottom:218.664000pt;}
.y2bf{bottom:220.133200pt;}
.y86{bottom:222.895867pt;}
.y21e{bottom:222.898400pt;}
.y151{bottom:222.898667pt;}
.y3d{bottom:226.026267pt;}
.y2f1{bottom:226.293333pt;}
.y264{bottom:226.378267pt;}
.y241{bottom:226.525067pt;}
.yf5{bottom:226.638800pt;}
.y1f9{bottom:226.804267pt;}
.y11c{bottom:226.997200pt;}
.y28d{bottom:227.093200pt;}
.y61{bottom:227.146533pt;}
.yd0{bottom:231.453200pt;}
.y1ac{bottom:233.302400pt;}
.y2be{bottom:233.871867pt;}
.yab{bottom:234.762400pt;}
.y1d3{bottom:234.930667pt;}
.y173{bottom:236.967867pt;}
.y13e{bottom:237.951867pt;}
.y18{bottom:238.559333pt;}
.y150{bottom:239.972000pt;}
.y28c{bottom:240.693200pt;}
.y85{bottom:242.895867pt;}
.y21d{bottom:242.898400pt;}
.yf4{bottom:242.898800pt;}
.y2f0{bottom:243.360000pt;}
.y3c{bottom:245.898267pt;}
.y11b{bottom:246.869200pt;}
.y263{bottom:246.906267pt;}
.y240{bottom:247.053067pt;}
.y1f8{bottom:247.076267pt;}
.y60{bottom:247.146533pt;}
.y2bd{bottom:247.610533pt;}
.ycf{bottom:251.181200pt;}
.y1d2{bottom:251.197333pt;}
.y28b{bottom:254.293200pt;}
.yaa{bottom:254.362400pt;}
.y18c{bottom:255.295733pt;}
.y172{bottom:256.439867pt;}
.y13d{bottom:258.079867pt;}
.y17{bottom:258.959333pt;}
.yf3{bottom:259.972133pt;}
.y2ef{bottom:260.426667pt;}
.y2bc{bottom:261.349200pt;}
.y84{bottom:262.895867pt;}
.y21c{bottom:262.898400pt;}
.y3b{bottom:265.770267pt;}
.y11a{bottom:266.741200pt;}
.y5f{bottom:267.146533pt;}
.y1f7{bottom:267.348267pt;}
.y262{bottom:267.434267pt;}
.y1d1{bottom:267.464000pt;}
.y23f{bottom:267.581067pt;}
.y28a{bottom:267.893200pt;}
.yce{bottom:270.909200pt;}
.y1ab{bottom:272.111733pt;}
.ya9{bottom:273.962400pt;}
.y18b{bottom:274.895733pt;}
.y2bb{bottom:275.087867pt;}
.y171{bottom:275.911867pt;}
.y2ee{bottom:277.493333pt;}
.y13c{bottom:278.207867pt;}
.y16{bottom:279.359333pt;}
.y289{bottom:281.493200pt;}
.y83{bottom:282.895867pt;}
.y21b{bottom:282.898400pt;}
.y1d0{bottom:283.730667pt;}
.y3a{bottom:285.642267pt;}
.y119{bottom:286.613200pt;}
.y5e{bottom:287.146533pt;}
.y1f6{bottom:287.620267pt;}
.y261{bottom:287.962267pt;}
.y23e{bottom:288.109067pt;}
.y2ba{bottom:288.826533pt;}
.ycd{bottom:290.637200pt;}
.y1aa{bottom:291.583733pt;}
.ya8{bottom:293.562400pt;}
.y18a{bottom:294.495733pt;}
.y288{bottom:295.093200pt;}
.y170{bottom:295.383867pt;}
.y13b{bottom:298.335867pt;}
.yf2{bottom:298.349467pt;}
.y313{bottom:299.562533pt;}
.y15{bottom:299.759333pt;}
.y1cf{bottom:299.997333pt;}
.y2ed{bottom:300.106533pt;}
.y2b9{bottom:302.565200pt;}
.y82{bottom:302.895867pt;}
.y21a{bottom:302.898400pt;}
.y39{bottom:305.514267pt;}
.y118{bottom:306.485200pt;}
.y5d{bottom:307.146533pt;}
.y1f5{bottom:307.892267pt;}
.y260{bottom:308.495600pt;}
.y23d{bottom:308.637067pt;}
.y287{bottom:308.693200pt;}
.ycc{bottom:310.386533pt;}
.y1a9{bottom:311.055733pt;}
.ya7{bottom:313.162400pt;}
.y189{bottom:314.095733pt;}
.y16f{bottom:314.855867pt;}
.y312{bottom:316.229200pt;}
.y1ce{bottom:316.264000pt;}
.y2b8{bottom:316.431867pt;}
.yf1{bottom:317.821467pt;}
.y13a{bottom:318.463867pt;}
.y14{bottom:320.159333pt;}
.y286{bottom:322.293200pt;}
.y81{bottom:322.895867pt;}
.y219{bottom:322.898400pt;}
.y38{bottom:325.386267pt;}
.y117{bottom:326.357200pt;}
.y5c{bottom:327.146533pt;}
.y1f4{bottom:328.164267pt;}
.y23c{bottom:329.165067pt;}
.ycb{bottom:330.114533pt;}
.y2b7{bottom:330.298533pt;}
.y1a8{bottom:330.783733pt;}
.ya6{bottom:332.762400pt;}
.y311{bottom:332.895867pt;}
.y188{bottom:333.695733pt;}
.y16e{bottom:334.327867pt;}
.y285{bottom:335.893200pt;}
.y1cd{bottom:336.464000pt;}
.yf0{bottom:337.293467pt;}
.y139{bottom:338.591867pt;}
.y13{bottom:340.559333pt;}
.y2ec{bottom:340.906533pt;}
.y80{bottom:342.895867pt;}
.y218{bottom:342.898400pt;}
.y2b6{bottom:344.165200pt;}
.y37{bottom:345.258267pt;}
.y116{bottom:346.229200pt;}
.y5b{bottom:347.146533pt;}
.y1f3{bottom:348.436267pt;}
.y284{bottom:349.493200pt;}
.y310{bottom:349.562533pt;}
.y25f{bottom:349.658267pt;}
.y23b{bottom:349.693067pt;}
.yca{bottom:349.842533pt;}
.y1a7{bottom:350.511733pt;}
.ya5{bottom:352.362400pt;}
.y1cc{bottom:352.730667pt;}
.y187{bottom:353.295733pt;}
.y16d{bottom:353.799867pt;}
.y2eb{bottom:354.645200pt;}
.yef{bottom:356.749467pt;}
.y2b5{bottom:358.031867pt;}
.y138{bottom:358.719867pt;}
.y12{bottom:360.959333pt;}
.y7f{bottom:362.895867pt;}
.y217{bottom:362.898400pt;}
.y283{bottom:363.093200pt;}
.y36{bottom:365.130267pt;}
.y115{bottom:366.101200pt;}
.y5a{bottom:367.146533pt;}
.y2ea{bottom:368.383867pt;}
.y1f2{bottom:368.708267pt;}
.y1cb{bottom:368.997333pt;}
.yc9{bottom:369.570533pt;}
.y25e{bottom:370.186267pt;}
.y23a{bottom:370.221067pt;}
.y1a6{bottom:370.239733pt;}
.y2b4{bottom:371.770533pt;}
.ya4{bottom:371.962400pt;}
.y186{bottom:372.895733pt;}
.y16c{bottom:373.271867pt;}
.yee{bottom:376.221467pt;}
.y30f{bottom:376.229200pt;}
.y282{bottom:376.693200pt;}
.y137{bottom:378.847867pt;}
.y11{bottom:381.359333pt;}
.y2e9{bottom:382.122533pt;}
.y7e{bottom:382.895867pt;}
.y216{bottom:382.898400pt;}
.y35{bottom:385.002267pt;}
.y1ca{bottom:385.264000pt;}
.y2b3{bottom:385.509200pt;}
.y114{bottom:385.973200pt;}
.y59{bottom:387.146533pt;}
.y1f1{bottom:388.980267pt;}
.yc8{bottom:389.421067pt;}
.y1a5{bottom:389.967733pt;}
.y281{bottom:390.293200pt;}
.y25d{bottom:390.714267pt;}
.y239{bottom:390.749067pt;}
.ya3{bottom:391.562400pt;}
.y185{bottom:392.495733pt;}
.y16b{bottom:392.743867pt;}
.yed{bottom:395.693467pt;}
.y2e8{bottom:395.850533pt;}
.y136{bottom:398.975867pt;}
.y2b2{bottom:399.247867pt;}
.y1c9{bottom:401.530667pt;}
.y10{bottom:401.759333pt;}
.y7d{bottom:402.895867pt;}
.y215{bottom:402.898400pt;}
.y280{bottom:403.893200pt;}
.y34{bottom:404.874267pt;}
.y113{bottom:405.845200pt;}
.y58{bottom:407.146533pt;}
.yc7{bottom:409.149067pt;}
.y1f0{bottom:409.252267pt;}
.y2e7{bottom:409.589200pt;}
.y1a4{bottom:409.722400pt;}
.ya2{bottom:411.162400pt;}
.y25c{bottom:411.242267pt;}
.y238{bottom:411.277067pt;}
.y184{bottom:412.095733pt;}
.y16a{bottom:412.215867pt;}
.y30e{bottom:412.895867pt;}
.y2b1{bottom:412.986533pt;}
.yec{bottom:415.165467pt;}
.y27f{bottom:417.493200pt;}
.y1c8{bottom:417.797333pt;}
.y135{bottom:419.103867pt;}
.yf{bottom:422.159333pt;}
.y7c{bottom:422.895867pt;}
.y214{bottom:422.898400pt;}
.y2e6{bottom:423.327867pt;}
.y33{bottom:424.746267pt;}
.y112{bottom:425.717200pt;}
.y2b0{bottom:426.725200pt;}
.y57{bottom:427.146533pt;}
.yc6{bottom:428.877067pt;}
.y1a3{bottom:429.450400pt;}
.y1ef{bottom:429.524267pt;}
.y30d{bottom:429.562533pt;}
.ya1{bottom:430.762400pt;}
.y27e{bottom:431.093200pt;}
.y169{bottom:431.687867pt;}
.y183{bottom:431.695733pt;}
.y25b{bottom:431.770267pt;}
.y237{bottom:431.805067pt;}
.y1c7{bottom:434.064000pt;}
.yeb{bottom:434.610800pt;}
.y2e5{bottom:437.066533pt;}
.y134{bottom:439.231867pt;}
.y2af{bottom:440.463867pt;}
.ye{bottom:442.559333pt;}
.y7b{bottom:442.895867pt;}
.y213{bottom:442.898400pt;}
.y32{bottom:444.618267pt;}
.y27d{bottom:444.693200pt;}
.y111{bottom:445.589200pt;}
.y30c{bottom:446.229200pt;}
.y56{bottom:447.146533pt;}
.yc5{bottom:448.605067pt;}
.y1a2{bottom:449.178400pt;}
.y1ee{bottom:449.796267pt;}
.y1c6{bottom:450.330667pt;}
.ya0{bottom:450.362400pt;}
.y2e4{bottom:450.805200pt;}
.y168{bottom:451.159867pt;}
.y182{bottom:451.295733pt;}
.y25a{bottom:452.298267pt;}
.y236{bottom:452.333067pt;}
.yea{bottom:454.082800pt;}
.y2ae{bottom:454.202533pt;}
.y27c{bottom:458.293200pt;}
.y133{bottom:459.359867pt;}
.y7a{bottom:462.895867pt;}
.y212{bottom:462.898400pt;}
.yd{bottom:462.959333pt;}
.y31{bottom:464.490267pt;}
.y2e3{bottom:464.533200pt;}
.y110{bottom:465.461200pt;}
.y1c5{bottom:466.597333pt;}
.y55{bottom:466.618533pt;}
.y2ad{bottom:467.941200pt;}
.yc4{bottom:468.333067pt;}
.y1a1{bottom:468.906400pt;}
.y9f{bottom:469.962400pt;}
.y1ed{bottom:470.068267pt;}
.y167{bottom:470.573067pt;}
.y181{bottom:470.895867pt;}
.y27b{bottom:471.893200pt;}
.y259{bottom:472.826267pt;}
.y235{bottom:472.861067pt;}
.ye9{bottom:473.554800pt;}
.y2e2{bottom:478.271867pt;}
.y132{bottom:479.487867pt;}
.y30b{bottom:479.562533pt;}
.y2ac{bottom:481.679867pt;}
.y1c4{bottom:482.864000pt;}
.y79{bottom:482.895867pt;}
.y211{bottom:482.898400pt;}
.yc{bottom:483.359333pt;}
.y30{bottom:484.351600pt;}
.y10f{bottom:485.333200pt;}
.y27a{bottom:485.493200pt;}
.y54{bottom:486.090533pt;}
.yc3{bottom:488.061067pt;}
.y1a0{bottom:488.634400pt;}
.y9e{bottom:489.562400pt;}
.y166{bottom:490.045067pt;}
.y1ec{bottom:490.340267pt;}
.y180{bottom:490.495867pt;}
.y2e1{bottom:492.010533pt;}
.ye8{bottom:493.026800pt;}
.y258{bottom:493.354267pt;}
.y234{bottom:493.389067pt;}
.y2ab{bottom:495.418533pt;}
.y30a{bottom:496.229200pt;}
.y279{bottom:499.093200pt;}
.y131{bottom:499.615867pt;}
.y78{bottom:502.895867pt;}
.y210{bottom:502.898400pt;}
.y1c3{bottom:503.064000pt;}
.yb{bottom:503.759333pt;}
.y2f{bottom:504.223600pt;}
.y10e{bottom:505.205200pt;}
.y53{bottom:505.562533pt;}
.y2e0{bottom:505.749200pt;}
.yc2{bottom:507.789067pt;}
.y19f{bottom:508.431733pt;}
.y2aa{bottom:509.157200pt;}
.y9d{bottom:509.162400pt;}
.y165{bottom:509.517067pt;}
.y17f{bottom:510.095867pt;}
.y1eb{bottom:510.612267pt;}
.ye7{bottom:512.407867pt;}
.y309{bottom:512.895867pt;}
.y257{bottom:513.882267pt;}
.y233{bottom:513.917067pt;}
.y278{bottom:518.362400pt;}
.y2df{bottom:519.487867pt;}
.y130{bottom:519.743867pt;}
.y77{bottom:522.895867pt;}
.y20f{bottom:522.898400pt;}
.y2e{bottom:524.095600pt;}
.ya{bottom:524.159333pt;}
.y52{bottom:525.029200pt;}
.y10d{bottom:525.077200pt;}
.yc1{bottom:527.517067pt;}
.y19e{bottom:528.159733pt;}
.y9c{bottom:528.762400pt;}
.y164{bottom:528.989067pt;}
.y308{bottom:529.562533pt;}
.y17e{bottom:529.695867pt;}
.y1ea{bottom:530.884267pt;}
.ye6{bottom:531.879867pt;}
.y2de{bottom:533.215867pt;}
.y256{bottom:534.410267pt;}
.y232{bottom:534.445067pt;}
.y1c2{bottom:536.495600pt;}
.y2a9{bottom:536.495867pt;}
.y12f{bottom:539.871867pt;}
.y76{bottom:542.895867pt;}
.y20e{bottom:542.898400pt;}
.y2d{bottom:543.962267pt;}
.y8{bottom:544.559333pt;}
.y10c{bottom:544.949200pt;}
.y307{bottom:546.229200pt;}
.y2dd{bottom:546.954533pt;}
.yc0{bottom:547.245067pt;}
.y19d{bottom:547.887733pt;}
.y9b{bottom:548.399867pt;}
.y163{bottom:548.461067pt;}
.y17d{bottom:549.295867pt;}
.y2a8{bottom:550.095867pt;}
.ye5{bottom:551.351867pt;}
.y255{bottom:554.938267pt;}
.y231{bottom:554.973067pt;}
.y1c1{bottom:555.695600pt;}
.y277{bottom:558.821200pt;}
.y12e{bottom:559.999867pt;}
.y2dc{bottom:560.693200pt;}
.y75{bottom:562.895867pt;}
.y20d{bottom:562.898400pt;}
.y2a7{bottom:563.695867pt;}
.y2c{bottom:563.828933pt;}
.y51{bottom:563.957200pt;}
.y10b{bottom:564.821200pt;}
.y9{bottom:564.959333pt;}
.ybf{bottom:566.973067pt;}
.y19c{bottom:567.615733pt;}
.y162{bottom:567.933067pt;}
.y9a{bottom:568.127867pt;}
.y17c{bottom:568.895867pt;}
.ye4{bottom:570.823867pt;}
.y1e9{bottom:571.826000pt;}
.y2db{bottom:574.431867pt;}
.y1c0{bottom:574.895600pt;}
.y254{bottom:575.466267pt;}
.y230{bottom:575.501067pt;}
.y2a6{bottom:577.295867pt;}
.y276{bottom:579.093200pt;}
.y306{bottom:579.562533pt;}
.y12d{bottom:580.127867pt;}
.y14f{bottom:582.765333pt;}
.y74{bottom:582.895867pt;}
.y20c{bottom:582.898400pt;}
.y50{bottom:583.957200pt;}
.y10a{bottom:584.693200pt;}
.ybe{bottom:586.701067pt;}
.y19b{bottom:587.343733pt;}
.y161{bottom:587.405067pt;}
.y99{bottom:587.855867pt;}
.y2da{bottom:588.170533pt;}
.y17b{bottom:588.495867pt;}
.y1e8{bottom:588.892667pt;}
.ye3{bottom:590.295867pt;}
.y2a5{bottom:590.895867pt;}
.y1bf{bottom:594.095600pt;}
.y253{bottom:595.994267pt;}
.y22f{bottom:596.029067pt;}
.y305{bottom:596.229200pt;}
.y275{bottom:599.365200pt;}
.y12c{bottom:600.255867pt;}
.y2d9{bottom:601.898533pt;}
.y73{bottom:602.895867pt;}
.y20b{bottom:602.898400pt;}
.y2b{bottom:603.540933pt;}
.y4f{bottom:603.957200pt;}
.y2a4{bottom:604.495867pt;}
.y109{bottom:604.565200pt;}
.y1e7{bottom:605.959333pt;}
.ybd{bottom:606.429067pt;}
.y160{bottom:606.877067pt;}
.y19a{bottom:607.071733pt;}
.y98{bottom:607.583867pt;}
.y17a{bottom:608.095867pt;}
.ye2{bottom:609.767867pt;}
.y304{bottom:612.895867pt;}
.y1be{bottom:613.295600pt;}
.y2d8{bottom:615.637200pt;}
.y252{bottom:616.522267pt;}
.y22e{bottom:616.557067pt;}
.y2a3{bottom:618.095867pt;}
.y274{bottom:619.637200pt;}
.y12b{bottom:620.383867pt;}
.y14e{bottom:622.488000pt;}
.y72{bottom:622.895867pt;}
.y20a{bottom:622.898400pt;}
.y1e6{bottom:623.026000pt;}
.y2a{bottom:623.412933pt;}
.y4e{bottom:623.957200pt;}
.y108{bottom:624.437200pt;}
.ybc{bottom:626.157067pt;}
.y15f{bottom:626.349067pt;}
.y199{bottom:626.799733pt;}
.y97{bottom:627.311867pt;}
.y179{bottom:627.695867pt;}
.ye1{bottom:629.239867pt;}
.y2d7{bottom:629.375867pt;}
.y303{bottom:629.562533pt;}
.y2a2{bottom:631.695867pt;}
.y1bd{bottom:632.495600pt;}
.y251{bottom:637.050267pt;}
.y22d{bottom:637.085067pt;}
.y273{bottom:639.909200pt;}
.y1e5{bottom:640.092667pt;}
.y12a{bottom:640.511867pt;}
.y14d{bottom:642.360000pt;}
.y71{bottom:642.895867pt;}
.y209{bottom:642.898400pt;}
.y2d6{bottom:643.114533pt;}
.y29{bottom:643.284933pt;}
.y4d{bottom:643.957200pt;}
.y107{bottom:644.309200pt;}
.y2a1{bottom:645.295867pt;}
.y7{bottom:645.759333pt;}
.y15e{bottom:645.821067pt;}
.ybb{bottom:645.885067pt;}
.y302{bottom:646.229200pt;}
.y198{bottom:646.527733pt;}
.y96{bottom:647.039867pt;}
.y178{bottom:647.295867pt;}
.ye0{bottom:648.711867pt;}
.y1bc{bottom:651.695600pt;}
.y2d5{bottom:656.853200pt;}
.y1e4{bottom:657.159333pt;}
.y250{bottom:657.578267pt;}
.y22c{bottom:657.613067pt;}
.y2a0{bottom:658.895867pt;}
.y272{bottom:660.181200pt;}
.y129{bottom:660.639867pt;}
.y14c{bottom:662.237200pt;}
.y6{bottom:662.426000pt;}
.y70{bottom:662.895867pt;}
.y208{bottom:662.898400pt;}
.y28{bottom:663.156933pt;}
.y4c{bottom:663.957200pt;}
.y106{bottom:664.181200pt;}
.y15d{bottom:665.293067pt;}
.yba{bottom:665.613067pt;}
.y197{bottom:666.255733pt;}
.y95{bottom:666.767867pt;}
.y177{bottom:666.895867pt;}
.ydf{bottom:668.183867pt;}
.y2d4{bottom:670.581200pt;}
.y1bb{bottom:670.895600pt;}
.y29f{bottom:672.495867pt;}
.y1e3{bottom:674.226000pt;}
.y24f{bottom:678.106267pt;}
.y22b{bottom:678.141067pt;}
.y5{bottom:679.092667pt;}
.y301{bottom:679.562533pt;}
.y271{bottom:680.453200pt;}
.y128{bottom:680.767867pt;}
.y14b{bottom:682.109200pt;}
.y6f{bottom:682.895867pt;}
.y207{bottom:682.898400pt;}
.y27{bottom:682.991867pt;}
.y4b{bottom:683.957200pt;}
.y105{bottom:684.053200pt;}
.y2d3{bottom:684.319867pt;}
.y15c{bottom:684.765067pt;}
.yb9{bottom:685.341067pt;}
.y196{bottom:685.983733pt;}
.y29e{bottom:686.095867pt;}
.y94{bottom:686.495867pt;}
.yde{bottom:687.655867pt;}
.y1ba{bottom:690.095600pt;}
.y1e2{bottom:691.292667pt;}
.y300{bottom:696.229200pt;}
.y2d2{bottom:698.058533pt;}
.y24e{bottom:698.634267pt;}
.y22a{bottom:698.669067pt;}
.y29d{bottom:699.695867pt;}
.y270{bottom:700.725200pt;}
.y127{bottom:700.895867pt;}
.y14a{bottom:701.981200pt;}
.y26{bottom:702.863867pt;}
.y6e{bottom:702.895867pt;}
.y206{bottom:702.898400pt;}
.y104{bottom:703.925200pt;}
.y4a{bottom:703.957200pt;}
.y15b{bottom:704.637067pt;}
.yb8{bottom:705.069067pt;}
.y195{bottom:705.711733pt;}
.y93{bottom:706.095867pt;}
.ydd{bottom:707.127867pt;}
.y1e1{bottom:708.359333pt;}
.y1b9{bottom:709.295600pt;}
.y2d1{bottom:711.797200pt;}
.y2ff{bottom:712.895867pt;}
.y29c{bottom:713.295867pt;}
.y4{bottom:716.546667pt;}
.y24d{bottom:719.194533pt;}
.y229{bottom:719.197067pt;}
.y126{bottom:720.895867pt;}
.y26f{bottom:720.997200pt;}
.y149{bottom:721.853200pt;}
.y25{bottom:722.735867pt;}
.y6d{bottom:722.895867pt;}
.y205{bottom:722.898400pt;}
.y103{bottom:723.797200pt;}
.y49{bottom:723.957200pt;}
.y15a{bottom:724.509067pt;}
.yb7{bottom:724.797067pt;}
.y1e0{bottom:725.426000pt;}
.y194{bottom:725.439733pt;}
.y2d0{bottom:725.535867pt;}
.y92{bottom:725.695867pt;}
.ydc{bottom:726.599867pt;}
.y29b{bottom:726.895867pt;}
.y1b8{bottom:728.495867pt;}
.y2fe{bottom:729.562533pt;}
.y3{bottom:736.546667pt;}
.y2cf{bottom:739.263867pt;}
.y24c{bottom:739.722533pt;}
.y228{bottom:739.725067pt;}
.y29a{bottom:740.495867pt;}
.y125{bottom:740.895867pt;}
.y26e{bottom:741.269200pt;}
.y148{bottom:741.981200pt;}
.y1df{bottom:742.492667pt;}
.y24{bottom:742.607867pt;}
.y6c{bottom:742.895867pt;}
.y204{bottom:742.898400pt;}
.y102{bottom:743.669200pt;}
.y48{bottom:743.957200pt;}
.y159{bottom:744.381067pt;}
.yb6{bottom:744.525067pt;}
.y193{bottom:745.167733pt;}
.y91{bottom:745.295867pt;}
.ydb{bottom:746.071867pt;}
.y2fd{bottom:746.229200pt;}
.y1b7{bottom:747.695867pt;}
.y2ce{bottom:753.002533pt;}
.y299{bottom:754.095867pt;}
.y1de{bottom:759.559333pt;}
.y24b{bottom:760.250533pt;}
.y227{bottom:760.253067pt;}
.y124{bottom:760.895867pt;}
.y26d{bottom:761.541200pt;}
.y147{bottom:762.109200pt;}
.y23{bottom:762.479867pt;}
.y6b{bottom:762.895867pt;}
.y203{bottom:762.898400pt;}
.y101{bottom:763.541200pt;}
.y47{bottom:763.957200pt;}
.yb5{bottom:764.253067pt;}
.y90{bottom:764.895867pt;}
.yda{bottom:765.543867pt;}
.y2cd{bottom:766.741200pt;}
.y1b6{bottom:766.895867pt;}
.y298{bottom:767.695867pt;}
.y1dd{bottom:776.626000pt;}
.y2fc{bottom:779.562533pt;}
.y2cc{bottom:780.479867pt;}
.y24a{bottom:780.778533pt;}
.y226{bottom:780.781067pt;}
.y123{bottom:781.295867pt;}
.y26c{bottom:781.813200pt;}
.y146{bottom:782.237200pt;}
.y22{bottom:782.351867pt;}
.y6a{bottom:782.895867pt;}
.y202{bottom:782.898400pt;}
.y100{bottom:783.413200pt;}
.y46{bottom:783.957200pt;}
.yb4{bottom:783.981067pt;}
.y8f{bottom:784.495867pt;}
.yd9{bottom:785.015867pt;}
.y1b5{bottom:786.095867pt;}
.y1dc{bottom:793.692667pt;}
.y2cb{bottom:794.218533pt;}
.y297{bottom:794.895867pt;}
.y2fb{bottom:796.229200pt;}
.y2{bottom:796.231733pt;}
.y249{bottom:801.306533pt;}
.y225{bottom:801.309067pt;}
.y122{bottom:801.695867pt;}
.y26b{bottom:802.085200pt;}
.y21{bottom:802.223867pt;}
.y145{bottom:802.365200pt;}
.y69{bottom:802.895867pt;}
.y201{bottom:802.898400pt;}
.yff{bottom:803.285200pt;}
.yb3{bottom:803.709067pt;}
.y45{bottom:803.957200pt;}
.y8e{bottom:804.095867pt;}
.yd8{bottom:804.487867pt;}
.y1b4{bottom:805.295867pt;}
.y2ca{bottom:807.946533pt;}
.y296{bottom:808.495867pt;}
.y1db{bottom:810.759333pt;}
.y2fa{bottom:812.895867pt;}
.y2c9{bottom:821.685200pt;}
.y248{bottom:821.834533pt;}
.y224{bottom:821.837067pt;}
.y20{bottom:822.095867pt;}
.y26a{bottom:822.357200pt;}
.y144{bottom:822.637200pt;}
.y68{bottom:822.895867pt;}
.y200{bottom:822.898400pt;}
.yfe{bottom:823.157200pt;}
.yb2{bottom:823.437067pt;}
.y8d{bottom:823.695867pt;}
.y44{bottom:823.957200pt;}
.yd7{bottom:823.959867pt;}
.y1b3{bottom:824.495867pt;}
.y1da{bottom:827.826000pt;}
.y2f9{bottom:829.562533pt;}
.y2c8{bottom:835.423867pt;}
.y295{bottom:835.695867pt;}
.y247{bottom:842.362533pt;}
.y223{bottom:842.365067pt;}
.y1f{bottom:842.495867pt;}
.y269{bottom:842.629200pt;}
.y143{bottom:842.765200pt;}
.y67{bottom:842.895867pt;}
.y1ff{bottom:842.898400pt;}
.yfd{bottom:843.029200pt;}
.yb1{bottom:843.165067pt;}
.y8c{bottom:843.295867pt;}
.y43{bottom:843.429200pt;}
.yd6{bottom:843.431867pt;}
.y1b2{bottom:843.695867pt;}
.y2f8{bottom:846.229200pt;}
.y1d9{bottom:848.026000pt;}
.y2c7{bottom:849.162533pt;}
.y294{bottom:849.295867pt;}
.h7{height:21.894141pt;}
.he{height:26.945443pt;}
.h17{height:35.456000pt;}
.h8{height:36.229167pt;}
.ha{height:36.796875pt;}
.h16{height:38.899200pt;}
.h11{height:44.320000pt;}
.h4{height:44.960000pt;}
.h2{height:45.286458pt;}
.h5{height:54.343750pt;}
.hb{height:54.386417pt;}
.h9{height:54.492017pt;}
.h14{height:58.883292pt;}
.hc{height:59.010758pt;}
.h15{height:59.159558pt;}
.h13{height:59.160092pt;}
.hd{height:59.160625pt;}
.h10{height:59.224625pt;}
.h12{height:59.395825pt;}
.hf{height:59.524358pt;}
.h3{height:90.572917pt;}
.h6{height:267.869280pt;}
.h0{height:941.794667pt;}
.h1{height:942.000000pt;}
.w1{width:658.666667pt;}
.w0{width:658.897333pt;}
.x0{left:0.000000pt;}
.x5{left:78.897600pt;}
.x7{left:86.430933pt;}
.x6{left:92.126000pt;}
.x2{left:100.000000pt;}
.x9{left:107.533333pt;}
.x4{left:113.228267pt;}
.x3{left:136.256933pt;}
.xb{left:139.377600pt;}
.x8{left:241.697600pt;}
.xa{left:262.800000pt;}
.x1{left:564.791600pt;}
}




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