
    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_d2b0ace431428079ea0344e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144467;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_b758a5d64cbc432ac8891bf1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108333;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_9b15f6106ba66ae259c65437.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165333;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_2fdb9e123e3bfd89bd761c37.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976600;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_df60a556a80f51634260e34c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.831000;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_a21077e168a3592592163276.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.078000;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_e89b62a1c066827263a8cce6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.078000;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_79a0e8e7fabae9c357c3d9f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.155250;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_9c7fac52858a93d74fb45b03.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050538;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_ecdbf30e836a169b72340690.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.068167;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls3{letter-spacing:-4.013208px;}
.ls36{letter-spacing:-2.160000px;}
.ls43{letter-spacing:-0.960000px;}
.ls24{letter-spacing:-0.660000px;}
.ls20{letter-spacing:-0.594000px;}
.ls1{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.528000px;}
.ls28{letter-spacing:-0.432000px;}
.ls2{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.330000px;}
.ls27{letter-spacing:-0.270000px;}
.ls19{letter-spacing:-0.264000px;}
.ls16{letter-spacing:-0.198000px;}
.ls1d{letter-spacing:-0.162000px;}
.ls44{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.132000px;}
.ls33{letter-spacing:-0.066000px;}
.ls38{letter-spacing:-0.054000px;}
.ls47{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.054000px;}
.ls31{letter-spacing:0.066000px;}
.ls3e{letter-spacing:0.096000px;}
.ls18{letter-spacing:0.132000px;}
.ls40{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.162000px;}
.ls2e{letter-spacing:0.191826px;}
.ls2f{letter-spacing:0.198000px;}
.ls29{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.231000px;}
.ls1f{letter-spacing:0.264000px;}
.ls1a{letter-spacing:0.270000px;}
.ls34{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.330000px;}
.ls30{letter-spacing:0.378000px;}
.ls2b{letter-spacing:0.384426px;}
.ls12{letter-spacing:0.396000px;}
.ls32{letter-spacing:0.429000px;}
.ls48{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.462000px;}
.ls42{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.528000px;}
.ls1b{letter-spacing:0.539400px;}
.ls4{letter-spacing:0.540000px;}
.ls37{letter-spacing:0.561000px;}
.ls9{letter-spacing:0.594000px;}
.ls3f{letter-spacing:0.624000px;}
.ls7{letter-spacing:0.627000px;}
.ls5{letter-spacing:0.660000px;}
.ls2c{letter-spacing:0.693000px;}
.lsc{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.726000px;}
.ls22{letter-spacing:0.759000px;}
.ls15{letter-spacing:0.792000px;}
.ls3c{letter-spacing:0.810000px;}
.lsa{letter-spacing:0.840000px;}
.lse{letter-spacing:0.858000px;}
.lsd{letter-spacing:0.924000px;}
.ls1e{letter-spacing:0.990000px;}
.ls13{letter-spacing:1.056000px;}
.ls21{letter-spacing:1.122000px;}
.ls46{letter-spacing:1.152000px;}
.ls8{letter-spacing:1.188000px;}
.ls39{letter-spacing:1.221000px;}
.ls23{letter-spacing:1.254000px;}
.ls17{letter-spacing:1.320000px;}
.ls3a{letter-spacing:1.386000px;}
.ls2d{letter-spacing:1.452000px;}
.ls35{letter-spacing:1.716000px;}
.ls3b{letter-spacing:1.815000px;}
.ls3d{letter-spacing:2.544000px;}
.ls41{letter-spacing:2.592000px;}
.ls45{letter-spacing:3.624000px;}
.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;}
}
.ws89{word-spacing:-23.520000px;}
.ws7c{word-spacing:-20.160000px;}
.ws83{word-spacing:-19.140000px;}
.ws36{word-spacing:-18.546000px;}
.ws2e{word-spacing:-18.480000px;}
.ws1d{word-spacing:-18.282000px;}
.ws52{word-spacing:-17.028000px;}
.ws16{word-spacing:-16.698000px;}
.ws7d{word-spacing:-16.632000px;}
.ws82{word-spacing:-16.368000px;}
.ws7b{word-spacing:-13.662000px;}
.ws0{word-spacing:-12.582000px;}
.ws8b{word-spacing:-11.664000px;}
.ws8c{word-spacing:-10.704000px;}
.ws1{word-spacing:-9.360000px;}
.ws6a{word-spacing:-4.488000px;}
.ws46{word-spacing:-4.224000px;}
.ws72{word-spacing:-3.894000px;}
.wsa3{word-spacing:-3.648000px;}
.ws69{word-spacing:-3.564000px;}
.ws6f{word-spacing:-3.300000px;}
.wsc{word-spacing:-3.234000px;}
.ws45{word-spacing:-3.168000px;}
.ws2f{word-spacing:-3.102000px;}
.ws4c{word-spacing:-3.036000px;}
.ws8a{word-spacing:-2.970000px;}
.ws25{word-spacing:-2.904000px;}
.ws5b{word-spacing:-2.772000px;}
.ws27{word-spacing:-2.754000px;}
.ws30{word-spacing:-2.706000px;}
.ws4a{word-spacing:-2.646000px;}
.ws2d{word-spacing:-2.592000px;}
.ws31{word-spacing:-2.310000px;}
.ws7{word-spacing:-2.244000px;}
.ws7e{word-spacing:-2.214000px;}
.ws64{word-spacing:-2.178000px;}
.ws2a{word-spacing:-2.160000px;}
.ws12{word-spacing:-2.112000px;}
.ws3f{word-spacing:-2.046000px;}
.ws4b{word-spacing:-1.998000px;}
.ws65{word-spacing:-1.980000px;}
.wsa{word-spacing:-1.848000px;}
.ws88{word-spacing:-1.782000px;}
.ws3d{word-spacing:-1.716000px;}
.ws63{word-spacing:-1.584000px;}
.ws3c{word-spacing:-1.518000px;}
.ws62{word-spacing:-1.452000px;}
.ws85{word-spacing:-1.386000px;}
.ws23{word-spacing:-1.320000px;}
.ws41{word-spacing:-1.254000px;}
.wsd{word-spacing:-1.188000px;}
.wsa4{word-spacing:-1.152000px;}
.ws33{word-spacing:-1.122000px;}
.ws1b{word-spacing:-1.056000px;}
.ws68{word-spacing:-1.026000px;}
.ws34{word-spacing:-0.990000px;}
.ws10{word-spacing:-0.924000px;}
.ws96{word-spacing:-0.912000px;}
.ws11{word-spacing:-0.858000px;}
.ws5{word-spacing:-0.840000px;}
.ws86{word-spacing:-0.810000px;}
.ws1c{word-spacing:-0.792000px;}
.ws9f{word-spacing:-0.768000px;}
.ws6c{word-spacing:-0.756000px;}
.ws14{word-spacing:-0.726000px;}
.ws71{word-spacing:-0.720000px;}
.ws6{word-spacing:-0.660000px;}
.ws92{word-spacing:-0.624000px;}
.wse{word-spacing:-0.594000px;}
.ws1f{word-spacing:-0.540000px;}
.ws19{word-spacing:-0.528000px;}
.ws8e{word-spacing:-0.480000px;}
.wsb{word-spacing:-0.462000px;}
.wsa2{word-spacing:-0.432000px;}
.ws43{word-spacing:-0.396000px;}
.ws67{word-spacing:-0.378000px;}
.ws18{word-spacing:-0.330000px;}
.ws70{word-spacing:-0.324000px;}
.ws8f{word-spacing:-0.288000px;}
.ws4f{word-spacing:-0.270000px;}
.ws35{word-spacing:-0.264000px;}
.ws4d{word-spacing:-0.216000px;}
.ws56{word-spacing:-0.198000px;}
.ws5a{word-spacing:-0.192000px;}
.ws1e{word-spacing:-0.162000px;}
.ws9a{word-spacing:-0.144000px;}
.ws29{word-spacing:-0.132000px;}
.ws94{word-spacing:-0.096000px;}
.ws42{word-spacing:-0.066000px;}
.ws50{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.wsa0{word-spacing:0.048000px;}
.ws7f{word-spacing:0.054000px;}
.ws51{word-spacing:0.066000px;}
.ws9d{word-spacing:0.096000px;}
.ws15{word-spacing:0.132000px;}
.ws97{word-spacing:0.144000px;}
.ws2b{word-spacing:0.162000px;}
.ws17{word-spacing:0.198000px;}
.ws26{word-spacing:0.264000px;}
.ws49{word-spacing:0.270000px;}
.ws8{word-spacing:0.330000px;}
.ws53{word-spacing:0.396000px;}
.ws39{word-spacing:0.528000px;}
.ws3{word-spacing:0.540000px;}
.wsf{word-spacing:0.594000px;}
.ws38{word-spacing:0.660000px;}
.ws84{word-spacing:0.726000px;}
.ws6e{word-spacing:0.756000px;}
.ws47{word-spacing:0.792000px;}
.ws6d{word-spacing:0.864000px;}
.ws91{word-spacing:0.960000px;}
.ws81{word-spacing:0.990000px;}
.wsa1{word-spacing:1.104000px;}
.ws48{word-spacing:1.122000px;}
.ws93{word-spacing:1.152000px;}
.ws60{word-spacing:1.188000px;}
.ws4e{word-spacing:1.242000px;}
.ws1a{word-spacing:1.320000px;}
.ws79{word-spacing:1.386000px;}
.ws66{word-spacing:1.650000px;}
.ws9e{word-spacing:1.680000px;}
.ws32{word-spacing:1.716000px;}
.ws37{word-spacing:1.728000px;}
.ws99{word-spacing:1.776000px;}
.ws57{word-spacing:1.782000px;}
.ws3a{word-spacing:1.914000px;}
.ws78{word-spacing:2.160000px;}
.ws21{word-spacing:2.178000px;}
.ws54{word-spacing:2.244000px;}
.ws24{word-spacing:2.310000px;}
.ws44{word-spacing:2.376000px;}
.ws3b{word-spacing:2.442000px;}
.ws98{word-spacing:2.448000px;}
.ws55{word-spacing:2.508000px;}
.ws74{word-spacing:2.574000px;}
.ws9{word-spacing:2.640000px;}
.ws20{word-spacing:2.706000px;}
.ws5c{word-spacing:2.904000px;}
.ws2c{word-spacing:3.036000px;}
.ws28{word-spacing:3.168000px;}
.ws75{word-spacing:3.234000px;}
.ws3e{word-spacing:3.300000px;}
.ws87{word-spacing:3.498000px;}
.ws5e{word-spacing:3.762000px;}
.ws7a{word-spacing:3.942000px;}
.ws6b{word-spacing:3.960000px;}
.ws4{word-spacing:4.013208px;}
.ws59{word-spacing:4.026000px;}
.ws5f{word-spacing:4.158000px;}
.ws77{word-spacing:4.320000px;}
.ws58{word-spacing:4.422000px;}
.ws73{word-spacing:4.620000px;}
.ws22{word-spacing:4.686000px;}
.ws76{word-spacing:4.698000px;}
.ws40{word-spacing:4.752000px;}
.ws90{word-spacing:4.800000px;}
.ws13{word-spacing:4.818000px;}
.ws9b{word-spacing:4.992000px;}
.ws95{word-spacing:5.232000px;}
.ws61{word-spacing:5.346000px;}
.wsa6{word-spacing:5.664000px;}
.ws80{word-spacing:6.270000px;}
.ws5d{word-spacing:8.052000px;}
.ws9c{word-spacing:11.904000px;}
.wsa5{word-spacing:12.720000px;}
.ws8d{word-spacing:22.560000px;}
._8{margin-left:-17.652600px;}
._7{margin-left:-11.355600px;}
._0{margin-left:-10.080000px;}
._d{margin-left:-7.170000px;}
._e{margin-left:-6.084000px;}
._1{margin-left:-4.284000px;}
._4{margin-left:-3.218400px;}
._2{margin-left:-1.620000px;}
._3{width:1.026000px;}
._6{width:2.556600px;}
._5{width:3.720000px;}
._a{width:5.065200px;}
._9{width:6.193800px;}
._b{width:7.316400px;}
._c{width:8.492400px;}
._11{width:11.814000px;}
._14{width:12.979200px;}
._16{width:14.798400px;}
._12{width:25.466400px;}
._13{width:26.574000px;}
._10{width:36.336000px;}
._15{width:44.414400px;}
._f{width:61.272000px;}
.fc6{color:rgb(79,76,77);}
.fc5{color:rgb(101,98,99);}
.fc4{color:rgb(167,165,166);}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(145,143,143);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(29,88,66);}
.fs2{font-size:36.000000px;}
.fs8{font-size:38.478000px;}
.fs9{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:133.773600px;}
.fs0{font-size:252.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:24.959850px;}
.y1a7{bottom:85.039350px;}
.y355{bottom:85.647900px;}
.y5a{bottom:87.838050px;}
.y87{bottom:88.019550px;}
.y18a{bottom:89.531400px;}
.y12b{bottom:90.027300px;}
.y148{bottom:92.271450px;}
.y101{bottom:92.531400px;}
.y294{bottom:96.027300px;}
.y173{bottom:96.523350px;}
.y26d{bottom:97.043100px;}
.y263{bottom:97.491900px;}
.y2e1{bottom:101.011650px;}
.y2bc{bottom:101.507700px;}
.y23e{bottom:103.515600px;}
.y354{bottom:104.899800px;}
.yb2{bottom:105.523350px;}
.y1a6{bottom:106.299150px;}
.y271{bottom:107.035200px;}
.yde{bottom:107.809950px;}
.y59{bottom:108.838050px;}
.y86{bottom:109.019550px;}
.y189{bottom:110.531400px;}
.y12a{bottom:111.027300px;}
.y147{bottom:113.271450px;}
.y100{bottom:113.531400px;}
.y1fb{bottom:114.027300px;}
.y172{bottom:114.523350px;}
.y26c{bottom:118.043100px;}
.y262{bottom:118.491900px;}
.y1a5{bottom:119.799150px;}
.y353{bottom:119.899800px;}
.y2e0{bottom:122.011650px;}
.y2bb{bottom:122.507700px;}
.y219{bottom:122.554950px;}
.y2fa{bottom:124.043100px;}
.y23d{bottom:124.515600px;}
.y270{bottom:125.035200px;}
.yb1{bottom:126.523350px;}
.ydd{bottom:128.809950px;}
.y58{bottom:129.838050px;}
.y85{bottom:130.019550px;}
.y188{bottom:131.531400px;}
.y129{bottom:132.027300px;}
.y171{bottom:132.523350px;}
.yff{bottom:134.531400px;}
.y1fa{bottom:135.027300px;}
.y26b{bottom:139.043100px;}
.y352{bottom:139.151850px;}
.y146{bottom:142.775400px;}
.y2df{bottom:143.011650px;}
.y2ba{bottom:143.507700px;}
.y218{bottom:143.554950px;}
.y327{bottom:144.082200px;}
.y2f9{bottom:145.043100px;}
.y23c{bottom:145.515600px;}
.y261{bottom:147.995850px;}
.ydc{bottom:149.809950px;}
.y293{bottom:150.027300px;}
.y170{bottom:150.523350px;}
.y84{bottom:151.019550px;}
.y187{bottom:152.531400px;}
.y128{bottom:153.027300px;}
.y351{bottom:154.151850px;}
.yfe{bottom:155.531400px;}
.yb0{bottom:156.027300px;}
.y1c4{bottom:157.043100px;}
.y57{bottom:159.342000px;}
.y1a4{bottom:160.043100px;}
.y145{bottom:163.775400px;}
.y2de{bottom:164.011650px;}
.y1dc{bottom:164.035200px;}
.y2b9{bottom:164.507700px;}
.y217{bottom:164.554950px;}
.y326{bottom:165.082200px;}
.y2f8{bottom:166.043100px;}
.y292{bottom:168.027300px;}
.y16f{bottom:168.523350px;}
.y260{bottom:168.995850px;}
.ydb{bottom:170.809950px;}
.y83{bottom:172.019550px;}
.y350{bottom:173.403750px;}
.y186{bottom:173.531400px;}
.y127{bottom:174.027300px;}
.y23b{bottom:175.019550px;}
.yfd{bottom:176.531400px;}
.yaf{bottom:177.027300px;}
.y1c3{bottom:178.043100px;}
.y56{bottom:180.342000px;}
.y1a3{bottom:181.043100px;}
.y144{bottom:184.775400px;}
.y2dd{bottom:185.011650px;}
.y1db{bottom:185.035200px;}
.y2b8{bottom:185.507700px;}
.y216{bottom:185.554950px;}
.y291{bottom:186.027300px;}
.y325{bottom:186.082200px;}
.y16e{bottom:186.523350px;}
.y2f7{bottom:187.043100px;}
.y34f{bottom:188.403750px;}
.y25f{bottom:189.995850px;}
.yda{bottom:191.809950px;}
.y82{bottom:193.019550px;}
.y185{bottom:194.531400px;}
.y2e{bottom:195.460050px;}
.yfc{bottom:197.531400px;}
.yae{bottom:198.027300px;}
.y1c2{bottom:199.043100px;}
.y55{bottom:201.342000px;}
.y1a2{bottom:202.043100px;}
.y126{bottom:203.531400px;}
.y16d{bottom:204.523350px;}
.y143{bottom:205.775400px;}
.y2dc{bottom:206.011650px;}
.y1da{bottom:206.035200px;}
.y215{bottom:206.554950px;}
.y324{bottom:207.082200px;}
.y34e{bottom:207.655650px;}
.y2f6{bottom:208.043100px;}
.y26f{bottom:210.547050px;}
.yd9{bottom:212.809950px;}
.y81{bottom:214.019550px;}
.y2b7{bottom:215.011650px;}
.y184{bottom:215.531400px;}
.y2d{bottom:216.460050px;}
.yad{bottom:219.027300px;}
.y25e{bottom:219.499800px;}
.y1c1{bottom:220.043100px;}
.y290{bottom:221.035200px;}
.y23a{bottom:221.531400px;}
.y54{bottom:222.342000px;}
.y16c{bottom:222.523350px;}
.y34d{bottom:222.655650px;}
.y1a1{bottom:223.043100px;}
.y125{bottom:224.531400px;}
.y142{bottom:226.775400px;}
.y2db{bottom:227.011650px;}
.yfb{bottom:227.035200px;}
.y214{bottom:227.554950px;}
.y323{bottom:228.082200px;}
.y2f5{bottom:229.043100px;}
.y26a{bottom:231.547050px;}
.y1d9{bottom:235.539150px;}
.y2b6{bottom:236.011650px;}
.y183{bottom:236.531400px;}
.y2c{bottom:237.460050px;}
.yac{bottom:240.027300px;}
.y25d{bottom:240.499800px;}
.y1c0{bottom:241.043100px;}
.y34c{bottom:241.907700px;}
.y28f{bottom:242.035200px;}
.yd8{bottom:242.313900px;}
.y239{bottom:242.531400px;}
.y53{bottom:243.342000px;}
.y80{bottom:243.523350px;}
.y1a0{bottom:244.043100px;}
.y124{bottom:245.531400px;}
.y141{bottom:247.775400px;}
.y2da{bottom:248.011650px;}
.yfa{bottom:248.035200px;}
.y1f9{bottom:248.531400px;}
.y213{bottom:248.554950px;}
.y322{bottom:249.082200px;}
.yc{bottom:249.507900px;}
.y2f4{bottom:250.043100px;}
.y269{bottom:252.547050px;}
.y34b{bottom:256.907700px;}
.y2b5{bottom:257.011650px;}
.y16b{bottom:257.531400px;}
.yab{bottom:261.027300px;}
.y25c{bottom:261.499800px;}
.y1bf{bottom:262.043100px;}
.y28e{bottom:263.035200px;}
.y238{bottom:263.531400px;}
.y52{bottom:264.342000px;}
.y19f{bottom:265.043100px;}
.y182{bottom:266.035200px;}
.y123{bottom:266.531400px;}
.y2b{bottom:266.964000px;}
.y140{bottom:268.775400px;}
.y2d9{bottom:269.011650px;}
.yf9{bottom:269.035200px;}
.y212{bottom:269.554950px;}
.yb{bottom:270.259800px;}
.y2f3{bottom:271.043100px;}
.y268{bottom:273.547050px;}
.y34a{bottom:276.159600px;}
.y2b4{bottom:278.011650px;}
.y16a{bottom:278.531400px;}
.y321{bottom:278.586150px;}
.yaa{bottom:282.027300px;}
.y1d8{bottom:282.051000px;}
.y25b{bottom:282.499800px;}
.y1be{bottom:283.043100px;}
.y237{bottom:284.531400px;}
.y51{bottom:285.342000px;}
.y19e{bottom:286.043100px;}
.y181{bottom:287.035200px;}
.y2a{bottom:287.964000px;}
.yd7{bottom:288.825750px;}
.y13f{bottom:289.775400px;}
.y2d8{bottom:290.011650px;}
.y7f{bottom:290.035200px;}
.y211{bottom:290.554950px;}
.ya{bottom:291.011850px;}
.y349{bottom:291.159600px;}
.y2f2{bottom:292.043100px;}
.y28d{bottom:292.539150px;}
.y267{bottom:294.547050px;}
.y1f8{bottom:295.043100px;}
.y2b3{bottom:299.011650px;}
.y169{bottom:299.531400px;}
.y320{bottom:299.586150px;}
.ya9{bottom:303.027300px;}
.y1d7{bottom:303.051000px;}
.y25a{bottom:303.499800px;}
.y1bd{bottom:304.043100px;}
.y122{bottom:304.539150px;}
.y348{bottom:306.159600px;}
.y180{bottom:308.035200px;}
.y29{bottom:308.964000px;}
.yd6{bottom:309.825750px;}
.y13e{bottom:310.775400px;}
.y7e{bottom:311.035200px;}
.y210{bottom:311.554950px;}
.y9{bottom:311.763750px;}
.y2f1{bottom:313.043100px;}
.y28c{bottom:313.539150px;}
.y236{bottom:314.035200px;}
.y50{bottom:314.845950px;}
.y19d{bottom:315.547050px;}
.y1f7{bottom:316.043100px;}
.y2d7{bottom:319.515600px;}
.yf8{bottom:319.539150px;}
.y168{bottom:320.531400px;}
.y31f{bottom:320.586150px;}
.y121{bottom:322.539150px;}
.ya8{bottom:324.027300px;}
.y1d6{bottom:324.051000px;}
.y1bc{bottom:325.043100px;}
.y347{bottom:325.411650px;}
.y2b2{bottom:328.515600px;}
.y17f{bottom:329.035200px;}
.y28{bottom:329.964000px;}
.yd5{bottom:330.825750px;}
.y13d{bottom:331.775400px;}
.y7d{bottom:332.035200px;}
.y8{bottom:332.515800px;}
.y20f{bottom:332.554950px;}
.y259{bottom:333.003750px;}
.y28b{bottom:334.539150px;}
.y235{bottom:335.035200px;}
.y4f{bottom:335.845950px;}
.y1f6{bottom:337.043100px;}
.y2d6{bottom:340.515600px;}
.yf7{bottom:340.539150px;}
.y31e{bottom:341.586150px;}
.y2f0{bottom:342.547050px;}
.y346{bottom:344.663700px;}
.ya7{bottom:345.027300px;}
.y1d5{bottom:345.051000px;}
.y1bb{bottom:346.043100px;}
.y2b1{bottom:349.515600px;}
.y167{bottom:350.035200px;}
.y27{bottom:350.964000px;}
.yd4{bottom:351.825750px;}
.y13c{bottom:352.775400px;}
.y7c{bottom:353.035200px;}
.y7{bottom:353.267700px;}
.y20e{bottom:353.554950px;}
.y258{bottom:354.003750px;}
.y28a{bottom:355.539150px;}
.y234{bottom:356.035200px;}
.y1f5{bottom:358.043100px;}
.y120{bottom:358.539150px;}
.y345{bottom:359.663700px;}
.y2d5{bottom:361.515600px;}
.yf6{bottom:361.539150px;}
.y19c{bottom:362.058900px;}
.y31d{bottom:362.586150px;}
.y2ef{bottom:363.547050px;}
.y4e{bottom:365.349900px;}
.ya6{bottom:366.027300px;}
.y1d4{bottom:366.051000px;}
.y1ba{bottom:367.043100px;}
.y2b0{bottom:370.515600px;}
.y166{bottom:371.035200px;}
.yd3{bottom:372.825750px;}
.yd{bottom:373.621350px;}
.y13b{bottom:373.775400px;}
.y20d{bottom:374.554950px;}
.y344{bottom:374.663550px;}
.y11f{bottom:376.539150px;}
.y233{bottom:377.035200px;}
.y1f4{bottom:379.043100px;}
.y26{bottom:380.467950px;}
.y2d4{bottom:382.515600px;}
.y7b{bottom:382.539150px;}
.y19b{bottom:383.058900px;}
.y257{bottom:383.507700px;}
.y31c{bottom:383.586150px;}
.y2ee{bottom:384.547050px;}
.ya5{bottom:387.027300px;}
.y1d3{bottom:387.051000px;}
.y1b9{bottom:388.043100px;}
.y165{bottom:392.035200px;}
.yd2{bottom:393.825750px;}
.y343{bottom:393.915600px;}
.y20c{bottom:395.554950px;}
.y289{bottom:397.539150px;}
.y2af{bottom:400.019550px;}
.y1f3{bottom:400.043100px;}
.y25{bottom:401.467950px;}
.ye{bottom:401.531550px;}
.y13a{bottom:403.279350px;}
.y2d3{bottom:403.515600px;}
.y7a{bottom:403.539150px;}
.y19a{bottom:404.058900px;}
.y31b{bottom:404.586150px;}
.y2ed{bottom:405.547050px;}
.y232{bottom:406.539150px;}
.ya4{bottom:408.027300px;}
.y1d2{bottom:408.051000px;}
.y342{bottom:408.915600px;}
.y1b8{bottom:409.043100px;}
.y11e{bottom:411.547050px;}
.y4d{bottom:411.861750px;}
.y164{bottom:413.035200px;}
.yd1{bottom:414.825750px;}
.y20b{bottom:416.554950px;}
.y288{bottom:418.539150px;}
.y2ae{bottom:421.019550px;}
.y1f2{bottom:421.043100px;}
.y24{bottom:422.467950px;}
.y79{bottom:424.539150px;}
.y199{bottom:425.058900px;}
.y31a{bottom:425.586150px;}
.y2ec{bottom:426.547050px;}
.y231{bottom:427.539150px;}
.y341{bottom:428.167500px;}
.ya3{bottom:429.027300px;}
.y1d1{bottom:429.051000px;}
.y256{bottom:430.019550px;}
.y1b7{bottom:430.043100px;}
.y11d{bottom:432.547050px;}
.y4c{bottom:432.861750px;}
.y2d2{bottom:433.019550px;}
.yf5{bottom:433.043100px;}
.y163{bottom:434.035200px;}
.yd0{bottom:435.825750px;}
.y20a{bottom:437.554950px;}
.y287{bottom:439.539150px;}
.y2ad{bottom:442.019550px;}
.y340{bottom:443.167500px;}
.y78{bottom:445.539150px;}
.y198{bottom:446.058900px;}
.y2eb{bottom:447.547050px;}
.y230{bottom:448.539150px;}
.y139{bottom:449.791200px;}
.ya2{bottom:450.027300px;}
.y1d0{bottom:450.051000px;}
.y1f1{bottom:450.547050px;}
.y1b6{bottom:451.043100px;}
.y23{bottom:451.971900px;}
.y11c{bottom:453.547050px;}
.y4b{bottom:453.861750px;}
.y162{bottom:455.035200px;}
.y319{bottom:455.090100px;}
.ycf{bottom:456.825750px;}
.y33f{bottom:458.167500px;}
.y26e{bottom:458.554950px;}
.y2ac{bottom:463.019550px;}
.y197{bottom:467.058900px;}
.y2ea{bottom:468.547050px;}
.y286{bottom:469.043100px;}
.y22f{bottom:469.539150px;}
.y138{bottom:470.791200px;}
.y1cf{bottom:471.051000px;}
.y1f0{bottom:471.547050px;}
.y1b5{bottom:472.043100px;}
.y22{bottom:472.971900px;}
.y11b{bottom:474.547050px;}
.y4a{bottom:474.861750px;}
.y77{bottom:475.043100px;}
.y161{bottom:476.035200px;}
.y318{bottom:476.090100px;}
.y33e{bottom:477.419550px;}
.yce{bottom:477.825750px;}
.ya1{bottom:479.531400px;}
.yf4{bottom:479.554950px;}
.y2ab{bottom:484.019550px;}
.y196{bottom:488.058900px;}
.y285{bottom:490.043100px;}
.y22e{bottom:490.539150px;}
.y33d{bottom:492.419550px;}
.y1ef{bottom:492.547050px;}
.y1b4{bottom:493.043100px;}
.y255{bottom:493.539150px;}
.y21{bottom:493.971900px;}
.y11a{bottom:495.547050px;}
.y76{bottom:496.043100px;}
.y160{bottom:497.035200px;}
.y317{bottom:497.090100px;}
.ya0{bottom:500.531400px;}
.yf3{bottom:500.554950px;}
.y49{bottom:504.365550px;}
.y2aa{bottom:505.019550px;}
.y2e9{bottom:506.554950px;}
.y209{bottom:509.058900px;}
.y284{bottom:511.043100px;}
.y22d{bottom:511.539150px;}
.y33c{bottom:511.671450px;}
.y1b3{bottom:514.043100px;}
.y254{bottom:514.539150px;}
.y20{bottom:514.971900px;}
.ycd{bottom:515.833650px;}
.y119{bottom:516.547050px;}
.y75{bottom:517.043100px;}
.y195{bottom:517.562850px;}
.y15f{bottom:518.035200px;}
.y316{bottom:518.090100px;}
.y9f{bottom:521.531400px;}
.yf2{bottom:521.554950px;}
.y1ee{bottom:522.051000px;}
.y2e8{bottom:524.554950px;}
.y48{bottom:525.365550px;}
.y33b{bottom:526.671450px;}
.y208{bottom:530.058900px;}
.y283{bottom:532.043100px;}
.y2a9{bottom:534.523500px;}
.y253{bottom:535.539150px;}
.y1f{bottom:535.971900px;}
.y118{bottom:537.547050px;}
.y74{bottom:538.043100px;}
.y194{bottom:538.562850px;}
.y15e{bottom:539.035200px;}
.y315{bottom:539.090100px;}
.y137{bottom:542.295150px;}
.y2d1{bottom:542.531400px;}
.yf1{bottom:542.554950px;}
.y1ed{bottom:543.051000px;}
.y33a{bottom:545.923500px;}
.y47{bottom:546.365550px;}
.y22c{bottom:549.547050px;}
.y9e{bottom:551.035200px;}
.y207{bottom:551.058900px;}
.y1b2{bottom:552.051000px;}
.y282{bottom:553.043100px;}
.y2a8{bottom:555.523500px;}
.y252{bottom:556.539150px;}
.y1e{bottom:556.971900px;}
.y117{bottom:558.547050px;}
.y73{bottom:559.043100px;}
.y193{bottom:559.562850px;}
.y15d{bottom:560.035200px;}
.y314{bottom:560.090100px;}
.y2e7{bottom:560.554950px;}
.y339{bottom:560.923500px;}
.y2d0{bottom:563.531400px;}
.yf0{bottom:563.554950px;}
.y1ec{bottom:564.051000px;}
.y46{bottom:567.365550px;}
.y136{bottom:567.547050px;}
.y17e{bottom:568.539150px;}
.y1b1{bottom:570.051000px;}
.y206{bottom:572.058900px;}
.y2a7{bottom:576.523500px;}
.y251{bottom:577.539150px;}
.y1d{bottom:577.971900px;}
.y2e6{bottom:578.554950px;}
.ycc{bottom:579.353250px;}
.y116{bottom:579.547050px;}
.y72{bottom:580.043100px;}
.y338{bottom:580.175400px;}
.y192{bottom:580.562850px;}
.y15c{bottom:581.035200px;}
.y281{bottom:582.547050px;}
.y2cf{bottom:584.531400px;}
.yef{bottom:584.554950px;}
.y1eb{bottom:585.051000px;}
.y22b{bottom:585.547050px;}
.y1b0{bottom:588.051000px;}
.y45{bottom:588.365550px;}
.y313{bottom:589.594050px;}
.y205{bottom:593.058900px;}
.y337{bottom:595.175400px;}
.y135{bottom:597.051000px;}
.y2a6{bottom:597.523500px;}
.y9d{bottom:597.547050px;}
.y250{bottom:598.539150px;}
.ycb{bottom:600.353250px;}
.y71{bottom:601.043100px;}
.y191{bottom:601.562850px;}
.y15b{bottom:602.035200px;}
.y22a{bottom:603.547050px;}
.yee{bottom:605.554950px;}
.y1af{bottom:606.051000px;}
.y1c{bottom:607.475850px;}
.y115{bottom:609.051000px;}
.y312{bottom:610.594050px;}
.y2ce{bottom:614.035200px;}
.y204{bottom:614.058900px;}
.y336{bottom:614.427450px;}
.y2e5{bottom:614.554950px;}
.y17d{bottom:615.051000px;}
.y44{bottom:617.869650px;}
.y134{bottom:618.051000px;}
.y2a5{bottom:618.523500px;}
.y9c{bottom:618.547050px;}
.y24f{bottom:619.539150px;}
.yca{bottom:621.353250px;}
.y229{bottom:621.547050px;}
.y190{bottom:622.562850px;}
.y15a{bottom:623.035200px;}
.y1ae{bottom:624.051000px;}
.y280{bottom:624.547050px;}
.yed{bottom:626.554950px;}
.y1ea{bottom:627.051000px;}
.y1b{bottom:628.475850px;}
.y335{bottom:629.427450px;}
.y114{bottom:630.051000px;}
.y70{bottom:630.547050px;}
.y311{bottom:631.594050px;}
.y2e4{bottom:632.554950px;}
.y2cd{bottom:635.035200px;}
.y266{bottom:635.058900px;}
.y17c{bottom:636.051000px;}
.y43{bottom:638.869650px;}
.y133{bottom:639.051000px;}
.y2a4{bottom:639.523500px;}
.y9b{bottom:639.547050px;}
.y24e{bottom:640.539150px;}
.y1ad{bottom:642.051000px;}
.y18f{bottom:643.562850px;}
.y159{bottom:644.035200px;}
.y27f{bottom:645.547050px;}
.y1ce{bottom:647.554950px;}
.y1e9{bottom:648.051000px;}
.y334{bottom:648.679350px;}
.y1a{bottom:649.475850px;}
.y2e3{bottom:650.554950px;}
.y113{bottom:651.051000px;}
.y6f{bottom:651.547050px;}
.y310{bottom:652.594050px;}
.y2cc{bottom:656.035200px;}
.yec{bottom:656.058900px;}
.y17b{bottom:657.051000px;}
.y228{bottom:657.547050px;}
.yc9{bottom:659.361150px;}
.y42{bottom:659.869650px;}
.y132{bottom:660.051000px;}
.y2a3{bottom:660.523500px;}
.y9a{bottom:660.547050px;}
.y24d{bottom:661.539150px;}
.y333{bottom:663.679350px;}
.y18e{bottom:664.562850px;}
.y158{bottom:665.035200px;}
.y27e{bottom:666.547050px;}
.y1cd{bottom:668.554950px;}
.y1e8{bottom:669.051000px;}
.y19{bottom:670.475850px;}
.y112{bottom:672.051000px;}
.y6e{bottom:672.547050px;}
.y30f{bottom:673.594050px;}
.y227{bottom:675.547050px;}
.yeb{bottom:677.058900px;}
.yc8{bottom:677.361150px;}
.y17a{bottom:678.051000px;}
.y41{bottom:680.869650px;}
.y131{bottom:681.051000px;}
.y99{bottom:681.547050px;}
.y24c{bottom:682.539150px;}
.y332{bottom:682.931250px;}
.y2cb{bottom:685.539150px;}
.y203{bottom:685.562850px;}
.y157{bottom:686.035200px;}
.y1cc{bottom:689.554950px;}
.y2a2{bottom:690.027300px;}
.y1e7{bottom:690.051000px;}
.y18{bottom:691.475850px;}
.y111{bottom:693.051000px;}
.y6d{bottom:693.547050px;}
.y18d{bottom:694.066800px;}
.y30e{bottom:694.594050px;}
.yc7{bottom:695.361150px;}
.y27d{bottom:696.051000px;}
.y331{bottom:697.931250px;}
.yea{bottom:698.058900px;}
.y40{bottom:701.869650px;}
.y98{bottom:702.547050px;}
.y24b{bottom:703.539150px;}
.y2ca{bottom:706.539150px;}
.y2e2{bottom:706.562850px;}
.y130{bottom:710.554950px;}
.y1e6{bottom:711.051000px;}
.yc6{bottom:713.361150px;}
.y110{bottom:714.051000px;}
.y6c{bottom:714.547050px;}
.y36e{bottom:715.012050px;}
.y18c{bottom:715.066800px;}
.y156{bottom:715.539150px;}
.y30d{bottom:715.594050px;}
.y179{bottom:716.058900px;}
.y27c{bottom:717.051000px;}
.y330{bottom:717.183300px;}
.y1ac{bottom:719.058900px;}
.y17{bottom:720.979800px;}
.y3f{bottom:722.869650px;}
.ye9{bottom:723.310800px;}
.y97{bottom:723.547050px;}
.y24a{bottom:724.539150px;}
.y2c9{bottom:727.539150px;}
.y265{bottom:727.562850px;}
.y226{bottom:728.554950px;}
.yc5{bottom:731.361150px;}
.y1cb{bottom:731.554950px;}
.y178{bottom:734.058900px;}
.y36d{bottom:734.263950px;}
.y10f{bottom:735.051000px;}
.y6b{bottom:735.547050px;}
.y18b{bottom:736.066800px;}
.y32f{bottom:736.435200px;}
.y2a1{bottom:736.539150px;}
.y30c{bottom:736.594050px;}
.y27b{bottom:738.051000px;}
.y1ab{bottom:740.058900px;}
.y16{bottom:741.979800px;}
.ye8{bottom:744.310800px;}
.y2c8{bottom:748.539150px;}
.y264{bottom:748.562850px;}
.y1e5{bottom:749.058900px;}
.y36c{bottom:749.263950px;}
.yc4{bottom:749.361150px;}
.y225{bottom:749.554950px;}
.y32e{bottom:751.435200px;}
.y177{bottom:752.058900px;}
.y3e{bottom:752.373450px;}
.y96{bottom:753.051000px;}
.y6a{bottom:756.547050px;}
.y12f{bottom:757.066800px;}
.y2a0{bottom:757.539150px;}
.y30b{bottom:757.594050px;}
.y27a{bottom:759.051000px;}
.y1aa{bottom:761.058900px;}
.y155{bottom:762.051000px;}
.y249{bottom:762.547050px;}
.y15{bottom:762.979800px;}
.y10e{bottom:764.554950px;}
.y1e4{bottom:767.058900px;}
.yc3{bottom:767.361150px;}
.y36b{bottom:768.516000px;}
.y2c7{bottom:769.539150px;}
.ye7{bottom:769.562850px;}
.y176{bottom:770.058900px;}
.y224{bottom:770.554950px;}
.y32d{bottom:770.687250px;}
.y3d{bottom:773.373450px;}
.y95{bottom:774.051000px;}
.y69{bottom:777.547050px;}
.y12e{bottom:778.066800px;}
.y30a{bottom:778.594050px;}
.y279{bottom:780.051000px;}
.y248{bottom:780.547050px;}
.y1a9{bottom:782.058900px;}
.y154{bottom:783.051000px;}
.y14{bottom:783.979800px;}
.y1e3{bottom:785.058900px;}
.yc2{bottom:785.361150px;}
.y10d{bottom:785.554950px;}
.y29f{bottom:787.043100px;}
.y36a{bottom:787.767900px;}
.y175{bottom:788.058900px;}
.y32c{bottom:789.939150px;}
.ye6{bottom:790.562850px;}
.y223{bottom:791.554950px;}
.y3c{bottom:794.373450px;}
.y94{bottom:795.051000px;}
.y247{bottom:798.547050px;}
.y2c6{bottom:799.043100px;}
.y12d{bottom:799.066800px;}
.y309{bottom:799.594050px;}
.y278{bottom:801.051000px;}
.y369{bottom:802.767900px;}
.y1ca{bottom:803.058900px;}
.yc1{bottom:803.361150px;}
.y153{bottom:804.051000px;}
.y32b{bottom:804.939150px;}
.y13{bottom:804.979800px;}
.y174{bottom:806.058900px;}
.y10c{bottom:806.554950px;}
.y68{bottom:807.051000px;}
.y29e{bottom:808.043100px;}
.ye5{bottom:811.562850px;}
.y222{bottom:812.554950px;}
.y3b{bottom:815.373450px;}
.y93{bottom:816.051000px;}
.y6{bottom:816.063300px;}
.y246{bottom:816.547050px;}
.y2c5{bottom:820.043100px;}
.y12c{bottom:820.066800px;}
.y1e2{bottom:821.058900px;}
.yc0{bottom:821.361150px;}
.y368{bottom:822.019800px;}
.y277{bottom:822.051000px;}
.y1c9{bottom:824.058900px;}
.y32a{bottom:824.191200px;}
.y152{bottom:825.051000px;}
.y10b{bottom:827.554950px;}
.y29d{bottom:829.043100px;}
.y308{bottom:829.098000px;}
.y1a8{bottom:832.562850px;}
.y221{bottom:833.554950px;}
.y245{bottom:834.547050px;}
.y3a{bottom:836.373450px;}
.y367{bottom:837.019800px;}
.y92{bottom:837.051000px;}
.y1e1{bottom:839.058900px;}
.y329{bottom:839.191200px;}
.ybf{bottom:839.361150px;}
.y2c4{bottom:841.043100px;}
.ye4{bottom:841.066800px;}
.y151{bottom:846.051000px;}
.y10a{bottom:848.554950px;}
.y202{bottom:849.570750px;}
.y29c{bottom:850.043100px;}
.y307{bottom:850.098000px;}
.y67{bottom:853.562850px;}
.y220{bottom:854.554950px;}
.y366{bottom:856.271850px;}
.y1e0{bottom:857.058900px;}
.y276{bottom:860.058900px;}
.y2c3{bottom:862.043100px;}
.ye3{bottom:862.066800px;}
.y39{bottom:865.877400px;}
.y91{bottom:866.554950px;}
.y244{bottom:869.554950px;}
.y201{bottom:870.570750px;}
.y29b{bottom:871.043100px;}
.y306{bottom:871.098000px;}
.y365{bottom:871.271850px;}
.y12{bottom:872.491650px;}
.ybe{bottom:874.369050px;}
.y66{bottom:874.562850px;}
.y1df{bottom:875.058900px;}
.y275{bottom:878.058900px;}
.y2c2{bottom:883.043100px;}
.ye2{bottom:883.066800px;}
.y150{bottom:884.058900px;}
.y109{bottom:886.562850px;}
.y90{bottom:887.554950px;}
.y328{bottom:890.451000px;}
.y364{bottom:890.523900px;}
.y243{bottom:890.554950px;}
.y200{bottom:891.570750px;}
.y305{bottom:892.098000px;}
.y21f{bottom:892.562850px;}
.y1de{bottom:893.058900px;}
.ybd{bottom:895.369050px;}
.y1c8{bottom:895.562850px;}
.y5{bottom:895.663950px;}
.y274{bottom:896.058900px;}
.y29a{bottom:900.547050px;}
.y14f{bottom:902.058900px;}
.y2c1{bottom:904.043100px;}
.y65{bottom:904.066800px;}
.y108{bottom:904.562850px;}
.y363{bottom:905.523900px;}
.y8f{bottom:908.554950px;}
.y21e{bottom:910.562850px;}
.y1dd{bottom:911.058900px;}
.y242{bottom:911.554950px;}
.y38{bottom:912.389250px;}
.y1ff{bottom:912.570750px;}
.y304{bottom:913.098000px;}
.y273{bottom:914.058900px;}
.ybc{bottom:916.369050px;}
.y1c7{bottom:916.562850px;}
.y14e{bottom:920.058900px;}
.y107{bottom:922.562850px;}
.y362{bottom:924.775800px;}
.y64{bottom:925.066800px;}
.y21d{bottom:928.562850px;}
.y8e{bottom:929.554950px;}
.y272{bottom:932.058900px;}
.y241{bottom:932.554950px;}
.y37{bottom:933.389250px;}
.y2c0{bottom:933.547050px;}
.y1fe{bottom:933.570750px;}
.y303{bottom:934.098000px;}
.ybb{bottom:937.369050px;}
.y1c6{bottom:937.562850px;}
.y14d{bottom:938.058900px;}
.y361{bottom:939.775800px;}
.y106{bottom:940.562850px;}
.y63{bottom:946.066800px;}
.y21c{bottom:946.562850px;}
.y8d{bottom:950.554950px;}
.y240{bottom:953.554950px;}
.y36{bottom:954.389250px;}
.y1fd{bottom:954.570750px;}
.y302{bottom:955.098000px;}
.y299{bottom:955.562850px;}
.y4{bottom:955.663950px;}
.y14c{bottom:956.058900px;}
.yba{bottom:958.369050px;}
.y105{bottom:958.562850px;}
.y360{bottom:959.027850px;}
.y21b{bottom:964.562850px;}
.y62{bottom:967.066800px;}
.y8c{bottom:971.554950px;}
.y298{bottom:973.562850px;}
.y35f{bottom:974.027850px;}
.y14b{bottom:974.058900px;}
.y23f{bottom:974.554950px;}
.y35{bottom:975.389250px;}
.y1fc{bottom:975.570750px;}
.y301{bottom:976.098000px;}
.y104{bottom:976.562850px;}
.yb9{bottom:979.369050px;}
.y1c5{bottom:979.562850px;}
.y21a{bottom:982.562850px;}
.y61{bottom:988.066800px;}
.y2bf{bottom:988.562850px;}
.y35e{bottom:989.027850px;}
.y297{bottom:991.562850px;}
.y8b{bottom:992.554950px;}
.y103{bottom:994.562850px;}
.y34{bottom:996.389250px;}
.ye1{bottom:996.570750px;}
.y300{bottom:997.098000px;}
.y2be{bottom:1006.562850px;}
.y35d{bottom:1008.279750px;}
.yb8{bottom:1008.873000px;}
.y60{bottom:1009.066800px;}
.y102{bottom:1012.562850px;}
.y3{bottom:1015.663950px;}
.y33{bottom:1017.389250px;}
.ye0{bottom:1017.570750px;}
.y2ff{bottom:1018.098000px;}
.y35c{bottom:1023.279750px;}
.y2bd{bottom:1024.562850px;}
.y296{bottom:1027.562850px;}
.yb7{bottom:1029.873000px;}
.y5f{bottom:1030.066800px;}
.y8a{bottom:1030.562850px;}
.y32{bottom:1038.389250px;}
.ydf{bottom:1038.570750px;}
.y2fe{bottom:1039.098000px;}
.y35b{bottom:1042.531800px;}
.y295{bottom:1045.562850px;}
.y89{bottom:1048.562850px;}
.yb6{bottom:1050.873000px;}
.y14a{bottom:1051.066800px;}
.y35a{bottom:1057.531800px;}
.y31{bottom:1059.389250px;}
.y5e{bottom:1059.570750px;}
.y2fd{bottom:1060.098000px;}
.y88{bottom:1066.562850px;}
.y149{bottom:1072.066800px;}
.y2{bottom:1075.663950px;}
.y359{bottom:1076.783700px;}
.y30{bottom:1080.389250px;}
.y5d{bottom:1080.570750px;}
.y2fc{bottom:1081.098000px;}
.yb5{bottom:1088.880750px;}
.y358{bottom:1091.783700px;}
.y5c{bottom:1101.570750px;}
.yb4{bottom:1106.880750px;}
.y357{bottom:1111.035750px;}
.y2f{bottom:1118.397150px;}
.y2fb{bottom:1119.105900px;}
.y5b{bottom:1122.570750px;}
.yb3{bottom:1124.880750px;}
.y356{bottom:1126.035750px;}
.y1{bottom:1135.663950px;}
.y11{bottom:1202.307900px;}
.y10{bottom:1218.507900px;}
.h5{height:27.525600px;}
.h4{height:41.288400px;}
.he{height:42.880000px;}
.h3{height:48.240000px;}
.h8{height:48.276000px;}
.hf{height:48.505500px;}
.h10{height:57.134769px;}
.ha{height:58.960000px;}
.hd{height:59.284500px;}
.h7{height:64.320000px;}
.hc{height:64.674000px;}
.hb{height:66.657231px;}
.h9{height:75.453000px;}
.h6{height:110.095673px;}
.h2{height:225.120000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:28.128900px;}
.x6{left:85.039350px;}
.xe{left:93.543300px;}
.xc{left:112.039350px;}
.x2{left:126.391950px;}
.x1{left:127.559100px;}
.xa{left:131.811000px;}
.xd{left:136.063050px;}
.xb{left:174.330750px;}
.x8{left:447.742200px;}
.x3{left:495.682350px;}
.x4{left:500.584950px;}
.x9{left:581.807550px;}
.x7{left:836.002950px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls3{letter-spacing:-3.567296pt;}
.ls36{letter-spacing:-1.920000pt;}
.ls43{letter-spacing:-0.853333pt;}
.ls24{letter-spacing:-0.586667pt;}
.ls20{letter-spacing:-0.528000pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.469333pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls2{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.293333pt;}
.ls27{letter-spacing:-0.240000pt;}
.ls19{letter-spacing:-0.234667pt;}
.ls16{letter-spacing:-0.176000pt;}
.ls1d{letter-spacing:-0.144000pt;}
.ls44{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.117333pt;}
.ls33{letter-spacing:-0.058667pt;}
.ls38{letter-spacing:-0.048000pt;}
.ls47{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.048000pt;}
.ls31{letter-spacing:0.058667pt;}
.ls3e{letter-spacing:0.085333pt;}
.ls18{letter-spacing:0.117333pt;}
.ls40{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.144000pt;}
.ls2e{letter-spacing:0.170512pt;}
.ls2f{letter-spacing:0.176000pt;}
.ls29{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.205333pt;}
.ls1f{letter-spacing:0.234667pt;}
.ls1a{letter-spacing:0.240000pt;}
.ls34{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.293333pt;}
.ls30{letter-spacing:0.336000pt;}
.ls2b{letter-spacing:0.341712pt;}
.ls12{letter-spacing:0.352000pt;}
.ls32{letter-spacing:0.381333pt;}
.ls48{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.410667pt;}
.ls42{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.469333pt;}
.ls1b{letter-spacing:0.479467pt;}
.ls4{letter-spacing:0.480000pt;}
.ls37{letter-spacing:0.498667pt;}
.ls9{letter-spacing:0.528000pt;}
.ls3f{letter-spacing:0.554667pt;}
.ls7{letter-spacing:0.557333pt;}
.ls5{letter-spacing:0.586667pt;}
.ls2c{letter-spacing:0.616000pt;}
.lsc{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.645333pt;}
.ls22{letter-spacing:0.674667pt;}
.ls15{letter-spacing:0.704000pt;}
.ls3c{letter-spacing:0.720000pt;}
.lsa{letter-spacing:0.746667pt;}
.lse{letter-spacing:0.762667pt;}
.lsd{letter-spacing:0.821333pt;}
.ls1e{letter-spacing:0.880000pt;}
.ls13{letter-spacing:0.938667pt;}
.ls21{letter-spacing:0.997333pt;}
.ls46{letter-spacing:1.024000pt;}
.ls8{letter-spacing:1.056000pt;}
.ls39{letter-spacing:1.085333pt;}
.ls23{letter-spacing:1.114667pt;}
.ls17{letter-spacing:1.173333pt;}
.ls3a{letter-spacing:1.232000pt;}
.ls2d{letter-spacing:1.290667pt;}
.ls35{letter-spacing:1.525333pt;}
.ls3b{letter-spacing:1.613333pt;}
.ls3d{letter-spacing:2.261333pt;}
.ls41{letter-spacing:2.304000pt;}
.ls45{letter-spacing:3.221333pt;}
.ws89{word-spacing:-20.906667pt;}
.ws7c{word-spacing:-17.920000pt;}
.ws83{word-spacing:-17.013333pt;}
.ws36{word-spacing:-16.485333pt;}
.ws2e{word-spacing:-16.426667pt;}
.ws1d{word-spacing:-16.250667pt;}
.ws52{word-spacing:-15.136000pt;}
.ws16{word-spacing:-14.842667pt;}
.ws7d{word-spacing:-14.784000pt;}
.ws82{word-spacing:-14.549333pt;}
.ws7b{word-spacing:-12.144000pt;}
.ws0{word-spacing:-11.184000pt;}
.ws8b{word-spacing:-10.368000pt;}
.ws8c{word-spacing:-9.514667pt;}
.ws1{word-spacing:-8.320000pt;}
.ws6a{word-spacing:-3.989333pt;}
.ws46{word-spacing:-3.754667pt;}
.ws72{word-spacing:-3.461333pt;}
.wsa3{word-spacing:-3.242667pt;}
.ws69{word-spacing:-3.168000pt;}
.ws6f{word-spacing:-2.933333pt;}
.wsc{word-spacing:-2.874667pt;}
.ws45{word-spacing:-2.816000pt;}
.ws2f{word-spacing:-2.757333pt;}
.ws4c{word-spacing:-2.698667pt;}
.ws8a{word-spacing:-2.640000pt;}
.ws25{word-spacing:-2.581333pt;}
.ws5b{word-spacing:-2.464000pt;}
.ws27{word-spacing:-2.448000pt;}
.ws30{word-spacing:-2.405333pt;}
.ws4a{word-spacing:-2.352000pt;}
.ws2d{word-spacing:-2.304000pt;}
.ws31{word-spacing:-2.053333pt;}
.ws7{word-spacing:-1.994667pt;}
.ws7e{word-spacing:-1.968000pt;}
.ws64{word-spacing:-1.936000pt;}
.ws2a{word-spacing:-1.920000pt;}
.ws12{word-spacing:-1.877333pt;}
.ws3f{word-spacing:-1.818667pt;}
.ws4b{word-spacing:-1.776000pt;}
.ws65{word-spacing:-1.760000pt;}
.wsa{word-spacing:-1.642667pt;}
.ws88{word-spacing:-1.584000pt;}
.ws3d{word-spacing:-1.525333pt;}
.ws63{word-spacing:-1.408000pt;}
.ws3c{word-spacing:-1.349333pt;}
.ws62{word-spacing:-1.290667pt;}
.ws85{word-spacing:-1.232000pt;}
.ws23{word-spacing:-1.173333pt;}
.ws41{word-spacing:-1.114667pt;}
.wsd{word-spacing:-1.056000pt;}
.wsa4{word-spacing:-1.024000pt;}
.ws33{word-spacing:-0.997333pt;}
.ws1b{word-spacing:-0.938667pt;}
.ws68{word-spacing:-0.912000pt;}
.ws34{word-spacing:-0.880000pt;}
.ws10{word-spacing:-0.821333pt;}
.ws96{word-spacing:-0.810667pt;}
.ws11{word-spacing:-0.762667pt;}
.ws5{word-spacing:-0.746667pt;}
.ws86{word-spacing:-0.720000pt;}
.ws1c{word-spacing:-0.704000pt;}
.ws9f{word-spacing:-0.682667pt;}
.ws6c{word-spacing:-0.672000pt;}
.ws14{word-spacing:-0.645333pt;}
.ws71{word-spacing:-0.640000pt;}
.ws6{word-spacing:-0.586667pt;}
.ws92{word-spacing:-0.554667pt;}
.wse{word-spacing:-0.528000pt;}
.ws1f{word-spacing:-0.480000pt;}
.ws19{word-spacing:-0.469333pt;}
.ws8e{word-spacing:-0.426667pt;}
.wsb{word-spacing:-0.410667pt;}
.wsa2{word-spacing:-0.384000pt;}
.ws43{word-spacing:-0.352000pt;}
.ws67{word-spacing:-0.336000pt;}
.ws18{word-spacing:-0.293333pt;}
.ws70{word-spacing:-0.288000pt;}
.ws8f{word-spacing:-0.256000pt;}
.ws4f{word-spacing:-0.240000pt;}
.ws35{word-spacing:-0.234667pt;}
.ws4d{word-spacing:-0.192000pt;}
.ws56{word-spacing:-0.176000pt;}
.ws5a{word-spacing:-0.170667pt;}
.ws1e{word-spacing:-0.144000pt;}
.ws9a{word-spacing:-0.128000pt;}
.ws29{word-spacing:-0.117333pt;}
.ws94{word-spacing:-0.085333pt;}
.ws42{word-spacing:-0.058667pt;}
.ws50{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.042667pt;}
.ws7f{word-spacing:0.048000pt;}
.ws51{word-spacing:0.058667pt;}
.ws9d{word-spacing:0.085333pt;}
.ws15{word-spacing:0.117333pt;}
.ws97{word-spacing:0.128000pt;}
.ws2b{word-spacing:0.144000pt;}
.ws17{word-spacing:0.176000pt;}
.ws26{word-spacing:0.234667pt;}
.ws49{word-spacing:0.240000pt;}
.ws8{word-spacing:0.293333pt;}
.ws53{word-spacing:0.352000pt;}
.ws39{word-spacing:0.469333pt;}
.ws3{word-spacing:0.480000pt;}
.wsf{word-spacing:0.528000pt;}
.ws38{word-spacing:0.586667pt;}
.ws84{word-spacing:0.645333pt;}
.ws6e{word-spacing:0.672000pt;}
.ws47{word-spacing:0.704000pt;}
.ws6d{word-spacing:0.768000pt;}
.ws91{word-spacing:0.853333pt;}
.ws81{word-spacing:0.880000pt;}
.wsa1{word-spacing:0.981333pt;}
.ws48{word-spacing:0.997333pt;}
.ws93{word-spacing:1.024000pt;}
.ws60{word-spacing:1.056000pt;}
.ws4e{word-spacing:1.104000pt;}
.ws1a{word-spacing:1.173333pt;}
.ws79{word-spacing:1.232000pt;}
.ws66{word-spacing:1.466667pt;}
.ws9e{word-spacing:1.493333pt;}
.ws32{word-spacing:1.525333pt;}
.ws37{word-spacing:1.536000pt;}
.ws99{word-spacing:1.578667pt;}
.ws57{word-spacing:1.584000pt;}
.ws3a{word-spacing:1.701333pt;}
.ws78{word-spacing:1.920000pt;}
.ws21{word-spacing:1.936000pt;}
.ws54{word-spacing:1.994667pt;}
.ws24{word-spacing:2.053333pt;}
.ws44{word-spacing:2.112000pt;}
.ws3b{word-spacing:2.170667pt;}
.ws98{word-spacing:2.176000pt;}
.ws55{word-spacing:2.229333pt;}
.ws74{word-spacing:2.288000pt;}
.ws9{word-spacing:2.346667pt;}
.ws20{word-spacing:2.405333pt;}
.ws5c{word-spacing:2.581333pt;}
.ws2c{word-spacing:2.698667pt;}
.ws28{word-spacing:2.816000pt;}
.ws75{word-spacing:2.874667pt;}
.ws3e{word-spacing:2.933333pt;}
.ws87{word-spacing:3.109333pt;}
.ws5e{word-spacing:3.344000pt;}
.ws7a{word-spacing:3.504000pt;}
.ws6b{word-spacing:3.520000pt;}
.ws4{word-spacing:3.567296pt;}
.ws59{word-spacing:3.578667pt;}
.ws5f{word-spacing:3.696000pt;}
.ws77{word-spacing:3.840000pt;}
.ws58{word-spacing:3.930667pt;}
.ws73{word-spacing:4.106667pt;}
.ws22{word-spacing:4.165333pt;}
.ws76{word-spacing:4.176000pt;}
.ws40{word-spacing:4.224000pt;}
.ws90{word-spacing:4.266667pt;}
.ws13{word-spacing:4.282667pt;}
.ws9b{word-spacing:4.437333pt;}
.ws95{word-spacing:4.650667pt;}
.ws61{word-spacing:4.752000pt;}
.wsa6{word-spacing:5.034667pt;}
.ws80{word-spacing:5.573333pt;}
.ws5d{word-spacing:7.157333pt;}
.ws9c{word-spacing:10.581333pt;}
.wsa5{word-spacing:11.306667pt;}
.ws8d{word-spacing:20.053333pt;}
._8{margin-left:-15.691200pt;}
._7{margin-left:-10.093867pt;}
._0{margin-left:-8.960000pt;}
._d{margin-left:-6.373333pt;}
._e{margin-left:-5.408000pt;}
._1{margin-left:-3.808000pt;}
._4{margin-left:-2.860800pt;}
._2{margin-left:-1.440000pt;}
._3{width:0.912000pt;}
._6{width:2.272533pt;}
._5{width:3.306667pt;}
._a{width:4.502400pt;}
._9{width:5.505600pt;}
._b{width:6.503467pt;}
._c{width:7.548800pt;}
._11{width:10.501333pt;}
._14{width:11.537067pt;}
._16{width:13.154133pt;}
._12{width:22.636800pt;}
._13{width:23.621333pt;}
._10{width:32.298667pt;}
._15{width:39.479467pt;}
._f{width:54.464000pt;}
.fs2{font-size:32.000000pt;}
.fs8{font-size:34.202667pt;}
.fs9{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:118.909867pt;}
.fs0{font-size:224.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:22.186533pt;}
.y1a7{bottom:75.590533pt;}
.y355{bottom:76.131467pt;}
.y5a{bottom:78.078267pt;}
.y87{bottom:78.239600pt;}
.y18a{bottom:79.583467pt;}
.y12b{bottom:80.024267pt;}
.y148{bottom:82.019067pt;}
.y101{bottom:82.250133pt;}
.y294{bottom:85.357600pt;}
.y173{bottom:85.798533pt;}
.y26d{bottom:86.260533pt;}
.y263{bottom:86.659467pt;}
.y2e1{bottom:89.788133pt;}
.y2bc{bottom:90.229067pt;}
.y23e{bottom:92.013867pt;}
.y354{bottom:93.244267pt;}
.yb2{bottom:93.798533pt;}
.y1a6{bottom:94.488133pt;}
.y271{bottom:95.142400pt;}
.yde{bottom:95.831067pt;}
.y59{bottom:96.744933pt;}
.y86{bottom:96.906267pt;}
.y189{bottom:98.250133pt;}
.y12a{bottom:98.690933pt;}
.y147{bottom:100.685733pt;}
.y100{bottom:100.916800pt;}
.y1fb{bottom:101.357600pt;}
.y172{bottom:101.798533pt;}
.y26c{bottom:104.927200pt;}
.y262{bottom:105.326133pt;}
.y1a5{bottom:106.488133pt;}
.y353{bottom:106.577600pt;}
.y2e0{bottom:108.454800pt;}
.y2bb{bottom:108.895733pt;}
.y219{bottom:108.937733pt;}
.y2fa{bottom:110.260533pt;}
.y23d{bottom:110.680533pt;}
.y270{bottom:111.142400pt;}
.yb1{bottom:112.465200pt;}
.ydd{bottom:114.497733pt;}
.y58{bottom:115.411600pt;}
.y85{bottom:115.572933pt;}
.y188{bottom:116.916800pt;}
.y129{bottom:117.357600pt;}
.y171{bottom:117.798533pt;}
.yff{bottom:119.583467pt;}
.y1fa{bottom:120.024267pt;}
.y26b{bottom:123.593867pt;}
.y352{bottom:123.690533pt;}
.y146{bottom:126.911467pt;}
.y2df{bottom:127.121467pt;}
.y2ba{bottom:127.562400pt;}
.y218{bottom:127.604400pt;}
.y327{bottom:128.073067pt;}
.y2f9{bottom:128.927200pt;}
.y23c{bottom:129.347200pt;}
.y261{bottom:131.551867pt;}
.ydc{bottom:133.164400pt;}
.y293{bottom:133.357600pt;}
.y170{bottom:133.798533pt;}
.y84{bottom:134.239600pt;}
.y187{bottom:135.583467pt;}
.y128{bottom:136.024267pt;}
.y351{bottom:137.023867pt;}
.yfe{bottom:138.250133pt;}
.yb0{bottom:138.690933pt;}
.y1c4{bottom:139.593867pt;}
.y57{bottom:141.637333pt;}
.y1a4{bottom:142.260533pt;}
.y145{bottom:145.578133pt;}
.y2de{bottom:145.788133pt;}
.y1dc{bottom:145.809067pt;}
.y2b9{bottom:146.229067pt;}
.y217{bottom:146.271067pt;}
.y326{bottom:146.739733pt;}
.y2f8{bottom:147.593867pt;}
.y292{bottom:149.357600pt;}
.y16f{bottom:149.798533pt;}
.y260{bottom:150.218533pt;}
.ydb{bottom:151.831067pt;}
.y83{bottom:152.906267pt;}
.y350{bottom:154.136667pt;}
.y186{bottom:154.250133pt;}
.y127{bottom:154.690933pt;}
.y23b{bottom:155.572933pt;}
.yfd{bottom:156.916800pt;}
.yaf{bottom:157.357600pt;}
.y1c3{bottom:158.260533pt;}
.y56{bottom:160.304000pt;}
.y1a3{bottom:160.927200pt;}
.y144{bottom:164.244800pt;}
.y2dd{bottom:164.454800pt;}
.y1db{bottom:164.475733pt;}
.y2b8{bottom:164.895733pt;}
.y216{bottom:164.937733pt;}
.y291{bottom:165.357600pt;}
.y325{bottom:165.406400pt;}
.y16e{bottom:165.798533pt;}
.y2f7{bottom:166.260533pt;}
.y34f{bottom:167.470000pt;}
.y25f{bottom:168.885200pt;}
.yda{bottom:170.497733pt;}
.y82{bottom:171.572933pt;}
.y185{bottom:172.916800pt;}
.y2e{bottom:173.742267pt;}
.yfc{bottom:175.583467pt;}
.yae{bottom:176.024267pt;}
.y1c2{bottom:176.927200pt;}
.y55{bottom:178.970667pt;}
.y1a2{bottom:179.593867pt;}
.y126{bottom:180.916800pt;}
.y16d{bottom:181.798533pt;}
.y143{bottom:182.911467pt;}
.y2dc{bottom:183.121467pt;}
.y1da{bottom:183.142400pt;}
.y215{bottom:183.604400pt;}
.y324{bottom:184.073067pt;}
.y34e{bottom:184.582800pt;}
.y2f6{bottom:184.927200pt;}
.y26f{bottom:187.152933pt;}
.yd9{bottom:189.164400pt;}
.y81{bottom:190.239600pt;}
.y2b7{bottom:191.121467pt;}
.y184{bottom:191.583467pt;}
.y2d{bottom:192.408933pt;}
.yad{bottom:194.690933pt;}
.y25e{bottom:195.110933pt;}
.y1c1{bottom:195.593867pt;}
.y290{bottom:196.475733pt;}
.y23a{bottom:196.916800pt;}
.y54{bottom:197.637333pt;}
.y16c{bottom:197.798533pt;}
.y34d{bottom:197.916133pt;}
.y1a1{bottom:198.260533pt;}
.y125{bottom:199.583467pt;}
.y142{bottom:201.578133pt;}
.y2db{bottom:201.788133pt;}
.yfb{bottom:201.809067pt;}
.y214{bottom:202.271067pt;}
.y323{bottom:202.739733pt;}
.y2f5{bottom:203.593867pt;}
.y26a{bottom:205.819600pt;}
.y1d9{bottom:209.368133pt;}
.y2b6{bottom:209.788133pt;}
.y183{bottom:210.250133pt;}
.y2c{bottom:211.075600pt;}
.yac{bottom:213.357600pt;}
.y25d{bottom:213.777600pt;}
.y1c0{bottom:214.260533pt;}
.y34c{bottom:215.029067pt;}
.y28f{bottom:215.142400pt;}
.yd8{bottom:215.390133pt;}
.y239{bottom:215.583467pt;}
.y53{bottom:216.304000pt;}
.y80{bottom:216.465200pt;}
.y1a0{bottom:216.927200pt;}
.y124{bottom:218.250133pt;}
.y141{bottom:220.244800pt;}
.y2da{bottom:220.454800pt;}
.yfa{bottom:220.475733pt;}
.y1f9{bottom:220.916800pt;}
.y213{bottom:220.937733pt;}
.y322{bottom:221.406400pt;}
.yc{bottom:221.784800pt;}
.y2f4{bottom:222.260533pt;}
.y269{bottom:224.486267pt;}
.y34b{bottom:228.362400pt;}
.y2b5{bottom:228.454800pt;}
.y16b{bottom:228.916800pt;}
.yab{bottom:232.024267pt;}
.y25c{bottom:232.444267pt;}
.y1bf{bottom:232.927200pt;}
.y28e{bottom:233.809067pt;}
.y238{bottom:234.250133pt;}
.y52{bottom:234.970667pt;}
.y19f{bottom:235.593867pt;}
.y182{bottom:236.475733pt;}
.y123{bottom:236.916800pt;}
.y2b{bottom:237.301333pt;}
.y140{bottom:238.911467pt;}
.y2d9{bottom:239.121467pt;}
.yf9{bottom:239.142400pt;}
.y212{bottom:239.604400pt;}
.yb{bottom:240.230933pt;}
.y2f3{bottom:240.927200pt;}
.y268{bottom:243.152933pt;}
.y34a{bottom:245.475200pt;}
.y2b4{bottom:247.121467pt;}
.y16a{bottom:247.583467pt;}
.y321{bottom:247.632133pt;}
.yaa{bottom:250.690933pt;}
.y1d8{bottom:250.712000pt;}
.y25b{bottom:251.110933pt;}
.y1be{bottom:251.593867pt;}
.y237{bottom:252.916800pt;}
.y51{bottom:253.637333pt;}
.y19e{bottom:254.260533pt;}
.y181{bottom:255.142400pt;}
.y2a{bottom:255.968000pt;}
.yd7{bottom:256.734000pt;}
.y13f{bottom:257.578133pt;}
.y2d8{bottom:257.788133pt;}
.y7f{bottom:257.809067pt;}
.y211{bottom:258.271067pt;}
.ya{bottom:258.677200pt;}
.y349{bottom:258.808533pt;}
.y2f2{bottom:259.593867pt;}
.y28d{bottom:260.034800pt;}
.y267{bottom:261.819600pt;}
.y1f8{bottom:262.260533pt;}
.y2b3{bottom:265.788133pt;}
.y169{bottom:266.250133pt;}
.y320{bottom:266.298800pt;}
.ya9{bottom:269.357600pt;}
.y1d7{bottom:269.378667pt;}
.y25a{bottom:269.777600pt;}
.y1bd{bottom:270.260533pt;}
.y122{bottom:270.701467pt;}
.y348{bottom:272.141867pt;}
.y180{bottom:273.809067pt;}
.y29{bottom:274.634667pt;}
.yd6{bottom:275.400667pt;}
.y13e{bottom:276.244800pt;}
.y7e{bottom:276.475733pt;}
.y210{bottom:276.937733pt;}
.y9{bottom:277.123333pt;}
.y2f1{bottom:278.260533pt;}
.y28c{bottom:278.701467pt;}
.y236{bottom:279.142400pt;}
.y50{bottom:279.863067pt;}
.y19d{bottom:280.486267pt;}
.y1f7{bottom:280.927200pt;}
.y2d7{bottom:284.013867pt;}
.yf8{bottom:284.034800pt;}
.y168{bottom:284.916800pt;}
.y31f{bottom:284.965467pt;}
.y121{bottom:286.701467pt;}
.ya8{bottom:288.024267pt;}
.y1d6{bottom:288.045333pt;}
.y1bc{bottom:288.927200pt;}
.y347{bottom:289.254800pt;}
.y2b2{bottom:292.013867pt;}
.y17f{bottom:292.475733pt;}
.y28{bottom:293.301333pt;}
.yd5{bottom:294.067333pt;}
.y13d{bottom:294.911467pt;}
.y7d{bottom:295.142400pt;}
.y8{bottom:295.569600pt;}
.y20f{bottom:295.604400pt;}
.y259{bottom:296.003333pt;}
.y28b{bottom:297.368133pt;}
.y235{bottom:297.809067pt;}
.y4f{bottom:298.529733pt;}
.y1f6{bottom:299.593867pt;}
.y2d6{bottom:302.680533pt;}
.yf7{bottom:302.701467pt;}
.y31e{bottom:303.632133pt;}
.y2f0{bottom:304.486267pt;}
.y346{bottom:306.367733pt;}
.ya7{bottom:306.690933pt;}
.y1d5{bottom:306.712000pt;}
.y1bb{bottom:307.593867pt;}
.y2b1{bottom:310.680533pt;}
.y167{bottom:311.142400pt;}
.y27{bottom:311.968000pt;}
.yd4{bottom:312.734000pt;}
.y13c{bottom:313.578133pt;}
.y7c{bottom:313.809067pt;}
.y7{bottom:314.015733pt;}
.y20e{bottom:314.271067pt;}
.y258{bottom:314.670000pt;}
.y28a{bottom:316.034800pt;}
.y234{bottom:316.475733pt;}
.y1f5{bottom:318.260533pt;}
.y120{bottom:318.701467pt;}
.y345{bottom:319.701067pt;}
.y2d5{bottom:321.347200pt;}
.yf6{bottom:321.368133pt;}
.y19c{bottom:321.830133pt;}
.y31d{bottom:322.298800pt;}
.y2ef{bottom:323.152933pt;}
.y4e{bottom:324.755467pt;}
.ya6{bottom:325.357600pt;}
.y1d4{bottom:325.378667pt;}
.y1ba{bottom:326.260533pt;}
.y2b0{bottom:329.347200pt;}
.y166{bottom:329.809067pt;}
.yd3{bottom:331.400667pt;}
.yd{bottom:332.107867pt;}
.y13b{bottom:332.244800pt;}
.y20d{bottom:332.937733pt;}
.y344{bottom:333.034267pt;}
.y11f{bottom:334.701467pt;}
.y233{bottom:335.142400pt;}
.y1f4{bottom:336.927200pt;}
.y26{bottom:338.193733pt;}
.y2d4{bottom:340.013867pt;}
.y7b{bottom:340.034800pt;}
.y19b{bottom:340.496800pt;}
.y257{bottom:340.895733pt;}
.y31c{bottom:340.965467pt;}
.y2ee{bottom:341.819600pt;}
.ya5{bottom:344.024267pt;}
.y1d3{bottom:344.045333pt;}
.y1b9{bottom:344.927200pt;}
.y165{bottom:348.475733pt;}
.yd2{bottom:350.067333pt;}
.y343{bottom:350.147200pt;}
.y20c{bottom:351.604400pt;}
.y289{bottom:353.368133pt;}
.y2af{bottom:355.572933pt;}
.y1f3{bottom:355.593867pt;}
.y25{bottom:356.860400pt;}
.ye{bottom:356.916933pt;}
.y13a{bottom:358.470533pt;}
.y2d3{bottom:358.680533pt;}
.y7a{bottom:358.701467pt;}
.y19a{bottom:359.163467pt;}
.y31b{bottom:359.632133pt;}
.y2ed{bottom:360.486267pt;}
.y232{bottom:361.368133pt;}
.ya4{bottom:362.690933pt;}
.y1d2{bottom:362.712000pt;}
.y342{bottom:363.480533pt;}
.y1b8{bottom:363.593867pt;}
.y11e{bottom:365.819600pt;}
.y4d{bottom:366.099333pt;}
.y164{bottom:367.142400pt;}
.yd1{bottom:368.734000pt;}
.y20b{bottom:370.271067pt;}
.y288{bottom:372.034800pt;}
.y2ae{bottom:374.239600pt;}
.y1f2{bottom:374.260533pt;}
.y24{bottom:375.527067pt;}
.y79{bottom:377.368133pt;}
.y199{bottom:377.830133pt;}
.y31a{bottom:378.298800pt;}
.y2ec{bottom:379.152933pt;}
.y231{bottom:380.034800pt;}
.y341{bottom:380.593333pt;}
.ya3{bottom:381.357600pt;}
.y1d1{bottom:381.378667pt;}
.y256{bottom:382.239600pt;}
.y1b7{bottom:382.260533pt;}
.y11d{bottom:384.486267pt;}
.y4c{bottom:384.766000pt;}
.y2d2{bottom:384.906267pt;}
.yf5{bottom:384.927200pt;}
.y163{bottom:385.809067pt;}
.yd0{bottom:387.400667pt;}
.y20a{bottom:388.937733pt;}
.y287{bottom:390.701467pt;}
.y2ad{bottom:392.906267pt;}
.y340{bottom:393.926667pt;}
.y78{bottom:396.034800pt;}
.y198{bottom:396.496800pt;}
.y2eb{bottom:397.819600pt;}
.y230{bottom:398.701467pt;}
.y139{bottom:399.814400pt;}
.ya2{bottom:400.024267pt;}
.y1d0{bottom:400.045333pt;}
.y1f1{bottom:400.486267pt;}
.y1b6{bottom:400.927200pt;}
.y23{bottom:401.752800pt;}
.y11c{bottom:403.152933pt;}
.y4b{bottom:403.432667pt;}
.y162{bottom:404.475733pt;}
.y319{bottom:404.524533pt;}
.ycf{bottom:406.067333pt;}
.y33f{bottom:407.260000pt;}
.y26e{bottom:407.604400pt;}
.y2ac{bottom:411.572933pt;}
.y197{bottom:415.163467pt;}
.y2ea{bottom:416.486267pt;}
.y286{bottom:416.927200pt;}
.y22f{bottom:417.368133pt;}
.y138{bottom:418.481067pt;}
.y1cf{bottom:418.712000pt;}
.y1f0{bottom:419.152933pt;}
.y1b5{bottom:419.593867pt;}
.y22{bottom:420.419467pt;}
.y11b{bottom:421.819600pt;}
.y4a{bottom:422.099333pt;}
.y77{bottom:422.260533pt;}
.y161{bottom:423.142400pt;}
.y318{bottom:423.191200pt;}
.y33e{bottom:424.372933pt;}
.yce{bottom:424.734000pt;}
.ya1{bottom:426.250133pt;}
.yf4{bottom:426.271067pt;}
.y2ab{bottom:430.239600pt;}
.y196{bottom:433.830133pt;}
.y285{bottom:435.593867pt;}
.y22e{bottom:436.034800pt;}
.y33d{bottom:437.706267pt;}
.y1ef{bottom:437.819600pt;}
.y1b4{bottom:438.260533pt;}
.y255{bottom:438.701467pt;}
.y21{bottom:439.086133pt;}
.y11a{bottom:440.486267pt;}
.y76{bottom:440.927200pt;}
.y160{bottom:441.809067pt;}
.y317{bottom:441.857867pt;}
.ya0{bottom:444.916800pt;}
.yf3{bottom:444.937733pt;}
.y49{bottom:448.324933pt;}
.y2aa{bottom:448.906267pt;}
.y2e9{bottom:450.271067pt;}
.y209{bottom:452.496800pt;}
.y284{bottom:454.260533pt;}
.y22d{bottom:454.701467pt;}
.y33c{bottom:454.819067pt;}
.y1b3{bottom:456.927200pt;}
.y254{bottom:457.368133pt;}
.y20{bottom:457.752800pt;}
.ycd{bottom:458.518800pt;}
.y119{bottom:459.152933pt;}
.y75{bottom:459.593867pt;}
.y195{bottom:460.055867pt;}
.y15f{bottom:460.475733pt;}
.y316{bottom:460.524533pt;}
.y9f{bottom:463.583467pt;}
.yf2{bottom:463.604400pt;}
.y1ee{bottom:464.045333pt;}
.y2e8{bottom:466.271067pt;}
.y48{bottom:466.991600pt;}
.y33b{bottom:468.152400pt;}
.y208{bottom:471.163467pt;}
.y283{bottom:472.927200pt;}
.y2a9{bottom:475.132000pt;}
.y253{bottom:476.034800pt;}
.y1f{bottom:476.419467pt;}
.y118{bottom:477.819600pt;}
.y74{bottom:478.260533pt;}
.y194{bottom:478.722533pt;}
.y15e{bottom:479.142400pt;}
.y315{bottom:479.191200pt;}
.y137{bottom:482.040133pt;}
.y2d1{bottom:482.250133pt;}
.yf1{bottom:482.271067pt;}
.y1ed{bottom:482.712000pt;}
.y33a{bottom:485.265333pt;}
.y47{bottom:485.658267pt;}
.y22c{bottom:488.486267pt;}
.y9e{bottom:489.809067pt;}
.y207{bottom:489.830133pt;}
.y1b2{bottom:490.712000pt;}
.y282{bottom:491.593867pt;}
.y2a8{bottom:493.798667pt;}
.y252{bottom:494.701467pt;}
.y1e{bottom:495.086133pt;}
.y117{bottom:496.486267pt;}
.y73{bottom:496.927200pt;}
.y193{bottom:497.389200pt;}
.y15d{bottom:497.809067pt;}
.y314{bottom:497.857867pt;}
.y2e7{bottom:498.271067pt;}
.y339{bottom:498.598667pt;}
.y2d0{bottom:500.916800pt;}
.yf0{bottom:500.937733pt;}
.y1ec{bottom:501.378667pt;}
.y46{bottom:504.324933pt;}
.y136{bottom:504.486267pt;}
.y17e{bottom:505.368133pt;}
.y1b1{bottom:506.712000pt;}
.y206{bottom:508.496800pt;}
.y2a7{bottom:512.465333pt;}
.y251{bottom:513.368133pt;}
.y1d{bottom:513.752800pt;}
.y2e6{bottom:514.271067pt;}
.ycc{bottom:514.980667pt;}
.y116{bottom:515.152933pt;}
.y72{bottom:515.593867pt;}
.y338{bottom:515.711467pt;}
.y192{bottom:516.055867pt;}
.y15c{bottom:516.475733pt;}
.y281{bottom:517.819600pt;}
.y2cf{bottom:519.583467pt;}
.yef{bottom:519.604400pt;}
.y1eb{bottom:520.045333pt;}
.y22b{bottom:520.486267pt;}
.y1b0{bottom:522.712000pt;}
.y45{bottom:522.991600pt;}
.y313{bottom:524.083600pt;}
.y205{bottom:527.163467pt;}
.y337{bottom:529.044800pt;}
.y135{bottom:530.712000pt;}
.y2a6{bottom:531.132000pt;}
.y9d{bottom:531.152933pt;}
.y250{bottom:532.034800pt;}
.ycb{bottom:533.647333pt;}
.y71{bottom:534.260533pt;}
.y191{bottom:534.722533pt;}
.y15b{bottom:535.142400pt;}
.y22a{bottom:536.486267pt;}
.yee{bottom:538.271067pt;}
.y1af{bottom:538.712000pt;}
.y1c{bottom:539.978533pt;}
.y115{bottom:541.378667pt;}
.y312{bottom:542.750267pt;}
.y2ce{bottom:545.809067pt;}
.y204{bottom:545.830133pt;}
.y336{bottom:546.157733pt;}
.y2e5{bottom:546.271067pt;}
.y17d{bottom:546.712000pt;}
.y44{bottom:549.217467pt;}
.y134{bottom:549.378667pt;}
.y2a5{bottom:549.798667pt;}
.y9c{bottom:549.819600pt;}
.y24f{bottom:550.701467pt;}
.yca{bottom:552.314000pt;}
.y229{bottom:552.486267pt;}
.y190{bottom:553.389200pt;}
.y15a{bottom:553.809067pt;}
.y1ae{bottom:554.712000pt;}
.y280{bottom:555.152933pt;}
.yed{bottom:556.937733pt;}
.y1ea{bottom:557.378667pt;}
.y1b{bottom:558.645200pt;}
.y335{bottom:559.491067pt;}
.y114{bottom:560.045333pt;}
.y70{bottom:560.486267pt;}
.y311{bottom:561.416933pt;}
.y2e4{bottom:562.271067pt;}
.y2cd{bottom:564.475733pt;}
.y266{bottom:564.496800pt;}
.y17c{bottom:565.378667pt;}
.y43{bottom:567.884133pt;}
.y133{bottom:568.045333pt;}
.y2a4{bottom:568.465333pt;}
.y9b{bottom:568.486267pt;}
.y24e{bottom:569.368133pt;}
.y1ad{bottom:570.712000pt;}
.y18f{bottom:572.055867pt;}
.y159{bottom:572.475733pt;}
.y27f{bottom:573.819600pt;}
.y1ce{bottom:575.604400pt;}
.y1e9{bottom:576.045333pt;}
.y334{bottom:576.603867pt;}
.y1a{bottom:577.311867pt;}
.y2e3{bottom:578.271067pt;}
.y113{bottom:578.712000pt;}
.y6f{bottom:579.152933pt;}
.y310{bottom:580.083600pt;}
.y2cc{bottom:583.142400pt;}
.yec{bottom:583.163467pt;}
.y17b{bottom:584.045333pt;}
.y228{bottom:584.486267pt;}
.yc9{bottom:586.098800pt;}
.y42{bottom:586.550800pt;}
.y132{bottom:586.712000pt;}
.y2a3{bottom:587.132000pt;}
.y9a{bottom:587.152933pt;}
.y24d{bottom:588.034800pt;}
.y333{bottom:589.937200pt;}
.y18e{bottom:590.722533pt;}
.y158{bottom:591.142400pt;}
.y27e{bottom:592.486267pt;}
.y1cd{bottom:594.271067pt;}
.y1e8{bottom:594.712000pt;}
.y19{bottom:595.978533pt;}
.y112{bottom:597.378667pt;}
.y6e{bottom:597.819600pt;}
.y30f{bottom:598.750267pt;}
.y227{bottom:600.486267pt;}
.yeb{bottom:601.830133pt;}
.yc8{bottom:602.098800pt;}
.y17a{bottom:602.712000pt;}
.y41{bottom:605.217467pt;}
.y131{bottom:605.378667pt;}
.y99{bottom:605.819600pt;}
.y24c{bottom:606.701467pt;}
.y332{bottom:607.050000pt;}
.y2cb{bottom:609.368133pt;}
.y203{bottom:609.389200pt;}
.y157{bottom:609.809067pt;}
.y1cc{bottom:612.937733pt;}
.y2a2{bottom:613.357600pt;}
.y1e7{bottom:613.378667pt;}
.y18{bottom:614.645200pt;}
.y111{bottom:616.045333pt;}
.y6d{bottom:616.486267pt;}
.y18d{bottom:616.948267pt;}
.y30e{bottom:617.416933pt;}
.yc7{bottom:618.098800pt;}
.y27d{bottom:618.712000pt;}
.y331{bottom:620.383333pt;}
.yea{bottom:620.496800pt;}
.y40{bottom:623.884133pt;}
.y98{bottom:624.486267pt;}
.y24b{bottom:625.368133pt;}
.y2ca{bottom:628.034800pt;}
.y2e2{bottom:628.055867pt;}
.y130{bottom:631.604400pt;}
.y1e6{bottom:632.045333pt;}
.yc6{bottom:634.098800pt;}
.y110{bottom:634.712000pt;}
.y6c{bottom:635.152933pt;}
.y36e{bottom:635.566267pt;}
.y18c{bottom:635.614933pt;}
.y156{bottom:636.034800pt;}
.y30d{bottom:636.083600pt;}
.y179{bottom:636.496800pt;}
.y27c{bottom:637.378667pt;}
.y330{bottom:637.496267pt;}
.y1ac{bottom:639.163467pt;}
.y17{bottom:640.870933pt;}
.y3f{bottom:642.550800pt;}
.ye9{bottom:642.942933pt;}
.y97{bottom:643.152933pt;}
.y24a{bottom:644.034800pt;}
.y2c9{bottom:646.701467pt;}
.y265{bottom:646.722533pt;}
.y226{bottom:647.604400pt;}
.yc5{bottom:650.098800pt;}
.y1cb{bottom:650.271067pt;}
.y178{bottom:652.496800pt;}
.y36d{bottom:652.679067pt;}
.y10f{bottom:653.378667pt;}
.y6b{bottom:653.819600pt;}
.y18b{bottom:654.281600pt;}
.y32f{bottom:654.609067pt;}
.y2a1{bottom:654.701467pt;}
.y30c{bottom:654.750267pt;}
.y27b{bottom:656.045333pt;}
.y1ab{bottom:657.830133pt;}
.y16{bottom:659.537600pt;}
.ye8{bottom:661.609600pt;}
.y2c8{bottom:665.368133pt;}
.y264{bottom:665.389200pt;}
.y1e5{bottom:665.830133pt;}
.y36c{bottom:666.012400pt;}
.yc4{bottom:666.098800pt;}
.y225{bottom:666.271067pt;}
.y32e{bottom:667.942400pt;}
.y177{bottom:668.496800pt;}
.y3e{bottom:668.776400pt;}
.y96{bottom:669.378667pt;}
.y6a{bottom:672.486267pt;}
.y12f{bottom:672.948267pt;}
.y2a0{bottom:673.368133pt;}
.y30b{bottom:673.416933pt;}
.y27a{bottom:674.712000pt;}
.y1aa{bottom:676.496800pt;}
.y155{bottom:677.378667pt;}
.y249{bottom:677.819600pt;}
.y15{bottom:678.204267pt;}
.y10e{bottom:679.604400pt;}
.y1e4{bottom:681.830133pt;}
.yc3{bottom:682.098800pt;}
.y36b{bottom:683.125333pt;}
.y2c7{bottom:684.034800pt;}
.ye7{bottom:684.055867pt;}
.y176{bottom:684.496800pt;}
.y224{bottom:684.937733pt;}
.y32d{bottom:685.055333pt;}
.y3d{bottom:687.443067pt;}
.y95{bottom:688.045333pt;}
.y69{bottom:691.152933pt;}
.y12e{bottom:691.614933pt;}
.y30a{bottom:692.083600pt;}
.y279{bottom:693.378667pt;}
.y248{bottom:693.819600pt;}
.y1a9{bottom:695.163467pt;}
.y154{bottom:696.045333pt;}
.y14{bottom:696.870933pt;}
.y1e3{bottom:697.830133pt;}
.yc2{bottom:698.098800pt;}
.y10d{bottom:698.271067pt;}
.y29f{bottom:699.593867pt;}
.y36a{bottom:700.238133pt;}
.y175{bottom:700.496800pt;}
.y32c{bottom:702.168133pt;}
.ye6{bottom:702.722533pt;}
.y223{bottom:703.604400pt;}
.y3c{bottom:706.109733pt;}
.y94{bottom:706.712000pt;}
.y247{bottom:709.819600pt;}
.y2c6{bottom:710.260533pt;}
.y12d{bottom:710.281600pt;}
.y309{bottom:710.750267pt;}
.y278{bottom:712.045333pt;}
.y369{bottom:713.571467pt;}
.y1ca{bottom:713.830133pt;}
.yc1{bottom:714.098800pt;}
.y153{bottom:714.712000pt;}
.y32b{bottom:715.501467pt;}
.y13{bottom:715.537600pt;}
.y174{bottom:716.496800pt;}
.y10c{bottom:716.937733pt;}
.y68{bottom:717.378667pt;}
.y29e{bottom:718.260533pt;}
.ye5{bottom:721.389200pt;}
.y222{bottom:722.271067pt;}
.y3b{bottom:724.776400pt;}
.y93{bottom:725.378667pt;}
.y6{bottom:725.389600pt;}
.y246{bottom:725.819600pt;}
.y2c5{bottom:728.927200pt;}
.y12c{bottom:728.948267pt;}
.y1e2{bottom:729.830133pt;}
.yc0{bottom:730.098800pt;}
.y368{bottom:730.684267pt;}
.y277{bottom:730.712000pt;}
.y1c9{bottom:732.496800pt;}
.y32a{bottom:732.614400pt;}
.y152{bottom:733.378667pt;}
.y10b{bottom:735.604400pt;}
.y29d{bottom:736.927200pt;}
.y308{bottom:736.976000pt;}
.y1a8{bottom:740.055867pt;}
.y221{bottom:740.937733pt;}
.y245{bottom:741.819600pt;}
.y3a{bottom:743.443067pt;}
.y367{bottom:744.017600pt;}
.y92{bottom:744.045333pt;}
.y1e1{bottom:745.830133pt;}
.y329{bottom:745.947733pt;}
.ybf{bottom:746.098800pt;}
.y2c4{bottom:747.593867pt;}
.ye4{bottom:747.614933pt;}
.y151{bottom:752.045333pt;}
.y10a{bottom:754.271067pt;}
.y202{bottom:755.174000pt;}
.y29c{bottom:755.593867pt;}
.y307{bottom:755.642667pt;}
.y67{bottom:758.722533pt;}
.y220{bottom:759.604400pt;}
.y366{bottom:761.130533pt;}
.y1e0{bottom:761.830133pt;}
.y276{bottom:764.496800pt;}
.y2c3{bottom:766.260533pt;}
.ye3{bottom:766.281600pt;}
.y39{bottom:769.668800pt;}
.y91{bottom:770.271067pt;}
.y244{bottom:772.937733pt;}
.y201{bottom:773.840667pt;}
.y29b{bottom:774.260533pt;}
.y306{bottom:774.309333pt;}
.y365{bottom:774.463867pt;}
.y12{bottom:775.548133pt;}
.ybe{bottom:777.216933pt;}
.y66{bottom:777.389200pt;}
.y1df{bottom:777.830133pt;}
.y275{bottom:780.496800pt;}
.y2c2{bottom:784.927200pt;}
.ye2{bottom:784.948267pt;}
.y150{bottom:785.830133pt;}
.y109{bottom:788.055867pt;}
.y90{bottom:788.937733pt;}
.y328{bottom:791.512000pt;}
.y364{bottom:791.576800pt;}
.y243{bottom:791.604400pt;}
.y200{bottom:792.507333pt;}
.y305{bottom:792.976000pt;}
.y21f{bottom:793.389200pt;}
.y1de{bottom:793.830133pt;}
.ybd{bottom:795.883600pt;}
.y1c8{bottom:796.055867pt;}
.y5{bottom:796.145733pt;}
.y274{bottom:796.496800pt;}
.y29a{bottom:800.486267pt;}
.y14f{bottom:801.830133pt;}
.y2c1{bottom:803.593867pt;}
.y65{bottom:803.614933pt;}
.y108{bottom:804.055867pt;}
.y363{bottom:804.910133pt;}
.y8f{bottom:807.604400pt;}
.y21e{bottom:809.389200pt;}
.y1dd{bottom:809.830133pt;}
.y242{bottom:810.271067pt;}
.y38{bottom:811.012667pt;}
.y1ff{bottom:811.174000pt;}
.y304{bottom:811.642667pt;}
.y273{bottom:812.496800pt;}
.ybc{bottom:814.550267pt;}
.y1c7{bottom:814.722533pt;}
.y14e{bottom:817.830133pt;}
.y107{bottom:820.055867pt;}
.y362{bottom:822.022933pt;}
.y64{bottom:822.281600pt;}
.y21d{bottom:825.389200pt;}
.y8e{bottom:826.271067pt;}
.y272{bottom:828.496800pt;}
.y241{bottom:828.937733pt;}
.y37{bottom:829.679333pt;}
.y2c0{bottom:829.819600pt;}
.y1fe{bottom:829.840667pt;}
.y303{bottom:830.309333pt;}
.ybb{bottom:833.216933pt;}
.y1c6{bottom:833.389200pt;}
.y14d{bottom:833.830133pt;}
.y361{bottom:835.356267pt;}
.y106{bottom:836.055867pt;}
.y63{bottom:840.948267pt;}
.y21c{bottom:841.389200pt;}
.y8d{bottom:844.937733pt;}
.y240{bottom:847.604400pt;}
.y36{bottom:848.346000pt;}
.y1fd{bottom:848.507333pt;}
.y302{bottom:848.976000pt;}
.y299{bottom:849.389200pt;}
.y4{bottom:849.479067pt;}
.y14c{bottom:849.830133pt;}
.yba{bottom:851.883600pt;}
.y105{bottom:852.055867pt;}
.y360{bottom:852.469200pt;}
.y21b{bottom:857.389200pt;}
.y62{bottom:859.614933pt;}
.y8c{bottom:863.604400pt;}
.y298{bottom:865.389200pt;}
.y35f{bottom:865.802533pt;}
.y14b{bottom:865.830133pt;}
.y23f{bottom:866.271067pt;}
.y35{bottom:867.012667pt;}
.y1fc{bottom:867.174000pt;}
.y301{bottom:867.642667pt;}
.y104{bottom:868.055867pt;}
.yb9{bottom:870.550267pt;}
.y1c5{bottom:870.722533pt;}
.y21a{bottom:873.389200pt;}
.y61{bottom:878.281600pt;}
.y2bf{bottom:878.722533pt;}
.y35e{bottom:879.135867pt;}
.y297{bottom:881.389200pt;}
.y8b{bottom:882.271067pt;}
.y103{bottom:884.055867pt;}
.y34{bottom:885.679333pt;}
.ye1{bottom:885.840667pt;}
.y300{bottom:886.309333pt;}
.y2be{bottom:894.722533pt;}
.y35d{bottom:896.248667pt;}
.yb8{bottom:896.776000pt;}
.y60{bottom:896.948267pt;}
.y102{bottom:900.055867pt;}
.y3{bottom:902.812400pt;}
.y33{bottom:904.346000pt;}
.ye0{bottom:904.507333pt;}
.y2ff{bottom:904.976000pt;}
.y35c{bottom:909.582000pt;}
.y2bd{bottom:910.722533pt;}
.y296{bottom:913.389200pt;}
.yb7{bottom:915.442667pt;}
.y5f{bottom:915.614933pt;}
.y8a{bottom:916.055867pt;}
.y32{bottom:923.012667pt;}
.ydf{bottom:923.174000pt;}
.y2fe{bottom:923.642667pt;}
.y35b{bottom:926.694933pt;}
.y295{bottom:929.389200pt;}
.y89{bottom:932.055867pt;}
.yb6{bottom:934.109333pt;}
.y14a{bottom:934.281600pt;}
.y35a{bottom:940.028267pt;}
.y31{bottom:941.679333pt;}
.y5e{bottom:941.840667pt;}
.y2fd{bottom:942.309333pt;}
.y88{bottom:948.055867pt;}
.y149{bottom:952.948267pt;}
.y2{bottom:956.145733pt;}
.y359{bottom:957.141067pt;}
.y30{bottom:960.346000pt;}
.y5d{bottom:960.507333pt;}
.y2fc{bottom:960.976000pt;}
.yb5{bottom:967.894000pt;}
.y358{bottom:970.474400pt;}
.y5c{bottom:979.174000pt;}
.yb4{bottom:983.894000pt;}
.y357{bottom:987.587333pt;}
.y2f{bottom:994.130800pt;}
.y2fb{bottom:994.760800pt;}
.y5b{bottom:997.840667pt;}
.yb3{bottom:999.894000pt;}
.y356{bottom:1000.920667pt;}
.y1{bottom:1009.479067pt;}
.y11{bottom:1068.718133pt;}
.y10{bottom:1083.118133pt;}
.h5{height:24.467200pt;}
.h4{height:36.700800pt;}
.he{height:38.115556pt;}
.h3{height:42.880000pt;}
.h8{height:42.912000pt;}
.hf{height:43.116000pt;}
.h10{height:50.786462pt;}
.ha{height:52.408889pt;}
.hd{height:52.697333pt;}
.h7{height:57.173333pt;}
.hc{height:57.488000pt;}
.hb{height:59.250872pt;}
.h9{height:67.069333pt;}
.h6{height:97.862820pt;}
.h2{height:200.106667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:25.003467pt;}
.x6{left:75.590533pt;}
.xe{left:83.149600pt;}
.xc{left:99.590533pt;}
.x2{left:112.348400pt;}
.x1{left:113.385867pt;}
.xa{left:117.165333pt;}
.xd{left:120.944933pt;}
.xb{left:154.960667pt;}
.x8{left:397.993067pt;}
.x3{left:440.606533pt;}
.x4{left:444.964400pt;}
.x9{left:517.162267pt;}
.x7{left:743.113733pt;}
}




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