
    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_19139e129687abc359ee08ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_f8f4030f79669903f49a0b7f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.701000;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_24c13348dbd3f685fbc45859.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.203000;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_c0c81e8b874bed4802604470.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_e1952ff374dbc1c712a1f353.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_401eafaeebe2408d04dbde69.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.268000;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_091d956a57c594a67749ae9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.349000;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_ab22285a65191afce73a3d1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910000;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_bc00e4081f62fc32b1f787e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946000;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_4d20593f29dace144a548e3b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.362000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c3b92c7fa02441b14614349c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.200885;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_04df55c189f745d475bb63e6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.668000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_73a6a96f6837f2a107383b86.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.225182;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3c10f019a1e424d979b416ef.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.384000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.735962px;}
.v2{vertical-align:-18.359985px;}
.v4{vertical-align:-10.819811px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.209982px;}
.ls56{letter-spacing:-1.836000px;}
.ls55{letter-spacing:-1.404000px;}
.ls82{letter-spacing:-1.368900px;}
.ls8a{letter-spacing:-1.296000px;}
.ls8e{letter-spacing:-1.242000px;}
.ls16{letter-spacing:-1.224000px;}
.ls4b{letter-spacing:-1.134000px;}
.ls58{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-1.020000px;}
.ls4c{letter-spacing:-0.972000px;}
.ls57{letter-spacing:-0.918000px;}
.ls28{letter-spacing:-0.864000px;}
.lsa6{letter-spacing:-0.855000px;}
.ls8b{letter-spacing:-0.842400px;}
.ls88{letter-spacing:-0.810000px;}
.ls8d{letter-spacing:-0.807300px;}
.lsa1{letter-spacing:-0.765000px;}
.ls8c{letter-spacing:-0.756000px;}
.ls76{letter-spacing:-0.737100px;}
.ls9e{letter-spacing:-0.720000px;}
.ls89{letter-spacing:-0.702000px;}
.ls75{letter-spacing:-0.666900px;}
.ls50{letter-spacing:-0.648000px;}
.ls78{letter-spacing:-0.631800px;}
.lsa5{letter-spacing:-0.630000px;}
.ls54{letter-spacing:-0.596700px;}
.ls35{letter-spacing:-0.594000px;}
.ls77{letter-spacing:-0.561600px;}
.ls84{letter-spacing:-0.540000px;}
.ls73{letter-spacing:-0.491400px;}
.ls4d{letter-spacing:-0.486000px;}
.ls8f{letter-spacing:-0.450000px;}
.ls71{letter-spacing:-0.432000px;}
.ls72{letter-spacing:-0.421200px;}
.ls87{letter-spacing:-0.378000px;}
.ls85{letter-spacing:-0.351000px;}
.ls30{letter-spacing:-0.324000px;}
.ls9f{letter-spacing:-0.315000px;}
.ls4a{letter-spacing:-0.300000px;}
.ls83{letter-spacing:-0.280800px;}
.ls33{letter-spacing:-0.270000px;}
.lsa2{letter-spacing:-0.225000px;}
.ls27{letter-spacing:-0.216000px;}
.ls90{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.162000px;}
.ls29{letter-spacing:-0.140400px;}
.ls9c{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.108000px;}
.ls26{letter-spacing:-0.105300px;}
.ls9d{letter-spacing:-0.090000px;}
.lsf{letter-spacing:-0.070200px;}
.lsd{letter-spacing:-0.054000px;}
.lsa0{letter-spacing:-0.045000px;}
.ls34{letter-spacing:-0.035100px;}
.lsb{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.027000px;}
.ls11{letter-spacing:0.035100px;}
.ls91{letter-spacing:0.045000px;}
.ls32{letter-spacing:0.053999px;}
.ls9{letter-spacing:0.054000px;}
.ls37{letter-spacing:0.059438px;}
.ls2f{letter-spacing:0.060000px;}
.ls6d{letter-spacing:0.070134px;}
.ls81{letter-spacing:0.070200px;}
.ls5d{letter-spacing:0.080981px;}
.ls63{letter-spacing:0.081029px;}
.ls2d{letter-spacing:0.105300px;}
.ls8{letter-spacing:0.108000px;}
.ls7d{letter-spacing:0.109824px;}
.ls3b{letter-spacing:0.118792px;}
.ls93{letter-spacing:0.135000px;}
.ls5{letter-spacing:0.140400px;}
.ls4{letter-spacing:0.142174px;}
.ls6{letter-spacing:0.146377px;}
.ls7a{letter-spacing:0.148199px;}
.ls49{letter-spacing:0.152562px;}
.ls1f{letter-spacing:0.162000px;}
.ls79{letter-spacing:0.162005px;}
.ls19{letter-spacing:0.175498px;}
.ls14{letter-spacing:0.175500px;}
.ls1e{letter-spacing:0.175501px;}
.ls6a{letter-spacing:0.178205px;}
.ls92{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.210600px;}
.ls74{letter-spacing:0.214272px;}
.ls3{letter-spacing:0.216000px;}
.ls86{letter-spacing:0.225000px;}
.ls5a{letter-spacing:0.241787px;}
.ls59{letter-spacing:0.243000px;}
.ls2e{letter-spacing:0.245700px;}
.ls61{letter-spacing:0.269999px;}
.ls2{letter-spacing:0.270000px;}
.ls7b{letter-spacing:0.272299px;}
.ls22{letter-spacing:0.280801px;}
.ls5b{letter-spacing:0.283257px;}
.ls95{letter-spacing:0.315000px;}
.ls2c{letter-spacing:0.315900px;}
.ls25{letter-spacing:0.323998px;}
.ls7{letter-spacing:0.324000px;}
.ls64{letter-spacing:0.324001px;}
.ls39{letter-spacing:0.350993px;}
.ls2b{letter-spacing:0.351000px;}
.ls1d{letter-spacing:0.351002px;}
.ls3c{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.378000px;}
.ls80{letter-spacing:0.378001px;}
.ls94{letter-spacing:0.405000px;}
.ls7e{letter-spacing:0.406781px;}
.ls3e{letter-spacing:0.431999px;}
.ls2a{letter-spacing:0.432000px;}
.ls7f{letter-spacing:0.464379px;}
.ls5f{letter-spacing:0.469792px;}
.ls23{letter-spacing:0.480597px;}
.lse{letter-spacing:0.486000px;}
.ls98{letter-spacing:0.495000px;}
.ls62{letter-spacing:0.496788px;}
.ls3f{letter-spacing:0.496807px;}
.ls5e{letter-spacing:0.502196px;}
.ls31{letter-spacing:0.512998px;}
.ls1c{letter-spacing:0.540000px;}
.ls3d{letter-spacing:0.540020px;}
.lsa3{letter-spacing:0.585000px;}
.ls24{letter-spacing:0.593998px;}
.ls1b{letter-spacing:0.594000px;}
.lsa4{letter-spacing:0.630000px;}
.ls12{letter-spacing:0.648000px;}
.ls5c{letter-spacing:0.648001px;}
.ls36{letter-spacing:0.660000px;}
.ls96{letter-spacing:0.675000px;}
.lsa{letter-spacing:0.702000px;}
.ls7c{letter-spacing:0.702001px;}
.ls9a{letter-spacing:0.720000px;}
.ls67{letter-spacing:0.756001px;}
.ls99{letter-spacing:0.765000px;}
.ls68{letter-spacing:0.809999px;}
.ls20{letter-spacing:0.810000px;}
.ls60{letter-spacing:0.826206px;}
.lsa7{letter-spacing:0.855000px;}
.ls9b{letter-spacing:0.863957px;}
.ls65{letter-spacing:0.864000px;}
.ls6b{letter-spacing:0.864001px;}
.ls15{letter-spacing:0.918000px;}
.ls1a{letter-spacing:0.972000px;}
.ls44{letter-spacing:1.026000px;}
.ls70{letter-spacing:1.031406px;}
.ls6c{letter-spacing:1.074598px;}
.ls47{letter-spacing:1.099186px;}
.ls6f{letter-spacing:1.134000px;}
.ls46{letter-spacing:1.134001px;}
.ls45{letter-spacing:1.146158px;}
.ls6e{letter-spacing:1.242000px;}
.ls4f{letter-spacing:1.296000px;}
.ls97{letter-spacing:1.394999px;}
.ls48{letter-spacing:1.404113px;}
.ls53{letter-spacing:1.728000px;}
.ls66{letter-spacing:1.782000px;}
.ls4e{letter-spacing:1.890000px;}
.ls38{letter-spacing:1.920000px;}
.ls41{letter-spacing:2.089802px;}
.ls40{letter-spacing:2.160000px;}
.ls42{letter-spacing:2.376001px;}
.ls0{letter-spacing:2.592000px;}
.ls18{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lsa8{letter-spacing:6.120000px;}
.ls69{letter-spacing:15.748992px;}
.ls52{letter-spacing:15.748993px;}
.ls3a{letter-spacing:40.765251px;}
.ls51{letter-spacing:43.015105px;}
.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;}
}
.ws56{word-spacing:-56.407105px;}
.ws6a{word-spacing:-43.015105px;}
.ws57{word-spacing:-27.908929px;}
.ws1{word-spacing:-15.067500px;}
.ws1c{word-spacing:-14.700000px;}
.ws5a{word-spacing:-14.094000px;}
.ws53{word-spacing:-13.596000px;}
.ws27{word-spacing:-13.500000px;}
.ws58{word-spacing:-13.392001px;}
.ws46{word-spacing:-12.582000px;}
.ws0{word-spacing:-12.480000px;}
.ws24{word-spacing:-12.474000px;}
.ws59{word-spacing:-12.420000px;}
.ws54{word-spacing:-12.366000px;}
.ws2{word-spacing:-12.360000px;}
.ws6f{word-spacing:-12.258000px;}
.ws25{word-spacing:-12.204000px;}
.ws44{word-spacing:-12.150000px;}
.ws26{word-spacing:-12.042000px;}
.ws70{word-spacing:-11.934000px;}
.ws52{word-spacing:-11.880000px;}
.ws88{word-spacing:-11.826000px;}
.ws45{word-spacing:-11.772000px;}
.ws55{word-spacing:-11.718000px;}
.ws8c{word-spacing:-11.502000px;}
.ws1e{word-spacing:-11.394000px;}
.ws6c{word-spacing:-10.530000px;}
.ws98{word-spacing:-10.485000px;}
.ws9f{word-spacing:-10.305000px;}
.ws9b{word-spacing:-10.215000px;}
.ws9d{word-spacing:-10.170000px;}
.ws99{word-spacing:-10.125000px;}
.ws9e{word-spacing:-9.990000px;}
.ws96{word-spacing:-9.945000px;}
.ws8e{word-spacing:-9.855000px;}
.ws97{word-spacing:-9.585000px;}
.ws9a{word-spacing:-9.540000px;}
.ws9c{word-spacing:-9.450000px;}
.ws8{word-spacing:-9.180000px;}
.ws20{word-spacing:-8.318700px;}
.ws21{word-spacing:-8.283600px;}
.ws23{word-spacing:-8.213400px;}
.ws5{word-spacing:-8.178300px;}
.ws7{word-spacing:-8.143200px;}
.ws22{word-spacing:-8.073000px;}
.ws81{word-spacing:-8.037900px;}
.ws6{word-spacing:-8.002800px;}
.ws3{word-spacing:-7.967700px;}
.ws43{word-spacing:-7.932600px;}
.ws4{word-spacing:-7.897500px;}
.ws1d{word-spacing:-7.862400px;}
.ws1f{word-spacing:-7.827300px;}
.ws80{word-spacing:-7.757100px;}
.ws89{word-spacing:-7.686900px;}
.ws71{word-spacing:-7.616700px;}
.ws72{word-spacing:-7.546500px;}
.ws75{word-spacing:-7.476300px;}
.ws5b{word-spacing:-7.441200px;}
.ws76{word-spacing:-7.406100px;}
.ws73{word-spacing:-7.371000px;}
.ws74{word-spacing:-7.300800px;}
.ws8a{word-spacing:-7.265700px;}
.ws8d{word-spacing:-7.160400px;}
.ws8b{word-spacing:-7.125300px;}
.ws7f{word-spacing:-6.669000px;}
.wsb5{word-spacing:-6.120000px;}
.ws40{word-spacing:-5.508000px;}
.ws79{word-spacing:-5.454000px;}
.ws5e{word-spacing:-4.482000px;}
.ws69{word-spacing:-3.348000px;}
.ws68{word-spacing:-2.160000px;}
.ws6e{word-spacing:-1.944000px;}
.ws60{word-spacing:-1.920000px;}
.ws36{word-spacing:-1.890000px;}
.wsc{word-spacing:-1.836000px;}
.ws10{word-spacing:-1.782000px;}
.ws14{word-spacing:-1.728000px;}
.ws4d{word-spacing:-1.674000px;}
.ws2d{word-spacing:-1.620000px;}
.ws93{word-spacing:-1.575000px;}
.ws3e{word-spacing:-1.566000px;}
.ws92{word-spacing:-1.530000px;}
.ws11{word-spacing:-1.512000px;}
.ws35{word-spacing:-1.458000px;}
.ws86{word-spacing:-1.404000px;}
.wsb0{word-spacing:-1.395000px;}
.wsf{word-spacing:-1.350000px;}
.ws49{word-spacing:-1.296000px;}
.ws1b{word-spacing:-1.275000px;}
.wsa4{word-spacing:-1.260000px;}
.ws16{word-spacing:-1.242000px;}
.ws34{word-spacing:-1.188000px;}
.ws32{word-spacing:-1.134000px;}
.wsb{word-spacing:-1.080000px;}
.ws91{word-spacing:-1.035000px;}
.ws48{word-spacing:-1.026000px;}
.ws1a{word-spacing:-1.020000px;}
.ws2a{word-spacing:-0.972000px;}
.wsa{word-spacing:-0.960000px;}
.wsb4{word-spacing:-0.945000px;}
.ws8f{word-spacing:-0.918000px;}
.ws5f{word-spacing:-0.864000px;}
.ws94{word-spacing:-0.855000px;}
.ws64{word-spacing:-0.810000px;}
.ws5c{word-spacing:-0.756000px;}
.wsab{word-spacing:-0.720000px;}
.ws4b{word-spacing:-0.702000px;}
.wsa9{word-spacing:-0.675000px;}
.ws4f{word-spacing:-0.660000px;}
.ws33{word-spacing:-0.648000px;}
.wse{word-spacing:-0.594000px;}
.wsb3{word-spacing:-0.585000px;}
.wsd{word-spacing:-0.540000px;}
.wsa5{word-spacing:-0.495000px;}
.ws12{word-spacing:-0.486000px;}
.wsa1{word-spacing:-0.450000px;}
.ws13{word-spacing:-0.432000px;}
.ws95{word-spacing:-0.405000px;}
.ws29{word-spacing:-0.378000px;}
.ws66{word-spacing:-0.360000px;}
.ws31{word-spacing:-0.351000px;}
.ws2e{word-spacing:-0.324000px;}
.wsa6{word-spacing:-0.315000px;}
.ws2f{word-spacing:-0.270000px;}
.ws3f{word-spacing:-0.245700px;}
.wsa0{word-spacing:-0.225000px;}
.ws4a{word-spacing:-0.216000px;}
.ws7c{word-spacing:-0.214272px;}
.ws37{word-spacing:-0.210600px;}
.ws28{word-spacing:-0.175500px;}
.ws4e{word-spacing:-0.162000px;}
.wsa2{word-spacing:-0.135000px;}
.ws39{word-spacing:-0.108000px;}
.wsac{word-spacing:-0.090000px;}
.ws84{word-spacing:-0.070200px;}
.ws42{word-spacing:-0.060000px;}
.ws65{word-spacing:-0.054000px;}
.wsa3{word-spacing:-0.045000px;}
.ws9{word-spacing:0.000000px;}
.ws4c{word-spacing:0.054000px;}
.ws30{word-spacing:0.108000px;}
.wsb1{word-spacing:0.135000px;}
.ws87{word-spacing:0.140400px;}
.ws41{word-spacing:0.162000px;}
.ws2c{word-spacing:0.216000px;}
.wsad{word-spacing:0.225000px;}
.ws38{word-spacing:0.270000px;}
.ws5d{word-spacing:0.300000px;}
.ws47{word-spacing:0.324000px;}
.ws15{word-spacing:0.378000px;}
.ws3b{word-spacing:0.432000px;}
.ws7a{word-spacing:0.486000px;}
.wsb2{word-spacing:0.495000px;}
.ws83{word-spacing:0.540000px;}
.ws17{word-spacing:0.594000px;}
.ws7d{word-spacing:0.648000px;}
.wsa8{word-spacing:0.675000px;}
.ws85{word-spacing:0.702000px;}
.wsa7{word-spacing:0.720000px;}
.ws63{word-spacing:0.756000px;}
.ws50{word-spacing:0.810000px;}
.ws90{word-spacing:0.842400px;}
.ws3a{word-spacing:0.864000px;}
.ws51{word-spacing:0.918000px;}
.wsae{word-spacing:0.945000px;}
.ws3c{word-spacing:0.972000px;}
.wsaa{word-spacing:1.035000px;}
.ws3d{word-spacing:1.080000px;}
.wsaf{word-spacing:1.125000px;}
.ws18{word-spacing:1.134000px;}
.ws82{word-spacing:1.188000px;}
.ws19{word-spacing:1.224000px;}
.ws2b{word-spacing:1.242000px;}
.ws6d{word-spacing:1.296000px;}
.ws6b{word-spacing:1.404000px;}
.ws7e{word-spacing:1.620000px;}
.ws78{word-spacing:1.944000px;}
.ws62{word-spacing:2.052000px;}
.ws7b{word-spacing:3.240000px;}
.ws61{word-spacing:3.510000px;}
.ws77{word-spacing:4.104000px;}
.ws67{word-spacing:4.158000px;}
._c{margin-left:-83.833921px;}
._d{margin-left:-15.534720px;}
._17{margin-left:-11.520000px;}
._15{margin-left:-10.485000px;}
._e{margin-left:-9.118782px;}
._10{margin-left:-7.751383px;}
._5{margin-left:-6.687514px;}
._2{margin-left:-5.335200px;}
._6{margin-left:-4.304965px;}
._1{margin-left:-3.276000px;}
._0{margin-left:-1.776017px;}
._3{width:1.128600px;}
._4{width:2.466052px;}
._b{width:3.554946px;}
._9{width:4.668504px;}
._8{width:5.957355px;}
._14{width:7.408781px;}
._13{width:8.436017px;}
._12{width:9.810002px;}
._11{width:12.960000px;}
._f{width:15.281992px;}
._16{width:16.920002px;}
._7{width:48.052192px;}
._a{width:50.181127px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(245,130,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(206,221,228);}
.fs5{font-size:35.099999px;}
.fsa{font-size:38.016000px;}
.fsb{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs9{font-size:53.568003px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y160{bottom:3.455246px;}
.y175{bottom:3.455383px;}
.yf2{bottom:3.455395px;}
.ye9{bottom:3.455704px;}
.y121{bottom:3.455841px;}
.y102{bottom:3.456001px;}
.ydf{bottom:3.456162px;}
.y13e{bottom:3.456299px;}
.yfa{bottom:3.456448px;}
.y127{bottom:3.456894px;}
.y15a{bottom:3.457191px;}
.y144{bottom:3.457352px;}
.y15f{bottom:8.639099px;}
.y137{bottom:8.639236px;}
.y174{bottom:8.639374px;}
.yf1{bottom:8.639385px;}
.ye8{bottom:8.639694px;}
.y120{bottom:8.639832px;}
.y100{bottom:8.640003px;}
.yde{bottom:8.640152px;}
.y13d{bottom:8.640289px;}
.yf9{bottom:8.640450px;}
.y126{bottom:8.640884px;}
.y159{bottom:8.641045px;}
.y112{bottom:8.641050px;}
.y143{bottom:8.641342px;}
.y138{bottom:14.688974px;}
.y176{bottom:14.689112px;}
.yf3{bottom:14.689123px;}
.yea{bottom:14.689432px;}
.y122{bottom:14.689569px;}
.y103{bottom:14.689730px;}
.ye0{bottom:14.689890px;}
.y13f{bottom:14.690027px;}
.yfb{bottom:14.690176px;}
.y128{bottom:14.690622px;}
.y113{bottom:14.690777px;}
.y15b{bottom:14.690920px;}
.y145{bottom:14.691080px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y2f{bottom:68.307899px;}
.y77{bottom:68.551502px;}
.y116{bottom:68.948998px;}
.y1b4{bottom:74.396396px;}
.y1e7{bottom:77.583744px;}
.y2e{bottom:83.301899px;}
.y106{bottom:83.554955px;}
.y76{bottom:83.555999px;}
.yb7{bottom:83.566504px;}
.y115{bottom:83.947497px;}
.y237{bottom:84.089515px;}
.y169{bottom:84.288605px;}
.y1b3{bottom:89.394895px;}
.y1e6{bottom:90.329995px;}
.y111{bottom:91.443003px;}
.y236{bottom:96.835765px;}
.y105{bottom:98.553454px;}
.y75{bottom:98.554498px;}
.yb6{bottom:98.565004px;}
.y168{bottom:99.287104px;}
.y114{bottom:100.943996px;}
.y110{bottom:100.947448px;}
.y1e5{bottom:103.076245px;}
.y1b2{bottom:104.406902px;}
.yff{bottom:106.049995px;}
.y235{bottom:109.582015px;}
.y74{bottom:113.552997px;}
.yb5{bottom:113.563503px;}
.y167{bottom:114.285604px;}
.y101{bottom:114.689999px;}
.y104{bottom:115.549953px;}
.yfe{bottom:115.553405px;}
.y1e4{bottom:115.822495px;}
.y10f{bottom:117.147448px;}
.y1b1{bottom:119.405401px;}
.y234{bottom:122.328265px;}
.y10d{bottom:124.644001px;}
.y2d{bottom:128.185800px;}
.y73{bottom:128.551496px;}
.yb4{bottom:128.562002px;}
.y1e3{bottom:128.568745px;}
.y166{bottom:129.284103px;}
.yfd{bottom:131.753405px;}
.y10e{bottom:134.143948px;}
.y10c{bottom:134.149806px;}
.y1b0{bottom:134.403900px;}
.y233{bottom:135.074515px;}
.yf8{bottom:139.249500px;}
.y1e2{bottom:141.314995px;}
.y2c{bottom:143.190314px;}
.y72{bottom:143.549995px;}
.yb3{bottom:143.560501px;}
.y165{bottom:144.282602px;}
.y232{bottom:147.820766px;}
.yfc{bottom:148.749905px;}
.yf7{bottom:148.754845px;}
.y1af{bottom:149.402399px;}
.y10b{bottom:150.349807px;}
.y1e1{bottom:154.061245px;}
.y2b{bottom:158.188813px;}
.yb2{bottom:158.559000px;}
.y164{bottom:159.282602px;}
.y231{bottom:160.567016px;}
.y1ae{bottom:164.400899px;}
.yf6{bottom:164.954846px;}
.y10a{bottom:165.348306px;}
.y1e0{bottom:166.807495px;}
.y2a{bottom:173.187313px;}
.y230{bottom:173.313266px;}
.yb1{bottom:173.557499px;}
.y71{bottom:173.679150px;}
.y163{bottom:174.286198px;}
.y1ad{bottom:179.399398px;}
.y1df{bottom:179.553745px;}
.yf5{bottom:179.953345px;}
.y109{bottom:180.346805px;}
.y22f{bottom:186.059516px;}
.yf0{bottom:187.450504px;}
.y29{bottom:188.185812px;}
.yb0{bottom:188.555999px;}
.y70{bottom:188.677649px;}
.y162{bottom:189.284697px;}
.y1de{bottom:192.299995px;}
.y1ac{bottom:194.397897px;}
.y108{bottom:195.345304px;}
.y15e{bottom:196.782005px;}
.yf4{bottom:196.949844px;}
.yef{bottom:196.951349px;}
.y22e{bottom:198.805766px;}
.y28{bottom:203.188813px;}
.yaf{bottom:203.554498px;}
.y6f{bottom:203.676149px;}
.y1dd{bottom:205.049995px;}
.y161{bottom:206.281197px;}
.y15d{bottom:206.283147px;}
.y1ab{bottom:209.396396px;}
.y107{bottom:210.343803px;}
.y22d{bottom:211.552016px;}
.yee{bottom:213.151350px;}
.y158{bottom:214.980011px;}
.y27{bottom:218.187313px;}
.yae{bottom:218.552997px;}
.y6e{bottom:218.674648px;}
.y22c{bottom:224.298266px;}
.y1aa{bottom:224.394895px;}
.y15c{bottom:224.481148px;}
.y157{bottom:224.484599px;}
.yed{bottom:228.149849px;}
.y26{bottom:233.185812px;}
.yad{bottom:233.551496px;}
.y6d{bottom:233.673147px;}
.y1dc{bottom:234.423147px;}
.y22b{bottom:237.044516px;}
.y1a9{bottom:239.433939px;}
.y156{bottom:240.684600px;}
.y154{bottom:248.180992px;}
.y25{bottom:248.187313px;}
.yac{bottom:248.552997px;}
.y6c{bottom:248.671646px;}
.y1db{bottom:249.421646px;}
.y22a{bottom:249.790766px;}
.y1a8{bottom:254.432438px;}
.y155{bottom:257.681099px;}
.y153{bottom:257.691609px;}
.yec{bottom:257.964148px;}
.y11a{bottom:258.345442px;}
.y229{bottom:262.537017px;}
.y24{bottom:263.185812px;}
.yab{bottom:263.551496px;}
.y6b{bottom:263.671646px;}
.y1da{bottom:264.421646px;}
.ye7{bottom:265.460999px;}
.y1a7{bottom:269.430938px;}
.y119{bottom:273.343941px;}
.y152{bottom:273.891609px;}
.yeb{bottom:274.960648px;}
.ye6{bottom:274.968762px;}
.y228{bottom:275.283267px;}
.y23{bottom:278.187313px;}
.yaa{bottom:278.549995px;}
.y1a6{bottom:284.429437px;}
.y227{bottom:288.029517px;}
.y151{bottom:288.890108px;}
.ye5{bottom:291.168762px;}
.y22{bottom:293.185812px;}
.ya9{bottom:293.549995px;}
.y6a{bottom:293.796298px;}
.y1d9{bottom:293.814331px;}
.y1a5{bottom:299.427936px;}
.y226{bottom:300.775767px;}
.y150{bottom:303.888608px;}
.ye4{bottom:306.167261px;}
.y21{bottom:308.188813px;}
.y69{bottom:308.794798px;}
.y1d8{bottom:308.812830px;}
.y225{bottom:313.522017px;}
.y1a4{bottom:314.426435px;}
.y14f{bottom:318.887107px;}
.ye3{bottom:321.165761px;}
.y20{bottom:323.187313px;}
.ya8{bottom:323.802325px;}
.y68{bottom:323.803825px;}
.y1d7{bottom:323.811329px;}
.y224{bottom:326.268267px;}
.y1a3{bottom:329.424934px;}
.y14e{bottom:333.885606px;}
.ye2{bottom:336.164260px;}
.y1f{bottom:338.185812px;}
.ya7{bottom:338.800824px;}
.y67{bottom:338.802325px;}
.y1d6{bottom:338.809829px;}
.y223{bottom:339.014517px;}
.ydd{bottom:343.660492px;}
.y1a2{bottom:344.423434px;}
.y14d{bottom:348.884105px;}
.y222{bottom:351.760767px;}
.ye1{bottom:353.160759px;}
.ydc{bottom:353.162081px;}
.y1e{bottom:353.185812px;}
.ya6{bottom:353.799323px;}
.y66{bottom:353.800824px;}
.y1d5{bottom:353.808328px;}
.y1a1{bottom:359.421933px;}
.y14c{bottom:363.882604px;}
.y221{bottom:364.507018px;}
.y1d{bottom:368.185812px;}
.ya5{bottom:368.797822px;}
.y65{bottom:368.799323px;}
.y1d4{bottom:368.806827px;}
.ydb{bottom:369.362081px;}
.y1a0{bottom:374.420432px;}
.y220{bottom:377.253268px;}
.y14b{bottom:378.881104px;}
.y1c{bottom:383.188813px;}
.ya4{bottom:383.796321px;}
.y64{bottom:383.797822px;}
.y1d3{bottom:383.805326px;}
.yda{bottom:384.360580px;}
.y19f{bottom:389.418931px;}
.y21f{bottom:389.999518px;}
.y1b{bottom:398.187313px;}
.ya3{bottom:398.794821px;}
.y63{bottom:398.796321px;}
.y1d2{bottom:398.803825px;}
.yd9{bottom:399.360580px;}
.y21e{bottom:402.745768px;}
.y19e{bottom:404.417430px;}
.y14a{bottom:409.620308px;}
.y1a{bottom:413.185812px;}
.y62{bottom:413.794821px;}
.y1d1{bottom:413.802325px;}
.ya2{bottom:413.823336px;}
.y21d{bottom:415.492018px;}
.y19d{bottom:419.415930px;}
.y149{bottom:424.618807px;}
.y19{bottom:428.187313px;}
.y21c{bottom:428.238268px;}
.y1d0{bottom:428.800824px;}
.y61{bottom:428.802325px;}
.ya1{bottom:428.821835px;}
.yd8{bottom:429.186441px;}
.y19c{bottom:434.414429px;}
.y148{bottom:439.617306px;}
.y21b{bottom:440.984518px;}
.y18{bottom:443.185812px;}
.y1cf{bottom:443.799323px;}
.y60{bottom:443.800824px;}
.ya0{bottom:443.820334px;}
.yd7{bottom:444.184940px;}
.y19b{bottom:449.412928px;}
.y21a{bottom:453.730768px;}
.y147{bottom:454.615805px;}
.y17{bottom:458.221812px;}
.y1ce{bottom:458.797822px;}
.y5f{bottom:458.799323px;}
.y9f{bottom:458.818833px;}
.yd6{bottom:459.183439px;}
.y142{bottom:462.111008px;}
.y19a{bottom:464.411427px;}
.y219{bottom:466.477018px;}
.y146{bottom:471.612305px;}
.y141{bottom:471.614255px;}
.y16{bottom:473.220311px;}
.y1cd{bottom:473.796321px;}
.y5e{bottom:473.797822px;}
.y9e{bottom:473.817333px;}
.yd5{bottom:474.181938px;}
.y218{bottom:479.223269px;}
.y199{bottom:479.409926px;}
.y13c{bottom:480.312012px;}
.y1cc{bottom:488.794821px;}
.y5d{bottom:488.796321px;}
.y9d{bottom:488.815832px;}
.yd4{bottom:489.180437px;}
.y140{bottom:489.812256px;}
.y217{bottom:491.969519px;}
.y198{bottom:494.408425px;}
.y5c{bottom:503.794821px;}
.y1cb{bottom:503.799323px;}
.y9c{bottom:503.814331px;}
.yd3{bottom:504.178937px;}
.y216{bottom:504.715769px;}
.y13b{bottom:506.017209px;}
.y197{bottom:509.406925px;}
.y215{bottom:517.462019px;}
.y5b{bottom:518.794821px;}
.y1ca{bottom:518.797822px;}
.y9b{bottom:518.812830px;}
.yd2{bottom:519.177436px;}
.y15{bottom:520.470311px;}
.y13a{bottom:521.015708px;}
.y196{bottom:524.405424px;}
.y136{bottom:528.513016px;}
.y214{bottom:530.208269px;}
.y5a{bottom:533.796321px;}
.y9a{bottom:533.811329px;}
.yd1{bottom:534.175935px;}
.y14{bottom:536.967311px;}
.y139{bottom:538.012207px;}
.y135{bottom:538.015658px;}
.y195{bottom:539.403923px;}
.y213{bottom:542.954519px;}
.y59{bottom:548.794821px;}
.y99{bottom:548.809829px;}
.yd0{bottom:549.174434px;}
.y13{bottom:553.464311px;}
.y134{bottom:554.215659px;}
.y194{bottom:554.402422px;}
.y212{bottom:555.700769px;}
.y132{bottom:561.712509px;}
.y58{bottom:563.799323px;}
.y98{bottom:563.808328px;}
.y1c9{bottom:563.821789px;}
.ycf{bottom:564.172933px;}
.y211{bottom:568.447019px;}
.y193{bottom:569.400921px;}
.y12{bottom:569.961311px;}
.y133{bottom:571.212158px;}
.y131{bottom:571.215141px;}
.y57{bottom:578.797822px;}
.y97{bottom:578.806827px;}
.y1c8{bottom:578.820288px;}
.yce{bottom:579.171432px;}
.y210{bottom:581.193269px;}
.y192{bottom:584.399421px;}
.y11{bottom:586.458311px;}
.y130{bottom:587.415142px;}
.y56{bottom:593.796321px;}
.y96{bottom:593.805326px;}
.y1c7{bottom:593.818788px;}
.y20f{bottom:593.939520px;}
.y191{bottom:599.397920px;}
.y12f{bottom:602.413641px;}
.y10{bottom:602.955311px;}
.y20e{bottom:606.685770px;}
.y55{bottom:608.794821px;}
.y95{bottom:608.803825px;}
.y1c6{bottom:608.817287px;}
.ycd{bottom:609.013939px;}
.y190{bottom:614.396419px;}
.y12e{bottom:617.412140px;}
.y20d{bottom:619.432020px;}
.yf{bottom:619.452311px;}
.y94{bottom:623.802325px;}
.y54{bottom:623.809783px;}
.y1c5{bottom:623.815786px;}
.ycc{bottom:624.012438px;}
.y18f{bottom:629.394918px;}
.y20c{bottom:632.178270px;}
.ye{bottom:635.949311px;}
.y93{bottom:638.800824px;}
.y53{bottom:638.808282px;}
.y1c4{bottom:638.814285px;}
.ycb{bottom:639.010937px;}
.y18e{bottom:644.399421px;}
.y20b{bottom:644.924520px;}
.y12d{bottom:648.146419px;}
.yd{bottom:652.446311px;}
.y92{bottom:653.799323px;}
.y52{bottom:653.806781px;}
.y1c3{bottom:653.812784px;}
.yca{bottom:654.009436px;}
.y20a{bottom:657.670770px;}
.y18d{bottom:659.397920px;}
.y12c{bottom:663.144918px;}
.y91{bottom:668.797822px;}
.y51{bottom:668.805280px;}
.y1c2{bottom:668.811284px;}
.yc{bottom:668.943311px;}
.yc9{bottom:669.007936px;}
.y209{bottom:670.417020px;}
.y18c{bottom:674.396419px;}
.y12b{bottom:678.148343px;}
.y208{bottom:683.163270px;}
.y90{bottom:683.796321px;}
.y50{bottom:683.803780px;}
.y1c1{bottom:683.809783px;}
.yc8{bottom:684.006435px;}
.yb{bottom:685.440311px;}
.y18b{bottom:689.394918px;}
.y12a{bottom:693.146842px;}
.y207{bottom:695.909520px;}
.y8f{bottom:698.794821px;}
.y4f{bottom:698.802279px;}
.y1c0{bottom:698.808282px;}
.yc7{bottom:699.004934px;}
.y125{bottom:700.642502px;}
.ya{bottom:701.937311px;}
.y18a{bottom:704.406879px;}
.y206{bottom:708.655771px;}
.y129{bottom:710.143341px;}
.y4e{bottom:713.800778px;}
.y1bf{bottom:713.806781px;}
.y8e{bottom:713.830794px;}
.yc6{bottom:714.003433px;}
.y9{bottom:718.434311px;}
.y189{bottom:719.405378px;}
.y205{bottom:721.402021px;}
.y124{bottom:726.346793px;}
.y4d{bottom:728.799277px;}
.y1be{bottom:728.805280px;}
.y8d{bottom:728.829293px;}
.yc5{bottom:729.001932px;}
.y11f{bottom:733.843506px;}
.y204{bottom:734.148271px;}
.y188{bottom:734.403877px;}
.y123{bottom:743.343292px;}
.y11e{bottom:743.346275px;}
.y4c{bottom:743.797776px;}
.y1bd{bottom:743.803780px;}
.y8c{bottom:743.827793px;}
.yc4{bottom:744.000432px;}
.y203{bottom:746.894521px;}
.y8{bottom:748.434311px;}
.y187{bottom:749.402376px;}
.y32{bottom:757.139396px;}
.y4b{bottom:758.796276px;}
.y1bc{bottom:758.802279px;}
.y8b{bottom:758.826292px;}
.yc3{bottom:758.998931px;}
.y11d{bottom:759.546276px;}
.y24a{bottom:759.556781px;}
.y202{bottom:759.640771px;}
.y186{bottom:764.400876px;}
.y201{bottom:772.387021px;}
.y4a{bottom:773.794775px;}
.y1bb{bottom:773.800778px;}
.y8a{bottom:773.824791px;}
.yc2{bottom:773.997430px;}
.y11c{bottom:774.544775px;}
.y249{bottom:774.555280px;}
.y31{bottom:778.138646px;}
.y185{bottom:779.399375px;}
.y7{bottom:781.416260px;}
.y200{bottom:785.133271px;}
.y49{bottom:788.799277px;}
.y89{bottom:788.823290px;}
.yc1{bottom:788.995929px;}
.y11b{bottom:789.543274px;}
.y248{bottom:789.553780px;}
.y184{bottom:794.397874px;}
.y1ff{bottom:797.879521px;}
.y30{bottom:799.137895px;}
.y48{bottom:803.797776px;}
.y88{bottom:803.821789px;}
.yc0{bottom:803.994428px;}
.y247{bottom:804.552279px;}
.y183{bottom:809.396373px;}
.y1fe{bottom:810.625771px;}
.y47{bottom:818.796276px;}
.y87{bottom:818.820288px;}
.ybf{bottom:818.992928px;}
.y246{bottom:819.550778px;}
.y1fd{bottom:823.372022px;}
.y182{bottom:824.394872px;}
.y6{bottom:826.422262px;}
.y118{bottom:828.240453px;}
.y46{bottom:833.794775px;}
.y86{bottom:833.818788px;}
.ybe{bottom:833.991427px;}
.y245{bottom:834.549277px;}
.y1fc{bottom:836.118272px;}
.y181{bottom:839.393372px;}
.y117{bottom:843.238953px;}
.y1ba{bottom:848.794775px;}
.y45{bottom:848.805280px;}
.y85{bottom:848.817287px;}
.y1fb{bottom:848.864522px;}
.ybd{bottom:848.989926px;}
.y244{bottom:849.547776px;}
.y16a{bottom:852.958923px;}
.y180{bottom:854.393372px;}
.y1fa{bottom:861.610772px;}
.y1b9{bottom:863.794775px;}
.y44{bottom:863.803780px;}
.y84{bottom:863.815786px;}
.ybc{bottom:863.988425px;}
.y243{bottom:864.546276px;}
.y5{bottom:871.428264px;}
.y1f9{bottom:874.357022px;}
.y1b8{bottom:878.794775px;}
.y43{bottom:878.802279px;}
.y83{bottom:878.814285px;}
.ybb{bottom:878.986924px;}
.y242{bottom:879.544775px;}
.y1f8{bottom:887.103272px;}
.y17f{bottom:887.400876px;}
.y1b7{bottom:893.796276px;}
.y42{bottom:893.800778px;}
.y82{bottom:893.812784px;}
.yba{bottom:893.985423px;}
.y241{bottom:894.543274px;}
.y1f7{bottom:899.849522px;}
.y17e{bottom:902.399375px;}
.y1b6{bottom:908.794775px;}
.y41{bottom:908.799277px;}
.y81{bottom:908.811284px;}
.yb9{bottom:908.983923px;}
.y1f6{bottom:912.595772px;}
.y240{bottom:916.297776px;}
.y4{bottom:916.434265px;}
.y17d{bottom:917.397874px;}
.y1b5{bottom:923.794775px;}
.y40{bottom:923.797776px;}
.y80{bottom:923.809783px;}
.yb8{bottom:923.982422px;}
.y1f5{bottom:925.342022px;}
.y33{bottom:926.409576px;}
.y23f{bottom:931.296276px;}
.y17c{bottom:932.396373px;}
.y1f4{bottom:938.088273px;}
.y3f{bottom:938.796276px;}
.y7f{bottom:938.808282px;}
.y17b{bottom:947.394872px;}
.y1f3{bottom:950.834523px;}
.y23e{bottom:953.044775px;}
.y3e{bottom:953.794775px;}
.y7e{bottom:953.806781px;}
.y17a{bottom:962.399843px;}
.y1f2{bottom:963.580773px;}
.y3d{bottom:968.794775px;}
.y7d{bottom:968.805280px;}
.y23d{bottom:974.793274px;}
.y1f1{bottom:976.327023px;}
.y179{bottom:977.398343px;}
.y3c{bottom:983.797776px;}
.y7c{bottom:983.803780px;}
.y1f0{bottom:989.073273px;}
.y23c{bottom:989.793274px;}
.y178{bottom:992.396842px;}
.y3b{bottom:998.796276px;}
.y7b{bottom:998.802279px;}
.y173{bottom:999.894012px;}
.y1ef{bottom:1001.819523px;}
.y177{bottom:1009.393341px;}
.y172{bottom:1009.397825px;}
.y3a{bottom:1013.794775px;}
.y7a{bottom:1013.800778px;}
.y1ee{bottom:1014.565773px;}
.y23b{bottom:1016.794775px;}
.y171{bottom:1025.597825px;}
.y1ed{bottom:1027.312023px;}
.y39{bottom:1028.796276px;}
.y79{bottom:1028.799277px;}
.y23a{bottom:1031.793274px;}
.y1ec{bottom:1040.058273px;}
.y170{bottom:1040.596324px;}
.y38{bottom:1043.794775px;}
.y78{bottom:1043.797776px;}
.y239{bottom:1046.793274px;}
.y1eb{bottom:1052.804524px;}
.y16f{bottom:1055.594824px;}
.y37{bottom:1058.796276px;}
.y1ea{bottom:1065.550774px;}
.y16e{bottom:1070.596793px;}
.y238{bottom:1073.793274px;}
.y36{bottom:1073.794775px;}
.y16c{bottom:1078.093506px;}
.y1e9{bottom:1078.297024px;}
.y16d{bottom:1086.733337px;}
.y16b{bottom:1087.593292px;}
.y35{bottom:1088.793274px;}
.y1e8{bottom:1091.043274px;}
.y34{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.h16{height:21.598500px;}
.hf{height:21.599999px;}
.h14{height:21.601500px;}
.hb{height:35.394000px;}
.ha{height:36.681152px;}
.h12{height:37.597824px;}
.h11{height:38.092032px;}
.h7{height:38.838867px;}
.h2{height:43.140000px;}
.h6{height:43.154297px;}
.h4{height:44.218500px;}
.h19{height:44.505000px;}
.h18{height:45.090000px;}
.h3{height:45.744000px;}
.h17{height:46.080000px;}
.he{height:47.469727px;}
.h13{height:50.889603px;}
.h8{height:51.840000px;}
.h10{height:52.978755px;}
.h9{height:53.406000px;}
.hd{height:54.108000px;}
.h15{height:55.296000px;}
.hc{height:74.412000px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w4{width:12.528000px;}
.w5{width:53.568003px;}
.w3{width:54.000000px;}
.w2{width:54.431997px;}
.w8{width:60.048002px;}
.w7{width:60.480000px;}
.w6{width:60.912003px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.048065px;}
.xb{left:7.777793px;}
.x6{left:14.079914px;}
.x16{left:31.104034px;}
.x2{left:61.191450px;}
.x7{left:140.952747px;}
.x4{left:233.456406px;}
.x5{left:251.456366px;}
.x22{left:287.457161px;}
.x18{left:289.201492px;}
.x30{left:300.594589px;}
.x19{left:343.616249px;}
.x1e{left:376.623001px;}
.x29{left:380.791489px;}
.xc{left:383.704491px;}
.x12{left:388.082977px;}
.x1f{left:430.684204px;}
.xd{left:437.722504px;}
.x13{left:442.089432px;}
.x2e{left:447.396286px;}
.x2c{left:458.339539px;}
.x25{left:499.703979px;}
.x2d{left:502.444336px;}
.xe{left:505.033493px;}
.x26{left:512.290970px;}
.x1a{left:555.457489px;}
.xf{left:559.143768px;}
.x1b{left:567.968399px;}
.x27{left:570.712509px;}
.x3{left:584.586594px;}
.x23{left:598.685989px;}
.x28{left:624.772202px;}
.x24{left:652.307693px;}
.x20{left:680.675995px;}
.x1c{left:685.240494px;}
.x14{left:690.539978px;}
.x1d{left:697.540970px;}
.x15{left:706.955978px;}
.x21{left:735.167679px;}
.x17{left:744.539978px;}
.x2a{left:752.122513px;}
.x2b{left:763.337997px;}
.x9{left:769.888458px;}
.x10{left:774.277496px;}
.x11{left:786.916168px;}
.x2f{left:816.003571px;}
.x8{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v3{vertical-align:-18.431966pt;}
.v2{vertical-align:-16.319987pt;}
.v4{vertical-align:-9.617610pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.186651pt;}
.ls56{letter-spacing:-1.632000pt;}
.ls55{letter-spacing:-1.248000pt;}
.ls82{letter-spacing:-1.216800pt;}
.ls8a{letter-spacing:-1.152000pt;}
.ls8e{letter-spacing:-1.104000pt;}
.ls16{letter-spacing:-1.088000pt;}
.ls4b{letter-spacing:-1.008000pt;}
.ls58{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.906667pt;}
.ls4c{letter-spacing:-0.864000pt;}
.ls57{letter-spacing:-0.816000pt;}
.ls28{letter-spacing:-0.768000pt;}
.lsa6{letter-spacing:-0.760000pt;}
.ls8b{letter-spacing:-0.748800pt;}
.ls88{letter-spacing:-0.720000pt;}
.ls8d{letter-spacing:-0.717600pt;}
.lsa1{letter-spacing:-0.680000pt;}
.ls8c{letter-spacing:-0.672000pt;}
.ls76{letter-spacing:-0.655200pt;}
.ls9e{letter-spacing:-0.640000pt;}
.ls89{letter-spacing:-0.624000pt;}
.ls75{letter-spacing:-0.592800pt;}
.ls50{letter-spacing:-0.576000pt;}
.ls78{letter-spacing:-0.561600pt;}
.lsa5{letter-spacing:-0.560000pt;}
.ls54{letter-spacing:-0.530400pt;}
.ls35{letter-spacing:-0.528000pt;}
.ls77{letter-spacing:-0.499200pt;}
.ls84{letter-spacing:-0.480000pt;}
.ls73{letter-spacing:-0.436800pt;}
.ls4d{letter-spacing:-0.432000pt;}
.ls8f{letter-spacing:-0.400000pt;}
.ls71{letter-spacing:-0.384000pt;}
.ls72{letter-spacing:-0.374400pt;}
.ls87{letter-spacing:-0.336000pt;}
.ls85{letter-spacing:-0.312000pt;}
.ls30{letter-spacing:-0.288000pt;}
.ls9f{letter-spacing:-0.280000pt;}
.ls4a{letter-spacing:-0.266667pt;}
.ls83{letter-spacing:-0.249600pt;}
.ls33{letter-spacing:-0.240000pt;}
.lsa2{letter-spacing:-0.200000pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls90{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls29{letter-spacing:-0.124800pt;}
.ls9c{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls26{letter-spacing:-0.093600pt;}
.ls9d{letter-spacing:-0.080000pt;}
.lsf{letter-spacing:-0.062400pt;}
.lsd{letter-spacing:-0.048000pt;}
.lsa0{letter-spacing:-0.040000pt;}
.ls34{letter-spacing:-0.031200pt;}
.lsb{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.024000pt;}
.ls11{letter-spacing:0.031200pt;}
.ls91{letter-spacing:0.040000pt;}
.ls32{letter-spacing:0.047999pt;}
.ls9{letter-spacing:0.048000pt;}
.ls37{letter-spacing:0.052834pt;}
.ls2f{letter-spacing:0.053333pt;}
.ls6d{letter-spacing:0.062341pt;}
.ls81{letter-spacing:0.062400pt;}
.ls5d{letter-spacing:0.071983pt;}
.ls63{letter-spacing:0.072026pt;}
.ls2d{letter-spacing:0.093600pt;}
.ls8{letter-spacing:0.096000pt;}
.ls7d{letter-spacing:0.097622pt;}
.ls3b{letter-spacing:0.105593pt;}
.ls93{letter-spacing:0.120000pt;}
.ls5{letter-spacing:0.124800pt;}
.ls4{letter-spacing:0.126377pt;}
.ls6{letter-spacing:0.130113pt;}
.ls7a{letter-spacing:0.131733pt;}
.ls49{letter-spacing:0.135610pt;}
.ls1f{letter-spacing:0.144000pt;}
.ls79{letter-spacing:0.144005pt;}
.ls19{letter-spacing:0.155998pt;}
.ls14{letter-spacing:0.156000pt;}
.ls1e{letter-spacing:0.156001pt;}
.ls6a{letter-spacing:0.158405pt;}
.ls92{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.187200pt;}
.ls74{letter-spacing:0.190464pt;}
.ls3{letter-spacing:0.192000pt;}
.ls86{letter-spacing:0.200000pt;}
.ls5a{letter-spacing:0.214922pt;}
.ls59{letter-spacing:0.216000pt;}
.ls2e{letter-spacing:0.218400pt;}
.ls61{letter-spacing:0.239999pt;}
.ls2{letter-spacing:0.240000pt;}
.ls7b{letter-spacing:0.242044pt;}
.ls22{letter-spacing:0.249601pt;}
.ls5b{letter-spacing:0.251784pt;}
.ls95{letter-spacing:0.280000pt;}
.ls2c{letter-spacing:0.280800pt;}
.ls25{letter-spacing:0.287999pt;}
.ls7{letter-spacing:0.288000pt;}
.ls64{letter-spacing:0.288001pt;}
.ls39{letter-spacing:0.311994pt;}
.ls2b{letter-spacing:0.312000pt;}
.ls1d{letter-spacing:0.312002pt;}
.ls3c{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.336000pt;}
.ls80{letter-spacing:0.336001pt;}
.ls94{letter-spacing:0.360000pt;}
.ls7e{letter-spacing:0.361583pt;}
.ls3e{letter-spacing:0.383999pt;}
.ls2a{letter-spacing:0.384000pt;}
.ls7f{letter-spacing:0.412781pt;}
.ls5f{letter-spacing:0.417593pt;}
.ls23{letter-spacing:0.427197pt;}
.lse{letter-spacing:0.432000pt;}
.ls98{letter-spacing:0.440000pt;}
.ls62{letter-spacing:0.441589pt;}
.ls3f{letter-spacing:0.441606pt;}
.ls5e{letter-spacing:0.446397pt;}
.ls31{letter-spacing:0.455998pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls3d{letter-spacing:0.480017pt;}
.lsa3{letter-spacing:0.520000pt;}
.ls24{letter-spacing:0.527999pt;}
.ls1b{letter-spacing:0.528000pt;}
.lsa4{letter-spacing:0.560000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls5c{letter-spacing:0.576001pt;}
.ls36{letter-spacing:0.586667pt;}
.ls96{letter-spacing:0.600000pt;}
.lsa{letter-spacing:0.624000pt;}
.ls7c{letter-spacing:0.624001pt;}
.ls9a{letter-spacing:0.640000pt;}
.ls67{letter-spacing:0.672000pt;}
.ls99{letter-spacing:0.680000pt;}
.ls68{letter-spacing:0.719999pt;}
.ls20{letter-spacing:0.720000pt;}
.ls60{letter-spacing:0.734405pt;}
.lsa7{letter-spacing:0.760000pt;}
.ls9b{letter-spacing:0.767962pt;}
.ls65{letter-spacing:0.768000pt;}
.ls6b{letter-spacing:0.768001pt;}
.ls15{letter-spacing:0.816000pt;}
.ls1a{letter-spacing:0.864000pt;}
.ls44{letter-spacing:0.912000pt;}
.ls70{letter-spacing:0.916806pt;}
.ls6c{letter-spacing:0.955198pt;}
.ls47{letter-spacing:0.977054pt;}
.ls6f{letter-spacing:1.008000pt;}
.ls46{letter-spacing:1.008001pt;}
.ls45{letter-spacing:1.018807pt;}
.ls6e{letter-spacing:1.104000pt;}
.ls4f{letter-spacing:1.152000pt;}
.ls97{letter-spacing:1.239999pt;}
.ls48{letter-spacing:1.248100pt;}
.ls53{letter-spacing:1.536000pt;}
.ls66{letter-spacing:1.584000pt;}
.ls4e{letter-spacing:1.680000pt;}
.ls38{letter-spacing:1.706667pt;}
.ls41{letter-spacing:1.857601pt;}
.ls40{letter-spacing:1.920000pt;}
.ls42{letter-spacing:2.112001pt;}
.ls0{letter-spacing:2.304000pt;}
.ls18{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lsa8{letter-spacing:5.440000pt;}
.ls69{letter-spacing:13.999104pt;}
.ls52{letter-spacing:13.999105pt;}
.ls3a{letter-spacing:36.235778pt;}
.ls51{letter-spacing:38.235648pt;}
.ws56{word-spacing:-50.139649pt;}
.ws6a{word-spacing:-38.235648pt;}
.ws57{word-spacing:-24.807937pt;}
.ws1{word-spacing:-13.393333pt;}
.ws1c{word-spacing:-13.066667pt;}
.ws5a{word-spacing:-12.528000pt;}
.ws53{word-spacing:-12.085333pt;}
.ws27{word-spacing:-12.000000pt;}
.ws58{word-spacing:-11.904001pt;}
.ws46{word-spacing:-11.184000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws24{word-spacing:-11.088000pt;}
.ws59{word-spacing:-11.040000pt;}
.ws54{word-spacing:-10.992000pt;}
.ws2{word-spacing:-10.986667pt;}
.ws6f{word-spacing:-10.896000pt;}
.ws25{word-spacing:-10.848000pt;}
.ws44{word-spacing:-10.800000pt;}
.ws26{word-spacing:-10.704000pt;}
.ws70{word-spacing:-10.608000pt;}
.ws52{word-spacing:-10.560000pt;}
.ws88{word-spacing:-10.512000pt;}
.ws45{word-spacing:-10.464000pt;}
.ws55{word-spacing:-10.416000pt;}
.ws8c{word-spacing:-10.224000pt;}
.ws1e{word-spacing:-10.128000pt;}
.ws6c{word-spacing:-9.360000pt;}
.ws98{word-spacing:-9.320000pt;}
.ws9f{word-spacing:-9.160000pt;}
.ws9b{word-spacing:-9.080000pt;}
.ws9d{word-spacing:-9.040000pt;}
.ws99{word-spacing:-9.000000pt;}
.ws9e{word-spacing:-8.880000pt;}
.ws96{word-spacing:-8.840000pt;}
.ws8e{word-spacing:-8.760000pt;}
.ws97{word-spacing:-8.520000pt;}
.ws9a{word-spacing:-8.480000pt;}
.ws9c{word-spacing:-8.400000pt;}
.ws8{word-spacing:-8.160000pt;}
.ws20{word-spacing:-7.394400pt;}
.ws21{word-spacing:-7.363200pt;}
.ws23{word-spacing:-7.300800pt;}
.ws5{word-spacing:-7.269600pt;}
.ws7{word-spacing:-7.238400pt;}
.ws22{word-spacing:-7.176000pt;}
.ws81{word-spacing:-7.144800pt;}
.ws6{word-spacing:-7.113600pt;}
.ws3{word-spacing:-7.082400pt;}
.ws43{word-spacing:-7.051200pt;}
.ws4{word-spacing:-7.020000pt;}
.ws1d{word-spacing:-6.988800pt;}
.ws1f{word-spacing:-6.957600pt;}
.ws80{word-spacing:-6.895200pt;}
.ws89{word-spacing:-6.832800pt;}
.ws71{word-spacing:-6.770400pt;}
.ws72{word-spacing:-6.708000pt;}
.ws75{word-spacing:-6.645600pt;}
.ws5b{word-spacing:-6.614400pt;}
.ws76{word-spacing:-6.583200pt;}
.ws73{word-spacing:-6.552000pt;}
.ws74{word-spacing:-6.489600pt;}
.ws8a{word-spacing:-6.458400pt;}
.ws8d{word-spacing:-6.364800pt;}
.ws8b{word-spacing:-6.333600pt;}
.ws7f{word-spacing:-5.928000pt;}
.wsb5{word-spacing:-5.440000pt;}
.ws40{word-spacing:-4.896000pt;}
.ws79{word-spacing:-4.848000pt;}
.ws5e{word-spacing:-3.984000pt;}
.ws69{word-spacing:-2.976000pt;}
.ws68{word-spacing:-1.920000pt;}
.ws6e{word-spacing:-1.728000pt;}
.ws60{word-spacing:-1.706667pt;}
.ws36{word-spacing:-1.680000pt;}
.wsc{word-spacing:-1.632000pt;}
.ws10{word-spacing:-1.584000pt;}
.ws14{word-spacing:-1.536000pt;}
.ws4d{word-spacing:-1.488000pt;}
.ws2d{word-spacing:-1.440000pt;}
.ws93{word-spacing:-1.400000pt;}
.ws3e{word-spacing:-1.392000pt;}
.ws92{word-spacing:-1.360000pt;}
.ws11{word-spacing:-1.344000pt;}
.ws35{word-spacing:-1.296000pt;}
.ws86{word-spacing:-1.248000pt;}
.wsb0{word-spacing:-1.240000pt;}
.wsf{word-spacing:-1.200000pt;}
.ws49{word-spacing:-1.152000pt;}
.ws1b{word-spacing:-1.133333pt;}
.wsa4{word-spacing:-1.120000pt;}
.ws16{word-spacing:-1.104000pt;}
.ws34{word-spacing:-1.056000pt;}
.ws32{word-spacing:-1.008000pt;}
.wsb{word-spacing:-0.960000pt;}
.ws91{word-spacing:-0.920000pt;}
.ws48{word-spacing:-0.912000pt;}
.ws1a{word-spacing:-0.906667pt;}
.ws2a{word-spacing:-0.864000pt;}
.wsa{word-spacing:-0.853333pt;}
.wsb4{word-spacing:-0.840000pt;}
.ws8f{word-spacing:-0.816000pt;}
.ws5f{word-spacing:-0.768000pt;}
.ws94{word-spacing:-0.760000pt;}
.ws64{word-spacing:-0.720000pt;}
.ws5c{word-spacing:-0.672000pt;}
.wsab{word-spacing:-0.640000pt;}
.ws4b{word-spacing:-0.624000pt;}
.wsa9{word-spacing:-0.600000pt;}
.ws4f{word-spacing:-0.586667pt;}
.ws33{word-spacing:-0.576000pt;}
.wse{word-spacing:-0.528000pt;}
.wsb3{word-spacing:-0.520000pt;}
.wsd{word-spacing:-0.480000pt;}
.wsa5{word-spacing:-0.440000pt;}
.ws12{word-spacing:-0.432000pt;}
.wsa1{word-spacing:-0.400000pt;}
.ws13{word-spacing:-0.384000pt;}
.ws95{word-spacing:-0.360000pt;}
.ws29{word-spacing:-0.336000pt;}
.ws66{word-spacing:-0.320000pt;}
.ws31{word-spacing:-0.312000pt;}
.ws2e{word-spacing:-0.288000pt;}
.wsa6{word-spacing:-0.280000pt;}
.ws2f{word-spacing:-0.240000pt;}
.ws3f{word-spacing:-0.218400pt;}
.wsa0{word-spacing:-0.200000pt;}
.ws4a{word-spacing:-0.192000pt;}
.ws7c{word-spacing:-0.190464pt;}
.ws37{word-spacing:-0.187200pt;}
.ws28{word-spacing:-0.156000pt;}
.ws4e{word-spacing:-0.144000pt;}
.wsa2{word-spacing:-0.120000pt;}
.ws39{word-spacing:-0.096000pt;}
.wsac{word-spacing:-0.080000pt;}
.ws84{word-spacing:-0.062400pt;}
.ws42{word-spacing:-0.053333pt;}
.ws65{word-spacing:-0.048000pt;}
.wsa3{word-spacing:-0.040000pt;}
.ws9{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.048000pt;}
.ws30{word-spacing:0.096000pt;}
.wsb1{word-spacing:0.120000pt;}
.ws87{word-spacing:0.124800pt;}
.ws41{word-spacing:0.144000pt;}
.ws2c{word-spacing:0.192000pt;}
.wsad{word-spacing:0.200000pt;}
.ws38{word-spacing:0.240000pt;}
.ws5d{word-spacing:0.266667pt;}
.ws47{word-spacing:0.288000pt;}
.ws15{word-spacing:0.336000pt;}
.ws3b{word-spacing:0.384000pt;}
.ws7a{word-spacing:0.432000pt;}
.wsb2{word-spacing:0.440000pt;}
.ws83{word-spacing:0.480000pt;}
.ws17{word-spacing:0.528000pt;}
.ws7d{word-spacing:0.576000pt;}
.wsa8{word-spacing:0.600000pt;}
.ws85{word-spacing:0.624000pt;}
.wsa7{word-spacing:0.640000pt;}
.ws63{word-spacing:0.672000pt;}
.ws50{word-spacing:0.720000pt;}
.ws90{word-spacing:0.748800pt;}
.ws3a{word-spacing:0.768000pt;}
.ws51{word-spacing:0.816000pt;}
.wsae{word-spacing:0.840000pt;}
.ws3c{word-spacing:0.864000pt;}
.wsaa{word-spacing:0.920000pt;}
.ws3d{word-spacing:0.960000pt;}
.wsaf{word-spacing:1.000000pt;}
.ws18{word-spacing:1.008000pt;}
.ws82{word-spacing:1.056000pt;}
.ws19{word-spacing:1.088000pt;}
.ws2b{word-spacing:1.104000pt;}
.ws6d{word-spacing:1.152000pt;}
.ws6b{word-spacing:1.248000pt;}
.ws7e{word-spacing:1.440000pt;}
.ws78{word-spacing:1.728000pt;}
.ws62{word-spacing:1.824000pt;}
.ws7b{word-spacing:2.880000pt;}
.ws61{word-spacing:3.120000pt;}
.ws77{word-spacing:3.648000pt;}
.ws67{word-spacing:3.696000pt;}
._c{margin-left:-74.519041pt;}
._d{margin-left:-13.808640pt;}
._17{margin-left:-10.240000pt;}
._15{margin-left:-9.320000pt;}
._e{margin-left:-8.105584pt;}
._10{margin-left:-6.890118pt;}
._5{margin-left:-5.944457pt;}
._2{margin-left:-4.742400pt;}
._6{margin-left:-3.826636pt;}
._1{margin-left:-2.912000pt;}
._0{margin-left:-1.578682pt;}
._3{width:1.003200pt;}
._4{width:2.192046pt;}
._b{width:3.159952pt;}
._9{width:4.149781pt;}
._8{width:5.295427pt;}
._14{width:6.585583pt;}
._13{width:7.498682pt;}
._12{width:8.720002pt;}
._11{width:11.520000pt;}
._f{width:13.583993pt;}
._16{width:15.040002pt;}
._7{width:42.713060pt;}
._a{width:44.605447pt;}
.fs5{font-size:31.199999pt;}
.fsa{font-size:33.792000pt;}
.fsb{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs9{font-size:47.616002pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y160{bottom:3.071330pt;}
.y175{bottom:3.071452pt;}
.yf2{bottom:3.071462pt;}
.ye9{bottom:3.071737pt;}
.y121{bottom:3.071859pt;}
.y102{bottom:3.072001pt;}
.ydf{bottom:3.072144pt;}
.y13e{bottom:3.072266pt;}
.yfa{bottom:3.072398pt;}
.y127{bottom:3.072795pt;}
.y15a{bottom:3.073059pt;}
.y144{bottom:3.073202pt;}
.y15f{bottom:7.679199pt;}
.y137{bottom:7.679321pt;}
.y174{bottom:7.679443pt;}
.yf1{bottom:7.679454pt;}
.ye8{bottom:7.679728pt;}
.y120{bottom:7.679850pt;}
.y100{bottom:7.680003pt;}
.yde{bottom:7.680135pt;}
.y13d{bottom:7.680257pt;}
.yf9{bottom:7.680400pt;}
.y126{bottom:7.680786pt;}
.y159{bottom:7.680929pt;}
.y112{bottom:7.680934pt;}
.y143{bottom:7.681193pt;}
.y138{bottom:13.056866pt;}
.y176{bottom:13.056988pt;}
.yf3{bottom:13.056998pt;}
.yea{bottom:13.057273pt;}
.y122{bottom:13.057395pt;}
.y103{bottom:13.057537pt;}
.ye0{bottom:13.057680pt;}
.y13f{bottom:13.057802pt;}
.yfb{bottom:13.057934pt;}
.y128{bottom:13.058331pt;}
.y113{bottom:13.058468pt;}
.y15b{bottom:13.058595pt;}
.y145{bottom:13.058738pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y2f{bottom:60.718132pt;}
.y77{bottom:60.934668pt;}
.y116{bottom:61.287998pt;}
.y1b4{bottom:66.130130pt;}
.y1e7{bottom:68.963328pt;}
.y2e{bottom:74.046132pt;}
.y106{bottom:74.271071pt;}
.y76{bottom:74.271999pt;}
.yb7{bottom:74.281337pt;}
.y115{bottom:74.619998pt;}
.y237{bottom:74.746236pt;}
.y169{bottom:74.923205pt;}
.y1b3{bottom:79.462129pt;}
.y1e6{bottom:80.293328pt;}
.y111{bottom:81.282669pt;}
.y236{bottom:86.076236pt;}
.y105{bottom:87.603070pt;}
.y75{bottom:87.603998pt;}
.yb6{bottom:87.613336pt;}
.y168{bottom:88.255204pt;}
.y114{bottom:89.727997pt;}
.y110{bottom:89.731065pt;}
.y1e5{bottom:91.623329pt;}
.y1b2{bottom:92.806135pt;}
.yff{bottom:94.266663pt;}
.y235{bottom:97.406236pt;}
.y74{bottom:100.935997pt;}
.yb5{bottom:100.945336pt;}
.y167{bottom:101.587203pt;}
.y101{bottom:101.946665pt;}
.y104{bottom:102.711070pt;}
.yfe{bottom:102.714138pt;}
.y1e4{bottom:102.953329pt;}
.y10f{bottom:104.131065pt;}
.y1b1{bottom:106.138134pt;}
.y234{bottom:108.736236pt;}
.y10d{bottom:110.794668pt;}
.y2d{bottom:113.942934pt;}
.y73{bottom:114.267997pt;}
.yb4{bottom:114.277335pt;}
.y1e3{bottom:114.283329pt;}
.y166{bottom:114.919203pt;}
.yfd{bottom:117.114138pt;}
.y10e{bottom:119.239065pt;}
.y10c{bottom:119.244272pt;}
.y1b0{bottom:119.470133pt;}
.y233{bottom:120.066236pt;}
.yf8{bottom:123.777334pt;}
.y1e2{bottom:125.613329pt;}
.y2c{bottom:127.280279pt;}
.y72{bottom:127.599996pt;}
.yb3{bottom:127.609334pt;}
.y165{bottom:128.251202pt;}
.y232{bottom:131.396236pt;}
.yfc{bottom:132.222137pt;}
.yf7{bottom:132.226529pt;}
.y1af{bottom:132.802133pt;}
.y10b{bottom:133.644273pt;}
.y1e1{bottom:136.943329pt;}
.y2b{bottom:140.612279pt;}
.yb2{bottom:140.941334pt;}
.y164{bottom:141.584535pt;}
.y231{bottom:142.726236pt;}
.y1ae{bottom:146.134132pt;}
.yf6{bottom:146.626530pt;}
.y10a{bottom:146.976272pt;}
.y1e0{bottom:148.273329pt;}
.y2a{bottom:153.944278pt;}
.y230{bottom:154.056236pt;}
.yb1{bottom:154.273333pt;}
.y71{bottom:154.381467pt;}
.y163{bottom:154.921065pt;}
.y1ad{bottom:159.466131pt;}
.y1df{bottom:159.603329pt;}
.yf5{bottom:159.958529pt;}
.y109{bottom:160.308271pt;}
.y22f{bottom:165.386236pt;}
.yf0{bottom:166.622670pt;}
.y29{bottom:167.276277pt;}
.yb0{bottom:167.605332pt;}
.y70{bottom:167.713466pt;}
.y162{bottom:168.253064pt;}
.y1de{bottom:170.933329pt;}
.y1ac{bottom:172.798131pt;}
.y108{bottom:173.640270pt;}
.y15e{bottom:174.917338pt;}
.yf4{bottom:175.066528pt;}
.yef{bottom:175.067866pt;}
.y22e{bottom:176.716236pt;}
.y28{bottom:180.612279pt;}
.yaf{bottom:180.937331pt;}
.y6f{bottom:181.045465pt;}
.y1dd{bottom:182.266663pt;}
.y161{bottom:183.361064pt;}
.y15d{bottom:183.362798pt;}
.y1ab{bottom:186.130130pt;}
.y107{bottom:186.972270pt;}
.y22d{bottom:188.046237pt;}
.yee{bottom:189.467866pt;}
.y158{bottom:191.093343pt;}
.y27{bottom:193.944278pt;}
.yae{bottom:194.269331pt;}
.y6e{bottom:194.377465pt;}
.y22c{bottom:199.376237pt;}
.y1aa{bottom:199.462129pt;}
.y15c{bottom:199.538798pt;}
.y157{bottom:199.541866pt;}
.yed{bottom:202.799866pt;}
.y26{bottom:207.276277pt;}
.yad{bottom:207.601330pt;}
.y6d{bottom:207.709464pt;}
.y1dc{bottom:208.376131pt;}
.y22b{bottom:210.706237pt;}
.y1a9{bottom:212.830168pt;}
.y156{bottom:213.941866pt;}
.y154{bottom:220.605326pt;}
.y25{bottom:220.610944pt;}
.yac{bottom:220.935997pt;}
.y6c{bottom:221.041463pt;}
.y1db{bottom:221.708130pt;}
.y22a{bottom:222.036237pt;}
.y1a8{bottom:226.162167pt;}
.y155{bottom:229.049866pt;}
.y153{bottom:229.059208pt;}
.yec{bottom:229.301465pt;}
.y11a{bottom:229.640392pt;}
.y229{bottom:233.366237pt;}
.y24{bottom:233.942944pt;}
.yab{bottom:234.267997pt;}
.y6b{bottom:234.374797pt;}
.y1da{bottom:235.041463pt;}
.ye7{bottom:235.965332pt;}
.y1a7{bottom:239.494167pt;}
.y119{bottom:242.972392pt;}
.y152{bottom:243.459208pt;}
.yeb{bottom:244.409465pt;}
.ye6{bottom:244.416677pt;}
.y228{bottom:244.696237pt;}
.y23{bottom:247.277611pt;}
.yaa{bottom:247.599996pt;}
.y1a6{bottom:252.826166pt;}
.y227{bottom:256.026237pt;}
.y151{bottom:256.791207pt;}
.ye5{bottom:258.816678pt;}
.y22{bottom:260.609610pt;}
.ya9{bottom:260.933329pt;}
.y6a{bottom:261.152265pt;}
.y1d9{bottom:261.168294pt;}
.y1a5{bottom:266.158165pt;}
.y226{bottom:267.356237pt;}
.y150{bottom:270.123207pt;}
.ye4{bottom:272.148677pt;}
.y21{bottom:273.945612pt;}
.y69{bottom:274.484265pt;}
.y1d8{bottom:274.500294pt;}
.y225{bottom:278.686237pt;}
.y1a4{bottom:279.490165pt;}
.y14f{bottom:283.455206pt;}
.ye3{bottom:285.480676pt;}
.y20{bottom:287.277611pt;}
.ya8{bottom:287.824288pt;}
.y68{bottom:287.825623pt;}
.y1d7{bottom:287.832293pt;}
.y224{bottom:290.016237pt;}
.y1a3{bottom:292.822164pt;}
.y14e{bottom:296.787205pt;}
.ye2{bottom:298.812675pt;}
.y1f{bottom:300.609610pt;}
.ya7{bottom:301.156288pt;}
.y67{bottom:301.157622pt;}
.y1d6{bottom:301.164292pt;}
.y223{bottom:301.346238pt;}
.ydd{bottom:305.475993pt;}
.y1a2{bottom:306.154163pt;}
.y14d{bottom:310.119205pt;}
.y222{bottom:312.676238pt;}
.ye1{bottom:313.920675pt;}
.ydc{bottom:313.921850pt;}
.y1e{bottom:313.942944pt;}
.ya6{bottom:314.488287pt;}
.y66{bottom:314.489621pt;}
.y1d5{bottom:314.496291pt;}
.y1a1{bottom:319.486162pt;}
.y14c{bottom:323.451204pt;}
.y221{bottom:324.006238pt;}
.y1d{bottom:327.276277pt;}
.ya5{bottom:327.820286pt;}
.y65{bottom:327.821620pt;}
.y1d4{bottom:327.828291pt;}
.ydb{bottom:328.321850pt;}
.y1a0{bottom:332.818162pt;}
.y220{bottom:335.336238pt;}
.y14b{bottom:336.783203pt;}
.y1c{bottom:340.612279pt;}
.ya4{bottom:341.152286pt;}
.y64{bottom:341.153620pt;}
.y1d3{bottom:341.160290pt;}
.yda{bottom:341.653849pt;}
.y19f{bottom:346.150161pt;}
.y21f{bottom:346.666238pt;}
.y1b{bottom:353.944278pt;}
.ya3{bottom:354.484285pt;}
.y63{bottom:354.485619pt;}
.y1d2{bottom:354.492289pt;}
.yd9{bottom:354.987183pt;}
.y21e{bottom:357.996238pt;}
.y19e{bottom:359.482160pt;}
.y14a{bottom:364.106940pt;}
.y1a{bottom:367.276277pt;}
.y62{bottom:367.817618pt;}
.y1d1{bottom:367.824288pt;}
.ya2{bottom:367.842965pt;}
.y21d{bottom:369.326238pt;}
.y19d{bottom:372.814160pt;}
.y149{bottom:377.438940pt;}
.y19{bottom:380.610944pt;}
.y21c{bottom:380.656238pt;}
.y1d0{bottom:381.156288pt;}
.y61{bottom:381.157622pt;}
.ya1{bottom:381.174965pt;}
.yd8{bottom:381.499058pt;}
.y19c{bottom:386.146159pt;}
.y148{bottom:390.770939pt;}
.y21b{bottom:391.986238pt;}
.y18{bottom:393.942944pt;}
.y1cf{bottom:394.488287pt;}
.y60{bottom:394.489621pt;}
.ya0{bottom:394.506964pt;}
.yd7{bottom:394.831058pt;}
.y19b{bottom:399.478158pt;}
.y21a{bottom:403.316238pt;}
.y147{bottom:404.102938pt;}
.y17{bottom:407.308277pt;}
.y1ce{bottom:407.820286pt;}
.y5f{bottom:407.821620pt;}
.y9f{bottom:407.838963pt;}
.yd6{bottom:408.163057pt;}
.y142{bottom:410.765340pt;}
.y19a{bottom:412.810157pt;}
.y219{bottom:414.646239pt;}
.y146{bottom:419.210937pt;}
.y141{bottom:419.212671pt;}
.y16{bottom:420.640276pt;}
.y1cd{bottom:421.152286pt;}
.y5e{bottom:421.153620pt;}
.y9e{bottom:421.170962pt;}
.yd5{bottom:421.495056pt;}
.y218{bottom:425.976239pt;}
.y199{bottom:426.142157pt;}
.y13c{bottom:426.944010pt;}
.y1cc{bottom:434.484285pt;}
.y5d{bottom:434.485619pt;}
.y9d{bottom:434.502962pt;}
.yd4{bottom:434.827055pt;}
.y140{bottom:435.388672pt;}
.y217{bottom:437.306239pt;}
.y198{bottom:439.474156pt;}
.y5c{bottom:447.817618pt;}
.y1cb{bottom:447.821620pt;}
.y9c{bottom:447.834961pt;}
.yd3{bottom:448.159055pt;}
.y216{bottom:448.636239pt;}
.y13b{bottom:449.793074pt;}
.y197{bottom:452.806155pt;}
.y215{bottom:459.966239pt;}
.y5b{bottom:461.150952pt;}
.y1ca{bottom:461.153620pt;}
.y9b{bottom:461.166960pt;}
.yd2{bottom:461.491054pt;}
.y15{bottom:462.640276pt;}
.y13a{bottom:463.125074pt;}
.y196{bottom:466.138155pt;}
.y136{bottom:469.789347pt;}
.y214{bottom:471.296239pt;}
.y5a{bottom:474.485619pt;}
.y9a{bottom:474.498959pt;}
.yd1{bottom:474.823053pt;}
.y14{bottom:477.304276pt;}
.y139{bottom:478.233073pt;}
.y135{bottom:478.236141pt;}
.y195{bottom:479.470154pt;}
.y213{bottom:482.626239pt;}
.y59{bottom:487.817618pt;}
.y99{bottom:487.830959pt;}
.yd0{bottom:488.155053pt;}
.y13{bottom:491.968276pt;}
.y134{bottom:492.636141pt;}
.y194{bottom:492.802153pt;}
.y212{bottom:493.956239pt;}
.y132{bottom:499.300008pt;}
.y58{bottom:501.154954pt;}
.y98{bottom:501.162958pt;}
.y1c9{bottom:501.174924pt;}
.ycf{bottom:501.487052pt;}
.y211{bottom:505.286239pt;}
.y193{bottom:506.134152pt;}
.y12{bottom:506.632276pt;}
.y133{bottom:507.744141pt;}
.y131{bottom:507.746792pt;}
.y57{bottom:514.486953pt;}
.y97{bottom:514.494957pt;}
.y1c8{bottom:514.506923pt;}
.yce{bottom:514.819051pt;}
.y210{bottom:516.616239pt;}
.y192{bottom:519.466152pt;}
.y11{bottom:521.296276pt;}
.y130{bottom:522.146792pt;}
.y56{bottom:527.818952pt;}
.y96{bottom:527.826957pt;}
.y1c7{bottom:527.838922pt;}
.y20f{bottom:527.946240pt;}
.y191{bottom:532.798151pt;}
.y12f{bottom:535.478792pt;}
.y10{bottom:535.960276pt;}
.y20e{bottom:539.276240pt;}
.y55{bottom:541.150952pt;}
.y95{bottom:541.158956pt;}
.y1c6{bottom:541.170922pt;}
.ycd{bottom:541.345723pt;}
.y190{bottom:546.130150pt;}
.y12e{bottom:548.810791pt;}
.y20d{bottom:550.606240pt;}
.yf{bottom:550.624276pt;}
.y94{bottom:554.490955pt;}
.y54{bottom:554.497585pt;}
.y1c5{bottom:554.502921pt;}
.ycc{bottom:554.677723pt;}
.y18f{bottom:559.462149pt;}
.y20c{bottom:561.936240pt;}
.ye{bottom:565.288276pt;}
.y93{bottom:567.822954pt;}
.y53{bottom:567.829584pt;}
.y1c4{bottom:567.834920pt;}
.ycb{bottom:568.009722pt;}
.y18e{bottom:572.799485pt;}
.y20b{bottom:573.266240pt;}
.y12d{bottom:576.130150pt;}
.yd{bottom:579.952276pt;}
.y92{bottom:581.154954pt;}
.y52{bottom:581.161583pt;}
.y1c3{bottom:581.166920pt;}
.yca{bottom:581.341721pt;}
.y20a{bottom:584.596240pt;}
.y18d{bottom:586.131484pt;}
.y12c{bottom:589.462149pt;}
.y91{bottom:594.486953pt;}
.y51{bottom:594.493583pt;}
.y1c2{bottom:594.498919pt;}
.yc{bottom:594.616276pt;}
.yc9{bottom:594.673721pt;}
.y209{bottom:595.926240pt;}
.y18c{bottom:599.463484pt;}
.y12b{bottom:602.798527pt;}
.y208{bottom:607.256240pt;}
.y90{bottom:607.818952pt;}
.y50{bottom:607.825582pt;}
.y1c1{bottom:607.830918pt;}
.yc8{bottom:608.005720pt;}
.yb{bottom:609.280276pt;}
.y18b{bottom:612.795483pt;}
.y12a{bottom:616.130526pt;}
.y207{bottom:618.586240pt;}
.y8f{bottom:621.150952pt;}
.y4f{bottom:621.157581pt;}
.y1c0{bottom:621.162917pt;}
.yc7{bottom:621.337719pt;}
.y125{bottom:622.793335pt;}
.ya{bottom:623.944276pt;}
.y18a{bottom:626.139448pt;}
.y206{bottom:629.916240pt;}
.y129{bottom:631.238525pt;}
.y4e{bottom:634.489580pt;}
.y1bf{bottom:634.494917pt;}
.y8e{bottom:634.516261pt;}
.yc6{bottom:634.669718pt;}
.y9{bottom:638.608276pt;}
.y189{bottom:639.471447pt;}
.y205{bottom:641.246241pt;}
.y124{bottom:645.641594pt;}
.y4d{bottom:647.821580pt;}
.y1be{bottom:647.826916pt;}
.y8d{bottom:647.848261pt;}
.yc5{bottom:648.001718pt;}
.y11f{bottom:652.305339pt;}
.y204{bottom:652.576241pt;}
.y188{bottom:652.803446pt;}
.y123{bottom:660.749593pt;}
.y11e{bottom:660.752244pt;}
.y4c{bottom:661.153579pt;}
.y1bd{bottom:661.158915pt;}
.y8c{bottom:661.180260pt;}
.yc4{bottom:661.333717pt;}
.y203{bottom:663.906241pt;}
.y8{bottom:665.274943pt;}
.y187{bottom:666.135446pt;}
.y32{bottom:673.012797pt;}
.y4b{bottom:674.485578pt;}
.y1bc{bottom:674.490914pt;}
.y8b{bottom:674.512259pt;}
.yc3{bottom:674.665716pt;}
.y11d{bottom:675.152245pt;}
.y24a{bottom:675.161583pt;}
.y202{bottom:675.236241pt;}
.y186{bottom:679.467445pt;}
.y201{bottom:686.566241pt;}
.y4a{bottom:687.817578pt;}
.y1bb{bottom:687.822914pt;}
.y8a{bottom:687.844259pt;}
.yc2{bottom:687.997716pt;}
.y11c{bottom:688.484244pt;}
.y249{bottom:688.493583pt;}
.y31{bottom:691.678796pt;}
.y185{bottom:692.799444pt;}
.y7{bottom:694.592232pt;}
.y200{bottom:697.896241pt;}
.y49{bottom:701.154913pt;}
.y89{bottom:701.176258pt;}
.yc1{bottom:701.329715pt;}
.y11b{bottom:701.816243pt;}
.y248{bottom:701.825582pt;}
.y184{bottom:706.131444pt;}
.y1ff{bottom:709.226241pt;}
.y30{bottom:710.344796pt;}
.y48{bottom:714.486912pt;}
.y88{bottom:714.508257pt;}
.yc0{bottom:714.661714pt;}
.y247{bottom:715.157581pt;}
.y183{bottom:719.463443pt;}
.y1fe{bottom:720.556241pt;}
.y47{bottom:727.818912pt;}
.y87{bottom:727.840256pt;}
.ybf{bottom:727.993713pt;}
.y246{bottom:728.489580pt;}
.y1fd{bottom:731.886241pt;}
.y182{bottom:732.795442pt;}
.y6{bottom:734.597566pt;}
.y118{bottom:736.213736pt;}
.y46{bottom:741.150911pt;}
.y86{bottom:741.172256pt;}
.ybe{bottom:741.325713pt;}
.y245{bottom:741.821580pt;}
.y1fc{bottom:743.216241pt;}
.y181{bottom:746.127441pt;}
.y117{bottom:749.545736pt;}
.y1ba{bottom:754.484244pt;}
.y45{bottom:754.493583pt;}
.y85{bottom:754.504255pt;}
.y1fb{bottom:754.546242pt;}
.ybd{bottom:754.657712pt;}
.y244{bottom:755.153579pt;}
.y16a{bottom:758.185710pt;}
.y180{bottom:759.460775pt;}
.y1fa{bottom:765.876242pt;}
.y1b9{bottom:767.817578pt;}
.y44{bottom:767.825582pt;}
.y84{bottom:767.836254pt;}
.ybc{bottom:767.989711pt;}
.y243{bottom:768.485578pt;}
.y5{bottom:774.602901pt;}
.y1f9{bottom:777.206242pt;}
.y1b8{bottom:781.150911pt;}
.y43{bottom:781.157581pt;}
.y83{bottom:781.168254pt;}
.ybb{bottom:781.321710pt;}
.y242{bottom:781.817578pt;}
.y1f8{bottom:788.536242pt;}
.y17f{bottom:788.800778pt;}
.y1b7{bottom:794.485578pt;}
.y42{bottom:794.489580pt;}
.y82{bottom:794.500253pt;}
.yba{bottom:794.653710pt;}
.y241{bottom:795.149577pt;}
.y1f7{bottom:799.866242pt;}
.y17e{bottom:802.132778pt;}
.y1b6{bottom:807.817578pt;}
.y41{bottom:807.821580pt;}
.y81{bottom:807.832252pt;}
.yb9{bottom:807.985709pt;}
.y1f6{bottom:811.196242pt;}
.y240{bottom:814.486912pt;}
.y4{bottom:814.608236pt;}
.y17d{bottom:815.464777pt;}
.y1b5{bottom:821.150911pt;}
.y40{bottom:821.153579pt;}
.y80{bottom:821.164251pt;}
.yb8{bottom:821.317708pt;}
.y1f5{bottom:822.526242pt;}
.y33{bottom:823.475179pt;}
.y23f{bottom:827.818912pt;}
.y17c{bottom:828.796776pt;}
.y1f4{bottom:833.856242pt;}
.y3f{bottom:834.485578pt;}
.y7f{bottom:834.496251pt;}
.y17b{bottom:842.128775pt;}
.y1f3{bottom:845.186242pt;}
.y23e{bottom:847.150911pt;}
.y3e{bottom:847.817578pt;}
.y7e{bottom:847.828250pt;}
.y17a{bottom:855.466528pt;}
.y1f2{bottom:856.516242pt;}
.y3d{bottom:861.150911pt;}
.y7d{bottom:861.160249pt;}
.y23d{bottom:866.482910pt;}
.y1f1{bottom:867.846243pt;}
.y179{bottom:868.798527pt;}
.y3c{bottom:874.486912pt;}
.y7c{bottom:874.492249pt;}
.y1f0{bottom:879.176243pt;}
.y23c{bottom:879.816243pt;}
.y178{bottom:882.130526pt;}
.y3b{bottom:887.818912pt;}
.y7b{bottom:887.824248pt;}
.y173{bottom:888.794678pt;}
.y1ef{bottom:890.506243pt;}
.y177{bottom:897.238525pt;}
.y172{bottom:897.242511pt;}
.y3a{bottom:901.150911pt;}
.y7a{bottom:901.156247pt;}
.y1ee{bottom:901.836243pt;}
.y23b{bottom:903.817578pt;}
.y171{bottom:911.642511pt;}
.y1ed{bottom:913.166243pt;}
.y39{bottom:914.485578pt;}
.y79{bottom:914.488246pt;}
.y23a{bottom:917.149577pt;}
.y1ec{bottom:924.496243pt;}
.y170{bottom:924.974511pt;}
.y38{bottom:927.817578pt;}
.y78{bottom:927.820246pt;}
.y239{bottom:930.482910pt;}
.y1eb{bottom:935.826243pt;}
.y16f{bottom:938.306510pt;}
.y37{bottom:941.152245pt;}
.y1ea{bottom:947.156243pt;}
.y16e{bottom:951.641594pt;}
.y238{bottom:954.482910pt;}
.y36{bottom:954.484244pt;}
.y16c{bottom:958.305339pt;}
.y1e9{bottom:958.486243pt;}
.y16d{bottom:965.985189pt;}
.y16b{bottom:966.749593pt;}
.y35{bottom:967.816243pt;}
.y1e8{bottom:969.816243pt;}
.y34{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.h16{height:19.198667pt;}
.hf{height:19.199999pt;}
.h14{height:19.201333pt;}
.hb{height:31.461333pt;}
.ha{height:32.605469pt;}
.h12{height:33.420288pt;}
.h11{height:33.859584pt;}
.h7{height:34.523438pt;}
.h2{height:38.346667pt;}
.h6{height:38.359375pt;}
.h4{height:39.305333pt;}
.h19{height:39.560000pt;}
.h18{height:40.080000pt;}
.h3{height:40.661333pt;}
.h17{height:40.960000pt;}
.he{height:42.195312pt;}
.h13{height:45.235202pt;}
.h8{height:46.080000pt;}
.h10{height:47.092226pt;}
.h9{height:47.472000pt;}
.hd{height:48.096000pt;}
.h15{height:49.152000pt;}
.hc{height:66.144000pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w4{width:11.136000pt;}
.w5{width:47.616002pt;}
.w3{width:48.000000pt;}
.w2{width:48.383998pt;}
.w8{width:53.376002pt;}
.w7{width:53.760000pt;}
.w6{width:54.144002pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:5.376058pt;}
.xb{left:6.913594pt;}
.x6{left:12.515479pt;}
.x16{left:27.648031pt;}
.x2{left:54.392400pt;}
.x7{left:125.291331pt;}
.x4{left:207.516805pt;}
.x5{left:223.516770pt;}
.x22{left:255.517476pt;}
.x18{left:257.067993pt;}
.x30{left:267.195190pt;}
.x19{left:305.436666pt;}
.x1e{left:334.776001pt;}
.x29{left:338.481323pt;}
.xc{left:341.070658pt;}
.x12{left:344.962646pt;}
.x1f{left:382.830404pt;}
.xd{left:389.086670pt;}
.x13{left:392.968384pt;}
.x2e{left:397.685588pt;}
.x2c{left:407.412923pt;}
.x25{left:444.181315pt;}
.x2d{left:446.617187pt;}
.xe{left:448.918660pt;}
.x26{left:455.369751pt;}
.x1a{left:493.739990pt;}
.xf{left:497.016683pt;}
.x1b{left:504.860799pt;}
.x27{left:507.300008pt;}
.x3{left:519.632528pt;}
.x23{left:532.165324pt;}
.x28{left:555.353068pt;}
.x24{left:579.829061pt;}
.x20{left:605.045329pt;}
.x1c{left:609.102661pt;}
.x14{left:613.813314pt;}
.x1d{left:620.036418pt;}
.x15{left:628.405314pt;}
.x21{left:653.482381pt;}
.x17{left:661.813314pt;}
.x2a{left:668.553345pt;}
.x2b{left:678.522664pt;}
.x9{left:684.345296pt;}
.x10{left:688.246663pt;}
.x11{left:699.481038pt;}
.x2f{left:725.336507pt;}
.x8{left:732.628825pt;}
.x1{left:733.540283pt;}
}




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