
    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_353f4fbf8210e494a7649848.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_87ec71bb8207347ab692faac.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_20501857ca804df545fecd87.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4ff725fd25490138682b1680.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_20252bb71e70e494987f6948.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_bc2aa948127060d80530eb23.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9cb6a6628c14c04ab664ebc9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1f2cb01649dbe339bdc96c55.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_12ec656fd3779a488a0e7f0f.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v7{vertical-align:-28.263000px;}
.v2{vertical-align:-21.701400px;}
.v3{vertical-align:-18.811800px;}
.v5{vertical-align:-11.703000px;}
.v9{vertical-align:-9.525600px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.620000px;}
.v4{vertical-align:11.055000px;}
.va{vertical-align:22.610400px;}
.v6{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.v8{vertical-align:32.976000px;}
.ls73{letter-spacing:-3.552000px;}
.ls9f{letter-spacing:-2.640000px;}
.lsa4{letter-spacing:-2.352000px;}
.ls4a{letter-spacing:-1.776000px;}
.lsd{letter-spacing:-0.780000px;}
.ls3b{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.360000px;}
.lsa3{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.240000px;}
.ls39{letter-spacing:-0.180000px;}
.ls96{letter-spacing:-0.144000px;}
.ls42{letter-spacing:-0.120000px;}
.lsa0{letter-spacing:-0.096000px;}
.ls3a{letter-spacing:-0.060000px;}
.ls97{letter-spacing:-0.048000px;}
.lsc{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.003828px;}
.ls2{letter-spacing:0.004140px;}
.ls6e{letter-spacing:0.006000px;}
.ls6c{letter-spacing:0.013200px;}
.ls71{letter-spacing:0.027000px;}
.ls70{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.060000px;}
.ls8f{letter-spacing:0.096000px;}
.ls66{letter-spacing:0.104940px;}
.ls6f{letter-spacing:0.111936px;}
.ls12{letter-spacing:0.120000px;}
.ls8d{letter-spacing:0.144000px;}
.ls65{letter-spacing:0.150600px;}
.ls13{letter-spacing:0.180000px;}
.ls6d{letter-spacing:0.192000px;}
.ls6{letter-spacing:0.240000px;}
.lsa1{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.300000px;}
.ls88{letter-spacing:0.336000px;}
.ls17{letter-spacing:0.360000px;}
.ls91{letter-spacing:0.384000px;}
.ls64{letter-spacing:0.384780px;}
.ls68{letter-spacing:0.419760px;}
.ls2d{letter-spacing:0.420000px;}
.ls8a{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.480000px;}
.ls59{letter-spacing:0.489720px;}
.ls9b{letter-spacing:0.528000px;}
.lsa{letter-spacing:0.540000px;}
.ls7d{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.600000px;}
.ls5a{letter-spacing:0.624000px;}
.ls21{letter-spacing:0.660000px;}
.ls79{letter-spacing:0.672000px;}
.ls63{letter-spacing:0.697200px;}
.ls67{letter-spacing:0.709800px;}
.ls10{letter-spacing:0.720000px;}
.ls6b{letter-spacing:0.721200px;}
.ls94{letter-spacing:0.768000px;}
.ls56{letter-spacing:0.769560px;}
.ls15{letter-spacing:0.780000px;}
.ls58{letter-spacing:0.781200px;}
.ls5d{letter-spacing:0.816000px;}
.ls32{letter-spacing:0.840000px;}
.ls87{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.900000px;}
.ls85{letter-spacing:0.912000px;}
.ls62{letter-spacing:0.944460px;}
.ls46{letter-spacing:0.960000px;}
.ls7e{letter-spacing:1.008000px;}
.ls20{letter-spacing:1.020000px;}
.ls5e{letter-spacing:1.056000px;}
.ls1c{letter-spacing:1.080000px;}
.ls7a{letter-spacing:1.104000px;}
.ls6a{letter-spacing:1.119360px;}
.ls2c{letter-spacing:1.140000px;}
.ls89{letter-spacing:1.152000px;}
.ls37{letter-spacing:1.200000px;}
.ls90{letter-spacing:1.248000px;}
.ls24{letter-spacing:1.260000px;}
.ls7b{letter-spacing:1.296000px;}
.ls28{letter-spacing:1.320000px;}
.ls99{letter-spacing:1.344000px;}
.ls2e{letter-spacing:1.380000px;}
.ls84{letter-spacing:1.392000px;}
.ls60{letter-spacing:1.399200px;}
.ls3d{letter-spacing:1.440000px;}
.ls9c{letter-spacing:1.488000px;}
.ls1d{letter-spacing:1.500000px;}
.ls95{letter-spacing:1.536000px;}
.ls33{letter-spacing:1.560000px;}
.ls82{letter-spacing:1.584000px;}
.ls27{letter-spacing:1.620000px;}
.ls81{letter-spacing:1.632000px;}
.ls61{letter-spacing:1.638000px;}
.ls55{letter-spacing:1.679040px;}
.ls5{letter-spacing:1.680000px;}
.ls5b{letter-spacing:1.728000px;}
.ls30{letter-spacing:1.740000px;}
.ls5c{letter-spacing:1.776000px;}
.ls2b{letter-spacing:1.800000px;}
.ls7f{letter-spacing:1.824000px;}
.ls2a{letter-spacing:1.860000px;}
.ls69{letter-spacing:1.888800px;}
.lsb{letter-spacing:1.920000px;}
.ls92{letter-spacing:1.968000px;}
.ls1e{letter-spacing:1.980000px;}
.ls49{letter-spacing:1.993860px;}
.ls8b{letter-spacing:2.016000px;}
.ls8{letter-spacing:2.040000px;}
.ls29{letter-spacing:2.100000px;}
.ls86{letter-spacing:2.112000px;}
.ls7{letter-spacing:2.160000px;}
.ls98{letter-spacing:2.208000px;}
.ls11{letter-spacing:2.220000px;}
.ls8c{letter-spacing:2.256000px;}
.ls31{letter-spacing:2.280000px;}
.ls9d{letter-spacing:2.304000px;}
.ls19{letter-spacing:2.340000px;}
.ls7c{letter-spacing:2.352000px;}
.ls14{letter-spacing:2.400000px;}
.ls5f{letter-spacing:2.406000px;}
.ls35{letter-spacing:2.460000px;}
.ls4e{letter-spacing:2.520000px;}
.ls83{letter-spacing:2.544000px;}
.ls4d{letter-spacing:2.580000px;}
.ls1b{letter-spacing:2.640000px;}
.ls25{letter-spacing:2.700000px;}
.ls57{letter-spacing:2.760000px;}
.ls3c{letter-spacing:2.820000px;}
.ls36{letter-spacing:2.880000px;}
.ls54{letter-spacing:2.892000px;}
.ls2f{letter-spacing:2.940000px;}
.ls38{letter-spacing:3.000000px;}
.ls93{letter-spacing:3.024000px;}
.ls18{letter-spacing:3.060000px;}
.ls40{letter-spacing:3.120000px;}
.ls53{letter-spacing:3.180000px;}
.ls4f{letter-spacing:3.240000px;}
.ls4b{letter-spacing:3.300000px;}
.ls8e{letter-spacing:3.312000px;}
.ls50{letter-spacing:3.360000px;}
.ls43{letter-spacing:3.420000px;}
.ls1a{letter-spacing:3.480000px;}
.ls9a{letter-spacing:3.504000px;}
.ls44{letter-spacing:3.540000px;}
.ls77{letter-spacing:3.600000px;}
.ls80{letter-spacing:3.660000px;}
.ls52{letter-spacing:3.780000px;}
.ls9e{letter-spacing:3.792000px;}
.ls45{letter-spacing:3.840000px;}
.ls3f{letter-spacing:3.960000px;}
.ls3e{letter-spacing:4.020000px;}
.ls75{letter-spacing:4.080000px;}
.ls34{letter-spacing:4.200000px;}
.ls51{letter-spacing:4.380000px;}
.ls23{letter-spacing:4.800000px;}
.ls4{letter-spacing:5.100000px;}
.ls4c{letter-spacing:5.280000px;}
.lsa2{letter-spacing:5.640000px;}
.ls78{letter-spacing:5.760000px;}
.ls74{letter-spacing:6.540000px;}
.ls76{letter-spacing:8.580000px;}
.ls1{letter-spacing:59.532876px;}
.ls0{letter-spacing:59.533476px;}
.ls48{letter-spacing:260.784000px;}
.ls72{letter-spacing:311.821800px;}
.ls47{letter-spacing:496.272000px;}
.ls41{letter-spacing:2455.296600px;}
.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;}
}
.wsc4{word-spacing:-47.856000px;}
.ws8c{word-spacing:-20.340000px;}
.ws2{word-spacing:-17.514000px;}
.ws60{word-spacing:-17.280000px;}
.ws5f{word-spacing:-16.800000px;}
.ws4c{word-spacing:-16.680000px;}
.ws9f{word-spacing:-15.024000px;}
.ws61{word-spacing:-15.000000px;}
.wsa1{word-spacing:-14.016000px;}
.wsc8{word-spacing:-13.824000px;}
.ws9e{word-spacing:-13.776000px;}
.wsbf{word-spacing:-13.728000px;}
.ws9b{word-spacing:-13.680000px;}
.wsdb{word-spacing:-13.488000px;}
.wsc9{word-spacing:-13.440000px;}
.ws99{word-spacing:-13.392000px;}
.ws4{word-spacing:-13.344000px;}
.ws9d{word-spacing:-13.200000px;}
.wsc0{word-spacing:-13.056000px;}
.wsd9{word-spacing:-13.008000px;}
.wsc3{word-spacing:-12.864000px;}
.ws96{word-spacing:-12.816000px;}
.wsc1{word-spacing:-12.768000px;}
.wsdd{word-spacing:-12.672000px;}
.wsc6{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.ws97{word-spacing:-12.480000px;}
.wsda{word-spacing:-12.432000px;}
.wsc5{word-spacing:-12.240000px;}
.ws9c{word-spacing:-12.192000px;}
.ws98{word-spacing:-12.144000px;}
.wsa0{word-spacing:-12.096000px;}
.ws7b{word-spacing:-12.000000px;}
.wsc7{word-spacing:-11.904000px;}
.ws9a{word-spacing:-11.856000px;}
.ws27{word-spacing:-10.738860px;}
.ws4f{word-spacing:-10.424040px;}
.ws0{word-spacing:-10.210662px;}
.ws74{word-spacing:-10.144200px;}
.ws79{word-spacing:-9.864360px;}
.ws75{word-spacing:-9.689460px;}
.wsdc{word-spacing:-9.648000px;}
.ws4e{word-spacing:-9.514560px;}
.wsc2{word-spacing:-9.360000px;}
.ws78{word-spacing:-9.164760px;}
.ws76{word-spacing:-9.129780px;}
.ws77{word-spacing:-8.849940px;}
.ws4d{word-spacing:-8.745000px;}
.ws7a{word-spacing:-7.107936px;}
.ws62{word-spacing:-6.996000px;}
.ws57{word-spacing:-4.380000px;}
.ws64{word-spacing:-3.540000px;}
.ws4b{word-spacing:-3.360000px;}
.ws65{word-spacing:-3.300000px;}
.ws1d{word-spacing:-3.120000px;}
.ws38{word-spacing:-3.060000px;}
.wsb8{word-spacing:-3.024000px;}
.ws6{word-spacing:-2.886000px;}
.ws22{word-spacing:-2.820000px;}
.wsd2{word-spacing:-2.640000px;}
.ws1f{word-spacing:-2.460000px;}
.ws69{word-spacing:-2.340000px;}
.wsd3{word-spacing:-2.304000px;}
.ws66{word-spacing:-2.280000px;}
.ws1a{word-spacing:-2.220000px;}
.wsd5{word-spacing:-2.112000px;}
.ws83{word-spacing:-2.040000px;}
.wsd8{word-spacing:-2.016000px;}
.ws6c{word-spacing:-1.980000px;}
.wsb7{word-spacing:-1.968000px;}
.ws37{word-spacing:-1.860000px;}
.wsbd{word-spacing:-1.824000px;}
.ws39{word-spacing:-1.800000px;}
.wsb5{word-spacing:-1.776000px;}
.wscc{word-spacing:-1.680000px;}
.ws95{word-spacing:-1.632000px;}
.ws8e{word-spacing:-1.560000px;}
.wse0{word-spacing:-1.488000px;}
.wsd7{word-spacing:-1.440000px;}
.wsae{word-spacing:-1.392000px;}
.wsd6{word-spacing:-1.296000px;}
.wsb4{word-spacing:-1.200000px;}
.wsa6{word-spacing:-1.152000px;}
.ws94{word-spacing:-1.104000px;}
.ws7f{word-spacing:-1.080000px;}
.wsca{word-spacing:-1.056000px;}
.wsaf{word-spacing:-1.008000px;}
.ws6d{word-spacing:-0.960000px;}
.wsa2{word-spacing:-0.912000px;}
.ws23{word-spacing:-0.900000px;}
.ws5d{word-spacing:-0.864000px;}
.wsb9{word-spacing:-0.768000px;}
.ws92{word-spacing:-0.672000px;}
.ws6a{word-spacing:-0.600000px;}
.wsd1{word-spacing:-0.528000px;}
.ws6b{word-spacing:-0.489720px;}
.ws18{word-spacing:-0.480000px;}
.wsa7{word-spacing:-0.432000px;}
.ws40{word-spacing:-0.420000px;}
.ws44{word-spacing:-0.360000px;}
.wsa3{word-spacing:-0.336000px;}
.ws25{word-spacing:-0.300000px;}
.wsa4{word-spacing:-0.240000px;}
.wsb2{word-spacing:-0.192000px;}
.ws13{word-spacing:-0.180000px;}
.wsac{word-spacing:-0.144000px;}
.ws7d{word-spacing:-0.120000px;}
.wsad{word-spacing:-0.096000px;}
.wsa{word-spacing:-0.060000px;}
.wsce{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsa9{word-spacing:0.048000px;}
.ws42{word-spacing:0.060000px;}
.wsb0{word-spacing:0.096000px;}
.ws10{word-spacing:0.120000px;}
.wsa5{word-spacing:0.144000px;}
.ws11{word-spacing:0.180000px;}
.ws89{word-spacing:0.240000px;}
.wsd0{word-spacing:0.288000px;}
.ws35{word-spacing:0.300000px;}
.ws7{word-spacing:0.360000px;}
.ws20{word-spacing:0.420000px;}
.ws72{word-spacing:0.432000px;}
.ws3e{word-spacing:0.480000px;}
.wscb{word-spacing:0.528000px;}
.ws43{word-spacing:0.660000px;}
.ws12{word-spacing:0.720000px;}
.wscf{word-spacing:0.768000px;}
.ws8f{word-spacing:0.780000px;}
.ws48{word-spacing:0.900000px;}
.ws3d{word-spacing:0.960000px;}
.wse{word-spacing:1.020000px;}
.wsbb{word-spacing:1.056000px;}
.ws3a{word-spacing:1.080000px;}
.ws86{word-spacing:1.104000px;}
.ws14{word-spacing:1.140000px;}
.ws7c{word-spacing:1.260000px;}
.wsbc{word-spacing:1.296000px;}
.ws8a{word-spacing:1.320000px;}
.wsbe{word-spacing:1.440000px;}
.wscd{word-spacing:1.488000px;}
.ws17{word-spacing:1.500000px;}
.ws73{word-spacing:1.536000px;}
.ws15{word-spacing:1.560000px;}
.ws6e{word-spacing:1.620000px;}
.wsb6{word-spacing:1.728000px;}
.ws5e{word-spacing:1.776000px;}
.ws45{word-spacing:1.800000px;}
.wsde{word-spacing:1.824000px;}
.ws46{word-spacing:1.860000px;}
.wsba{word-spacing:1.920000px;}
.wsb3{word-spacing:1.968000px;}
.ws3f{word-spacing:1.980000px;}
.ws68{word-spacing:2.040000px;}
.ws71{word-spacing:2.064000px;}
.ws59{word-spacing:2.100000px;}
.ws5a{word-spacing:2.160000px;}
.wsab{word-spacing:2.256000px;}
.ws32{word-spacing:2.280000px;}
.ws67{word-spacing:2.340000px;}
.ws82{word-spacing:2.400000px;}
.wse1{word-spacing:2.448000px;}
.wsf{word-spacing:2.460000px;}
.ws41{word-spacing:2.580000px;}
.wsb1{word-spacing:2.592000px;}
.ws84{word-spacing:2.700000px;}
.ws58{word-spacing:2.760000px;}
.ws85{word-spacing:2.784000px;}
.ws47{word-spacing:2.820000px;}
.ws93{word-spacing:2.832000px;}
.wsdf{word-spacing:2.880000px;}
.ws1c{word-spacing:2.940000px;}
.ws88{word-spacing:3.000000px;}
.wsaa{word-spacing:3.024000px;}
.ws21{word-spacing:3.060000px;}
.wsa8{word-spacing:3.072000px;}
.wse2{word-spacing:3.120000px;}
.wsd{word-spacing:3.180000px;}
.ws34{word-spacing:3.240000px;}
.ws1e{word-spacing:3.360000px;}
.ws80{word-spacing:3.420000px;}
.ws36{word-spacing:3.480000px;}
.ws8b{word-spacing:3.552000px;}
.wsc{word-spacing:3.600000px;}
.wsd4{word-spacing:3.648000px;}
.ws26{word-spacing:3.660000px;}
.ws16{word-spacing:3.720000px;}
.ws90{word-spacing:3.840000px;}
.ws4a{word-spacing:3.900000px;}
.ws6f{word-spacing:3.936000px;}
.ws1b{word-spacing:3.960000px;}
.ws70{word-spacing:3.984000px;}
.ws3b{word-spacing:4.020000px;}
.wsb{word-spacing:4.080000px;}
.ws49{word-spacing:4.140000px;}
.ws33{word-spacing:4.200000px;}
.ws19{word-spacing:4.320000px;}
.ws7e{word-spacing:4.380000px;}
.ws24{word-spacing:4.440000px;}
.ws5c{word-spacing:4.500000px;}
.ws8d{word-spacing:4.620000px;}
.ws3c{word-spacing:4.680000px;}
.ws81{word-spacing:4.740000px;}
.ws63{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws5b{word-spacing:5.460000px;}
.ws91{word-spacing:5.520000px;}
.ws1{word-spacing:49.322028px;}
.ws29{word-spacing:183.120000px;}
.ws2b{word-spacing:184.032000px;}
.ws2f{word-spacing:184.896000px;}
.ws2d{word-spacing:207.648000px;}
.ws2e{word-spacing:216.192000px;}
.ws2c{word-spacing:218.064000px;}
.ws30{word-spacing:218.976000px;}
.ws87{word-spacing:220.176000px;}
.ws28{word-spacing:226.224000px;}
.ws54{word-spacing:293.904000px;}
.ws56{word-spacing:307.728000px;}
.ws31{word-spacing:436.272000px;}
.ws2a{word-spacing:460.272000px;}
.ws52{word-spacing:583.200000px;}
.ws50{word-spacing:645.264000px;}
.ws55{word-spacing:651.024000px;}
.ws53{word-spacing:671.904000px;}
.ws51{word-spacing:771.984000px;}
._b{margin-left:-2898.096000px;}
._c{margin-left:-2874.288000px;}
._7{margin-left:-8.580000px;}
._d{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.992400px;}
._0{margin-left:-2.310000px;}
._4{margin-left:-1.080000px;}
._5{width:1.020000px;}
._e{width:2.070000px;}
._8{width:3.096000px;}
._6{width:5.040000px;}
._a{width:6.480000px;}
._9{width:8.160000px;}
._23{width:9.992400px;}
._3{width:60.129228px;}
._21{width:183.120000px;}
._10{width:200.448000px;}
._11{width:217.632000px;}
._12{width:218.976000px;}
._15{width:225.648000px;}
._1e{width:228.864000px;}
._13{width:232.848000px;}
._16{width:240.864000px;}
._22{width:246.192000px;}
._3f{width:257.574000px;}
._19{width:258.948000px;}
._1a{width:260.784000px;}
._17{width:270.192000px;}
._3e{width:285.176400px;}
._25{width:297.360000px;}
._2f{width:312.768000px;}
._f{width:324.384000px;}
._1b{width:351.996000px;}
._3b{width:363.216000px;}
._1f{width:375.132000px;}
._14{width:377.904000px;}
._18{width:387.216000px;}
._27{width:408.768000px;}
._20{width:410.936400px;}
._2d{width:445.296000px;}
._1d{width:448.272000px;}
._39{width:450.576000px;}
._33{width:458.894400px;}
._3c{width:465.888000px;}
._1c{width:472.272000px;}
._36{width:480.786000px;}
._3d{width:482.400000px;}
._26{width:502.178400px;}
._34{width:517.344000px;}
._32{width:543.888000px;}
._49{width:565.575600px;}
._45{width:567.112800px;}
._44{width:568.509000px;}
._48{width:571.187400px;}
._42{width:574.617600px;}
._24{width:582.624000px;}
._30{width:587.232000px;}
._2a{width:590.592000px;}
._31{width:592.704000px;}
._38{width:610.752000px;}
._37{width:625.344000px;}
._29{width:640.560000px;}
._28{width:645.360000px;}
._2c{width:652.560000px;}
._2e{width:663.360000px;}
._35{width:669.264000px;}
._3a{width:670.608000px;}
._2b{width:789.984000px;}
._41{width:823.920000px;}
._47{width:907.288800px;}
._4a{width:909.827400px;}
._46{width:911.363400px;}
._43{width:915.804600px;}
._40{width:1119.408000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:22.737000px;}
.fs5{font-size:26.235000px;}
.fsc{font-size:27.984000px;}
.fsb{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs9{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;}
.y2f{bottom:47.777250px;}
.y206{bottom:80.263500px;}
.y180{bottom:82.911150px;}
.y185{bottom:83.330550px;}
.y17d{bottom:83.628600px;}
.y1a8{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.y141{bottom:83.912100px;}
.yf0{bottom:83.920350px;}
.y89{bottom:84.115050px;}
.y14e{bottom:84.458700px;}
.y2c{bottom:88.026750px;}
.y1c4{bottom:92.121900px;}
.y1a2{bottom:92.178450px;}
.y129{bottom:92.326650px;}
.yd1{bottom:92.603700px;}
.y205{bottom:95.263500px;}
.y17f{bottom:98.661150px;}
.y184{bottom:99.074550px;}
.y14d{bottom:100.202700px;}
.y17c{bottom:101.628600px;}
.y1a7{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.y140{bottom:101.912100px;}
.yef{bottom:101.920350px;}
.y2b{bottom:103.023000px;}
.y19f{bottom:105.242400px;}
.y1c3{bottom:107.121900px;}
.y1a1{bottom:108.430500px;}
.y128{bottom:108.586650px;}
.y204{bottom:110.263500px;}
.y17e{bottom:114.405150px;}
.y183{bottom:114.818550px;}
.y14c{bottom:115.946700px;}
.y127{bottom:116.842650px;}
.y17b{bottom:119.628600px;}
.y1a6{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.y13f{bottom:119.912100px;}
.yee{bottom:119.920350px;}
.yd0{bottom:121.607700px;}
.y1c2{bottom:122.121900px;}
.y1a0{bottom:124.682400px;}
.y203{bottom:125.263500px;}
.y182{bottom:130.562550px;}
.y14b{bottom:131.690700px;}
.y1c1{bottom:137.121900px;}
.y17a{bottom:137.628600px;}
.y1a5{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.ycf{bottom:137.855700px;}
.y13e{bottom:137.912100px;}
.yed{bottom:137.920350px;}
.y202{bottom:140.263500px;}
.y19e{bottom:140.934300px;}
.y126{bottom:141.346650px;}
.y14a{bottom:147.434700px;}
.y19b{bottom:148.934400px;}
.y1c0{bottom:152.121900px;}
.yce{bottom:154.103700px;}
.y201{bottom:155.263500px;}
.y179{bottom:155.628600px;}
.y61{bottom:155.770350px;}
.y13d{bottom:155.912100px;}
.yec{bottom:155.920350px;}
.y19d{bottom:157.186350px;}
.y125{bottom:157.594650px;}
.y149{bottom:163.220700px;}
.y19a{bottom:165.434400px;}
.y1bf{bottom:167.121900px;}
.y200{bottom:170.263500px;}
.ycd{bottom:170.351700px;}
.y1a4{bottom:173.230350px;}
.y19c{bottom:173.438400px;}
.y178{bottom:173.628600px;}
.y60{bottom:173.770350px;}
.y124{bottom:173.842650px;}
.y13c{bottom:173.912100px;}
.yeb{bottom:173.920350px;}
.y28{bottom:174.408150px;}
.y148{bottom:178.964700px;}
.y1be{bottom:182.121900px;}
.y1ff{bottom:185.263500px;}
.ycc{bottom:186.599700px;}
.y199{bottom:189.690300px;}
.y123{bottom:190.102650px;}
.y177{bottom:191.628600px;}
.y5f{bottom:191.770350px;}
.y13b{bottom:191.912100px;}
.yea{bottom:191.920350px;}
.y27{bottom:192.408150px;}
.y147{bottom:194.708700px;}
.y1bd{bottom:197.121900px;}
.y196{bottom:197.690250px;}
.y122{bottom:198.358650px;}
.y1fe{bottom:200.263500px;}
.ycb{bottom:202.847700px;}
.y198{bottom:205.942200px;}
.y176{bottom:209.628600px;}
.y5e{bottom:209.770350px;}
.y13a{bottom:209.912100px;}
.ye9{bottom:209.920350px;}
.y26{bottom:210.408150px;}
.y146{bottom:210.452700px;}
.y1bc{bottom:212.121900px;}
.y195{bottom:214.190250px;}
.y1fd{bottom:215.263500px;}
.yca{bottom:219.095700px;}
.y197{bottom:222.194250px;}
.y121{bottom:222.862650px;}
.y145{bottom:226.196700px;}
.y1bb{bottom:227.121900px;}
.y175{bottom:227.635350px;}
.y5d{bottom:227.770350px;}
.y139{bottom:227.912100px;}
.ye8{bottom:227.920350px;}
.y25{bottom:228.408150px;}
.y1fc{bottom:230.263500px;}
.yc9{bottom:235.343700px;}
.y194{bottom:238.446150px;}
.y120{bottom:239.122650px;}
.y144{bottom:241.940700px;}
.y1ba{bottom:242.121900px;}
.y1fb{bottom:245.263500px;}
.y174{bottom:245.635350px;}
.y5c{bottom:245.770350px;}
.y138{bottom:245.912100px;}
.ye7{bottom:245.920350px;}
.y24{bottom:246.408150px;}
.y191{bottom:246.441900px;}
.y11f{bottom:247.378650px;}
.yc8{bottom:251.591700px;}
.y193{bottom:254.698200px;}
.y1b9{bottom:257.121900px;}
.y143{bottom:257.684700px;}
.y1fa{bottom:260.263500px;}
.y190{bottom:262.941900px;}
.y173{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.y107{bottom:263.785350px;}
.y137{bottom:263.912100px;}
.ye6{bottom:263.920350px;}
.y2a{bottom:264.408150px;}
.yc7{bottom:267.839700px;}
.y192{bottom:270.945900px;}
.y1b8{bottom:272.121900px;}
.y142{bottom:273.428700px;}
.y1f9{bottom:275.263500px;}
.y172{bottom:281.635350px;}
.y5a{bottom:281.770350px;}
.y22f{bottom:281.772600px;}
.y106{bottom:281.785350px;}
.y136{bottom:281.912100px;}
.ye5{bottom:281.920350px;}
.y23{bottom:282.005400px;}
.y29{bottom:282.408150px;}
.y11e{bottom:284.638650px;}
.y1b7{bottom:287.121900px;}
.y1f8{bottom:290.263500px;}
.yc6{bottom:299.351700px;}
.y171{bottom:299.635350px;}
.y59{bottom:299.770350px;}
.y22e{bottom:299.772600px;}
.y105{bottom:299.785350px;}
.y135{bottom:299.912100px;}
.ye4{bottom:299.920350px;}
.y1b6{bottom:302.121900px;}
.y18f{bottom:302.457900px;}
.y1f7{bottom:305.263500px;}
.y11d{bottom:313.642650px;}
.y1b5{bottom:317.121900px;}
.y170{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.y22d{bottom:317.772600px;}
.y104{bottom:317.785350px;}
.y134{bottom:317.912100px;}
.ye3{bottom:317.920350px;}
.y1f6{bottom:320.263500px;}
.y11c{bottom:329.890650px;}
.y1b4{bottom:332.121900px;}
.yc5{bottom:334.268850px;}
.y1f5{bottom:335.263500px;}
.y16f{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.y103{bottom:335.785350px;}
.y133{bottom:335.912100px;}
.ye2{bottom:335.920350px;}
.y18e{bottom:337.353000px;}
.y11b{bottom:346.138650px;}
.y1b3{bottom:347.121900px;}
.y1f4{bottom:350.263500px;}
.y16e{bottom:353.635350px;}
.yc4{bottom:353.768850px;}
.y56{bottom:353.770350px;}
.y22c{bottom:353.772600px;}
.y102{bottom:353.785350px;}
.y132{bottom:353.912100px;}
.ye1{bottom:353.920350px;}
.y18d{bottom:356.853000px;}
.y22{bottom:357.814200px;}
.y1b2{bottom:362.121900px;}
.y11a{bottom:362.386650px;}
.y1f3{bottom:365.263500px;}
.y16d{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.y22b{bottom:371.772600px;}
.y101{bottom:371.785350px;}
.y131{bottom:371.912100px;}
.ye0{bottom:371.920350px;}
.yc3{bottom:373.268850px;}
.y18c{bottom:376.360350px;}
.y1b1{bottom:377.121900px;}
.y119{bottom:378.646650px;}
.y1f2{bottom:380.263500px;}
.y21{bottom:385.159200px;}
.y118{bottom:386.902650px;}
.y16c{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y22a{bottom:389.772600px;}
.y100{bottom:389.785350px;}
.y130{bottom:389.912100px;}
.ydf{bottom:389.920350px;}
.y1b0{bottom:392.121900px;}
.yc2{bottom:392.768850px;}
.y1f1{bottom:395.263500px;}
.y18b{bottom:395.860350px;}
.y20{bottom:403.159200px;}
.y16b{bottom:407.635350px;}
.y53{bottom:407.770350px;}
.y229{bottom:407.772600px;}
.yff{bottom:407.785350px;}
.y12f{bottom:407.912100px;}
.yde{bottom:407.920350px;}
.y1f0{bottom:410.263500px;}
.y18a{bottom:415.360350px;}
.y1f{bottom:421.159200px;}
.y117{bottom:424.162650px;}
.y1af{bottom:425.230350px;}
.y1ef{bottom:425.263500px;}
.y16a{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y228{bottom:425.772600px;}
.yfe{bottom:425.785350px;}
.y12e{bottom:425.912100px;}
.ydd{bottom:425.920350px;}
.y189{bottom:434.860350px;}
.y1e{bottom:439.159200px;}
.y1ee{bottom:440.263500px;}
.y169{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.y227{bottom:443.772600px;}
.yfd{bottom:443.785350px;}
.y12d{bottom:443.912100px;}
.ydc{bottom:443.920350px;}
.yc1{bottom:443.933850px;}
.ya1{bottom:444.203850px;}
.y116{bottom:453.166650px;}
.y188{bottom:454.360350px;}
.y1ed{bottom:455.263500px;}
.y1d{bottom:457.159200px;}
.y168{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.y226{bottom:461.772600px;}
.yfc{bottom:461.785350px;}
.y12c{bottom:461.912100px;}
.ydb{bottom:461.920350px;}
.yc0{bottom:461.933850px;}
.ya0{bottom:462.203850px;}
.y1ec{bottom:470.263500px;}
.y187{bottom:473.860350px;}
.y1c{bottom:475.159200px;}
.y167{bottom:479.635350px;}
.y4f{bottom:479.770350px;}
.y225{bottom:479.772600px;}
.yfb{bottom:479.785350px;}
.yda{bottom:479.920350px;}
.ybf{bottom:479.933850px;}
.y1eb{bottom:485.263500px;}
.y115{bottom:485.560350px;}
.y1b{bottom:493.159200px;}
.y1ae{bottom:497.365350px;}
.y166{bottom:497.635350px;}
.y4e{bottom:497.770350px;}
.yfa{bottom:497.785350px;}
.y9f{bottom:497.798850px;}
.yd9{bottom:497.920350px;}
.ybe{bottom:497.933850px;}
.y1ea{bottom:500.263500px;}
.y114{bottom:505.060350px;}
.y1a{bottom:511.159200px;}
.y1e9{bottom:515.263500px;}
.y165{bottom:515.635350px;}
.y4d{bottom:515.770350px;}
.y224{bottom:515.772600px;}
.yf9{bottom:515.785350px;}
.yd8{bottom:515.920350px;}
.ybd{bottom:515.933850px;}
.y113{bottom:524.560350px;}
.y19{bottom:529.159200px;}
.y1e8{bottom:530.263500px;}
.y1ad{bottom:533.365350px;}
.y164{bottom:533.635350px;}
.y4c{bottom:533.770350px;}
.y223{bottom:533.772600px;}
.yf8{bottom:533.785350px;}
.yd7{bottom:533.920350px;}
.ybc{bottom:533.933850px;}
.y9e{bottom:534.053850px;}
.y1e7{bottom:545.263500px;}
.y18{bottom:547.159200px;}
.y163{bottom:551.635350px;}
.y4b{bottom:551.770350px;}
.y222{bottom:551.772600px;}
.yf7{bottom:551.785350px;}
.yd6{bottom:551.920350px;}
.ybb{bottom:551.933850px;}
.y9d{bottom:552.053850px;}
.y1e6{bottom:560.263500px;}
.y17{bottom:565.159200px;}
.y1ac{bottom:569.365350px;}
.y162{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.y221{bottom:569.772600px;}
.yf6{bottom:569.785350px;}
.yd5{bottom:569.920350px;}
.yba{bottom:569.933850px;}
.y9c{bottom:570.053850px;}
.y1e5{bottom:575.263500px;}
.y16{bottom:583.159200px;}
.y161{bottom:587.635350px;}
.y49{bottom:587.770350px;}
.y220{bottom:587.772600px;}
.yf5{bottom:587.785350px;}
.yd4{bottom:587.920350px;}
.yb9{bottom:587.933850px;}
.y9b{bottom:588.053850px;}
.y1e4{bottom:590.263500px;}
.y15{bottom:601.159200px;}
.y1e3{bottom:605.263500px;}
.y160{bottom:605.635350px;}
.y48{bottom:605.770350px;}
.y21f{bottom:605.772600px;}
.yf4{bottom:605.785350px;}
.y112{bottom:605.920350px;}
.yb8{bottom:605.933850px;}
.y9a{bottom:606.053850px;}
.y14{bottom:619.159200px;}
.y1e2{bottom:620.263500px;}
.y1ab{bottom:623.365350px;}
.yd3{bottom:623.515350px;}
.y15f{bottom:623.635350px;}
.y47{bottom:623.770350px;}
.y21e{bottom:623.772600px;}
.yf3{bottom:623.785350px;}
.y111{bottom:623.920350px;}
.yb7{bottom:623.933850px;}
.y99{bottom:624.053850px;}
.y8a{bottom:625.696650px;}
.y1e1{bottom:635.263500px;}
.y13{bottom:637.159200px;}
.y15e{bottom:641.635350px;}
.y46{bottom:641.770350px;}
.y21d{bottom:641.772600px;}
.yf2{bottom:641.785350px;}
.y110{bottom:641.920350px;}
.yb6{bottom:641.933850px;}
.y98{bottom:642.053850px;}
.y1e0{bottom:650.263500px;}
.y15d{bottom:659.635350px;}
.y45{bottom:659.770350px;}
.y21c{bottom:659.772600px;}
.yf1{bottom:659.785350px;}
.y10f{bottom:659.920350px;}
.yb5{bottom:659.933850px;}
.y97{bottom:660.053850px;}
.y1df{bottom:665.263500px;}
.y67{bottom:677.365350px;}
.y15c{bottom:677.635350px;}
.y44{bottom:677.770350px;}
.y21b{bottom:677.772600px;}
.y88{bottom:677.785350px;}
.y10e{bottom:677.920350px;}
.yb4{bottom:677.933850px;}
.y96{bottom:678.053850px;}
.y73{bottom:678.070350px;}
.y1de{bottom:680.263500px;}
.y12{bottom:682.317300px;}
.y11{bottom:694.768050px;}
.y1dd{bottom:695.263500px;}
.y15b{bottom:695.635350px;}
.y43{bottom:695.770350px;}
.y21a{bottom:695.772600px;}
.y87{bottom:695.785350px;}
.y10d{bottom:695.920350px;}
.yb3{bottom:695.933850px;}
.y95{bottom:696.053850px;}
.y72{bottom:696.070350px;}
.y1dc{bottom:710.263500px;}
.y10{bottom:711.171000px;}
.y66{bottom:713.230350px;}
.y12b{bottom:713.515350px;}
.y15a{bottom:713.635350px;}
.y42{bottom:713.770350px;}
.y219{bottom:713.772600px;}
.y86{bottom:713.785350px;}
.y10c{bottom:713.920350px;}
.yb2{bottom:713.933850px;}
.y94{bottom:714.053850px;}
.y71{bottom:714.070350px;}
.y1db{bottom:725.263500px;}
.y1aa{bottom:731.365350px;}
.y159{bottom:731.635350px;}
.y41{bottom:731.770350px;}
.y218{bottom:731.772600px;}
.y85{bottom:731.785350px;}
.y10b{bottom:731.920350px;}
.yb1{bottom:731.933850px;}
.y93{bottom:732.053850px;}
.y70{bottom:732.070350px;}
.y1da{bottom:740.263500px;}
.yf{bottom:743.608950px;}
.y158{bottom:749.635350px;}
.y40{bottom:749.770350px;}
.y217{bottom:749.772600px;}
.y84{bottom:749.785350px;}
.yb0{bottom:749.933850px;}
.y92{bottom:750.053850px;}
.y6f{bottom:750.070350px;}
.y1d9{bottom:755.263500px;}
.ye{bottom:757.108950px;}
.y10a{bottom:767.515350px;}
.y157{bottom:767.635350px;}
.y3f{bottom:767.770350px;}
.y216{bottom:767.772600px;}
.y83{bottom:767.785350px;}
.y91{bottom:768.055350px;}
.y1d8{bottom:770.263500px;}
.yd{bottom:770.608950px;}
.yc{bottom:778.683600px;}
.y1d7{bottom:785.263500px;}
.yaf{bottom:785.528850px;}
.y156{bottom:785.635350px;}
.y6e{bottom:785.665350px;}
.y3e{bottom:785.770350px;}
.y215{bottom:785.772600px;}
.y82{bottom:785.785350px;}
.y90{bottom:786.055350px;}
.yb{bottom:797.608950px;}
.y1d6{bottom:800.263500px;}
.y155{bottom:803.635350px;}
.y3d{bottom:803.770350px;}
.y214{bottom:803.772600px;}
.y81{bottom:803.785350px;}
.y8f{bottom:804.055350px;}
.ya{bottom:811.108950px;}
.y1d5{bottom:815.263500px;}
.y9{bottom:819.183600px;}
.y154{bottom:821.635350px;}
.y3c{bottom:821.770350px;}
.y213{bottom:821.772600px;}
.yae{bottom:821.783850px;}
.y80{bottom:821.785350px;}
.y6d{bottom:821.920350px;}
.y8e{bottom:822.055350px;}
.y1d4{bottom:830.263500px;}
.y8{bottom:838.108950px;}
.y109{bottom:839.365350px;}
.y153{bottom:839.635350px;}
.y3b{bottom:839.770350px;}
.y212{bottom:839.772600px;}
.yad{bottom:839.783850px;}
.y7f{bottom:839.785350px;}
.y6c{bottom:839.920350px;}
.y8d{bottom:840.055350px;}
.y1d3{bottom:845.263500px;}
.y152{bottom:857.635350px;}
.y3a{bottom:857.770350px;}
.y211{bottom:857.772600px;}
.yac{bottom:857.783850px;}
.y7e{bottom:857.785350px;}
.y6b{bottom:857.920350px;}
.y1d2{bottom:860.263500px;}
.y7{bottom:866.830950px;}
.y108{bottom:875.230350px;}
.y1d1{bottom:875.263500px;}
.y1a9{bottom:875.365350px;}
.y151{bottom:875.635350px;}
.y8c{bottom:875.650350px;}
.y39{bottom:875.770350px;}
.y210{bottom:875.772600px;}
.yab{bottom:875.783850px;}
.y7d{bottom:875.785350px;}
.y6a{bottom:875.920350px;}
.y6{bottom:887.830950px;}
.y1d0{bottom:890.263500px;}
.y38{bottom:893.770350px;}
.y20f{bottom:893.772600px;}
.yaa{bottom:893.783850px;}
.y7c{bottom:893.785350px;}
.y1cf{bottom:905.263500px;}
.y150{bottom:911.230350px;}
.y69{bottom:911.515350px;}
.y37{bottom:911.770350px;}
.y20e{bottom:911.772600px;}
.ya9{bottom:911.783850px;}
.y7b{bottom:911.785350px;}
.y1ce{bottom:920.263500px;}
.y36{bottom:929.770350px;}
.y20d{bottom:929.772600px;}
.ya8{bottom:929.783850px;}
.y7a{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y1cd{bottom:935.263500px;}
.y35{bottom:947.770350px;}
.y20c{bottom:947.772600px;}
.ya7{bottom:947.783850px;}
.y79{bottom:947.785350px;}
.y1cc{bottom:950.263500px;}
.y1cb{bottom:965.263500px;}
.y34{bottom:965.770350px;}
.y20b{bottom:965.772600px;}
.ya6{bottom:965.783850px;}
.y78{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y1ca{bottom:980.263500px;}
.y33{bottom:983.770350px;}
.y20a{bottom:983.772600px;}
.ya5{bottom:983.783850px;}
.y77{bottom:983.785350px;}
.y1c9{bottom:995.263500px;}
.y32{bottom:1001.770350px;}
.y209{bottom:1001.772600px;}
.ya4{bottom:1001.783850px;}
.y76{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y1c8{bottom:1010.263500px;}
.y31{bottom:1019.770350px;}
.ya3{bottom:1019.783850px;}
.y75{bottom:1019.785350px;}
.y1c7{bottom:1025.263500px;}
.y208{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.ya2{bottom:1037.783850px;}
.y74{bottom:1037.785350px;}
.y1c6{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y12a{bottom:1132.378650px;}
.y181{bottom:1132.413150px;}
.y1c5{bottom:1132.413900px;}
.y1a3{bottom:1132.418550px;}
.y68{bottom:1132.418700px;}
.y186{bottom:1132.421700px;}
.y207{bottom:1132.423500px;}
.y8b{bottom:1132.424400px;}
.y14f{bottom:1132.442700px;}
.yd2{bottom:1132.463700px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h8{height:16.553158px;}
.h6{height:19.125417px;}
.h9{height:28.393066px;}
.h2{height:30.577148px;}
.he{height:32.783203px;}
.h7{height:32.805176px;}
.h15{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.hd{height:41.689453px;}
.h1b{height:42.100987px;}
.h1a{height:42.101588px;}
.h11{height:42.117188px;}
.h19{height:42.118387px;}
.ha{height:43.681641px;}
.hb{height:43.710938px;}
.h16{height:47.140720px;}
.h18{height:47.164720px;}
.hc{height:52.646484px;}
.h12{height:53.172188px;}
.h1c{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h17{height:58.926500px;}
.h13{height:58.955900px;}
.h14{height:75.093188px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x16{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x21{left:102.047250px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x23{left:123.307050px;}
.x3{left:125.439150px;}
.x6{left:131.811000px;}
.x14{left:153.293550px;}
.x17{left:211.100400px;}
.x5{left:212.876400px;}
.x1c{left:358.726500px;}
.x1b{left:360.114450px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x19{left:474.169350px;}
.x12{left:478.345350px;}
.x7{left:480.471000px;}
.x22{left:482.591250px;}
.xe{left:491.105400px;}
.x1f{left:503.858400px;}
.x13{left:512.365350px;}
.x8{left:514.491000px;}
.x18{left:522.985350px;}
.xf{left:525.275400px;}
.x1a{left:579.420450px;}
.x1e{left:596.110350px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x1d{left:721.719600px;}
.x10{left:728.391600px;}
.x20{left:743.870400px;}
.x15{left:749.645700px;}
@media print{
.v7{vertical-align:-25.122667pt;}
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-16.721600pt;}
.v5{vertical-align:-10.402667pt;}
.v9{vertical-align:-8.467200pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.440000pt;}
.v4{vertical-align:9.826667pt;}
.va{vertical-align:20.098133pt;}
.v6{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.v8{vertical-align:29.312000pt;}
.ls73{letter-spacing:-3.157333pt;}
.ls9f{letter-spacing:-2.346667pt;}
.lsa4{letter-spacing:-2.090667pt;}
.ls4a{letter-spacing:-1.578667pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls3b{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.320000pt;}
.lsa3{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls39{letter-spacing:-0.160000pt;}
.ls96{letter-spacing:-0.128000pt;}
.ls42{letter-spacing:-0.106667pt;}
.lsa0{letter-spacing:-0.085333pt;}
.ls3a{letter-spacing:-0.053333pt;}
.ls97{letter-spacing:-0.042667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003403pt;}
.ls2{letter-spacing:0.003680pt;}
.ls6e{letter-spacing:0.005333pt;}
.ls6c{letter-spacing:0.011733pt;}
.ls71{letter-spacing:0.024000pt;}
.ls70{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.053333pt;}
.ls8f{letter-spacing:0.085333pt;}
.ls66{letter-spacing:0.093280pt;}
.ls6f{letter-spacing:0.099499pt;}
.ls12{letter-spacing:0.106667pt;}
.ls8d{letter-spacing:0.128000pt;}
.ls65{letter-spacing:0.133867pt;}
.ls13{letter-spacing:0.160000pt;}
.ls6d{letter-spacing:0.170667pt;}
.ls6{letter-spacing:0.213333pt;}
.lsa1{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.266667pt;}
.ls88{letter-spacing:0.298667pt;}
.ls17{letter-spacing:0.320000pt;}
.ls91{letter-spacing:0.341333pt;}
.ls64{letter-spacing:0.342027pt;}
.ls68{letter-spacing:0.373120pt;}
.ls2d{letter-spacing:0.373333pt;}
.ls8a{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.426667pt;}
.ls59{letter-spacing:0.435307pt;}
.ls9b{letter-spacing:0.469333pt;}
.lsa{letter-spacing:0.480000pt;}
.ls7d{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.533333pt;}
.ls5a{letter-spacing:0.554667pt;}
.ls21{letter-spacing:0.586667pt;}
.ls79{letter-spacing:0.597333pt;}
.ls63{letter-spacing:0.619733pt;}
.ls67{letter-spacing:0.630933pt;}
.ls10{letter-spacing:0.640000pt;}
.ls6b{letter-spacing:0.641067pt;}
.ls94{letter-spacing:0.682667pt;}
.ls56{letter-spacing:0.684053pt;}
.ls15{letter-spacing:0.693333pt;}
.ls58{letter-spacing:0.694400pt;}
.ls5d{letter-spacing:0.725333pt;}
.ls32{letter-spacing:0.746667pt;}
.ls87{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls85{letter-spacing:0.810667pt;}
.ls62{letter-spacing:0.839520pt;}
.ls46{letter-spacing:0.853333pt;}
.ls7e{letter-spacing:0.896000pt;}
.ls20{letter-spacing:0.906667pt;}
.ls5e{letter-spacing:0.938667pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls7a{letter-spacing:0.981333pt;}
.ls6a{letter-spacing:0.994987pt;}
.ls2c{letter-spacing:1.013333pt;}
.ls89{letter-spacing:1.024000pt;}
.ls37{letter-spacing:1.066667pt;}
.ls90{letter-spacing:1.109333pt;}
.ls24{letter-spacing:1.120000pt;}
.ls7b{letter-spacing:1.152000pt;}
.ls28{letter-spacing:1.173333pt;}
.ls99{letter-spacing:1.194667pt;}
.ls2e{letter-spacing:1.226667pt;}
.ls84{letter-spacing:1.237333pt;}
.ls60{letter-spacing:1.243733pt;}
.ls3d{letter-spacing:1.280000pt;}
.ls9c{letter-spacing:1.322667pt;}
.ls1d{letter-spacing:1.333333pt;}
.ls95{letter-spacing:1.365333pt;}
.ls33{letter-spacing:1.386667pt;}
.ls82{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.440000pt;}
.ls81{letter-spacing:1.450667pt;}
.ls61{letter-spacing:1.456000pt;}
.ls55{letter-spacing:1.492480pt;}
.ls5{letter-spacing:1.493333pt;}
.ls5b{letter-spacing:1.536000pt;}
.ls30{letter-spacing:1.546667pt;}
.ls5c{letter-spacing:1.578667pt;}
.ls2b{letter-spacing:1.600000pt;}
.ls7f{letter-spacing:1.621333pt;}
.ls2a{letter-spacing:1.653333pt;}
.ls69{letter-spacing:1.678933pt;}
.lsb{letter-spacing:1.706667pt;}
.ls92{letter-spacing:1.749333pt;}
.ls1e{letter-spacing:1.760000pt;}
.ls49{letter-spacing:1.772320pt;}
.ls8b{letter-spacing:1.792000pt;}
.ls8{letter-spacing:1.813333pt;}
.ls29{letter-spacing:1.866667pt;}
.ls86{letter-spacing:1.877333pt;}
.ls7{letter-spacing:1.920000pt;}
.ls98{letter-spacing:1.962667pt;}
.ls11{letter-spacing:1.973333pt;}
.ls8c{letter-spacing:2.005333pt;}
.ls31{letter-spacing:2.026667pt;}
.ls9d{letter-spacing:2.048000pt;}
.ls19{letter-spacing:2.080000pt;}
.ls7c{letter-spacing:2.090667pt;}
.ls14{letter-spacing:2.133333pt;}
.ls5f{letter-spacing:2.138667pt;}
.ls35{letter-spacing:2.186667pt;}
.ls4e{letter-spacing:2.240000pt;}
.ls83{letter-spacing:2.261333pt;}
.ls4d{letter-spacing:2.293333pt;}
.ls1b{letter-spacing:2.346667pt;}
.ls25{letter-spacing:2.400000pt;}
.ls57{letter-spacing:2.453333pt;}
.ls3c{letter-spacing:2.506667pt;}
.ls36{letter-spacing:2.560000pt;}
.ls54{letter-spacing:2.570667pt;}
.ls2f{letter-spacing:2.613333pt;}
.ls38{letter-spacing:2.666667pt;}
.ls93{letter-spacing:2.688000pt;}
.ls18{letter-spacing:2.720000pt;}
.ls40{letter-spacing:2.773333pt;}
.ls53{letter-spacing:2.826667pt;}
.ls4f{letter-spacing:2.880000pt;}
.ls4b{letter-spacing:2.933333pt;}
.ls8e{letter-spacing:2.944000pt;}
.ls50{letter-spacing:2.986667pt;}
.ls43{letter-spacing:3.040000pt;}
.ls1a{letter-spacing:3.093333pt;}
.ls9a{letter-spacing:3.114667pt;}
.ls44{letter-spacing:3.146667pt;}
.ls77{letter-spacing:3.200000pt;}
.ls80{letter-spacing:3.253333pt;}
.ls52{letter-spacing:3.360000pt;}
.ls9e{letter-spacing:3.370667pt;}
.ls45{letter-spacing:3.413333pt;}
.ls3f{letter-spacing:3.520000pt;}
.ls3e{letter-spacing:3.573333pt;}
.ls75{letter-spacing:3.626667pt;}
.ls34{letter-spacing:3.733333pt;}
.ls51{letter-spacing:3.893333pt;}
.ls23{letter-spacing:4.266667pt;}
.ls4{letter-spacing:4.533333pt;}
.ls4c{letter-spacing:4.693333pt;}
.lsa2{letter-spacing:5.013333pt;}
.ls78{letter-spacing:5.120000pt;}
.ls74{letter-spacing:5.813333pt;}
.ls76{letter-spacing:7.626667pt;}
.ls1{letter-spacing:52.918112pt;}
.ls0{letter-spacing:52.918645pt;}
.ls48{letter-spacing:231.808000pt;}
.ls72{letter-spacing:277.174933pt;}
.ls47{letter-spacing:441.130667pt;}
.ls41{letter-spacing:2182.485867pt;}
.wsc4{word-spacing:-42.538667pt;}
.ws8c{word-spacing:-18.080000pt;}
.ws2{word-spacing:-15.568000pt;}
.ws60{word-spacing:-15.360000pt;}
.ws5f{word-spacing:-14.933333pt;}
.ws4c{word-spacing:-14.826667pt;}
.ws9f{word-spacing:-13.354667pt;}
.ws61{word-spacing:-13.333333pt;}
.wsa1{word-spacing:-12.458667pt;}
.wsc8{word-spacing:-12.288000pt;}
.ws9e{word-spacing:-12.245333pt;}
.wsbf{word-spacing:-12.202667pt;}
.ws9b{word-spacing:-12.160000pt;}
.wsdb{word-spacing:-11.989333pt;}
.wsc9{word-spacing:-11.946667pt;}
.ws99{word-spacing:-11.904000pt;}
.ws4{word-spacing:-11.861333pt;}
.ws9d{word-spacing:-11.733333pt;}
.wsc0{word-spacing:-11.605333pt;}
.wsd9{word-spacing:-11.562667pt;}
.wsc3{word-spacing:-11.434667pt;}
.ws96{word-spacing:-11.392000pt;}
.wsc1{word-spacing:-11.349333pt;}
.wsdd{word-spacing:-11.264000pt;}
.wsc6{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.ws97{word-spacing:-11.093333pt;}
.wsda{word-spacing:-11.050667pt;}
.wsc5{word-spacing:-10.880000pt;}
.ws9c{word-spacing:-10.837333pt;}
.ws98{word-spacing:-10.794667pt;}
.wsa0{word-spacing:-10.752000pt;}
.ws7b{word-spacing:-10.666667pt;}
.wsc7{word-spacing:-10.581333pt;}
.ws9a{word-spacing:-10.538667pt;}
.ws27{word-spacing:-9.545653pt;}
.ws4f{word-spacing:-9.265813pt;}
.ws0{word-spacing:-9.076144pt;}
.ws74{word-spacing:-9.017067pt;}
.ws79{word-spacing:-8.768320pt;}
.ws75{word-spacing:-8.612853pt;}
.wsdc{word-spacing:-8.576000pt;}
.ws4e{word-spacing:-8.457387pt;}
.wsc2{word-spacing:-8.320000pt;}
.ws78{word-spacing:-8.146453pt;}
.ws76{word-spacing:-8.115360pt;}
.ws77{word-spacing:-7.866613pt;}
.ws4d{word-spacing:-7.773333pt;}
.ws7a{word-spacing:-6.318165pt;}
.ws62{word-spacing:-6.218667pt;}
.ws57{word-spacing:-3.893333pt;}
.ws64{word-spacing:-3.146667pt;}
.ws4b{word-spacing:-2.986667pt;}
.ws65{word-spacing:-2.933333pt;}
.ws1d{word-spacing:-2.773333pt;}
.ws38{word-spacing:-2.720000pt;}
.wsb8{word-spacing:-2.688000pt;}
.ws6{word-spacing:-2.565333pt;}
.ws22{word-spacing:-2.506667pt;}
.wsd2{word-spacing:-2.346667pt;}
.ws1f{word-spacing:-2.186667pt;}
.ws69{word-spacing:-2.080000pt;}
.wsd3{word-spacing:-2.048000pt;}
.ws66{word-spacing:-2.026667pt;}
.ws1a{word-spacing:-1.973333pt;}
.wsd5{word-spacing:-1.877333pt;}
.ws83{word-spacing:-1.813333pt;}
.wsd8{word-spacing:-1.792000pt;}
.ws6c{word-spacing:-1.760000pt;}
.wsb7{word-spacing:-1.749333pt;}
.ws37{word-spacing:-1.653333pt;}
.wsbd{word-spacing:-1.621333pt;}
.ws39{word-spacing:-1.600000pt;}
.wsb5{word-spacing:-1.578667pt;}
.wscc{word-spacing:-1.493333pt;}
.ws95{word-spacing:-1.450667pt;}
.ws8e{word-spacing:-1.386667pt;}
.wse0{word-spacing:-1.322667pt;}
.wsd7{word-spacing:-1.280000pt;}
.wsae{word-spacing:-1.237333pt;}
.wsd6{word-spacing:-1.152000pt;}
.wsb4{word-spacing:-1.066667pt;}
.wsa6{word-spacing:-1.024000pt;}
.ws94{word-spacing:-0.981333pt;}
.ws7f{word-spacing:-0.960000pt;}
.wsca{word-spacing:-0.938667pt;}
.wsaf{word-spacing:-0.896000pt;}
.ws6d{word-spacing:-0.853333pt;}
.wsa2{word-spacing:-0.810667pt;}
.ws23{word-spacing:-0.800000pt;}
.ws5d{word-spacing:-0.768000pt;}
.wsb9{word-spacing:-0.682667pt;}
.ws92{word-spacing:-0.597333pt;}
.ws6a{word-spacing:-0.533333pt;}
.wsd1{word-spacing:-0.469333pt;}
.ws6b{word-spacing:-0.435307pt;}
.ws18{word-spacing:-0.426667pt;}
.wsa7{word-spacing:-0.384000pt;}
.ws40{word-spacing:-0.373333pt;}
.ws44{word-spacing:-0.320000pt;}
.wsa3{word-spacing:-0.298667pt;}
.ws25{word-spacing:-0.266667pt;}
.wsa4{word-spacing:-0.213333pt;}
.wsb2{word-spacing:-0.170667pt;}
.ws13{word-spacing:-0.160000pt;}
.wsac{word-spacing:-0.128000pt;}
.ws7d{word-spacing:-0.106667pt;}
.wsad{word-spacing:-0.085333pt;}
.wsa{word-spacing:-0.053333pt;}
.wsce{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.042667pt;}
.ws42{word-spacing:0.053333pt;}
.wsb0{word-spacing:0.085333pt;}
.ws10{word-spacing:0.106667pt;}
.wsa5{word-spacing:0.128000pt;}
.ws11{word-spacing:0.160000pt;}
.ws89{word-spacing:0.213333pt;}
.wsd0{word-spacing:0.256000pt;}
.ws35{word-spacing:0.266667pt;}
.ws7{word-spacing:0.320000pt;}
.ws20{word-spacing:0.373333pt;}
.ws72{word-spacing:0.384000pt;}
.ws3e{word-spacing:0.426667pt;}
.wscb{word-spacing:0.469333pt;}
.ws43{word-spacing:0.586667pt;}
.ws12{word-spacing:0.640000pt;}
.wscf{word-spacing:0.682667pt;}
.ws8f{word-spacing:0.693333pt;}
.ws48{word-spacing:0.800000pt;}
.ws3d{word-spacing:0.853333pt;}
.wse{word-spacing:0.906667pt;}
.wsbb{word-spacing:0.938667pt;}
.ws3a{word-spacing:0.960000pt;}
.ws86{word-spacing:0.981333pt;}
.ws14{word-spacing:1.013333pt;}
.ws7c{word-spacing:1.120000pt;}
.wsbc{word-spacing:1.152000pt;}
.ws8a{word-spacing:1.173333pt;}
.wsbe{word-spacing:1.280000pt;}
.wscd{word-spacing:1.322667pt;}
.ws17{word-spacing:1.333333pt;}
.ws73{word-spacing:1.365333pt;}
.ws15{word-spacing:1.386667pt;}
.ws6e{word-spacing:1.440000pt;}
.wsb6{word-spacing:1.536000pt;}
.ws5e{word-spacing:1.578667pt;}
.ws45{word-spacing:1.600000pt;}
.wsde{word-spacing:1.621333pt;}
.ws46{word-spacing:1.653333pt;}
.wsba{word-spacing:1.706667pt;}
.wsb3{word-spacing:1.749333pt;}
.ws3f{word-spacing:1.760000pt;}
.ws68{word-spacing:1.813333pt;}
.ws71{word-spacing:1.834667pt;}
.ws59{word-spacing:1.866667pt;}
.ws5a{word-spacing:1.920000pt;}
.wsab{word-spacing:2.005333pt;}
.ws32{word-spacing:2.026667pt;}
.ws67{word-spacing:2.080000pt;}
.ws82{word-spacing:2.133333pt;}
.wse1{word-spacing:2.176000pt;}
.wsf{word-spacing:2.186667pt;}
.ws41{word-spacing:2.293333pt;}
.wsb1{word-spacing:2.304000pt;}
.ws84{word-spacing:2.400000pt;}
.ws58{word-spacing:2.453333pt;}
.ws85{word-spacing:2.474667pt;}
.ws47{word-spacing:2.506667pt;}
.ws93{word-spacing:2.517333pt;}
.wsdf{word-spacing:2.560000pt;}
.ws1c{word-spacing:2.613333pt;}
.ws88{word-spacing:2.666667pt;}
.wsaa{word-spacing:2.688000pt;}
.ws21{word-spacing:2.720000pt;}
.wsa8{word-spacing:2.730667pt;}
.wse2{word-spacing:2.773333pt;}
.wsd{word-spacing:2.826667pt;}
.ws34{word-spacing:2.880000pt;}
.ws1e{word-spacing:2.986667pt;}
.ws80{word-spacing:3.040000pt;}
.ws36{word-spacing:3.093333pt;}
.ws8b{word-spacing:3.157333pt;}
.wsc{word-spacing:3.200000pt;}
.wsd4{word-spacing:3.242667pt;}
.ws26{word-spacing:3.253333pt;}
.ws16{word-spacing:3.306667pt;}
.ws90{word-spacing:3.413333pt;}
.ws4a{word-spacing:3.466667pt;}
.ws6f{word-spacing:3.498667pt;}
.ws1b{word-spacing:3.520000pt;}
.ws70{word-spacing:3.541333pt;}
.ws3b{word-spacing:3.573333pt;}
.wsb{word-spacing:3.626667pt;}
.ws49{word-spacing:3.680000pt;}
.ws33{word-spacing:3.733333pt;}
.ws19{word-spacing:3.840000pt;}
.ws7e{word-spacing:3.893333pt;}
.ws24{word-spacing:3.946667pt;}
.ws5c{word-spacing:4.000000pt;}
.ws8d{word-spacing:4.106667pt;}
.ws3c{word-spacing:4.160000pt;}
.ws81{word-spacing:4.213333pt;}
.ws63{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws5b{word-spacing:4.853333pt;}
.ws91{word-spacing:4.906667pt;}
.ws1{word-spacing:43.841803pt;}
.ws29{word-spacing:162.773333pt;}
.ws2b{word-spacing:163.584000pt;}
.ws2f{word-spacing:164.352000pt;}
.ws2d{word-spacing:184.576000pt;}
.ws2e{word-spacing:192.170667pt;}
.ws2c{word-spacing:193.834667pt;}
.ws30{word-spacing:194.645333pt;}
.ws87{word-spacing:195.712000pt;}
.ws28{word-spacing:201.088000pt;}
.ws54{word-spacing:261.248000pt;}
.ws56{word-spacing:273.536000pt;}
.ws31{word-spacing:387.797333pt;}
.ws2a{word-spacing:409.130667pt;}
.ws52{word-spacing:518.400000pt;}
.ws50{word-spacing:573.568000pt;}
.ws55{word-spacing:578.688000pt;}
.ws53{word-spacing:597.248000pt;}
.ws51{word-spacing:686.208000pt;}
._b{margin-left:-2576.085333pt;}
._c{margin-left:-2554.922667pt;}
._7{margin-left:-7.626667pt;}
._d{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.548800pt;}
._0{margin-left:-2.053333pt;}
._4{margin-left:-0.960000pt;}
._5{width:0.906667pt;}
._e{width:1.840000pt;}
._8{width:2.752000pt;}
._6{width:4.480000pt;}
._a{width:5.760000pt;}
._9{width:7.253333pt;}
._23{width:8.882133pt;}
._3{width:53.448203pt;}
._21{width:162.773333pt;}
._10{width:178.176000pt;}
._11{width:193.450667pt;}
._12{width:194.645333pt;}
._15{width:200.576000pt;}
._1e{width:203.434667pt;}
._13{width:206.976000pt;}
._16{width:214.101333pt;}
._22{width:218.837333pt;}
._3f{width:228.954667pt;}
._19{width:230.176000pt;}
._1a{width:231.808000pt;}
._17{width:240.170667pt;}
._3e{width:253.490133pt;}
._25{width:264.320000pt;}
._2f{width:278.016000pt;}
._f{width:288.341333pt;}
._1b{width:312.885333pt;}
._3b{width:322.858667pt;}
._1f{width:333.450667pt;}
._14{width:335.914667pt;}
._18{width:344.192000pt;}
._27{width:363.349333pt;}
._20{width:365.276800pt;}
._2d{width:395.818667pt;}
._1d{width:398.464000pt;}
._39{width:400.512000pt;}
._33{width:407.906133pt;}
._3c{width:414.122667pt;}
._1c{width:419.797333pt;}
._36{width:427.365333pt;}
._3d{width:428.800000pt;}
._26{width:446.380800pt;}
._34{width:459.861333pt;}
._32{width:483.456000pt;}
._49{width:502.733867pt;}
._45{width:504.100267pt;}
._44{width:505.341333pt;}
._48{width:507.722133pt;}
._42{width:510.771200pt;}
._24{width:517.888000pt;}
._30{width:521.984000pt;}
._2a{width:524.970667pt;}
._31{width:526.848000pt;}
._38{width:542.890667pt;}
._37{width:555.861333pt;}
._29{width:569.386667pt;}
._28{width:573.653333pt;}
._2c{width:580.053333pt;}
._2e{width:589.653333pt;}
._35{width:594.901333pt;}
._3a{width:596.096000pt;}
._2b{width:702.208000pt;}
._41{width:732.373333pt;}
._47{width:806.478933pt;}
._4a{width:808.735467pt;}
._46{width:810.100800pt;}
._43{width:814.048533pt;}
._40{width:995.029333pt;}
.fs7{font-size:20.210667pt;}
.fs5{font-size:23.320000pt;}
.fsc{font-size:24.874667pt;}
.fsb{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs9{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;}
.y2f{bottom:42.468667pt;}
.y206{bottom:71.345333pt;}
.y180{bottom:73.698800pt;}
.y185{bottom:74.071600pt;}
.y17d{bottom:74.336533pt;}
.y1a8{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.y141{bottom:74.588533pt;}
.yf0{bottom:74.595867pt;}
.y89{bottom:74.768933pt;}
.y14e{bottom:75.074400pt;}
.y2c{bottom:78.246000pt;}
.y1c4{bottom:81.886133pt;}
.y1a2{bottom:81.936400pt;}
.y129{bottom:82.068133pt;}
.yd1{bottom:82.314400pt;}
.y205{bottom:84.678667pt;}
.y17f{bottom:87.698800pt;}
.y184{bottom:88.066267pt;}
.y14d{bottom:89.069067pt;}
.y17c{bottom:90.336533pt;}
.y1a7{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.y140{bottom:90.588533pt;}
.yef{bottom:90.595867pt;}
.y2b{bottom:91.576000pt;}
.y19f{bottom:93.548800pt;}
.y1c3{bottom:95.219467pt;}
.y1a1{bottom:96.382667pt;}
.y128{bottom:96.521467pt;}
.y204{bottom:98.012000pt;}
.y17e{bottom:101.693467pt;}
.y183{bottom:102.060933pt;}
.y14c{bottom:103.063733pt;}
.y127{bottom:103.860133pt;}
.y17b{bottom:106.336533pt;}
.y1a6{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.y13f{bottom:106.588533pt;}
.yee{bottom:106.595867pt;}
.yd0{bottom:108.095733pt;}
.y1c2{bottom:108.552800pt;}
.y1a0{bottom:110.828800pt;}
.y203{bottom:111.345333pt;}
.y182{bottom:116.055600pt;}
.y14b{bottom:117.058400pt;}
.y1c1{bottom:121.886133pt;}
.y17a{bottom:122.336533pt;}
.y1a5{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.ycf{bottom:122.538400pt;}
.y13e{bottom:122.588533pt;}
.yed{bottom:122.595867pt;}
.y202{bottom:124.678667pt;}
.y19e{bottom:125.274933pt;}
.y126{bottom:125.641467pt;}
.y14a{bottom:131.053067pt;}
.y19b{bottom:132.386133pt;}
.y1c0{bottom:135.219467pt;}
.yce{bottom:136.981067pt;}
.y201{bottom:138.012000pt;}
.y179{bottom:138.336533pt;}
.y61{bottom:138.462533pt;}
.y13d{bottom:138.588533pt;}
.yec{bottom:138.595867pt;}
.y19d{bottom:139.721200pt;}
.y125{bottom:140.084133pt;}
.y149{bottom:145.085067pt;}
.y19a{bottom:147.052800pt;}
.y1bf{bottom:148.552800pt;}
.y200{bottom:151.345333pt;}
.ycd{bottom:151.423733pt;}
.y1a4{bottom:153.982533pt;}
.y19c{bottom:154.167467pt;}
.y178{bottom:154.336533pt;}
.y60{bottom:154.462533pt;}
.y124{bottom:154.526800pt;}
.y13c{bottom:154.588533pt;}
.yeb{bottom:154.595867pt;}
.y28{bottom:155.029467pt;}
.y148{bottom:159.079733pt;}
.y1be{bottom:161.886133pt;}
.y1ff{bottom:164.678667pt;}
.ycc{bottom:165.866400pt;}
.y199{bottom:168.613600pt;}
.y123{bottom:168.980133pt;}
.y177{bottom:170.336533pt;}
.y5f{bottom:170.462533pt;}
.y13b{bottom:170.588533pt;}
.yea{bottom:170.595867pt;}
.y27{bottom:171.029467pt;}
.y147{bottom:173.074400pt;}
.y1bd{bottom:175.219467pt;}
.y196{bottom:175.724667pt;}
.y122{bottom:176.318800pt;}
.y1fe{bottom:178.012000pt;}
.ycb{bottom:180.309067pt;}
.y198{bottom:183.059733pt;}
.y176{bottom:186.336533pt;}
.y5e{bottom:186.462533pt;}
.y13a{bottom:186.588533pt;}
.ye9{bottom:186.595867pt;}
.y26{bottom:187.029467pt;}
.y146{bottom:187.069067pt;}
.y1bc{bottom:188.552800pt;}
.y195{bottom:190.391333pt;}
.y1fd{bottom:191.345333pt;}
.yca{bottom:194.751733pt;}
.y197{bottom:197.506000pt;}
.y121{bottom:198.100133pt;}
.y145{bottom:201.063733pt;}
.y1bb{bottom:201.886133pt;}
.y175{bottom:202.342533pt;}
.y5d{bottom:202.462533pt;}
.y139{bottom:202.588533pt;}
.ye8{bottom:202.595867pt;}
.y25{bottom:203.029467pt;}
.y1fc{bottom:204.678667pt;}
.yc9{bottom:209.194400pt;}
.y194{bottom:211.952133pt;}
.y120{bottom:212.553467pt;}
.y144{bottom:215.058400pt;}
.y1ba{bottom:215.219467pt;}
.y1fb{bottom:218.012000pt;}
.y174{bottom:218.342533pt;}
.y5c{bottom:218.462533pt;}
.y138{bottom:218.588533pt;}
.ye7{bottom:218.595867pt;}
.y24{bottom:219.029467pt;}
.y191{bottom:219.059467pt;}
.y11f{bottom:219.892133pt;}
.yc8{bottom:223.637067pt;}
.y193{bottom:226.398400pt;}
.y1b9{bottom:228.552800pt;}
.y143{bottom:229.053067pt;}
.y1fa{bottom:231.345333pt;}
.y190{bottom:233.726133pt;}
.y173{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.y107{bottom:234.475867pt;}
.y137{bottom:234.588533pt;}
.ye6{bottom:234.595867pt;}
.y2a{bottom:235.029467pt;}
.yc7{bottom:238.079733pt;}
.y192{bottom:240.840800pt;}
.y1b8{bottom:241.886133pt;}
.y142{bottom:243.047733pt;}
.y1f9{bottom:244.678667pt;}
.y172{bottom:250.342533pt;}
.y5a{bottom:250.462533pt;}
.y22f{bottom:250.464533pt;}
.y106{bottom:250.475867pt;}
.y136{bottom:250.588533pt;}
.ye5{bottom:250.595867pt;}
.y23{bottom:250.671467pt;}
.y29{bottom:251.029467pt;}
.y11e{bottom:253.012133pt;}
.y1b7{bottom:255.219467pt;}
.y1f8{bottom:258.012000pt;}
.yc6{bottom:266.090400pt;}
.y171{bottom:266.342533pt;}
.y59{bottom:266.462533pt;}
.y22e{bottom:266.464533pt;}
.y105{bottom:266.475867pt;}
.y135{bottom:266.588533pt;}
.ye4{bottom:266.595867pt;}
.y1b6{bottom:268.552800pt;}
.y18f{bottom:268.851467pt;}
.y1f7{bottom:271.345333pt;}
.y11d{bottom:278.793467pt;}
.y1b5{bottom:281.886133pt;}
.y170{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.y22d{bottom:282.464533pt;}
.y104{bottom:282.475867pt;}
.y134{bottom:282.588533pt;}
.ye3{bottom:282.595867pt;}
.y1f6{bottom:284.678667pt;}
.y11c{bottom:293.236133pt;}
.y1b4{bottom:295.219467pt;}
.yc5{bottom:297.127867pt;}
.y1f5{bottom:298.012000pt;}
.y16f{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.y103{bottom:298.475867pt;}
.y133{bottom:298.588533pt;}
.ye2{bottom:298.595867pt;}
.y18e{bottom:299.869333pt;}
.y11b{bottom:307.678800pt;}
.y1b3{bottom:308.552800pt;}
.y1f4{bottom:311.345333pt;}
.y16e{bottom:314.342533pt;}
.yc4{bottom:314.461200pt;}
.y56{bottom:314.462533pt;}
.y22c{bottom:314.464533pt;}
.y102{bottom:314.475867pt;}
.y132{bottom:314.588533pt;}
.ye1{bottom:314.595867pt;}
.y18d{bottom:317.202667pt;}
.y22{bottom:318.057067pt;}
.y1b2{bottom:321.886133pt;}
.y11a{bottom:322.121467pt;}
.y1f3{bottom:324.678667pt;}
.y16d{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.y22b{bottom:330.464533pt;}
.y101{bottom:330.475867pt;}
.y131{bottom:330.588533pt;}
.ye0{bottom:330.595867pt;}
.yc3{bottom:331.794533pt;}
.y18c{bottom:334.542533pt;}
.y1b1{bottom:335.219467pt;}
.y119{bottom:336.574800pt;}
.y1f2{bottom:338.012000pt;}
.y21{bottom:342.363733pt;}
.y118{bottom:343.913467pt;}
.y16c{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y22a{bottom:346.464533pt;}
.y100{bottom:346.475867pt;}
.y130{bottom:346.588533pt;}
.ydf{bottom:346.595867pt;}
.y1b0{bottom:348.552800pt;}
.yc2{bottom:349.127867pt;}
.y1f1{bottom:351.345333pt;}
.y18b{bottom:351.875867pt;}
.y20{bottom:358.363733pt;}
.y16b{bottom:362.342533pt;}
.y53{bottom:362.462533pt;}
.y229{bottom:362.464533pt;}
.yff{bottom:362.475867pt;}
.y12f{bottom:362.588533pt;}
.yde{bottom:362.595867pt;}
.y1f0{bottom:364.678667pt;}
.y18a{bottom:369.209200pt;}
.y1f{bottom:374.363733pt;}
.y117{bottom:377.033467pt;}
.y1af{bottom:377.982533pt;}
.y1ef{bottom:378.012000pt;}
.y16a{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y228{bottom:378.464533pt;}
.yfe{bottom:378.475867pt;}
.y12e{bottom:378.588533pt;}
.ydd{bottom:378.595867pt;}
.y189{bottom:386.542533pt;}
.y1e{bottom:390.363733pt;}
.y1ee{bottom:391.345333pt;}
.y169{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.y227{bottom:394.464533pt;}
.yfd{bottom:394.475867pt;}
.y12d{bottom:394.588533pt;}
.ydc{bottom:394.595867pt;}
.yc1{bottom:394.607867pt;}
.ya1{bottom:394.847867pt;}
.y116{bottom:402.814800pt;}
.y188{bottom:403.875867pt;}
.y1ed{bottom:404.678667pt;}
.y1d{bottom:406.363733pt;}
.y168{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.y226{bottom:410.464533pt;}
.yfc{bottom:410.475867pt;}
.y12c{bottom:410.588533pt;}
.ydb{bottom:410.595867pt;}
.yc0{bottom:410.607867pt;}
.ya0{bottom:410.847867pt;}
.y1ec{bottom:418.012000pt;}
.y187{bottom:421.209200pt;}
.y1c{bottom:422.363733pt;}
.y167{bottom:426.342533pt;}
.y4f{bottom:426.462533pt;}
.y225{bottom:426.464533pt;}
.yfb{bottom:426.475867pt;}
.yda{bottom:426.595867pt;}
.ybf{bottom:426.607867pt;}
.y1eb{bottom:431.345333pt;}
.y115{bottom:431.609200pt;}
.y1b{bottom:438.363733pt;}
.y1ae{bottom:442.102533pt;}
.y166{bottom:442.342533pt;}
.y4e{bottom:442.462533pt;}
.yfa{bottom:442.475867pt;}
.y9f{bottom:442.487867pt;}
.yd9{bottom:442.595867pt;}
.ybe{bottom:442.607867pt;}
.y1ea{bottom:444.678667pt;}
.y114{bottom:448.942533pt;}
.y1a{bottom:454.363733pt;}
.y1e9{bottom:458.012000pt;}
.y165{bottom:458.342533pt;}
.y4d{bottom:458.462533pt;}
.y224{bottom:458.464533pt;}
.yf9{bottom:458.475867pt;}
.yd8{bottom:458.595867pt;}
.ybd{bottom:458.607867pt;}
.y113{bottom:466.275867pt;}
.y19{bottom:470.363733pt;}
.y1e8{bottom:471.345333pt;}
.y1ad{bottom:474.102533pt;}
.y164{bottom:474.342533pt;}
.y4c{bottom:474.462533pt;}
.y223{bottom:474.464533pt;}
.yf8{bottom:474.475867pt;}
.yd7{bottom:474.595867pt;}
.ybc{bottom:474.607867pt;}
.y9e{bottom:474.714533pt;}
.y1e7{bottom:484.678667pt;}
.y18{bottom:486.363733pt;}
.y163{bottom:490.342533pt;}
.y4b{bottom:490.462533pt;}
.y222{bottom:490.464533pt;}
.yf7{bottom:490.475867pt;}
.yd6{bottom:490.595867pt;}
.ybb{bottom:490.607867pt;}
.y9d{bottom:490.714533pt;}
.y1e6{bottom:498.012000pt;}
.y17{bottom:502.363733pt;}
.y1ac{bottom:506.102533pt;}
.y162{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.y221{bottom:506.464533pt;}
.yf6{bottom:506.475867pt;}
.yd5{bottom:506.595867pt;}
.yba{bottom:506.607867pt;}
.y9c{bottom:506.714533pt;}
.y1e5{bottom:511.345333pt;}
.y16{bottom:518.363733pt;}
.y161{bottom:522.342533pt;}
.y49{bottom:522.462533pt;}
.y220{bottom:522.464533pt;}
.yf5{bottom:522.475867pt;}
.yd4{bottom:522.595867pt;}
.yb9{bottom:522.607867pt;}
.y9b{bottom:522.714533pt;}
.y1e4{bottom:524.678667pt;}
.y15{bottom:534.363733pt;}
.y1e3{bottom:538.012000pt;}
.y160{bottom:538.342533pt;}
.y48{bottom:538.462533pt;}
.y21f{bottom:538.464533pt;}
.yf4{bottom:538.475867pt;}
.y112{bottom:538.595867pt;}
.yb8{bottom:538.607867pt;}
.y9a{bottom:538.714533pt;}
.y14{bottom:550.363733pt;}
.y1e2{bottom:551.345333pt;}
.y1ab{bottom:554.102533pt;}
.yd3{bottom:554.235867pt;}
.y15f{bottom:554.342533pt;}
.y47{bottom:554.462533pt;}
.y21e{bottom:554.464533pt;}
.yf3{bottom:554.475867pt;}
.y111{bottom:554.595867pt;}
.yb7{bottom:554.607867pt;}
.y99{bottom:554.714533pt;}
.y8a{bottom:556.174800pt;}
.y1e1{bottom:564.678667pt;}
.y13{bottom:566.363733pt;}
.y15e{bottom:570.342533pt;}
.y46{bottom:570.462533pt;}
.y21d{bottom:570.464533pt;}
.yf2{bottom:570.475867pt;}
.y110{bottom:570.595867pt;}
.yb6{bottom:570.607867pt;}
.y98{bottom:570.714533pt;}
.y1e0{bottom:578.012000pt;}
.y15d{bottom:586.342533pt;}
.y45{bottom:586.462533pt;}
.y21c{bottom:586.464533pt;}
.yf1{bottom:586.475867pt;}
.y10f{bottom:586.595867pt;}
.yb5{bottom:586.607867pt;}
.y97{bottom:586.714533pt;}
.y1df{bottom:591.345333pt;}
.y67{bottom:602.102533pt;}
.y15c{bottom:602.342533pt;}
.y44{bottom:602.462533pt;}
.y21b{bottom:602.464533pt;}
.y88{bottom:602.475867pt;}
.y10e{bottom:602.595867pt;}
.yb4{bottom:602.607867pt;}
.y96{bottom:602.714533pt;}
.y73{bottom:602.729200pt;}
.y1de{bottom:604.678667pt;}
.y12{bottom:606.504267pt;}
.y11{bottom:617.571600pt;}
.y1dd{bottom:618.012000pt;}
.y15b{bottom:618.342533pt;}
.y43{bottom:618.462533pt;}
.y21a{bottom:618.464533pt;}
.y87{bottom:618.475867pt;}
.y10d{bottom:618.595867pt;}
.yb3{bottom:618.607867pt;}
.y95{bottom:618.714533pt;}
.y72{bottom:618.729200pt;}
.y1dc{bottom:631.345333pt;}
.y10{bottom:632.152000pt;}
.y66{bottom:633.982533pt;}
.y12b{bottom:634.235867pt;}
.y15a{bottom:634.342533pt;}
.y42{bottom:634.462533pt;}
.y219{bottom:634.464533pt;}
.y86{bottom:634.475867pt;}
.y10c{bottom:634.595867pt;}
.yb2{bottom:634.607867pt;}
.y94{bottom:634.714533pt;}
.y71{bottom:634.729200pt;}
.y1db{bottom:644.678667pt;}
.y1aa{bottom:650.102533pt;}
.y159{bottom:650.342533pt;}
.y41{bottom:650.462533pt;}
.y218{bottom:650.464533pt;}
.y85{bottom:650.475867pt;}
.y10b{bottom:650.595867pt;}
.yb1{bottom:650.607867pt;}
.y93{bottom:650.714533pt;}
.y70{bottom:650.729200pt;}
.y1da{bottom:658.012000pt;}
.yf{bottom:660.985733pt;}
.y158{bottom:666.342533pt;}
.y40{bottom:666.462533pt;}
.y217{bottom:666.464533pt;}
.y84{bottom:666.475867pt;}
.yb0{bottom:666.607867pt;}
.y92{bottom:666.714533pt;}
.y6f{bottom:666.729200pt;}
.y1d9{bottom:671.345333pt;}
.ye{bottom:672.985733pt;}
.y10a{bottom:682.235867pt;}
.y157{bottom:682.342533pt;}
.y3f{bottom:682.462533pt;}
.y216{bottom:682.464533pt;}
.y83{bottom:682.475867pt;}
.y91{bottom:682.715867pt;}
.y1d8{bottom:684.678667pt;}
.yd{bottom:684.985733pt;}
.yc{bottom:692.163200pt;}
.y1d7{bottom:698.012000pt;}
.yaf{bottom:698.247867pt;}
.y156{bottom:698.342533pt;}
.y6e{bottom:698.369200pt;}
.y3e{bottom:698.462533pt;}
.y215{bottom:698.464533pt;}
.y82{bottom:698.475867pt;}
.y90{bottom:698.715867pt;}
.yb{bottom:708.985733pt;}
.y1d6{bottom:711.345333pt;}
.y155{bottom:714.342533pt;}
.y3d{bottom:714.462533pt;}
.y214{bottom:714.464533pt;}
.y81{bottom:714.475867pt;}
.y8f{bottom:714.715867pt;}
.ya{bottom:720.985733pt;}
.y1d5{bottom:724.678667pt;}
.y9{bottom:728.163200pt;}
.y154{bottom:730.342533pt;}
.y3c{bottom:730.462533pt;}
.y213{bottom:730.464533pt;}
.yae{bottom:730.474533pt;}
.y80{bottom:730.475867pt;}
.y6d{bottom:730.595867pt;}
.y8e{bottom:730.715867pt;}
.y1d4{bottom:738.012000pt;}
.y8{bottom:744.985733pt;}
.y109{bottom:746.102533pt;}
.y153{bottom:746.342533pt;}
.y3b{bottom:746.462533pt;}
.y212{bottom:746.464533pt;}
.yad{bottom:746.474533pt;}
.y7f{bottom:746.475867pt;}
.y6c{bottom:746.595867pt;}
.y8d{bottom:746.715867pt;}
.y1d3{bottom:751.345333pt;}
.y152{bottom:762.342533pt;}
.y3a{bottom:762.462533pt;}
.y211{bottom:762.464533pt;}
.yac{bottom:762.474533pt;}
.y7e{bottom:762.475867pt;}
.y6b{bottom:762.595867pt;}
.y1d2{bottom:764.678667pt;}
.y7{bottom:770.516400pt;}
.y108{bottom:777.982533pt;}
.y1d1{bottom:778.012000pt;}
.y1a9{bottom:778.102533pt;}
.y151{bottom:778.342533pt;}
.y8c{bottom:778.355867pt;}
.y39{bottom:778.462533pt;}
.y210{bottom:778.464533pt;}
.yab{bottom:778.474533pt;}
.y7d{bottom:778.475867pt;}
.y6a{bottom:778.595867pt;}
.y6{bottom:789.183067pt;}
.y1d0{bottom:791.345333pt;}
.y38{bottom:794.462533pt;}
.y20f{bottom:794.464533pt;}
.yaa{bottom:794.474533pt;}
.y7c{bottom:794.475867pt;}
.y1cf{bottom:804.678667pt;}
.y150{bottom:809.982533pt;}
.y69{bottom:810.235867pt;}
.y37{bottom:810.462533pt;}
.y20e{bottom:810.464533pt;}
.ya9{bottom:810.474533pt;}
.y7b{bottom:810.475867pt;}
.y1ce{bottom:818.012000pt;}
.y36{bottom:826.462533pt;}
.y20d{bottom:826.464533pt;}
.ya8{bottom:826.474533pt;}
.y7a{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y1cd{bottom:831.345333pt;}
.y35{bottom:842.462533pt;}
.y20c{bottom:842.464533pt;}
.ya7{bottom:842.474533pt;}
.y79{bottom:842.475867pt;}
.y1cc{bottom:844.678667pt;}
.y1cb{bottom:858.012000pt;}
.y34{bottom:858.462533pt;}
.y20b{bottom:858.464533pt;}
.ya6{bottom:858.474533pt;}
.y78{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y1ca{bottom:871.345333pt;}
.y33{bottom:874.462533pt;}
.y20a{bottom:874.464533pt;}
.ya5{bottom:874.474533pt;}
.y77{bottom:874.475867pt;}
.y1c9{bottom:884.678667pt;}
.y32{bottom:890.462533pt;}
.y209{bottom:890.464533pt;}
.ya4{bottom:890.474533pt;}
.y76{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y1c8{bottom:898.012000pt;}
.y31{bottom:906.462533pt;}
.ya3{bottom:906.474533pt;}
.y75{bottom:906.475867pt;}
.y1c7{bottom:911.345333pt;}
.y208{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.ya2{bottom:922.474533pt;}
.y74{bottom:922.475867pt;}
.y1c6{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y12a{bottom:1006.558800pt;}
.y181{bottom:1006.589467pt;}
.y1c5{bottom:1006.590133pt;}
.y1a3{bottom:1006.594267pt;}
.y68{bottom:1006.594400pt;}
.y186{bottom:1006.597067pt;}
.y207{bottom:1006.598667pt;}
.y8b{bottom:1006.599467pt;}
.y14f{bottom:1006.615733pt;}
.yd2{bottom:1006.634400pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h8{height:14.713918pt;}
.h6{height:17.000371pt;}
.h9{height:25.238281pt;}
.h2{height:27.179688pt;}
.he{height:29.140625pt;}
.h7{height:29.160156pt;}
.h15{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.hd{height:37.057292pt;}
.h1b{height:37.423100pt;}
.h1a{height:37.423633pt;}
.h11{height:37.437500pt;}
.h19{height:37.438567pt;}
.ha{height:38.828125pt;}
.hb{height:38.854167pt;}
.h16{height:41.902863pt;}
.h18{height:41.924196pt;}
.hc{height:46.796875pt;}
.h12{height:47.264167pt;}
.h1c{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h17{height:52.379111pt;}
.h13{height:52.405245pt;}
.h14{height:66.749500pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x16{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x21{left:90.708667pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x23{left:109.606267pt;}
.x3{left:111.501467pt;}
.x6{left:117.165333pt;}
.x14{left:136.260933pt;}
.x17{left:187.644800pt;}
.x5{left:189.223467pt;}
.x1c{left:318.868000pt;}
.x1b{left:320.101733pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x19{left:421.483867pt;}
.x12{left:425.195867pt;}
.x7{left:427.085333pt;}
.x22{left:428.970000pt;}
.xe{left:436.538133pt;}
.x1f{left:447.874133pt;}
.x13{left:455.435867pt;}
.x8{left:457.325333pt;}
.x18{left:464.875867pt;}
.xf{left:466.911467pt;}
.x1a{left:515.040400pt;}
.x1e{left:529.875867pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1d{left:641.528533pt;}
.x10{left:647.459200pt;}
.x20{left:661.218133pt;}
.x15{left:666.351733pt;}
}




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