
    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_781b7dbe41cb7d846a06b260.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_9643fe62343a3cd426fbf1dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.730581;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_3dc9e372cc7cac55e34c87bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_4e26c4f1a3e7776861b2d57d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_b8425a9946487e37f8d9abcb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.179000;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_c19ac0689bfb956919e1694b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_c79e6eb2b8dfb02cf8605806.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.144000;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_d2c3ddb92a1929b1db25b42d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677246;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_722a68473a35680832a3384b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710000;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_a9785fbf0253a6e3bb2acdf3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.328000;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_70f30b00d90f43b4e687a234.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.674000;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_4e84e267f6d3bca659da7e1a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.399963px;}
.v2{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.403110px;}
.v1{vertical-align:24.000000px;}
.ls99{letter-spacing:-0.969000px;}
.ls97{letter-spacing:-0.816000px;}
.ls98{letter-spacing:-0.765000px;}
.ls95{letter-spacing:-0.714000px;}
.ls96{letter-spacing:-0.612000px;}
.ls94{letter-spacing:-0.510000px;}
.ls44{letter-spacing:-0.480000px;}
.ls31{letter-spacing:-0.420000px;}
.ls33{letter-spacing:-0.360000px;}
.ls5f{letter-spacing:-0.357000px;}
.ls80{letter-spacing:-0.306000px;}
.ls32{letter-spacing:-0.300000px;}
.ls83{letter-spacing:-0.255000px;}
.ls1d{letter-spacing:-0.240000px;}
.ls60{letter-spacing:-0.204000px;}
.ls1f{letter-spacing:-0.180000px;}
.ls82{letter-spacing:-0.153000px;}
.ls30{letter-spacing:-0.120000px;}
.ls61{letter-spacing:-0.102000px;}
.ls1e{letter-spacing:-0.060000px;}
.ls81{letter-spacing:-0.051000px;}
.ls1c{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.051000px;}
.ls27{letter-spacing:0.060000px;}
.ls71{letter-spacing:0.076500px;}
.ls2c{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.101074px;}
.lsa{letter-spacing:0.101440px;}
.ls5a{letter-spacing:0.102000px;}
.ls9{letter-spacing:0.120000px;}
.ls52{letter-spacing:0.153000px;}
.ls1a{letter-spacing:0.178791px;}
.ls3{letter-spacing:0.180000px;}
.ls53{letter-spacing:0.204000px;}
.ls34{letter-spacing:0.210000px;}
.ls92{letter-spacing:0.229500px;}
.ls1{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.255000px;}
.ls56{letter-spacing:0.264000px;}
.ls4a{letter-spacing:0.270000px;}
.ls7d{letter-spacing:0.280500px;}
.ls5b{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls4b{letter-spacing:0.305972px;}
.ls73{letter-spacing:0.306000px;}
.ls7e{letter-spacing:0.331490px;}
.ls68{letter-spacing:0.331500px;}
.ls58{letter-spacing:0.357000px;}
.ls37{letter-spacing:0.359980px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.366000px;}
.ls25{letter-spacing:0.390000px;}
.ls54{letter-spacing:0.408000px;}
.ls15{letter-spacing:0.420000px;}
.ls36{letter-spacing:0.436249px;}
.ls59{letter-spacing:0.459000px;}
.ls6f{letter-spacing:0.464100px;}
.ls29{letter-spacing:0.480000px;}
.ls12{letter-spacing:0.510000px;}
.ls22{letter-spacing:0.540000px;}
.ls5d{letter-spacing:0.561000px;}
.ls48{letter-spacing:0.570000px;}
.lsf{letter-spacing:0.582000px;}
.ls2d{letter-spacing:0.600000px;}
.ls66{letter-spacing:0.612000px;}
.lsc{letter-spacing:0.614502px;}
.lse{letter-spacing:0.615051px;}
.ls88{letter-spacing:0.637500px;}
.ls5{letter-spacing:0.660000px;}
.ls70{letter-spacing:0.663000px;}
.ls28{letter-spacing:0.677989px;}
.ls2f{letter-spacing:0.690000px;}
.ls5e{letter-spacing:0.714000px;}
.ls24{letter-spacing:0.720000px;}
.ls62{letter-spacing:0.739500px;}
.ls26{letter-spacing:0.750000px;}
.ls63{letter-spacing:0.765000px;}
.ls16{letter-spacing:0.780000px;}
.ls47{letter-spacing:0.780396px;}
.ls6c{letter-spacing:0.816000px;}
.ls11{letter-spacing:0.840000px;}
.ls23{letter-spacing:0.852000px;}
.ls64{letter-spacing:0.867000px;}
.ls3a{letter-spacing:0.870000px;}
.lsd{letter-spacing:0.877178px;}
.ls6d{letter-spacing:0.892500px;}
.ls4e{letter-spacing:0.897600px;}
.ls6{letter-spacing:0.900000px;}
.ls72{letter-spacing:0.918000px;}
.ls38{letter-spacing:0.930000px;}
.ls18{letter-spacing:0.935991px;}
.ls17{letter-spacing:0.954000px;}
.ls4{letter-spacing:0.960000px;}
.ls5c{letter-spacing:0.969000px;}
.ls14{letter-spacing:0.990000px;}
.ls2b{letter-spacing:1.020000px;}
.ls67{letter-spacing:1.071000px;}
.ls13{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.140000px;}
.ls43{letter-spacing:1.170000px;}
.ls65{letter-spacing:1.173000px;}
.ls21{letter-spacing:1.200000px;}
.ls91{letter-spacing:1.224000px;}
.ls10{letter-spacing:1.260000px;}
.ls40{letter-spacing:1.320000px;}
.ls85{letter-spacing:1.326000px;}
.ls6e{letter-spacing:1.377000px;}
.ls49{letter-spacing:1.380000px;}
.ls8d{letter-spacing:1.402500px;}
.ls7c{letter-spacing:1.428000px;}
.ls20{letter-spacing:1.440000px;}
.ls4d{letter-spacing:1.452000px;}
.ls3b{letter-spacing:1.470000px;}
.ls55{letter-spacing:1.479000px;}
.ls2a{letter-spacing:1.500000px;}
.ls6a{letter-spacing:1.530000px;}
.ls3c{letter-spacing:1.560000px;}
.ls69{letter-spacing:1.581000px;}
.ls3d{letter-spacing:1.620000px;}
.ls3f{letter-spacing:1.680000px;}
.ls7b{letter-spacing:1.683000px;}
.ls2e{letter-spacing:1.710000px;}
.ls7f{letter-spacing:1.734000px;}
.ls35{letter-spacing:1.740000px;}
.ls4c{letter-spacing:1.770000px;}
.ls79{letter-spacing:1.785000px;}
.ls41{letter-spacing:1.800000px;}
.ls78{letter-spacing:1.836000px;}
.ls84{letter-spacing:1.887000px;}
.ls3e{letter-spacing:1.920000px;}
.ls75{letter-spacing:1.938000px;}
.ls45{letter-spacing:1.980000px;}
.ls8f{letter-spacing:1.989000px;}
.ls42{letter-spacing:2.040000px;}
.ls77{letter-spacing:2.193000px;}
.ls76{letter-spacing:2.244000px;}
.ls39{letter-spacing:2.340000px;}
.ls8a{letter-spacing:2.346000px;}
.ls90{letter-spacing:2.499000px;}
.ls8b{letter-spacing:2.601000px;}
.ls86{letter-spacing:2.805000px;}
.ls87{letter-spacing:2.958000px;}
.ls8c{letter-spacing:3.111000px;}
.ls8e{letter-spacing:3.468000px;}
.ls46{letter-spacing:3.780000px;}
.ls0{letter-spacing:3.990000px;}
.ls6b{letter-spacing:4.309464px;}
.ls89{letter-spacing:4.437000px;}
.ls74{letter-spacing:5.079593px;}
.ls7a{letter-spacing:5.553900px;}
.ls93{letter-spacing:5.814000px;}
.ls51{letter-spacing:138.820807px;}
.ls50{letter-spacing:140.820007px;}
.ls4f{letter-spacing:140.820648px;}
.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;}
}
.ws4a{word-spacing:-60.000000px;}
.ws6e{word-spacing:-51.000000px;}
.ws72{word-spacing:-16.620000px;}
.ws5e{word-spacing:-16.440000px;}
.ws71{word-spacing:-16.320000px;}
.ws6{word-spacing:-15.900000px;}
.ws6d{word-spacing:-15.780000px;}
.ws6c{word-spacing:-15.660000px;}
.ws5c{word-spacing:-15.300000px;}
.ws6b{word-spacing:-15.000000px;}
.ws8a{word-spacing:-14.832000px;}
.ws46{word-spacing:-14.544000px;}
.wsc2{word-spacing:-14.280000px;}
.wsa2{word-spacing:-13.719000px;}
.wsa1{word-spacing:-13.362000px;}
.ws9d{word-spacing:-13.005000px;}
.ws89{word-spacing:-12.852000px;}
.ws80{word-spacing:-12.750000px;}
.wsa0{word-spacing:-12.597000px;}
.ws47{word-spacing:-12.474000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws5{word-spacing:-11.520000px;}
.ws49{word-spacing:-10.710000px;}
.ws5d{word-spacing:-10.500000px;}
.ws88{word-spacing:-10.302000px;}
.ws1{word-spacing:-9.996000px;}
.ws87{word-spacing:-9.945000px;}
.ws7{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws7b{word-spacing:-6.375000px;}
.wse5{word-spacing:-2.754000px;}
.wsc1{word-spacing:-2.244000px;}
.wsc4{word-spacing:-2.193000px;}
.wsdf{word-spacing:-1.887000px;}
.wsd8{word-spacing:-1.683000px;}
.wscd{word-spacing:-1.581000px;}
.ws4d{word-spacing:-1.560000px;}
.wsae{word-spacing:-1.530000px;}
.wsb{word-spacing:-1.500000px;}
.wsd{word-spacing:-1.440000px;}
.wsde{word-spacing:-1.428000px;}
.ws65{word-spacing:-1.380000px;}
.wsc7{word-spacing:-1.326000px;}
.ws7a{word-spacing:-1.320000px;}
.ws8b{word-spacing:-1.275000px;}
.ws41{word-spacing:-1.260000px;}
.wscc{word-spacing:-1.224000px;}
.ws7d{word-spacing:-1.200000px;}
.ws5a{word-spacing:-1.140000px;}
.wsb1{word-spacing:-1.122000px;}
.ws2c{word-spacing:-1.080000px;}
.ws95{word-spacing:-1.071000px;}
.ws26{word-spacing:-1.020000px;}
.ws93{word-spacing:-0.969000px;}
.ws38{word-spacing:-0.960000px;}
.wsb5{word-spacing:-0.918000px;}
.ws14{word-spacing:-0.900000px;}
.wsc8{word-spacing:-0.867000px;}
.ws25{word-spacing:-0.840000px;}
.wsa4{word-spacing:-0.816000px;}
.ws96{word-spacing:-0.765000px;}
.ws12{word-spacing:-0.720000px;}
.ws97{word-spacing:-0.714000px;}
.ws10{word-spacing:-0.660000px;}
.ws24{word-spacing:-0.612000px;}
.ws1a{word-spacing:-0.600000px;}
.ws9{word-spacing:-0.570000px;}
.wsf{word-spacing:-0.540000px;}
.ws8f{word-spacing:-0.510000px;}
.ws36{word-spacing:-0.480000px;}
.wsb2{word-spacing:-0.459000px;}
.ws58{word-spacing:-0.420000px;}
.ws52{word-spacing:-0.360000px;}
.ws35{word-spacing:-0.300000px;}
.ws90{word-spacing:-0.264000px;}
.ws9a{word-spacing:-0.255000px;}
.ws42{word-spacing:-0.240000px;}
.ws7c{word-spacing:-0.180000px;}
.ws3d{word-spacing:-0.120000px;}
.ws9b{word-spacing:-0.102000px;}
.ws30{word-spacing:-0.060000px;}
.ws9e{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws9f{word-spacing:-0.035700px;}
.ws8{word-spacing:0.000000px;}
.wsba{word-spacing:0.051000px;}
.ws67{word-spacing:0.060000px;}
.wsac{word-spacing:0.102000px;}
.ws51{word-spacing:0.120000px;}
.ws4c{word-spacing:0.180000px;}
.ws11{word-spacing:0.240000px;}
.ws91{word-spacing:0.255000px;}
.ws92{word-spacing:0.357000px;}
.wsa{word-spacing:0.360000px;}
.ws55{word-spacing:0.420000px;}
.wsa9{word-spacing:0.459000px;}
.ws60{word-spacing:0.480000px;}
.wsb7{word-spacing:0.510000px;}
.ws2e{word-spacing:0.540000px;}
.wsa7{word-spacing:0.561000px;}
.wse{word-spacing:0.600000px;}
.wsb0{word-spacing:0.612000px;}
.ws68{word-spacing:0.660000px;}
.wscf{word-spacing:0.663000px;}
.ws17{word-spacing:0.720000px;}
.ws84{word-spacing:0.765000px;}
.ws69{word-spacing:0.780000px;}
.ws40{word-spacing:0.840000px;}
.ws70{word-spacing:0.867000px;}
.ws39{word-spacing:0.900000px;}
.ws85{word-spacing:0.918000px;}
.wsb3{word-spacing:0.969000px;}
.ws1e{word-spacing:1.020000px;}
.ws57{word-spacing:1.080000px;}
.ws1f{word-spacing:1.140000px;}
.ws94{word-spacing:1.173000px;}
.ws53{word-spacing:1.200000px;}
.ws18{word-spacing:1.260000px;}
.ws8c{word-spacing:1.275000px;}
.wsc0{word-spacing:1.326000px;}
.wsb4{word-spacing:1.377000px;}
.ws62{word-spacing:1.380000px;}
.ws7e{word-spacing:1.440000px;}
.wsb8{word-spacing:1.479000px;}
.wsc{word-spacing:1.500000px;}
.ws8e{word-spacing:1.530000px;}
.ws45{word-spacing:1.560000px;}
.wse9{word-spacing:1.581000px;}
.ws20{word-spacing:1.620000px;}
.wsa8{word-spacing:1.632000px;}
.wsb6{word-spacing:1.683000px;}
.wsa3{word-spacing:1.734000px;}
.ws4e{word-spacing:1.740000px;}
.wsd3{word-spacing:1.785000px;}
.ws37{word-spacing:1.800000px;}
.wsb9{word-spacing:1.836000px;}
.wsbd{word-spacing:1.887000px;}
.ws27{word-spacing:1.920000px;}
.wsa5{word-spacing:1.938000px;}
.ws34{word-spacing:1.980000px;}
.wse1{word-spacing:1.989000px;}
.ws1b{word-spacing:2.040000px;}
.wse3{word-spacing:2.091000px;}
.ws19{word-spacing:2.100000px;}
.ws4b{word-spacing:2.160000px;}
.ws16{word-spacing:2.220000px;}
.wsaf{word-spacing:2.244000px;}
.ws3e{word-spacing:2.280000px;}
.ws2a{word-spacing:2.340000px;}
.wsbb{word-spacing:2.346000px;}
.ws2d{word-spacing:2.400000px;}
.wsa6{word-spacing:2.448000px;}
.ws3c{word-spacing:2.460000px;}
.wsad{word-spacing:2.499000px;}
.ws2f{word-spacing:2.520000px;}
.ws21{word-spacing:2.580000px;}
.wsc6{word-spacing:2.601000px;}
.ws1d{word-spacing:2.640000px;}
.ws15{word-spacing:2.700000px;}
.wsbc{word-spacing:2.703000px;}
.wsc3{word-spacing:2.805000px;}
.ws4f{word-spacing:2.820000px;}
.ws32{word-spacing:2.880000px;}
.ws98{word-spacing:2.907000px;}
.wsc5{word-spacing:2.958000px;}
.ws33{word-spacing:3.000000px;}
.ws66{word-spacing:3.060000px;}
.ws6f{word-spacing:3.120000px;}
.wsc9{word-spacing:3.162000px;}
.ws1c{word-spacing:3.180000px;}
.ws56{word-spacing:3.240000px;}
.wsab{word-spacing:3.264000px;}
.ws3a{word-spacing:3.300000px;}
.ws99{word-spacing:3.315000px;}
.ws5f{word-spacing:3.360000px;}
.ws22{word-spacing:3.420000px;}
.wsaa{word-spacing:3.468000px;}
.ws44{word-spacing:3.480000px;}
.wsbf{word-spacing:3.519000px;}
.ws76{word-spacing:3.540000px;}
.ws48{word-spacing:3.600000px;}
.ws2b{word-spacing:3.720000px;}
.ws43{word-spacing:3.840000px;}
.ws29{word-spacing:3.900000px;}
.ws83{word-spacing:3.927000px;}
.wse8{word-spacing:4.029000px;}
.ws77{word-spacing:4.080000px;}
.ws63{word-spacing:4.320000px;}
.ws7f{word-spacing:4.620000px;}
.ws64{word-spacing:4.740000px;}
.wsd0{word-spacing:4.794000px;}
.ws28{word-spacing:4.800000px;}
.ws6a{word-spacing:4.920000px;}
.ws5b{word-spacing:4.947000px;}
.ws50{word-spacing:4.980000px;}
.ws61{word-spacing:5.040000px;}
.ws31{word-spacing:5.100000px;}
.ws54{word-spacing:5.280000px;}
.ws3f{word-spacing:5.340000px;}
.ws8d{word-spacing:5.406000px;}
.wse2{word-spacing:5.508000px;}
.wsbe{word-spacing:5.814000px;}
.ws79{word-spacing:5.820000px;}
.ws3b{word-spacing:6.300000px;}
.ws78{word-spacing:6.600000px;}
.wsd5{word-spacing:6.630000px;}
.wse4{word-spacing:6.885000px;}
.wsce{word-spacing:7.548000px;}
.wse6{word-spacing:7.599000px;}
.ws9c{word-spacing:7.701000px;}
.ws86{word-spacing:7.803000px;}
.wsdc{word-spacing:8.058000px;}
.wsd2{word-spacing:9.282000px;}
.wse7{word-spacing:9.435000px;}
.wsd7{word-spacing:9.792000px;}
.wsdd{word-spacing:10.710000px;}
.wsd9{word-spacing:11.118000px;}
.wsd1{word-spacing:12.189000px;}
.ws59{word-spacing:12.540000px;}
.wsd4{word-spacing:12.954000px;}
.wsca{word-spacing:13.515000px;}
.wsda{word-spacing:13.566000px;}
.wsdb{word-spacing:15.300000px;}
.wscb{word-spacing:17.595000px;}
.wsd6{word-spacing:20.298000px;}
.ws13{word-spacing:21.456000px;}
.wse0{word-spacing:27.030000px;}
.ws23{word-spacing:72.267000px;}
.ws81{word-spacing:97.971000px;}
.ws75{word-spacing:101.591990px;}
.ws74{word-spacing:234.344990px;}
.ws82{word-spacing:250.103991px;}
.ws73{word-spacing:302.990986px;}
._10{margin-left:-2959.376944px;}
._a{margin-left:-96.900000px;}
._28{margin-left:-17.748000px;}
._7{margin-left:-16.575000px;}
._15{margin-left:-15.264000px;}
._6{margin-left:-13.200000px;}
._17{margin-left:-12.108000px;}
._14{margin-left:-9.564000px;}
._13{margin-left:-8.376000px;}
._18{margin-left:-6.240000px;}
._2{margin-left:-4.380900px;}
._4{margin-left:-3.066000px;}
._0{margin-left:-1.632000px;}
._1{width:1.122000px;}
._5{width:2.202000px;}
._f{width:3.306000px;}
._19{width:4.440000px;}
._23{width:5.610000px;}
._25{width:7.701000px;}
._11{width:12.119400px;}
._d{width:13.816800px;}
._16{width:15.606000px;}
._8{width:18.360000px;}
._12{width:20.526000px;}
._27{width:22.947000px;}
._24{width:24.633000px;}
._26{width:26.010000px;}
._1a{width:29.994000px;}
._e{width:33.000000px;}
._c{width:36.000000px;}
._3{width:39.987979px;}
._9{width:54.621000px;}
._1f{width:109.650000px;}
._1d{width:113.577000px;}
._22{width:118.472991px;}
._1e{width:138.974992px;}
._21{width:263.261991px;}
._20{width:322.574990px;}
._1c{width:328.593000px;}
._1b{width:331.245000px;}
._b{width:883.421982px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.598651px;}
.y4{bottom:64.418999px;}
.y1{bottom:68.829002px;}
.y3e{bottom:112.944300px;}
.y7d{bottom:113.415298px;}
.y74{bottom:113.415344px;}
.ye6{bottom:113.683800px;}
.y149{bottom:114.564308px;}
.yad{bottom:114.735294px;}
.y17c{bottom:114.874947px;}
.y31{bottom:122.461349px;}
.y1a9{bottom:127.478546px;}
.y3d{bottom:127.938300px;}
.y143{bottom:131.283302px;}
.y1b9{bottom:131.394304px;}
.y1fc{bottom:131.440777px;}
.y7c{bottom:132.165298px;}
.y73{bottom:132.165344px;}
.y113{bottom:132.294296px;}
.ye5{bottom:132.433800px;}
.y148{bottom:133.314308px;}
.yac{bottom:133.485294px;}
.y17b{bottom:133.624947px;}
.y30{bottom:141.211349px;}
.y1a8{bottom:142.472546px;}
.y1b8{bottom:146.388304px;}
.y1fb{bottom:146.434777px;}
.y3c{bottom:148.032303px;}
.y142{bottom:150.033302px;}
.y7b{bottom:150.915298px;}
.y72{bottom:150.915344px;}
.y112{bottom:151.044296px;}
.ye4{bottom:151.183800px;}
.y147{bottom:152.064308px;}
.yab{bottom:152.235294px;}
.y17a{bottom:152.374947px;}
.y1a7{bottom:157.466546px;}
.y2f{bottom:159.961349px;}
.y1b7{bottom:161.382304px;}
.y1fa{bottom:161.428777px;}
.y23b{bottom:161.811261px;}
.y3b{bottom:165.485553px;}
.y141{bottom:168.783302px;}
.y7a{bottom:169.665298px;}
.y71{bottom:169.665344px;}
.y111{bottom:169.794296px;}
.ye3{bottom:169.933800px;}
.y146{bottom:170.814308px;}
.yde{bottom:170.985294px;}
.y179{bottom:171.124947px;}
.y1b6{bottom:176.376304px;}
.y1f9{bottom:176.422777px;}
.y23a{bottom:176.805261px;}
.y2e{bottom:178.711349px;}
.y3a{bottom:185.579556px;}
.y1a6{bottom:187.467296px;}
.y79{bottom:188.415298px;}
.y70{bottom:188.415344px;}
.y110{bottom:188.544296px;}
.ye2{bottom:188.683800px;}
.y145{bottom:189.564308px;}
.yaa{bottom:189.735294px;}
.y178{bottom:189.874947px;}
.y1b5{bottom:191.370304px;}
.y1f8{bottom:191.416777px;}
.y239{bottom:191.799261px;}
.y2d{bottom:197.461349px;}
.y1a5{bottom:202.461296px;}
.y39{bottom:203.038794px;}
.y140{bottom:206.289302px;}
.y1b4{bottom:206.364304px;}
.y1f7{bottom:206.410777px;}
.y238{bottom:206.793261px;}
.y78{bottom:207.165298px;}
.y6f{bottom:207.165344px;}
.y10f{bottom:207.294296px;}
.ye1{bottom:207.433800px;}
.y144{bottom:208.314308px;}
.ydd{bottom:208.485294px;}
.y177{bottom:208.624947px;}
.y2c{bottom:216.211349px;}
.y38{bottom:218.032794px;}
.y1f6{bottom:221.404777px;}
.y237{bottom:221.787261px;}
.y13f{bottom:225.033302px;}
.y77{bottom:225.915298px;}
.y6e{bottom:225.915344px;}
.ye0{bottom:226.183800px;}
.ydc{bottom:227.235294px;}
.ya9{bottom:227.235306px;}
.y176{bottom:227.374947px;}
.y1a4{bottom:232.461296px;}
.y2b{bottom:234.961349px;}
.y1f5{bottom:236.398777px;}
.y236{bottom:236.781261px;}
.y37{bottom:238.126808px;}
.y1b3{bottom:240.114304px;}
.y6d{bottom:244.665344px;}
.y10e{bottom:244.794296px;}
.y268{bottom:245.571318px;}
.ydb{bottom:245.985294px;}
.ya8{bottom:245.985306px;}
.y175{bottom:246.124947px;}
.y1f4{bottom:251.392777px;}
.y235{bottom:251.775261px;}
.y2a{bottom:253.711349px;}
.y36{bottom:255.586059px;}
.y267{bottom:260.565318px;}
.y13e{bottom:262.533279px;}
.y76{bottom:263.415298px;}
.y6c{bottom:263.415344px;}
.ydf{bottom:263.683800px;}
.y14c{bottom:263.760452px;}
.yda{bottom:264.735294px;}
.ya7{bottom:264.735306px;}
.y174{bottom:264.874947px;}
.y1a3{bottom:266.245819px;}
.y1f3{bottom:266.386777px;}
.y234{bottom:266.769261px;}
.y195{bottom:269.571311px;}
.y35{bottom:270.580059px;}
.y29{bottom:272.461349px;}
.y266{bottom:275.559318px;}
.y13d{bottom:281.283279px;}
.y1f2{bottom:281.380777px;}
.y233{bottom:281.763261px;}
.y6b{bottom:282.165344px;}
.y10d{bottom:282.294296px;}
.yd9{bottom:283.485294px;}
.ya6{bottom:283.485306px;}
.y173{bottom:283.624947px;}
.y194{bottom:284.565311px;}
.y265{bottom:290.553318px;}
.y34{bottom:290.674049px;}
.y28{bottom:291.211349px;}
.y1a2{bottom:296.246569px;}
.y1f1{bottom:296.374777px;}
.y1b2{bottom:296.428796px;}
.y232{bottom:296.757261px;}
.y13c{bottom:300.033279px;}
.y75{bottom:300.915298px;}
.y6a{bottom:300.915344px;}
.y10c{bottom:301.044296px;}
.yd8{bottom:302.235294px;}
.ya5{bottom:302.235306px;}
.y189{bottom:302.374786px;}
.y172{bottom:302.374947px;}
.y193{bottom:304.659302px;}
.y264{bottom:305.547318px;}
.y27{bottom:309.961349px;}
.y1a1{bottom:311.240569px;}
.y1f0{bottom:311.368777px;}
.y1b1{bottom:311.422796px;}
.y231{bottom:311.751261px;}
.y33{bottom:315.674541px;}
.y13b{bottom:318.783279px;}
.y69{bottom:319.665344px;}
.y10b{bottom:319.794296px;}
.ye8{bottom:320.056804px;}
.y263{bottom:320.541318px;}
.yd7{bottom:320.985294px;}
.ya4{bottom:320.985306px;}
.y188{bottom:321.124786px;}
.y171{bottom:321.124947px;}
.y161{bottom:321.253638px;}
.y1ef{bottom:326.362777px;}
.y1b0{bottom:326.416796px;}
.y230{bottom:326.745261px;}
.y19a{bottom:327.501755px;}
.y26{bottom:328.711349px;}
.y32{bottom:330.668541px;}
.ye7{bottom:335.050804px;}
.y262{bottom:335.535318px;}
.y160{bottom:336.247638px;}
.y13a{bottom:337.533279px;}
.y68{bottom:338.415344px;}
.y10a{bottom:338.544296px;}
.yd6{bottom:339.735294px;}
.ya3{bottom:339.735306px;}
.y187{bottom:339.874786px;}
.y1a0{bottom:341.241319px;}
.y1ee{bottom:341.356777px;}
.y1af{bottom:341.410796px;}
.y22f{bottom:341.739261px;}
.y199{bottom:346.214241px;}
.y25{bottom:347.461349px;}
.y261{bottom:350.529318px;}
.y15f{bottom:351.241638px;}
.y19f{bottom:356.235319px;}
.y139{bottom:356.283279px;}
.y1ed{bottom:356.350777px;}
.y1ae{bottom:356.404796px;}
.y22e{bottom:356.733261px;}
.y67{bottom:357.165344px;}
.y109{bottom:357.294296px;}
.yd5{bottom:358.485294px;}
.ya2{bottom:358.485306px;}
.y186{bottom:358.624786px;}
.y170{bottom:358.624809px;}
.y198{bottom:365.001755px;}
.y260{bottom:365.523318px;}
.y24{bottom:366.211349px;}
.y15e{bottom:366.235638px;}
.y19e{bottom:371.229319px;}
.y1ec{bottom:371.344777px;}
.y1ad{bottom:371.398796px;}
.y22d{bottom:371.727261px;}
.y138{bottom:375.033279px;}
.y66{bottom:375.915344px;}
.y108{bottom:376.044296px;}
.yd4{bottom:377.235294px;}
.ya1{bottom:377.235306px;}
.y185{bottom:377.374786px;}
.y25f{bottom:380.517318px;}
.y15d{bottom:381.229638px;}
.y197{bottom:383.713477px;}
.y22{bottom:384.961349px;}
.y19d{bottom:386.223319px;}
.y1eb{bottom:386.338777px;}
.y1ac{bottom:386.392796px;}
.y22c{bottom:386.721261px;}
.y137{bottom:393.783279px;}
.y65{bottom:394.665344px;}
.y107{bottom:394.794296px;}
.y25e{bottom:395.511318px;}
.yd3{bottom:395.985294px;}
.ya0{bottom:395.985306px;}
.y16f{bottom:396.124786px;}
.y15c{bottom:396.223638px;}
.y19c{bottom:401.217319px;}
.y1ea{bottom:401.332777px;}
.y1ab{bottom:401.386796px;}
.y22b{bottom:401.715261px;}
.y21{bottom:403.711349px;}
.y25d{bottom:410.505318px;}
.y196{bottom:411.801727px;}
.y136{bottom:412.533279px;}
.y64{bottom:413.415344px;}
.y106{bottom:413.544296px;}
.yd2{bottom:414.735294px;}
.y9f{bottom:414.735306px;}
.y16e{bottom:414.874786px;}
.y19b{bottom:416.211319px;}
.y1e9{bottom:416.326777px;}
.y1aa{bottom:416.380796px;}
.y22a{bottom:416.709261px;}
.y20{bottom:422.461349px;}
.y25c{bottom:425.499318px;}
.y135{bottom:431.283279px;}
.y1e8{bottom:431.320777px;}
.y229{bottom:431.703261px;}
.y63{bottom:432.165344px;}
.y105{bottom:432.294296px;}
.yd1{bottom:433.485294px;}
.y9e{bottom:433.485306px;}
.y16d{bottom:433.624786px;}
.y192{bottom:437.310590px;}
.y25b{bottom:440.493318px;}
.y1f{bottom:441.211349px;}
.y1e7{bottom:446.314777px;}
.y228{bottom:446.697261px;}
.y134{bottom:450.033279px;}
.y62{bottom:450.915344px;}
.y104{bottom:451.044296px;}
.yd0{bottom:452.235294px;}
.y9d{bottom:452.235306px;}
.y191{bottom:452.304590px;}
.y16c{bottom:452.374786px;}
.y25a{bottom:455.487318px;}
.y15b{bottom:459.591135px;}
.y1e{bottom:459.961349px;}
.y1e6{bottom:461.308777px;}
.y227{bottom:461.691261px;}
.y1bb{bottom:462.032688px;}
.y133{bottom:468.783279px;}
.y61{bottom:469.665344px;}
.y259{bottom:470.481318px;}
.ycf{bottom:470.985294px;}
.y9c{bottom:470.985306px;}
.y16b{bottom:471.124786px;}
.y1e5{bottom:476.302777px;}
.y226{bottom:476.685261px;}
.y1ba{bottom:477.026688px;}
.y15a{bottom:478.384635px;}
.y1d{bottom:478.711349px;}
.y258{bottom:485.475318px;}
.y132{bottom:487.533279px;}
.y60{bottom:488.415344px;}
.y103{bottom:488.544296px;}
.yce{bottom:489.735294px;}
.y9b{bottom:489.735306px;}
.y16a{bottom:489.874786px;}
.y1e4{bottom:491.296777px;}
.y225{bottom:491.679261px;}
.y1c{bottom:497.461349px;}
.y257{bottom:500.469318px;}
.y131{bottom:506.283279px;}
.y1e3{bottom:506.290777px;}
.y159{bottom:506.472885px;}
.y224{bottom:506.673261px;}
.y5f{bottom:507.165344px;}
.ycd{bottom:508.485294px;}
.y9a{bottom:508.485306px;}
.y169{bottom:508.624786px;}
.y184{bottom:508.624947px;}
.y190{bottom:511.286090px;}
.y256{bottom:515.463318px;}
.y23{bottom:516.211349px;}
.y1e2{bottom:521.284777px;}
.y223{bottom:521.667261px;}
.y130{bottom:525.033279px;}
.y5e{bottom:525.915344px;}
.y102{bottom:526.044296px;}
.y18f{bottom:526.280090px;}
.ycc{bottom:527.235294px;}
.y99{bottom:527.235306px;}
.y168{bottom:527.374786px;}
.y183{bottom:527.374947px;}
.y158{bottom:531.963455px;}
.y1b{bottom:534.961349px;}
.y1e1{bottom:536.278777px;}
.y222{bottom:536.661261px;}
.y12f{bottom:543.783279px;}
.y5d{bottom:544.665344px;}
.y101{bottom:544.794296px;}
.ycb{bottom:545.985294px;}
.y98{bottom:545.985306px;}
.y167{bottom:546.124786px;}
.y182{bottom:546.124947px;}
.y1e0{bottom:551.272777px;}
.y221{bottom:551.655261px;}
.y12e{bottom:562.533279px;}
.y5c{bottom:563.415344px;}
.y100{bottom:563.544296px;}
.yca{bottom:564.735294px;}
.y97{bottom:564.735306px;}
.y166{bottom:564.874786px;}
.y181{bottom:564.874947px;}
.y1df{bottom:566.266777px;}
.y220{bottom:566.649261px;}
.y1de{bottom:581.260777px;}
.y12d{bottom:581.283279px;}
.y21f{bottom:581.643261px;}
.y5b{bottom:582.165344px;}
.yff{bottom:582.294296px;}
.y155{bottom:583.485260px;}
.yc9{bottom:583.485294px;}
.y96{bottom:583.485306px;}
.y165{bottom:583.624786px;}
.y180{bottom:583.624947px;}
.y1a{bottom:591.211395px;}
.y255{bottom:593.289312px;}
.y1dd{bottom:596.254777px;}
.y21e{bottom:596.637261px;}
.y12c{bottom:600.033279px;}
.y5a{bottom:600.915344px;}
.yfe{bottom:601.044296px;}
.y154{bottom:602.235260px;}
.yc8{bottom:602.235294px;}
.y95{bottom:602.235306px;}
.y164{bottom:602.374786px;}
.y17f{bottom:602.374947px;}
.y254{bottom:608.283312px;}
.y1dc{bottom:611.248777px;}
.y21d{bottom:611.631261px;}
.y12b{bottom:618.783325px;}
.y59{bottom:619.665344px;}
.yfd{bottom:619.794296px;}
.y153{bottom:620.985260px;}
.yc7{bottom:620.985294px;}
.y94{bottom:620.985306px;}
.y163{bottom:621.124786px;}
.y17e{bottom:621.124947px;}
.y253{bottom:623.277312px;}
.y1db{bottom:626.242777px;}
.y21c{bottom:626.625261px;}
.y19{bottom:628.711395px;}
.y12a{bottom:637.533325px;}
.y252{bottom:638.271312px;}
.y58{bottom:638.415344px;}
.yfc{bottom:638.544296px;}
.y152{bottom:639.735260px;}
.yc6{bottom:639.735294px;}
.y93{bottom:639.735306px;}
.y162{bottom:639.874786px;}
.y17d{bottom:639.874947px;}
.y1da{bottom:641.236777px;}
.y21b{bottom:641.619261px;}
.y18{bottom:647.461395px;}
.y251{bottom:653.265312px;}
.y1d9{bottom:656.230777px;}
.y129{bottom:656.283325px;}
.y21a{bottom:656.613261px;}
.y57{bottom:657.165344px;}
.y151{bottom:658.485260px;}
.yc5{bottom:658.485294px;}
.y92{bottom:658.485306px;}
.y17{bottom:666.211395px;}
.y250{bottom:668.259312px;}
.y1d8{bottom:671.392823px;}
.y219{bottom:671.607261px;}
.y128{bottom:675.033325px;}
.y56{bottom:675.915344px;}
.yfb{bottom:676.044296px;}
.y150{bottom:677.235260px;}
.yc4{bottom:677.235294px;}
.y91{bottom:677.235306px;}
.y24f{bottom:683.253312px;}
.y16{bottom:684.961395px;}
.y1d7{bottom:686.386823px;}
.y218{bottom:686.601261px;}
.y127{bottom:693.783325px;}
.y55{bottom:694.665344px;}
.y14f{bottom:695.985260px;}
.yc3{bottom:695.985294px;}
.y90{bottom:695.985306px;}
.y24e{bottom:698.247312px;}
.y280{bottom:701.119838px;}
.y1d6{bottom:701.380823px;}
.y217{bottom:701.595261px;}
.y15{bottom:703.711395px;}
.y126{bottom:712.533325px;}
.y24d{bottom:713.241312px;}
.y54{bottom:713.415344px;}
.yfa{bottom:713.544342px;}
.y8f{bottom:714.735260px;}
.yc2{bottom:714.735294px;}
.y157{bottom:714.735306px;}
.y27f{bottom:716.113838px;}
.y1d5{bottom:716.374823px;}
.y216{bottom:716.589261px;}
.y14{bottom:722.461395px;}
.y24c{bottom:728.235312px;}
.y27e{bottom:731.107838px;}
.y125{bottom:731.283325px;}
.y1d4{bottom:731.368823px;}
.y215{bottom:731.583261px;}
.y53{bottom:732.165344px;}
.yf9{bottom:732.294342px;}
.y8e{bottom:733.485260px;}
.yc1{bottom:733.485294px;}
.y13{bottom:741.211395px;}
.y24b{bottom:743.229312px;}
.y27d{bottom:746.101838px;}
.y1d3{bottom:746.362823px;}
.y214{bottom:746.577261px;}
.y124{bottom:750.033325px;}
.y52{bottom:750.915344px;}
.yf8{bottom:751.044342px;}
.y8d{bottom:752.235260px;}
.yc0{bottom:752.235294px;}
.y24a{bottom:758.223312px;}
.y12{bottom:759.961395px;}
.y27c{bottom:761.095838px;}
.y1d2{bottom:761.356823px;}
.y213{bottom:761.571261px;}
.y123{bottom:768.783325px;}
.y51{bottom:769.665344px;}
.yf7{bottom:769.794342px;}
.y8c{bottom:770.985260px;}
.ybf{bottom:770.985294px;}
.y27b{bottom:776.089838px;}
.y1d1{bottom:776.350823px;}
.y212{bottom:776.565261px;}
.y11{bottom:778.711395px;}
.y122{bottom:787.533325px;}
.y50{bottom:788.415344px;}
.yf6{bottom:788.544342px;}
.y8b{bottom:789.735260px;}
.ybe{bottom:789.735294px;}
.y27a{bottom:791.083838px;}
.y1d0{bottom:791.344823px;}
.y211{bottom:791.559261px;}
.y10{bottom:797.461395px;}
.y279{bottom:806.077838px;}
.y121{bottom:806.283325px;}
.y1cf{bottom:806.338823px;}
.y210{bottom:806.553261px;}
.y4f{bottom:807.165344px;}
.y8a{bottom:808.485260px;}
.ybd{bottom:808.485294px;}
.yf{bottom:816.211395px;}
.y278{bottom:821.071838px;}
.y1ce{bottom:821.332823px;}
.y20f{bottom:821.547261px;}
.y120{bottom:825.033325px;}
.y4e{bottom:825.915344px;}
.yf5{bottom:826.044342px;}
.y89{bottom:827.235260px;}
.ybc{bottom:827.235294px;}
.ye{bottom:834.961395px;}
.y249{bottom:836.049307px;}
.y1cd{bottom:836.326823px;}
.y20e{bottom:836.541261px;}
.y11f{bottom:843.783325px;}
.y4d{bottom:844.665344px;}
.y156{bottom:845.985260px;}
.ybb{bottom:845.985294px;}
.y248{bottom:851.043307px;}
.y277{bottom:851.167838px;}
.y1cc{bottom:851.320823px;}
.y20d{bottom:851.535261px;}
.y11e{bottom:862.533325px;}
.y4c{bottom:863.415344px;}
.yf4{bottom:863.544342px;}
.y88{bottom:864.735260px;}
.yba{bottom:864.735294px;}
.y247{bottom:866.037307px;}
.y276{bottom:866.161838px;}
.y1cb{bottom:866.314823px;}
.y20c{bottom:866.529261px;}
.y14b{bottom:868.513782px;}
.yd{bottom:879.144153px;}
.y246{bottom:881.031307px;}
.y275{bottom:881.155838px;}
.y11d{bottom:881.283325px;}
.y1ca{bottom:881.308823px;}
.y20b{bottom:881.523261px;}
.y4b{bottom:882.165344px;}
.yf3{bottom:882.294342px;}
.yb9{bottom:883.485294px;}
.y14a{bottom:883.507782px;}
.yc{bottom:894.138153px;}
.y245{bottom:896.025307px;}
.y274{bottom:896.149838px;}
.y1c9{bottom:896.302823px;}
.y20a{bottom:896.517261px;}
.y11c{bottom:900.033325px;}
.y4a{bottom:900.915344px;}
.yf2{bottom:901.044342px;}
.y87{bottom:902.235260px;}
.yb8{bottom:902.235294px;}
.y244{bottom:911.019307px;}
.y273{bottom:911.143838px;}
.y1c8{bottom:911.296823px;}
.y209{bottom:911.511261px;}
.y11b{bottom:918.783325px;}
.y49{bottom:919.665344px;}
.yf1{bottom:919.794342px;}
.y86{bottom:920.985260px;}
.yb7{bottom:920.985294px;}
.y243{bottom:926.013307px;}
.y272{bottom:926.137838px;}
.y1c7{bottom:926.290823px;}
.y208{bottom:926.505261px;}
.yb{bottom:936.738190px;}
.y11a{bottom:937.533325px;}
.y48{bottom:938.415344px;}
.yf0{bottom:938.544342px;}
.y85{bottom:939.735260px;}
.yb6{bottom:939.735294px;}
.y242{bottom:941.007307px;}
.y271{bottom:941.131838px;}
.y1c6{bottom:941.284823px;}
.y207{bottom:941.499261px;}
.y241{bottom:956.001307px;}
.y270{bottom:956.125838px;}
.y1c5{bottom:956.278823px;}
.y119{bottom:956.283325px;}
.y206{bottom:956.493261px;}
.y47{bottom:957.165344px;}
.yef{bottom:957.294342px;}
.y84{bottom:958.485260px;}
.yb5{bottom:958.485294px;}
.y240{bottom:970.995307px;}
.y26f{bottom:971.119838px;}
.y1c4{bottom:971.272823px;}
.y205{bottom:971.487261px;}
.y118{bottom:975.033325px;}
.y46{bottom:975.915344px;}
.yee{bottom:976.044342px;}
.y83{bottom:977.235260px;}
.yb4{bottom:977.235294px;}
.ya{bottom:981.424622px;}
.y23f{bottom:985.989307px;}
.y26e{bottom:986.113838px;}
.y1c3{bottom:986.266823px;}
.y204{bottom:986.481261px;}
.y117{bottom:993.783325px;}
.y45{bottom:994.665344px;}
.yed{bottom:994.794342px;}
.y82{bottom:995.985260px;}
.yb3{bottom:995.985294px;}
.y23e{bottom:1000.983307px;}
.y26d{bottom:1001.107838px;}
.y1c2{bottom:1001.260823px;}
.y203{bottom:1001.475261px;}
.y9{bottom:1008.424622px;}
.y116{bottom:1012.533325px;}
.y44{bottom:1013.415344px;}
.yec{bottom:1013.544342px;}
.y14e{bottom:1014.735260px;}
.yb2{bottom:1014.735294px;}
.y26c{bottom:1016.101838px;}
.y1c1{bottom:1016.254823px;}
.y202{bottom:1016.469261px;}
.y18e{bottom:1030.126844px;}
.y26b{bottom:1031.095838px;}
.y1c0{bottom:1031.248823px;}
.y201{bottom:1031.463261px;}
.y43{bottom:1032.165344px;}
.yeb{bottom:1032.294342px;}
.y81{bottom:1033.485260px;}
.yb1{bottom:1033.485294px;}
.y18d{bottom:1045.120844px;}
.y26a{bottom:1046.089838px;}
.y1bf{bottom:1046.242823px;}
.y200{bottom:1046.457261px;}
.y115{bottom:1050.033325px;}
.y42{bottom:1050.915344px;}
.y14d{bottom:1052.235260px;}
.yb0{bottom:1052.235294px;}
.y18c{bottom:1060.114844px;}
.y269{bottom:1061.083838px;}
.y1be{bottom:1061.236823px;}
.y1ff{bottom:1061.451261px;}
.y41{bottom:1069.665344px;}
.yea{bottom:1069.800342px;}
.y80{bottom:1070.985260px;}
.yaf{bottom:1070.985294px;}
.y18b{bottom:1075.108844px;}
.y23d{bottom:1076.077838px;}
.y6{bottom:1076.132080px;}
.y1bd{bottom:1076.230823px;}
.y1fe{bottom:1076.445261px;}
.y114{bottom:1087.533325px;}
.y40{bottom:1088.415344px;}
.ye9{bottom:1088.544342px;}
.y7f{bottom:1089.735260px;}
.yae{bottom:1089.735294px;}
.y18a{bottom:1090.102844px;}
.y23c{bottom:1091.071838px;}
.y1bc{bottom:1091.224823px;}
.y1fd{bottom:1091.439261px;}
.y3{bottom:1109.586556px;}
.y8{bottom:1109.707014px;}
.y2{bottom:1126.582306px;}
.y7{bottom:1126.957764px;}
.y3f{bottom:1127.482361px;}
.y7e{bottom:1127.482544px;}
.h4{height:18.599999px;}
.h2{height:33.840000px;}
.hd{height:34.307699px;}
.h3{height:44.676000px;}
.hc{height:49.011000px;}
.h17{height:52.173000px;}
.h12{height:53.160000px;}
.h15{height:54.707662px;}
.h14{height:54.710809px;}
.h5{height:54.862258px;}
.h16{height:55.007772px;}
.h6{height:55.461000px;}
.ha{height:57.660000px;}
.he{height:59.004000px;}
.h9{height:59.340000px;}
.h11{height:64.361817px;}
.h10{height:64.362000px;}
.hf{height:64.362183px;}
.h13{height:64.362641px;}
.h8{height:64.866000px;}
.hb{height:71.208000px;}
.h7{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:126.673496px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.161088px;}
.xa{left:75.472498px;}
.x2{left:76.535402px;}
.x10{left:81.029250px;}
.x5{left:85.181849px;}
.xb{left:93.545402px;}
.x9{left:97.796100px;}
.x13{left:102.048152px;}
.xe{left:105.971402px;}
.x11{left:143.613750px;}
.x14{left:267.440254px;}
.x8{left:459.215389px;}
.xc{left:476.225402px;}
.x12{left:484.725290px;}
.xf{left:488.648540px;}
.x15{left:650.494629px;}
.x3{left:689.832000px;}
.x6{left:704.336380px;}
.x7{left:713.541880px;}
.x1{left:728.220612px;}
.xd{left:792.153442px;}
@media print{
.v3{vertical-align:-18.133301pt;}
.v2{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.136098pt;}
.v1{vertical-align:21.333333pt;}
.ls99{letter-spacing:-0.861333pt;}
.ls97{letter-spacing:-0.725333pt;}
.ls98{letter-spacing:-0.680000pt;}
.ls95{letter-spacing:-0.634667pt;}
.ls96{letter-spacing:-0.544000pt;}
.ls94{letter-spacing:-0.453333pt;}
.ls44{letter-spacing:-0.426667pt;}
.ls31{letter-spacing:-0.373333pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls5f{letter-spacing:-0.317333pt;}
.ls80{letter-spacing:-0.272000pt;}
.ls32{letter-spacing:-0.266667pt;}
.ls83{letter-spacing:-0.226667pt;}
.ls1d{letter-spacing:-0.213333pt;}
.ls60{letter-spacing:-0.181333pt;}
.ls1f{letter-spacing:-0.160000pt;}
.ls82{letter-spacing:-0.136000pt;}
.ls30{letter-spacing:-0.106667pt;}
.ls61{letter-spacing:-0.090667pt;}
.ls1e{letter-spacing:-0.053333pt;}
.ls81{letter-spacing:-0.045333pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.045333pt;}
.ls27{letter-spacing:0.053333pt;}
.ls71{letter-spacing:0.068000pt;}
.ls2c{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.089844pt;}
.lsa{letter-spacing:0.090169pt;}
.ls5a{letter-spacing:0.090667pt;}
.ls9{letter-spacing:0.106667pt;}
.ls52{letter-spacing:0.136000pt;}
.ls1a{letter-spacing:0.158926pt;}
.ls3{letter-spacing:0.160000pt;}
.ls53{letter-spacing:0.181333pt;}
.ls34{letter-spacing:0.186667pt;}
.ls92{letter-spacing:0.204000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.226667pt;}
.ls56{letter-spacing:0.234667pt;}
.ls4a{letter-spacing:0.240000pt;}
.ls7d{letter-spacing:0.249333pt;}
.ls5b{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls4b{letter-spacing:0.271975pt;}
.ls73{letter-spacing:0.272000pt;}
.ls7e{letter-spacing:0.294658pt;}
.ls68{letter-spacing:0.294667pt;}
.ls58{letter-spacing:0.317333pt;}
.ls37{letter-spacing:0.319982pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.325333pt;}
.ls25{letter-spacing:0.346667pt;}
.ls54{letter-spacing:0.362667pt;}
.ls15{letter-spacing:0.373333pt;}
.ls36{letter-spacing:0.387777pt;}
.ls59{letter-spacing:0.408000pt;}
.ls6f{letter-spacing:0.412533pt;}
.ls29{letter-spacing:0.426667pt;}
.ls12{letter-spacing:0.453333pt;}
.ls22{letter-spacing:0.480000pt;}
.ls5d{letter-spacing:0.498667pt;}
.ls48{letter-spacing:0.506667pt;}
.lsf{letter-spacing:0.517333pt;}
.ls2d{letter-spacing:0.533333pt;}
.ls66{letter-spacing:0.544000pt;}
.lsc{letter-spacing:0.546224pt;}
.lse{letter-spacing:0.546712pt;}
.ls88{letter-spacing:0.566667pt;}
.ls5{letter-spacing:0.586667pt;}
.ls70{letter-spacing:0.589333pt;}
.ls28{letter-spacing:0.602657pt;}
.ls2f{letter-spacing:0.613333pt;}
.ls5e{letter-spacing:0.634667pt;}
.ls24{letter-spacing:0.640000pt;}
.ls62{letter-spacing:0.657333pt;}
.ls26{letter-spacing:0.666667pt;}
.ls63{letter-spacing:0.680000pt;}
.ls16{letter-spacing:0.693333pt;}
.ls47{letter-spacing:0.693685pt;}
.ls6c{letter-spacing:0.725333pt;}
.ls11{letter-spacing:0.746667pt;}
.ls23{letter-spacing:0.757333pt;}
.ls64{letter-spacing:0.770667pt;}
.ls3a{letter-spacing:0.773333pt;}
.lsd{letter-spacing:0.779714pt;}
.ls6d{letter-spacing:0.793333pt;}
.ls4e{letter-spacing:0.797867pt;}
.ls6{letter-spacing:0.800000pt;}
.ls72{letter-spacing:0.816000pt;}
.ls38{letter-spacing:0.826667pt;}
.ls18{letter-spacing:0.831992pt;}
.ls17{letter-spacing:0.848000pt;}
.ls4{letter-spacing:0.853333pt;}
.ls5c{letter-spacing:0.861333pt;}
.ls14{letter-spacing:0.880000pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls67{letter-spacing:0.952000pt;}
.ls13{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.013333pt;}
.ls43{letter-spacing:1.040000pt;}
.ls65{letter-spacing:1.042667pt;}
.ls21{letter-spacing:1.066667pt;}
.ls91{letter-spacing:1.088000pt;}
.ls10{letter-spacing:1.120000pt;}
.ls40{letter-spacing:1.173333pt;}
.ls85{letter-spacing:1.178667pt;}
.ls6e{letter-spacing:1.224000pt;}
.ls49{letter-spacing:1.226667pt;}
.ls8d{letter-spacing:1.246667pt;}
.ls7c{letter-spacing:1.269333pt;}
.ls20{letter-spacing:1.280000pt;}
.ls4d{letter-spacing:1.290667pt;}
.ls3b{letter-spacing:1.306667pt;}
.ls55{letter-spacing:1.314667pt;}
.ls2a{letter-spacing:1.333333pt;}
.ls6a{letter-spacing:1.360000pt;}
.ls3c{letter-spacing:1.386667pt;}
.ls69{letter-spacing:1.405333pt;}
.ls3d{letter-spacing:1.440000pt;}
.ls3f{letter-spacing:1.493333pt;}
.ls7b{letter-spacing:1.496000pt;}
.ls2e{letter-spacing:1.520000pt;}
.ls7f{letter-spacing:1.541333pt;}
.ls35{letter-spacing:1.546667pt;}
.ls4c{letter-spacing:1.573333pt;}
.ls79{letter-spacing:1.586667pt;}
.ls41{letter-spacing:1.600000pt;}
.ls78{letter-spacing:1.632000pt;}
.ls84{letter-spacing:1.677333pt;}
.ls3e{letter-spacing:1.706667pt;}
.ls75{letter-spacing:1.722667pt;}
.ls45{letter-spacing:1.760000pt;}
.ls8f{letter-spacing:1.768000pt;}
.ls42{letter-spacing:1.813333pt;}
.ls77{letter-spacing:1.949333pt;}
.ls76{letter-spacing:1.994667pt;}
.ls39{letter-spacing:2.080000pt;}
.ls8a{letter-spacing:2.085333pt;}
.ls90{letter-spacing:2.221333pt;}
.ls8b{letter-spacing:2.312000pt;}
.ls86{letter-spacing:2.493333pt;}
.ls87{letter-spacing:2.629333pt;}
.ls8c{letter-spacing:2.765333pt;}
.ls8e{letter-spacing:3.082667pt;}
.ls46{letter-spacing:3.360000pt;}
.ls0{letter-spacing:3.546667pt;}
.ls6b{letter-spacing:3.830635pt;}
.ls89{letter-spacing:3.944000pt;}
.ls74{letter-spacing:4.515194pt;}
.ls7a{letter-spacing:4.936800pt;}
.ls93{letter-spacing:5.168000pt;}
.ls51{letter-spacing:123.396273pt;}
.ls50{letter-spacing:125.173340pt;}
.ls4f{letter-spacing:125.173910pt;}
.ws4a{word-spacing:-53.333333pt;}
.ws6e{word-spacing:-45.333333pt;}
.ws72{word-spacing:-14.773333pt;}
.ws5e{word-spacing:-14.613333pt;}
.ws71{word-spacing:-14.506667pt;}
.ws6{word-spacing:-14.133333pt;}
.ws6d{word-spacing:-14.026667pt;}
.ws6c{word-spacing:-13.920000pt;}
.ws5c{word-spacing:-13.600000pt;}
.ws6b{word-spacing:-13.333333pt;}
.ws8a{word-spacing:-13.184000pt;}
.ws46{word-spacing:-12.928000pt;}
.wsc2{word-spacing:-12.693333pt;}
.wsa2{word-spacing:-12.194667pt;}
.wsa1{word-spacing:-11.877333pt;}
.ws9d{word-spacing:-11.560000pt;}
.ws89{word-spacing:-11.424000pt;}
.ws80{word-spacing:-11.333333pt;}
.wsa0{word-spacing:-11.197333pt;}
.ws47{word-spacing:-11.088000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws5{word-spacing:-10.240000pt;}
.ws49{word-spacing:-9.520000pt;}
.ws5d{word-spacing:-9.333333pt;}
.ws88{word-spacing:-9.157333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws87{word-spacing:-8.840000pt;}
.ws7{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws7b{word-spacing:-5.666667pt;}
.wse5{word-spacing:-2.448000pt;}
.wsc1{word-spacing:-1.994667pt;}
.wsc4{word-spacing:-1.949333pt;}
.wsdf{word-spacing:-1.677333pt;}
.wsd8{word-spacing:-1.496000pt;}
.wscd{word-spacing:-1.405333pt;}
.ws4d{word-spacing:-1.386667pt;}
.wsae{word-spacing:-1.360000pt;}
.wsb{word-spacing:-1.333333pt;}
.wsd{word-spacing:-1.280000pt;}
.wsde{word-spacing:-1.269333pt;}
.ws65{word-spacing:-1.226667pt;}
.wsc7{word-spacing:-1.178667pt;}
.ws7a{word-spacing:-1.173333pt;}
.ws8b{word-spacing:-1.133333pt;}
.ws41{word-spacing:-1.120000pt;}
.wscc{word-spacing:-1.088000pt;}
.ws7d{word-spacing:-1.066667pt;}
.ws5a{word-spacing:-1.013333pt;}
.wsb1{word-spacing:-0.997333pt;}
.ws2c{word-spacing:-0.960000pt;}
.ws95{word-spacing:-0.952000pt;}
.ws26{word-spacing:-0.906667pt;}
.ws93{word-spacing:-0.861333pt;}
.ws38{word-spacing:-0.853333pt;}
.wsb5{word-spacing:-0.816000pt;}
.ws14{word-spacing:-0.800000pt;}
.wsc8{word-spacing:-0.770667pt;}
.ws25{word-spacing:-0.746667pt;}
.wsa4{word-spacing:-0.725333pt;}
.ws96{word-spacing:-0.680000pt;}
.ws12{word-spacing:-0.640000pt;}
.ws97{word-spacing:-0.634667pt;}
.ws10{word-spacing:-0.586667pt;}
.ws24{word-spacing:-0.544000pt;}
.ws1a{word-spacing:-0.533333pt;}
.ws9{word-spacing:-0.506667pt;}
.wsf{word-spacing:-0.480000pt;}
.ws8f{word-spacing:-0.453333pt;}
.ws36{word-spacing:-0.426667pt;}
.wsb2{word-spacing:-0.408000pt;}
.ws58{word-spacing:-0.373333pt;}
.ws52{word-spacing:-0.320000pt;}
.ws35{word-spacing:-0.266667pt;}
.ws90{word-spacing:-0.234667pt;}
.ws9a{word-spacing:-0.226667pt;}
.ws42{word-spacing:-0.213333pt;}
.ws7c{word-spacing:-0.160000pt;}
.ws3d{word-spacing:-0.106667pt;}
.ws9b{word-spacing:-0.090667pt;}
.ws30{word-spacing:-0.053333pt;}
.ws9e{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws9f{word-spacing:-0.031733pt;}
.ws8{word-spacing:0.000000pt;}
.wsba{word-spacing:0.045333pt;}
.ws67{word-spacing:0.053333pt;}
.wsac{word-spacing:0.090667pt;}
.ws51{word-spacing:0.106667pt;}
.ws4c{word-spacing:0.160000pt;}
.ws11{word-spacing:0.213333pt;}
.ws91{word-spacing:0.226667pt;}
.ws92{word-spacing:0.317333pt;}
.wsa{word-spacing:0.320000pt;}
.ws55{word-spacing:0.373333pt;}
.wsa9{word-spacing:0.408000pt;}
.ws60{word-spacing:0.426667pt;}
.wsb7{word-spacing:0.453333pt;}
.ws2e{word-spacing:0.480000pt;}
.wsa7{word-spacing:0.498667pt;}
.wse{word-spacing:0.533333pt;}
.wsb0{word-spacing:0.544000pt;}
.ws68{word-spacing:0.586667pt;}
.wscf{word-spacing:0.589333pt;}
.ws17{word-spacing:0.640000pt;}
.ws84{word-spacing:0.680000pt;}
.ws69{word-spacing:0.693333pt;}
.ws40{word-spacing:0.746667pt;}
.ws70{word-spacing:0.770667pt;}
.ws39{word-spacing:0.800000pt;}
.ws85{word-spacing:0.816000pt;}
.wsb3{word-spacing:0.861333pt;}
.ws1e{word-spacing:0.906667pt;}
.ws57{word-spacing:0.960000pt;}
.ws1f{word-spacing:1.013333pt;}
.ws94{word-spacing:1.042667pt;}
.ws53{word-spacing:1.066667pt;}
.ws18{word-spacing:1.120000pt;}
.ws8c{word-spacing:1.133333pt;}
.wsc0{word-spacing:1.178667pt;}
.wsb4{word-spacing:1.224000pt;}
.ws62{word-spacing:1.226667pt;}
.ws7e{word-spacing:1.280000pt;}
.wsb8{word-spacing:1.314667pt;}
.wsc{word-spacing:1.333333pt;}
.ws8e{word-spacing:1.360000pt;}
.ws45{word-spacing:1.386667pt;}
.wse9{word-spacing:1.405333pt;}
.ws20{word-spacing:1.440000pt;}
.wsa8{word-spacing:1.450667pt;}
.wsb6{word-spacing:1.496000pt;}
.wsa3{word-spacing:1.541333pt;}
.ws4e{word-spacing:1.546667pt;}
.wsd3{word-spacing:1.586667pt;}
.ws37{word-spacing:1.600000pt;}
.wsb9{word-spacing:1.632000pt;}
.wsbd{word-spacing:1.677333pt;}
.ws27{word-spacing:1.706667pt;}
.wsa5{word-spacing:1.722667pt;}
.ws34{word-spacing:1.760000pt;}
.wse1{word-spacing:1.768000pt;}
.ws1b{word-spacing:1.813333pt;}
.wse3{word-spacing:1.858667pt;}
.ws19{word-spacing:1.866667pt;}
.ws4b{word-spacing:1.920000pt;}
.ws16{word-spacing:1.973333pt;}
.wsaf{word-spacing:1.994667pt;}
.ws3e{word-spacing:2.026667pt;}
.ws2a{word-spacing:2.080000pt;}
.wsbb{word-spacing:2.085333pt;}
.ws2d{word-spacing:2.133333pt;}
.wsa6{word-spacing:2.176000pt;}
.ws3c{word-spacing:2.186667pt;}
.wsad{word-spacing:2.221333pt;}
.ws2f{word-spacing:2.240000pt;}
.ws21{word-spacing:2.293333pt;}
.wsc6{word-spacing:2.312000pt;}
.ws1d{word-spacing:2.346667pt;}
.ws15{word-spacing:2.400000pt;}
.wsbc{word-spacing:2.402667pt;}
.wsc3{word-spacing:2.493333pt;}
.ws4f{word-spacing:2.506667pt;}
.ws32{word-spacing:2.560000pt;}
.ws98{word-spacing:2.584000pt;}
.wsc5{word-spacing:2.629333pt;}
.ws33{word-spacing:2.666667pt;}
.ws66{word-spacing:2.720000pt;}
.ws6f{word-spacing:2.773333pt;}
.wsc9{word-spacing:2.810667pt;}
.ws1c{word-spacing:2.826667pt;}
.ws56{word-spacing:2.880000pt;}
.wsab{word-spacing:2.901333pt;}
.ws3a{word-spacing:2.933333pt;}
.ws99{word-spacing:2.946667pt;}
.ws5f{word-spacing:2.986667pt;}
.ws22{word-spacing:3.040000pt;}
.wsaa{word-spacing:3.082667pt;}
.ws44{word-spacing:3.093333pt;}
.wsbf{word-spacing:3.128000pt;}
.ws76{word-spacing:3.146667pt;}
.ws48{word-spacing:3.200000pt;}
.ws2b{word-spacing:3.306667pt;}
.ws43{word-spacing:3.413333pt;}
.ws29{word-spacing:3.466667pt;}
.ws83{word-spacing:3.490667pt;}
.wse8{word-spacing:3.581333pt;}
.ws77{word-spacing:3.626667pt;}
.ws63{word-spacing:3.840000pt;}
.ws7f{word-spacing:4.106667pt;}
.ws64{word-spacing:4.213333pt;}
.wsd0{word-spacing:4.261333pt;}
.ws28{word-spacing:4.266667pt;}
.ws6a{word-spacing:4.373333pt;}
.ws5b{word-spacing:4.397333pt;}
.ws50{word-spacing:4.426667pt;}
.ws61{word-spacing:4.480000pt;}
.ws31{word-spacing:4.533333pt;}
.ws54{word-spacing:4.693333pt;}
.ws3f{word-spacing:4.746667pt;}
.ws8d{word-spacing:4.805333pt;}
.wse2{word-spacing:4.896000pt;}
.wsbe{word-spacing:5.168000pt;}
.ws79{word-spacing:5.173333pt;}
.ws3b{word-spacing:5.600000pt;}
.ws78{word-spacing:5.866667pt;}
.wsd5{word-spacing:5.893333pt;}
.wse4{word-spacing:6.120000pt;}
.wsce{word-spacing:6.709333pt;}
.wse6{word-spacing:6.754667pt;}
.ws9c{word-spacing:6.845333pt;}
.ws86{word-spacing:6.936000pt;}
.wsdc{word-spacing:7.162667pt;}
.wsd2{word-spacing:8.250667pt;}
.wse7{word-spacing:8.386667pt;}
.wsd7{word-spacing:8.704000pt;}
.wsdd{word-spacing:9.520000pt;}
.wsd9{word-spacing:9.882667pt;}
.wsd1{word-spacing:10.834667pt;}
.ws59{word-spacing:11.146667pt;}
.wsd4{word-spacing:11.514667pt;}
.wsca{word-spacing:12.013333pt;}
.wsda{word-spacing:12.058667pt;}
.wsdb{word-spacing:13.600000pt;}
.wscb{word-spacing:15.640000pt;}
.wsd6{word-spacing:18.042667pt;}
.ws13{word-spacing:19.072000pt;}
.wse0{word-spacing:24.026667pt;}
.ws23{word-spacing:64.237333pt;}
.ws81{word-spacing:87.085333pt;}
.ws75{word-spacing:90.303991pt;}
.ws74{word-spacing:208.306658pt;}
.ws82{word-spacing:222.314659pt;}
.ws73{word-spacing:269.325321pt;}
._10{margin-left:-2630.557284pt;}
._a{margin-left:-86.133333pt;}
._28{margin-left:-15.776000pt;}
._7{margin-left:-14.733333pt;}
._15{margin-left:-13.568000pt;}
._6{margin-left:-11.733333pt;}
._17{margin-left:-10.762667pt;}
._14{margin-left:-8.501333pt;}
._13{margin-left:-7.445333pt;}
._18{margin-left:-5.546667pt;}
._2{margin-left:-3.894133pt;}
._4{margin-left:-2.725333pt;}
._0{margin-left:-1.450667pt;}
._1{width:0.997333pt;}
._5{width:1.957333pt;}
._f{width:2.938667pt;}
._19{width:3.946667pt;}
._23{width:4.986667pt;}
._25{width:6.845333pt;}
._11{width:10.772800pt;}
._d{width:12.281600pt;}
._16{width:13.872000pt;}
._8{width:16.320000pt;}
._12{width:18.245333pt;}
._27{width:20.397333pt;}
._24{width:21.896000pt;}
._26{width:23.120000pt;}
._1a{width:26.661333pt;}
._e{width:29.333333pt;}
._c{width:32.000000pt;}
._3{width:35.544870pt;}
._9{width:48.552000pt;}
._1f{width:97.466667pt;}
._1d{width:100.957333pt;}
._22{width:105.309325pt;}
._1e{width:123.533326pt;}
._21{width:234.010659pt;}
._20{width:286.733325pt;}
._1c{width:292.082667pt;}
._1b{width:294.440000pt;}
._b{width:785.263984pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.198801pt;}
.y4{bottom:57.261332pt;}
.y1{bottom:61.181335pt;}
.y3e{bottom:100.394933pt;}
.y7d{bottom:100.813599pt;}
.y74{bottom:100.813639pt;}
.ye6{bottom:101.052266pt;}
.y149{bottom:101.834941pt;}
.yad{bottom:101.986928pt;}
.y17c{bottom:102.111064pt;}
.y31{bottom:108.854533pt;}
.y1a9{bottom:113.314263pt;}
.y3d{bottom:113.722933pt;}
.y143{bottom:116.696269pt;}
.y1b9{bottom:116.794937pt;}
.y1fc{bottom:116.836246pt;}
.y7c{bottom:117.480265pt;}
.y73{bottom:117.480306pt;}
.y113{bottom:117.594930pt;}
.ye5{bottom:117.718933pt;}
.y148{bottom:118.501607pt;}
.yac{bottom:118.653595pt;}
.y17b{bottom:118.777730pt;}
.y30{bottom:125.521200pt;}
.y1a8{bottom:126.642263pt;}
.y1b8{bottom:130.122937pt;}
.y1fb{bottom:130.164246pt;}
.y3c{bottom:131.584269pt;}
.y142{bottom:133.362935pt;}
.y7b{bottom:134.146932pt;}
.y72{bottom:134.146973pt;}
.y112{bottom:134.261597pt;}
.ye4{bottom:134.385600pt;}
.y147{bottom:135.168274pt;}
.yab{bottom:135.320262pt;}
.y17a{bottom:135.444397pt;}
.y1a7{bottom:139.970263pt;}
.y2f{bottom:142.187866pt;}
.y1b7{bottom:143.450937pt;}
.y1fa{bottom:143.492246pt;}
.y23b{bottom:143.832232pt;}
.y3b{bottom:147.098270pt;}
.y141{bottom:150.029602pt;}
.y7a{bottom:150.813599pt;}
.y71{bottom:150.813639pt;}
.y111{bottom:150.928263pt;}
.ye3{bottom:151.052266pt;}
.y146{bottom:151.834941pt;}
.yde{bottom:151.986928pt;}
.y179{bottom:152.111064pt;}
.y1b6{bottom:156.778937pt;}
.y1f9{bottom:156.820246pt;}
.y23a{bottom:157.160232pt;}
.y2e{bottom:158.854533pt;}
.y3a{bottom:164.959605pt;}
.y1a6{bottom:166.637597pt;}
.y79{bottom:167.480265pt;}
.y70{bottom:167.480306pt;}
.y110{bottom:167.594930pt;}
.ye2{bottom:167.718933pt;}
.y145{bottom:168.501607pt;}
.yaa{bottom:168.653595pt;}
.y178{bottom:168.777730pt;}
.y1b5{bottom:170.106937pt;}
.y1f8{bottom:170.148246pt;}
.y239{bottom:170.488232pt;}
.y2d{bottom:175.521200pt;}
.y1a5{bottom:179.965597pt;}
.y39{bottom:180.478928pt;}
.y140{bottom:183.368269pt;}
.y1b4{bottom:183.434937pt;}
.y1f7{bottom:183.476246pt;}
.y238{bottom:183.816232pt;}
.y78{bottom:184.146932pt;}
.y6f{bottom:184.146973pt;}
.y10f{bottom:184.261597pt;}
.ye1{bottom:184.385600pt;}
.y144{bottom:185.168274pt;}
.ydd{bottom:185.320262pt;}
.y177{bottom:185.444397pt;}
.y2c{bottom:192.187866pt;}
.y38{bottom:193.806928pt;}
.y1f6{bottom:196.804246pt;}
.y237{bottom:197.144232pt;}
.y13f{bottom:200.029602pt;}
.y77{bottom:200.813599pt;}
.y6e{bottom:200.813639pt;}
.ye0{bottom:201.052266pt;}
.ydc{bottom:201.986928pt;}
.ya9{bottom:201.986938pt;}
.y176{bottom:202.111064pt;}
.y1a4{bottom:206.632263pt;}
.y2b{bottom:208.854533pt;}
.y1f5{bottom:210.132246pt;}
.y236{bottom:210.472232pt;}
.y37{bottom:211.668274pt;}
.y1b3{bottom:213.434937pt;}
.y6d{bottom:217.480306pt;}
.y10e{bottom:217.594930pt;}
.y268{bottom:218.285616pt;}
.ydb{bottom:218.653595pt;}
.ya8{bottom:218.653605pt;}
.y175{bottom:218.777730pt;}
.y1f4{bottom:223.460246pt;}
.y235{bottom:223.800232pt;}
.y2a{bottom:225.521200pt;}
.y36{bottom:227.187608pt;}
.y267{bottom:231.613616pt;}
.y13e{bottom:233.362915pt;}
.y76{bottom:234.146932pt;}
.y6c{bottom:234.146973pt;}
.ydf{bottom:234.385600pt;}
.y14c{bottom:234.453735pt;}
.yda{bottom:235.320262pt;}
.ya7{bottom:235.320272pt;}
.y174{bottom:235.444397pt;}
.y1a3{bottom:236.662950pt;}
.y1f3{bottom:236.788246pt;}
.y234{bottom:237.128232pt;}
.y195{bottom:239.618943pt;}
.y35{bottom:240.515608pt;}
.y29{bottom:242.187866pt;}
.y266{bottom:244.941616pt;}
.y13d{bottom:250.029582pt;}
.y1f2{bottom:250.116246pt;}
.y233{bottom:250.456232pt;}
.y6b{bottom:250.813639pt;}
.y10d{bottom:250.928263pt;}
.yd9{bottom:251.986928pt;}
.ya6{bottom:251.986938pt;}
.y173{bottom:252.111064pt;}
.y194{bottom:252.946943pt;}
.y265{bottom:258.269616pt;}
.y34{bottom:258.376933pt;}
.y28{bottom:258.854533pt;}
.y1a2{bottom:263.330284pt;}
.y1f1{bottom:263.444246pt;}
.y1b2{bottom:263.492263pt;}
.y232{bottom:263.784232pt;}
.y13c{bottom:266.696248pt;}
.y75{bottom:267.480265pt;}
.y6a{bottom:267.480306pt;}
.y10c{bottom:267.594930pt;}
.yd8{bottom:268.653595pt;}
.ya5{bottom:268.653605pt;}
.y189{bottom:268.777588pt;}
.y172{bottom:268.777730pt;}
.y193{bottom:270.808268pt;}
.y264{bottom:271.597616pt;}
.y27{bottom:275.521200pt;}
.y1a1{bottom:276.658284pt;}
.y1f0{bottom:276.772246pt;}
.y1b1{bottom:276.820263pt;}
.y231{bottom:277.112232pt;}
.y33{bottom:280.599592pt;}
.y13b{bottom:283.362915pt;}
.y69{bottom:284.146973pt;}
.y10b{bottom:284.261597pt;}
.ye8{bottom:284.494937pt;}
.y263{bottom:284.925616pt;}
.yd7{bottom:285.320262pt;}
.ya4{bottom:285.320272pt;}
.y188{bottom:285.444255pt;}
.y171{bottom:285.444397pt;}
.y161{bottom:285.558789pt;}
.y1ef{bottom:290.100246pt;}
.y1b0{bottom:290.148263pt;}
.y230{bottom:290.440232pt;}
.y19a{bottom:291.112671pt;}
.y26{bottom:292.187866pt;}
.y32{bottom:293.927592pt;}
.ye7{bottom:297.822937pt;}
.y262{bottom:298.253616pt;}
.y160{bottom:298.886789pt;}
.y13a{bottom:300.029582pt;}
.y68{bottom:300.813639pt;}
.y10a{bottom:300.928263pt;}
.yd6{bottom:301.986928pt;}
.ya3{bottom:301.986938pt;}
.y187{bottom:302.110921pt;}
.y1a0{bottom:303.325617pt;}
.y1ee{bottom:303.428246pt;}
.y1af{bottom:303.476263pt;}
.y22f{bottom:303.768232pt;}
.y199{bottom:307.745992pt;}
.y25{bottom:308.854533pt;}
.y261{bottom:311.581616pt;}
.y15f{bottom:312.214789pt;}
.y19f{bottom:316.653617pt;}
.y139{bottom:316.696248pt;}
.y1ed{bottom:316.756246pt;}
.y1ae{bottom:316.804263pt;}
.y22e{bottom:317.096232pt;}
.y67{bottom:317.480306pt;}
.y109{bottom:317.594930pt;}
.yd5{bottom:318.653595pt;}
.ya2{bottom:318.653605pt;}
.y186{bottom:318.777588pt;}
.y170{bottom:318.777608pt;}
.y198{bottom:324.446004pt;}
.y260{bottom:324.909616pt;}
.y24{bottom:325.521200pt;}
.y15e{bottom:325.542789pt;}
.y19e{bottom:329.981617pt;}
.y1ec{bottom:330.084246pt;}
.y1ad{bottom:330.132263pt;}
.y22d{bottom:330.424232pt;}
.y138{bottom:333.362915pt;}
.y66{bottom:334.146973pt;}
.y108{bottom:334.261597pt;}
.yd4{bottom:335.320262pt;}
.ya1{bottom:335.320272pt;}
.y185{bottom:335.444255pt;}
.y25f{bottom:338.237616pt;}
.y15d{bottom:338.870789pt;}
.y197{bottom:341.078646pt;}
.y22{bottom:342.187866pt;}
.y19d{bottom:343.309617pt;}
.y1eb{bottom:343.412246pt;}
.y1ac{bottom:343.460263pt;}
.y22c{bottom:343.752232pt;}
.y137{bottom:350.029582pt;}
.y65{bottom:350.813639pt;}
.y107{bottom:350.928263pt;}
.y25e{bottom:351.565616pt;}
.yd3{bottom:351.986928pt;}
.ya0{bottom:351.986938pt;}
.y16f{bottom:352.110921pt;}
.y15c{bottom:352.198789pt;}
.y19c{bottom:356.637617pt;}
.y1ea{bottom:356.740246pt;}
.y1ab{bottom:356.788263pt;}
.y22b{bottom:357.080232pt;}
.y21{bottom:358.854533pt;}
.y25d{bottom:364.893616pt;}
.y196{bottom:366.045980pt;}
.y136{bottom:366.696248pt;}
.y64{bottom:367.480306pt;}
.y106{bottom:367.594930pt;}
.yd2{bottom:368.653595pt;}
.y9f{bottom:368.653605pt;}
.y16e{bottom:368.777588pt;}
.y19b{bottom:369.965617pt;}
.y1e9{bottom:370.068246pt;}
.y1aa{bottom:370.116263pt;}
.y22a{bottom:370.408232pt;}
.y20{bottom:375.521200pt;}
.y25c{bottom:378.221616pt;}
.y135{bottom:383.362915pt;}
.y1e8{bottom:383.396246pt;}
.y229{bottom:383.736232pt;}
.y63{bottom:384.146973pt;}
.y105{bottom:384.261597pt;}
.yd1{bottom:385.320262pt;}
.y9e{bottom:385.320272pt;}
.y16d{bottom:385.444255pt;}
.y192{bottom:388.720525pt;}
.y25b{bottom:391.549616pt;}
.y1f{bottom:392.187866pt;}
.y1e7{bottom:396.724246pt;}
.y228{bottom:397.064232pt;}
.y134{bottom:400.029582pt;}
.y62{bottom:400.813639pt;}
.y104{bottom:400.928263pt;}
.yd0{bottom:401.986928pt;}
.y9d{bottom:401.986938pt;}
.y191{bottom:402.048525pt;}
.y16c{bottom:402.110921pt;}
.y25a{bottom:404.877616pt;}
.y15b{bottom:408.525453pt;}
.y1e{bottom:408.854533pt;}
.y1e6{bottom:410.052246pt;}
.y227{bottom:410.392232pt;}
.y1bb{bottom:410.695722pt;}
.y133{bottom:416.696248pt;}
.y61{bottom:417.480306pt;}
.y259{bottom:418.205616pt;}
.ycf{bottom:418.653595pt;}
.y9c{bottom:418.653605pt;}
.y16b{bottom:418.777588pt;}
.y1e5{bottom:423.380246pt;}
.y226{bottom:423.720232pt;}
.y1ba{bottom:424.023722pt;}
.y15a{bottom:425.230787pt;}
.y1d{bottom:425.521200pt;}
.y258{bottom:431.533616pt;}
.y132{bottom:433.362915pt;}
.y60{bottom:434.146973pt;}
.y103{bottom:434.261597pt;}
.yce{bottom:435.320262pt;}
.y9b{bottom:435.320272pt;}
.y16a{bottom:435.444255pt;}
.y1e4{bottom:436.708246pt;}
.y225{bottom:437.048232pt;}
.y1c{bottom:442.187866pt;}
.y257{bottom:444.861616pt;}
.y131{bottom:450.029582pt;}
.y1e3{bottom:450.036246pt;}
.y159{bottom:450.198120pt;}
.y224{bottom:450.376232pt;}
.y5f{bottom:450.813639pt;}
.ycd{bottom:451.986928pt;}
.y9a{bottom:451.986938pt;}
.y169{bottom:452.110921pt;}
.y184{bottom:452.111064pt;}
.y190{bottom:454.476525pt;}
.y256{bottom:458.189616pt;}
.y23{bottom:458.854533pt;}
.y1e2{bottom:463.364246pt;}
.y223{bottom:463.704232pt;}
.y130{bottom:466.696248pt;}
.y5e{bottom:467.480306pt;}
.y102{bottom:467.594930pt;}
.y18f{bottom:467.804525pt;}
.ycc{bottom:468.653595pt;}
.y99{bottom:468.653605pt;}
.y168{bottom:468.777588pt;}
.y183{bottom:468.777730pt;}
.y158{bottom:472.856405pt;}
.y1b{bottom:475.521200pt;}
.y1e1{bottom:476.692246pt;}
.y222{bottom:477.032232pt;}
.y12f{bottom:483.362915pt;}
.y5d{bottom:484.146973pt;}
.y101{bottom:484.261597pt;}
.ycb{bottom:485.320262pt;}
.y98{bottom:485.320272pt;}
.y167{bottom:485.444255pt;}
.y182{bottom:485.444397pt;}
.y1e0{bottom:490.020246pt;}
.y221{bottom:490.360232pt;}
.y12e{bottom:500.029582pt;}
.y5c{bottom:500.813639pt;}
.y100{bottom:500.928263pt;}
.yca{bottom:501.986928pt;}
.y97{bottom:501.986938pt;}
.y166{bottom:502.110921pt;}
.y181{bottom:502.111064pt;}
.y1df{bottom:503.348246pt;}
.y220{bottom:503.688232pt;}
.y1de{bottom:516.676246pt;}
.y12d{bottom:516.696248pt;}
.y21f{bottom:517.016232pt;}
.y5b{bottom:517.480306pt;}
.yff{bottom:517.594930pt;}
.y155{bottom:518.653564pt;}
.yc9{bottom:518.653595pt;}
.y96{bottom:518.653605pt;}
.y165{bottom:518.777588pt;}
.y180{bottom:518.777730pt;}
.y1a{bottom:525.521240pt;}
.y255{bottom:527.368278pt;}
.y1dd{bottom:530.004246pt;}
.y21e{bottom:530.344232pt;}
.y12c{bottom:533.362915pt;}
.y5a{bottom:534.146973pt;}
.yfe{bottom:534.261597pt;}
.y154{bottom:535.320231pt;}
.yc8{bottom:535.320262pt;}
.y95{bottom:535.320272pt;}
.y164{bottom:535.444255pt;}
.y17f{bottom:535.444397pt;}
.y254{bottom:540.696278pt;}
.y1dc{bottom:543.332246pt;}
.y21d{bottom:543.672232pt;}
.y12b{bottom:550.029622pt;}
.y59{bottom:550.813639pt;}
.yfd{bottom:550.928263pt;}
.y153{bottom:551.986898pt;}
.yc7{bottom:551.986928pt;}
.y94{bottom:551.986938pt;}
.y163{bottom:552.110921pt;}
.y17e{bottom:552.111064pt;}
.y253{bottom:554.024278pt;}
.y1db{bottom:556.660246pt;}
.y21c{bottom:557.000232pt;}
.y19{bottom:558.854574pt;}
.y12a{bottom:566.696289pt;}
.y252{bottom:567.352278pt;}
.y58{bottom:567.480306pt;}
.yfc{bottom:567.594930pt;}
.y152{bottom:568.653564pt;}
.yc6{bottom:568.653595pt;}
.y93{bottom:568.653605pt;}
.y162{bottom:568.777588pt;}
.y17d{bottom:568.777730pt;}
.y1da{bottom:569.988246pt;}
.y21b{bottom:570.328232pt;}
.y18{bottom:575.521240pt;}
.y251{bottom:580.680278pt;}
.y1d9{bottom:583.316246pt;}
.y129{bottom:583.362956pt;}
.y21a{bottom:583.656232pt;}
.y57{bottom:584.146973pt;}
.y151{bottom:585.320231pt;}
.yc5{bottom:585.320262pt;}
.y92{bottom:585.320272pt;}
.y17{bottom:592.187907pt;}
.y250{bottom:594.008278pt;}
.y1d8{bottom:596.793620pt;}
.y219{bottom:596.984232pt;}
.y128{bottom:600.029622pt;}
.y56{bottom:600.813639pt;}
.yfb{bottom:600.928263pt;}
.y150{bottom:601.986898pt;}
.yc4{bottom:601.986928pt;}
.y91{bottom:601.986938pt;}
.y24f{bottom:607.336278pt;}
.y16{bottom:608.854574pt;}
.y1d7{bottom:610.121620pt;}
.y218{bottom:610.312232pt;}
.y127{bottom:616.696289pt;}
.y55{bottom:617.480306pt;}
.y14f{bottom:618.653564pt;}
.yc3{bottom:618.653595pt;}
.y90{bottom:618.653605pt;}
.y24e{bottom:620.664278pt;}
.y280{bottom:623.217634pt;}
.y1d6{bottom:623.449620pt;}
.y217{bottom:623.640232pt;}
.y15{bottom:625.521240pt;}
.y126{bottom:633.362956pt;}
.y24d{bottom:633.992278pt;}
.y54{bottom:634.146973pt;}
.yfa{bottom:634.261637pt;}
.y8f{bottom:635.320231pt;}
.yc2{bottom:635.320262pt;}
.y157{bottom:635.320272pt;}
.y27f{bottom:636.545634pt;}
.y1d5{bottom:636.777620pt;}
.y216{bottom:636.968232pt;}
.y14{bottom:642.187907pt;}
.y24c{bottom:647.320278pt;}
.y27e{bottom:649.873634pt;}
.y125{bottom:650.029622pt;}
.y1d4{bottom:650.105620pt;}
.y215{bottom:650.296232pt;}
.y53{bottom:650.813639pt;}
.yf9{bottom:650.928304pt;}
.y8e{bottom:651.986898pt;}
.yc1{bottom:651.986928pt;}
.y13{bottom:658.854574pt;}
.y24b{bottom:660.648278pt;}
.y27d{bottom:663.201634pt;}
.y1d3{bottom:663.433620pt;}
.y214{bottom:663.624232pt;}
.y124{bottom:666.696289pt;}
.y52{bottom:667.480306pt;}
.yf8{bottom:667.594971pt;}
.y8d{bottom:668.653564pt;}
.yc0{bottom:668.653595pt;}
.y24a{bottom:673.976278pt;}
.y12{bottom:675.521240pt;}
.y27c{bottom:676.529634pt;}
.y1d2{bottom:676.761620pt;}
.y213{bottom:676.952232pt;}
.y123{bottom:683.362956pt;}
.y51{bottom:684.146973pt;}
.yf7{bottom:684.261637pt;}
.y8c{bottom:685.320231pt;}
.ybf{bottom:685.320262pt;}
.y27b{bottom:689.857634pt;}
.y1d1{bottom:690.089620pt;}
.y212{bottom:690.280232pt;}
.y11{bottom:692.187907pt;}
.y122{bottom:700.029622pt;}
.y50{bottom:700.813639pt;}
.yf6{bottom:700.928304pt;}
.y8b{bottom:701.986898pt;}
.ybe{bottom:701.986928pt;}
.y27a{bottom:703.185634pt;}
.y1d0{bottom:703.417620pt;}
.y211{bottom:703.608232pt;}
.y10{bottom:708.854574pt;}
.y279{bottom:716.513634pt;}
.y121{bottom:716.696289pt;}
.y1cf{bottom:716.745620pt;}
.y210{bottom:716.936232pt;}
.y4f{bottom:717.480306pt;}
.y8a{bottom:718.653564pt;}
.ybd{bottom:718.653595pt;}
.yf{bottom:725.521240pt;}
.y278{bottom:729.841634pt;}
.y1ce{bottom:730.073620pt;}
.y20f{bottom:730.264232pt;}
.y120{bottom:733.362956pt;}
.y4e{bottom:734.146973pt;}
.yf5{bottom:734.261637pt;}
.y89{bottom:735.320231pt;}
.ybc{bottom:735.320262pt;}
.ye{bottom:742.187907pt;}
.y249{bottom:743.154939pt;}
.y1cd{bottom:743.401620pt;}
.y20e{bottom:743.592232pt;}
.y11f{bottom:750.029622pt;}
.y4d{bottom:750.813639pt;}
.y156{bottom:751.986898pt;}
.ybb{bottom:751.986928pt;}
.y248{bottom:756.482939pt;}
.y277{bottom:756.593634pt;}
.y1cc{bottom:756.729620pt;}
.y20d{bottom:756.920232pt;}
.y11e{bottom:766.696289pt;}
.y4c{bottom:767.480306pt;}
.yf4{bottom:767.594971pt;}
.y88{bottom:768.653564pt;}
.yba{bottom:768.653595pt;}
.y247{bottom:769.810939pt;}
.y276{bottom:769.921634pt;}
.y1cb{bottom:770.057620pt;}
.y20c{bottom:770.248232pt;}
.y14b{bottom:772.012251pt;}
.yd{bottom:781.461469pt;}
.y246{bottom:783.138939pt;}
.y275{bottom:783.249634pt;}
.y11d{bottom:783.362956pt;}
.y1ca{bottom:783.385620pt;}
.y20b{bottom:783.576232pt;}
.y4b{bottom:784.146973pt;}
.yf3{bottom:784.261637pt;}
.yb9{bottom:785.320262pt;}
.y14a{bottom:785.340251pt;}
.yc{bottom:794.789469pt;}
.y245{bottom:796.466939pt;}
.y274{bottom:796.577634pt;}
.y1c9{bottom:796.713620pt;}
.y20a{bottom:796.904232pt;}
.y11c{bottom:800.029622pt;}
.y4a{bottom:800.813639pt;}
.yf2{bottom:800.928304pt;}
.y87{bottom:801.986898pt;}
.yb8{bottom:801.986928pt;}
.y244{bottom:809.794939pt;}
.y273{bottom:809.905634pt;}
.y1c8{bottom:810.041620pt;}
.y209{bottom:810.232232pt;}
.y11b{bottom:816.696289pt;}
.y49{bottom:817.480306pt;}
.yf1{bottom:817.594971pt;}
.y86{bottom:818.653564pt;}
.yb7{bottom:818.653595pt;}
.y243{bottom:823.122939pt;}
.y272{bottom:823.233634pt;}
.y1c7{bottom:823.369620pt;}
.y208{bottom:823.560232pt;}
.yb{bottom:832.656169pt;}
.y11a{bottom:833.362956pt;}
.y48{bottom:834.146973pt;}
.yf0{bottom:834.261637pt;}
.y85{bottom:835.320231pt;}
.yb6{bottom:835.320262pt;}
.y242{bottom:836.450939pt;}
.y271{bottom:836.561634pt;}
.y1c6{bottom:836.697620pt;}
.y207{bottom:836.888232pt;}
.y241{bottom:849.778939pt;}
.y270{bottom:849.889634pt;}
.y1c5{bottom:850.025620pt;}
.y119{bottom:850.029622pt;}
.y206{bottom:850.216232pt;}
.y47{bottom:850.813639pt;}
.yef{bottom:850.928304pt;}
.y84{bottom:851.986898pt;}
.yb5{bottom:851.986928pt;}
.y240{bottom:863.106939pt;}
.y26f{bottom:863.217634pt;}
.y1c4{bottom:863.353620pt;}
.y205{bottom:863.544232pt;}
.y118{bottom:866.696289pt;}
.y46{bottom:867.480306pt;}
.yee{bottom:867.594971pt;}
.y83{bottom:868.653564pt;}
.yb4{bottom:868.653595pt;}
.ya{bottom:872.377441pt;}
.y23f{bottom:876.434939pt;}
.y26e{bottom:876.545634pt;}
.y1c3{bottom:876.681620pt;}
.y204{bottom:876.872232pt;}
.y117{bottom:883.362956pt;}
.y45{bottom:884.146973pt;}
.yed{bottom:884.261637pt;}
.y82{bottom:885.320231pt;}
.yb3{bottom:885.320262pt;}
.y23e{bottom:889.762939pt;}
.y26d{bottom:889.873634pt;}
.y1c2{bottom:890.009620pt;}
.y203{bottom:890.200232pt;}
.y9{bottom:896.377441pt;}
.y116{bottom:900.029622pt;}
.y44{bottom:900.813639pt;}
.yec{bottom:900.928304pt;}
.y14e{bottom:901.986898pt;}
.yb2{bottom:901.986928pt;}
.y26c{bottom:903.201634pt;}
.y1c1{bottom:903.337620pt;}
.y202{bottom:903.528232pt;}
.y18e{bottom:915.668306pt;}
.y26b{bottom:916.529634pt;}
.y1c0{bottom:916.665620pt;}
.y201{bottom:916.856232pt;}
.y43{bottom:917.480306pt;}
.yeb{bottom:917.594971pt;}
.y81{bottom:918.653564pt;}
.yb1{bottom:918.653595pt;}
.y18d{bottom:928.996306pt;}
.y26a{bottom:929.857634pt;}
.y1bf{bottom:929.993620pt;}
.y200{bottom:930.184232pt;}
.y115{bottom:933.362956pt;}
.y42{bottom:934.146973pt;}
.y14d{bottom:935.320231pt;}
.yb0{bottom:935.320262pt;}
.y18c{bottom:942.324306pt;}
.y269{bottom:943.185634pt;}
.y1be{bottom:943.321620pt;}
.y1ff{bottom:943.512232pt;}
.y41{bottom:950.813639pt;}
.yea{bottom:950.933637pt;}
.y80{bottom:951.986898pt;}
.yaf{bottom:951.986928pt;}
.y18b{bottom:955.652306pt;}
.y23d{bottom:956.513634pt;}
.y6{bottom:956.561849pt;}
.y1bd{bottom:956.649620pt;}
.y1fe{bottom:956.840232pt;}
.y114{bottom:966.696289pt;}
.y40{bottom:967.480306pt;}
.ye9{bottom:967.594971pt;}
.y7f{bottom:968.653564pt;}
.yae{bottom:968.653595pt;}
.y18a{bottom:968.980306pt;}
.y23c{bottom:969.841634pt;}
.y1bc{bottom:969.977620pt;}
.y1fd{bottom:970.168232pt;}
.y3{bottom:986.299161pt;}
.y8{bottom:986.406234pt;}
.y2{bottom:1001.406494pt;}
.y7{bottom:1001.740234pt;}
.y3f{bottom:1002.206543pt;}
.y7e{bottom:1002.206706pt;}
.h4{height:16.533333pt;}
.h2{height:30.080000pt;}
.hd{height:30.495732pt;}
.h3{height:39.712000pt;}
.hc{height:43.565333pt;}
.h17{height:46.376000pt;}
.h12{height:47.253333pt;}
.h15{height:48.629033pt;}
.h14{height:48.631830pt;}
.h5{height:48.766452pt;}
.h16{height:48.895797pt;}
.h6{height:49.298667pt;}
.ha{height:51.253333pt;}
.he{height:52.448000pt;}
.h9{height:52.746667pt;}
.h11{height:57.210504pt;}
.h10{height:57.210667pt;}
.hf{height:57.210829pt;}
.h13{height:57.211236pt;}
.h8{height:57.658667pt;}
.hb{height:63.296000pt;}
.h7{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:112.598663pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:2.809856pt;}
.xa{left:67.086665pt;}
.x2{left:68.031469pt;}
.x10{left:72.026000pt;}
.x5{left:75.717199pt;}
.xb{left:83.151469pt;}
.x9{left:86.929867pt;}
.x13{left:90.709469pt;}
.xe{left:94.196802pt;}
.x11{left:127.656667pt;}
.x14{left:237.724670pt;}
.x8{left:408.191457pt;}
.xc{left:423.311469pt;}
.x12{left:430.866924pt;}
.xf{left:434.354257pt;}
.x15{left:578.217448pt;}
.x3{left:613.184000pt;}
.x6{left:626.076782pt;}
.x7{left:634.259449pt;}
.x1{left:647.307210pt;}
.xd{left:704.136393pt;}
}




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