
    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_d8707963009c130853d4349f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.066406;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_dfc45bf4c6985034abfc84bf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.105957;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_c9e3ac573acd0b2922d24693.woff')format("woff");}.ff3{font-family:ff3;line-height:1.105469;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_c8100b5697e0460df6635f92.woff')format("woff");}.ff4{font-family:ff4;line-height:0.831000;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_1cc6d90cb93b929fe22a6bdb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_94608df3ccac0b9d8fc6ef77.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028000;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_7237d5336265a8371fb23406.woff')format("woff");}.ff7{font-family:ff7;line-height:1.066406;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_d71d8b645adef7df21989ce2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.057129;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_d597e30f63eae312e2b51aa2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.683594;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_9a9520d02e01215d77a54531.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944336;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_7bcc909192ba49f745275749.woff')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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_87a4025c26d5afe7bd151901.woff')format("woff");}.ffc{font-family:ffc;line-height:0.934000;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_7022f9fcc26695b3e8d67946.woff')format("woff");}.ffd{font-family:ffd;line-height:0.933000;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_2cdb9407db5da703b26a266e.woff')format("woff");}.ffe{font-family:ffe;line-height:0.892000;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.976000px;}
.v4{vertical-align:-3.990000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.250000px;}
.v6{vertical-align:15.984000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:23.976000px;}
.ls1e{letter-spacing:-5.880000px;}
.ls56{letter-spacing:-5.040000px;}
.ls75{letter-spacing:-4.800000px;}
.ls13{letter-spacing:-4.392000px;}
.ls3c{letter-spacing:-4.260000px;}
.ls52{letter-spacing:-3.960000px;}
.ls82{letter-spacing:-3.888000px;}
.ls31{letter-spacing:-3.816000px;}
.ls73{letter-spacing:-3.780000px;}
.ls6e{letter-spacing:-3.600000px;}
.ls6f{letter-spacing:-3.480000px;}
.ls9b{letter-spacing:-3.360000px;}
.ls5f{letter-spacing:-3.120000px;}
.ls55{letter-spacing:-3.060000px;}
.ls66{letter-spacing:-2.940000px;}
.ls54{letter-spacing:-2.820000px;}
.ls97{letter-spacing:-2.784000px;}
.ls76{letter-spacing:-2.760000px;}
.ls12{letter-spacing:-2.736000px;}
.ls74{letter-spacing:-2.700000px;}
.ls30{letter-spacing:-2.664000px;}
.ls7d{letter-spacing:-2.592000px;}
.ls5a{letter-spacing:-2.520000px;}
.ls53{letter-spacing:-2.400000px;}
.ls81{letter-spacing:-2.376000px;}
.ls3e{letter-spacing:-2.340000px;}
.ls3d{letter-spacing:-2.280000px;}
.ls7c{letter-spacing:-2.232000px;}
.ls34{letter-spacing:-2.160000px;}
.ls5e{letter-spacing:-2.100000px;}
.ls33{letter-spacing:-2.088000px;}
.ls57{letter-spacing:-1.980000px;}
.ls1b{letter-spacing:-1.800000px;}
.ls67{letter-spacing:-1.728000px;}
.ls63{letter-spacing:-1.680000px;}
.ls80{letter-spacing:-1.656000px;}
.ls35{letter-spacing:-1.584000px;}
.ls39{letter-spacing:-1.536000px;}
.ls14{letter-spacing:-1.512000px;}
.ls8d{letter-spacing:-1.488000px;}
.ls2f{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.416000px;}
.ls40{letter-spacing:-1.380000px;}
.ls28{letter-spacing:-1.368000px;}
.ls8b{letter-spacing:-1.344000px;}
.ls1a{letter-spacing:-1.320000px;}
.ls45{letter-spacing:-1.296000px;}
.ls1c{letter-spacing:-1.260000px;}
.ls68{letter-spacing:-1.224000px;}
.ls19{letter-spacing:-1.200000px;}
.ls84{letter-spacing:-1.152000px;}
.ls3{letter-spacing:-1.146000px;}
.ls3b{letter-spacing:-1.140000px;}
.ls8c{letter-spacing:-1.104000px;}
.ls32{letter-spacing:-1.080000px;}
.ls42{letter-spacing:-1.049400px;}
.ls27{letter-spacing:-1.008000px;}
.ls38{letter-spacing:-0.960000px;}
.ls24{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.900000px;}
.ls23{letter-spacing:-0.864000px;}
.ls17{letter-spacing:-0.840000px;}
.ls46{letter-spacing:-0.792000px;}
.ls90{letter-spacing:-0.768000px;}
.ls15{letter-spacing:-0.720000px;}
.ls96{letter-spacing:-0.672000px;}
.ls61{letter-spacing:-0.660000px;}
.ls36{letter-spacing:-0.648000px;}
.ls94{letter-spacing:-0.624000px;}
.ls41{letter-spacing:-0.600000px;}
.ls22{letter-spacing:-0.576000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls8f{letter-spacing:-0.528000px;}
.ls2c{letter-spacing:-0.504000px;}
.ls5b{letter-spacing:-0.480000px;}
.ls2b{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.420000px;}
.ls60{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.300000px;}
.ls37{letter-spacing:-0.293832px;}
.ls7e{letter-spacing:-0.288000px;}
.ls58{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.180000px;}
.ls71{letter-spacing:-0.120000px;}
.ls4a{letter-spacing:-0.072000px;}
.ls79{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls87{letter-spacing:0.006576px;}
.ls2d{letter-spacing:0.018000px;}
.ls8a{letter-spacing:0.048000px;}
.ls2{letter-spacing:0.054000px;}
.ls3f{letter-spacing:0.060000px;}
.ls86{letter-spacing:0.072000px;}
.ls92{letter-spacing:0.096000px;}
.ls72{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.144000px;}
.ls64{letter-spacing:0.180000px;}
.ls89{letter-spacing:0.192000px;}
.ls44{letter-spacing:0.216000px;}
.ls78{letter-spacing:0.240000px;}
.ls7f{letter-spacing:0.288000px;}
.ls77{letter-spacing:0.300000px;}
.ls8e{letter-spacing:0.336000px;}
.ls95{letter-spacing:0.384000px;}
.lsd{letter-spacing:0.420000px;}
.ls5c{letter-spacing:0.480000px;}
.ls2e{letter-spacing:0.532800px;}
.ls70{letter-spacing:0.600000px;}
.ls49{letter-spacing:0.671616px;}
.ls59{letter-spacing:0.840000px;}
.ls43{letter-spacing:0.864000px;}
.ls11{letter-spacing:1.008000px;}
.ls21{letter-spacing:1.152000px;}
.ls4{letter-spacing:1.170000px;}
.lsc{letter-spacing:1.260000px;}
.ls91{letter-spacing:1.392000px;}
.ls4f{letter-spacing:1.500000px;}
.ls65{letter-spacing:1.620000px;}
.ls5d{letter-spacing:1.740000px;}
.ls93{letter-spacing:1.776000px;}
.ls18{letter-spacing:1.800000px;}
.ls62{letter-spacing:1.860000px;}
.ls48{letter-spacing:1.944000px;}
.ls7{letter-spacing:2.376000px;}
.ls7a{letter-spacing:2.437800px;}
.ls7b{letter-spacing:3.144600px;}
.ls83{letter-spacing:3.712800px;}
.ls9a{letter-spacing:3.780000px;}
.ls1f{letter-spacing:4.320000px;}
.ls88{letter-spacing:4.752000px;}
.ls98{letter-spacing:4.848000px;}
.ls2a{letter-spacing:4.910400px;}
.ls29{letter-spacing:4.911000px;}
.ls99{letter-spacing:4.944000px;}
.lsf{letter-spacing:5.568000px;}
.lsb{letter-spacing:5.664000px;}
.ls10{letter-spacing:5.700000px;}
.ls85{letter-spacing:5.880000px;}
.ls26{letter-spacing:6.000000px;}
.ls8{letter-spacing:10.962000px;}
.ls5{letter-spacing:11.088000px;}
.ls3a{letter-spacing:11.352600px;}
.ls47{letter-spacing:11.664000px;}
.lse{letter-spacing:12.474000px;}
.ls6b{letter-spacing:84.000000px;}
.ls6a{letter-spacing:87.000000px;}
.ls4e{letter-spacing:108.000000px;}
.ls4d{letter-spacing:114.000000px;}
.ls4b{letter-spacing:121.140000px;}
.ls69{letter-spacing:122.826000px;}
.ls4c{letter-spacing:253.140000px;}
.ls6c{letter-spacing:283.140000px;}
.ls6d{letter-spacing:367.140000px;}
.ls50{letter-spacing:397.140000px;}
.ls51{letter-spacing:399.180000px;}
.ls0{letter-spacing:749.262000px;}
.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;}
}
.ws3{word-spacing:-27.648000px;}
.ws1{word-spacing:-26.136000px;}
.wsd{word-spacing:-22.560000px;}
.wsf2{word-spacing:-21.240000px;}
.ws129{word-spacing:-20.640000px;}
.wsf9{word-spacing:-20.520000px;}
.ws4c{word-spacing:-20.232000px;}
.ws103{word-spacing:-19.368000px;}
.ws4d{word-spacing:-19.296000px;}
.ws59{word-spacing:-19.152000px;}
.wsa4{word-spacing:-18.720000px;}
.ws1f{word-spacing:-18.660000px;}
.ws9c{word-spacing:-18.600000px;}
.wsc{word-spacing:-18.546000px;}
.wsaa{word-spacing:-18.360000px;}
.ws95{word-spacing:-18.120000px;}
.ws2d{word-spacing:-17.784000px;}
.ws99{word-spacing:-17.700000px;}
.ws5c{word-spacing:-17.568000px;}
.wse{word-spacing:-17.496000px;}
.wsbd{word-spacing:-17.280000px;}
.ws7b{word-spacing:-17.136000px;}
.wsd9{word-spacing:-17.100000px;}
.ws56{word-spacing:-17.064000px;}
.wsc1{word-spacing:-16.980000px;}
.ws2e{word-spacing:-16.860000px;}
.wsd1{word-spacing:-16.800000px;}
.wsc2{word-spacing:-16.740000px;}
.ws7a{word-spacing:-16.704000px;}
.ws9d{word-spacing:-16.680000px;}
.ws98{word-spacing:-16.620000px;}
.ws93{word-spacing:-16.560000px;}
.wsde{word-spacing:-16.500000px;}
.wsbc{word-spacing:-16.440000px;}
.ws10c{word-spacing:-16.416000px;}
.wsdf{word-spacing:-16.272000px;}
.wsab{word-spacing:-16.056000px;}
.ws5b{word-spacing:-15.696000px;}
.ws58{word-spacing:-15.624000px;}
.wse0{word-spacing:-15.552000px;}
.ws75{word-spacing:-15.480000px;}
.ws11d{word-spacing:-15.264000px;}
.ws0{word-spacing:-15.228000px;}
.ws57{word-spacing:-15.120000px;}
.ws5a{word-spacing:-15.048000px;}
.ws21{word-spacing:-14.640000px;}
.ws8e{word-spacing:-14.580000px;}
.ws73{word-spacing:-14.520000px;}
.ws2{word-spacing:-14.400000px;}
.ws8b{word-spacing:-14.040000px;}
.wsa8{word-spacing:-13.980000px;}
.ws22{word-spacing:-13.920000px;}
.ws119{word-spacing:-13.824000px;}
.ws8d{word-spacing:-13.800000px;}
.ws117{word-spacing:-13.776000px;}
.ws11c{word-spacing:-13.680000px;}
.ws23{word-spacing:-13.560000px;}
.ws20{word-spacing:-13.500000px;}
.ws5f{word-spacing:-13.488000px;}
.wsdd{word-spacing:-13.440000px;}
.wsb9{word-spacing:-13.380000px;}
.wsc5{word-spacing:-13.080000px;}
.ws115{word-spacing:-12.912000px;}
.ws11b{word-spacing:-12.720000px;}
.ws71{word-spacing:-12.600000px;}
.ws123{word-spacing:-12.480000px;}
.ws7c{word-spacing:-12.466872px;}
.ws112{word-spacing:-12.336000px;}
.ws124{word-spacing:-12.240000px;}
.ws116{word-spacing:-12.144000px;}
.ws114{word-spacing:-12.048000px;}
.ws118{word-spacing:-12.000000px;}
.ws5e{word-spacing:-11.952000px;}
.ws122{word-spacing:-11.856000px;}
.wsf{word-spacing:-11.795256px;}
.ws9f{word-spacing:-11.700000px;}
.ws85{word-spacing:-11.664000px;}
.ws126{word-spacing:-11.616000px;}
.ws113{word-spacing:-11.568000px;}
.ws5d{word-spacing:-11.501424px;}
.ws11a{word-spacing:-11.328000px;}
.ws125{word-spacing:-11.232000px;}
.ws79{word-spacing:-10.745856px;}
.ws127{word-spacing:-10.704000px;}
.ws47{word-spacing:-10.206000px;}
.ws45{word-spacing:-9.072000px;}
.ws24{word-spacing:-8.940000px;}
.ws48{word-spacing:-8.232000px;}
.ws46{word-spacing:-7.644000px;}
.ws9{word-spacing:-5.664000px;}
.ws3d{word-spacing:-3.816000px;}
.ws53{word-spacing:-3.096000px;}
.ws4e{word-spacing:-2.952000px;}
.ws10f{word-spacing:-2.520000px;}
.ws7{word-spacing:-2.376000px;}
.ws101{word-spacing:-2.016000px;}
.ws87{word-spacing:-1.944000px;}
.ws12{word-spacing:-1.872000px;}
.ws89{word-spacing:-1.800000px;}
.wsb3{word-spacing:-1.740000px;}
.ws102{word-spacing:-1.656000px;}
.ws55{word-spacing:-1.584000px;}
.ws4b{word-spacing:-1.521000px;}
.ws121{word-spacing:-1.392000px;}
.wsf4{word-spacing:-1.368000px;}
.ws42{word-spacing:-1.296000px;}
.wsa{word-spacing:-1.260000px;}
.ws5{word-spacing:-1.170000px;}
.ws2b{word-spacing:-1.152000px;}
.wsd8{word-spacing:-1.080000px;}
.ws15{word-spacing:-1.008000px;}
.ws36{word-spacing:-0.936000px;}
.ws7d{word-spacing:-0.864000px;}
.ws13{word-spacing:-0.792000px;}
.ws10{word-spacing:-0.768000px;}
.ws44{word-spacing:-0.720000px;}
.wsad{word-spacing:-0.600000px;}
.wsfe{word-spacing:-0.576000px;}
.ws6{word-spacing:-0.528000px;}
.wsef{word-spacing:-0.504000px;}
.wsf5{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.420000px;}
.wsd4{word-spacing:-0.360000px;}
.ws41{word-spacing:-0.288000px;}
.wsd7{word-spacing:-0.240000px;}
.ws19{word-spacing:-0.216000px;}
.ws11f{word-spacing:-0.192000px;}
.wsb2{word-spacing:-0.180000px;}
.ws18{word-spacing:-0.144000px;}
.ws32{word-spacing:-0.072000px;}
.ws8a{word-spacing:-0.060000px;}
.ws11e{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws12a{word-spacing:0.060000px;}
.ws88{word-spacing:0.072000px;}
.wsd3{word-spacing:0.120000px;}
.ws69{word-spacing:0.144000px;}
.ws8{word-spacing:0.180000px;}
.wsd2{word-spacing:0.240000px;}
.wsfc{word-spacing:0.288000px;}
.ws3c{word-spacing:0.300000px;}
.ws62{word-spacing:0.360000px;}
.wsd6{word-spacing:0.420000px;}
.ws52{word-spacing:0.432000px;}
.wsb0{word-spacing:0.480000px;}
.ws51{word-spacing:0.504000px;}
.ws28{word-spacing:0.540000px;}
.ws37{word-spacing:0.576000px;}
.ws77{word-spacing:0.600000px;}
.ws128{word-spacing:0.624000px;}
.ws33{word-spacing:0.648000px;}
.wsb1{word-spacing:0.660000px;}
.ws78{word-spacing:0.720000px;}
.ws81{word-spacing:0.792000px;}
.ws6e{word-spacing:0.840000px;}
.ws38{word-spacing:0.864000px;}
.ws76{word-spacing:0.900000px;}
.ws3b{word-spacing:0.936000px;}
.ws6f{word-spacing:0.960000px;}
.wse2{word-spacing:1.008000px;}
.ws82{word-spacing:1.080000px;}
.ws120{word-spacing:1.104000px;}
.wsae{word-spacing:1.140000px;}
.ws105{word-spacing:1.152000px;}
.ws26{word-spacing:1.200000px;}
.wsb5{word-spacing:1.224000px;}
.wsf3{word-spacing:1.368000px;}
.ws61{word-spacing:1.440000px;}
.ws25{word-spacing:1.512000px;}
.ws3a{word-spacing:1.584000px;}
.wsb6{word-spacing:1.656000px;}
.ws2a{word-spacing:1.680000px;}
.wsea{word-spacing:1.728000px;}
.ws27{word-spacing:1.800000px;}
.wse5{word-spacing:1.944000px;}
.ws4a{word-spacing:2.016000px;}
.ws68{word-spacing:2.088000px;}
.ws67{word-spacing:2.160000px;}
.wsf1{word-spacing:2.232000px;}
.wse3{word-spacing:2.376000px;}
.wsaf{word-spacing:2.400000px;}
.wseb{word-spacing:2.448000px;}
.ws6c{word-spacing:2.520000px;}
.ws39{word-spacing:2.592000px;}
.ws109{word-spacing:2.664000px;}
.wsec{word-spacing:2.736000px;}
.wse1{word-spacing:2.820000px;}
.wse4{word-spacing:3.024000px;}
.ws104{word-spacing:3.240000px;}
.wsac{word-spacing:3.360000px;}
.wsf6{word-spacing:3.384000px;}
.ws3f{word-spacing:3.528000px;}
.ws43{word-spacing:3.600000px;}
.ws3e{word-spacing:3.744000px;}
.wsf0{word-spacing:3.888000px;}
.ws14{word-spacing:4.104000px;}
.wsf7{word-spacing:4.176000px;}
.wse8{word-spacing:4.248000px;}
.ws40{word-spacing:4.320000px;}
.ws1a{word-spacing:4.392000px;}
.ws6b{word-spacing:4.536000px;}
.ws35{word-spacing:4.608000px;}
.wse7{word-spacing:4.680000px;}
.ws110{word-spacing:4.752000px;}
.wsd5{word-spacing:4.800000px;}
.ws34{word-spacing:4.824000px;}
.ws60{word-spacing:4.968000px;}
.ws30{word-spacing:5.040000px;}
.wsed{word-spacing:5.112000px;}
.ws7f{word-spacing:5.400000px;}
.ws4f{word-spacing:5.616000px;}
.wsee{word-spacing:5.904000px;}
.ws50{word-spacing:6.048000px;}
.ws54{word-spacing:6.120000px;}
.ws80{word-spacing:6.192000px;}
.wsfd{word-spacing:6.264000px;}
.ws83{word-spacing:6.552000px;}
.ws64{word-spacing:6.840000px;}
.ws111{word-spacing:7.128000px;}
.ws31{word-spacing:7.272000px;}
.ws2f{word-spacing:7.344000px;}
.ws63{word-spacing:7.416000px;}
.wsf8{word-spacing:7.560000px;}
.wse9{word-spacing:7.848000px;}
.ws6a{word-spacing:7.920000px;}
.ws6d{word-spacing:8.064000px;}
.wse6{word-spacing:8.136000px;}
.ws107{word-spacing:8.424000px;}
.ws7e{word-spacing:8.640000px;}
.ws2c{word-spacing:8.784000px;}
.ws17{word-spacing:9.000000px;}
.ws10a{word-spacing:9.216000px;}
.ws16{word-spacing:9.288000px;}
.ws66{word-spacing:9.360000px;}
.ws10d{word-spacing:9.432000px;}
.ws65{word-spacing:9.648000px;}
.wsb4{word-spacing:9.864000px;}
.ws100{word-spacing:10.008000px;}
.ws10e{word-spacing:10.296000px;}
.ws49{word-spacing:10.440000px;}
.ws86{word-spacing:10.584000px;}
.wsfa{word-spacing:10.728000px;}
.ws108{word-spacing:11.232000px;}
.ws106{word-spacing:11.376000px;}
.ws84{word-spacing:11.448000px;}
.wsfb{word-spacing:11.592000px;}
.ws11{word-spacing:11.664000px;}
.ws29{word-spacing:13.320000px;}
.wsff{word-spacing:16.344000px;}
.ws8c{word-spacing:24.060000px;}
.wsb8{word-spacing:28.860000px;}
.ws91{word-spacing:35.958000px;}
.wscd{word-spacing:36.240000px;}
.wsbf{word-spacing:37.140000px;}
.wsce{word-spacing:37.206000px;}
.wsc3{word-spacing:38.016000px;}
.wsc8{word-spacing:40.920000px;}
.wsbe{word-spacing:41.280000px;}
.ws97{word-spacing:45.090000px;}
.wsc6{word-spacing:45.240000px;}
.ws92{word-spacing:50.028000px;}
.ws9a{word-spacing:51.894000px;}
.ws1c{word-spacing:59.154000px;}
.wsa0{word-spacing:60.030000px;}
.wsa9{word-spacing:62.280000px;}
.ws9b{word-spacing:64.590000px;}
.wsda{word-spacing:65.280000px;}
.ws96{word-spacing:70.020000px;}
.wsa5{word-spacing:72.180000px;}
.ws94{word-spacing:73.080000px;}
.ws9e{word-spacing:73.440000px;}
.wsa7{word-spacing:73.704000px;}
.wscb{word-spacing:75.750000px;}
.wsa1{word-spacing:76.398000px;}
.wsd0{word-spacing:80.028000px;}
.wsbb{word-spacing:80.400000px;}
.wscc{word-spacing:84.084000px;}
.wsdb{word-spacing:84.900000px;}
.wsa6{word-spacing:85.602000px;}
.wsa2{word-spacing:104.166000px;}
.wsc0{word-spacing:105.450000px;}
.wsa3{word-spacing:105.738000px;}
.wsc9{word-spacing:113.040000px;}
.wsc4{word-spacing:126.606000px;}
.wscf{word-spacing:151.374000px;}
.wsc7{word-spacing:195.174000px;}
.ws1d{word-spacing:203.610000px;}
.wsdc{word-spacing:204.738000px;}
.wsca{word-spacing:225.174000px;}
.ws8f{word-spacing:235.026000px;}
.wsba{word-spacing:283.920000px;}
.ws1e{word-spacing:305.112000px;}
.ws90{word-spacing:313.920000px;}
.wsb7{word-spacing:700.524000px;}
.ws10b{word-spacing:702.000000px;}
.ws1b{word-spacing:707.346000px;}
.ws74{word-spacing:1060.194000px;}
.ws70{word-spacing:1172.106000px;}
.ws72{word-spacing:1197.384000px;}
._17{margin-left:-867.331800px;}
._1c{margin-left:-865.107600px;}
._1a{margin-left:-862.784400px;}
._18{margin-left:-861.583200px;}
._a{margin-left:-860.401800px;}
._3d{margin-left:-810.243000px;}
._13{margin-left:-714.126600px;}
._41{margin-left:-708.780600px;}
._2c{margin-left:-707.304600px;}
._1{margin-left:-704.496600px;}
._27{margin-left:-397.128000px;}
._21{margin-left:-16.466400px;}
._23{margin-left:-15.062400px;}
._22{margin-left:-13.082400px;}
._24{margin-left:-11.800800px;}
._7{margin-left:-10.291080px;}
._8{margin-left:-8.190060px;}
._f{margin-left:-6.656400px;}
._2{margin-left:-5.367600px;}
._4{margin-left:-3.812400px;}
._0{margin-left:-2.689200px;}
._5{margin-left:-1.242000px;}
._3{width:1.182600px;}
._6{width:2.797200px;}
._9{width:3.823200px;}
._b{width:5.086800px;}
._c{width:6.764400px;}
._11{width:8.089200px;}
._10{width:9.453600px;}
._19{width:10.578600px;}
._d{width:11.689200px;}
._e{width:12.943800px;}
._14{width:14.765400px;}
._1b{width:16.509600px;}
._15{width:17.935200px;}
._16{width:19.148400px;}
._12{width:27.198000px;}
._40{width:30.564000px;}
._1e{width:31.791600px;}
._3f{width:34.002000px;}
._3e{width:35.449200px;}
._1d{width:37.436400px;}
._26{width:53.851200px;}
._37{width:79.755000px;}
._2e{width:83.851200px;}
._30{width:97.140000px;}
._2d{width:101.854800px;}
._25{width:107.854800px;}
._38{width:109.540200px;}
._33{width:121.140000px;}
._2b{width:127.140000px;}
._34{width:136.948800px;}
._3b{width:161.672400px;}
._3a{width:182.400000px;}
._39{width:212.412000px;}
._35{width:232.825800px;}
._28{width:253.140000px;}
._31{width:283.140000px;}
._32{width:340.920000px;}
._2a{width:343.140000px;}
._20{width:344.768400px;}
._36{width:367.140000px;}
._29{width:397.140000px;}
._3c{width:444.132600px;}
._2f{width:505.140000px;}
._1f{width:799.731000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:27.984000px;}
.fsa{font-size:34.980000px;}
.fsb{font-size:39.000000px;}
.fs8{font-size:41.976000px;}
.fs9{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:70.800000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs2{font-size:114.600000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.521900px;}
.y1{bottom:72.000000px;}
.y51{bottom:117.000000px;}
.y45{bottom:117.000150px;}
.y14d{bottom:124.500000px;}
.y23{bottom:125.250000px;}
.y12d{bottom:129.000000px;}
.y6f{bottom:132.000150px;}
.y94{bottom:132.750000px;}
.y50{bottom:139.500000px;}
.ya7{bottom:139.500150px;}
.y22{bottom:144.000000px;}
.ya0{bottom:147.000150px;}
.y93{bottom:150.750000px;}
.y14c{bottom:154.500000px;}
.y6e{bottom:154.500300px;}
.y12c{bottom:159.000000px;}
.y5c{bottom:159.750000px;}
.y44{bottom:162.000000px;}
.ya6{bottom:162.000300px;}
.y21{bottom:162.750000px;}
.ydb{bottom:166.340550px;}
.y92{bottom:168.750000px;}
.y14b{bottom:169.500000px;}
.y9f{bottom:169.500300px;}
.y12b{bottom:174.000000px;}
.y6d{bottom:177.000450px;}
.y5b{bottom:177.750000px;}
.y20{bottom:181.500000px;}
.yda{bottom:184.340550px;}
.y43{bottom:184.500000px;}
.y9e{bottom:184.500300px;}
.y91{bottom:186.750000px;}
.y12a{bottom:189.000000px;}
.y14a{bottom:199.500000px;}
.y1f{bottom:200.250000px;}
.y129{bottom:204.000000px;}
.y90{bottom:204.750000px;}
.yd9{bottom:206.316150px;}
.y42{bottom:207.000000px;}
.y9d{bottom:207.000450px;}
.y149{bottom:214.500000px;}
.y1e{bottom:219.000000px;}
.y9c{bottom:222.000450px;}
.y8f{bottom:222.750000px;}
.yd8{bottom:224.316150px;}
.y41{bottom:229.500000px;}
.y128{bottom:234.000000px;}
.y16b{bottom:236.250000px;}
.y1d{bottom:237.750000px;}
.y148{bottom:244.500000px;}
.y9b{bottom:244.500600px;}
.yd7{bottom:246.291750px;}
.y127{bottom:249.000000px;}
.y40{bottom:252.000000px;}
.y16a{bottom:255.000000px;}
.y1c{bottom:256.500000px;}
.y147{bottom:259.500000px;}
.y9a{bottom:259.500600px;}
.y126{bottom:264.000000px;}
.yd6{bottom:264.291750px;}
.y169{bottom:273.750000px;}
.y3f{bottom:274.500000px;}
.y1b{bottom:275.250000px;}
.y125{bottom:279.000000px;}
.yd5{bottom:282.291750px;}
.y146{bottom:289.500000px;}
.y168{bottom:292.500000px;}
.y124{bottom:294.000000px;}
.y3e{bottom:297.000000px;}
.y1a{bottom:303.000000px;}
.yd4{bottom:304.267350px;}
.y145{bottom:304.500000px;}
.yc6{bottom:308.242950px;}
.y123{bottom:309.000000px;}
.y167{bottom:311.250000px;}
.y3d{bottom:319.500000px;}
.y70{bottom:320.250000px;}
.yd3{bottom:322.267350px;}
.y122{bottom:324.000000px;}
.y4f{bottom:325.500000px;}
.yc5{bottom:326.242950px;}
.ya5{bottom:333.072000px;}
.y144{bottom:334.500000px;}
.y121{bottom:339.000000px;}
.y166{bottom:341.250000px;}
.y3c{bottom:342.000000px;}
.yc4{bottom:344.242950px;}
.y19{bottom:346.500000px;}
.y143{bottom:349.500000px;}
.y120{bottom:354.000000px;}
.ya4{bottom:355.047600px;}
.y69{bottom:358.500000px;}
.yd2{bottom:362.242950px;}
.y8a{bottom:364.125000px;}
.y3b{bottom:364.500000px;}
.y18{bottom:365.250000px;}
.yc3{bottom:366.218550px;}
.y11f{bottom:369.000000px;}
.y89{bottom:376.125000px;}
.y68{bottom:376.500000px;}
.ya3{bottom:377.023200px;}
.y142{bottom:379.500000px;}
.y165{bottom:382.500000px;}
.y11e{bottom:384.000000px;}
.yc2{bottom:384.218550px;}
.y3a{bottom:387.000000px;}
.y88{bottom:388.125000px;}
.y17{bottom:393.000000px;}
.y67{bottom:394.500000px;}
.ya2{bottom:398.998800px;}
.y11d{bottom:399.000000px;}
.y87{bottom:400.125000px;}
.y5a{bottom:400.500000px;}
.y164{bottom:401.250000px;}
.yc1{bottom:402.218550px;}
.yd1{bottom:406.194150px;}
.y39{bottom:409.500000px;}
.y16{bottom:411.750000px;}
.y66{bottom:412.500000px;}
.y11c{bottom:414.000000px;}
.y86{bottom:415.125000px;}
.y59{bottom:418.500000px;}
.y163{bottom:420.000000px;}
.ya1{bottom:420.974400px;}
.yc0{bottom:424.194150px;}
.y141{bottom:424.500000px;}
.y11b{bottom:429.000000px;}
.y15{bottom:430.500000px;}
.y38{bottom:432.000000px;}
.y58{bottom:436.500000px;}
.y162{bottom:438.750000px;}
.y140{bottom:439.500000px;}
.ybf{bottom:442.194150px;}
.y11a{bottom:444.000000px;}
.y65{bottom:448.500000px;}
.y14{bottom:449.250000px;}
.y37{bottom:454.500000px;}
.y161{bottom:457.500000px;}
.y119{bottom:459.000000px;}
.ybe{bottom:464.169750px;}
.y64{bottom:466.500000px;}
.y13{bottom:468.000000px;}
.y13f{bottom:469.500000px;}
.y57{bottom:472.500000px;}
.y118{bottom:474.000000px;}
.yf9{bottom:475.500000px;}
.y160{bottom:476.250000px;}
.y36{bottom:477.000000px;}
.ybd{bottom:482.169750px;}
.y13e{bottom:484.500000px;}
.yf5{bottom:485.625000px;}
.y12{bottom:486.750000px;}
.y117{bottom:489.000000px;}
.y85{bottom:490.125000px;}
.y56{bottom:490.500000px;}
.yf8{bottom:493.500000px;}
.y15f{bottom:495.000000px;}
.y35{bottom:499.500000px;}
.y116{bottom:504.000000px;}
.ybc{bottom:504.145350px;}
.yf4{bottom:505.125000px;}
.y11{bottom:505.500000px;}
.yf7{bottom:511.500000px;}
.y15e{bottom:513.750000px;}
.y13d{bottom:514.500000px;}
.y84{bottom:516.937500px;}
.y115{bottom:519.000000px;}
.y34{bottom:522.000000px;}
.ybb{bottom:522.145350px;}
.y10{bottom:524.250000px;}
.yd0{bottom:526.120950px;}
.y83{bottom:527.437500px;}
.yf6{bottom:529.500000px;}
.y15d{bottom:532.500000px;}
.y114{bottom:534.000000px;}
.y8b{bottom:538.875000px;}
.yf{bottom:543.000000px;}
.yba{bottom:544.120950px;}
.y33{bottom:544.500000px;}
.y113{bottom:549.000000px;}
.y15c{bottom:551.250000px;}
.y13c{bottom:559.500000px;}
.ye{bottom:561.750000px;}
.yb9{bottom:562.120950px;}
.y112{bottom:564.000000px;}
.y32{bottom:567.000000px;}
.y15b{bottom:570.000000px;}
.yec{bottom:571.500000px;}
.y13b{bottom:574.500000px;}
.y111{bottom:579.000000px;}
.yd{bottom:580.500000px;}
.yb8{bottom:584.096400px;}
.y15a{bottom:588.750000px;}
.y31{bottom:589.500000px;}
.y110{bottom:594.000000px;}
.yc{bottom:599.250000px;}
.y7d{bottom:600.750000px;}
.yb7{bottom:602.096400px;}
.y13a{bottom:604.500000px;}
.y159{bottom:607.500000px;}
.y10f{bottom:609.000000px;}
.y82{bottom:611.250000px;}
.y30{bottom:612.000000px;}
.y139{bottom:619.500000px;}
.yb6{bottom:620.096400px;}
.y81{bottom:622.500000px;}
.y7c{bottom:623.250000px;}
.y10e{bottom:624.000000px;}
.ycf{bottom:624.072000px;}
.y158{bottom:626.250000px;}
.yb{bottom:627.000000px;}
.yf2{bottom:631.125000px;}
.y80{bottom:633.750000px;}
.y2f{bottom:634.500000px;}
.y10d{bottom:639.000000px;}
.yb5{bottom:642.072000px;}
.y7f{bottom:645.000000px;}
.y63{bottom:645.750000px;}
.y138{bottom:649.500000px;}
.y10c{bottom:654.000000px;}
.y7e{bottom:656.250000px;}
.y2e{bottom:657.000000px;}
.yb4{bottom:660.072000px;}
.y62{bottom:663.750000px;}
.y137{bottom:664.500000px;}
.y7b{bottom:668.250000px;}
.y10b{bottom:669.000000px;}
.ya{bottom:670.500000px;}
.yeb{bottom:675.822000px;}
.yce{bottom:678.072000px;}
.y2d{bottom:679.500000px;}
.y61{bottom:681.750000px;}
.yb3{bottom:682.047600px;}
.y7a{bottom:682.500000px;}
.y10a{bottom:684.000000px;}
.yfa{bottom:685.500000px;}
.y9{bottom:690.000000px;}
.yea{bottom:693.822000px;}
.y4e{bottom:694.498800px;}
.y136{bottom:694.500000px;}
.y109{bottom:699.000000px;}
.y60{bottom:699.750000px;}
.yb2{bottom:700.047600px;}
.y157{bottom:701.250000px;}
.y2c{bottom:702.000000px;}
.y8d{bottom:702.331800px;}
.y135{bottom:709.500000px;}
.ye9{bottom:711.822000px;}
.yf1{bottom:712.312500px;}
.y4d{bottom:712.498800px;}
.y99{bottom:713.250000px;}
.y108{bottom:714.000000px;}
.yf3{bottom:717.562500px;}
.y5f{bottom:717.750000px;}
.ycd{bottom:718.047600px;}
.y8{bottom:720.000000px;}
.yb1{bottom:722.023200px;}
.yf0{bottom:722.812500px;}
.y2b{bottom:724.500000px;}
.y107{bottom:729.000000px;}
.ye8{bottom:733.797600px;}
.y98{bottom:735.750000px;}
.ycc{bottom:736.047600px;}
.y156{bottom:738.750000px;}
.y4c{bottom:739.498800px;}
.y134{bottom:739.500000px;}
.yb0{bottom:740.023200px;}
.y8e{bottom:743.668200px;}
.y106{bottom:744.000000px;}
.y2a{bottom:747.000000px;}
.ye7{bottom:751.797600px;}
.y79{bottom:753.000000px;}
.y133{bottom:754.500000px;}
.y155{bottom:757.500000px;}
.ycb{bottom:758.023200px;}
.y97{bottom:758.250000px;}
.y105{bottom:759.000000px;}
.yaf{bottom:761.998800px;}
.y78{bottom:764.250000px;}
.y4b{bottom:766.498800px;}
.y29{bottom:769.500000px;}
.ye6{bottom:769.797600px;}
.y104{bottom:774.000000px;}
.y77{bottom:775.500000px;}
.yca{bottom:776.023200px;}
.y154{bottom:776.250000px;}
.yae{bottom:779.998800px;}
.y96{bottom:780.750000px;}
.y4a{bottom:784.498800px;}
.y132{bottom:784.500000px;}
.y76{bottom:786.750000px;}
.y7{bottom:787.500000px;}
.ye5{bottom:787.797600px;}
.y103{bottom:789.000000px;}
.y55{bottom:792.000000px;}
.y28{bottom:793.500000px;}
.y153{bottom:795.000000px;}
.yad{bottom:797.998800px;}
.y75{bottom:798.000000px;}
.y131{bottom:799.500000px;}
.y6c{bottom:801.000000px;}
.y95{bottom:803.250000px;}
.y102{bottom:804.000000px;}
.y49{bottom:806.474400px;}
.y74{bottom:809.250000px;}
.ye4{bottom:809.773200px;}
.y6{bottom:811.500000px;}
.y152{bottom:813.750000px;}
.y54{bottom:814.500000px;}
.yac{bottom:815.998800px;}
.yef{bottom:817.125000px;}
.y6b{bottom:819.000000px;}
.y73{bottom:820.500000px;}
.ye3{bottom:827.773200px;}
.y130{bottom:829.500000px;}
.y72{bottom:831.750000px;}
.y151{bottom:832.500000px;}
.yc8{bottom:833.998800px;}
.y101{bottom:834.000000px;}
.yc9{bottom:834.996300px;}
.y53{bottom:837.000000px;}
.yab{bottom:837.974400px;}
.y48{bottom:840.000000px;}
.y27{bottom:843.000000px;}
.y5{bottom:844.500000px;}
.y100{bottom:849.000000px;}
.ye1{bottom:849.748800px;}
.y150{bottom:851.250000px;}
.y6a{bottom:855.000000px;}
.yaa{bottom:855.974400px;}
.y71{bottom:857.250000px;}
.y47{bottom:859.500000px;}
.y26{bottom:861.750000px;}
.yff{bottom:864.000000px;}
.ye0{bottom:867.748800px;}
.ya9{bottom:873.974400px;}
.y4{bottom:874.500000px;}
.yc7{bottom:874.971900px;}
.yfe{bottom:879.000000px;}
.y52{bottom:882.000000px;}
.y14f{bottom:883.500000px;}
.ydf{bottom:885.748800px;}
.ye2{bottom:886.746300px;}
.y25{bottom:889.500000px;}
.yfd{bottom:894.000000px;}
.y46{bottom:904.500000px;}
.y8c{bottom:904.875000px;}
.ya8{bottom:907.500000px;}
.ydd{bottom:907.724400px;}
.y24{bottom:908.250000px;}
.yfc{bottom:909.000000px;}
.yee{bottom:911.062500px;}
.y14e{bottom:913.500000px;}
.y12f{bottom:919.500000px;}
.y5e{bottom:921.524400px;}
.yed{bottom:921.562500px;}
.yde{bottom:925.724400px;}
.ydc{bottom:926.721900px;}
.y3{bottom:927.000000px;}
.yfb{bottom:931.500000px;}
.y12e{bottom:934.500000px;}
.y5d{bottom:939.524400px;}
.h16{height:27.885000px;}
.h18{height:30.030000px;}
.h15{height:34.320000px;}
.h17{height:38.610000px;}
.h1d{height:39.072000px;}
.h1e{height:39.504000px;}
.he{height:40.007812px;}
.h13{height:40.757812px;}
.h1c{height:41.280000px;}
.h1a{height:41.507812px;}
.h3{height:45.008789px;}
.h1b{height:46.019766px;}
.h2{height:46.696289px;}
.h14{height:46.954102px;}
.hf{height:48.840000px;}
.h10{height:48.955078px;}
.ha{height:50.009766px;}
.h9{height:50.947266px;}
.hb{height:51.884766px;}
.h7{height:54.318000px;}
.h1{height:55.010742px;}
.h19{height:56.041992px;}
.h12{height:58.962832px;}
.hd{height:60.011719px;}
.hc{height:61.136719px;}
.h8{height:61.224023px;}
.h11{height:62.261719px;}
.h5{height:75.014648px;}
.h6{height:76.420898px;}
.h4{height:95.518652px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x3{left:67.500000px;}
.x4{left:69.164850px;}
.xa{left:73.800000px;}
.x32{left:82.500000px;}
.xe{left:90.000000px;}
.x26{left:97.111500px;}
.x5{left:99.000000px;}
.x24{left:102.296550px;}
.x25{left:106.503600px;}
.x21{left:107.764800px;}
.x22{left:111.011850px;}
.x8{left:112.620000px;}
.x11{left:115.500000px;}
.x49{left:117.000000px;}
.x34{left:118.800000px;}
.x13{left:127.500000px;}
.x9{left:135.000000px;}
.x7{left:144.000000px;}
.x48{left:149.772900px;}
.x14{left:153.000000px;}
.x1{left:154.408950px;}
.x47{left:156.000000px;}
.x10{left:160.500000px;}
.x33{left:162.000000px;}
.x4a{left:181.500000px;}
.xb{left:190.800000px;}
.x3a{left:204.300000px;}
.x43{left:223.518450px;}
.x29{left:228.320850px;}
.x2a{left:231.765000px;}
.x38{left:232.800000px;}
.x28{left:235.565850px;}
.x37{left:243.300000px;}
.x27{left:244.505550px;}
.x42{left:247.967700px;}
.x3f{left:249.300000px;}
.x2b{left:253.930050px;}
.x2{left:263.250000px;}
.x3d{left:277.800000px;}
.x23{left:296.393100px;}
.x3b{left:307.800000px;}
.xc{left:309.300000px;}
.x30{left:316.831800px;}
.x35{left:346.800000px;}
.x41{left:352.800000px;}
.x20{left:358.931400px;}
.x2c{left:368.959350px;}
.x1e{left:372.180900px;}
.x1c{left:376.890600px;}
.x18{left:378.304050px;}
.x1f{left:380.176050px;}
.x1b{left:384.329100px;}
.x1d{left:386.747100px;}
.x16{left:388.054200px;}
.x17{left:396.809400px;}
.x19{left:408.118800px;}
.x3c{left:411.300000px;}
.xd{left:450.300000px;}
.x40{left:456.300000px;}
.x15{left:465.781500px;}
.x45{left:470.197200px;}
.x46{left:471.625200px;}
.x1a{left:482.580900px;}
.x44{left:488.177550px;}
.x39{left:507.300000px;}
.x2e{left:513.703050px;}
.x2f{left:516.322800px;}
.x2d{left:517.543200px;}
.x3e{left:552.300000px;}
.x36{left:553.800000px;}
.x31{left:561.375000px;}
.x12{left:636.202950px;}
.xf{left:637.640100px;}
.x6{left:644.157600px;}
@media print{
.v3{vertical-align:-21.312000pt;}
.v4{vertical-align:-3.546667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.000000pt;}
.v6{vertical-align:14.208000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:21.312000pt;}
.ls1e{letter-spacing:-5.226667pt;}
.ls56{letter-spacing:-4.480000pt;}
.ls75{letter-spacing:-4.266667pt;}
.ls13{letter-spacing:-3.904000pt;}
.ls3c{letter-spacing:-3.786667pt;}
.ls52{letter-spacing:-3.520000pt;}
.ls82{letter-spacing:-3.456000pt;}
.ls31{letter-spacing:-3.392000pt;}
.ls73{letter-spacing:-3.360000pt;}
.ls6e{letter-spacing:-3.200000pt;}
.ls6f{letter-spacing:-3.093333pt;}
.ls9b{letter-spacing:-2.986667pt;}
.ls5f{letter-spacing:-2.773333pt;}
.ls55{letter-spacing:-2.720000pt;}
.ls66{letter-spacing:-2.613333pt;}
.ls54{letter-spacing:-2.506667pt;}
.ls97{letter-spacing:-2.474667pt;}
.ls76{letter-spacing:-2.453333pt;}
.ls12{letter-spacing:-2.432000pt;}
.ls74{letter-spacing:-2.400000pt;}
.ls30{letter-spacing:-2.368000pt;}
.ls7d{letter-spacing:-2.304000pt;}
.ls5a{letter-spacing:-2.240000pt;}
.ls53{letter-spacing:-2.133333pt;}
.ls81{letter-spacing:-2.112000pt;}
.ls3e{letter-spacing:-2.080000pt;}
.ls3d{letter-spacing:-2.026667pt;}
.ls7c{letter-spacing:-1.984000pt;}
.ls34{letter-spacing:-1.920000pt;}
.ls5e{letter-spacing:-1.866667pt;}
.ls33{letter-spacing:-1.856000pt;}
.ls57{letter-spacing:-1.760000pt;}
.ls1b{letter-spacing:-1.600000pt;}
.ls67{letter-spacing:-1.536000pt;}
.ls63{letter-spacing:-1.493333pt;}
.ls80{letter-spacing:-1.472000pt;}
.ls35{letter-spacing:-1.408000pt;}
.ls39{letter-spacing:-1.365333pt;}
.ls14{letter-spacing:-1.344000pt;}
.ls8d{letter-spacing:-1.322667pt;}
.ls2f{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.258667pt;}
.ls40{letter-spacing:-1.226667pt;}
.ls28{letter-spacing:-1.216000pt;}
.ls8b{letter-spacing:-1.194667pt;}
.ls1a{letter-spacing:-1.173333pt;}
.ls45{letter-spacing:-1.152000pt;}
.ls1c{letter-spacing:-1.120000pt;}
.ls68{letter-spacing:-1.088000pt;}
.ls19{letter-spacing:-1.066667pt;}
.ls84{letter-spacing:-1.024000pt;}
.ls3{letter-spacing:-1.018667pt;}
.ls3b{letter-spacing:-1.013333pt;}
.ls8c{letter-spacing:-0.981333pt;}
.ls32{letter-spacing:-0.960000pt;}
.ls42{letter-spacing:-0.932800pt;}
.ls27{letter-spacing:-0.896000pt;}
.ls38{letter-spacing:-0.853333pt;}
.ls24{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.800000pt;}
.ls23{letter-spacing:-0.768000pt;}
.ls17{letter-spacing:-0.746667pt;}
.ls46{letter-spacing:-0.704000pt;}
.ls90{letter-spacing:-0.682667pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls96{letter-spacing:-0.597333pt;}
.ls61{letter-spacing:-0.586667pt;}
.ls36{letter-spacing:-0.576000pt;}
.ls94{letter-spacing:-0.554667pt;}
.ls41{letter-spacing:-0.533333pt;}
.ls22{letter-spacing:-0.512000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls8f{letter-spacing:-0.469333pt;}
.ls2c{letter-spacing:-0.448000pt;}
.ls5b{letter-spacing:-0.426667pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.373333pt;}
.ls60{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.266667pt;}
.ls37{letter-spacing:-0.261184pt;}
.ls7e{letter-spacing:-0.256000pt;}
.ls58{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls71{letter-spacing:-0.106667pt;}
.ls4a{letter-spacing:-0.064000pt;}
.ls79{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls87{letter-spacing:0.005845pt;}
.ls2d{letter-spacing:0.016000pt;}
.ls8a{letter-spacing:0.042667pt;}
.ls2{letter-spacing:0.048000pt;}
.ls3f{letter-spacing:0.053333pt;}
.ls86{letter-spacing:0.064000pt;}
.ls92{letter-spacing:0.085333pt;}
.ls72{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.128000pt;}
.ls64{letter-spacing:0.160000pt;}
.ls89{letter-spacing:0.170667pt;}
.ls44{letter-spacing:0.192000pt;}
.ls78{letter-spacing:0.213333pt;}
.ls7f{letter-spacing:0.256000pt;}
.ls77{letter-spacing:0.266667pt;}
.ls8e{letter-spacing:0.298667pt;}
.ls95{letter-spacing:0.341333pt;}
.lsd{letter-spacing:0.373333pt;}
.ls5c{letter-spacing:0.426667pt;}
.ls2e{letter-spacing:0.473600pt;}
.ls70{letter-spacing:0.533333pt;}
.ls49{letter-spacing:0.596992pt;}
.ls59{letter-spacing:0.746667pt;}
.ls43{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.896000pt;}
.ls21{letter-spacing:1.024000pt;}
.ls4{letter-spacing:1.040000pt;}
.lsc{letter-spacing:1.120000pt;}
.ls91{letter-spacing:1.237333pt;}
.ls4f{letter-spacing:1.333333pt;}
.ls65{letter-spacing:1.440000pt;}
.ls5d{letter-spacing:1.546667pt;}
.ls93{letter-spacing:1.578667pt;}
.ls18{letter-spacing:1.600000pt;}
.ls62{letter-spacing:1.653333pt;}
.ls48{letter-spacing:1.728000pt;}
.ls7{letter-spacing:2.112000pt;}
.ls7a{letter-spacing:2.166933pt;}
.ls7b{letter-spacing:2.795200pt;}
.ls83{letter-spacing:3.300267pt;}
.ls9a{letter-spacing:3.360000pt;}
.ls1f{letter-spacing:3.840000pt;}
.ls88{letter-spacing:4.224000pt;}
.ls98{letter-spacing:4.309333pt;}
.ls2a{letter-spacing:4.364800pt;}
.ls29{letter-spacing:4.365333pt;}
.ls99{letter-spacing:4.394667pt;}
.lsf{letter-spacing:4.949333pt;}
.lsb{letter-spacing:5.034667pt;}
.ls10{letter-spacing:5.066667pt;}
.ls85{letter-spacing:5.226667pt;}
.ls26{letter-spacing:5.333333pt;}
.ls8{letter-spacing:9.744000pt;}
.ls5{letter-spacing:9.856000pt;}
.ls3a{letter-spacing:10.091200pt;}
.ls47{letter-spacing:10.368000pt;}
.lse{letter-spacing:11.088000pt;}
.ls6b{letter-spacing:74.666667pt;}
.ls6a{letter-spacing:77.333333pt;}
.ls4e{letter-spacing:96.000000pt;}
.ls4d{letter-spacing:101.333333pt;}
.ls4b{letter-spacing:107.680000pt;}
.ls69{letter-spacing:109.178667pt;}
.ls4c{letter-spacing:225.013333pt;}
.ls6c{letter-spacing:251.680000pt;}
.ls6d{letter-spacing:326.346667pt;}
.ls50{letter-spacing:353.013333pt;}
.ls51{letter-spacing:354.826667pt;}
.ls0{letter-spacing:666.010667pt;}
.ws3{word-spacing:-24.576000pt;}
.ws1{word-spacing:-23.232000pt;}
.wsd{word-spacing:-20.053333pt;}
.wsf2{word-spacing:-18.880000pt;}
.ws129{word-spacing:-18.346667pt;}
.wsf9{word-spacing:-18.240000pt;}
.ws4c{word-spacing:-17.984000pt;}
.ws103{word-spacing:-17.216000pt;}
.ws4d{word-spacing:-17.152000pt;}
.ws59{word-spacing:-17.024000pt;}
.wsa4{word-spacing:-16.640000pt;}
.ws1f{word-spacing:-16.586667pt;}
.ws9c{word-spacing:-16.533333pt;}
.wsc{word-spacing:-16.485333pt;}
.wsaa{word-spacing:-16.320000pt;}
.ws95{word-spacing:-16.106667pt;}
.ws2d{word-spacing:-15.808000pt;}
.ws99{word-spacing:-15.733333pt;}
.ws5c{word-spacing:-15.616000pt;}
.wse{word-spacing:-15.552000pt;}
.wsbd{word-spacing:-15.360000pt;}
.ws7b{word-spacing:-15.232000pt;}
.wsd9{word-spacing:-15.200000pt;}
.ws56{word-spacing:-15.168000pt;}
.wsc1{word-spacing:-15.093333pt;}
.ws2e{word-spacing:-14.986667pt;}
.wsd1{word-spacing:-14.933333pt;}
.wsc2{word-spacing:-14.880000pt;}
.ws7a{word-spacing:-14.848000pt;}
.ws9d{word-spacing:-14.826667pt;}
.ws98{word-spacing:-14.773333pt;}
.ws93{word-spacing:-14.720000pt;}
.wsde{word-spacing:-14.666667pt;}
.wsbc{word-spacing:-14.613333pt;}
.ws10c{word-spacing:-14.592000pt;}
.wsdf{word-spacing:-14.464000pt;}
.wsab{word-spacing:-14.272000pt;}
.ws5b{word-spacing:-13.952000pt;}
.ws58{word-spacing:-13.888000pt;}
.wse0{word-spacing:-13.824000pt;}
.ws75{word-spacing:-13.760000pt;}
.ws11d{word-spacing:-13.568000pt;}
.ws0{word-spacing:-13.536000pt;}
.ws57{word-spacing:-13.440000pt;}
.ws5a{word-spacing:-13.376000pt;}
.ws21{word-spacing:-13.013333pt;}
.ws8e{word-spacing:-12.960000pt;}
.ws73{word-spacing:-12.906667pt;}
.ws2{word-spacing:-12.800000pt;}
.ws8b{word-spacing:-12.480000pt;}
.wsa8{word-spacing:-12.426667pt;}
.ws22{word-spacing:-12.373333pt;}
.ws119{word-spacing:-12.288000pt;}
.ws8d{word-spacing:-12.266667pt;}
.ws117{word-spacing:-12.245333pt;}
.ws11c{word-spacing:-12.160000pt;}
.ws23{word-spacing:-12.053333pt;}
.ws20{word-spacing:-12.000000pt;}
.ws5f{word-spacing:-11.989333pt;}
.wsdd{word-spacing:-11.946667pt;}
.wsb9{word-spacing:-11.893333pt;}
.wsc5{word-spacing:-11.626667pt;}
.ws115{word-spacing:-11.477333pt;}
.ws11b{word-spacing:-11.306667pt;}
.ws71{word-spacing:-11.200000pt;}
.ws123{word-spacing:-11.093333pt;}
.ws7c{word-spacing:-11.081664pt;}
.ws112{word-spacing:-10.965333pt;}
.ws124{word-spacing:-10.880000pt;}
.ws116{word-spacing:-10.794667pt;}
.ws114{word-spacing:-10.709333pt;}
.ws118{word-spacing:-10.666667pt;}
.ws5e{word-spacing:-10.624000pt;}
.ws122{word-spacing:-10.538667pt;}
.wsf{word-spacing:-10.484672pt;}
.ws9f{word-spacing:-10.400000pt;}
.ws85{word-spacing:-10.368000pt;}
.ws126{word-spacing:-10.325333pt;}
.ws113{word-spacing:-10.282667pt;}
.ws5d{word-spacing:-10.223488pt;}
.ws11a{word-spacing:-10.069333pt;}
.ws125{word-spacing:-9.984000pt;}
.ws79{word-spacing:-9.551872pt;}
.ws127{word-spacing:-9.514667pt;}
.ws47{word-spacing:-9.072000pt;}
.ws45{word-spacing:-8.064000pt;}
.ws24{word-spacing:-7.946667pt;}
.ws48{word-spacing:-7.317333pt;}
.ws46{word-spacing:-6.794667pt;}
.ws9{word-spacing:-5.034667pt;}
.ws3d{word-spacing:-3.392000pt;}
.ws53{word-spacing:-2.752000pt;}
.ws4e{word-spacing:-2.624000pt;}
.ws10f{word-spacing:-2.240000pt;}
.ws7{word-spacing:-2.112000pt;}
.ws101{word-spacing:-1.792000pt;}
.ws87{word-spacing:-1.728000pt;}
.ws12{word-spacing:-1.664000pt;}
.ws89{word-spacing:-1.600000pt;}
.wsb3{word-spacing:-1.546667pt;}
.ws102{word-spacing:-1.472000pt;}
.ws55{word-spacing:-1.408000pt;}
.ws4b{word-spacing:-1.352000pt;}
.ws121{word-spacing:-1.237333pt;}
.wsf4{word-spacing:-1.216000pt;}
.ws42{word-spacing:-1.152000pt;}
.wsa{word-spacing:-1.120000pt;}
.ws5{word-spacing:-1.040000pt;}
.ws2b{word-spacing:-1.024000pt;}
.wsd8{word-spacing:-0.960000pt;}
.ws15{word-spacing:-0.896000pt;}
.ws36{word-spacing:-0.832000pt;}
.ws7d{word-spacing:-0.768000pt;}
.ws13{word-spacing:-0.704000pt;}
.ws10{word-spacing:-0.682667pt;}
.ws44{word-spacing:-0.640000pt;}
.wsad{word-spacing:-0.533333pt;}
.wsfe{word-spacing:-0.512000pt;}
.ws6{word-spacing:-0.469333pt;}
.wsef{word-spacing:-0.448000pt;}
.wsf5{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.373333pt;}
.wsd4{word-spacing:-0.320000pt;}
.ws41{word-spacing:-0.256000pt;}
.wsd7{word-spacing:-0.213333pt;}
.ws19{word-spacing:-0.192000pt;}
.ws11f{word-spacing:-0.170667pt;}
.wsb2{word-spacing:-0.160000pt;}
.ws18{word-spacing:-0.128000pt;}
.ws32{word-spacing:-0.064000pt;}
.ws8a{word-spacing:-0.053333pt;}
.ws11e{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws12a{word-spacing:0.053333pt;}
.ws88{word-spacing:0.064000pt;}
.wsd3{word-spacing:0.106667pt;}
.ws69{word-spacing:0.128000pt;}
.ws8{word-spacing:0.160000pt;}
.wsd2{word-spacing:0.213333pt;}
.wsfc{word-spacing:0.256000pt;}
.ws3c{word-spacing:0.266667pt;}
.ws62{word-spacing:0.320000pt;}
.wsd6{word-spacing:0.373333pt;}
.ws52{word-spacing:0.384000pt;}
.wsb0{word-spacing:0.426667pt;}
.ws51{word-spacing:0.448000pt;}
.ws28{word-spacing:0.480000pt;}
.ws37{word-spacing:0.512000pt;}
.ws77{word-spacing:0.533333pt;}
.ws128{word-spacing:0.554667pt;}
.ws33{word-spacing:0.576000pt;}
.wsb1{word-spacing:0.586667pt;}
.ws78{word-spacing:0.640000pt;}
.ws81{word-spacing:0.704000pt;}
.ws6e{word-spacing:0.746667pt;}
.ws38{word-spacing:0.768000pt;}
.ws76{word-spacing:0.800000pt;}
.ws3b{word-spacing:0.832000pt;}
.ws6f{word-spacing:0.853333pt;}
.wse2{word-spacing:0.896000pt;}
.ws82{word-spacing:0.960000pt;}
.ws120{word-spacing:0.981333pt;}
.wsae{word-spacing:1.013333pt;}
.ws105{word-spacing:1.024000pt;}
.ws26{word-spacing:1.066667pt;}
.wsb5{word-spacing:1.088000pt;}
.wsf3{word-spacing:1.216000pt;}
.ws61{word-spacing:1.280000pt;}
.ws25{word-spacing:1.344000pt;}
.ws3a{word-spacing:1.408000pt;}
.wsb6{word-spacing:1.472000pt;}
.ws2a{word-spacing:1.493333pt;}
.wsea{word-spacing:1.536000pt;}
.ws27{word-spacing:1.600000pt;}
.wse5{word-spacing:1.728000pt;}
.ws4a{word-spacing:1.792000pt;}
.ws68{word-spacing:1.856000pt;}
.ws67{word-spacing:1.920000pt;}
.wsf1{word-spacing:1.984000pt;}
.wse3{word-spacing:2.112000pt;}
.wsaf{word-spacing:2.133333pt;}
.wseb{word-spacing:2.176000pt;}
.ws6c{word-spacing:2.240000pt;}
.ws39{word-spacing:2.304000pt;}
.ws109{word-spacing:2.368000pt;}
.wsec{word-spacing:2.432000pt;}
.wse1{word-spacing:2.506667pt;}
.wse4{word-spacing:2.688000pt;}
.ws104{word-spacing:2.880000pt;}
.wsac{word-spacing:2.986667pt;}
.wsf6{word-spacing:3.008000pt;}
.ws3f{word-spacing:3.136000pt;}
.ws43{word-spacing:3.200000pt;}
.ws3e{word-spacing:3.328000pt;}
.wsf0{word-spacing:3.456000pt;}
.ws14{word-spacing:3.648000pt;}
.wsf7{word-spacing:3.712000pt;}
.wse8{word-spacing:3.776000pt;}
.ws40{word-spacing:3.840000pt;}
.ws1a{word-spacing:3.904000pt;}
.ws6b{word-spacing:4.032000pt;}
.ws35{word-spacing:4.096000pt;}
.wse7{word-spacing:4.160000pt;}
.ws110{word-spacing:4.224000pt;}
.wsd5{word-spacing:4.266667pt;}
.ws34{word-spacing:4.288000pt;}
.ws60{word-spacing:4.416000pt;}
.ws30{word-spacing:4.480000pt;}
.wsed{word-spacing:4.544000pt;}
.ws7f{word-spacing:4.800000pt;}
.ws4f{word-spacing:4.992000pt;}
.wsee{word-spacing:5.248000pt;}
.ws50{word-spacing:5.376000pt;}
.ws54{word-spacing:5.440000pt;}
.ws80{word-spacing:5.504000pt;}
.wsfd{word-spacing:5.568000pt;}
.ws83{word-spacing:5.824000pt;}
.ws64{word-spacing:6.080000pt;}
.ws111{word-spacing:6.336000pt;}
.ws31{word-spacing:6.464000pt;}
.ws2f{word-spacing:6.528000pt;}
.ws63{word-spacing:6.592000pt;}
.wsf8{word-spacing:6.720000pt;}
.wse9{word-spacing:6.976000pt;}
.ws6a{word-spacing:7.040000pt;}
.ws6d{word-spacing:7.168000pt;}
.wse6{word-spacing:7.232000pt;}
.ws107{word-spacing:7.488000pt;}
.ws7e{word-spacing:7.680000pt;}
.ws2c{word-spacing:7.808000pt;}
.ws17{word-spacing:8.000000pt;}
.ws10a{word-spacing:8.192000pt;}
.ws16{word-spacing:8.256000pt;}
.ws66{word-spacing:8.320000pt;}
.ws10d{word-spacing:8.384000pt;}
.ws65{word-spacing:8.576000pt;}
.wsb4{word-spacing:8.768000pt;}
.ws100{word-spacing:8.896000pt;}
.ws10e{word-spacing:9.152000pt;}
.ws49{word-spacing:9.280000pt;}
.ws86{word-spacing:9.408000pt;}
.wsfa{word-spacing:9.536000pt;}
.ws108{word-spacing:9.984000pt;}
.ws106{word-spacing:10.112000pt;}
.ws84{word-spacing:10.176000pt;}
.wsfb{word-spacing:10.304000pt;}
.ws11{word-spacing:10.368000pt;}
.ws29{word-spacing:11.840000pt;}
.wsff{word-spacing:14.528000pt;}
.ws8c{word-spacing:21.386667pt;}
.wsb8{word-spacing:25.653333pt;}
.ws91{word-spacing:31.962667pt;}
.wscd{word-spacing:32.213333pt;}
.wsbf{word-spacing:33.013333pt;}
.wsce{word-spacing:33.072000pt;}
.wsc3{word-spacing:33.792000pt;}
.wsc8{word-spacing:36.373333pt;}
.wsbe{word-spacing:36.693333pt;}
.ws97{word-spacing:40.080000pt;}
.wsc6{word-spacing:40.213333pt;}
.ws92{word-spacing:44.469333pt;}
.ws9a{word-spacing:46.128000pt;}
.ws1c{word-spacing:52.581333pt;}
.wsa0{word-spacing:53.360000pt;}
.wsa9{word-spacing:55.360000pt;}
.ws9b{word-spacing:57.413333pt;}
.wsda{word-spacing:58.026667pt;}
.ws96{word-spacing:62.240000pt;}
.wsa5{word-spacing:64.160000pt;}
.ws94{word-spacing:64.960000pt;}
.ws9e{word-spacing:65.280000pt;}
.wsa7{word-spacing:65.514667pt;}
.wscb{word-spacing:67.333333pt;}
.wsa1{word-spacing:67.909333pt;}
.wsd0{word-spacing:71.136000pt;}
.wsbb{word-spacing:71.466667pt;}
.wscc{word-spacing:74.741333pt;}
.wsdb{word-spacing:75.466667pt;}
.wsa6{word-spacing:76.090667pt;}
.wsa2{word-spacing:92.592000pt;}
.wsc0{word-spacing:93.733333pt;}
.wsa3{word-spacing:93.989333pt;}
.wsc9{word-spacing:100.480000pt;}
.wsc4{word-spacing:112.538667pt;}
.wscf{word-spacing:134.554667pt;}
.wsc7{word-spacing:173.488000pt;}
.ws1d{word-spacing:180.986667pt;}
.wsdc{word-spacing:181.989333pt;}
.wsca{word-spacing:200.154667pt;}
.ws8f{word-spacing:208.912000pt;}
.wsba{word-spacing:252.373333pt;}
.ws1e{word-spacing:271.210667pt;}
.ws90{word-spacing:279.040000pt;}
.wsb7{word-spacing:622.688000pt;}
.ws10b{word-spacing:624.000000pt;}
.ws1b{word-spacing:628.752000pt;}
.ws74{word-spacing:942.394667pt;}
.ws70{word-spacing:1041.872000pt;}
.ws72{word-spacing:1064.341333pt;}
._17{margin-left:-770.961600pt;}
._1c{margin-left:-768.984533pt;}
._1a{margin-left:-766.919467pt;}
._18{margin-left:-765.851733pt;}
._a{margin-left:-764.801600pt;}
._3d{margin-left:-720.216000pt;}
._13{margin-left:-634.779200pt;}
._41{margin-left:-630.027200pt;}
._2c{margin-left:-628.715200pt;}
._1{margin-left:-626.219200pt;}
._27{margin-left:-353.002667pt;}
._21{margin-left:-14.636800pt;}
._23{margin-left:-13.388800pt;}
._22{margin-left:-11.628800pt;}
._24{margin-left:-10.489600pt;}
._7{margin-left:-9.147627pt;}
._8{margin-left:-7.280053pt;}
._f{margin-left:-5.916800pt;}
._2{margin-left:-4.771200pt;}
._4{margin-left:-3.388800pt;}
._0{margin-left:-2.390400pt;}
._5{margin-left:-1.104000pt;}
._3{width:1.051200pt;}
._6{width:2.486400pt;}
._9{width:3.398400pt;}
._b{width:4.521600pt;}
._c{width:6.012800pt;}
._11{width:7.190400pt;}
._10{width:8.403200pt;}
._19{width:9.403200pt;}
._d{width:10.390400pt;}
._e{width:11.505600pt;}
._14{width:13.124800pt;}
._1b{width:14.675200pt;}
._15{width:15.942400pt;}
._16{width:17.020800pt;}
._12{width:24.176000pt;}
._40{width:27.168000pt;}
._1e{width:28.259200pt;}
._3f{width:30.224000pt;}
._3e{width:31.510400pt;}
._1d{width:33.276800pt;}
._26{width:47.867733pt;}
._37{width:70.893333pt;}
._2e{width:74.534400pt;}
._30{width:86.346667pt;}
._2d{width:90.537600pt;}
._25{width:95.870933pt;}
._38{width:97.369067pt;}
._33{width:107.680000pt;}
._2b{width:113.013333pt;}
._34{width:121.732267pt;}
._3b{width:143.708800pt;}
._3a{width:162.133333pt;}
._39{width:188.810667pt;}
._35{width:206.956267pt;}
._28{width:225.013333pt;}
._31{width:251.680000pt;}
._32{width:303.040000pt;}
._2a{width:305.013333pt;}
._20{width:306.460800pt;}
._36{width:326.346667pt;}
._29{width:353.013333pt;}
._3c{width:394.784533pt;}
._2f{width:449.013333pt;}
._1f{width:710.872000pt;}
.fsc{font-size:24.874667pt;}
.fsa{font-size:31.093333pt;}
.fsb{font-size:34.666667pt;}
.fs8{font-size:37.312000pt;}
.fs9{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:62.933333pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs2{font-size:101.866667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.352800pt;}
.y1{bottom:64.000000pt;}
.y51{bottom:104.000000pt;}
.y45{bottom:104.000133pt;}
.y14d{bottom:110.666667pt;}
.y23{bottom:111.333333pt;}
.y12d{bottom:114.666667pt;}
.y6f{bottom:117.333467pt;}
.y94{bottom:118.000000pt;}
.y50{bottom:124.000000pt;}
.ya7{bottom:124.000133pt;}
.y22{bottom:128.000000pt;}
.ya0{bottom:130.666800pt;}
.y93{bottom:134.000000pt;}
.y14c{bottom:137.333333pt;}
.y6e{bottom:137.333600pt;}
.y12c{bottom:141.333333pt;}
.y5c{bottom:142.000000pt;}
.y44{bottom:144.000000pt;}
.ya6{bottom:144.000267pt;}
.y21{bottom:144.666667pt;}
.ydb{bottom:147.858267pt;}
.y92{bottom:150.000000pt;}
.y14b{bottom:150.666667pt;}
.y9f{bottom:150.666933pt;}
.y12b{bottom:154.666667pt;}
.y6d{bottom:157.333733pt;}
.y5b{bottom:158.000000pt;}
.y20{bottom:161.333333pt;}
.yda{bottom:163.858267pt;}
.y43{bottom:164.000000pt;}
.y9e{bottom:164.000267pt;}
.y91{bottom:166.000000pt;}
.y12a{bottom:168.000000pt;}
.y14a{bottom:177.333333pt;}
.y1f{bottom:178.000000pt;}
.y129{bottom:181.333333pt;}
.y90{bottom:182.000000pt;}
.yd9{bottom:183.392133pt;}
.y42{bottom:184.000000pt;}
.y9d{bottom:184.000400pt;}
.y149{bottom:190.666667pt;}
.y1e{bottom:194.666667pt;}
.y9c{bottom:197.333733pt;}
.y8f{bottom:198.000000pt;}
.yd8{bottom:199.392133pt;}
.y41{bottom:204.000000pt;}
.y128{bottom:208.000000pt;}
.y16b{bottom:210.000000pt;}
.y1d{bottom:211.333333pt;}
.y148{bottom:217.333333pt;}
.y9b{bottom:217.333867pt;}
.yd7{bottom:218.926000pt;}
.y127{bottom:221.333333pt;}
.y40{bottom:224.000000pt;}
.y16a{bottom:226.666667pt;}
.y1c{bottom:228.000000pt;}
.y147{bottom:230.666667pt;}
.y9a{bottom:230.667200pt;}
.y126{bottom:234.666667pt;}
.yd6{bottom:234.926000pt;}
.y169{bottom:243.333333pt;}
.y3f{bottom:244.000000pt;}
.y1b{bottom:244.666667pt;}
.y125{bottom:248.000000pt;}
.yd5{bottom:250.926000pt;}
.y146{bottom:257.333333pt;}
.y168{bottom:260.000000pt;}
.y124{bottom:261.333333pt;}
.y3e{bottom:264.000000pt;}
.y1a{bottom:269.333333pt;}
.yd4{bottom:270.459867pt;}
.y145{bottom:270.666667pt;}
.yc6{bottom:273.993733pt;}
.y123{bottom:274.666667pt;}
.y167{bottom:276.666667pt;}
.y3d{bottom:284.000000pt;}
.y70{bottom:284.666667pt;}
.yd3{bottom:286.459867pt;}
.y122{bottom:288.000000pt;}
.y4f{bottom:289.333333pt;}
.yc5{bottom:289.993733pt;}
.ya5{bottom:296.064000pt;}
.y144{bottom:297.333333pt;}
.y121{bottom:301.333333pt;}
.y166{bottom:303.333333pt;}
.y3c{bottom:304.000000pt;}
.yc4{bottom:305.993733pt;}
.y19{bottom:308.000000pt;}
.y143{bottom:310.666667pt;}
.y120{bottom:314.666667pt;}
.ya4{bottom:315.597867pt;}
.y69{bottom:318.666667pt;}
.yd2{bottom:321.993733pt;}
.y8a{bottom:323.666667pt;}
.y3b{bottom:324.000000pt;}
.y18{bottom:324.666667pt;}
.yc3{bottom:325.527600pt;}
.y11f{bottom:328.000000pt;}
.y89{bottom:334.333333pt;}
.y68{bottom:334.666667pt;}
.ya3{bottom:335.131733pt;}
.y142{bottom:337.333333pt;}
.y165{bottom:340.000000pt;}
.y11e{bottom:341.333333pt;}
.yc2{bottom:341.527600pt;}
.y3a{bottom:344.000000pt;}
.y88{bottom:345.000000pt;}
.y17{bottom:349.333333pt;}
.y67{bottom:350.666667pt;}
.ya2{bottom:354.665600pt;}
.y11d{bottom:354.666667pt;}
.y87{bottom:355.666667pt;}
.y5a{bottom:356.000000pt;}
.y164{bottom:356.666667pt;}
.yc1{bottom:357.527600pt;}
.yd1{bottom:361.061467pt;}
.y39{bottom:364.000000pt;}
.y16{bottom:366.000000pt;}
.y66{bottom:366.666667pt;}
.y11c{bottom:368.000000pt;}
.y86{bottom:369.000000pt;}
.y59{bottom:372.000000pt;}
.y163{bottom:373.333333pt;}
.ya1{bottom:374.199467pt;}
.yc0{bottom:377.061467pt;}
.y141{bottom:377.333333pt;}
.y11b{bottom:381.333333pt;}
.y15{bottom:382.666667pt;}
.y38{bottom:384.000000pt;}
.y58{bottom:388.000000pt;}
.y162{bottom:390.000000pt;}
.y140{bottom:390.666667pt;}
.ybf{bottom:393.061467pt;}
.y11a{bottom:394.666667pt;}
.y65{bottom:398.666667pt;}
.y14{bottom:399.333333pt;}
.y37{bottom:404.000000pt;}
.y161{bottom:406.666667pt;}
.y119{bottom:408.000000pt;}
.ybe{bottom:412.595333pt;}
.y64{bottom:414.666667pt;}
.y13{bottom:416.000000pt;}
.y13f{bottom:417.333333pt;}
.y57{bottom:420.000000pt;}
.y118{bottom:421.333333pt;}
.yf9{bottom:422.666667pt;}
.y160{bottom:423.333333pt;}
.y36{bottom:424.000000pt;}
.ybd{bottom:428.595333pt;}
.y13e{bottom:430.666667pt;}
.yf5{bottom:431.666667pt;}
.y12{bottom:432.666667pt;}
.y117{bottom:434.666667pt;}
.y85{bottom:435.666667pt;}
.y56{bottom:436.000000pt;}
.yf8{bottom:438.666667pt;}
.y15f{bottom:440.000000pt;}
.y35{bottom:444.000000pt;}
.y116{bottom:448.000000pt;}
.ybc{bottom:448.129200pt;}
.yf4{bottom:449.000000pt;}
.y11{bottom:449.333333pt;}
.yf7{bottom:454.666667pt;}
.y15e{bottom:456.666667pt;}
.y13d{bottom:457.333333pt;}
.y84{bottom:459.500000pt;}
.y115{bottom:461.333333pt;}
.y34{bottom:464.000000pt;}
.ybb{bottom:464.129200pt;}
.y10{bottom:466.000000pt;}
.yd0{bottom:467.663067pt;}
.y83{bottom:468.833333pt;}
.yf6{bottom:470.666667pt;}
.y15d{bottom:473.333333pt;}
.y114{bottom:474.666667pt;}
.y8b{bottom:479.000000pt;}
.yf{bottom:482.666667pt;}
.yba{bottom:483.663067pt;}
.y33{bottom:484.000000pt;}
.y113{bottom:488.000000pt;}
.y15c{bottom:490.000000pt;}
.y13c{bottom:497.333333pt;}
.ye{bottom:499.333333pt;}
.yb9{bottom:499.663067pt;}
.y112{bottom:501.333333pt;}
.y32{bottom:504.000000pt;}
.y15b{bottom:506.666667pt;}
.yec{bottom:508.000000pt;}
.y13b{bottom:510.666667pt;}
.y111{bottom:514.666667pt;}
.yd{bottom:516.000000pt;}
.yb8{bottom:519.196800pt;}
.y15a{bottom:523.333333pt;}
.y31{bottom:524.000000pt;}
.y110{bottom:528.000000pt;}
.yc{bottom:532.666667pt;}
.y7d{bottom:534.000000pt;}
.yb7{bottom:535.196800pt;}
.y13a{bottom:537.333333pt;}
.y159{bottom:540.000000pt;}
.y10f{bottom:541.333333pt;}
.y82{bottom:543.333333pt;}
.y30{bottom:544.000000pt;}
.y139{bottom:550.666667pt;}
.yb6{bottom:551.196800pt;}
.y81{bottom:553.333333pt;}
.y7c{bottom:554.000000pt;}
.y10e{bottom:554.666667pt;}
.ycf{bottom:554.730667pt;}
.y158{bottom:556.666667pt;}
.yb{bottom:557.333333pt;}
.yf2{bottom:561.000000pt;}
.y80{bottom:563.333333pt;}
.y2f{bottom:564.000000pt;}
.y10d{bottom:568.000000pt;}
.yb5{bottom:570.730667pt;}
.y7f{bottom:573.333333pt;}
.y63{bottom:574.000000pt;}
.y138{bottom:577.333333pt;}
.y10c{bottom:581.333333pt;}
.y7e{bottom:583.333333pt;}
.y2e{bottom:584.000000pt;}
.yb4{bottom:586.730667pt;}
.y62{bottom:590.000000pt;}
.y137{bottom:590.666667pt;}
.y7b{bottom:594.000000pt;}
.y10b{bottom:594.666667pt;}
.ya{bottom:596.000000pt;}
.yeb{bottom:600.730667pt;}
.yce{bottom:602.730667pt;}
.y2d{bottom:604.000000pt;}
.y61{bottom:606.000000pt;}
.yb3{bottom:606.264533pt;}
.y7a{bottom:606.666667pt;}
.y10a{bottom:608.000000pt;}
.yfa{bottom:609.333333pt;}
.y9{bottom:613.333333pt;}
.yea{bottom:616.730667pt;}
.y4e{bottom:617.332267pt;}
.y136{bottom:617.333333pt;}
.y109{bottom:621.333333pt;}
.y60{bottom:622.000000pt;}
.yb2{bottom:622.264533pt;}
.y157{bottom:623.333333pt;}
.y2c{bottom:624.000000pt;}
.y8d{bottom:624.294933pt;}
.y135{bottom:630.666667pt;}
.ye9{bottom:632.730667pt;}
.yf1{bottom:633.166667pt;}
.y4d{bottom:633.332267pt;}
.y99{bottom:634.000000pt;}
.y108{bottom:634.666667pt;}
.yf3{bottom:637.833333pt;}
.y5f{bottom:638.000000pt;}
.ycd{bottom:638.264533pt;}
.y8{bottom:640.000000pt;}
.yb1{bottom:641.798400pt;}
.yf0{bottom:642.500000pt;}
.y2b{bottom:644.000000pt;}
.y107{bottom:648.000000pt;}
.ye8{bottom:652.264533pt;}
.y98{bottom:654.000000pt;}
.ycc{bottom:654.264533pt;}
.y156{bottom:656.666667pt;}
.y4c{bottom:657.332267pt;}
.y134{bottom:657.333333pt;}
.yb0{bottom:657.798400pt;}
.y8e{bottom:661.038400pt;}
.y106{bottom:661.333333pt;}
.y2a{bottom:664.000000pt;}
.ye7{bottom:668.264533pt;}
.y79{bottom:669.333333pt;}
.y133{bottom:670.666667pt;}
.y155{bottom:673.333333pt;}
.ycb{bottom:673.798400pt;}
.y97{bottom:674.000000pt;}
.y105{bottom:674.666667pt;}
.yaf{bottom:677.332267pt;}
.y78{bottom:679.333333pt;}
.y4b{bottom:681.332267pt;}
.y29{bottom:684.000000pt;}
.ye6{bottom:684.264533pt;}
.y104{bottom:688.000000pt;}
.y77{bottom:689.333333pt;}
.yca{bottom:689.798400pt;}
.y154{bottom:690.000000pt;}
.yae{bottom:693.332267pt;}
.y96{bottom:694.000000pt;}
.y4a{bottom:697.332267pt;}
.y132{bottom:697.333333pt;}
.y76{bottom:699.333333pt;}
.y7{bottom:700.000000pt;}
.ye5{bottom:700.264533pt;}
.y103{bottom:701.333333pt;}
.y55{bottom:704.000000pt;}
.y28{bottom:705.333333pt;}
.y153{bottom:706.666667pt;}
.yad{bottom:709.332267pt;}
.y75{bottom:709.333333pt;}
.y131{bottom:710.666667pt;}
.y6c{bottom:712.000000pt;}
.y95{bottom:714.000000pt;}
.y102{bottom:714.666667pt;}
.y49{bottom:716.866133pt;}
.y74{bottom:719.333333pt;}
.ye4{bottom:719.798400pt;}
.y6{bottom:721.333333pt;}
.y152{bottom:723.333333pt;}
.y54{bottom:724.000000pt;}
.yac{bottom:725.332267pt;}
.yef{bottom:726.333333pt;}
.y6b{bottom:728.000000pt;}
.y73{bottom:729.333333pt;}
.ye3{bottom:735.798400pt;}
.y130{bottom:737.333333pt;}
.y72{bottom:739.333333pt;}
.y151{bottom:740.000000pt;}
.yc8{bottom:741.332267pt;}
.y101{bottom:741.333333pt;}
.yc9{bottom:742.218933pt;}
.y53{bottom:744.000000pt;}
.yab{bottom:744.866133pt;}
.y48{bottom:746.666667pt;}
.y27{bottom:749.333333pt;}
.y5{bottom:750.666667pt;}
.y100{bottom:754.666667pt;}
.ye1{bottom:755.332267pt;}
.y150{bottom:756.666667pt;}
.y6a{bottom:760.000000pt;}
.yaa{bottom:760.866133pt;}
.y71{bottom:762.000000pt;}
.y47{bottom:764.000000pt;}
.y26{bottom:766.000000pt;}
.yff{bottom:768.000000pt;}
.ye0{bottom:771.332267pt;}
.ya9{bottom:776.866133pt;}
.y4{bottom:777.333333pt;}
.yc7{bottom:777.752800pt;}
.yfe{bottom:781.333333pt;}
.y52{bottom:784.000000pt;}
.y14f{bottom:785.333333pt;}
.ydf{bottom:787.332267pt;}
.ye2{bottom:788.218933pt;}
.y25{bottom:790.666667pt;}
.yfd{bottom:794.666667pt;}
.y46{bottom:804.000000pt;}
.y8c{bottom:804.333333pt;}
.ya8{bottom:806.666667pt;}
.ydd{bottom:806.866133pt;}
.y24{bottom:807.333333pt;}
.yfc{bottom:808.000000pt;}
.yee{bottom:809.833333pt;}
.y14e{bottom:812.000000pt;}
.y12f{bottom:817.333333pt;}
.y5e{bottom:819.132800pt;}
.yed{bottom:819.166667pt;}
.yde{bottom:822.866133pt;}
.ydc{bottom:823.752800pt;}
.y3{bottom:824.000000pt;}
.yfb{bottom:828.000000pt;}
.y12e{bottom:830.666667pt;}
.y5d{bottom:835.132800pt;}
.h16{height:24.786667pt;}
.h18{height:26.693333pt;}
.h15{height:30.506667pt;}
.h17{height:34.320000pt;}
.h1d{height:34.730667pt;}
.h1e{height:35.114667pt;}
.he{height:35.562500pt;}
.h13{height:36.229167pt;}
.h1c{height:36.693333pt;}
.h1a{height:36.895833pt;}
.h3{height:40.007812pt;}
.h1b{height:40.906458pt;}
.h2{height:41.507812pt;}
.h14{height:41.736979pt;}
.hf{height:43.413333pt;}
.h10{height:43.515625pt;}
.ha{height:44.453125pt;}
.h9{height:45.286458pt;}
.hb{height:46.119792pt;}
.h7{height:48.282667pt;}
.h1{height:48.898438pt;}
.h19{height:49.815104pt;}
.h12{height:52.411406pt;}
.hd{height:53.343750pt;}
.hc{height:54.343750pt;}
.h8{height:54.421354pt;}
.h11{height:55.343750pt;}
.h5{height:66.679688pt;}
.h6{height:67.929688pt;}
.h4{height:84.905469pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x3{left:60.000000pt;}
.x4{left:61.479867pt;}
.xa{left:65.600000pt;}
.x32{left:73.333333pt;}
.xe{left:80.000000pt;}
.x26{left:86.321333pt;}
.x5{left:88.000000pt;}
.x24{left:90.930267pt;}
.x25{left:94.669867pt;}
.x21{left:95.790933pt;}
.x22{left:98.677200pt;}
.x8{left:100.106667pt;}
.x11{left:102.666667pt;}
.x49{left:104.000000pt;}
.x34{left:105.600000pt;}
.x13{left:113.333333pt;}
.x9{left:120.000000pt;}
.x7{left:128.000000pt;}
.x48{left:133.131467pt;}
.x14{left:136.000000pt;}
.x1{left:137.252400pt;}
.x47{left:138.666667pt;}
.x10{left:142.666667pt;}
.x33{left:144.000000pt;}
.x4a{left:161.333333pt;}
.xb{left:169.600000pt;}
.x3a{left:181.600000pt;}
.x43{left:198.683067pt;}
.x29{left:202.951867pt;}
.x2a{left:206.013333pt;}
.x38{left:206.933333pt;}
.x28{left:209.391867pt;}
.x37{left:216.266667pt;}
.x27{left:217.338267pt;}
.x42{left:220.415733pt;}
.x3f{left:221.600000pt;}
.x2b{left:225.715600pt;}
.x2{left:234.000000pt;}
.x3d{left:246.933333pt;}
.x23{left:263.460533pt;}
.x3b{left:273.600000pt;}
.xc{left:274.933333pt;}
.x30{left:281.628267pt;}
.x35{left:308.266667pt;}
.x41{left:313.600000pt;}
.x20{left:319.050133pt;}
.x2c{left:327.963867pt;}
.x1e{left:330.827467pt;}
.x1c{left:335.013867pt;}
.x18{left:336.270267pt;}
.x1f{left:337.934267pt;}
.x1b{left:341.625867pt;}
.x1d{left:343.775200pt;}
.x16{left:344.937067pt;}
.x17{left:352.719467pt;}
.x19{left:362.772267pt;}
.x3c{left:365.600000pt;}
.xd{left:400.266667pt;}
.x40{left:405.600000pt;}
.x15{left:414.028000pt;}
.x45{left:417.953067pt;}
.x46{left:419.222400pt;}
.x1a{left:428.960800pt;}
.x44{left:433.935600pt;}
.x39{left:450.933333pt;}
.x2e{left:456.624933pt;}
.x2f{left:458.953600pt;}
.x2d{left:460.038400pt;}
.x3e{left:490.933333pt;}
.x36{left:492.266667pt;}
.x31{left:499.000000pt;}
.x12{left:565.513733pt;}
.xf{left:566.791200pt;}
.x6{left:572.584533pt;}
}




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