
    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_dccf3c1f2f29aca8c0116243.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_ee338fa75ddd93a6ba84e53a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.098000;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_359312aa1ed446c447d2b3d0.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_64e23e268b86dbf742370814.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_b0e701698383343a3430385b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.098145;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_dbcd1cd49f7343aeed181532.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.411000;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_401eafaeebe2408d04dbde69.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_be72460c34c2fa5e08789d33.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c5ba462a5bc3e85ff03b7857.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908000;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_f1dc3b2bdbf962b9f1e0a591.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_0eef415a1146c8fffd0289d4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3c10f019a1e424d979b416ef.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_01967e21bef7625f1dfa322f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.376000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_99b7c554e9f454d52be4d20a.woff2')format("woff");}.fff{font-family:fff;line-height:1.510000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400879px;}
.v5{vertical-align:-18.360168px;}
.v4{vertical-align:-17.339996px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.185982px;}
.v1{vertical-align:20.400879px;}
.v6{vertical-align:44.981999px;}
.v7{vertical-align:59.280029px;}
.ls9b{letter-spacing:-2.475000px;}
.ls4e{letter-spacing:-1.998000px;}
.ls55{letter-spacing:-1.836000px;}
.lsa4{letter-spacing:-1.755000px;}
.ls6f{letter-spacing:-1.596000px;}
.ls9e{letter-spacing:-1.350000px;}
.lsa2{letter-spacing:-1.305000px;}
.ls87{letter-spacing:-1.296000px;}
.ls70{letter-spacing:-1.050000px;}
.lsa1{letter-spacing:-0.810000px;}
.lsa0{letter-spacing:-0.765000px;}
.ls8e{letter-spacing:-0.675000px;}
.ls90{letter-spacing:-0.630000px;}
.ls7f{letter-spacing:-0.546000px;}
.ls88{letter-spacing:-0.495000px;}
.ls9d{letter-spacing:-0.450000px;}
.lsa7{letter-spacing:-0.432000px;}
.ls7e{letter-spacing:-0.420000px;}
.ls9a{letter-spacing:-0.405000px;}
.ls8c{letter-spacing:-0.360000px;}
.ls4d{letter-spacing:-0.324000px;}
.ls8b{letter-spacing:-0.315000px;}
.ls48{letter-spacing:-0.300000px;}
.ls36{letter-spacing:-0.270000px;}
.lsae{letter-spacing:-0.255000px;}
.ls6e{letter-spacing:-0.240000px;}
.ls9f{letter-spacing:-0.225000px;}
.ls37{letter-spacing:-0.216000px;}
.ls8a{letter-spacing:-0.180000px;}
.lsad{letter-spacing:-0.165750px;}
.ls39{letter-spacing:-0.162000px;}
.ls22{letter-spacing:-0.153000px;}
.ls38{letter-spacing:-0.140400px;}
.ls8f{letter-spacing:-0.135000px;}
.ls3a{letter-spacing:-0.108000px;}
.ls58{letter-spacing:-0.105300px;}
.lsb5{letter-spacing:-0.102000px;}
.lsb2{letter-spacing:-0.099450px;}
.ls89{letter-spacing:-0.090000px;}
.ls3b{letter-spacing:-0.070200px;}
.lsb6{letter-spacing:-0.066300px;}
.ls3f{letter-spacing:-0.054000px;}
.ls21{letter-spacing:-0.051000px;}
.lsa3{letter-spacing:-0.045000px;}
.ls5a{letter-spacing:-0.035100px;}
.ls1f{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.000042px;}
.ls7d{letter-spacing:0.000097px;}
.ls73{letter-spacing:0.010796px;}
.ls6{letter-spacing:0.013040px;}
.lsa9{letter-spacing:0.013132px;}
.ls3{letter-spacing:0.013223px;}
.lsaa{letter-spacing:0.013406px;}
.ls2{letter-spacing:0.013772px;}
.ls5{letter-spacing:0.013864px;}
.ls4{letter-spacing:0.013956px;}
.lsa8{letter-spacing:0.014139px;}
.ls49{letter-spacing:0.035100px;}
.ls17{letter-spacing:0.035218px;}
.ls19{letter-spacing:0.035309px;}
.ls94{letter-spacing:0.045000px;}
.ls18{letter-spacing:0.051000px;}
.ls7c{letter-spacing:0.053972px;}
.ls53{letter-spacing:0.053999px;}
.ls31{letter-spacing:0.054000px;}
.ls62{letter-spacing:0.059405px;}
.ls76{letter-spacing:0.070200px;}
.lsf{letter-spacing:0.083283px;}
.ls9{letter-spacing:0.088249px;}
.ls97{letter-spacing:0.090000px;}
.ls23{letter-spacing:0.099450px;}
.ls2f{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.135000px;}
.lse{letter-spacing:0.153000px;}
.ls20{letter-spacing:0.162000px;}
.ls59{letter-spacing:0.175500px;}
.ls83{letter-spacing:0.180000px;}
.ls81{letter-spacing:0.194399px;}
.ls2b{letter-spacing:0.210600px;}
.ls43{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.221275px;}
.ls8d{letter-spacing:0.225000px;}
.ls99{letter-spacing:0.225030px;}
.ls66{letter-spacing:0.225754px;}
.lsb4{letter-spacing:0.232050px;}
.ls4c{letter-spacing:0.245700px;}
.ls2c{letter-spacing:0.265234px;}
.ls32{letter-spacing:0.270000px;}
.ls40{letter-spacing:0.280800px;}
.lsb1{letter-spacing:0.298350px;}
.ls3e{letter-spacing:0.300000px;}
.ls9c{letter-spacing:0.315000px;}
.ls86{letter-spacing:0.315900px;}
.ls80{letter-spacing:0.318609px;}
.ls95{letter-spacing:0.323957px;}
.ls52{letter-spacing:0.323998px;}
.ls2d{letter-spacing:0.324000px;}
.ls71{letter-spacing:0.324059px;}
.ls7a{letter-spacing:0.326254px;}
.lsb3{letter-spacing:0.331500px;}
.ls75{letter-spacing:0.340177px;}
.ls41{letter-spacing:0.351000px;}
.ls63{letter-spacing:0.356398px;}
.ls1e{letter-spacing:0.357000px;}
.ls92{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.364650px;}
.ls65{letter-spacing:0.377995px;}
.ls61{letter-spacing:0.377999px;}
.ls29{letter-spacing:0.378000px;}
.ls64{letter-spacing:0.378001px;}
.lsc{letter-spacing:0.383873px;}
.ls85{letter-spacing:0.386100px;}
.ls27{letter-spacing:0.397800px;}
.ls82{letter-spacing:0.405000px;}
.ls68{letter-spacing:0.410411px;}
.lsb{letter-spacing:0.415184px;}
.ls51{letter-spacing:0.420000px;}
.ls57{letter-spacing:0.421200px;}
.lsb0{letter-spacing:0.430950px;}
.ls30{letter-spacing:0.432000px;}
.ls60{letter-spacing:0.448212px;}
.ls14{letter-spacing:0.458832px;}
.ls1d{letter-spacing:0.459000px;}
.ls25{letter-spacing:0.464100px;}
.ls7b{letter-spacing:0.468651px;}
.ls4b{letter-spacing:0.480000px;}
.ls3d{letter-spacing:0.486000px;}
.ls96{letter-spacing:0.495000px;}
.lsac{letter-spacing:0.510000px;}
.ls15{letter-spacing:0.511750px;}
.lsaf{letter-spacing:0.530400px;}
.ls7{letter-spacing:0.540000px;}
.ls79{letter-spacing:0.545404px;}
.ls1b{letter-spacing:0.561000px;}
.ls12{letter-spacing:0.563203px;}
.ls11{letter-spacing:0.563294px;}
.ls98{letter-spacing:0.585000px;}
.ls4f{letter-spacing:0.593998px;}
.lsd{letter-spacing:0.594000px;}
.ls72{letter-spacing:0.604778px;}
.ls5b{letter-spacing:0.610236px;}
.ls1c{letter-spacing:0.612000px;}
.ls54{letter-spacing:0.620953px;}
.lsa{letter-spacing:0.648000px;}
.ls74{letter-spacing:0.658704px;}
.lsab{letter-spacing:0.663000px;}
.ls84{letter-spacing:0.675000px;}
.ls34{letter-spacing:0.702000px;}
.ls13{letter-spacing:0.714000px;}
.ls47{letter-spacing:0.755977px;}
.ls4a{letter-spacing:0.756000px;}
.ls91{letter-spacing:0.765000px;}
.ls50{letter-spacing:0.772187px;}
.ls46{letter-spacing:0.788407px;}
.ls93{letter-spacing:0.810000px;}
.ls16{letter-spacing:0.816000px;}
.ls45{letter-spacing:0.858605px;}
.ls44{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.867000px;}
.ls24{letter-spacing:0.895050px;}
.ls6d{letter-spacing:0.912600px;}
.ls5e{letter-spacing:0.914990px;}
.ls2e{letter-spacing:0.918000px;}
.lsa5{letter-spacing:0.972000px;}
.ls5d{letter-spacing:0.982800px;}
.ls67{letter-spacing:1.096229px;}
.ls35{letter-spacing:1.134000px;}
.ls77{letter-spacing:1.188000px;}
.ls5f{letter-spacing:1.322992px;}
.ls1a{letter-spacing:1.377000px;}
.ls3c{letter-spacing:1.404000px;}
.ls5c{letter-spacing:1.457995px;}
.ls42{letter-spacing:1.512000px;}
.ls33{letter-spacing:1.728000px;}
.ls78{letter-spacing:1.787445px;}
.ls56{letter-spacing:2.160000px;}
.ls0{letter-spacing:2.592000px;}
.ls28{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.lsa6{letter-spacing:6.120000px;}
.ls6b{letter-spacing:104.580000px;}
.ls6a{letter-spacing:395.640014px;}
.ls69{letter-spacing:441.545980px;}
.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;}
}
.ws1{word-spacing:-15.067500px;}
.ws77{word-spacing:-15.000000px;}
.ws2e{word-spacing:-14.700000px;}
.ws6d{word-spacing:-13.596000px;}
.ws34{word-spacing:-13.500000px;}
.ws5a{word-spacing:-13.122000px;}
.ws37{word-spacing:-12.798000px;}
.ws68{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.480000px;}
.ws2{word-spacing:-12.360000px;}
.ws35{word-spacing:-12.258000px;}
.ws33{word-spacing:-12.150000px;}
.ws69{word-spacing:-12.096000px;}
.ws93{word-spacing:-10.962000px;}
.wsaa{word-spacing:-10.890000px;}
.ws66{word-spacing:-10.422000px;}
.ws95{word-spacing:-10.305000px;}
.ws94{word-spacing:-10.125000px;}
.wsad{word-spacing:-10.035000px;}
.wsbb{word-spacing:-9.900000px;}
.ws9b{word-spacing:-9.855000px;}
.wsac{word-spacing:-9.765000px;}
.wsb4{word-spacing:-9.720000px;}
.ws9c{word-spacing:-9.675000px;}
.wsa7{word-spacing:-9.495000px;}
.ws78{word-spacing:-9.114000px;}
.wsa8{word-spacing:-9.000000px;}
.ws75{word-spacing:-8.880300px;}
.ws76{word-spacing:-8.775000px;}
.ws89{word-spacing:-8.694000px;}
.wsa9{word-spacing:-8.550000px;}
.ws67{word-spacing:-8.388900px;}
.ws91{word-spacing:-8.353800px;}
.ws38{word-spacing:-8.318700px;}
.ws92{word-spacing:-8.283600px;}
.ws36{word-spacing:-8.248500px;}
.ws5b{word-spacing:-8.213400px;}
.ws30{word-spacing:-8.178300px;}
.ws6b{word-spacing:-8.143200px;}
.ws7a{word-spacing:-8.064000px;}
.ws85{word-spacing:-8.037900px;}
.ws3{word-spacing:-8.034000px;}
.ws59{word-spacing:-8.002800px;}
.ws2f{word-spacing:-7.967700px;}
.ws6c{word-spacing:-7.932600px;}
.ws32{word-spacing:-7.897500px;}
.ws6a{word-spacing:-7.862400px;}
.ws31{word-spacing:-7.827300px;}
.wsd2{word-spacing:-7.800000px;}
.ws6{word-spacing:-7.525050px;}
.wsc7{word-spacing:-7.160400px;}
.ws7{word-spacing:-7.094100px;}
.wsc8{word-spacing:-7.060950px;}
.ws9{word-spacing:-7.027800px;}
.ws8{word-spacing:-6.994650px;}
.wscb{word-spacing:-6.961500px;}
.wsc9{word-spacing:-6.928350px;}
.wscc{word-spacing:-6.862050px;}
.ws5{word-spacing:-6.729450px;}
.ws4{word-spacing:-6.630000px;}
.wscd{word-spacing:-6.563700px;}
.wsca{word-spacing:-6.530550px;}
.wsc6{word-spacing:-6.464250px;}
.wsc1{word-spacing:-6.120000px;}
.wsce{word-spacing:-5.874000px;}
.ws5c{word-spacing:-5.508000px;}
.wsf{word-spacing:-5.340000px;}
.wscf{word-spacing:-4.440000px;}
.ws96{word-spacing:-4.224000px;}
.ws23{word-spacing:-3.978000px;}
.wsc2{word-spacing:-3.960000px;}
.ws90{word-spacing:-3.864000px;}
.ws10{word-spacing:-3.840000px;}
.wsd3{word-spacing:-3.723000px;}
.wse{word-spacing:-3.600000px;}
.wsd1{word-spacing:-3.300000px;}
.wsc{word-spacing:-3.276000px;}
.ws1a{word-spacing:-3.009000px;}
.ws2b{word-spacing:-2.958000px;}
.ws1c{word-spacing:-2.754000px;}
.wsd0{word-spacing:-2.700000px;}
.ws1d{word-spacing:-2.499000px;}
.ws11{word-spacing:-2.400000px;}
.ws26{word-spacing:-2.397000px;}
.ws5f{word-spacing:-1.944000px;}
.ws5e{word-spacing:-1.920000px;}
.ws40{word-spacing:-1.890000px;}
.ws41{word-spacing:-1.836000px;}
.ws70{word-spacing:-1.782000px;}
.wsd4{word-spacing:-1.734000px;}
.ws3d{word-spacing:-1.728000px;}
.ws53{word-spacing:-1.620000px;}
.ws4b{word-spacing:-1.566000px;}
.ws1b{word-spacing:-1.530000px;}
.ws73{word-spacing:-1.512000px;}
.ws82{word-spacing:-1.458000px;}
.ws28{word-spacing:-1.428000px;}
.ws7e{word-spacing:-1.404000px;}
.wsc3{word-spacing:-1.386000px;}
.ws6e{word-spacing:-1.296000px;}
.ws2d{word-spacing:-1.275000px;}
.wsd{word-spacing:-1.260000px;}
.ws3a{word-spacing:-1.242000px;}
.wsa3{word-spacing:-1.215000px;}
.ws64{word-spacing:-1.188000px;}
.ws12{word-spacing:-1.134000px;}
.ws51{word-spacing:-1.080000px;}
.ws97{word-spacing:-1.035000px;}
.ws24{word-spacing:-1.020000px;}
.ws4c{word-spacing:-0.972000px;}
.ws84{word-spacing:-0.966000px;}
.wsb{word-spacing:-0.960000px;}
.wsba{word-spacing:-0.945000px;}
.ws83{word-spacing:-0.924000px;}
.ws5d{word-spacing:-0.918000px;}
.ws9e{word-spacing:-0.900000px;}
.ws27{word-spacing:-0.867000px;}
.ws72{word-spacing:-0.864000px;}
.wsa1{word-spacing:-0.855000px;}
.wsd6{word-spacing:-0.816000px;}
.ws60{word-spacing:-0.810000px;}
.ws19{word-spacing:-0.765000px;}
.ws56{word-spacing:-0.756000px;}
.wsa4{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.702000px;}
.ws14{word-spacing:-0.648000px;}
.wsab{word-spacing:-0.630000px;}
.ws48{word-spacing:-0.600000px;}
.ws15{word-spacing:-0.594000px;}
.wsb1{word-spacing:-0.585000px;}
.ws49{word-spacing:-0.540000px;}
.ws22{word-spacing:-0.510000px;}
.ws9a{word-spacing:-0.495000px;}
.ws4d{word-spacing:-0.486000px;}
.wsd8{word-spacing:-0.459000px;}
.ws9d{word-spacing:-0.450000px;}
.ws47{word-spacing:-0.432000px;}
.wsb6{word-spacing:-0.405000px;}
.ws3e{word-spacing:-0.378000px;}
.wsdb{word-spacing:-0.357000px;}
.ws39{word-spacing:-0.324000px;}
.wsa2{word-spacing:-0.315000px;}
.ws1e{word-spacing:-0.306000px;}
.ws3c{word-spacing:-0.270000px;}
.ws4a{word-spacing:-0.216000px;}
.ws74{word-spacing:-0.180000px;}
.ws54{word-spacing:-0.162000px;}
.wsdc{word-spacing:-0.153000px;}
.wsb9{word-spacing:-0.135000px;}
.ws62{word-spacing:-0.120000px;}
.ws46{word-spacing:-0.108000px;}
.ws2c{word-spacing:-0.102000px;}
.wsbd{word-spacing:-0.090000px;}
.ws57{word-spacing:-0.054000px;}
.ws99{word-spacing:-0.045000px;}
.wsa{word-spacing:0.000000px;}
.ws71{word-spacing:0.035100px;}
.wsbc{word-spacing:0.045000px;}
.ws13{word-spacing:0.054000px;}
.ws42{word-spacing:0.070200px;}
.wsb7{word-spacing:0.090000px;}
.ws81{word-spacing:0.108000px;}
.wsb5{word-spacing:0.135000px;}
.wsd9{word-spacing:0.153000px;}
.ws55{word-spacing:0.162000px;}
.wsb8{word-spacing:0.180000px;}
.ws3f{word-spacing:0.216000px;}
.ws80{word-spacing:0.240000px;}
.ws18{word-spacing:0.270000px;}
.wsda{word-spacing:0.306000px;}
.ws43{word-spacing:0.324000px;}
.ws16{word-spacing:0.378000px;}
.wsae{word-spacing:0.405000px;}
.ws29{word-spacing:0.408000px;}
.ws3b{word-spacing:0.432000px;}
.ws52{word-spacing:0.486000px;}
.ws98{word-spacing:0.495000px;}
.ws4f{word-spacing:0.540000px;}
.ws2a{word-spacing:0.561000px;}
.wsaf{word-spacing:0.585000px;}
.ws61{word-spacing:0.594000px;}
.ws9f{word-spacing:0.630000px;}
.ws7f{word-spacing:0.702000px;}
.wsd7{word-spacing:0.714000px;}
.ws8e{word-spacing:0.756000px;}
.ws20{word-spacing:0.816000px;}
.wsa5{word-spacing:0.855000px;}
.ws63{word-spacing:0.864000px;}
.wsbe{word-spacing:0.900000px;}
.ws21{word-spacing:0.969000px;}
.ws87{word-spacing:0.972000px;}
.wsd5{word-spacing:1.020000px;}
.wsb2{word-spacing:1.035000px;}
.ws45{word-spacing:1.080000px;}
.wsa0{word-spacing:1.125000px;}
.wsbf{word-spacing:1.134000px;}
.wsc4{word-spacing:1.188000px;}
.ws1f{word-spacing:1.224000px;}
.wsc5{word-spacing:1.242000px;}
.ws8f{word-spacing:1.296000px;}
.ws86{word-spacing:1.350000px;}
.wsa6{word-spacing:1.395000px;}
.wsb3{word-spacing:1.530000px;}
.ws50{word-spacing:1.620000px;}
.ws8d{word-spacing:1.782000px;}
.ws88{word-spacing:1.890000px;}
.ws65{word-spacing:1.998000px;}
.ws44{word-spacing:2.214000px;}
.ws25{word-spacing:2.448000px;}
.wsb0{word-spacing:2.475000px;}
.wsc0{word-spacing:2.484000px;}
.ws58{word-spacing:2.538000px;}
.ws4e{word-spacing:3.132000px;}
.ws6f{word-spacing:4.158000px;}
.ws7c{word-spacing:58.338000px;}
.ws7b{word-spacing:72.407992px;}
.ws8c{word-spacing:76.650001px;}
.ws7d{word-spacing:78.498000px;}
.ws8b{word-spacing:86.562001px;}
.ws8a{word-spacing:88.914001px;}
.ws79{word-spacing:319.536003px;}
._23{margin-left:-10.980000px;}
._2{margin-left:-9.860336px;}
._26{margin-left:-8.640000px;}
._9{margin-left:-7.603783px;}
._10{margin-left:-6.539891px;}
._a{margin-left:-5.266165px;}
._3{margin-left:-4.139996px;}
._5{margin-left:-2.939998px;}
._0{margin-left:-1.776017px;}
._b{width:1.007986px;}
._4{width:2.130561px;}
._8{width:3.270017px;}
._7{width:4.298022px;}
._12{width:5.440851px;}
._13{width:6.984532px;}
._22{width:8.802000px;}
._24{width:9.952517px;}
._20{width:12.960000px;}
._f{width:15.281992px;}
._21{width:16.920002px;}
._25{width:18.156019px;}
._11{width:41.196157px;}
._6{width:42.419451px;}
._1{width:43.650568px;}
._e{width:47.068184px;}
._c{width:48.183033px;}
._d{width:50.206780px;}
._14{width:53.003993px;}
._18{width:78.875992px;}
._16{width:82.445993px;}
._19{width:86.922045px;}
._1c{width:99.035992px;}
._17{width:100.253992px;}
._1b{width:102.605993px;}
._1d{width:115.080027px;}
._1a{width:117.498059px;}
._15{width:157.176028px;}
._1e{width:194.082005px;}
._1f{width:281.274002px;}
.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);}
.fsc{font-size:27.300001px;}
.fs7{font-size:33.150001px;}
.fs6{font-size:35.099999px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:27.177601px;}
.y1{bottom:27.197851px;}
.y30{bottom:68.313899px;}
.ya0{bottom:68.557499px;}
.ye2{bottom:68.559000px;}
.y117{bottom:69.405150px;}
.y78{bottom:70.299300px;}
.y1a6{bottom:70.402066px;}
.y134{bottom:75.546298px;}
.y1f3{bottom:79.306804px;}
.y14e{bottom:80.592300px;}
.y1a5{bottom:83.148317px;}
.y2f{bottom:83.307899px;}
.y9f{bottom:83.555999px;}
.ye1{bottom:83.557499px;}
.y116{bottom:84.403649px;}
.y77{bottom:85.297799px;}
.y133{bottom:90.544798px;}
.y1f2{bottom:94.305303px;}
.y14d{bottom:95.593807px;}
.y1a4{bottom:95.894567px;}
.y2e{bottom:98.307899px;}
.y9e{bottom:98.554498px;}
.ye0{bottom:98.555999px;}
.y115{bottom:99.402149px;}
.y76{bottom:100.296298px;}
.y132{bottom:105.558305px;}
.y1a3{bottom:108.640817px;}
.y1f1{bottom:109.303802px;}
.y14c{bottom:110.592306px;}
.y2d{bottom:113.307899px;}
.y9d{bottom:113.552997px;}
.ydf{bottom:113.554498px;}
.y114{bottom:114.400648px;}
.y75{bottom:115.294798px;}
.y131{bottom:120.556804px;}
.y1a2{bottom:121.387067px;}
.y1f0{bottom:124.302302px;}
.y14b{bottom:125.592306px;}
.y2c{bottom:128.307899px;}
.y9c{bottom:128.551496px;}
.yde{bottom:128.552997px;}
.y113{bottom:129.399147px;}
.y74{bottom:130.296298px;}
.y1a1{bottom:134.133317px;}
.y130{bottom:135.555303px;}
.y1ef{bottom:139.300801px;}
.y14a{bottom:140.593807px;}
.y2b{bottom:143.307899px;}
.ydd{bottom:143.551496px;}
.y9b{bottom:143.567247px;}
.y112{bottom:144.397646px;}
.y73{bottom:145.294798px;}
.y1a0{bottom:146.879567px;}
.y12f{bottom:150.553802px;}
.y1ee{bottom:154.299300px;}
.y149{bottom:155.592306px;}
.y2a{bottom:158.307899px;}
.ydc{bottom:158.549995px;}
.y9a{bottom:158.565746px;}
.y111{bottom:159.396145px;}
.y19f{bottom:159.625817px;}
.y72{bottom:160.296298px;}
.y12e{bottom:165.552302px;}
.y1ed{bottom:169.297799px;}
.y148{bottom:170.593807px;}
.y19e{bottom:172.372067px;}
.y29{bottom:173.307899px;}
.ydb{bottom:173.549995px;}
.y99{bottom:173.564246px;}
.y110{bottom:174.394645px;}
.y71{bottom:175.294798px;}
.y12d{bottom:180.550801px;}
.y23a{bottom:181.299297px;}
.y1ec{bottom:184.296298px;}
.y19d{bottom:185.118317px;}
.y147{bottom:185.592306px;}
.y98{bottom:188.562745px;}
.y10f{bottom:189.393144px;}
.y70{bottom:190.294798px;}
.y28{bottom:192.636909px;}
.y12c{bottom:195.549300px;}
.y239{bottom:196.299297px;}
.y19c{bottom:197.864568px;}
.y1eb{bottom:199.294798px;}
.y146{bottom:200.593807px;}
.yda{bottom:201.968860px;}
.y27{bottom:203.307910px;}
.y97{bottom:203.561244px;}
.y10e{bottom:204.391643px;}
.y6f{bottom:205.299300px;}
.y12b{bottom:210.547799px;}
.y19b{bottom:210.610818px;}
.y238{bottom:211.299297px;}
.y1ea{bottom:214.293297px;}
.y145{bottom:215.592306px;}
.yd9{bottom:216.967359px;}
.y26{bottom:218.307910px;}
.y96{bottom:218.559743px;}
.y10d{bottom:219.390142px;}
.y6e{bottom:220.297799px;}
.y19a{bottom:223.357068px;}
.y12a{bottom:225.546298px;}
.y237{bottom:226.299297px;}
.y1e9{bottom:229.293297px;}
.y144{bottom:230.596808px;}
.yd8{bottom:231.965858px;}
.y25{bottom:233.307910px;}
.y10c{bottom:234.388641px;}
.y6d{bottom:235.296298px;}
.y199{bottom:236.103318px;}
.y129{bottom:240.544798px;}
.y236{bottom:241.299297px;}
.y143{bottom:245.595307px;}
.yd7{bottom:246.964358px;}
.y24{bottom:248.307910px;}
.y198{bottom:248.849568px;}
.y95{bottom:249.015744px;}
.y10b{bottom:249.387141px;}
.y6c{bottom:250.294798px;}
.y128{bottom:255.543297px;}
.y235{bottom:256.299297px;}
.y142{bottom:260.593807px;}
.y197{bottom:261.595818px;}
.yd6{bottom:261.962857px;}
.y1e8{bottom:262.537017px;}
.y23{bottom:263.307910px;}
.y94{bottom:264.014243px;}
.y10a{bottom:264.385640px;}
.y6b{bottom:265.293297px;}
.y127{bottom:270.543297px;}
.y234{bottom:271.299297px;}
.y196{bottom:274.342068px;}
.y1e7{bottom:275.283267px;}
.y141{bottom:275.592306px;}
.yd5{bottom:276.961356px;}
.y22{bottom:278.307910px;}
.y93{bottom:279.012742px;}
.y109{bottom:279.384139px;}
.y195{bottom:287.088318px;}
.y1e6{bottom:288.029517px;}
.y140{bottom:290.593807px;}
.y233{bottom:290.628296px;}
.yd4{bottom:291.959855px;}
.y6a{bottom:293.817333px;}
.y92{bottom:294.011241px;}
.y108{bottom:294.382638px;}
.y21{bottom:297.636909px;}
.y194{bottom:299.834568px;}
.y1e5{bottom:300.775767px;}
.y126{bottom:303.547799px;}
.y13f{bottom:305.592306px;}
.y232{bottom:305.628296px;}
.yd3{bottom:306.958354px;}
.y69{bottom:308.815832px;}
.y91{bottom:309.009741px;}
.y107{bottom:309.381137px;}
.y193{bottom:312.580819px;}
.y1e4{bottom:313.522017px;}
.y125{bottom:318.546298px;}
.y13e{bottom:320.590805px;}
.yd2{bottom:321.956854px;}
.y68{bottom:323.814331px;}
.y90{bottom:324.008240px;}
.y106{bottom:324.379636px;}
.y192{bottom:325.327069px;}
.y1e3{bottom:326.268267px;}
.y231{bottom:329.793296px;}
.y124{bottom:333.544798px;}
.yd1{bottom:336.964358px;}
.y191{bottom:338.073319px;}
.y20{bottom:338.187313px;}
.y67{bottom:338.812830px;}
.y1e2{bottom:339.014517px;}
.y105{bottom:339.378136px;}
.y230{bottom:347.793296px;}
.y123{bottom:348.543297px;}
.y190{bottom:350.819569px;}
.y1e1{bottom:351.760767px;}
.yd0{bottom:351.962857px;}
.y8f{bottom:352.033215px;}
.y1f{bottom:353.185812px;}
.y66{bottom:353.811329px;}
.y104{bottom:354.376635px;}
.y18f{bottom:363.565819px;}
.y1e0{bottom:364.507018px;}
.y22f{bottom:365.793296px;}
.ycf{bottom:366.961356px;}
.y8e{bottom:367.031714px;}
.y1e{bottom:368.187313px;}
.y65{bottom:368.809829px;}
.y103{bottom:369.375134px;}
.y164{bottom:369.718807px;}
.y18e{bottom:376.312069px;}
.y1df{bottom:377.253268px;}
.yce{bottom:381.959855px;}
.y8d{bottom:382.030213px;}
.y1d{bottom:383.185812px;}
.y22e{bottom:383.793319px;}
.y64{bottom:383.808328px;}
.y102{bottom:384.373633px;}
.y163{bottom:384.717306px;}
.y18d{bottom:389.058319px;}
.y1de{bottom:389.999518px;}
.ycd{bottom:396.958354px;}
.y8c{bottom:397.028713px;}
.y1c{bottom:398.227812px;}
.y63{bottom:398.806827px;}
.y101{bottom:399.372132px;}
.y162{bottom:399.717306px;}
.y22d{bottom:401.793319px;}
.y18c{bottom:401.804569px;}
.y1dd{bottom:402.745768px;}
.y13d{bottom:405.604673px;}
.ycc{bottom:411.956854px;}
.y8b{bottom:412.027212px;}
.y1b{bottom:413.226311px;}
.y62{bottom:413.805326px;}
.y100{bottom:414.370632px;}
.y18b{bottom:414.550819px;}
.y161{bottom:414.715805px;}
.y1dc{bottom:415.492018px;}
.y22c{bottom:419.793319px;}
.y13c{bottom:420.603172px;}
.ycb{bottom:426.966772px;}
.y8a{bottom:427.028713px;}
.y18a{bottom:427.297070px;}
.y1db{bottom:428.238268px;}
.y61{bottom:428.803825px;}
.yff{bottom:429.369131px;}
.y13b{bottom:435.601671px;}
.y22b{bottom:437.793319px;}
.y189{bottom:440.043320px;}
.y1da{bottom:440.984518px;}
.yca{bottom:441.965271px;}
.y89{bottom:442.027212px;}
.y60{bottom:443.802325px;}
.yfe{bottom:444.367630px;}
.y160{bottom:444.895805px;}
.y13a{bottom:450.600171px;}
.y188{bottom:452.793320px;}
.y1d9{bottom:453.730768px;}
.y22a{bottom:455.793319px;}
.yc9{bottom:456.963771px;}
.y88{bottom:457.033215px;}
.y5f{bottom:458.800824px;}
.y1a{bottom:460.476311px;}
.y15f{bottom:462.336305px;}
.y139{bottom:465.598670px;}
.y1d8{bottom:466.477018px;}
.yc8{bottom:471.962270px;}
.y87{bottom:472.031714px;}
.y229{bottom:473.793319px;}
.y5e{bottom:473.799323px;}
.y19{bottom:476.973311px;}
.yfd{bottom:477.369131px;}
.y1d7{bottom:479.223269px;}
.y15e{bottom:479.776805px;}
.y138{bottom:480.597169px;}
.y187{bottom:485.794821px;}
.yc7{bottom:486.960769px;}
.y86{bottom:487.030213px;}
.y5d{bottom:488.797822px;}
.y228{bottom:491.793319px;}
.y1d6{bottom:491.969519px;}
.yfc{bottom:492.369131px;}
.y18{bottom:493.470311px;}
.y137{bottom:495.595668px;}
.y15d{bottom:497.217305px;}
.y159{bottom:497.224806px;}
.y186{bottom:500.793320px;}
.y85{bottom:502.028713px;}
.y5c{bottom:503.796321px;}
.y1d5{bottom:504.715769px;}
.yfb{bottom:507.372132px;}
.y158{bottom:508.470305px;}
.y227{bottom:509.793319px;}
.y17{bottom:509.967311px;}
.y136{bottom:510.594167px;}
.y15c{bottom:514.657805px;}
.y15b{bottom:514.665307px;}
.y185{bottom:515.793320px;}
.y84{bottom:517.027212px;}
.y1d4{bottom:517.462019px;}
.yc6{bottom:517.875768px;}
.y5b{bottom:518.794821px;}
.y157{bottom:519.715805px;}
.yfa{bottom:522.370632px;}
.y135{bottom:525.592667px;}
.y15a{bottom:525.910807px;}
.y16{bottom:526.464311px;}
.y226{bottom:527.793319px;}
.y1d3{bottom:530.208269px;}
.y83{bottom:532.028713px;}
.yc5{bottom:532.886274px;}
.y5a{bottom:533.806827px;}
.yf9{bottom:537.369131px;}
.y1d2{bottom:542.954519px;}
.y15{bottom:542.961311px;}
.y225{bottom:545.793319px;}
.y82{bottom:547.027212px;}
.yc4{bottom:547.884773px;}
.y59{bottom:548.805326px;}
.y184{bottom:548.811329px;}
.yf8{bottom:552.372132px;}
.y1d1{bottom:555.700769px;}
.y14{bottom:559.458311px;}
.y81{bottom:562.030213px;}
.yc3{bottom:562.883272px;}
.y224{bottom:563.793319px;}
.y58{bottom:563.803825px;}
.y183{bottom:563.809829px;}
.yf7{bottom:567.370632px;}
.y1d0{bottom:568.447019px;}
.y13{bottom:575.955311px;}
.y80{bottom:577.028713px;}
.yc2{bottom:577.881772px;}
.y57{bottom:578.802325px;}
.y182{bottom:578.808328px;}
.y1cf{bottom:581.193269px;}
.y223{bottom:581.793319px;}
.yf6{bottom:582.369131px;}
.y156{bottom:582.729469px;}
.y7f{bottom:592.027212px;}
.y12{bottom:592.452311px;}
.yc1{bottom:592.880271px;}
.y56{bottom:593.800824px;}
.y181{bottom:593.806827px;}
.y1ce{bottom:593.939520px;}
.yf5{bottom:597.372132px;}
.y155{bottom:597.727968px;}
.y222{bottom:599.793319px;}
.y1cd{bottom:606.685770px;}
.y7e{bottom:607.025711px;}
.yc0{bottom:607.878770px;}
.y55{bottom:608.799323px;}
.y180{bottom:608.805326px;}
.y11{bottom:608.949311px;}
.yf4{bottom:612.370632px;}
.y154{bottom:612.726468px;}
.y221{bottom:617.793319px;}
.y1cc{bottom:619.432020px;}
.ybf{bottom:622.877269px;}
.y54{bottom:623.797822px;}
.y17f{bottom:623.803825px;}
.y10{bottom:625.446311px;}
.yf3{bottom:627.369131px;}
.y153{bottom:627.724967px;}
.y1cb{bottom:632.178270px;}
.y7d{bottom:635.049323px;}
.y220{bottom:635.793319px;}
.ybe{bottom:637.875768px;}
.y53{bottom:638.796321px;}
.y17e{bottom:638.802325px;}
.yf{bottom:641.943311px;}
.yf2{bottom:642.390188px;}
.y152{bottom:642.723466px;}
.y1ca{bottom:644.924520px;}
.y7c{bottom:650.047822px;}
.ybd{bottom:652.877269px;}
.y21f{bottom:653.793319px;}
.y52{bottom:653.794821px;}
.y17d{bottom:653.800824px;}
.yf1{bottom:657.388687px;}
.y1c9{bottom:657.670770px;}
.y151{bottom:657.721965px;}
.ye{bottom:658.440311px;}
.y7b{bottom:665.046321px;}
.ybc{bottom:667.875768px;}
.y51{bottom:668.794821px;}
.y17c{bottom:668.799323px;}
.y1c8{bottom:670.417020px;}
.y21e{bottom:671.793319px;}
.yf0{bottom:672.387186px;}
.y150{bottom:672.720464px;}
.yd{bottom:674.937311px;}
.y7a{bottom:680.044821px;}
.ybb{bottom:682.881909px;}
.y1c7{bottom:683.163270px;}
.y50{bottom:683.793320px;}
.y17b{bottom:683.797822px;}
.yef{bottom:687.385685px;}
.y14f{bottom:687.718964px;}
.y21d{bottom:689.793319px;}
.yc{bottom:691.434311px;}
.y79{bottom:695.043320px;}
.y1c6{bottom:695.909520px;}
.yba{bottom:697.880408px;}
.y4f{bottom:698.793320px;}
.y17a{bottom:698.796321px;}
.yee{bottom:702.384185px;}
.y208{bottom:705.556781px;}
.y21c{bottom:707.793319px;}
.y1c5{bottom:708.655771px;}
.yb9{bottom:712.878907px;}
.y179{bottom:713.794821px;}
.yed{bottom:717.382684px;}
.y207{bottom:720.555280px;}
.y1c4{bottom:721.402021px;}
.yb{bottom:721.434310px;}
.y21b{bottom:725.793319px;}
.yb8{bottom:727.877407px;}
.y178{bottom:728.796321px;}
.y4e{bottom:728.805280px;}
.yec{bottom:732.381183px;}
.y1c3{bottom:734.148271px;}
.y206{bottom:735.553780px;}
.ya{bottom:739.434310px;}
.yb7{bottom:742.875906px;}
.y21a{bottom:743.793319px;}
.y177{bottom:743.794821px;}
.y4d{bottom:743.803780px;}
.y1c2{bottom:746.894521px;}
.yeb{bottom:747.379682px;}
.ya8{bottom:749.589455px;}
.y205{bottom:750.552279px;}
.y33{bottom:757.145396px;}
.y9{bottom:757.434265px;}
.yb6{bottom:757.875860px;}
.y176{bottom:758.797776px;}
.y4c{bottom:758.802279px;}
.y1c1{bottom:759.640771px;}
.y219{bottom:761.793273px;}
.yea{bottom:762.378181px;}
.ya7{bottom:764.587954px;}
.y204{bottom:765.550778px;}
.y1c0{bottom:772.387021px;}
.yb5{bottom:772.888780px;}
.y175{bottom:773.796276px;}
.y4b{bottom:773.800778px;}
.y8{bottom:775.434265px;}
.ye9{bottom:777.376681px;}
.y32{bottom:778.144646px;}
.ya6{bottom:779.586453px;}
.y218{bottom:779.793273px;}
.y203{bottom:780.549277px;}
.y1bf{bottom:785.133271px;}
.yb4{bottom:787.887279px;}
.y174{bottom:788.794775px;}
.y4a{bottom:788.799277px;}
.ye8{bottom:792.375180px;}
.y7{bottom:793.434265px;}
.ya5{bottom:794.584952px;}
.y202{bottom:795.547776px;}
.y217{bottom:797.793273px;}
.y1be{bottom:797.879521px;}
.y31{bottom:799.143895px;}
.yb3{bottom:802.885779px;}
.y49{bottom:803.797776px;}
.y173{bottom:803.805280px;}
.ye7{bottom:807.373679px;}
.ya4{bottom:809.583451px;}
.y201{bottom:810.546276px;}
.y1bd{bottom:810.625771px;}
.y216{bottom:815.793273px;}
.yb2{bottom:817.884278px;}
.y48{bottom:818.796276px;}
.y172{bottom:818.803780px;}
.ye6{bottom:822.372178px;}
.y1bc{bottom:823.372022px;}
.ya3{bottom:824.581951px;}
.y200{bottom:825.544775px;}
.y6{bottom:826.422262px;}
.y215{bottom:833.793273px;}
.y47{bottom:833.794775px;}
.y171{bottom:833.802279px;}
.y1bb{bottom:836.118272px;}
.ye5{bottom:837.370677px;}
.ya2{bottom:839.580450px;}
.y1ff{bottom:840.543274px;}
.y46{bottom:848.796276px;}
.yb1{bottom:848.799277px;}
.y170{bottom:848.800778px;}
.y1ba{bottom:848.864522px;}
.y214{bottom:851.793273px;}
.ye4{bottom:852.369177px;}
.ya1{bottom:854.578949px;}
.y1b9{bottom:861.610772px;}
.y1fe{bottom:862.297776px;}
.y45{bottom:863.794775px;}
.yb0{bottom:863.797776px;}
.y16f{bottom:863.799277px;}
.ye3{bottom:867.367676px;}
.y213{bottom:869.793273px;}
.y5{bottom:871.428264px;}
.y1b8{bottom:874.357022px;}
.y1fd{bottom:877.296276px;}
.y44{bottom:878.796276px;}
.y16e{bottom:878.797776px;}
.y1b7{bottom:887.103272px;}
.y212{bottom:887.793273px;}
.y43{bottom:893.794775px;}
.y16d{bottom:893.796276px;}
.y1fc{bottom:899.044775px;}
.y1b6{bottom:899.849522px;}
.y211{bottom:905.793273px;}
.y16c{bottom:908.794775px;}
.yaf{bottom:908.797776px;}
.y42{bottom:908.799277px;}
.y1b5{bottom:912.595772px;}
.y4{bottom:916.434265px;}
.y1fb{bottom:920.793274px;}
.y122{bottom:920.982275px;}
.y210{bottom:923.793273px;}
.yae{bottom:923.796276px;}
.y41{bottom:923.797776px;}
.y1b4{bottom:925.342022px;}
.y34{bottom:926.409576px;}
.y1fa{bottom:935.793274px;}
.y121{bottom:935.985276px;}
.y1b3{bottom:938.088273px;}
.yad{bottom:938.794775px;}
.y40{bottom:938.796276px;}
.y20f{bottom:941.793273px;}
.y1b2{bottom:950.834523px;}
.y120{bottom:950.983776px;}
.y3f{bottom:953.794775px;}
.yac{bottom:953.806781px;}
.y20e{bottom:959.793273px;}
.y1b1{bottom:963.580773px;}
.y11f{bottom:965.982275px;}
.y3e{bottom:968.794775px;}
.y16b{bottom:968.800778px;}
.y1f9{bottom:968.803780px;}
.yab{bottom:968.805280px;}
.y1b0{bottom:976.327023px;}
.y20d{bottom:977.793273px;}
.y11e{bottom:980.980774px;}
.y3d{bottom:983.794775px;}
.y16a{bottom:983.799277px;}
.y1f8{bottom:983.802279px;}
.yaa{bottom:983.803780px;}
.y1af{bottom:989.073273px;}
.y20c{bottom:995.793273px;}
.y3c{bottom:998.794775px;}
.y169{bottom:998.797776px;}
.y1f7{bottom:998.800778px;}
.ya9{bottom:998.802279px;}
.y1ae{bottom:1001.819523px;}
.y11d{bottom:1011.163774px;}
.y20b{bottom:1013.793273px;}
.y168{bottom:1013.796276px;}
.y1f6{bottom:1013.799277px;}
.y3b{bottom:1013.800778px;}
.y1ad{bottom:1014.565773px;}
.y1ac{bottom:1027.312023px;}
.y11c{bottom:1028.604274px;}
.y167{bottom:1028.794775px;}
.y1f5{bottom:1028.797776px;}
.y3a{bottom:1028.799277px;}
.y20a{bottom:1031.793273px;}
.y1ab{bottom:1040.058273px;}
.y166{bottom:1043.796276px;}
.y39{bottom:1043.797776px;}
.y11b{bottom:1046.044774px;}
.y209{bottom:1049.793274px;}
.y1aa{bottom:1052.804524px;}
.y165{bottom:1058.794775px;}
.y38{bottom:1058.796276px;}
.y118{bottom:1063.480774px;}
.y11a{bottom:1063.485274px;}
.y1a9{bottom:1065.550774px;}
.y1f4{bottom:1073.793274px;}
.y37{bottom:1073.794775px;}
.y1a8{bottom:1078.297024px;}
.y36{bottom:1088.793274px;}
.y1a7{bottom:1091.043274px;}
.y119{bottom:1092.166775px;}
.y35{bottom:1139.852966px;}
.y3{bottom:1140.126892px;}
.hd{height:23.842749px;}
.h10{height:35.394000px;}
.hf{height:36.669000px;}
.he{height:41.158746px;}
.h19{height:41.538000px;}
.h16{height:43.008000px;}
.h2{height:43.140000px;}
.h4{height:44.218500px;}
.h1a{height:44.310000px;}
.h1d{height:44.505000px;}
.h1b{height:45.090000px;}
.h3{height:45.744000px;}
.h1c{height:46.080000px;}
.h9{height:46.379883px;}
.ha{height:46.386000px;}
.hb{height:51.840000px;}
.hc{height:53.406000px;}
.h8{height:53.896548px;}
.h1f{height:53.896639px;}
.h1e{height:53.896729px;}
.h7{height:53.896731px;}
.h6{height:53.897461px;}
.h13{height:54.108000px;}
.h14{height:55.296000px;}
.h12{height:56.694000px;}
.h15{height:57.600000px;}
.h18{height:87.989999px;}
.h17{height:88.008000px;}
.h11{height:92.772000px;}
.h5{height:134.004000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:14.077230px;}
.x2{left:61.191450px;}
.x6{left:140.952747px;}
.x4{left:233.456406px;}
.x9{left:238.143906px;}
.x7{left:251.452500px;}
.x15{left:300.594589px;}
.x12{left:313.502246px;}
.xa{left:342.209408px;}
.xb{left:374.297698px;}
.x13{left:430.668002px;}
.xc{left:466.645197px;}
.xd{left:509.222695px;}
.x3{left:584.586594px;}
.xe{left:600.677693px;}
.xf{left:643.255191px;}
.x10{left:734.710189px;}
.x11{left:777.287687px;}
.x14{left:816.003571px;}
.x8{left:824.207428px;}
.x1{left:825.232819px;}
@media print{
.v2{vertical-align:-18.134115pt;}
.v5{vertical-align:-16.320150pt;}
.v4{vertical-align:-15.413330pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.165317pt;}
.v1{vertical-align:18.134115pt;}
.v6{vertical-align:39.983999pt;}
.v7{vertical-align:52.693359pt;}
.ls9b{letter-spacing:-2.200000pt;}
.ls4e{letter-spacing:-1.776000pt;}
.ls55{letter-spacing:-1.632000pt;}
.lsa4{letter-spacing:-1.560000pt;}
.ls6f{letter-spacing:-1.418667pt;}
.ls9e{letter-spacing:-1.200000pt;}
.lsa2{letter-spacing:-1.160000pt;}
.ls87{letter-spacing:-1.152000pt;}
.ls70{letter-spacing:-0.933333pt;}
.lsa1{letter-spacing:-0.720000pt;}
.lsa0{letter-spacing:-0.680000pt;}
.ls8e{letter-spacing:-0.600000pt;}
.ls90{letter-spacing:-0.560000pt;}
.ls7f{letter-spacing:-0.485333pt;}
.ls88{letter-spacing:-0.440000pt;}
.ls9d{letter-spacing:-0.400000pt;}
.lsa7{letter-spacing:-0.384000pt;}
.ls7e{letter-spacing:-0.373333pt;}
.ls9a{letter-spacing:-0.360000pt;}
.ls8c{letter-spacing:-0.320000pt;}
.ls4d{letter-spacing:-0.288000pt;}
.ls8b{letter-spacing:-0.280000pt;}
.ls48{letter-spacing:-0.266667pt;}
.ls36{letter-spacing:-0.240000pt;}
.lsae{letter-spacing:-0.226667pt;}
.ls6e{letter-spacing:-0.213333pt;}
.ls9f{letter-spacing:-0.200000pt;}
.ls37{letter-spacing:-0.192000pt;}
.ls8a{letter-spacing:-0.160000pt;}
.lsad{letter-spacing:-0.147333pt;}
.ls39{letter-spacing:-0.144000pt;}
.ls22{letter-spacing:-0.136000pt;}
.ls38{letter-spacing:-0.124800pt;}
.ls8f{letter-spacing:-0.120000pt;}
.ls3a{letter-spacing:-0.096000pt;}
.ls58{letter-spacing:-0.093600pt;}
.lsb5{letter-spacing:-0.090667pt;}
.lsb2{letter-spacing:-0.088400pt;}
.ls89{letter-spacing:-0.080000pt;}
.ls3b{letter-spacing:-0.062400pt;}
.lsb6{letter-spacing:-0.058933pt;}
.ls3f{letter-spacing:-0.048000pt;}
.ls21{letter-spacing:-0.045333pt;}
.lsa3{letter-spacing:-0.040000pt;}
.ls5a{letter-spacing:-0.031200pt;}
.ls1f{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.000037pt;}
.ls7d{letter-spacing:0.000086pt;}
.ls73{letter-spacing:0.009596pt;}
.ls6{letter-spacing:0.011591pt;}
.lsa9{letter-spacing:0.011673pt;}
.ls3{letter-spacing:0.011754pt;}
.lsaa{letter-spacing:0.011917pt;}
.ls2{letter-spacing:0.012242pt;}
.ls5{letter-spacing:0.012324pt;}
.ls4{letter-spacing:0.012405pt;}
.lsa8{letter-spacing:0.012568pt;}
.ls49{letter-spacing:0.031200pt;}
.ls17{letter-spacing:0.031305pt;}
.ls19{letter-spacing:0.031386pt;}
.ls94{letter-spacing:0.040000pt;}
.ls18{letter-spacing:0.045333pt;}
.ls7c{letter-spacing:0.047975pt;}
.ls53{letter-spacing:0.047999pt;}
.ls31{letter-spacing:0.048000pt;}
.ls62{letter-spacing:0.052805pt;}
.ls76{letter-spacing:0.062400pt;}
.lsf{letter-spacing:0.074029pt;}
.ls9{letter-spacing:0.078444pt;}
.ls97{letter-spacing:0.080000pt;}
.ls23{letter-spacing:0.088400pt;}
.ls2f{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.120000pt;}
.lse{letter-spacing:0.136000pt;}
.ls20{letter-spacing:0.144000pt;}
.ls59{letter-spacing:0.156000pt;}
.ls83{letter-spacing:0.160000pt;}
.ls81{letter-spacing:0.172799pt;}
.ls2b{letter-spacing:0.187200pt;}
.ls43{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.196689pt;}
.ls8d{letter-spacing:0.200000pt;}
.ls99{letter-spacing:0.200027pt;}
.ls66{letter-spacing:0.200670pt;}
.lsb4{letter-spacing:0.206267pt;}
.ls4c{letter-spacing:0.218400pt;}
.ls2c{letter-spacing:0.235763pt;}
.ls32{letter-spacing:0.240000pt;}
.ls40{letter-spacing:0.249600pt;}
.lsb1{letter-spacing:0.265200pt;}
.ls3e{letter-spacing:0.266667pt;}
.ls9c{letter-spacing:0.280000pt;}
.ls86{letter-spacing:0.280800pt;}
.ls80{letter-spacing:0.283208pt;}
.ls95{letter-spacing:0.287962pt;}
.ls52{letter-spacing:0.287999pt;}
.ls2d{letter-spacing:0.288000pt;}
.ls71{letter-spacing:0.288053pt;}
.ls7a{letter-spacing:0.290004pt;}
.lsb3{letter-spacing:0.294667pt;}
.ls75{letter-spacing:0.302380pt;}
.ls41{letter-spacing:0.312000pt;}
.ls63{letter-spacing:0.316798pt;}
.ls1e{letter-spacing:0.317333pt;}
.ls92{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.324133pt;}
.ls65{letter-spacing:0.335995pt;}
.ls61{letter-spacing:0.335999pt;}
.ls29{letter-spacing:0.336000pt;}
.ls64{letter-spacing:0.336001pt;}
.lsc{letter-spacing:0.341220pt;}
.ls85{letter-spacing:0.343200pt;}
.ls27{letter-spacing:0.353600pt;}
.ls82{letter-spacing:0.360000pt;}
.ls68{letter-spacing:0.364810pt;}
.lsb{letter-spacing:0.369052pt;}
.ls51{letter-spacing:0.373333pt;}
.ls57{letter-spacing:0.374400pt;}
.lsb0{letter-spacing:0.383067pt;}
.ls30{letter-spacing:0.384000pt;}
.ls60{letter-spacing:0.398411pt;}
.ls14{letter-spacing:0.407851pt;}
.ls1d{letter-spacing:0.408000pt;}
.ls25{letter-spacing:0.412533pt;}
.ls7b{letter-spacing:0.416578pt;}
.ls4b{letter-spacing:0.426667pt;}
.ls3d{letter-spacing:0.432000pt;}
.ls96{letter-spacing:0.440000pt;}
.lsac{letter-spacing:0.453333pt;}
.ls15{letter-spacing:0.454889pt;}
.lsaf{letter-spacing:0.471467pt;}
.ls7{letter-spacing:0.480000pt;}
.ls79{letter-spacing:0.484803pt;}
.ls1b{letter-spacing:0.498667pt;}
.ls12{letter-spacing:0.500624pt;}
.ls11{letter-spacing:0.500706pt;}
.ls98{letter-spacing:0.520000pt;}
.ls4f{letter-spacing:0.527999pt;}
.lsd{letter-spacing:0.528000pt;}
.ls72{letter-spacing:0.537581pt;}
.ls5b{letter-spacing:0.542432pt;}
.ls1c{letter-spacing:0.544000pt;}
.ls54{letter-spacing:0.551958pt;}
.lsa{letter-spacing:0.576000pt;}
.ls74{letter-spacing:0.585514pt;}
.lsab{letter-spacing:0.589333pt;}
.ls84{letter-spacing:0.600000pt;}
.ls34{letter-spacing:0.624000pt;}
.ls13{letter-spacing:0.634667pt;}
.ls47{letter-spacing:0.671980pt;}
.ls4a{letter-spacing:0.672000pt;}
.ls91{letter-spacing:0.680000pt;}
.ls50{letter-spacing:0.686388pt;}
.ls46{letter-spacing:0.700806pt;}
.ls93{letter-spacing:0.720000pt;}
.ls16{letter-spacing:0.725333pt;}
.ls45{letter-spacing:0.763205pt;}
.ls44{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.770667pt;}
.ls24{letter-spacing:0.795600pt;}
.ls6d{letter-spacing:0.811200pt;}
.ls5e{letter-spacing:0.813324pt;}
.ls2e{letter-spacing:0.816000pt;}
.lsa5{letter-spacing:0.864000pt;}
.ls5d{letter-spacing:0.873600pt;}
.ls67{letter-spacing:0.974426pt;}
.ls35{letter-spacing:1.008000pt;}
.ls77{letter-spacing:1.056000pt;}
.ls5f{letter-spacing:1.175993pt;}
.ls1a{letter-spacing:1.224000pt;}
.ls3c{letter-spacing:1.248000pt;}
.ls5c{letter-spacing:1.295995pt;}
.ls42{letter-spacing:1.344000pt;}
.ls33{letter-spacing:1.536000pt;}
.ls78{letter-spacing:1.588840pt;}
.ls56{letter-spacing:1.920000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls28{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.lsa6{letter-spacing:5.440000pt;}
.ls6b{letter-spacing:92.960000pt;}
.ls6a{letter-spacing:351.680013pt;}
.ls69{letter-spacing:392.485316pt;}
.ws1{word-spacing:-13.393333pt;}
.ws77{word-spacing:-13.333333pt;}
.ws2e{word-spacing:-13.066667pt;}
.ws6d{word-spacing:-12.085333pt;}
.ws34{word-spacing:-12.000000pt;}
.ws5a{word-spacing:-11.664000pt;}
.ws37{word-spacing:-11.376000pt;}
.ws68{word-spacing:-11.136000pt;}
.ws0{word-spacing:-11.093333pt;}
.ws2{word-spacing:-10.986667pt;}
.ws35{word-spacing:-10.896000pt;}
.ws33{word-spacing:-10.800000pt;}
.ws69{word-spacing:-10.752000pt;}
.ws93{word-spacing:-9.744000pt;}
.wsaa{word-spacing:-9.680000pt;}
.ws66{word-spacing:-9.264000pt;}
.ws95{word-spacing:-9.160000pt;}
.ws94{word-spacing:-9.000000pt;}
.wsad{word-spacing:-8.920000pt;}
.wsbb{word-spacing:-8.800000pt;}
.ws9b{word-spacing:-8.760000pt;}
.wsac{word-spacing:-8.680000pt;}
.wsb4{word-spacing:-8.640000pt;}
.ws9c{word-spacing:-8.600000pt;}
.wsa7{word-spacing:-8.440000pt;}
.ws78{word-spacing:-8.101333pt;}
.wsa8{word-spacing:-8.000000pt;}
.ws75{word-spacing:-7.893600pt;}
.ws76{word-spacing:-7.800000pt;}
.ws89{word-spacing:-7.728000pt;}
.wsa9{word-spacing:-7.600000pt;}
.ws67{word-spacing:-7.456800pt;}
.ws91{word-spacing:-7.425600pt;}
.ws38{word-spacing:-7.394400pt;}
.ws92{word-spacing:-7.363200pt;}
.ws36{word-spacing:-7.332000pt;}
.ws5b{word-spacing:-7.300800pt;}
.ws30{word-spacing:-7.269600pt;}
.ws6b{word-spacing:-7.238400pt;}
.ws7a{word-spacing:-7.168000pt;}
.ws85{word-spacing:-7.144800pt;}
.ws3{word-spacing:-7.141333pt;}
.ws59{word-spacing:-7.113600pt;}
.ws2f{word-spacing:-7.082400pt;}
.ws6c{word-spacing:-7.051200pt;}
.ws32{word-spacing:-7.020000pt;}
.ws6a{word-spacing:-6.988800pt;}
.ws31{word-spacing:-6.957600pt;}
.wsd2{word-spacing:-6.933333pt;}
.ws6{word-spacing:-6.688933pt;}
.wsc7{word-spacing:-6.364800pt;}
.ws7{word-spacing:-6.305867pt;}
.wsc8{word-spacing:-6.276400pt;}
.ws9{word-spacing:-6.246933pt;}
.ws8{word-spacing:-6.217467pt;}
.wscb{word-spacing:-6.188000pt;}
.wsc9{word-spacing:-6.158533pt;}
.wscc{word-spacing:-6.099600pt;}
.ws5{word-spacing:-5.981733pt;}
.ws4{word-spacing:-5.893333pt;}
.wscd{word-spacing:-5.834400pt;}
.wsca{word-spacing:-5.804933pt;}
.wsc6{word-spacing:-5.746000pt;}
.wsc1{word-spacing:-5.440000pt;}
.wsce{word-spacing:-5.221333pt;}
.ws5c{word-spacing:-4.896000pt;}
.wsf{word-spacing:-4.746667pt;}
.wscf{word-spacing:-3.946667pt;}
.ws96{word-spacing:-3.754667pt;}
.ws23{word-spacing:-3.536000pt;}
.wsc2{word-spacing:-3.520000pt;}
.ws90{word-spacing:-3.434667pt;}
.ws10{word-spacing:-3.413333pt;}
.wsd3{word-spacing:-3.309333pt;}
.wse{word-spacing:-3.200000pt;}
.wsd1{word-spacing:-2.933333pt;}
.wsc{word-spacing:-2.912000pt;}
.ws1a{word-spacing:-2.674667pt;}
.ws2b{word-spacing:-2.629333pt;}
.ws1c{word-spacing:-2.448000pt;}
.wsd0{word-spacing:-2.400000pt;}
.ws1d{word-spacing:-2.221333pt;}
.ws11{word-spacing:-2.133333pt;}
.ws26{word-spacing:-2.130667pt;}
.ws5f{word-spacing:-1.728000pt;}
.ws5e{word-spacing:-1.706667pt;}
.ws40{word-spacing:-1.680000pt;}
.ws41{word-spacing:-1.632000pt;}
.ws70{word-spacing:-1.584000pt;}
.wsd4{word-spacing:-1.541333pt;}
.ws3d{word-spacing:-1.536000pt;}
.ws53{word-spacing:-1.440000pt;}
.ws4b{word-spacing:-1.392000pt;}
.ws1b{word-spacing:-1.360000pt;}
.ws73{word-spacing:-1.344000pt;}
.ws82{word-spacing:-1.296000pt;}
.ws28{word-spacing:-1.269333pt;}
.ws7e{word-spacing:-1.248000pt;}
.wsc3{word-spacing:-1.232000pt;}
.ws6e{word-spacing:-1.152000pt;}
.ws2d{word-spacing:-1.133333pt;}
.wsd{word-spacing:-1.120000pt;}
.ws3a{word-spacing:-1.104000pt;}
.wsa3{word-spacing:-1.080000pt;}
.ws64{word-spacing:-1.056000pt;}
.ws12{word-spacing:-1.008000pt;}
.ws51{word-spacing:-0.960000pt;}
.ws97{word-spacing:-0.920000pt;}
.ws24{word-spacing:-0.906667pt;}
.ws4c{word-spacing:-0.864000pt;}
.ws84{word-spacing:-0.858667pt;}
.wsb{word-spacing:-0.853333pt;}
.wsba{word-spacing:-0.840000pt;}
.ws83{word-spacing:-0.821333pt;}
.ws5d{word-spacing:-0.816000pt;}
.ws9e{word-spacing:-0.800000pt;}
.ws27{word-spacing:-0.770667pt;}
.ws72{word-spacing:-0.768000pt;}
.wsa1{word-spacing:-0.760000pt;}
.wsd6{word-spacing:-0.725333pt;}
.ws60{word-spacing:-0.720000pt;}
.ws19{word-spacing:-0.680000pt;}
.ws56{word-spacing:-0.672000pt;}
.wsa4{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.624000pt;}
.ws14{word-spacing:-0.576000pt;}
.wsab{word-spacing:-0.560000pt;}
.ws48{word-spacing:-0.533333pt;}
.ws15{word-spacing:-0.528000pt;}
.wsb1{word-spacing:-0.520000pt;}
.ws49{word-spacing:-0.480000pt;}
.ws22{word-spacing:-0.453333pt;}
.ws9a{word-spacing:-0.440000pt;}
.ws4d{word-spacing:-0.432000pt;}
.wsd8{word-spacing:-0.408000pt;}
.ws9d{word-spacing:-0.400000pt;}
.ws47{word-spacing:-0.384000pt;}
.wsb6{word-spacing:-0.360000pt;}
.ws3e{word-spacing:-0.336000pt;}
.wsdb{word-spacing:-0.317333pt;}
.ws39{word-spacing:-0.288000pt;}
.wsa2{word-spacing:-0.280000pt;}
.ws1e{word-spacing:-0.272000pt;}
.ws3c{word-spacing:-0.240000pt;}
.ws4a{word-spacing:-0.192000pt;}
.ws74{word-spacing:-0.160000pt;}
.ws54{word-spacing:-0.144000pt;}
.wsdc{word-spacing:-0.136000pt;}
.wsb9{word-spacing:-0.120000pt;}
.ws62{word-spacing:-0.106667pt;}
.ws46{word-spacing:-0.096000pt;}
.ws2c{word-spacing:-0.090667pt;}
.wsbd{word-spacing:-0.080000pt;}
.ws57{word-spacing:-0.048000pt;}
.ws99{word-spacing:-0.040000pt;}
.wsa{word-spacing:0.000000pt;}
.ws71{word-spacing:0.031200pt;}
.wsbc{word-spacing:0.040000pt;}
.ws13{word-spacing:0.048000pt;}
.ws42{word-spacing:0.062400pt;}
.wsb7{word-spacing:0.080000pt;}
.ws81{word-spacing:0.096000pt;}
.wsb5{word-spacing:0.120000pt;}
.wsd9{word-spacing:0.136000pt;}
.ws55{word-spacing:0.144000pt;}
.wsb8{word-spacing:0.160000pt;}
.ws3f{word-spacing:0.192000pt;}
.ws80{word-spacing:0.213333pt;}
.ws18{word-spacing:0.240000pt;}
.wsda{word-spacing:0.272000pt;}
.ws43{word-spacing:0.288000pt;}
.ws16{word-spacing:0.336000pt;}
.wsae{word-spacing:0.360000pt;}
.ws29{word-spacing:0.362667pt;}
.ws3b{word-spacing:0.384000pt;}
.ws52{word-spacing:0.432000pt;}
.ws98{word-spacing:0.440000pt;}
.ws4f{word-spacing:0.480000pt;}
.ws2a{word-spacing:0.498667pt;}
.wsaf{word-spacing:0.520000pt;}
.ws61{word-spacing:0.528000pt;}
.ws9f{word-spacing:0.560000pt;}
.ws7f{word-spacing:0.624000pt;}
.wsd7{word-spacing:0.634667pt;}
.ws8e{word-spacing:0.672000pt;}
.ws20{word-spacing:0.725333pt;}
.wsa5{word-spacing:0.760000pt;}
.ws63{word-spacing:0.768000pt;}
.wsbe{word-spacing:0.800000pt;}
.ws21{word-spacing:0.861333pt;}
.ws87{word-spacing:0.864000pt;}
.wsd5{word-spacing:0.906667pt;}
.wsb2{word-spacing:0.920000pt;}
.ws45{word-spacing:0.960000pt;}
.wsa0{word-spacing:1.000000pt;}
.wsbf{word-spacing:1.008000pt;}
.wsc4{word-spacing:1.056000pt;}
.ws1f{word-spacing:1.088000pt;}
.wsc5{word-spacing:1.104000pt;}
.ws8f{word-spacing:1.152000pt;}
.ws86{word-spacing:1.200000pt;}
.wsa6{word-spacing:1.240000pt;}
.wsb3{word-spacing:1.360000pt;}
.ws50{word-spacing:1.440000pt;}
.ws8d{word-spacing:1.584000pt;}
.ws88{word-spacing:1.680000pt;}
.ws65{word-spacing:1.776000pt;}
.ws44{word-spacing:1.968000pt;}
.ws25{word-spacing:2.176000pt;}
.wsb0{word-spacing:2.200000pt;}
.wsc0{word-spacing:2.208000pt;}
.ws58{word-spacing:2.256000pt;}
.ws4e{word-spacing:2.784000pt;}
.ws6f{word-spacing:3.696000pt;}
.ws7c{word-spacing:51.856000pt;}
.ws7b{word-spacing:64.362660pt;}
.ws8c{word-spacing:68.133334pt;}
.ws7d{word-spacing:69.776000pt;}
.ws8b{word-spacing:76.944001pt;}
.ws8a{word-spacing:79.034667pt;}
.ws79{word-spacing:284.032003pt;}
._23{margin-left:-9.760000pt;}
._2{margin-left:-8.764743pt;}
._26{margin-left:-7.680000pt;}
._9{margin-left:-6.758918pt;}
._10{margin-left:-5.813236pt;}
._a{margin-left:-4.681036pt;}
._3{margin-left:-3.679997pt;}
._5{margin-left:-2.613331pt;}
._0{margin-left:-1.578682pt;}
._b{width:0.895987pt;}
._4{width:1.893832pt;}
._8{width:2.906682pt;}
._7{width:3.820464pt;}
._12{width:4.836312pt;}
._13{width:6.208473pt;}
._22{width:7.824000pt;}
._24{width:8.846682pt;}
._20{width:11.520000pt;}
._f{width:13.583993pt;}
._21{width:15.040002pt;}
._25{width:16.138684pt;}
._11{width:36.618806pt;}
._6{width:37.706179pt;}
._1{width:38.800505pt;}
._e{width:41.838385pt;}
._c{width:42.829362pt;}
._d{width:44.628249pt;}
._14{width:47.114661pt;}
._18{width:70.111993pt;}
._16{width:73.285327pt;}
._19{width:77.264040pt;}
._1c{width:88.031993pt;}
._17{width:89.114660pt;}
._1b{width:91.205327pt;}
._1d{width:102.293357pt;}
._1a{width:104.442719pt;}
._15{width:139.712025pt;}
._1e{width:172.517338pt;}
._1f{width:250.021335pt;}
.fsc{font-size:24.266668pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.199999pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:24.157867pt;}
.y1{bottom:24.175868pt;}
.y30{bottom:60.723466pt;}
.ya0{bottom:60.940000pt;}
.ye2{bottom:60.941334pt;}
.y117{bottom:61.693467pt;}
.y78{bottom:62.488267pt;}
.y1a6{bottom:62.579615pt;}
.y134{bottom:67.152265pt;}
.y1f3{bottom:70.494937pt;}
.y14e{bottom:71.637600pt;}
.y1a5{bottom:73.909615pt;}
.y2f{bottom:74.051466pt;}
.y9f{bottom:74.271999pt;}
.ye1{bottom:74.273333pt;}
.y116{bottom:75.025466pt;}
.y77{bottom:75.820266pt;}
.y133{bottom:80.484265pt;}
.y1f2{bottom:83.826936pt;}
.y14d{bottom:84.972273pt;}
.y1a4{bottom:85.239615pt;}
.y2e{bottom:87.384799pt;}
.y9e{bottom:87.603998pt;}
.ye0{bottom:87.605332pt;}
.y115{bottom:88.357465pt;}
.y76{bottom:89.152265pt;}
.y132{bottom:93.829604pt;}
.y1a3{bottom:96.569615pt;}
.y1f1{bottom:97.158936pt;}
.y14c{bottom:98.304272pt;}
.y2d{bottom:100.718132pt;}
.y9d{bottom:100.935997pt;}
.ydf{bottom:100.937331pt;}
.y114{bottom:101.689465pt;}
.y75{bottom:102.484265pt;}
.y131{bottom:107.161604pt;}
.y1a2{bottom:107.899615pt;}
.y1f0{bottom:110.490935pt;}
.y14b{bottom:111.637605pt;}
.y2c{bottom:114.051466pt;}
.y9c{bottom:114.267997pt;}
.yde{bottom:114.269331pt;}
.y113{bottom:115.021464pt;}
.y74{bottom:115.818932pt;}
.y1a1{bottom:119.229615pt;}
.y130{bottom:120.493603pt;}
.y1ef{bottom:123.822934pt;}
.y14a{bottom:124.972273pt;}
.y2b{bottom:127.384799pt;}
.ydd{bottom:127.601330pt;}
.y9b{bottom:127.615331pt;}
.y112{bottom:128.353463pt;}
.y73{bottom:129.150931pt;}
.y1a0{bottom:130.559615pt;}
.y12f{bottom:133.825602pt;}
.y1ee{bottom:137.154933pt;}
.y149{bottom:138.304272pt;}
.y2a{bottom:140.718132pt;}
.ydc{bottom:140.933329pt;}
.y9a{bottom:140.947330pt;}
.y111{bottom:141.685463pt;}
.y19f{bottom:141.889615pt;}
.y72{bottom:142.485599pt;}
.y12e{bottom:147.157601pt;}
.y1ed{bottom:150.486933pt;}
.y148{bottom:151.638939pt;}
.y19e{bottom:153.219615pt;}
.y29{bottom:154.051466pt;}
.ydb{bottom:154.266663pt;}
.y99{bottom:154.279329pt;}
.y110{bottom:155.017462pt;}
.y71{bottom:155.817598pt;}
.y12d{bottom:160.489601pt;}
.y23a{bottom:161.154930pt;}
.y1ec{bottom:163.818932pt;}
.y19d{bottom:164.549616pt;}
.y147{bottom:164.970939pt;}
.y98{bottom:167.611329pt;}
.y10f{bottom:168.349461pt;}
.y70{bottom:169.150931pt;}
.y28{bottom:171.232808pt;}
.y12c{bottom:173.821600pt;}
.y239{bottom:174.488264pt;}
.y19c{bottom:175.879616pt;}
.y1eb{bottom:177.150931pt;}
.y146{bottom:178.305606pt;}
.yda{bottom:179.527876pt;}
.y27{bottom:180.718143pt;}
.y97{bottom:180.943328pt;}
.y10e{bottom:181.681460pt;}
.y6f{bottom:182.488267pt;}
.y12b{bottom:187.153599pt;}
.y19b{bottom:187.209616pt;}
.y238{bottom:187.821597pt;}
.y1ea{bottom:190.482930pt;}
.y145{bottom:191.637605pt;}
.yd9{bottom:192.859875pt;}
.y26{bottom:194.051476pt;}
.y96{bottom:194.275327pt;}
.y10d{bottom:195.013460pt;}
.y6e{bottom:195.820266pt;}
.y19a{bottom:198.539616pt;}
.y12a{bottom:200.485599pt;}
.y237{bottom:201.154930pt;}
.y1e9{bottom:203.816264pt;}
.y144{bottom:204.974941pt;}
.yd8{bottom:206.191874pt;}
.y25{bottom:207.384809pt;}
.y10c{bottom:208.345459pt;}
.y6d{bottom:209.152265pt;}
.y199{bottom:209.869616pt;}
.y129{bottom:213.817598pt;}
.y236{bottom:214.488264pt;}
.y143{bottom:218.306940pt;}
.yd7{bottom:219.523873pt;}
.y24{bottom:220.718143pt;}
.y198{bottom:221.199616pt;}
.y95{bottom:221.347328pt;}
.y10b{bottom:221.677458pt;}
.y6c{bottom:222.484265pt;}
.y128{bottom:227.149597pt;}
.y235{bottom:227.821597pt;}
.y142{bottom:231.638939pt;}
.y197{bottom:232.529616pt;}
.yd6{bottom:232.855873pt;}
.y1e8{bottom:233.366237pt;}
.y23{bottom:234.051476pt;}
.y94{bottom:234.679327pt;}
.y10a{bottom:235.009458pt;}
.y6b{bottom:235.816264pt;}
.y127{bottom:240.482930pt;}
.y234{bottom:241.154930pt;}
.y196{bottom:243.859616pt;}
.y1e7{bottom:244.696237pt;}
.y141{bottom:244.970939pt;}
.yd5{bottom:246.187872pt;}
.y22{bottom:247.384809pt;}
.y93{bottom:248.011326pt;}
.y109{bottom:248.341457pt;}
.y195{bottom:255.189616pt;}
.y1e6{bottom:256.026237pt;}
.y140{bottom:258.305606pt;}
.y233{bottom:258.336263pt;}
.yd4{bottom:259.519871pt;}
.y6a{bottom:261.170962pt;}
.y92{bottom:261.343326pt;}
.y108{bottom:261.673456pt;}
.y21{bottom:264.566142pt;}
.y194{bottom:266.519616pt;}
.y1e5{bottom:267.356237pt;}
.y126{bottom:269.820266pt;}
.y13f{bottom:271.637605pt;}
.y232{bottom:271.669596pt;}
.yd3{bottom:272.851871pt;}
.y69{bottom:274.502962pt;}
.y91{bottom:274.675325pt;}
.y107{bottom:275.005455pt;}
.y193{bottom:277.849617pt;}
.y1e4{bottom:278.686237pt;}
.y125{bottom:283.152265pt;}
.y13e{bottom:284.969604pt;}
.yd2{bottom:286.183870pt;}
.y68{bottom:287.834961pt;}
.y90{bottom:288.007324pt;}
.y106{bottom:288.337455pt;}
.y192{bottom:289.179617pt;}
.y1e3{bottom:290.016237pt;}
.y231{bottom:293.149597pt;}
.y124{bottom:296.484265pt;}
.yd1{bottom:299.523873pt;}
.y191{bottom:300.509617pt;}
.y20{bottom:300.610944pt;}
.y67{bottom:301.166960pt;}
.y1e2{bottom:301.346238pt;}
.y105{bottom:301.669454pt;}
.y230{bottom:309.149597pt;}
.y123{bottom:309.816264pt;}
.y190{bottom:311.839617pt;}
.y1e1{bottom:312.676238pt;}
.yd0{bottom:312.855873pt;}
.y8f{bottom:312.918413pt;}
.y1f{bottom:313.942944pt;}
.y66{bottom:314.498959pt;}
.y104{bottom:315.001453pt;}
.y18f{bottom:323.169617pt;}
.y1e0{bottom:324.006238pt;}
.y22f{bottom:325.149597pt;}
.ycf{bottom:326.187872pt;}
.y8e{bottom:326.250413pt;}
.y1e{bottom:327.277611pt;}
.y65{bottom:327.830959pt;}
.y103{bottom:328.333452pt;}
.y164{bottom:328.638939pt;}
.y18e{bottom:334.499617pt;}
.y1df{bottom:335.336238pt;}
.yce{bottom:339.519871pt;}
.y8d{bottom:339.582412pt;}
.y1d{bottom:340.609610pt;}
.y22e{bottom:341.149617pt;}
.y64{bottom:341.162958pt;}
.y102{bottom:341.665452pt;}
.y163{bottom:341.970939pt;}
.y18d{bottom:345.829617pt;}
.y1de{bottom:346.666238pt;}
.ycd{bottom:352.851871pt;}
.y8c{bottom:352.914411pt;}
.y1c{bottom:353.980277pt;}
.y63{bottom:354.494957pt;}
.y101{bottom:354.997451pt;}
.y162{bottom:355.304272pt;}
.y22d{bottom:357.149617pt;}
.y18c{bottom:357.159617pt;}
.y1dd{bottom:357.996238pt;}
.y13d{bottom:360.537487pt;}
.ycc{bottom:366.183870pt;}
.y8b{bottom:366.246411pt;}
.y1b{bottom:367.312276pt;}
.y62{bottom:367.826957pt;}
.y100{bottom:368.329450pt;}
.y18b{bottom:368.489617pt;}
.y161{bottom:368.636271pt;}
.y1dc{bottom:369.326238pt;}
.y22c{bottom:373.149617pt;}
.y13c{bottom:373.869486pt;}
.ycb{bottom:379.526020pt;}
.y8a{bottom:379.581078pt;}
.y18a{bottom:379.819617pt;}
.y1db{bottom:380.656238pt;}
.y61{bottom:381.158956pt;}
.yff{bottom:381.661450pt;}
.y13b{bottom:387.201486pt;}
.y22b{bottom:389.149617pt;}
.y189{bottom:391.149618pt;}
.y1da{bottom:391.986238pt;}
.yca{bottom:392.858019pt;}
.y89{bottom:392.913077pt;}
.y60{bottom:394.490955pt;}
.yfe{bottom:394.993449pt;}
.y160{bottom:395.462938pt;}
.y13a{bottom:400.533485pt;}
.y188{bottom:402.482951pt;}
.y1d9{bottom:403.316238pt;}
.y22a{bottom:405.149617pt;}
.yc9{bottom:406.190018pt;}
.y88{bottom:406.251747pt;}
.y5f{bottom:407.822954pt;}
.y1a{bottom:409.312276pt;}
.y15f{bottom:410.965604pt;}
.y139{bottom:413.865484pt;}
.y1d8{bottom:414.646239pt;}
.yc8{bottom:419.522018pt;}
.y87{bottom:419.583746pt;}
.y229{bottom:421.149617pt;}
.y5e{bottom:421.154954pt;}
.y19{bottom:423.976276pt;}
.yfd{bottom:424.328116pt;}
.y1d7{bottom:425.976239pt;}
.y15e{bottom:426.468271pt;}
.y138{bottom:427.197484pt;}
.y187{bottom:431.817618pt;}
.yc7{bottom:432.854017pt;}
.y86{bottom:432.915745pt;}
.y5d{bottom:434.486953pt;}
.y228{bottom:437.149617pt;}
.y1d6{bottom:437.306239pt;}
.yfc{bottom:437.661450pt;}
.y18{bottom:438.640276pt;}
.y137{bottom:440.529483pt;}
.y15d{bottom:441.970938pt;}
.y159{bottom:441.977605pt;}
.y186{bottom:445.149618pt;}
.y85{bottom:446.247745pt;}
.y5c{bottom:447.818952pt;}
.y1d5{bottom:448.636239pt;}
.yfb{bottom:450.997451pt;}
.y158{bottom:451.973605pt;}
.y227{bottom:453.149617pt;}
.y17{bottom:453.304276pt;}
.y136{bottom:453.861482pt;}
.y15c{bottom:457.473605pt;}
.y15b{bottom:457.480273pt;}
.y185{bottom:458.482951pt;}
.y84{bottom:459.579744pt;}
.y1d4{bottom:459.966239pt;}
.yc6{bottom:460.334016pt;}
.y5b{bottom:461.150952pt;}
.y157{bottom:461.969604pt;}
.yfa{bottom:464.329450pt;}
.y135{bottom:467.193481pt;}
.y15a{bottom:467.476273pt;}
.y16{bottom:467.968276pt;}
.y226{bottom:469.149617pt;}
.y1d3{bottom:471.296239pt;}
.y83{bottom:472.914411pt;}
.yc5{bottom:473.676688pt;}
.y5a{bottom:474.494957pt;}
.yf9{bottom:477.661450pt;}
.y1d2{bottom:482.626239pt;}
.y15{bottom:482.632276pt;}
.y225{bottom:485.149617pt;}
.y82{bottom:486.246411pt;}
.yc4{bottom:487.008687pt;}
.y59{bottom:487.826957pt;}
.y184{bottom:487.832293pt;}
.yf8{bottom:490.997451pt;}
.y1d1{bottom:493.956239pt;}
.y14{bottom:497.296276pt;}
.y81{bottom:499.582412pt;}
.yc3{bottom:500.340687pt;}
.y224{bottom:501.149617pt;}
.y58{bottom:501.158956pt;}
.y183{bottom:501.164292pt;}
.yf7{bottom:504.329450pt;}
.y1d0{bottom:505.286239pt;}
.y13{bottom:511.960276pt;}
.y80{bottom:512.914411pt;}
.yc2{bottom:513.672686pt;}
.y57{bottom:514.490955pt;}
.y182{bottom:514.496291pt;}
.y1cf{bottom:516.616239pt;}
.y223{bottom:517.149617pt;}
.yf6{bottom:517.661450pt;}
.y156{bottom:517.981750pt;}
.y7f{bottom:526.246411pt;}
.y12{bottom:526.624276pt;}
.yc1{bottom:527.004685pt;}
.y56{bottom:527.822954pt;}
.y181{bottom:527.828291pt;}
.y1ce{bottom:527.946240pt;}
.yf5{bottom:530.997451pt;}
.y155{bottom:531.313750pt;}
.y222{bottom:533.149617pt;}
.y1cd{bottom:539.276240pt;}
.y7e{bottom:539.578410pt;}
.yc0{bottom:540.336684pt;}
.y55{bottom:541.154954pt;}
.y180{bottom:541.160290pt;}
.y11{bottom:541.288276pt;}
.yf4{bottom:544.329450pt;}
.y154{bottom:544.645749pt;}
.y221{bottom:549.149617pt;}
.y1cc{bottom:550.606240pt;}
.ybf{bottom:553.668684pt;}
.y54{bottom:554.486953pt;}
.y17f{bottom:554.492289pt;}
.y10{bottom:555.952276pt;}
.yf3{bottom:557.661450pt;}
.y153{bottom:557.977748pt;}
.y1cb{bottom:561.936240pt;}
.y7d{bottom:564.488287pt;}
.y220{bottom:565.149617pt;}
.ybe{bottom:567.000683pt;}
.y53{bottom:567.818952pt;}
.y17e{bottom:567.824288pt;}
.yf{bottom:570.616276pt;}
.yf2{bottom:571.013500pt;}
.y152{bottom:571.309748pt;}
.y1ca{bottom:573.266240pt;}
.y7c{bottom:577.820286pt;}
.ybd{bottom:580.335350pt;}
.y21f{bottom:581.149617pt;}
.y52{bottom:581.150952pt;}
.y17d{bottom:581.156288pt;}
.yf1{bottom:584.345500pt;}
.y1c9{bottom:584.596240pt;}
.y151{bottom:584.641747pt;}
.ye{bottom:585.280276pt;}
.y7b{bottom:591.152286pt;}
.ybc{bottom:593.667350pt;}
.y51{bottom:594.484285pt;}
.y17c{bottom:594.488287pt;}
.y1c8{bottom:595.926240pt;}
.y21e{bottom:597.149617pt;}
.yf0{bottom:597.677499pt;}
.y150{bottom:597.973746pt;}
.yd{bottom:599.944276pt;}
.y7a{bottom:604.484285pt;}
.ybb{bottom:607.006141pt;}
.y1c7{bottom:607.256240pt;}
.y50{bottom:607.816284pt;}
.y17b{bottom:607.820286pt;}
.yef{bottom:611.009498pt;}
.y14f{bottom:611.305745pt;}
.y21d{bottom:613.149617pt;}
.yc{bottom:614.608276pt;}
.y79{bottom:617.816284pt;}
.y1c6{bottom:618.586240pt;}
.yba{bottom:620.338141pt;}
.y4f{bottom:621.149618pt;}
.y17a{bottom:621.152286pt;}
.yee{bottom:624.341497pt;}
.y208{bottom:627.161583pt;}
.y21c{bottom:629.149617pt;}
.y1c5{bottom:629.916240pt;}
.yb9{bottom:633.670140pt;}
.y179{bottom:634.484285pt;}
.yed{bottom:637.673497pt;}
.y207{bottom:640.493583pt;}
.y1c4{bottom:641.246241pt;}
.yb{bottom:641.274942pt;}
.y21b{bottom:645.149617pt;}
.yb8{bottom:647.002139pt;}
.y178{bottom:647.818952pt;}
.y4e{bottom:647.826916pt;}
.yec{bottom:651.005496pt;}
.y1c3{bottom:652.576241pt;}
.y206{bottom:653.825582pt;}
.ya{bottom:657.274942pt;}
.yb7{bottom:660.334138pt;}
.y21a{bottom:661.149617pt;}
.y177{bottom:661.150952pt;}
.y4d{bottom:661.158915pt;}
.y1c2{bottom:663.906241pt;}
.yeb{bottom:664.337495pt;}
.ya8{bottom:666.301737pt;}
.y205{bottom:667.157581pt;}
.y33{bottom:673.018130pt;}
.y9{bottom:673.274902pt;}
.yb6{bottom:673.667431pt;}
.y176{bottom:674.486912pt;}
.y4c{bottom:674.490914pt;}
.y1c1{bottom:675.236241pt;}
.y219{bottom:677.149576pt;}
.yea{bottom:677.669495pt;}
.ya7{bottom:679.633737pt;}
.y204{bottom:680.489580pt;}
.y1c0{bottom:686.566241pt;}
.yb5{bottom:687.012249pt;}
.y175{bottom:687.818912pt;}
.y4b{bottom:687.822914pt;}
.y8{bottom:689.274902pt;}
.ye9{bottom:691.001494pt;}
.y32{bottom:691.684130pt;}
.ya6{bottom:692.965736pt;}
.y218{bottom:693.149576pt;}
.y203{bottom:693.821580pt;}
.y1bf{bottom:697.896241pt;}
.yb4{bottom:700.344248pt;}
.y174{bottom:701.150911pt;}
.y4a{bottom:701.154913pt;}
.ye8{bottom:704.333493pt;}
.y7{bottom:705.274902pt;}
.ya5{bottom:706.297735pt;}
.y202{bottom:707.153579pt;}
.y217{bottom:709.149576pt;}
.y1be{bottom:709.226241pt;}
.y31{bottom:710.350129pt;}
.yb3{bottom:713.676248pt;}
.y49{bottom:714.486912pt;}
.y173{bottom:714.493583pt;}
.ye7{bottom:717.665492pt;}
.ya4{bottom:719.629735pt;}
.y201{bottom:720.485578pt;}
.y1bd{bottom:720.556241pt;}
.y216{bottom:725.149576pt;}
.yb2{bottom:727.008247pt;}
.y48{bottom:727.818912pt;}
.y172{bottom:727.825582pt;}
.ye6{bottom:730.997492pt;}
.y1bc{bottom:731.886241pt;}
.ya3{bottom:732.961734pt;}
.y200{bottom:733.817578pt;}
.y6{bottom:734.597566pt;}
.y215{bottom:741.149576pt;}
.y47{bottom:741.150911pt;}
.y171{bottom:741.157581pt;}
.y1bb{bottom:743.216241pt;}
.ye5{bottom:744.329491pt;}
.ya2{bottom:746.293733pt;}
.y1ff{bottom:747.149577pt;}
.y46{bottom:754.485578pt;}
.yb1{bottom:754.488246pt;}
.y170{bottom:754.489580pt;}
.y1ba{bottom:754.546242pt;}
.y214{bottom:757.149576pt;}
.ye4{bottom:757.661490pt;}
.ya1{bottom:759.625732pt;}
.y1b9{bottom:765.876242pt;}
.y1fe{bottom:766.486912pt;}
.y45{bottom:767.817578pt;}
.yb0{bottom:767.820246pt;}
.y16f{bottom:767.821580pt;}
.ye3{bottom:770.993490pt;}
.y213{bottom:773.149576pt;}
.y5{bottom:774.602901pt;}
.y1b8{bottom:777.206242pt;}
.y1fd{bottom:779.818912pt;}
.y44{bottom:781.152245pt;}
.y16e{bottom:781.153579pt;}
.y1b7{bottom:788.536242pt;}
.y212{bottom:789.149576pt;}
.y43{bottom:794.484244pt;}
.y16d{bottom:794.485578pt;}
.y1fc{bottom:799.150911pt;}
.y1b6{bottom:799.866242pt;}
.y211{bottom:805.149576pt;}
.y16c{bottom:807.817578pt;}
.yaf{bottom:807.820246pt;}
.y42{bottom:807.821580pt;}
.y1b5{bottom:811.196242pt;}
.y4{bottom:814.608236pt;}
.y1fb{bottom:818.482910pt;}
.y122{bottom:818.650911pt;}
.y210{bottom:821.149576pt;}
.yae{bottom:821.152245pt;}
.y41{bottom:821.153579pt;}
.y1b4{bottom:822.526242pt;}
.y34{bottom:823.475179pt;}
.y1fa{bottom:831.816243pt;}
.y121{bottom:831.986912pt;}
.y1b3{bottom:833.856242pt;}
.yad{bottom:834.484244pt;}
.y40{bottom:834.485578pt;}
.y20f{bottom:837.149576pt;}
.y1b2{bottom:845.186242pt;}
.y120{bottom:845.318912pt;}
.y3f{bottom:847.817578pt;}
.yac{bottom:847.828250pt;}
.y20e{bottom:853.149576pt;}
.y1b1{bottom:856.516242pt;}
.y11f{bottom:858.650911pt;}
.y3e{bottom:861.150911pt;}
.y16b{bottom:861.156247pt;}
.y1f9{bottom:861.158915pt;}
.yab{bottom:861.160249pt;}
.y1b0{bottom:867.846243pt;}
.y20d{bottom:869.149576pt;}
.y11e{bottom:871.982910pt;}
.y3d{bottom:874.484244pt;}
.y16a{bottom:874.488246pt;}
.y1f8{bottom:874.490914pt;}
.yaa{bottom:874.492249pt;}
.y1af{bottom:879.176243pt;}
.y20c{bottom:885.149576pt;}
.y3c{bottom:887.817578pt;}
.y169{bottom:887.820246pt;}
.y1f7{bottom:887.822914pt;}
.ya9{bottom:887.824248pt;}
.y1ae{bottom:890.506243pt;}
.y11d{bottom:898.812243pt;}
.y20b{bottom:901.149576pt;}
.y168{bottom:901.152245pt;}
.y1f6{bottom:901.154913pt;}
.y3b{bottom:901.156247pt;}
.y1ad{bottom:901.836243pt;}
.y1ac{bottom:913.166243pt;}
.y11c{bottom:914.314910pt;}
.y167{bottom:914.484244pt;}
.y1f5{bottom:914.486912pt;}
.y3a{bottom:914.488246pt;}
.y20a{bottom:917.149576pt;}
.y1ab{bottom:924.496243pt;}
.y166{bottom:927.818912pt;}
.y39{bottom:927.820246pt;}
.y11b{bottom:929.817577pt;}
.y209{bottom:933.149577pt;}
.y1aa{bottom:935.826243pt;}
.y165{bottom:941.150911pt;}
.y38{bottom:941.152245pt;}
.y118{bottom:945.316243pt;}
.y11a{bottom:945.320244pt;}
.y1a9{bottom:947.156243pt;}
.y1f4{bottom:954.482910pt;}
.y37{bottom:954.484244pt;}
.y1a8{bottom:958.486243pt;}
.y36{bottom:967.816243pt;}
.y1a7{bottom:969.816243pt;}
.y119{bottom:970.814911pt;}
.y35{bottom:1013.202637pt;}
.y3{bottom:1013.446126pt;}
.hd{height:21.193555pt;}
.h10{height:31.461333pt;}
.hf{height:32.594667pt;}
.he{height:36.585552pt;}
.h19{height:36.922667pt;}
.h16{height:38.229333pt;}
.h2{height:38.346667pt;}
.h4{height:39.305333pt;}
.h1a{height:39.386667pt;}
.h1d{height:39.560000pt;}
.h1b{height:40.080000pt;}
.h3{height:40.661333pt;}
.h1c{height:40.960000pt;}
.h9{height:41.226562pt;}
.ha{height:41.232000pt;}
.hb{height:46.080000pt;}
.hc{height:47.472000pt;}
.h8{height:47.908043pt;}
.h1f{height:47.908124pt;}
.h1e{height:47.908203pt;}
.h7{height:47.908205pt;}
.h6{height:47.908854pt;}
.h13{height:48.096000pt;}
.h14{height:49.152000pt;}
.h12{height:50.394667pt;}
.h15{height:51.200000pt;}
.h18{height:78.213332pt;}
.h17{height:78.229333pt;}
.h11{height:82.464000pt;}
.h5{height:119.114667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:12.513093pt;}
.x2{left:54.392400pt;}
.x6{left:125.291331pt;}
.x4{left:207.516805pt;}
.x9{left:211.683472pt;}
.x7{left:223.513333pt;}
.x15{left:267.195190pt;}
.x12{left:278.668663pt;}
.xa{left:304.186141pt;}
.xb{left:332.709065pt;}
.x13{left:382.816001pt;}
.xc{left:414.795730pt;}
.xd{left:452.642395pt;}
.x3{left:519.632528pt;}
.xe{left:533.935727pt;}
.xf{left:571.782392pt;}
.x10{left:653.075723pt;}
.x11{left:690.922388pt;}
.x14{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; }
  