
    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_6db0008df8e6c0bb15b72a59.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_c956e9d15d87b713b8eb54bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_56980af3f5133ed1f2280cc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;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_295ec81279d069d22728fd67.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925293;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_d0a5b08df7aac7c4499125d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_06a6fb1aea38270c41e69b48.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_f03d3f2f2cbf0aaa0f074e84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_a4202d5ea0268e56513ce9cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_74d9271fefd483a3498fe1e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_e33afd8755494f31f121cfad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_217adc95480e839c4a634566.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893555;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_274399be5fe43b992bb80c13.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_e97e17491073961397430157.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;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_4aeb6f27d66c4bd6aceb8e60.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_2dc42deccebd3825486ef3a5.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.620000px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls3c{letter-spacing:-4.320000px;}
.lsa3{letter-spacing:-2.640000px;}
.lsb{letter-spacing:-0.780000px;}
.lsd{letter-spacing:-0.759600px;}
.lsc{letter-spacing:-0.633000px;}
.lsa4{letter-spacing:-0.576000px;}
.ls66{letter-spacing:-0.480000px;}
.ls3a{letter-spacing:-0.360000px;}
.ls3d{letter-spacing:-0.300000px;}
.ls67{letter-spacing:-0.240000px;}
.ls90{letter-spacing:-0.192000px;}
.ls65{letter-spacing:-0.180000px;}
.ls3b{letter-spacing:-0.120000px;}
.ls6d{letter-spacing:-0.109205px;}
.ls75{letter-spacing:-0.096000px;}
.ls39{letter-spacing:-0.060000px;}
.ls74{letter-spacing:-0.048000px;}
.lse{letter-spacing:-0.045000px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004140px;}
.ls1{letter-spacing:0.005076px;}
.ls2{letter-spacing:0.005676px;}
.ls5b{letter-spacing:0.048000px;}
.ls72{letter-spacing:0.051190px;}
.ls18{letter-spacing:0.060000px;}
.ls5c{letter-spacing:0.096000px;}
.ls73{letter-spacing:0.102380px;}
.ls10{letter-spacing:0.120000px;}
.ls6c{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.180000px;}
.ls93{letter-spacing:0.192000px;}
.ls1b{letter-spacing:0.240000px;}
.ls87{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.300000px;}
.ls85{letter-spacing:0.336000px;}
.ls2d{letter-spacing:0.360000px;}
.ls58{letter-spacing:0.384000px;}
.ls26{letter-spacing:0.420000px;}
.lsa1{letter-spacing:0.432000px;}
.ls36{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.540000px;}
.ls86{letter-spacing:0.576000px;}
.ls2f{letter-spacing:0.600000px;}
.ls92{letter-spacing:0.624000px;}
.ls4{letter-spacing:0.660000px;}
.ls4b{letter-spacing:0.665400px;}
.ls23{letter-spacing:0.720000px;}
.ls44{letter-spacing:0.721800px;}
.ls30{letter-spacing:0.780000px;}
.ls95{letter-spacing:0.816000px;}
.ls14{letter-spacing:0.840000px;}
.ls13{letter-spacing:0.900000px;}
.ls9a{letter-spacing:0.912000px;}
.ls6f{letter-spacing:0.955548px;}
.ls28{letter-spacing:0.960000px;}
.ls8d{letter-spacing:1.008000px;}
.ls1d{letter-spacing:1.020000px;}
.lsf{letter-spacing:1.080000px;}
.ls70{letter-spacing:1.098880px;}
.ls1c{letter-spacing:1.140000px;}
.ls94{letter-spacing:1.152000px;}
.ls47{letter-spacing:1.200000px;}
.ls71{letter-spacing:1.242212px;}
.ls8f{letter-spacing:1.248000px;}
.ls9{letter-spacing:1.260000px;}
.ls8e{letter-spacing:1.296000px;}
.ls1f{letter-spacing:1.320000px;}
.ls98{letter-spacing:1.344000px;}
.ls40{letter-spacing:1.357800px;}
.ls12{letter-spacing:1.380000px;}
.ls6a{letter-spacing:1.385545px;}
.ls9f{letter-spacing:1.392000px;}
.ls6e{letter-spacing:1.433322px;}
.ls4c{letter-spacing:1.440000px;}
.ls35{letter-spacing:1.500000px;}
.ls82{letter-spacing:1.536000px;}
.ls57{letter-spacing:1.560000px;}
.ls8c{letter-spacing:1.584000px;}
.ls20{letter-spacing:1.620000px;}
.ls9c{letter-spacing:1.632000px;}
.ls32{letter-spacing:1.680000px;}
.ls97{letter-spacing:1.728000px;}
.ls21{letter-spacing:1.740000px;}
.ls91{letter-spacing:1.776000px;}
.ls60{letter-spacing:1.800000px;}
.ls9e{letter-spacing:1.824000px;}
.ls42{letter-spacing:1.860000px;}
.ls84{letter-spacing:1.872000px;}
.ls1e{letter-spacing:1.920000px;}
.ls89{letter-spacing:1.968000px;}
.ls31{letter-spacing:1.980000px;}
.ls99{letter-spacing:2.016000px;}
.ls38{letter-spacing:2.040000px;}
.ls8a{letter-spacing:2.064000px;}
.ls68{letter-spacing:2.100000px;}
.ls83{letter-spacing:2.112000px;}
.ls7{letter-spacing:2.160000px;}
.ls17{letter-spacing:2.220000px;}
.ls11{letter-spacing:2.280000px;}
.ls48{letter-spacing:2.328000px;}
.ls27{letter-spacing:2.340000px;}
.ls9b{letter-spacing:2.352000px;}
.ls5{letter-spacing:2.400000px;}
.ls6{letter-spacing:2.460000px;}
.ls9d{letter-spacing:2.496000px;}
.ls2c{letter-spacing:2.520000px;}
.ls4f{letter-spacing:2.580000px;}
.ls96{letter-spacing:2.592000px;}
.ls15{letter-spacing:2.640000px;}
.ls4e{letter-spacing:2.700000px;}
.ls43{letter-spacing:2.760000px;}
.ls3f{letter-spacing:2.820000px;}
.lsa2{letter-spacing:2.832000px;}
.ls2a{letter-spacing:2.880000px;}
.ls88{letter-spacing:2.928000px;}
.ls54{letter-spacing:2.940000px;}
.lsa0{letter-spacing:2.976000px;}
.ls50{letter-spacing:3.000000px;}
.ls8b{letter-spacing:3.024000px;}
.ls8{letter-spacing:3.060000px;}
.ls2e{letter-spacing:3.120000px;}
.ls2b{letter-spacing:3.180000px;}
.ls34{letter-spacing:3.240000px;}
.ls29{letter-spacing:3.300000px;}
.ls7b{letter-spacing:3.360000px;}
.ls79{letter-spacing:3.420000px;}
.ls4d{letter-spacing:3.480000px;}
.ls41{letter-spacing:3.540000px;}
.ls49{letter-spacing:3.600000px;}
.ls80{letter-spacing:3.660000px;}
.ls5a{letter-spacing:3.696000px;}
.ls69{letter-spacing:3.720000px;}
.ls76{letter-spacing:3.780000px;}
.ls45{letter-spacing:3.840000px;}
.ls7f{letter-spacing:3.900000px;}
.ls22{letter-spacing:3.960000px;}
.ls3e{letter-spacing:4.020000px;}
.ls25{letter-spacing:4.080000px;}
.ls37{letter-spacing:4.200000px;}
.ls78{letter-spacing:4.260000px;}
.ls52{letter-spacing:4.320000px;}
.ls7a{letter-spacing:4.620000px;}
.ls53{letter-spacing:4.740000px;}
.ls5d{letter-spacing:4.860000px;}
.ls7d{letter-spacing:4.920000px;}
.ls33{letter-spacing:4.980000px;}
.ls77{letter-spacing:5.040000px;}
.ls4a{letter-spacing:5.220000px;}
.ls51{letter-spacing:5.340000px;}
.ls5f{letter-spacing:5.460000px;}
.ls7c{letter-spacing:5.580000px;}
.ls62{letter-spacing:5.700000px;}
.ls7e{letter-spacing:6.240000px;}
.ls63{letter-spacing:6.360000px;}
.ls81{letter-spacing:6.420000px;}
.ls59{letter-spacing:6.480000px;}
.ls61{letter-spacing:6.780000px;}
.ls16{letter-spacing:6.900000px;}
.ls56{letter-spacing:7.200000px;}
.ls5e{letter-spacing:7.320000px;}
.ls64{letter-spacing:7.680000px;}
.ls55{letter-spacing:8.100000px;}
.ls46{letter-spacing:8.820000px;}
.ls6b{letter-spacing:40.262606px;}
.ls0{letter-spacing:59.532876px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-34.561800px;}
.ws59{word-spacing:-19.740000px;}
.ws66{word-spacing:-19.200000px;}
.ws2f{word-spacing:-19.020000px;}
.wsa4{word-spacing:-18.180000px;}
.ws77{word-spacing:-17.940000px;}
.ws65{word-spacing:-17.880000px;}
.ws28{word-spacing:-17.820000px;}
.ws67{word-spacing:-17.760000px;}
.ws32{word-spacing:-17.700000px;}
.ws94{word-spacing:-17.400000px;}
.ws80{word-spacing:-17.100000px;}
.wsa5{word-spacing:-16.980000px;}
.ws3{word-spacing:-16.680000px;}
.ws13{word-spacing:-16.620000px;}
.ws5a{word-spacing:-16.560000px;}
.ws31{word-spacing:-16.440000px;}
.ws93{word-spacing:-16.380000px;}
.ws30{word-spacing:-16.140000px;}
.wsf{word-spacing:-16.080000px;}
.ws10{word-spacing:-16.020000px;}
.ws82{word-spacing:-15.960000px;}
.ws81{word-spacing:-15.900000px;}
.ws40{word-spacing:-15.780000px;}
.ws11{word-spacing:-15.720000px;}
.ws83{word-spacing:-15.660000px;}
.ws95{word-spacing:-15.600000px;}
.ws41{word-spacing:-15.480000px;}
.wsa1{word-spacing:-15.420000px;}
.ws7e{word-spacing:-15.360000px;}
.ws7f{word-spacing:-15.240000px;}
.wsa2{word-spacing:-15.120000px;}
.wsa3{word-spacing:-15.060000px;}
.ws12{word-spacing:-15.000000px;}
.ws14{word-spacing:-14.880000px;}
.wsc5{word-spacing:-14.832000px;}
.wsca{word-spacing:-14.496000px;}
.wsac{word-spacing:-13.968000px;}
.wsc4{word-spacing:-13.776000px;}
.ws5{word-spacing:-13.344000px;}
.ws7b{word-spacing:-13.282117px;}
.ws7d{word-spacing:-12.888355px;}
.wsc6{word-spacing:-12.816000px;}
.ws4{word-spacing:-12.510000px;}
.ws7a{word-spacing:-12.449347px;}
.wscb{word-spacing:-12.432000px;}
.wsc7{word-spacing:-12.336000px;}
.wsc8{word-spacing:-12.288000px;}
.ws5c{word-spacing:-12.048000px;}
.ws5b{word-spacing:-12.000000px;}
.wsad{word-spacing:-11.952000px;}
.ws1{word-spacing:-10.210662px;}
.wsc9{word-spacing:-9.360000px;}
.ws33{word-spacing:-8.745000px;}
.ws2{word-spacing:-7.293330px;}
.ws9d{word-spacing:-4.320000px;}
.ws20{word-spacing:-4.080000px;}
.ws9c{word-spacing:-2.940000px;}
.ws7{word-spacing:-2.886000px;}
.ws6b{word-spacing:-2.880000px;}
.ws2b{word-spacing:-2.820000px;}
.ws6a{word-spacing:-2.760000px;}
.ws75{word-spacing:-2.700000px;}
.ws3f{word-spacing:-2.640000px;}
.ws99{word-spacing:-2.520000px;}
.wsd5{word-spacing:-2.496000px;}
.wsb{word-spacing:-2.331000px;}
.ws68{word-spacing:-2.220000px;}
.wsb2{word-spacing:-2.112000px;}
.ws8c{word-spacing:-2.100000px;}
.wsbc{word-spacing:-1.968000px;}
.ws5f{word-spacing:-1.740000px;}
.ws1f{word-spacing:-1.620000px;}
.ws45{word-spacing:-1.500000px;}
.wsd0{word-spacing:-1.440000px;}
.ws85{word-spacing:-1.433322px;}
.ws89{word-spacing:-1.385545px;}
.ws18{word-spacing:-1.380000px;}
.ws88{word-spacing:-1.242212px;}
.wsd7{word-spacing:-1.152000px;}
.wsa9{word-spacing:-1.140000px;}
.wsa{word-spacing:-1.134000px;}
.ws87{word-spacing:-1.098880px;}
.ws72{word-spacing:-1.080000px;}
.ws60{word-spacing:-0.960000px;}
.ws86{word-spacing:-0.955548px;}
.wsd6{word-spacing:-0.912000px;}
.ws19{word-spacing:-0.900000px;}
.ws46{word-spacing:-0.840000px;}
.ws9b{word-spacing:-0.780000px;}
.ws61{word-spacing:-0.720000px;}
.ws24{word-spacing:-0.660000px;}
.wsa0{word-spacing:-0.600000px;}
.ws22{word-spacing:-0.540000px;}
.ws6c{word-spacing:-0.480000px;}
.wsd8{word-spacing:-0.432000px;}
.ws29{word-spacing:-0.420000px;}
.ws5d{word-spacing:-0.360000px;}
.wsb5{word-spacing:-0.336000px;}
.ws47{word-spacing:-0.300000px;}
.wscf{word-spacing:-0.288000px;}
.ws3d{word-spacing:-0.240000px;}
.ws36{word-spacing:-0.180000px;}
.ws91{word-spacing:-0.144000px;}
.ws1b{word-spacing:-0.120000px;}
.ws8a{word-spacing:-0.102380px;}
.ws64{word-spacing:-0.096000px;}
.ws3e{word-spacing:-0.060000px;}
.ws7c{word-spacing:-0.051190px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:0.045000px;}
.wsc2{word-spacing:0.048000px;}
.ws84{word-spacing:0.109205px;}
.wsa6{word-spacing:0.120000px;}
.wsb9{word-spacing:0.144000px;}
.ws6e{word-spacing:0.180000px;}
.ws58{word-spacing:0.240000px;}
.ws79{word-spacing:0.288000px;}
.wsaa{word-spacing:0.300000px;}
.ws1c{word-spacing:0.360000px;}
.ws8d{word-spacing:0.384000px;}
.ws17{word-spacing:0.420000px;}
.wsd1{word-spacing:0.432000px;}
.ws92{word-spacing:0.480000px;}
.wsd3{word-spacing:0.528000px;}
.wsd9{word-spacing:0.576000px;}
.ws9{word-spacing:0.633000px;}
.ws4b{word-spacing:0.660000px;}
.wsc3{word-spacing:0.672000px;}
.wsd2{word-spacing:0.720000px;}
.ws8{word-spacing:0.759600px;}
.wsd4{word-spacing:0.768000px;}
.ws38{word-spacing:0.780000px;}
.wsc1{word-spacing:0.816000px;}
.wsb3{word-spacing:0.912000px;}
.ws8e{word-spacing:0.960000px;}
.ws49{word-spacing:1.020000px;}
.ws15{word-spacing:1.080000px;}
.ws6f{word-spacing:1.140000px;}
.ws3b{word-spacing:1.200000px;}
.ws1a{word-spacing:1.260000px;}
.wsb8{word-spacing:1.296000px;}
.ws9e{word-spacing:1.320000px;}
.ws2e{word-spacing:1.344000px;}
.ws39{word-spacing:1.380000px;}
.wsbf{word-spacing:1.440000px;}
.wsc0{word-spacing:1.536000px;}
.ws3c{word-spacing:1.560000px;}
.ws70{word-spacing:1.680000px;}
.ws73{word-spacing:1.740000px;}
.ws90{word-spacing:1.776000px;}
.ws98{word-spacing:1.800000px;}
.ws4f{word-spacing:1.980000px;}
.wsbe{word-spacing:2.016000px;}
.wsb0{word-spacing:2.040000px;}
.wsb6{word-spacing:2.064000px;}
.ws74{word-spacing:2.100000px;}
.ws9a{word-spacing:2.160000px;}
.ws8f{word-spacing:2.256000px;}
.ws97{word-spacing:2.340000px;}
.ws4d{word-spacing:2.400000px;}
.wsce{word-spacing:2.448000px;}
.ws78{word-spacing:2.460000px;}
.wscc{word-spacing:2.496000px;}
.ws21{word-spacing:2.520000px;}
.ws5e{word-spacing:2.580000px;}
.wscd{word-spacing:2.592000px;}
.ws35{word-spacing:2.640000px;}
.wsba{word-spacing:2.688000px;}
.ws16{word-spacing:2.700000px;}
.ws56{word-spacing:2.736000px;}
.ws6d{word-spacing:2.760000px;}
.ws2c{word-spacing:2.820000px;}
.wsbb{word-spacing:2.832000px;}
.ws52{word-spacing:2.880000px;}
.ws4e{word-spacing:2.940000px;}
.wsb4{word-spacing:2.976000px;}
.ws37{word-spacing:3.000000px;}
.ws26{word-spacing:3.060000px;}
.wsb7{word-spacing:3.072000px;}
.ws51{word-spacing:3.120000px;}
.ws42{word-spacing:3.180000px;}
.ws50{word-spacing:3.240000px;}
.ws1d{word-spacing:3.300000px;}
.wsab{word-spacing:3.360000px;}
.ws2d{word-spacing:3.408000px;}
.ws1e{word-spacing:3.420000px;}
.ws53{word-spacing:3.480000px;}
.wsbd{word-spacing:3.504000px;}
.ws2a{word-spacing:3.540000px;}
.wsa7{word-spacing:3.600000px;}
.ws4a{word-spacing:3.660000px;}
.ws62{word-spacing:3.696000px;}
.wsb1{word-spacing:3.780000px;}
.ws3a{word-spacing:3.840000px;}
.ws54{word-spacing:3.900000px;}
.ws63{word-spacing:3.936000px;}
.ws4c{word-spacing:3.960000px;}
.ws57{word-spacing:3.984000px;}
.ws76{word-spacing:4.020000px;}
.ws23{word-spacing:4.080000px;}
.ws55{word-spacing:4.140000px;}
.ws27{word-spacing:4.200000px;}
.ws44{word-spacing:4.260000px;}
.ws71{word-spacing:4.320000px;}
.ws9f{word-spacing:4.380000px;}
.ws8b{word-spacing:4.440000px;}
.wsaf{word-spacing:4.500000px;}
.ws43{word-spacing:4.620000px;}
.wsa8{word-spacing:4.800000px;}
.ws48{word-spacing:4.860000px;}
.wsd{word-spacing:4.920000px;}
.wse{word-spacing:4.980000px;}
.wsae{word-spacing:5.520000px;}
.ws69{word-spacing:7.140000px;}
.ws25{word-spacing:8.640000px;}
.ws96{word-spacing:220.176000px;}
.ws34{word-spacing:393.936000px;}
._c{margin-left:-2898.096000px;}
._e{margin-left:-2874.288000px;}
._f{margin-left:-7.554000px;}
._6{margin-left:-6.420000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.266000px;}
._4{width:1.059000px;}
._9{width:2.100000px;}
._7{width:3.540000px;}
._a{width:4.560000px;}
._8{width:6.360000px;}
._d{width:7.860000px;}
._b{width:9.000000px;}
._3{width:59.493414px;}
._1e{width:79.065000px;}
._1f{width:90.546000px;}
._11{width:104.217000px;}
._20{width:122.412000px;}
._1b{width:194.064000px;}
._32{width:208.896000px;}
._1a{width:258.000000px;}
._17{width:266.016000px;}
._24{width:276.672000px;}
._21{width:301.593000px;}
._34{width:316.176000px;}
._16{width:349.593000px;}
._2c{width:363.312000px;}
._27{width:373.968000px;}
._29{width:381.936000px;}
._31{width:389.952000px;}
._15{width:397.968000px;}
._2b{width:434.457000px;}
._1c{width:438.774000px;}
._25{width:444.816000px;}
._1d{width:484.086000px;}
._36{width:511.017000px;}
._39{width:515.334000px;}
._2f{width:523.785000px;}
._23{width:526.710000px;}
._13{width:537.414000px;}
._22{width:540.249000px;}
._30{width:549.696000px;}
._19{width:558.921000px;}
._37{width:560.646000px;}
._28{width:564.864000px;}
._2a{width:570.192000px;}
._26{width:578.457000px;}
._18{width:582.096000px;}
._2e{width:588.768000px;}
._3a{width:603.270000px;}
._38{width:613.974000px;}
._35{width:655.017000px;}
._10{width:669.744000px;}
._2d{width:671.472000px;}
._33{width:732.288000px;}
._12{width:764.784000px;}
._14{width:820.752000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsd{font-size:47.777400px;}
.fs9{font-size:48.000000px;}
.fse{font-size:51.190200px;}
.fsb{font-size:54.602400px;}
.fsc{font-size:56.527873px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y130{bottom:83.188800px;}
.y10d{bottom:83.389650px;}
.yc1{bottom:83.515350px;}
.y184{bottom:83.628600px;}
.y107{bottom:83.649450px;}
.y14d{bottom:83.744700px;}
.y64{bottom:83.770350px;}
.y6a{bottom:83.838300px;}
.y12c{bottom:83.920350px;}
.yf1{bottom:84.220350px;}
.y11f{bottom:86.470350px;}
.y26{bottom:88.333800px;}
.y1c8{bottom:89.263500px;}
.y174{bottom:93.391200px;}
.y9f{bottom:93.722100px;}
.y12f{bottom:98.932800px;}
.y10c{bottom:99.133650px;}
.y106{bottom:99.393450px;}
.y14c{bottom:99.488700px;}
.y69{bottom:99.582300px;}
.yc0{bottom:101.515350px;}
.y183{bottom:101.628600px;}
.y63{bottom:101.770350px;}
.y12b{bottom:101.920350px;}
.yf0{bottom:102.220350px;}
.y25{bottom:103.330050px;}
.y1c7{bottom:104.263500px;}
.y11e{bottom:104.470350px;}
.y173{bottom:109.639200px;}
.y9e{bottom:109.970100px;}
.y208{bottom:110.263500px;}
.y12e{bottom:114.676800px;}
.y10b{bottom:114.877650px;}
.y105{bottom:115.137450px;}
.y14b{bottom:115.232700px;}
.y68{bottom:115.326300px;}
.y24{bottom:118.330050px;}
.y1c6{bottom:119.263500px;}
.ybf{bottom:119.515350px;}
.y182{bottom:119.628600px;}
.y62{bottom:119.770350px;}
.y12a{bottom:119.920350px;}
.yef{bottom:120.220350px;}
.y11d{bottom:122.470350px;}
.y207{bottom:125.263500px;}
.y172{bottom:125.887200px;}
.y9d{bottom:126.218100px;}
.y12d{bottom:130.420800px;}
.y10a{bottom:130.621650px;}
.y104{bottom:130.881450px;}
.y14a{bottom:130.976700px;}
.y1c5{bottom:134.263500px;}
.y181{bottom:137.223600px;}
.y189{bottom:137.365350px;}
.ybe{bottom:137.515350px;}
.y61{bottom:137.770350px;}
.y129{bottom:137.920350px;}
.yee{bottom:138.220350px;}
.y206{bottom:140.263500px;}
.y11c{bottom:140.470350px;}
.y171{bottom:142.135200px;}
.y9c{bottom:142.466100px;}
.y109{bottom:146.365650px;}
.y149{bottom:146.720700px;}
.y1c4{bottom:149.263500px;}
.y205{bottom:155.263500px;}
.y66{bottom:155.365350px;}
.y180{bottom:155.628600px;}
.y60{bottom:155.770350px;}
.y128{bottom:155.920350px;}
.yed{bottom:156.220350px;}
.y170{bottom:158.383200px;}
.y11b{bottom:158.470350px;}
.y9b{bottom:158.714100px;}
.y29{bottom:160.378950px;}
.y148{bottom:162.464700px;}
.y1c3{bottom:164.263500px;}
.y204{bottom:170.263500px;}
.ybd{bottom:173.380350px;}
.y17f{bottom:173.628600px;}
.y5f{bottom:173.770350px;}
.y127{bottom:173.920350px;}
.yec{bottom:174.220350px;}
.y16f{bottom:174.631200px;}
.y9a{bottom:174.962100px;}
.y11a{bottom:176.470350px;}
.y147{bottom:178.208700px;}
.y28{bottom:178.378950px;}
.y1c2{bottom:179.263500px;}
.y203{bottom:185.263500px;}
.y16e{bottom:190.879200px;}
.y99{bottom:191.210100px;}
.y65{bottom:191.230350px;}
.y188{bottom:191.365350px;}
.y17e{bottom:191.628600px;}
.y5e{bottom:191.770350px;}
.yeb{bottom:192.220350px;}
.y146{bottom:193.952700px;}
.y1c1{bottom:194.263500px;}
.y119{bottom:194.470350px;}
.y2b{bottom:196.378950px;}
.y202{bottom:200.263500px;}
.y98{bottom:207.458100px;}
.y1c0{bottom:209.263500px;}
.y126{bottom:209.515350px;}
.y17d{bottom:209.628600px;}
.y145{bottom:209.696700px;}
.y5d{bottom:209.770350px;}
.yea{bottom:210.220350px;}
.y118{bottom:212.470350px;}
.y27{bottom:213.973950px;}
.y2a{bottom:214.378950px;}
.y201{bottom:215.263500px;}
.y16d{bottom:223.270350px;}
.y97{bottom:223.706100px;}
.y1bf{bottom:224.263500px;}
.y144{bottom:225.440700px;}
.y17c{bottom:227.628600px;}
.y5c{bottom:227.770350px;}
.ybc{bottom:227.920350px;}
.ye9{bottom:228.220350px;}
.y200{bottom:230.263500px;}
.y117{bottom:230.470350px;}
.y1be{bottom:239.263500px;}
.y96{bottom:239.954100px;}
.y143{bottom:241.184700px;}
.y16c{bottom:242.770350px;}
.y1ff{bottom:245.263500px;}
.y17b{bottom:245.628600px;}
.y5b{bottom:245.770350px;}
.ybb{bottom:245.920350px;}
.ye8{bottom:246.220350px;}
.y116{bottom:248.470350px;}
.y1bd{bottom:254.263500px;}
.y95{bottom:256.202100px;}
.y1fe{bottom:260.263500px;}
.y16b{bottom:262.270350px;}
.y17a{bottom:263.628600px;}
.y5a{bottom:263.770350px;}
.yba{bottom:263.920350px;}
.ye7{bottom:264.220350px;}
.y115{bottom:266.470350px;}
.y1bc{bottom:269.263500px;}
.y94{bottom:272.450100px;}
.y1fd{bottom:275.263500px;}
.y179{bottom:281.628600px;}
.y59{bottom:281.770350px;}
.yb9{bottom:281.920350px;}
.ye6{bottom:282.220350px;}
.y1bb{bottom:284.263500px;}
.y114{bottom:284.470350px;}
.y93{bottom:288.698100px;}
.y1fc{bottom:290.263500px;}
.y23{bottom:292.114200px;}
.y1ba{bottom:299.263500px;}
.y187{bottom:299.365350px;}
.y178{bottom:299.635350px;}
.y58{bottom:299.770350px;}
.yb8{bottom:299.920350px;}
.ye5{bottom:300.220350px;}
.y113{bottom:302.470350px;}
.y13f{bottom:303.794100px;}
.y92{bottom:305.198100px;}
.y1fb{bottom:305.263500px;}
.y1b9{bottom:314.263500px;}
.y177{bottom:317.635350px;}
.y57{bottom:317.770350px;}
.yb7{bottom:317.920350px;}
.ye4{bottom:318.220350px;}
.y22{bottom:319.459200px;}
.y13e{bottom:319.970100px;}
.y1fa{bottom:320.263500px;}
.y91{bottom:321.446100px;}
.y1b8{bottom:329.263500px;}
.y1f9{bottom:335.263500px;}
.y16a{bottom:335.635350px;}
.y56{bottom:335.770350px;}
.yb6{bottom:335.920350px;}
.y112{bottom:336.070350px;}
.y21{bottom:337.459200px;}
.y90{bottom:337.694100px;}
.y1b7{bottom:344.263500px;}
.y1f8{bottom:350.263500px;}
.y186{bottom:353.365350px;}
.y169{bottom:353.635350px;}
.y111{bottom:353.665350px;}
.y55{bottom:353.770350px;}
.ye3{bottom:353.815350px;}
.yb5{bottom:353.920350px;}
.y8f{bottom:353.942100px;}
.y20{bottom:355.459200px;}
.y1b6{bottom:359.263500px;}
.y1f7{bottom:365.263500px;}
.y8e{bottom:370.190100px;}
.y168{bottom:371.635350px;}
.y54{bottom:371.770350px;}
.yb4{bottom:371.920350px;}
.y1f{bottom:373.459200px;}
.y1b5{bottom:374.263500px;}
.y1f6{bottom:380.263500px;}
.y8d{bottom:386.438100px;}
.y1b4{bottom:389.263500px;}
.y167{bottom:389.635350px;}
.y53{bottom:389.770350px;}
.y125{bottom:389.785350px;}
.yb3{bottom:389.920350px;}
.ye2{bottom:390.070350px;}
.y1e{bottom:391.459200px;}
.y1f5{bottom:395.263500px;}
.y8c{bottom:402.686100px;}
.y1b3{bottom:404.263500px;}
.y166{bottom:407.635350px;}
.y52{bottom:407.770350px;}
.y124{bottom:407.785350px;}
.yb2{bottom:407.920350px;}
.ye1{bottom:408.070350px;}
.y1d{bottom:409.459200px;}
.y1f4{bottom:410.263500px;}
.y1b2{bottom:419.263500px;}
.y176{bottom:425.230350px;}
.y1f3{bottom:425.263500px;}
.y165{bottom:425.635350px;}
.y51{bottom:425.770350px;}
.y123{bottom:425.785350px;}
.yb1{bottom:425.920350px;}
.ye0{bottom:426.070350px;}
.y1c{bottom:427.459200px;}
.y8b{bottom:434.198100px;}
.y1b1{bottom:434.263500px;}
.y136{bottom:438.219680px;}
.y1f2{bottom:440.263500px;}
.y164{bottom:443.635350px;}
.y50{bottom:443.770350px;}
.y122{bottom:443.785350px;}
.yb0{bottom:443.920350px;}
.ydf{bottom:444.070350px;}
.y1b{bottom:445.459200px;}
.y1b0{bottom:449.263500px;}
.y1f1{bottom:455.263500px;}
.y163{bottom:461.635350px;}
.y4f{bottom:461.770350px;}
.y121{bottom:461.785350px;}
.yaf{bottom:461.920350px;}
.yde{bottom:462.070350px;}
.y1a{bottom:463.459200px;}
.y1af{bottom:464.263500px;}
.y8a{bottom:469.097100px;}
.y1f0{bottom:470.263500px;}
.y1ae{bottom:479.263500px;}
.y162{bottom:479.635350px;}
.y4e{bottom:479.770350px;}
.y120{bottom:479.785350px;}
.yae{bottom:479.920350px;}
.ydd{bottom:480.070350px;}
.y19{bottom:481.459200px;}
.y1ef{bottom:485.263500px;}
.y89{bottom:488.597100px;}
.y1ad{bottom:494.263500px;}
.y185{bottom:497.365350px;}
.y161{bottom:497.635350px;}
.y4d{bottom:497.770350px;}
.y103{bottom:497.785350px;}
.yad{bottom:497.920350px;}
.y18{bottom:499.459200px;}
.y1ee{bottom:500.263500px;}
.y88{bottom:508.097100px;}
.y135{bottom:508.970740px;}
.y1ac{bottom:509.263500px;}
.y1ed{bottom:515.263500px;}
.y160{bottom:515.635350px;}
.ydc{bottom:515.665350px;}
.y4c{bottom:515.770350px;}
.y102{bottom:515.785350px;}
.yac{bottom:515.920350px;}
.y17{bottom:517.459200px;}
.y1ab{bottom:524.263500px;}
.y87{bottom:527.597100px;}
.y1ec{bottom:530.263500px;}
.y15f{bottom:533.635350px;}
.ydb{bottom:533.665350px;}
.y4b{bottom:533.770350px;}
.y101{bottom:533.785350px;}
.yab{bottom:533.920350px;}
.y16{bottom:535.459200px;}
.y1aa{bottom:539.263500px;}
.y142{bottom:543.267300px;}
.y141{bottom:543.267600px;}
.y1eb{bottom:545.263500px;}
.y86{bottom:547.097100px;}
.y15e{bottom:551.635350px;}
.y4a{bottom:551.770350px;}
.y100{bottom:551.785350px;}
.yaa{bottom:551.920350px;}
.y15{bottom:553.459200px;}
.y1a9{bottom:554.263500px;}
.y1ea{bottom:560.263500px;}
.y1a8{bottom:569.263500px;}
.yda{bottom:569.530350px;}
.y15d{bottom:569.635350px;}
.y49{bottom:569.770350px;}
.yff{bottom:569.785350px;}
.ya9{bottom:569.920350px;}
.y14{bottom:571.459200px;}
.y1e9{bottom:575.263500px;}
.y140{bottom:578.022150px;}
.y1a7{bottom:584.263500px;}
.y15c{bottom:587.635350px;}
.y48{bottom:587.770350px;}
.yfe{bottom:587.785350px;}
.ya8{bottom:587.920350px;}
.y13{bottom:589.459200px;}
.y1e8{bottom:590.263500px;}
.y1a6{bottom:599.263500px;}
.y1e7{bottom:605.263500px;}
.y15b{bottom:605.635350px;}
.y47{bottom:605.770350px;}
.yd9{bottom:605.785350px;}
.y85{bottom:605.912100px;}
.ya7{bottom:605.920350px;}
.y1a5{bottom:614.263500px;}
.y134{bottom:614.285119px;}
.y1e6{bottom:620.263500px;}
.y15a{bottom:623.635350px;}
.y46{bottom:623.770350px;}
.yd8{bottom:623.785350px;}
.y84{bottom:623.912100px;}
.ya6{bottom:623.920350px;}
.y1a4{bottom:629.263500px;}
.y12{bottom:634.617300px;}
.y1e5{bottom:635.263500px;}
.y159{bottom:641.635350px;}
.y45{bottom:641.770350px;}
.yd7{bottom:641.785350px;}
.y83{bottom:641.912100px;}
.ya5{bottom:641.920350px;}
.y1a3{bottom:644.263500px;}
.y11{bottom:647.068050px;}
.y1e4{bottom:650.263500px;}
.y1a2{bottom:659.263500px;}
.y158{bottom:659.635350px;}
.y44{bottom:659.770350px;}
.yd6{bottom:659.785350px;}
.y82{bottom:659.912100px;}
.ya4{bottom:659.920350px;}
.y1e3{bottom:665.263500px;}
.y1a1{bottom:674.263500px;}
.y157{bottom:677.635350px;}
.y43{bottom:677.770350px;}
.yd5{bottom:677.785350px;}
.y81{bottom:677.912100px;}
.ya3{bottom:677.920350px;}
.y1e2{bottom:680.263500px;}
.y10{bottom:684.208950px;}
.y1a0{bottom:689.263500px;}
.y1e1{bottom:695.263500px;}
.y156{bottom:695.635350px;}
.y42{bottom:695.770350px;}
.yd4{bottom:695.785350px;}
.y80{bottom:695.912100px;}
.ya2{bottom:695.920350px;}
.yf{bottom:697.708950px;}
.y19f{bottom:704.263500px;}
.ye{bottom:705.783600px;}
.y1e0{bottom:710.263500px;}
.y155{bottom:713.635350px;}
.y41{bottom:713.770350px;}
.yd3{bottom:713.785350px;}
.y7f{bottom:713.912100px;}
.yf8{bottom:713.920350px;}
.y19e{bottom:719.263500px;}
.yd{bottom:724.708950px;}
.y1df{bottom:725.263500px;}
.y132{bottom:726.465750px;}
.y133{bottom:726.466050px;}
.y13d{bottom:726.841353px;}
.ya1{bottom:731.515350px;}
.y154{bottom:731.635350px;}
.y40{bottom:731.770350px;}
.yd2{bottom:731.785350px;}
.y7e{bottom:731.912100px;}
.yf7{bottom:731.920350px;}
.yc{bottom:732.783600px;}
.y19d{bottom:734.263500px;}
.y1de{bottom:740.263500px;}
.y13c{bottom:742.010678px;}
.y19c{bottom:749.263500px;}
.y153{bottom:749.635350px;}
.y3f{bottom:749.770350px;}
.yd1{bottom:749.785350px;}
.y7d{bottom:749.912100px;}
.yf6{bottom:749.920350px;}
.yb{bottom:751.708950px;}
.y1dd{bottom:755.263500px;}
.y13b{bottom:757.180002px;}
.y19b{bottom:764.263500px;}
.ya{bottom:765.208950px;}
.y152{bottom:767.635350px;}
.y3e{bottom:767.770350px;}
.yd0{bottom:767.785350px;}
.y7c{bottom:767.912100px;}
.yf5{bottom:767.920350px;}
.y1dc{bottom:770.263500px;}
.y13a{bottom:772.349326px;}
.y19a{bottom:779.263500px;}
.y1db{bottom:785.263500px;}
.y151{bottom:785.635350px;}
.y3d{bottom:785.770350px;}
.ycf{bottom:785.785350px;}
.y7b{bottom:785.912100px;}
.yf4{bottom:785.920350px;}
.y139{bottom:787.518651px;}
.y9{bottom:793.936050px;}
.y199{bottom:794.263500px;}
.y1da{bottom:800.263500px;}
.y138{bottom:802.687975px;}
.y150{bottom:803.635350px;}
.y3c{bottom:803.770350px;}
.yce{bottom:803.785350px;}
.y7a{bottom:803.912100px;}
.yf3{bottom:803.920350px;}
.y198{bottom:809.263500px;}
.y8{bottom:814.930800px;}
.y1d9{bottom:815.263500px;}
.y137{bottom:817.857300px;}
.y3b{bottom:821.770350px;}
.ycd{bottom:821.785350px;}
.y79{bottom:821.920350px;}
.y197{bottom:824.263500px;}
.y1d8{bottom:830.263500px;}
.y14f{bottom:839.230350px;}
.y196{bottom:839.263500px;}
.y3a{bottom:839.770350px;}
.ycc{bottom:839.785350px;}
.y78{bottom:839.920350px;}
.y1d7{bottom:845.263500px;}
.y195{bottom:854.263500px;}
.yf2{bottom:857.515350px;}
.y39{bottom:857.770350px;}
.ycb{bottom:857.785350px;}
.y77{bottom:857.920350px;}
.y1d6{bottom:860.263500px;}
.y7{bottom:861.082800px;}
.y194{bottom:869.263500px;}
.y1d5{bottom:875.263500px;}
.y38{bottom:875.770350px;}
.yca{bottom:875.785350px;}
.y76{bottom:875.920350px;}
.y193{bottom:884.263500px;}
.y1d4{bottom:890.263500px;}
.y110{bottom:893.515350px;}
.y37{bottom:893.770350px;}
.yc9{bottom:893.785350px;}
.y75{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y192{bottom:899.263500px;}
.y1d3{bottom:905.263500px;}
.y10f{bottom:911.515350px;}
.y36{bottom:911.770350px;}
.yc8{bottom:911.785350px;}
.y74{bottom:911.920350px;}
.y191{bottom:914.263500px;}
.y1d2{bottom:920.263500px;}
.y190{bottom:929.263500px;}
.y35{bottom:929.770350px;}
.y71{bottom:929.772600px;}
.yc7{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y1d1{bottom:935.263500px;}
.y18f{bottom:944.263500px;}
.y73{bottom:947.515350px;}
.y34{bottom:947.770350px;}
.y70{bottom:947.772600px;}
.yc6{bottom:947.785350px;}
.y1d0{bottom:950.263500px;}
.y18e{bottom:959.263500px;}
.y1cf{bottom:965.263500px;}
.y72{bottom:965.515350px;}
.y33{bottom:965.770350px;}
.y6f{bottom:965.772600px;}
.yfd{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y18d{bottom:974.263500px;}
.y1ce{bottom:980.263500px;}
.yc5{bottom:983.380350px;}
.y32{bottom:983.770350px;}
.y6e{bottom:983.772600px;}
.yfc{bottom:983.785350px;}
.y18c{bottom:989.263500px;}
.y1cd{bottom:995.263500px;}
.yc4{bottom:1001.380350px;}
.y31{bottom:1001.770350px;}
.y6d{bottom:1001.772600px;}
.yfb{bottom:1001.785350px;}
.y18b{bottom:1004.263500px;}
.y3{bottom:1006.926000px;}
.y1cc{bottom:1010.263500px;}
.yc3{bottom:1019.380350px;}
.y30{bottom:1019.770350px;}
.yfa{bottom:1019.785350px;}
.y1cb{bottom:1025.263500px;}
.y18a{bottom:1037.365350px;}
.y6c{bottom:1037.367600px;}
.yc2{bottom:1037.380350px;}
.y2f{bottom:1037.770350px;}
.yf9{bottom:1037.785350px;}
.y1ca{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y67{bottom:1132.418700px;}
.y1c9{bottom:1132.423500px;}
.y131{bottom:1132.432800px;}
.y6b{bottom:1132.434300px;}
.y108{bottom:1132.437450px;}
.y10e{bottom:1132.441650px;}
.y175{bottom:1132.447200px;}
.y14e{bottom:1132.472700px;}
.ya0{bottom:1132.490100px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h8{height:32.805176px;}
.h17{height:33.351562px;}
.h1a{height:34.783254px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h1b{height:37.267865px;}
.h18{height:39.752040px;}
.h14{height:40.031250px;}
.h19{height:40.463800px;}
.h12{height:41.689453px;}
.he{height:43.681641px;}
.ha{height:43.710938px;}
.hc{height:43.717434px;}
.hb{height:43.740234px;}
.hf{height:50.039062px;}
.h1d{height:51.659062px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h16{height:57.402773px;}
.h15{height:57.426773px;}
.h13{height:57.435773px;}
.h1c{height:67.572065px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x13{left:78.661350px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x21{left:117.175350px;}
.x35{left:123.307050px;}
.x3{left:125.430450px;}
.x19{left:128.425350px;}
.x6{left:131.816400px;}
.x18{left:163.840350px;}
.x1a{left:167.170350px;}
.x17{left:195.970350px;}
.x31{left:198.875400px;}
.x22{left:206.425350px;}
.x5{left:212.876400px;}
.x16{left:232.360350px;}
.x2a{left:258.910950px;}
.x15{left:282.757350px;}
.x9{left:455.041500px;}
.xc{left:457.130400px;}
.x11{left:478.345350px;}
.x7{left:480.476400px;}
.x34{left:482.598600px;}
.xe{left:491.106600px;}
.x36{left:503.899050px;}
.x1f{left:512.350350px;}
.x2b{left:514.973700px;}
.x1b{left:518.560350px;}
.x1c{left:520.645350px;}
.x2c{left:522.310650px;}
.xd{left:525.276600px;}
.x28{left:528.108770px;}
.x1e{left:532.300350px;}
.x1d{left:536.455350px;}
.x20{left:548.995350px;}
.x2e{left:554.356800px;}
.x27{left:560.569897px;}
.x29{left:562.317173px;}
.x24{left:565.965450px;}
.x33{left:574.850400px;}
.x2f{left:580.966050px;}
.x2d{left:590.032800px;}
.x32{left:591.955350px;}
.x25{left:600.174900px;}
.x26{left:606.149250px;}
.x10{left:663.492300px;}
.x14{left:665.437350px;}
.x2{left:693.365400px;}
.x23{left:721.715550px;}
.xf{left:728.391600px;}
.x30{left:743.887350px;}
.x12{left:749.647350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.440000pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls3c{letter-spacing:-3.840000pt;}
.lsa3{letter-spacing:-2.346667pt;}
.lsb{letter-spacing:-0.693333pt;}
.lsd{letter-spacing:-0.675200pt;}
.lsc{letter-spacing:-0.562667pt;}
.lsa4{letter-spacing:-0.512000pt;}
.ls66{letter-spacing:-0.426667pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls3d{letter-spacing:-0.266667pt;}
.ls67{letter-spacing:-0.213333pt;}
.ls90{letter-spacing:-0.170667pt;}
.ls65{letter-spacing:-0.160000pt;}
.ls3b{letter-spacing:-0.106667pt;}
.ls6d{letter-spacing:-0.097071pt;}
.ls75{letter-spacing:-0.085333pt;}
.ls39{letter-spacing:-0.053333pt;}
.ls74{letter-spacing:-0.042667pt;}
.lse{letter-spacing:-0.040000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003680pt;}
.ls1{letter-spacing:0.004512pt;}
.ls2{letter-spacing:0.005045pt;}
.ls5b{letter-spacing:0.042667pt;}
.ls72{letter-spacing:0.045502pt;}
.ls18{letter-spacing:0.053333pt;}
.ls5c{letter-spacing:0.085333pt;}
.ls73{letter-spacing:0.091005pt;}
.ls10{letter-spacing:0.106667pt;}
.ls6c{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls93{letter-spacing:0.170667pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls87{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.266667pt;}
.ls85{letter-spacing:0.298667pt;}
.ls2d{letter-spacing:0.320000pt;}
.ls58{letter-spacing:0.341333pt;}
.ls26{letter-spacing:0.373333pt;}
.lsa1{letter-spacing:0.384000pt;}
.ls36{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.480000pt;}
.ls86{letter-spacing:0.512000pt;}
.ls2f{letter-spacing:0.533333pt;}
.ls92{letter-spacing:0.554667pt;}
.ls4{letter-spacing:0.586667pt;}
.ls4b{letter-spacing:0.591467pt;}
.ls23{letter-spacing:0.640000pt;}
.ls44{letter-spacing:0.641600pt;}
.ls30{letter-spacing:0.693333pt;}
.ls95{letter-spacing:0.725333pt;}
.ls14{letter-spacing:0.746667pt;}
.ls13{letter-spacing:0.800000pt;}
.ls9a{letter-spacing:0.810667pt;}
.ls6f{letter-spacing:0.849376pt;}
.ls28{letter-spacing:0.853333pt;}
.ls8d{letter-spacing:0.896000pt;}
.ls1d{letter-spacing:0.906667pt;}
.lsf{letter-spacing:0.960000pt;}
.ls70{letter-spacing:0.976782pt;}
.ls1c{letter-spacing:1.013333pt;}
.ls94{letter-spacing:1.024000pt;}
.ls47{letter-spacing:1.066667pt;}
.ls71{letter-spacing:1.104189pt;}
.ls8f{letter-spacing:1.109333pt;}
.ls9{letter-spacing:1.120000pt;}
.ls8e{letter-spacing:1.152000pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls98{letter-spacing:1.194667pt;}
.ls40{letter-spacing:1.206933pt;}
.ls12{letter-spacing:1.226667pt;}
.ls6a{letter-spacing:1.231595pt;}
.ls9f{letter-spacing:1.237333pt;}
.ls6e{letter-spacing:1.274064pt;}
.ls4c{letter-spacing:1.280000pt;}
.ls35{letter-spacing:1.333333pt;}
.ls82{letter-spacing:1.365333pt;}
.ls57{letter-spacing:1.386667pt;}
.ls8c{letter-spacing:1.408000pt;}
.ls20{letter-spacing:1.440000pt;}
.ls9c{letter-spacing:1.450667pt;}
.ls32{letter-spacing:1.493333pt;}
.ls97{letter-spacing:1.536000pt;}
.ls21{letter-spacing:1.546667pt;}
.ls91{letter-spacing:1.578667pt;}
.ls60{letter-spacing:1.600000pt;}
.ls9e{letter-spacing:1.621333pt;}
.ls42{letter-spacing:1.653333pt;}
.ls84{letter-spacing:1.664000pt;}
.ls1e{letter-spacing:1.706667pt;}
.ls89{letter-spacing:1.749333pt;}
.ls31{letter-spacing:1.760000pt;}
.ls99{letter-spacing:1.792000pt;}
.ls38{letter-spacing:1.813333pt;}
.ls8a{letter-spacing:1.834667pt;}
.ls68{letter-spacing:1.866667pt;}
.ls83{letter-spacing:1.877333pt;}
.ls7{letter-spacing:1.920000pt;}
.ls17{letter-spacing:1.973333pt;}
.ls11{letter-spacing:2.026667pt;}
.ls48{letter-spacing:2.069333pt;}
.ls27{letter-spacing:2.080000pt;}
.ls9b{letter-spacing:2.090667pt;}
.ls5{letter-spacing:2.133333pt;}
.ls6{letter-spacing:2.186667pt;}
.ls9d{letter-spacing:2.218667pt;}
.ls2c{letter-spacing:2.240000pt;}
.ls4f{letter-spacing:2.293333pt;}
.ls96{letter-spacing:2.304000pt;}
.ls15{letter-spacing:2.346667pt;}
.ls4e{letter-spacing:2.400000pt;}
.ls43{letter-spacing:2.453333pt;}
.ls3f{letter-spacing:2.506667pt;}
.lsa2{letter-spacing:2.517333pt;}
.ls2a{letter-spacing:2.560000pt;}
.ls88{letter-spacing:2.602667pt;}
.ls54{letter-spacing:2.613333pt;}
.lsa0{letter-spacing:2.645333pt;}
.ls50{letter-spacing:2.666667pt;}
.ls8b{letter-spacing:2.688000pt;}
.ls8{letter-spacing:2.720000pt;}
.ls2e{letter-spacing:2.773333pt;}
.ls2b{letter-spacing:2.826667pt;}
.ls34{letter-spacing:2.880000pt;}
.ls29{letter-spacing:2.933333pt;}
.ls7b{letter-spacing:2.986667pt;}
.ls79{letter-spacing:3.040000pt;}
.ls4d{letter-spacing:3.093333pt;}
.ls41{letter-spacing:3.146667pt;}
.ls49{letter-spacing:3.200000pt;}
.ls80{letter-spacing:3.253333pt;}
.ls5a{letter-spacing:3.285333pt;}
.ls69{letter-spacing:3.306667pt;}
.ls76{letter-spacing:3.360000pt;}
.ls45{letter-spacing:3.413333pt;}
.ls7f{letter-spacing:3.466667pt;}
.ls22{letter-spacing:3.520000pt;}
.ls3e{letter-spacing:3.573333pt;}
.ls25{letter-spacing:3.626667pt;}
.ls37{letter-spacing:3.733333pt;}
.ls78{letter-spacing:3.786667pt;}
.ls52{letter-spacing:3.840000pt;}
.ls7a{letter-spacing:4.106667pt;}
.ls53{letter-spacing:4.213333pt;}
.ls5d{letter-spacing:4.320000pt;}
.ls7d{letter-spacing:4.373333pt;}
.ls33{letter-spacing:4.426667pt;}
.ls77{letter-spacing:4.480000pt;}
.ls4a{letter-spacing:4.640000pt;}
.ls51{letter-spacing:4.746667pt;}
.ls5f{letter-spacing:4.853333pt;}
.ls7c{letter-spacing:4.960000pt;}
.ls62{letter-spacing:5.066667pt;}
.ls7e{letter-spacing:5.546667pt;}
.ls63{letter-spacing:5.653333pt;}
.ls81{letter-spacing:5.706667pt;}
.ls59{letter-spacing:5.760000pt;}
.ls61{letter-spacing:6.026667pt;}
.ls16{letter-spacing:6.133333pt;}
.ls56{letter-spacing:6.400000pt;}
.ls5e{letter-spacing:6.506667pt;}
.ls64{letter-spacing:6.826667pt;}
.ls55{letter-spacing:7.200000pt;}
.ls46{letter-spacing:7.840000pt;}
.ls6b{letter-spacing:35.788983pt;}
.ls0{letter-spacing:52.918112pt;}
.ws0{word-spacing:-30.721600pt;}
.ws59{word-spacing:-17.546667pt;}
.ws66{word-spacing:-17.066667pt;}
.ws2f{word-spacing:-16.906667pt;}
.wsa4{word-spacing:-16.160000pt;}
.ws77{word-spacing:-15.946667pt;}
.ws65{word-spacing:-15.893333pt;}
.ws28{word-spacing:-15.840000pt;}
.ws67{word-spacing:-15.786667pt;}
.ws32{word-spacing:-15.733333pt;}
.ws94{word-spacing:-15.466667pt;}
.ws80{word-spacing:-15.200000pt;}
.wsa5{word-spacing:-15.093333pt;}
.ws3{word-spacing:-14.826667pt;}
.ws13{word-spacing:-14.773333pt;}
.ws5a{word-spacing:-14.720000pt;}
.ws31{word-spacing:-14.613333pt;}
.ws93{word-spacing:-14.560000pt;}
.ws30{word-spacing:-14.346667pt;}
.wsf{word-spacing:-14.293333pt;}
.ws10{word-spacing:-14.240000pt;}
.ws82{word-spacing:-14.186667pt;}
.ws81{word-spacing:-14.133333pt;}
.ws40{word-spacing:-14.026667pt;}
.ws11{word-spacing:-13.973333pt;}
.ws83{word-spacing:-13.920000pt;}
.ws95{word-spacing:-13.866667pt;}
.ws41{word-spacing:-13.760000pt;}
.wsa1{word-spacing:-13.706667pt;}
.ws7e{word-spacing:-13.653333pt;}
.ws7f{word-spacing:-13.546667pt;}
.wsa2{word-spacing:-13.440000pt;}
.wsa3{word-spacing:-13.386667pt;}
.ws12{word-spacing:-13.333333pt;}
.ws14{word-spacing:-13.226667pt;}
.wsc5{word-spacing:-13.184000pt;}
.wsca{word-spacing:-12.885333pt;}
.wsac{word-spacing:-12.416000pt;}
.wsc4{word-spacing:-12.245333pt;}
.ws5{word-spacing:-11.861333pt;}
.ws7b{word-spacing:-11.806326pt;}
.ws7d{word-spacing:-11.456316pt;}
.wsc6{word-spacing:-11.392000pt;}
.ws4{word-spacing:-11.120000pt;}
.ws7a{word-spacing:-11.066086pt;}
.wscb{word-spacing:-11.050667pt;}
.wsc7{word-spacing:-10.965333pt;}
.wsc8{word-spacing:-10.922667pt;}
.ws5c{word-spacing:-10.709333pt;}
.ws5b{word-spacing:-10.666667pt;}
.wsad{word-spacing:-10.624000pt;}
.ws1{word-spacing:-9.076144pt;}
.wsc9{word-spacing:-8.320000pt;}
.ws33{word-spacing:-7.773333pt;}
.ws2{word-spacing:-6.482960pt;}
.ws9d{word-spacing:-3.840000pt;}
.ws20{word-spacing:-3.626667pt;}
.ws9c{word-spacing:-2.613333pt;}
.ws7{word-spacing:-2.565333pt;}
.ws6b{word-spacing:-2.560000pt;}
.ws2b{word-spacing:-2.506667pt;}
.ws6a{word-spacing:-2.453333pt;}
.ws75{word-spacing:-2.400000pt;}
.ws3f{word-spacing:-2.346667pt;}
.ws99{word-spacing:-2.240000pt;}
.wsd5{word-spacing:-2.218667pt;}
.wsb{word-spacing:-2.072000pt;}
.ws68{word-spacing:-1.973333pt;}
.wsb2{word-spacing:-1.877333pt;}
.ws8c{word-spacing:-1.866667pt;}
.wsbc{word-spacing:-1.749333pt;}
.ws5f{word-spacing:-1.546667pt;}
.ws1f{word-spacing:-1.440000pt;}
.ws45{word-spacing:-1.333333pt;}
.wsd0{word-spacing:-1.280000pt;}
.ws85{word-spacing:-1.274064pt;}
.ws89{word-spacing:-1.231595pt;}
.ws18{word-spacing:-1.226667pt;}
.ws88{word-spacing:-1.104189pt;}
.wsd7{word-spacing:-1.024000pt;}
.wsa9{word-spacing:-1.013333pt;}
.wsa{word-spacing:-1.008000pt;}
.ws87{word-spacing:-0.976782pt;}
.ws72{word-spacing:-0.960000pt;}
.ws60{word-spacing:-0.853333pt;}
.ws86{word-spacing:-0.849376pt;}
.wsd6{word-spacing:-0.810667pt;}
.ws19{word-spacing:-0.800000pt;}
.ws46{word-spacing:-0.746667pt;}
.ws9b{word-spacing:-0.693333pt;}
.ws61{word-spacing:-0.640000pt;}
.ws24{word-spacing:-0.586667pt;}
.wsa0{word-spacing:-0.533333pt;}
.ws22{word-spacing:-0.480000pt;}
.ws6c{word-spacing:-0.426667pt;}
.wsd8{word-spacing:-0.384000pt;}
.ws29{word-spacing:-0.373333pt;}
.ws5d{word-spacing:-0.320000pt;}
.wsb5{word-spacing:-0.298667pt;}
.ws47{word-spacing:-0.266667pt;}
.wscf{word-spacing:-0.256000pt;}
.ws3d{word-spacing:-0.213333pt;}
.ws36{word-spacing:-0.160000pt;}
.ws91{word-spacing:-0.128000pt;}
.ws1b{word-spacing:-0.106667pt;}
.ws8a{word-spacing:-0.091005pt;}
.ws64{word-spacing:-0.085333pt;}
.ws3e{word-spacing:-0.053333pt;}
.ws7c{word-spacing:-0.045502pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:0.040000pt;}
.wsc2{word-spacing:0.042667pt;}
.ws84{word-spacing:0.097071pt;}
.wsa6{word-spacing:0.106667pt;}
.wsb9{word-spacing:0.128000pt;}
.ws6e{word-spacing:0.160000pt;}
.ws58{word-spacing:0.213333pt;}
.ws79{word-spacing:0.256000pt;}
.wsaa{word-spacing:0.266667pt;}
.ws1c{word-spacing:0.320000pt;}
.ws8d{word-spacing:0.341333pt;}
.ws17{word-spacing:0.373333pt;}
.wsd1{word-spacing:0.384000pt;}
.ws92{word-spacing:0.426667pt;}
.wsd3{word-spacing:0.469333pt;}
.wsd9{word-spacing:0.512000pt;}
.ws9{word-spacing:0.562667pt;}
.ws4b{word-spacing:0.586667pt;}
.wsc3{word-spacing:0.597333pt;}
.wsd2{word-spacing:0.640000pt;}
.ws8{word-spacing:0.675200pt;}
.wsd4{word-spacing:0.682667pt;}
.ws38{word-spacing:0.693333pt;}
.wsc1{word-spacing:0.725333pt;}
.wsb3{word-spacing:0.810667pt;}
.ws8e{word-spacing:0.853333pt;}
.ws49{word-spacing:0.906667pt;}
.ws15{word-spacing:0.960000pt;}
.ws6f{word-spacing:1.013333pt;}
.ws3b{word-spacing:1.066667pt;}
.ws1a{word-spacing:1.120000pt;}
.wsb8{word-spacing:1.152000pt;}
.ws9e{word-spacing:1.173333pt;}
.ws2e{word-spacing:1.194667pt;}
.ws39{word-spacing:1.226667pt;}
.wsbf{word-spacing:1.280000pt;}
.wsc0{word-spacing:1.365333pt;}
.ws3c{word-spacing:1.386667pt;}
.ws70{word-spacing:1.493333pt;}
.ws73{word-spacing:1.546667pt;}
.ws90{word-spacing:1.578667pt;}
.ws98{word-spacing:1.600000pt;}
.ws4f{word-spacing:1.760000pt;}
.wsbe{word-spacing:1.792000pt;}
.wsb0{word-spacing:1.813333pt;}
.wsb6{word-spacing:1.834667pt;}
.ws74{word-spacing:1.866667pt;}
.ws9a{word-spacing:1.920000pt;}
.ws8f{word-spacing:2.005333pt;}
.ws97{word-spacing:2.080000pt;}
.ws4d{word-spacing:2.133333pt;}
.wsce{word-spacing:2.176000pt;}
.ws78{word-spacing:2.186667pt;}
.wscc{word-spacing:2.218667pt;}
.ws21{word-spacing:2.240000pt;}
.ws5e{word-spacing:2.293333pt;}
.wscd{word-spacing:2.304000pt;}
.ws35{word-spacing:2.346667pt;}
.wsba{word-spacing:2.389333pt;}
.ws16{word-spacing:2.400000pt;}
.ws56{word-spacing:2.432000pt;}
.ws6d{word-spacing:2.453333pt;}
.ws2c{word-spacing:2.506667pt;}
.wsbb{word-spacing:2.517333pt;}
.ws52{word-spacing:2.560000pt;}
.ws4e{word-spacing:2.613333pt;}
.wsb4{word-spacing:2.645333pt;}
.ws37{word-spacing:2.666667pt;}
.ws26{word-spacing:2.720000pt;}
.wsb7{word-spacing:2.730667pt;}
.ws51{word-spacing:2.773333pt;}
.ws42{word-spacing:2.826667pt;}
.ws50{word-spacing:2.880000pt;}
.ws1d{word-spacing:2.933333pt;}
.wsab{word-spacing:2.986667pt;}
.ws2d{word-spacing:3.029333pt;}
.ws1e{word-spacing:3.040000pt;}
.ws53{word-spacing:3.093333pt;}
.wsbd{word-spacing:3.114667pt;}
.ws2a{word-spacing:3.146667pt;}
.wsa7{word-spacing:3.200000pt;}
.ws4a{word-spacing:3.253333pt;}
.ws62{word-spacing:3.285333pt;}
.wsb1{word-spacing:3.360000pt;}
.ws3a{word-spacing:3.413333pt;}
.ws54{word-spacing:3.466667pt;}
.ws63{word-spacing:3.498667pt;}
.ws4c{word-spacing:3.520000pt;}
.ws57{word-spacing:3.541333pt;}
.ws76{word-spacing:3.573333pt;}
.ws23{word-spacing:3.626667pt;}
.ws55{word-spacing:3.680000pt;}
.ws27{word-spacing:3.733333pt;}
.ws44{word-spacing:3.786667pt;}
.ws71{word-spacing:3.840000pt;}
.ws9f{word-spacing:3.893333pt;}
.ws8b{word-spacing:3.946667pt;}
.wsaf{word-spacing:4.000000pt;}
.ws43{word-spacing:4.106667pt;}
.wsa8{word-spacing:4.266667pt;}
.ws48{word-spacing:4.320000pt;}
.wsd{word-spacing:4.373333pt;}
.wse{word-spacing:4.426667pt;}
.wsae{word-spacing:4.906667pt;}
.ws69{word-spacing:6.346667pt;}
.ws25{word-spacing:7.680000pt;}
.ws96{word-spacing:195.712000pt;}
.ws34{word-spacing:350.165333pt;}
._c{margin-left:-2576.085333pt;}
._e{margin-left:-2554.922667pt;}
._f{margin-left:-6.714667pt;}
._6{margin-left:-5.706667pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.125333pt;}
._4{width:0.941333pt;}
._9{width:1.866667pt;}
._7{width:3.146667pt;}
._a{width:4.053333pt;}
._8{width:5.653333pt;}
._d{width:6.986667pt;}
._b{width:8.000000pt;}
._3{width:52.883035pt;}
._1e{width:70.280000pt;}
._1f{width:80.485333pt;}
._11{width:92.637333pt;}
._20{width:108.810667pt;}
._1b{width:172.501333pt;}
._32{width:185.685333pt;}
._1a{width:229.333333pt;}
._17{width:236.458667pt;}
._24{width:245.930667pt;}
._21{width:268.082667pt;}
._34{width:281.045333pt;}
._16{width:310.749333pt;}
._2c{width:322.944000pt;}
._27{width:332.416000pt;}
._29{width:339.498667pt;}
._31{width:346.624000pt;}
._15{width:353.749333pt;}
._2b{width:386.184000pt;}
._1c{width:390.021333pt;}
._25{width:395.392000pt;}
._1d{width:430.298667pt;}
._36{width:454.237333pt;}
._39{width:458.074667pt;}
._2f{width:465.586667pt;}
._23{width:468.186667pt;}
._13{width:477.701333pt;}
._22{width:480.221333pt;}
._30{width:488.618667pt;}
._19{width:496.818667pt;}
._37{width:498.352000pt;}
._28{width:502.101333pt;}
._2a{width:506.837333pt;}
._26{width:514.184000pt;}
._18{width:517.418667pt;}
._2e{width:523.349333pt;}
._3a{width:536.240000pt;}
._38{width:545.754667pt;}
._35{width:582.237333pt;}
._10{width:595.328000pt;}
._2d{width:596.864000pt;}
._33{width:650.922667pt;}
._12{width:679.808000pt;}
._14{width:729.557333pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsd{font-size:42.468800pt;}
.fs9{font-size:42.666667pt;}
.fse{font-size:45.502400pt;}
.fsb{font-size:48.535467pt;}
.fsc{font-size:50.246999pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y130{bottom:73.945600pt;}
.y10d{bottom:74.124133pt;}
.yc1{bottom:74.235867pt;}
.y184{bottom:74.336533pt;}
.y107{bottom:74.355067pt;}
.y14d{bottom:74.439733pt;}
.y64{bottom:74.462533pt;}
.y6a{bottom:74.522933pt;}
.y12c{bottom:74.595867pt;}
.yf1{bottom:74.862533pt;}
.y11f{bottom:76.862533pt;}
.y26{bottom:78.518933pt;}
.y1c8{bottom:79.345333pt;}
.y174{bottom:83.014400pt;}
.y9f{bottom:83.308533pt;}
.y12f{bottom:87.940267pt;}
.y10c{bottom:88.118800pt;}
.y106{bottom:88.349733pt;}
.y14c{bottom:88.434400pt;}
.y69{bottom:88.517600pt;}
.yc0{bottom:90.235867pt;}
.y183{bottom:90.336533pt;}
.y63{bottom:90.462533pt;}
.y12b{bottom:90.595867pt;}
.yf0{bottom:90.862533pt;}
.y25{bottom:91.848933pt;}
.y1c7{bottom:92.678667pt;}
.y11e{bottom:92.862533pt;}
.y173{bottom:97.457067pt;}
.y9e{bottom:97.751200pt;}
.y208{bottom:98.012000pt;}
.y12e{bottom:101.934933pt;}
.y10b{bottom:102.113467pt;}
.y105{bottom:102.344400pt;}
.y14b{bottom:102.429067pt;}
.y68{bottom:102.512267pt;}
.y24{bottom:105.182267pt;}
.y1c6{bottom:106.012000pt;}
.ybf{bottom:106.235867pt;}
.y182{bottom:106.336533pt;}
.y62{bottom:106.462533pt;}
.y12a{bottom:106.595867pt;}
.yef{bottom:106.862533pt;}
.y11d{bottom:108.862533pt;}
.y207{bottom:111.345333pt;}
.y172{bottom:111.899733pt;}
.y9d{bottom:112.193867pt;}
.y12d{bottom:115.929600pt;}
.y10a{bottom:116.108133pt;}
.y104{bottom:116.339067pt;}
.y14a{bottom:116.423733pt;}
.y1c5{bottom:119.345333pt;}
.y181{bottom:121.976533pt;}
.y189{bottom:122.102533pt;}
.ybe{bottom:122.235867pt;}
.y61{bottom:122.462533pt;}
.y129{bottom:122.595867pt;}
.yee{bottom:122.862533pt;}
.y206{bottom:124.678667pt;}
.y11c{bottom:124.862533pt;}
.y171{bottom:126.342400pt;}
.y9c{bottom:126.636533pt;}
.y109{bottom:130.102800pt;}
.y149{bottom:130.418400pt;}
.y1c4{bottom:132.678667pt;}
.y205{bottom:138.012000pt;}
.y66{bottom:138.102533pt;}
.y180{bottom:138.336533pt;}
.y60{bottom:138.462533pt;}
.y128{bottom:138.595867pt;}
.yed{bottom:138.862533pt;}
.y170{bottom:140.785067pt;}
.y11b{bottom:140.862533pt;}
.y9b{bottom:141.079200pt;}
.y29{bottom:142.559067pt;}
.y148{bottom:144.413067pt;}
.y1c3{bottom:146.012000pt;}
.y204{bottom:151.345333pt;}
.ybd{bottom:154.115867pt;}
.y17f{bottom:154.336533pt;}
.y5f{bottom:154.462533pt;}
.y127{bottom:154.595867pt;}
.yec{bottom:154.862533pt;}
.y16f{bottom:155.227733pt;}
.y9a{bottom:155.521867pt;}
.y11a{bottom:156.862533pt;}
.y147{bottom:158.407733pt;}
.y28{bottom:158.559067pt;}
.y1c2{bottom:159.345333pt;}
.y203{bottom:164.678667pt;}
.y16e{bottom:169.670400pt;}
.y99{bottom:169.964533pt;}
.y65{bottom:169.982533pt;}
.y188{bottom:170.102533pt;}
.y17e{bottom:170.336533pt;}
.y5e{bottom:170.462533pt;}
.yeb{bottom:170.862533pt;}
.y146{bottom:172.402400pt;}
.y1c1{bottom:172.678667pt;}
.y119{bottom:172.862533pt;}
.y2b{bottom:174.559067pt;}
.y202{bottom:178.012000pt;}
.y98{bottom:184.407200pt;}
.y1c0{bottom:186.012000pt;}
.y126{bottom:186.235867pt;}
.y17d{bottom:186.336533pt;}
.y145{bottom:186.397067pt;}
.y5d{bottom:186.462533pt;}
.yea{bottom:186.862533pt;}
.y118{bottom:188.862533pt;}
.y27{bottom:190.199067pt;}
.y2a{bottom:190.559067pt;}
.y201{bottom:191.345333pt;}
.y16d{bottom:198.462533pt;}
.y97{bottom:198.849867pt;}
.y1bf{bottom:199.345333pt;}
.y144{bottom:200.391733pt;}
.y17c{bottom:202.336533pt;}
.y5c{bottom:202.462533pt;}
.ybc{bottom:202.595867pt;}
.ye9{bottom:202.862533pt;}
.y200{bottom:204.678667pt;}
.y117{bottom:204.862533pt;}
.y1be{bottom:212.678667pt;}
.y96{bottom:213.292533pt;}
.y143{bottom:214.386400pt;}
.y16c{bottom:215.795867pt;}
.y1ff{bottom:218.012000pt;}
.y17b{bottom:218.336533pt;}
.y5b{bottom:218.462533pt;}
.ybb{bottom:218.595867pt;}
.ye8{bottom:218.862533pt;}
.y116{bottom:220.862533pt;}
.y1bd{bottom:226.012000pt;}
.y95{bottom:227.735200pt;}
.y1fe{bottom:231.345333pt;}
.y16b{bottom:233.129200pt;}
.y17a{bottom:234.336533pt;}
.y5a{bottom:234.462533pt;}
.yba{bottom:234.595867pt;}
.ye7{bottom:234.862533pt;}
.y115{bottom:236.862533pt;}
.y1bc{bottom:239.345333pt;}
.y94{bottom:242.177867pt;}
.y1fd{bottom:244.678667pt;}
.y179{bottom:250.336533pt;}
.y59{bottom:250.462533pt;}
.yb9{bottom:250.595867pt;}
.ye6{bottom:250.862533pt;}
.y1bb{bottom:252.678667pt;}
.y114{bottom:252.862533pt;}
.y93{bottom:256.620533pt;}
.y1fc{bottom:258.012000pt;}
.y23{bottom:259.657067pt;}
.y1ba{bottom:266.012000pt;}
.y187{bottom:266.102533pt;}
.y178{bottom:266.342533pt;}
.y58{bottom:266.462533pt;}
.yb8{bottom:266.595867pt;}
.ye5{bottom:266.862533pt;}
.y113{bottom:268.862533pt;}
.y13f{bottom:270.039200pt;}
.y92{bottom:271.287200pt;}
.y1fb{bottom:271.345333pt;}
.y1b9{bottom:279.345333pt;}
.y177{bottom:282.342533pt;}
.y57{bottom:282.462533pt;}
.yb7{bottom:282.595867pt;}
.ye4{bottom:282.862533pt;}
.y22{bottom:283.963733pt;}
.y13e{bottom:284.417867pt;}
.y1fa{bottom:284.678667pt;}
.y91{bottom:285.729867pt;}
.y1b8{bottom:292.678667pt;}
.y1f9{bottom:298.012000pt;}
.y16a{bottom:298.342533pt;}
.y56{bottom:298.462533pt;}
.yb6{bottom:298.595867pt;}
.y112{bottom:298.729200pt;}
.y21{bottom:299.963733pt;}
.y90{bottom:300.172533pt;}
.y1b7{bottom:306.012000pt;}
.y1f8{bottom:311.345333pt;}
.y186{bottom:314.102533pt;}
.y169{bottom:314.342533pt;}
.y111{bottom:314.369200pt;}
.y55{bottom:314.462533pt;}
.ye3{bottom:314.502533pt;}
.yb5{bottom:314.595867pt;}
.y8f{bottom:314.615200pt;}
.y20{bottom:315.963733pt;}
.y1b6{bottom:319.345333pt;}
.y1f7{bottom:324.678667pt;}
.y8e{bottom:329.057867pt;}
.y168{bottom:330.342533pt;}
.y54{bottom:330.462533pt;}
.yb4{bottom:330.595867pt;}
.y1f{bottom:331.963733pt;}
.y1b5{bottom:332.678667pt;}
.y1f6{bottom:338.012000pt;}
.y8d{bottom:343.500533pt;}
.y1b4{bottom:346.012000pt;}
.y167{bottom:346.342533pt;}
.y53{bottom:346.462533pt;}
.y125{bottom:346.475867pt;}
.yb3{bottom:346.595867pt;}
.ye2{bottom:346.729200pt;}
.y1e{bottom:347.963733pt;}
.y1f5{bottom:351.345333pt;}
.y8c{bottom:357.943200pt;}
.y1b3{bottom:359.345333pt;}
.y166{bottom:362.342533pt;}
.y52{bottom:362.462533pt;}
.y124{bottom:362.475867pt;}
.yb2{bottom:362.595867pt;}
.ye1{bottom:362.729200pt;}
.y1d{bottom:363.963733pt;}
.y1f4{bottom:364.678667pt;}
.y1b2{bottom:372.678667pt;}
.y176{bottom:377.982533pt;}
.y1f3{bottom:378.012000pt;}
.y165{bottom:378.342533pt;}
.y51{bottom:378.462533pt;}
.y123{bottom:378.475867pt;}
.yb1{bottom:378.595867pt;}
.ye0{bottom:378.729200pt;}
.y1c{bottom:379.963733pt;}
.y8b{bottom:385.953867pt;}
.y1b1{bottom:386.012000pt;}
.y136{bottom:389.528605pt;}
.y1f2{bottom:391.345333pt;}
.y164{bottom:394.342533pt;}
.y50{bottom:394.462533pt;}
.y122{bottom:394.475867pt;}
.yb0{bottom:394.595867pt;}
.ydf{bottom:394.729200pt;}
.y1b{bottom:395.963733pt;}
.y1b0{bottom:399.345333pt;}
.y1f1{bottom:404.678667pt;}
.y163{bottom:410.342533pt;}
.y4f{bottom:410.462533pt;}
.y121{bottom:410.475867pt;}
.yaf{bottom:410.595867pt;}
.yde{bottom:410.729200pt;}
.y1a{bottom:411.963733pt;}
.y1af{bottom:412.678667pt;}
.y8a{bottom:416.975200pt;}
.y1f0{bottom:418.012000pt;}
.y1ae{bottom:426.012000pt;}
.y162{bottom:426.342533pt;}
.y4e{bottom:426.462533pt;}
.y120{bottom:426.475867pt;}
.yae{bottom:426.595867pt;}
.ydd{bottom:426.729200pt;}
.y19{bottom:427.963733pt;}
.y1ef{bottom:431.345333pt;}
.y89{bottom:434.308533pt;}
.y1ad{bottom:439.345333pt;}
.y185{bottom:442.102533pt;}
.y161{bottom:442.342533pt;}
.y4d{bottom:442.462533pt;}
.y103{bottom:442.475867pt;}
.yad{bottom:442.595867pt;}
.y18{bottom:443.963733pt;}
.y1ee{bottom:444.678667pt;}
.y88{bottom:451.641867pt;}
.y135{bottom:452.418436pt;}
.y1ac{bottom:452.678667pt;}
.y1ed{bottom:458.012000pt;}
.y160{bottom:458.342533pt;}
.ydc{bottom:458.369200pt;}
.y4c{bottom:458.462533pt;}
.y102{bottom:458.475867pt;}
.yac{bottom:458.595867pt;}
.y17{bottom:459.963733pt;}
.y1ab{bottom:466.012000pt;}
.y87{bottom:468.975200pt;}
.y1ec{bottom:471.345333pt;}
.y15f{bottom:474.342533pt;}
.ydb{bottom:474.369200pt;}
.y4b{bottom:474.462533pt;}
.y101{bottom:474.475867pt;}
.yab{bottom:474.595867pt;}
.y16{bottom:475.963733pt;}
.y1aa{bottom:479.345333pt;}
.y142{bottom:482.904267pt;}
.y141{bottom:482.904533pt;}
.y1eb{bottom:484.678667pt;}
.y86{bottom:486.308533pt;}
.y15e{bottom:490.342533pt;}
.y4a{bottom:490.462533pt;}
.y100{bottom:490.475867pt;}
.yaa{bottom:490.595867pt;}
.y15{bottom:491.963733pt;}
.y1a9{bottom:492.678667pt;}
.y1ea{bottom:498.012000pt;}
.y1a8{bottom:506.012000pt;}
.yda{bottom:506.249200pt;}
.y15d{bottom:506.342533pt;}
.y49{bottom:506.462533pt;}
.yff{bottom:506.475867pt;}
.ya9{bottom:506.595867pt;}
.y14{bottom:507.963733pt;}
.y1e9{bottom:511.345333pt;}
.y140{bottom:513.797467pt;}
.y1a7{bottom:519.345333pt;}
.y15c{bottom:522.342533pt;}
.y48{bottom:522.462533pt;}
.yfe{bottom:522.475867pt;}
.ya8{bottom:522.595867pt;}
.y13{bottom:523.963733pt;}
.y1e8{bottom:524.678667pt;}
.y1a6{bottom:532.678667pt;}
.y1e7{bottom:538.012000pt;}
.y15b{bottom:538.342533pt;}
.y47{bottom:538.462533pt;}
.yd9{bottom:538.475867pt;}
.y85{bottom:538.588533pt;}
.ya7{bottom:538.595867pt;}
.y1a5{bottom:546.012000pt;}
.y134{bottom:546.031217pt;}
.y1e6{bottom:551.345333pt;}
.y15a{bottom:554.342533pt;}
.y46{bottom:554.462533pt;}
.yd8{bottom:554.475867pt;}
.y84{bottom:554.588533pt;}
.ya6{bottom:554.595867pt;}
.y1a4{bottom:559.345333pt;}
.y12{bottom:564.104267pt;}
.y1e5{bottom:564.678667pt;}
.y159{bottom:570.342533pt;}
.y45{bottom:570.462533pt;}
.yd7{bottom:570.475867pt;}
.y83{bottom:570.588533pt;}
.ya5{bottom:570.595867pt;}
.y1a3{bottom:572.678667pt;}
.y11{bottom:575.171600pt;}
.y1e4{bottom:578.012000pt;}
.y1a2{bottom:586.012000pt;}
.y158{bottom:586.342533pt;}
.y44{bottom:586.462533pt;}
.yd6{bottom:586.475867pt;}
.y82{bottom:586.588533pt;}
.ya4{bottom:586.595867pt;}
.y1e3{bottom:591.345333pt;}
.y1a1{bottom:599.345333pt;}
.y157{bottom:602.342533pt;}
.y43{bottom:602.462533pt;}
.yd5{bottom:602.475867pt;}
.y81{bottom:602.588533pt;}
.ya3{bottom:602.595867pt;}
.y1e2{bottom:604.678667pt;}
.y10{bottom:608.185733pt;}
.y1a0{bottom:612.678667pt;}
.y1e1{bottom:618.012000pt;}
.y156{bottom:618.342533pt;}
.y42{bottom:618.462533pt;}
.yd4{bottom:618.475867pt;}
.y80{bottom:618.588533pt;}
.ya2{bottom:618.595867pt;}
.yf{bottom:620.185733pt;}
.y19f{bottom:626.012000pt;}
.ye{bottom:627.363200pt;}
.y1e0{bottom:631.345333pt;}
.y155{bottom:634.342533pt;}
.y41{bottom:634.462533pt;}
.yd3{bottom:634.475867pt;}
.y7f{bottom:634.588533pt;}
.yf8{bottom:634.595867pt;}
.y19e{bottom:639.345333pt;}
.yd{bottom:644.185733pt;}
.y1df{bottom:644.678667pt;}
.y132{bottom:645.747333pt;}
.y133{bottom:645.747600pt;}
.y13d{bottom:646.081203pt;}
.ya1{bottom:650.235867pt;}
.y154{bottom:650.342533pt;}
.y40{bottom:650.462533pt;}
.yd2{bottom:650.475867pt;}
.y7e{bottom:650.588533pt;}
.yf7{bottom:650.595867pt;}
.yc{bottom:651.363200pt;}
.y19d{bottom:652.678667pt;}
.y1de{bottom:658.012000pt;}
.y13c{bottom:659.565047pt;}
.y19c{bottom:666.012000pt;}
.y153{bottom:666.342533pt;}
.y3f{bottom:666.462533pt;}
.yd1{bottom:666.475867pt;}
.y7d{bottom:666.588533pt;}
.yf6{bottom:666.595867pt;}
.yb{bottom:668.185733pt;}
.y1dd{bottom:671.345333pt;}
.y13b{bottom:673.048891pt;}
.y19b{bottom:679.345333pt;}
.ya{bottom:680.185733pt;}
.y152{bottom:682.342533pt;}
.y3e{bottom:682.462533pt;}
.yd0{bottom:682.475867pt;}
.y7c{bottom:682.588533pt;}
.yf5{bottom:682.595867pt;}
.y1dc{bottom:684.678667pt;}
.y13a{bottom:686.532735pt;}
.y19a{bottom:692.678667pt;}
.y1db{bottom:698.012000pt;}
.y151{bottom:698.342533pt;}
.y3d{bottom:698.462533pt;}
.ycf{bottom:698.475867pt;}
.y7b{bottom:698.588533pt;}
.yf4{bottom:698.595867pt;}
.y139{bottom:700.016579pt;}
.y9{bottom:705.720933pt;}
.y199{bottom:706.012000pt;}
.y1da{bottom:711.345333pt;}
.y138{bottom:713.500423pt;}
.y150{bottom:714.342533pt;}
.y3c{bottom:714.462533pt;}
.yce{bottom:714.475867pt;}
.y7a{bottom:714.588533pt;}
.yf3{bottom:714.595867pt;}
.y198{bottom:719.345333pt;}
.y8{bottom:724.382933pt;}
.y1d9{bottom:724.678667pt;}
.y137{bottom:726.984267pt;}
.y3b{bottom:730.462533pt;}
.ycd{bottom:730.475867pt;}
.y79{bottom:730.595867pt;}
.y197{bottom:732.678667pt;}
.y1d8{bottom:738.012000pt;}
.y14f{bottom:745.982533pt;}
.y196{bottom:746.012000pt;}
.y3a{bottom:746.462533pt;}
.ycc{bottom:746.475867pt;}
.y78{bottom:746.595867pt;}
.y1d7{bottom:751.345333pt;}
.y195{bottom:759.345333pt;}
.yf2{bottom:762.235867pt;}
.y39{bottom:762.462533pt;}
.ycb{bottom:762.475867pt;}
.y77{bottom:762.595867pt;}
.y1d6{bottom:764.678667pt;}
.y7{bottom:765.406933pt;}
.y194{bottom:772.678667pt;}
.y1d5{bottom:778.012000pt;}
.y38{bottom:778.462533pt;}
.yca{bottom:778.475867pt;}
.y76{bottom:778.595867pt;}
.y193{bottom:786.012000pt;}
.y1d4{bottom:791.345333pt;}
.y110{bottom:794.235867pt;}
.y37{bottom:794.462533pt;}
.yc9{bottom:794.475867pt;}
.y75{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y192{bottom:799.345333pt;}
.y1d3{bottom:804.678667pt;}
.y10f{bottom:810.235867pt;}
.y36{bottom:810.462533pt;}
.yc8{bottom:810.475867pt;}
.y74{bottom:810.595867pt;}
.y191{bottom:812.678667pt;}
.y1d2{bottom:818.012000pt;}
.y190{bottom:826.012000pt;}
.y35{bottom:826.462533pt;}
.y71{bottom:826.464533pt;}
.yc7{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y1d1{bottom:831.345333pt;}
.y18f{bottom:839.345333pt;}
.y73{bottom:842.235867pt;}
.y34{bottom:842.462533pt;}
.y70{bottom:842.464533pt;}
.yc6{bottom:842.475867pt;}
.y1d0{bottom:844.678667pt;}
.y18e{bottom:852.678667pt;}
.y1cf{bottom:858.012000pt;}
.y72{bottom:858.235867pt;}
.y33{bottom:858.462533pt;}
.y6f{bottom:858.464533pt;}
.yfd{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y18d{bottom:866.012000pt;}
.y1ce{bottom:871.345333pt;}
.yc5{bottom:874.115867pt;}
.y32{bottom:874.462533pt;}
.y6e{bottom:874.464533pt;}
.yfc{bottom:874.475867pt;}
.y18c{bottom:879.345333pt;}
.y1cd{bottom:884.678667pt;}
.yc4{bottom:890.115867pt;}
.y31{bottom:890.462533pt;}
.y6d{bottom:890.464533pt;}
.yfb{bottom:890.475867pt;}
.y18b{bottom:892.678667pt;}
.y3{bottom:895.045333pt;}
.y1cc{bottom:898.012000pt;}
.yc3{bottom:906.115867pt;}
.y30{bottom:906.462533pt;}
.yfa{bottom:906.475867pt;}
.y1cb{bottom:911.345333pt;}
.y18a{bottom:922.102533pt;}
.y6c{bottom:922.104533pt;}
.yc2{bottom:922.115867pt;}
.y2f{bottom:922.462533pt;}
.yf9{bottom:922.475867pt;}
.y1ca{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y67{bottom:1006.594400pt;}
.y1c9{bottom:1006.598667pt;}
.y131{bottom:1006.606933pt;}
.y6b{bottom:1006.608267pt;}
.y108{bottom:1006.611067pt;}
.y10e{bottom:1006.614800pt;}
.y175{bottom:1006.619733pt;}
.y14e{bottom:1006.642400pt;}
.ya0{bottom:1006.657867pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h8{height:29.160156pt;}
.h17{height:29.645833pt;}
.h1a{height:30.918448pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h1b{height:33.126991pt;}
.h18{height:35.335147pt;}
.h14{height:35.583333pt;}
.h19{height:35.967822pt;}
.h12{height:37.057292pt;}
.he{height:38.828125pt;}
.ha{height:38.854167pt;}
.hc{height:38.859942pt;}
.hb{height:38.880208pt;}
.hf{height:44.479167pt;}
.h1d{height:45.919167pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h16{height:51.024688pt;}
.h15{height:51.046021pt;}
.h13{height:51.054021pt;}
.h1c{height:60.064058pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x13{left:69.921200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x21{left:104.155867pt;}
.x35{left:109.606267pt;}
.x3{left:111.493733pt;}
.x19{left:114.155867pt;}
.x6{left:117.170133pt;}
.x18{left:145.635867pt;}
.x1a{left:148.595867pt;}
.x17{left:174.195867pt;}
.x31{left:176.778133pt;}
.x22{left:183.489200pt;}
.x5{left:189.223467pt;}
.x16{left:206.542533pt;}
.x2a{left:230.143067pt;}
.x15{left:251.339867pt;}
.x9{left:404.481333pt;}
.xc{left:406.338133pt;}
.x11{left:425.195867pt;}
.x7{left:427.090133pt;}
.x34{left:428.976533pt;}
.xe{left:436.539200pt;}
.x36{left:447.910267pt;}
.x1f{left:455.422533pt;}
.x2b{left:457.754400pt;}
.x1b{left:460.942533pt;}
.x1c{left:462.795867pt;}
.x2c{left:464.276133pt;}
.xd{left:466.912533pt;}
.x28{left:469.430018pt;}
.x1e{left:473.155867pt;}
.x1d{left:476.849200pt;}
.x20{left:487.995867pt;}
.x2e{left:492.761600pt;}
.x27{left:498.284353pt;}
.x29{left:499.837487pt;}
.x24{left:503.080400pt;}
.x33{left:510.978133pt;}
.x2f{left:516.414267pt;}
.x2d{left:524.473600pt;}
.x32{left:526.182533pt;}
.x25{left:533.488800pt;}
.x26{left:538.799333pt;}
.x10{left:589.770933pt;}
.x14{left:591.499867pt;}
.x2{left:616.324800pt;}
.x23{left:641.524933pt;}
.xf{left:647.459200pt;}
.x30{left:661.233200pt;}
.x12{left:666.353200pt;}
}




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