
    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_d931635074d520448f16149f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8ec8c1bd4c06ccca84777cd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_83fe198b38e3f4a03880482d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1b31d392b0dfea12197110dd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7cd58e126da2566cab20b206.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a83ac38a0c4c49fdfa5cb1c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c4b1a4564ff9de04219d4fe0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.952000;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_127c47a2d18ef3af1b3efa55.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_27ff80ae01e4bc3dfb482d48.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_21d73860dbd4cf95462ce79b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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_9e491143562fe22beb9caf4e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3b9ae6f56a9a84e66b36a3e3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8fa9bd444b6c46d1e13be94d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.705000;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);}
.v5{vertical-align:-24.000000px;}
.v2{vertical-align:-20.399963px;}
.v3{vertical-align:-15.000183px;}
.v4{vertical-align:-3.600220px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.376009px;}
.v1{vertical-align:24.000000px;}
.ls50{letter-spacing:-1.980000px;}
.ls3c{letter-spacing:-1.920000px;}
.ls49{letter-spacing:-1.740000px;}
.ls42{letter-spacing:-1.380000px;}
.ls4b{letter-spacing:-1.200000px;}
.ls4e{letter-spacing:-0.480000px;}
.ls2e{letter-spacing:-0.420000px;}
.ls6e{letter-spacing:-0.408000px;}
.ls28{letter-spacing:-0.360000px;}
.ls6f{letter-spacing:-0.357000px;}
.ls4f{letter-spacing:-0.336000px;}
.ls6d{letter-spacing:-0.306000px;}
.ls29{letter-spacing:-0.300000px;}
.ls3b{letter-spacing:-0.294000px;}
.ls7c{letter-spacing:-0.255000px;}
.ls14{letter-spacing:-0.240000px;}
.ls3e{letter-spacing:-0.210000px;}
.ls70{letter-spacing:-0.204000px;}
.ls2a{letter-spacing:-0.180000px;}
.ls48{letter-spacing:-0.168000px;}
.ls72{letter-spacing:-0.153000px;}
.ls15{letter-spacing:-0.120000px;}
.ls81{letter-spacing:-0.102000px;}
.ls2b{letter-spacing:-0.084000px;}
.ls27{letter-spacing:-0.060000px;}
.ls71{letter-spacing:-0.051000px;}
.ls2c{letter-spacing:-0.042000px;}
.ls13{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000085px;}
.ls37{letter-spacing:0.030000px;}
.ls63{letter-spacing:0.051000px;}
.lsa{letter-spacing:0.060000px;}
.ls41{letter-spacing:0.084000px;}
.ls30{letter-spacing:0.090000px;}
.ls64{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.120000px;}
.ls73{letter-spacing:0.127500px;}
.ls74{letter-spacing:0.153000px;}
.ls11{letter-spacing:0.178791px;}
.ls17{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.204000px;}
.ls1b{letter-spacing:0.210000px;}
.ls1{letter-spacing:0.240000px;}
.ls25{letter-spacing:0.252000px;}
.ls12{letter-spacing:0.255000px;}
.ls62{letter-spacing:0.264000px;}
.ls47{letter-spacing:0.270000px;}
.ls77{letter-spacing:0.280500px;}
.ls34{letter-spacing:0.282000px;}
.ls65{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.294000px;}
.ls3{letter-spacing:0.300000px;}
.ls5d{letter-spacing:0.306000px;}
.ls23{letter-spacing:0.312000px;}
.ls44{letter-spacing:0.321625px;}
.ls69{letter-spacing:0.331500px;}
.ls4a{letter-spacing:0.336000px;}
.ls5e{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.382500px;}
.ls2f{letter-spacing:0.390000px;}
.ls52{letter-spacing:0.408000px;}
.lsf{letter-spacing:0.420000px;}
.ls16{letter-spacing:0.450000px;}
.ls5c{letter-spacing:0.459000px;}
.ls4d{letter-spacing:0.462000px;}
.ls7{letter-spacing:0.480000px;}
.ls53{letter-spacing:0.510000px;}
.ls33{letter-spacing:0.516000px;}
.lsd{letter-spacing:0.540000px;}
.ls3d{letter-spacing:0.546000px;}
.ls55{letter-spacing:0.561000px;}
.ls76{letter-spacing:0.586500px;}
.ls2{letter-spacing:0.600000px;}
.ls5b{letter-spacing:0.612000px;}
.ls31{letter-spacing:0.630000px;}
.ls7a{letter-spacing:0.637500px;}
.ls22{letter-spacing:0.644440px;}
.ls20{letter-spacing:0.644986px;}
.ls21{letter-spacing:0.644989px;}
.ls1a{letter-spacing:0.660000px;}
.ls5a{letter-spacing:0.663000px;}
.ls18{letter-spacing:0.690000px;}
.ls3a{letter-spacing:0.714000px;}
.ls26{letter-spacing:0.720000px;}
.ls80{letter-spacing:0.739500px;}
.ls38{letter-spacing:0.750000px;}
.ls58{letter-spacing:0.765000px;}
.lsb{letter-spacing:0.780000px;}
.ls35{letter-spacing:0.810000px;}
.ls59{letter-spacing:0.816000px;}
.ls19{letter-spacing:0.840000px;}
.ls6c{letter-spacing:0.867000px;}
.ls43{letter-spacing:0.870000px;}
.ls78{letter-spacing:0.892500px;}
.ls6{letter-spacing:0.900000px;}
.ls6a{letter-spacing:0.918000px;}
.ls40{letter-spacing:0.930000px;}
.ls8{letter-spacing:0.960000px;}
.ls60{letter-spacing:0.969000px;}
.lsc{letter-spacing:1.020000px;}
.ls6b{letter-spacing:1.071000px;}
.ls1c{letter-spacing:1.080000px;}
.ls7b{letter-spacing:1.096500px;}
.ls10{letter-spacing:1.110000px;}
.ls5f{letter-spacing:1.122000px;}
.lse{letter-spacing:1.140000px;}
.ls79{letter-spacing:1.173000px;}
.ls67{letter-spacing:1.198500px;}
.ls9{letter-spacing:1.200000px;}
.ls54{letter-spacing:1.224000px;}
.ls1e{letter-spacing:1.230000px;}
.ls2d{letter-spacing:1.260000px;}
.ls82{letter-spacing:1.275000px;}
.ls1f{letter-spacing:1.320000px;}
.ls56{letter-spacing:1.326000px;}
.ls61{letter-spacing:1.377000px;}
.ls24{letter-spacing:1.380000px;}
.ls7e{letter-spacing:1.428000px;}
.ls36{letter-spacing:1.440000px;}
.ls1d{letter-spacing:1.500000px;}
.ls32{letter-spacing:1.560000px;}
.ls46{letter-spacing:1.680000px;}
.ls66{letter-spacing:1.683000px;}
.ls7f{letter-spacing:1.785000px;}
.ls4c{letter-spacing:1.800000px;}
.ls3f{letter-spacing:1.860000px;}
.ls7d{letter-spacing:1.887000px;}
.ls45{letter-spacing:1.980000px;}
.ls51{letter-spacing:2.040000px;}
.ls68{letter-spacing:2.244000px;}
.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;}
}
.ws2{word-spacing:-18.432000px;}
.ws90{word-spacing:-16.980000px;}
.ws2c{word-spacing:-16.260000px;}
.ws7{word-spacing:-16.110000px;}
.ws73{word-spacing:-15.960000px;}
.ws3c{word-spacing:-15.900000px;}
.ws7f{word-spacing:-15.780000px;}
.ws96{word-spacing:-15.720000px;}
.ws99{word-spacing:-15.660000px;}
.ws81{word-spacing:-15.600000px;}
.ws28{word-spacing:-15.480000px;}
.ws53{word-spacing:-15.420000px;}
.ws9f{word-spacing:-15.360000px;}
.ws6e{word-spacing:-15.300000px;}
.ws29{word-spacing:-15.180000px;}
.ws71{word-spacing:-15.000000px;}
.ws75{word-spacing:-14.880000px;}
.wsaf{word-spacing:-14.832000px;}
.ws7b{word-spacing:-14.700000px;}
.ws7c{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.544000px;}
.ws91{word-spacing:-13.800000px;}
.wscc{word-spacing:-13.719000px;}
.ws88{word-spacing:-13.620000px;}
.ws8f{word-spacing:-13.260000px;}
.ws7d{word-spacing:-13.080000px;}
.ws9e{word-spacing:-13.020000px;}
.wscb{word-spacing:-13.005000px;}
.ws63{word-spacing:-12.750000px;}
.ws69{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.ws6{word-spacing:-11.520000px;}
.ws70{word-spacing:-11.214000px;}
.ws74{word-spacing:-11.046000px;}
.ws95{word-spacing:-10.962000px;}
.ws77{word-spacing:-10.920000px;}
.ws8d{word-spacing:-10.836000px;}
.ws6f{word-spacing:-10.794000px;}
.ws2d{word-spacing:-10.752000px;}
.ws52{word-spacing:-10.710000px;}
.ws87{word-spacing:-10.584000px;}
.ws2b{word-spacing:-10.458000px;}
.ws2a{word-spacing:-10.416000px;}
.ws8c{word-spacing:-10.332000px;}
.wsae{word-spacing:-10.302000px;}
.ws76{word-spacing:-10.290000px;}
.ws72{word-spacing:-10.206000px;}
.wsa4{word-spacing:-10.200000px;}
.ws97{word-spacing:-10.164000px;}
.ws1{word-spacing:-9.996000px;}
.ws8{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws9{word-spacing:-1.890000px;}
.wse7{word-spacing:-1.683000px;}
.wse{word-spacing:-1.500000px;}
.ws34{word-spacing:-1.440000px;}
.ws5a{word-spacing:-1.380000px;}
.wsb2{word-spacing:-1.326000px;}
.ws1c{word-spacing:-1.320000px;}
.wsb1{word-spacing:-1.275000px;}
.wsd{word-spacing:-1.260000px;}
.wsb6{word-spacing:-1.224000px;}
.ws8a{word-spacing:-1.200000px;}
.ws23{word-spacing:-1.140000px;}
.wsde{word-spacing:-1.122000px;}
.ws54{word-spacing:-1.080000px;}
.wsc8{word-spacing:-1.071000px;}
.ws10{word-spacing:-1.020000px;}
.wsb5{word-spacing:-0.969000px;}
.ws33{word-spacing:-0.960000px;}
.wsd7{word-spacing:-0.918000px;}
.ws45{word-spacing:-0.900000px;}
.ws1f{word-spacing:-0.840000px;}
.ws1a{word-spacing:-0.780000px;}
.wsc9{word-spacing:-0.765000px;}
.ws2e{word-spacing:-0.720000px;}
.wsca{word-spacing:-0.714000px;}
.ws5e{word-spacing:-0.660000px;}
.ws26{word-spacing:-0.612000px;}
.ws14{word-spacing:-0.600000px;}
.wsd2{word-spacing:-0.561000px;}
.ws21{word-spacing:-0.540000px;}
.wsc6{word-spacing:-0.510000px;}
.ws35{word-spacing:-0.480000px;}
.wsd6{word-spacing:-0.459000px;}
.ws57{word-spacing:-0.420000px;}
.wse5{word-spacing:-0.408000px;}
.ws4c{word-spacing:-0.360000px;}
.wsfd{word-spacing:-0.357000px;}
.wsec{word-spacing:-0.306000px;}
.ws20{word-spacing:-0.300000px;}
.ws64{word-spacing:-0.282000px;}
.wsc3{word-spacing:-0.264000px;}
.ws27{word-spacing:-0.255000px;}
.ws12{word-spacing:-0.240000px;}
.ws43{word-spacing:-0.180000px;}
.wse9{word-spacing:-0.153000px;}
.ws94{word-spacing:-0.120000px;}
.wsbc{word-spacing:-0.102000px;}
.wsf{word-spacing:-0.060000px;}
.wsb9{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.wsa{word-spacing:0.000000px;}
.wsff{word-spacing:0.051000px;}
.ws41{word-spacing:0.060000px;}
.ws2f{word-spacing:0.120000px;}
.wsb3{word-spacing:0.153000px;}
.ws8e{word-spacing:0.180000px;}
.ws49{word-spacing:0.240000px;}
.ws15{word-spacing:0.300000px;}
.ws3f{word-spacing:0.360000px;}
.ws86{word-spacing:0.408000px;}
.ws48{word-spacing:0.420000px;}
.wsdc{word-spacing:0.459000px;}
.ws9d{word-spacing:0.480000px;}
.ws3e{word-spacing:0.540000px;}
.wse4{word-spacing:0.561000px;}
.ws5d{word-spacing:0.600000px;}
.ws68{word-spacing:0.660000px;}
.ws8b{word-spacing:0.714000px;}
.ws42{word-spacing:0.720000px;}
.wsc{word-spacing:0.780000px;}
.wsfb{word-spacing:0.816000px;}
.wsa9{word-spacing:0.840000px;}
.wsda{word-spacing:0.867000px;}
.ws9c{word-spacing:0.900000px;}
.ws6c{word-spacing:0.960000px;}
.wsc0{word-spacing:0.969000px;}
.ws67{word-spacing:1.020000px;}
.ws80{word-spacing:1.080000px;}
.ws7e{word-spacing:1.140000px;}
.wsc7{word-spacing:1.173000px;}
.ws56{word-spacing:1.200000px;}
.ws55{word-spacing:1.260000px;}
.wsaa{word-spacing:1.275000px;}
.ws4e{word-spacing:1.320000px;}
.wse6{word-spacing:1.326000px;}
.wsdf{word-spacing:1.377000px;}
.ws1d{word-spacing:1.380000px;}
.wsa6{word-spacing:1.440000px;}
.wsba{word-spacing:1.479000px;}
.wsb{word-spacing:1.500000px;}
.wsbb{word-spacing:1.530000px;}
.ws22{word-spacing:1.560000px;}
.wsfa{word-spacing:1.581000px;}
.ws30{word-spacing:1.620000px;}
.wse0{word-spacing:1.632000px;}
.ws5f{word-spacing:1.680000px;}
.wsd1{word-spacing:1.683000px;}
.wsc1{word-spacing:1.734000px;}
.ws50{word-spacing:1.740000px;}
.wse8{word-spacing:1.785000px;}
.ws19{word-spacing:1.800000px;}
.ws31{word-spacing:1.860000px;}
.wsf4{word-spacing:1.887000px;}
.ws5b{word-spacing:1.920000px;}
.wsb7{word-spacing:1.938000px;}
.ws4d{word-spacing:1.980000px;}
.wsd9{word-spacing:1.989000px;}
.ws40{word-spacing:2.040000px;}
.wscd{word-spacing:2.091000px;}
.ws18{word-spacing:2.100000px;}
.wsb8{word-spacing:2.142000px;}
.ws66{word-spacing:2.160000px;}
.wsc2{word-spacing:2.193000px;}
.ws51{word-spacing:2.220000px;}
.wsd4{word-spacing:2.244000px;}
.ws44{word-spacing:2.280000px;}
.wsd5{word-spacing:2.295000px;}
.ws3b{word-spacing:2.340000px;}
.wsdd{word-spacing:2.397000px;}
.ws13{word-spacing:2.400000px;}
.wsd8{word-spacing:2.448000px;}
.ws32{word-spacing:2.460000px;}
.wsf5{word-spacing:2.499000px;}
.ws6b{word-spacing:2.520000px;}
.wseb{word-spacing:2.550000px;}
.ws3a{word-spacing:2.580000px;}
.ws58{word-spacing:2.640000px;}
.wsea{word-spacing:2.652000px;}
.ws16{word-spacing:2.700000px;}
.wsd0{word-spacing:2.703000px;}
.ws92{word-spacing:2.760000px;}
.wsce{word-spacing:2.805000px;}
.ws36{word-spacing:2.820000px;}
.wsee{word-spacing:2.856000px;}
.ws4f{word-spacing:2.880000px;}
.ws84{word-spacing:2.907000px;}
.ws1b{word-spacing:2.940000px;}
.wse2{word-spacing:2.958000px;}
.ws6a{word-spacing:3.000000px;}
.wsbe{word-spacing:3.009000px;}
.ws6d{word-spacing:3.060000px;}
.ws60{word-spacing:3.120000px;}
.wsdb{word-spacing:3.162000px;}
.ws46{word-spacing:3.180000px;}
.ws82{word-spacing:3.213000px;}
.ws65{word-spacing:3.240000px;}
.ws24{word-spacing:3.300000px;}
.wse1{word-spacing:3.315000px;}
.ws1e{word-spacing:3.360000px;}
.wsef{word-spacing:3.366000px;}
.ws83{word-spacing:3.417000px;}
.ws78{word-spacing:3.420000px;}
.ws9b{word-spacing:3.480000px;}
.wscf{word-spacing:3.519000px;}
.ws4a{word-spacing:3.540000px;}
.wsf1{word-spacing:3.570000px;}
.wsf2{word-spacing:3.621000px;}
.ws4b{word-spacing:3.660000px;}
.wsbd{word-spacing:3.672000px;}
.ws98{word-spacing:3.720000px;}
.wsf0{word-spacing:3.723000px;}
.wsf3{word-spacing:3.774000px;}
.ws38{word-spacing:3.840000px;}
.ws17{word-spacing:3.900000px;}
.wsfc{word-spacing:4.029000px;}
.wsed{word-spacing:4.080000px;}
.wsb0{word-spacing:4.131000px;}
.wsa5{word-spacing:4.200000px;}
.wsf8{word-spacing:4.233000px;}
.wsf6{word-spacing:4.284000px;}
.ws3d{word-spacing:4.380000px;}
.wsa0{word-spacing:4.440000px;}
.ws39{word-spacing:4.500000px;}
.ws59{word-spacing:4.560000px;}
.wsd3{word-spacing:4.641000px;}
.wsb4{word-spacing:4.692000px;}
.ws47{word-spacing:4.740000px;}
.wse3{word-spacing:4.794000px;}
.ws79{word-spacing:4.800000px;}
.ws7a{word-spacing:4.920000px;}
.wsbf{word-spacing:5.049000px;}
.ws37{word-spacing:5.100000px;}
.wsf9{word-spacing:5.253000px;}
.ws5c{word-spacing:5.400000px;}
.ws62{word-spacing:6.069000px;}
.ws93{word-spacing:6.300000px;}
.wsc4{word-spacing:6.426000px;}
.wsa3{word-spacing:6.732000px;}
.ws9a{word-spacing:6.780000px;}
.wsfe{word-spacing:6.936000px;}
.ws89{word-spacing:7.140000px;}
.wsf7{word-spacing:7.599000px;}
.wsa7{word-spacing:7.680000px;}
.wsa8{word-spacing:8.100000px;}
.wsc5{word-spacing:8.415000px;}
.wsac{word-spacing:8.772000px;}
.ws61{word-spacing:9.282000px;}
.wsad{word-spacing:9.792000px;}
.wsab{word-spacing:9.894000px;}
.ws85{word-spacing:10.404000px;}
.wsa2{word-spacing:11.628000px;}
.wsa1{word-spacing:12.189000px;}
.ws100{word-spacing:13.515000px;}
.ws101{word-spacing:17.595000px;}
.ws25{word-spacing:72.267000px;}
._13{margin-left:-2959.377061px;}
._e{margin-left:-72.675000px;}
._1c{margin-left:-23.103000px;}
._17{margin-left:-19.463993px;}
._b{margin-left:-16.575000px;}
._18{margin-left:-15.172358px;}
._12{margin-left:-13.800000px;}
._11{margin-left:-12.780000px;}
._14{margin-left:-10.261200px;}
._1{margin-left:-8.520000px;}
._10{margin-left:-7.089000px;}
._5{margin-left:-5.929702px;}
._6{margin-left:-4.525937px;}
._4{margin-left:-2.872062px;}
._0{margin-left:-1.632000px;}
._3{width:1.206000px;}
._7{width:2.386062px;}
._a{width:4.061993px;}
._1d{width:6.630000px;}
._1e{width:7.728000px;}
._1b{width:10.914000px;}
._16{width:12.071400px;}
._1f{width:13.667995px;}
._9{width:14.880000px;}
._19{width:17.141708px;}
._c{width:18.360000px;}
._1a{width:20.526000px;}
._15{width:33.000000px;}
._8{width:36.000000px;}
._2{width:40.144797px;}
._d{width:54.621000px;}
._f{width:2648.277056px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs8{font-size:56.399998px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y10d{bottom:112.642795px;}
.y38{bottom:112.938300px;}
.yde{bottom:113.101806px;}
.y6e{bottom:113.415298px;}
.y8c{bottom:113.415344px;}
.yf1{bottom:114.735294px;}
.ybf{bottom:114.735306px;}
.y126{bottom:114.874786px;}
.y148{bottom:114.874947px;}
.y205{bottom:116.614823px;}
.y155{bottom:122.282699px;}
.y2d{bottom:122.973450px;}
.y18f{bottom:124.081479px;}
.y10c{bottom:127.636795px;}
.y10f{bottom:127.649545px;}
.ydd{bottom:128.095806px;}
.y1cc{bottom:131.548823px;}
.y204{bottom:131.608823px;}
.y246{bottom:132.004073px;}
.y6d{bottom:132.165298px;}
.y8b{bottom:132.165344px;}
.y37{bottom:133.032303px;}
.yf0{bottom:133.485294px;}
.ybe{bottom:133.485306px;}
.y125{bottom:133.624786px;}
.y147{bottom:134.524944px;}
.y154{bottom:137.276699px;}
.y18e{bottom:139.075479px;}
.y2c{bottom:141.723450px;}
.y10b{bottom:142.630795px;}
.y10e{bottom:142.643545px;}
.ydc{bottom:143.089806px;}
.y134{bottom:143.236797px;}
.y1cb{bottom:146.542823px;}
.y203{bottom:146.602823px;}
.y245{bottom:146.998073px;}
.y6c{bottom:150.915298px;}
.y8a{bottom:150.915344px;}
.yef{bottom:152.235294px;}
.ybd{bottom:152.235306px;}
.y124{bottom:152.374786px;}
.y146{bottom:152.374947px;}
.y18d{bottom:154.069479px;}
.y36{bottom:155.579556px;}
.y133{bottom:158.236797px;}
.y2b{bottom:160.473450px;}
.y1ca{bottom:161.536823px;}
.y202{bottom:161.596823px;}
.y244{bottom:161.992073px;}
.y18c{bottom:169.063479px;}
.y6b{bottom:169.665298px;}
.y89{bottom:169.665344px;}
.y131{bottom:170.985294px;}
.ybc{bottom:170.985306px;}
.y123{bottom:171.124786px;}
.y145{bottom:171.124947px;}
.y132{bottom:173.230797px;}
.y135{bottom:173.237547px;}
.y1c9{bottom:176.530823px;}
.y201{bottom:176.590823px;}
.y243{bottom:176.986073px;}
.y35{bottom:178.126797px;}
.y2a{bottom:179.223450px;}
.y18b{bottom:184.057479px;}
.y6a{bottom:188.415298px;}
.y88{bottom:188.415344px;}
.ybb{bottom:189.735306px;}
.y122{bottom:189.874786px;}
.y144{bottom:189.874947px;}
.y1c8{bottom:191.524823px;}
.y200{bottom:191.584823px;}
.y242{bottom:191.980073px;}
.y34{bottom:195.580059px;}
.y29{bottom:197.973450px;}
.y18a{bottom:199.051479px;}
.y1c7{bottom:206.518823px;}
.y1ff{bottom:206.578823px;}
.y241{bottom:206.974073px;}
.y69{bottom:207.165298px;}
.y87{bottom:207.165344px;}
.yba{bottom:208.485306px;}
.y121{bottom:208.624786px;}
.y143{bottom:208.624947px;}
.y189{bottom:214.045479px;}
.y33{bottom:215.674049px;}
.y28{bottom:216.723450px;}
.y1c6{bottom:221.512823px;}
.y1fe{bottom:221.572823px;}
.y240{bottom:221.968073px;}
.y68{bottom:225.915298px;}
.y86{bottom:225.915344px;}
.yb9{bottom:227.235306px;}
.y120{bottom:227.374786px;}
.y142{bottom:228.274956px;}
.y32{bottom:233.133300px;}
.y27{bottom:235.473450px;}
.y1c5{bottom:236.506823px;}
.y1fd{bottom:236.566823px;}
.y23f{bottom:236.962073px;}
.y67{bottom:244.665298px;}
.y85{bottom:244.665344px;}
.yb8{bottom:245.985306px;}
.y11f{bottom:246.124786px;}
.y141{bottom:246.124947px;}
.y31{bottom:248.127300px;}
.y1c4{bottom:251.500823px;}
.y1fc{bottom:251.560823px;}
.y23e{bottom:251.956073px;}
.y26{bottom:254.223450px;}
.y188{bottom:255.240729px;}
.y66{bottom:263.415298px;}
.y84{bottom:263.415344px;}
.yb7{bottom:264.735306px;}
.y11e{bottom:264.874786px;}
.y140{bottom:264.874947px;}
.y1c3{bottom:266.494823px;}
.y1fb{bottom:266.554823px;}
.y23d{bottom:266.950073px;}
.y30{bottom:268.221291px;}
.y25{bottom:272.973450px;}
.y1c2{bottom:281.488823px;}
.y1fa{bottom:281.548823px;}
.y23c{bottom:281.944073px;}
.y65{bottom:282.165298px;}
.y83{bottom:282.165344px;}
.yb6{bottom:283.485306px;}
.y11d{bottom:283.624786px;}
.y13f{bottom:283.624809px;}
.y187{bottom:285.203229px;}
.y24{bottom:291.723450px;}
.y2f{bottom:293.221805px;}
.y1c1{bottom:296.482823px;}
.y1f9{bottom:296.542823px;}
.y23b{bottom:296.938073px;}
.y64{bottom:300.915298px;}
.y82{bottom:300.915344px;}
.yee{bottom:302.235260px;}
.yb5{bottom:302.235306px;}
.y11c{bottom:302.374786px;}
.y13e{bottom:302.374809px;}
.y2e{bottom:308.215805px;}
.y23{bottom:310.473450px;}
.y1c0{bottom:311.476823px;}
.y1f8{bottom:311.536823px;}
.y23a{bottom:311.932073px;}
.y186{bottom:315.165729px;}
.y63{bottom:319.665298px;}
.y81{bottom:319.665344px;}
.yed{bottom:320.985260px;}
.yb4{bottom:320.985306px;}
.y11b{bottom:321.124786px;}
.y13d{bottom:321.124809px;}
.y1bf{bottom:326.470823px;}
.y1f7{bottom:326.530823px;}
.y239{bottom:326.926073px;}
.y22{bottom:329.223450px;}
.y62{bottom:338.415298px;}
.y80{bottom:338.415344px;}
.yec{bottom:339.735260px;}
.y10a{bottom:339.735306px;}
.y11a{bottom:339.874786px;}
.y13c{bottom:339.874809px;}
.y1be{bottom:341.464823px;}
.y1f6{bottom:341.524823px;}
.y238{bottom:341.920073px;}
.ye8{bottom:344.461791px;}
.y185{bottom:345.128229px;}
.y21{bottom:347.973450px;}
.y1bd{bottom:356.458823px;}
.y1f5{bottom:356.518823px;}
.y237{bottom:356.914073px;}
.y61{bottom:357.165298px;}
.y7f{bottom:357.165344px;}
.yeb{bottom:358.485260px;}
.yb3{bottom:358.485306px;}
.y119{bottom:358.624786px;}
.ye7{bottom:359.455791px;}
.y13b{bottom:359.524796px;}
.y184{bottom:360.122229px;}
.y1f{bottom:366.723450px;}
.y1bc{bottom:371.452823px;}
.y1f4{bottom:371.512823px;}
.y236{bottom:371.908073px;}
.ye6{bottom:374.449791px;}
.y183{bottom:375.116229px;}
.y60{bottom:375.915298px;}
.y7e{bottom:375.915344px;}
.yea{bottom:377.235260px;}
.y109{bottom:377.235306px;}
.y118{bottom:377.374786px;}
.y1e{bottom:385.473450px;}
.y1bb{bottom:386.446823px;}
.y1f3{bottom:386.506823px;}
.y235{bottom:386.902073px;}
.y182{bottom:390.110229px;}
.y5f{bottom:394.665298px;}
.y7d{bottom:394.665344px;}
.ye9{bottom:395.985260px;}
.y108{bottom:395.985306px;}
.y117{bottom:396.124786px;}
.y1ba{bottom:401.440823px;}
.y1f2{bottom:401.500823px;}
.y234{bottom:401.896073px;}
.y1d{bottom:404.223450px;}
.y5e{bottom:413.415298px;}
.y7c{bottom:413.415344px;}
.yb2{bottom:414.735260px;}
.y107{bottom:414.735306px;}
.y116{bottom:414.874786px;}
.y13a{bottom:415.774796px;}
.y1b9{bottom:416.434823px;}
.y1f1{bottom:416.494823px;}
.y233{bottom:416.890073px;}
.y1c{bottom:422.973450px;}
.y181{bottom:423.860229px;}
.y272{bottom:430.940590px;}
.y1b8{bottom:431.428823px;}
.y1f0{bottom:431.488823px;}
.y232{bottom:431.884073px;}
.y5d{bottom:432.165344px;}
.yb1{bottom:433.485260px;}
.y106{bottom:433.485306px;}
.y115{bottom:433.624786px;}
.y1b{bottom:441.723450px;}
.y271{bottom:445.934590px;}
.y1b7{bottom:446.422823px;}
.y1ef{bottom:446.482823px;}
.y231{bottom:446.878073px;}
.y5c{bottom:450.915344px;}
.yb0{bottom:452.235260px;}
.y105{bottom:452.235306px;}
.y114{bottom:452.374786px;}
.y1a{bottom:460.473450px;}
.y1b6{bottom:461.416823px;}
.y1ee{bottom:461.476823px;}
.y180{bottom:461.578823px;}
.y230{bottom:461.872073px;}
.y5b{bottom:469.665344px;}
.yaf{bottom:470.985260px;}
.y104{bottom:470.985306px;}
.y113{bottom:471.124786px;}
.y1b5{bottom:476.410823px;}
.y1ed{bottom:476.470823px;}
.y17f{bottom:476.572823px;}
.y270{bottom:476.776840px;}
.y22f{bottom:476.866073px;}
.y19{bottom:479.223450px;}
.y5a{bottom:488.415344px;}
.yae{bottom:489.735260px;}
.y103{bottom:489.735306px;}
.y112{bottom:489.874786px;}
.y1b4{bottom:491.404823px;}
.y1ec{bottom:491.464823px;}
.y17e{bottom:491.566823px;}
.y26f{bottom:491.770840px;}
.y22e{bottom:491.860073px;}
.y18{bottom:497.973450px;}
.y1b3{bottom:506.398823px;}
.y1eb{bottom:506.458823px;}
.y26e{bottom:506.764840px;}
.y22d{bottom:506.854073px;}
.y59{bottom:507.165344px;}
.yad{bottom:508.485260px;}
.y102{bottom:508.485306px;}
.y111{bottom:508.624786px;}
.y20{bottom:516.723450px;}
.y1b2{bottom:521.392823px;}
.y1ea{bottom:521.452823px;}
.y26d{bottom:521.758840px;}
.y22c{bottom:521.848073px;}
.y17d{bottom:525.277823px;}
.y58{bottom:525.915344px;}
.yac{bottom:527.235260px;}
.y101{bottom:527.235306px;}
.y110{bottom:527.374786px;}
.y17{bottom:535.473450px;}
.y1b1{bottom:536.386823px;}
.y1e9{bottom:536.446823px;}
.y26c{bottom:536.752840px;}
.y22b{bottom:536.842073px;}
.y17c{bottom:540.271823px;}
.y57{bottom:544.665344px;}
.yab{bottom:545.985260px;}
.y100{bottom:545.985306px;}
.y139{bottom:546.124786px;}
.y1b0{bottom:551.380823px;}
.y1e8{bottom:551.440823px;}
.y26b{bottom:551.746840px;}
.y22a{bottom:551.836073px;}
.y17b{bottom:555.265823px;}
.y56{bottom:563.415344px;}
.yaa{bottom:564.735260px;}
.yff{bottom:564.735306px;}
.y138{bottom:564.874786px;}
.y1af{bottom:566.374823px;}
.y1e7{bottom:566.434823px;}
.y26a{bottom:566.740840px;}
.y229{bottom:566.830073px;}
.y1ae{bottom:581.368823px;}
.y1e6{bottom:581.428823px;}
.y269{bottom:581.734840px;}
.y228{bottom:581.824073px;}
.y55{bottom:582.165344px;}
.ya9{bottom:583.485260px;}
.ydb{bottom:583.485306px;}
.y137{bottom:583.624786px;}
.y128{bottom:584.656818px;}
.y17a{bottom:588.976823px;}
.y16{bottom:591.723450px;}
.y1ad{bottom:596.362823px;}
.y1e5{bottom:596.422823px;}
.y268{bottom:596.728840px;}
.y227{bottom:596.818073px;}
.y127{bottom:599.650818px;}
.y54{bottom:600.915344px;}
.ya8{bottom:602.235260px;}
.yda{bottom:602.235306px;}
.y136{bottom:602.374786px;}
.y179{bottom:603.970823px;}
.y1ac{bottom:611.356823px;}
.y1e4{bottom:611.416823px;}
.y267{bottom:611.722840px;}
.y226{bottom:611.812073px;}
.y178{bottom:618.964823px;}
.y53{bottom:619.665344px;}
.ya7{bottom:620.985260px;}
.yd9{bottom:620.985306px;}
.y1ab{bottom:626.350823px;}
.y1e3{bottom:626.410823px;}
.y266{bottom:626.716840px;}
.y225{bottom:626.806073px;}
.y15{bottom:629.223450px;}
.y177{bottom:633.958823px;}
.y52{bottom:638.415344px;}
.ya6{bottom:639.735260px;}
.yd8{bottom:639.735306px;}
.y1aa{bottom:641.344823px;}
.y1e2{bottom:641.404823px;}
.y265{bottom:641.710840px;}
.y224{bottom:641.800073px;}
.y14{bottom:647.973450px;}
.y15a{bottom:648.574781px;}
.y176{bottom:648.952823px;}
.y1a9{bottom:656.338823px;}
.y1e1{bottom:656.398823px;}
.y264{bottom:656.704840px;}
.y223{bottom:656.794073px;}
.y51{bottom:657.165344px;}
.ya5{bottom:658.485260px;}
.yd7{bottom:658.485306px;}
.y159{bottom:663.568781px;}
.y175{bottom:663.946823px;}
.y13{bottom:666.723450px;}
.y1a8{bottom:671.332823px;}
.y1e0{bottom:671.392823px;}
.y263{bottom:671.698840px;}
.y222{bottom:671.788073px;}
.y50{bottom:675.915344px;}
.ya4{bottom:677.235260px;}
.yd6{bottom:677.235306px;}
.y158{bottom:678.562781px;}
.y174{bottom:678.940823px;}
.y12{bottom:685.473450px;}
.y1a7{bottom:686.326823px;}
.y1df{bottom:686.386823px;}
.y262{bottom:686.692840px;}
.y221{bottom:686.782073px;}
.y157{bottom:693.556781px;}
.y173{bottom:693.934823px;}
.y4f{bottom:694.665344px;}
.ya3{bottom:695.985260px;}
.yd5{bottom:695.985306px;}
.y1a6{bottom:701.320823px;}
.y1de{bottom:701.380823px;}
.y261{bottom:701.686840px;}
.y220{bottom:701.776073px;}
.y11{bottom:704.223450px;}
.y156{bottom:708.550781px;}
.y4e{bottom:713.415344px;}
.ya2{bottom:714.735260px;}
.yd4{bottom:714.735306px;}
.y1a5{bottom:716.314823px;}
.y1dd{bottom:716.374823px;}
.y260{bottom:716.680840px;}
.y21f{bottom:716.770073px;}
.y10{bottom:722.973450px;}
.y172{bottom:727.645823px;}
.y1a4{bottom:731.308823px;}
.y1dc{bottom:731.368823px;}
.y25f{bottom:731.674840px;}
.y21e{bottom:731.764073px;}
.y4d{bottom:732.165344px;}
.ya1{bottom:733.485260px;}
.yd3{bottom:733.485306px;}
.yf{bottom:741.723450px;}
.y171{bottom:742.639823px;}
.y1a3{bottom:746.302823px;}
.y1db{bottom:746.362823px;}
.y25e{bottom:746.668840px;}
.y21d{bottom:746.758073px;}
.y4c{bottom:750.915344px;}
.ya0{bottom:752.235260px;}
.yd2{bottom:752.235306px;}
.y153{bottom:753.135315px;}
.y170{bottom:757.633823px;}
.ye{bottom:760.473450px;}
.y1a2{bottom:761.296823px;}
.y1da{bottom:761.356823px;}
.y25d{bottom:761.662840px;}
.y21c{bottom:761.752073px;}
.y4b{bottom:769.665344px;}
.y9f{bottom:770.985260px;}
.yd1{bottom:770.985306px;}
.y16f{bottom:772.627823px;}
.y1a1{bottom:776.290823px;}
.y1d9{bottom:776.350823px;}
.y25c{bottom:776.656840px;}
.y21b{bottom:776.746073px;}
.yd{bottom:779.223450px;}
.y16e{bottom:787.621823px;}
.y4a{bottom:788.415344px;}
.y9e{bottom:789.735260px;}
.yd0{bottom:789.735306px;}
.y1a0{bottom:791.284823px;}
.y1d8{bottom:791.344823px;}
.y25b{bottom:791.650840px;}
.y21a{bottom:791.740073px;}
.yc{bottom:797.973450px;}
.y16d{bottom:802.615823px;}
.y19f{bottom:806.278823px;}
.y1d7{bottom:806.338823px;}
.y25a{bottom:806.644840px;}
.y219{bottom:806.734073px;}
.y49{bottom:807.165344px;}
.y9d{bottom:808.485260px;}
.ycf{bottom:808.485306px;}
.yb{bottom:816.723450px;}
.y16c{bottom:817.609823px;}
.y19e{bottom:821.272823px;}
.y1d6{bottom:821.332823px;}
.y259{bottom:821.638840px;}
.y218{bottom:821.728073px;}
.y48{bottom:825.915344px;}
.y9c{bottom:827.235260px;}
.yce{bottom:827.235306px;}
.ye5{bottom:828.135315px;}
.y16b{bottom:832.603823px;}
.y19d{bottom:836.266823px;}
.y1d5{bottom:836.326823px;}
.y258{bottom:836.632840px;}
.y217{bottom:836.722073px;}
.y47{bottom:844.665344px;}
.y9b{bottom:845.985260px;}
.ycd{bottom:845.985306px;}
.y152{bottom:846.885315px;}
.y16a{bottom:847.597823px;}
.y19c{bottom:851.260823px;}
.y1d4{bottom:851.320823px;}
.y257{bottom:851.626840px;}
.y216{bottom:851.716073px;}
.ya{bottom:860.906208px;}
.y169{bottom:862.591823px;}
.y7b{bottom:863.415298px;}
.y46{bottom:863.415344px;}
.y9a{bottom:864.735260px;}
.yfe{bottom:864.735294px;}
.ycc{bottom:864.735306px;}
.y19b{bottom:866.254823px;}
.y1d3{bottom:866.314823px;}
.y256{bottom:866.620840px;}
.y215{bottom:866.710073px;}
.y9{bottom:875.900208px;}
.y168{bottom:877.585823px;}
.y19a{bottom:881.248823px;}
.y1d2{bottom:881.308823px;}
.y255{bottom:881.614840px;}
.y214{bottom:881.704073px;}
.y7a{bottom:882.165298px;}
.y45{bottom:882.165344px;}
.y99{bottom:883.485260px;}
.yfd{bottom:883.485294px;}
.ycb{bottom:883.485306px;}
.ye4{bottom:884.385315px;}
.y167{bottom:892.579823px;}
.y199{bottom:896.242823px;}
.y1d1{bottom:896.302823px;}
.y254{bottom:896.608840px;}
.y213{bottom:896.698073px;}
.y79{bottom:900.915298px;}
.y44{bottom:900.915344px;}
.y98{bottom:902.235260px;}
.yfc{bottom:902.235294px;}
.yca{bottom:902.235306px;}
.y166{bottom:907.573823px;}
.y198{bottom:911.236823px;}
.y1d0{bottom:911.296823px;}
.y253{bottom:911.602840px;}
.y212{bottom:911.692073px;}
.y8{bottom:918.500244px;}
.y78{bottom:919.665298px;}
.y43{bottom:919.665344px;}
.y97{bottom:920.985260px;}
.yfb{bottom:920.985294px;}
.yc9{bottom:920.985306px;}
.ye3{bottom:921.885315px;}
.y165{bottom:922.567823px;}
.y197{bottom:926.230823px;}
.y1cf{bottom:926.290823px;}
.y252{bottom:926.596840px;}
.y211{bottom:926.686073px;}
.y7{bottom:937.250244px;}
.y164{bottom:937.561823px;}
.y77{bottom:938.415298px;}
.y42{bottom:938.415344px;}
.y96{bottom:939.735260px;}
.yfa{bottom:939.735294px;}
.yc8{bottom:939.735306px;}
.y151{bottom:939.739906px;}
.y196{bottom:941.224823px;}
.y1ce{bottom:941.284823px;}
.y251{bottom:941.590840px;}
.y210{bottom:941.680073px;}
.y1cd{bottom:956.278823px;}
.y250{bottom:956.584840px;}
.y20f{bottom:956.674073px;}
.y76{bottom:957.165298px;}
.y41{bottom:957.165344px;}
.y95{bottom:958.485260px;}
.yf9{bottom:958.485294px;}
.yc7{bottom:958.485306px;}
.y150{bottom:958.489906px;}
.y163{bottom:971.272823px;}
.y24f{bottom:971.578840px;}
.y20e{bottom:971.668073px;}
.y195{bottom:974.974823px;}
.y75{bottom:975.915298px;}
.y40{bottom:975.915344px;}
.y94{bottom:977.235260px;}
.yf8{bottom:977.235294px;}
.yc6{bottom:977.235306px;}
.y14f{bottom:977.239906px;}
.ye2{bottom:978.135315px;}
.y6{bottom:981.936768px;}
.y130{bottom:985.144844px;}
.y162{bottom:986.266823px;}
.y24e{bottom:986.572840px;}
.y20d{bottom:986.662073px;}
.y74{bottom:994.665298px;}
.y3f{bottom:994.665344px;}
.y93{bottom:995.985260px;}
.yf7{bottom:995.985294px;}
.yc5{bottom:995.985306px;}
.y14e{bottom:995.989906px;}
.y12f{bottom:1000.138844px;}
.y161{bottom:1001.260823px;}
.y24d{bottom:1001.566840px;}
.y20c{bottom:1001.656073px;}
.y5{bottom:1008.936768px;}
.y73{bottom:1013.415298px;}
.y3e{bottom:1013.415344px;}
.y92{bottom:1014.735260px;}
.yf6{bottom:1014.735294px;}
.yc4{bottom:1014.735306px;}
.y14d{bottom:1014.739906px;}
.y12e{bottom:1015.132844px;}
.y160{bottom:1016.254823px;}
.y24c{bottom:1016.560840px;}
.y20b{bottom:1016.650073px;}
.y12d{bottom:1030.126844px;}
.y15f{bottom:1031.248823px;}
.y194{bottom:1031.307744px;}
.y24b{bottom:1031.554840px;}
.y20a{bottom:1031.644073px;}
.y72{bottom:1032.165298px;}
.y3d{bottom:1032.165344px;}
.y91{bottom:1033.485260px;}
.yf5{bottom:1033.485294px;}
.yc3{bottom:1033.485306px;}
.y14c{bottom:1033.489906px;}
.ye1{bottom:1034.385315px;}
.y12c{bottom:1045.120844px;}
.y15e{bottom:1046.242823px;}
.y193{bottom:1046.301744px;}
.y24a{bottom:1046.548840px;}
.y209{bottom:1046.638073px;}
.y71{bottom:1050.915298px;}
.y3c{bottom:1050.915344px;}
.y90{bottom:1052.235260px;}
.yf4{bottom:1052.235294px;}
.yc2{bottom:1052.235306px;}
.y14b{bottom:1052.239906px;}
.y12b{bottom:1060.114844px;}
.y15d{bottom:1061.236823px;}
.y192{bottom:1061.295744px;}
.y249{bottom:1061.542840px;}
.y208{bottom:1061.632073px;}
.y70{bottom:1069.665298px;}
.y3b{bottom:1069.665344px;}
.y8f{bottom:1070.985260px;}
.yf3{bottom:1070.985294px;}
.yc1{bottom:1070.985306px;}
.y14a{bottom:1070.989906px;}
.ye0{bottom:1071.885315px;}
.y12a{bottom:1075.108844px;}
.y15c{bottom:1076.230823px;}
.y191{bottom:1076.289744px;}
.y248{bottom:1076.536840px;}
.y207{bottom:1076.626073px;}
.y6f{bottom:1088.415298px;}
.y3a{bottom:1088.415344px;}
.y8e{bottom:1089.735260px;}
.yf2{bottom:1089.735294px;}
.yc0{bottom:1089.735306px;}
.y149{bottom:1089.739906px;}
.y129{bottom:1090.102844px;}
.ydf{bottom:1090.635315px;}
.y15b{bottom:1091.224823px;}
.y190{bottom:1091.283744px;}
.y247{bottom:1091.530840px;}
.y206{bottom:1091.620073px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y39{bottom:1127.482361px;}
.y8d{bottom:1127.482544px;}
.hd{height:26.203799px;}
.h2{height:33.840000px;}
.hc{height:37.434000px;}
.h11{height:41.397598px;}
.h8{height:44.040000px;}
.h4{height:44.676000px;}
.h10{height:45.186000px;}
.h17{height:46.576808px;}
.h16{height:46.579808px;}
.h9{height:53.160000px;}
.h15{height:54.827817px;}
.h14{height:54.827863px;}
.h13{height:54.827954px;}
.he{height:54.828000px;}
.hf{height:54.828183px;}
.h18{height:54.828549px;}
.h3{height:54.862258px;}
.h12{height:59.004000px;}
.h7{height:59.340000px;}
.hb{height:61.380000px;}
.h6{height:64.866000px;}
.ha{height:71.208000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x6{left:78.746400px;}
.x7{left:93.545402px;}
.xa{left:96.307045px;}
.x5{left:97.796100px;}
.xd{left:102.048152px;}
.x4{left:459.215389px;}
.x8{left:476.222862px;}
.xb{left:478.987043px;}
.xc{left:484.725290px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.x9{left:798.209564px;}
@media print{
.v5{vertical-align:-21.333333pt;}
.v2{vertical-align:-18.133301pt;}
.v3{vertical-align:-13.333496pt;}
.v4{vertical-align:-3.200196pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.112008pt;}
.v1{vertical-align:21.333333pt;}
.ls50{letter-spacing:-1.760000pt;}
.ls3c{letter-spacing:-1.706667pt;}
.ls49{letter-spacing:-1.546667pt;}
.ls42{letter-spacing:-1.226667pt;}
.ls4b{letter-spacing:-1.066667pt;}
.ls4e{letter-spacing:-0.426667pt;}
.ls2e{letter-spacing:-0.373333pt;}
.ls6e{letter-spacing:-0.362667pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls6f{letter-spacing:-0.317333pt;}
.ls4f{letter-spacing:-0.298667pt;}
.ls6d{letter-spacing:-0.272000pt;}
.ls29{letter-spacing:-0.266667pt;}
.ls3b{letter-spacing:-0.261333pt;}
.ls7c{letter-spacing:-0.226667pt;}
.ls14{letter-spacing:-0.213333pt;}
.ls3e{letter-spacing:-0.186667pt;}
.ls70{letter-spacing:-0.181333pt;}
.ls2a{letter-spacing:-0.160000pt;}
.ls48{letter-spacing:-0.149333pt;}
.ls72{letter-spacing:-0.136000pt;}
.ls15{letter-spacing:-0.106667pt;}
.ls81{letter-spacing:-0.090667pt;}
.ls2b{letter-spacing:-0.074667pt;}
.ls27{letter-spacing:-0.053333pt;}
.ls71{letter-spacing:-0.045333pt;}
.ls2c{letter-spacing:-0.037333pt;}
.ls13{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000076pt;}
.ls37{letter-spacing:0.026667pt;}
.ls63{letter-spacing:0.045333pt;}
.lsa{letter-spacing:0.053333pt;}
.ls41{letter-spacing:0.074667pt;}
.ls30{letter-spacing:0.080000pt;}
.ls64{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.106667pt;}
.ls73{letter-spacing:0.113333pt;}
.ls74{letter-spacing:0.136000pt;}
.ls11{letter-spacing:0.158926pt;}
.ls17{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.181333pt;}
.ls1b{letter-spacing:0.186667pt;}
.ls1{letter-spacing:0.213333pt;}
.ls25{letter-spacing:0.224000pt;}
.ls12{letter-spacing:0.226667pt;}
.ls62{letter-spacing:0.234667pt;}
.ls47{letter-spacing:0.240000pt;}
.ls77{letter-spacing:0.249333pt;}
.ls34{letter-spacing:0.250667pt;}
.ls65{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.261333pt;}
.ls3{letter-spacing:0.266667pt;}
.ls5d{letter-spacing:0.272000pt;}
.ls23{letter-spacing:0.277333pt;}
.ls44{letter-spacing:0.285889pt;}
.ls69{letter-spacing:0.294667pt;}
.ls4a{letter-spacing:0.298667pt;}
.ls5e{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.340000pt;}
.ls2f{letter-spacing:0.346667pt;}
.ls52{letter-spacing:0.362667pt;}
.lsf{letter-spacing:0.373333pt;}
.ls16{letter-spacing:0.400000pt;}
.ls5c{letter-spacing:0.408000pt;}
.ls4d{letter-spacing:0.410667pt;}
.ls7{letter-spacing:0.426667pt;}
.ls53{letter-spacing:0.453333pt;}
.ls33{letter-spacing:0.458667pt;}
.lsd{letter-spacing:0.480000pt;}
.ls3d{letter-spacing:0.485333pt;}
.ls55{letter-spacing:0.498667pt;}
.ls76{letter-spacing:0.521333pt;}
.ls2{letter-spacing:0.533333pt;}
.ls5b{letter-spacing:0.544000pt;}
.ls31{letter-spacing:0.560000pt;}
.ls7a{letter-spacing:0.566667pt;}
.ls22{letter-spacing:0.572835pt;}
.ls20{letter-spacing:0.573321pt;}
.ls21{letter-spacing:0.573324pt;}
.ls1a{letter-spacing:0.586667pt;}
.ls5a{letter-spacing:0.589333pt;}
.ls18{letter-spacing:0.613333pt;}
.ls3a{letter-spacing:0.634667pt;}
.ls26{letter-spacing:0.640000pt;}
.ls80{letter-spacing:0.657333pt;}
.ls38{letter-spacing:0.666667pt;}
.ls58{letter-spacing:0.680000pt;}
.lsb{letter-spacing:0.693333pt;}
.ls35{letter-spacing:0.720000pt;}
.ls59{letter-spacing:0.725333pt;}
.ls19{letter-spacing:0.746667pt;}
.ls6c{letter-spacing:0.770667pt;}
.ls43{letter-spacing:0.773333pt;}
.ls78{letter-spacing:0.793333pt;}
.ls6{letter-spacing:0.800000pt;}
.ls6a{letter-spacing:0.816000pt;}
.ls40{letter-spacing:0.826667pt;}
.ls8{letter-spacing:0.853333pt;}
.ls60{letter-spacing:0.861333pt;}
.lsc{letter-spacing:0.906667pt;}
.ls6b{letter-spacing:0.952000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls7b{letter-spacing:0.974667pt;}
.ls10{letter-spacing:0.986667pt;}
.ls5f{letter-spacing:0.997333pt;}
.lse{letter-spacing:1.013333pt;}
.ls79{letter-spacing:1.042667pt;}
.ls67{letter-spacing:1.065333pt;}
.ls9{letter-spacing:1.066667pt;}
.ls54{letter-spacing:1.088000pt;}
.ls1e{letter-spacing:1.093333pt;}
.ls2d{letter-spacing:1.120000pt;}
.ls82{letter-spacing:1.133333pt;}
.ls1f{letter-spacing:1.173333pt;}
.ls56{letter-spacing:1.178667pt;}
.ls61{letter-spacing:1.224000pt;}
.ls24{letter-spacing:1.226667pt;}
.ls7e{letter-spacing:1.269333pt;}
.ls36{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:1.333333pt;}
.ls32{letter-spacing:1.386667pt;}
.ls46{letter-spacing:1.493333pt;}
.ls66{letter-spacing:1.496000pt;}
.ls7f{letter-spacing:1.586667pt;}
.ls4c{letter-spacing:1.600000pt;}
.ls3f{letter-spacing:1.653333pt;}
.ls7d{letter-spacing:1.677333pt;}
.ls45{letter-spacing:1.760000pt;}
.ls51{letter-spacing:1.813333pt;}
.ls68{letter-spacing:1.994667pt;}
.ws2{word-spacing:-16.384000pt;}
.ws90{word-spacing:-15.093333pt;}
.ws2c{word-spacing:-14.453333pt;}
.ws7{word-spacing:-14.320000pt;}
.ws73{word-spacing:-14.186667pt;}
.ws3c{word-spacing:-14.133333pt;}
.ws7f{word-spacing:-14.026667pt;}
.ws96{word-spacing:-13.973333pt;}
.ws99{word-spacing:-13.920000pt;}
.ws81{word-spacing:-13.866667pt;}
.ws28{word-spacing:-13.760000pt;}
.ws53{word-spacing:-13.706667pt;}
.ws9f{word-spacing:-13.653333pt;}
.ws6e{word-spacing:-13.600000pt;}
.ws29{word-spacing:-13.493333pt;}
.ws71{word-spacing:-13.333333pt;}
.ws75{word-spacing:-13.226667pt;}
.wsaf{word-spacing:-13.184000pt;}
.ws7b{word-spacing:-13.066667pt;}
.ws7c{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.928000pt;}
.ws91{word-spacing:-12.266667pt;}
.wscc{word-spacing:-12.194667pt;}
.ws88{word-spacing:-12.106667pt;}
.ws8f{word-spacing:-11.786667pt;}
.ws7d{word-spacing:-11.626667pt;}
.ws9e{word-spacing:-11.573333pt;}
.wscb{word-spacing:-11.560000pt;}
.ws63{word-spacing:-11.333333pt;}
.ws69{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws70{word-spacing:-9.968000pt;}
.ws74{word-spacing:-9.818667pt;}
.ws95{word-spacing:-9.744000pt;}
.ws77{word-spacing:-9.706667pt;}
.ws8d{word-spacing:-9.632000pt;}
.ws6f{word-spacing:-9.594667pt;}
.ws2d{word-spacing:-9.557333pt;}
.ws52{word-spacing:-9.520000pt;}
.ws87{word-spacing:-9.408000pt;}
.ws2b{word-spacing:-9.296000pt;}
.ws2a{word-spacing:-9.258667pt;}
.ws8c{word-spacing:-9.184000pt;}
.wsae{word-spacing:-9.157333pt;}
.ws76{word-spacing:-9.146667pt;}
.ws72{word-spacing:-9.072000pt;}
.wsa4{word-spacing:-9.066667pt;}
.ws97{word-spacing:-9.034667pt;}
.ws1{word-spacing:-8.885333pt;}
.ws8{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws9{word-spacing:-1.680000pt;}
.wse7{word-spacing:-1.496000pt;}
.wse{word-spacing:-1.333333pt;}
.ws34{word-spacing:-1.280000pt;}
.ws5a{word-spacing:-1.226667pt;}
.wsb2{word-spacing:-1.178667pt;}
.ws1c{word-spacing:-1.173333pt;}
.wsb1{word-spacing:-1.133333pt;}
.wsd{word-spacing:-1.120000pt;}
.wsb6{word-spacing:-1.088000pt;}
.ws8a{word-spacing:-1.066667pt;}
.ws23{word-spacing:-1.013333pt;}
.wsde{word-spacing:-0.997333pt;}
.ws54{word-spacing:-0.960000pt;}
.wsc8{word-spacing:-0.952000pt;}
.ws10{word-spacing:-0.906667pt;}
.wsb5{word-spacing:-0.861333pt;}
.ws33{word-spacing:-0.853333pt;}
.wsd7{word-spacing:-0.816000pt;}
.ws45{word-spacing:-0.800000pt;}
.ws1f{word-spacing:-0.746667pt;}
.ws1a{word-spacing:-0.693333pt;}
.wsc9{word-spacing:-0.680000pt;}
.ws2e{word-spacing:-0.640000pt;}
.wsca{word-spacing:-0.634667pt;}
.ws5e{word-spacing:-0.586667pt;}
.ws26{word-spacing:-0.544000pt;}
.ws14{word-spacing:-0.533333pt;}
.wsd2{word-spacing:-0.498667pt;}
.ws21{word-spacing:-0.480000pt;}
.wsc6{word-spacing:-0.453333pt;}
.ws35{word-spacing:-0.426667pt;}
.wsd6{word-spacing:-0.408000pt;}
.ws57{word-spacing:-0.373333pt;}
.wse5{word-spacing:-0.362667pt;}
.ws4c{word-spacing:-0.320000pt;}
.wsfd{word-spacing:-0.317333pt;}
.wsec{word-spacing:-0.272000pt;}
.ws20{word-spacing:-0.266667pt;}
.ws64{word-spacing:-0.250667pt;}
.wsc3{word-spacing:-0.234667pt;}
.ws27{word-spacing:-0.226667pt;}
.ws12{word-spacing:-0.213333pt;}
.ws43{word-spacing:-0.160000pt;}
.wse9{word-spacing:-0.136000pt;}
.ws94{word-spacing:-0.106667pt;}
.wsbc{word-spacing:-0.090667pt;}
.wsf{word-spacing:-0.053333pt;}
.wsb9{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.wsa{word-spacing:0.000000pt;}
.wsff{word-spacing:0.045333pt;}
.ws41{word-spacing:0.053333pt;}
.ws2f{word-spacing:0.106667pt;}
.wsb3{word-spacing:0.136000pt;}
.ws8e{word-spacing:0.160000pt;}
.ws49{word-spacing:0.213333pt;}
.ws15{word-spacing:0.266667pt;}
.ws3f{word-spacing:0.320000pt;}
.ws86{word-spacing:0.362667pt;}
.ws48{word-spacing:0.373333pt;}
.wsdc{word-spacing:0.408000pt;}
.ws9d{word-spacing:0.426667pt;}
.ws3e{word-spacing:0.480000pt;}
.wse4{word-spacing:0.498667pt;}
.ws5d{word-spacing:0.533333pt;}
.ws68{word-spacing:0.586667pt;}
.ws8b{word-spacing:0.634667pt;}
.ws42{word-spacing:0.640000pt;}
.wsc{word-spacing:0.693333pt;}
.wsfb{word-spacing:0.725333pt;}
.wsa9{word-spacing:0.746667pt;}
.wsda{word-spacing:0.770667pt;}
.ws9c{word-spacing:0.800000pt;}
.ws6c{word-spacing:0.853333pt;}
.wsc0{word-spacing:0.861333pt;}
.ws67{word-spacing:0.906667pt;}
.ws80{word-spacing:0.960000pt;}
.ws7e{word-spacing:1.013333pt;}
.wsc7{word-spacing:1.042667pt;}
.ws56{word-spacing:1.066667pt;}
.ws55{word-spacing:1.120000pt;}
.wsaa{word-spacing:1.133333pt;}
.ws4e{word-spacing:1.173333pt;}
.wse6{word-spacing:1.178667pt;}
.wsdf{word-spacing:1.224000pt;}
.ws1d{word-spacing:1.226667pt;}
.wsa6{word-spacing:1.280000pt;}
.wsba{word-spacing:1.314667pt;}
.wsb{word-spacing:1.333333pt;}
.wsbb{word-spacing:1.360000pt;}
.ws22{word-spacing:1.386667pt;}
.wsfa{word-spacing:1.405333pt;}
.ws30{word-spacing:1.440000pt;}
.wse0{word-spacing:1.450667pt;}
.ws5f{word-spacing:1.493333pt;}
.wsd1{word-spacing:1.496000pt;}
.wsc1{word-spacing:1.541333pt;}
.ws50{word-spacing:1.546667pt;}
.wse8{word-spacing:1.586667pt;}
.ws19{word-spacing:1.600000pt;}
.ws31{word-spacing:1.653333pt;}
.wsf4{word-spacing:1.677333pt;}
.ws5b{word-spacing:1.706667pt;}
.wsb7{word-spacing:1.722667pt;}
.ws4d{word-spacing:1.760000pt;}
.wsd9{word-spacing:1.768000pt;}
.ws40{word-spacing:1.813333pt;}
.wscd{word-spacing:1.858667pt;}
.ws18{word-spacing:1.866667pt;}
.wsb8{word-spacing:1.904000pt;}
.ws66{word-spacing:1.920000pt;}
.wsc2{word-spacing:1.949333pt;}
.ws51{word-spacing:1.973333pt;}
.wsd4{word-spacing:1.994667pt;}
.ws44{word-spacing:2.026667pt;}
.wsd5{word-spacing:2.040000pt;}
.ws3b{word-spacing:2.080000pt;}
.wsdd{word-spacing:2.130667pt;}
.ws13{word-spacing:2.133333pt;}
.wsd8{word-spacing:2.176000pt;}
.ws32{word-spacing:2.186667pt;}
.wsf5{word-spacing:2.221333pt;}
.ws6b{word-spacing:2.240000pt;}
.wseb{word-spacing:2.266667pt;}
.ws3a{word-spacing:2.293333pt;}
.ws58{word-spacing:2.346667pt;}
.wsea{word-spacing:2.357333pt;}
.ws16{word-spacing:2.400000pt;}
.wsd0{word-spacing:2.402667pt;}
.ws92{word-spacing:2.453333pt;}
.wsce{word-spacing:2.493333pt;}
.ws36{word-spacing:2.506667pt;}
.wsee{word-spacing:2.538667pt;}
.ws4f{word-spacing:2.560000pt;}
.ws84{word-spacing:2.584000pt;}
.ws1b{word-spacing:2.613333pt;}
.wse2{word-spacing:2.629333pt;}
.ws6a{word-spacing:2.666667pt;}
.wsbe{word-spacing:2.674667pt;}
.ws6d{word-spacing:2.720000pt;}
.ws60{word-spacing:2.773333pt;}
.wsdb{word-spacing:2.810667pt;}
.ws46{word-spacing:2.826667pt;}
.ws82{word-spacing:2.856000pt;}
.ws65{word-spacing:2.880000pt;}
.ws24{word-spacing:2.933333pt;}
.wse1{word-spacing:2.946667pt;}
.ws1e{word-spacing:2.986667pt;}
.wsef{word-spacing:2.992000pt;}
.ws83{word-spacing:3.037333pt;}
.ws78{word-spacing:3.040000pt;}
.ws9b{word-spacing:3.093333pt;}
.wscf{word-spacing:3.128000pt;}
.ws4a{word-spacing:3.146667pt;}
.wsf1{word-spacing:3.173333pt;}
.wsf2{word-spacing:3.218667pt;}
.ws4b{word-spacing:3.253333pt;}
.wsbd{word-spacing:3.264000pt;}
.ws98{word-spacing:3.306667pt;}
.wsf0{word-spacing:3.309333pt;}
.wsf3{word-spacing:3.354667pt;}
.ws38{word-spacing:3.413333pt;}
.ws17{word-spacing:3.466667pt;}
.wsfc{word-spacing:3.581333pt;}
.wsed{word-spacing:3.626667pt;}
.wsb0{word-spacing:3.672000pt;}
.wsa5{word-spacing:3.733333pt;}
.wsf8{word-spacing:3.762667pt;}
.wsf6{word-spacing:3.808000pt;}
.ws3d{word-spacing:3.893333pt;}
.wsa0{word-spacing:3.946667pt;}
.ws39{word-spacing:4.000000pt;}
.ws59{word-spacing:4.053333pt;}
.wsd3{word-spacing:4.125333pt;}
.wsb4{word-spacing:4.170667pt;}
.ws47{word-spacing:4.213333pt;}
.wse3{word-spacing:4.261333pt;}
.ws79{word-spacing:4.266667pt;}
.ws7a{word-spacing:4.373333pt;}
.wsbf{word-spacing:4.488000pt;}
.ws37{word-spacing:4.533333pt;}
.wsf9{word-spacing:4.669333pt;}
.ws5c{word-spacing:4.800000pt;}
.ws62{word-spacing:5.394667pt;}
.ws93{word-spacing:5.600000pt;}
.wsc4{word-spacing:5.712000pt;}
.wsa3{word-spacing:5.984000pt;}
.ws9a{word-spacing:6.026667pt;}
.wsfe{word-spacing:6.165333pt;}
.ws89{word-spacing:6.346667pt;}
.wsf7{word-spacing:6.754667pt;}
.wsa7{word-spacing:6.826667pt;}
.wsa8{word-spacing:7.200000pt;}
.wsc5{word-spacing:7.480000pt;}
.wsac{word-spacing:7.797333pt;}
.ws61{word-spacing:8.250667pt;}
.wsad{word-spacing:8.704000pt;}
.wsab{word-spacing:8.794667pt;}
.ws85{word-spacing:9.248000pt;}
.wsa2{word-spacing:10.336000pt;}
.wsa1{word-spacing:10.834667pt;}
.ws100{word-spacing:12.013333pt;}
.ws101{word-spacing:15.640000pt;}
.ws25{word-spacing:64.237333pt;}
._13{margin-left:-2630.557387pt;}
._e{margin-left:-64.600000pt;}
._1c{margin-left:-20.536000pt;}
._17{margin-left:-17.301327pt;}
._b{margin-left:-14.733333pt;}
._18{margin-left:-13.486540pt;}
._12{margin-left:-12.266667pt;}
._11{margin-left:-11.360000pt;}
._14{margin-left:-9.121067pt;}
._1{margin-left:-7.573333pt;}
._10{margin-left:-6.301333pt;}
._5{margin-left:-5.270846pt;}
._6{margin-left:-4.023055pt;}
._4{margin-left:-2.552944pt;}
._0{margin-left:-1.450667pt;}
._3{width:1.072000pt;}
._7{width:2.120944pt;}
._a{width:3.610660pt;}
._1d{width:5.893333pt;}
._1e{width:6.869334pt;}
._1b{width:9.701333pt;}
._16{width:10.730133pt;}
._1f{width:12.149329pt;}
._9{width:13.226667pt;}
._19{width:15.237074pt;}
._c{width:16.320000pt;}
._1a{width:18.245333pt;}
._15{width:29.333333pt;}
._8{width:32.000000pt;}
._2{width:35.684264pt;}
._d{width:48.552000pt;}
._f{width:2354.024050pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs8{font-size:50.133331pt;}
.fs4{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y10d{bottom:100.126928pt;}
.y38{bottom:100.389600pt;}
.yde{bottom:100.534938pt;}
.y6e{bottom:100.813599pt;}
.y8c{bottom:100.813639pt;}
.yf1{bottom:101.986928pt;}
.ybf{bottom:101.986938pt;}
.y126{bottom:102.110921pt;}
.y148{bottom:102.111064pt;}
.y205{bottom:103.657620pt;}
.y155{bottom:108.695733pt;}
.y2d{bottom:109.309733pt;}
.y18f{bottom:110.294648pt;}
.y10c{bottom:113.454928pt;}
.y10f{bottom:113.466262pt;}
.ydd{bottom:113.862938pt;}
.y1cc{bottom:116.932287pt;}
.y204{bottom:116.985620pt;}
.y246{bottom:117.336954pt;}
.y6d{bottom:117.480265pt;}
.y8b{bottom:117.480306pt;}
.y37{bottom:118.250936pt;}
.yf0{bottom:118.653595pt;}
.ybe{bottom:118.653605pt;}
.y125{bottom:118.777588pt;}
.y147{bottom:119.577728pt;}
.y154{bottom:122.023733pt;}
.y18e{bottom:123.622648pt;}
.y2c{bottom:125.976400pt;}
.y10b{bottom:126.782928pt;}
.y10e{bottom:126.794262pt;}
.ydc{bottom:127.190938pt;}
.y134{bottom:127.321597pt;}
.y1cb{bottom:130.260287pt;}
.y203{bottom:130.313620pt;}
.y245{bottom:130.664954pt;}
.y6c{bottom:134.146932pt;}
.y8a{bottom:134.146973pt;}
.yef{bottom:135.320262pt;}
.ybd{bottom:135.320272pt;}
.y124{bottom:135.444255pt;}
.y146{bottom:135.444397pt;}
.y18d{bottom:136.950648pt;}
.y36{bottom:138.292938pt;}
.y133{bottom:140.654931pt;}
.y2b{bottom:142.643066pt;}
.y1ca{bottom:143.588287pt;}
.y202{bottom:143.641620pt;}
.y244{bottom:143.992954pt;}
.y18c{bottom:150.278648pt;}
.y6b{bottom:150.813599pt;}
.y89{bottom:150.813639pt;}
.y131{bottom:151.986928pt;}
.ybc{bottom:151.986938pt;}
.y123{bottom:152.110921pt;}
.y145{bottom:152.111064pt;}
.y132{bottom:153.982931pt;}
.y135{bottom:153.988930pt;}
.y1c9{bottom:156.916287pt;}
.y201{bottom:156.969620pt;}
.y243{bottom:157.320954pt;}
.y35{bottom:158.334930pt;}
.y2a{bottom:159.309733pt;}
.y18b{bottom:163.606648pt;}
.y6a{bottom:167.480265pt;}
.y88{bottom:167.480306pt;}
.ybb{bottom:168.653605pt;}
.y122{bottom:168.777588pt;}
.y144{bottom:168.777730pt;}
.y1c8{bottom:170.244287pt;}
.y200{bottom:170.297620pt;}
.y242{bottom:170.648954pt;}
.y34{bottom:173.848941pt;}
.y29{bottom:175.976400pt;}
.y18a{bottom:176.934648pt;}
.y1c7{bottom:183.572287pt;}
.y1ff{bottom:183.625620pt;}
.y241{bottom:183.976954pt;}
.y69{bottom:184.146932pt;}
.y87{bottom:184.146973pt;}
.yba{bottom:185.320272pt;}
.y121{bottom:185.444255pt;}
.y143{bottom:185.444397pt;}
.y189{bottom:190.262648pt;}
.y33{bottom:191.710266pt;}
.y28{bottom:192.643066pt;}
.y1c6{bottom:196.900287pt;}
.y1fe{bottom:196.953620pt;}
.y240{bottom:197.304954pt;}
.y68{bottom:200.813599pt;}
.y86{bottom:200.813639pt;}
.yb9{bottom:201.986938pt;}
.y120{bottom:202.110921pt;}
.y142{bottom:202.911072pt;}
.y32{bottom:207.229600pt;}
.y27{bottom:209.309733pt;}
.y1c5{bottom:210.228287pt;}
.y1fd{bottom:210.281620pt;}
.y23f{bottom:210.632954pt;}
.y67{bottom:217.480265pt;}
.y85{bottom:217.480306pt;}
.yb8{bottom:218.653605pt;}
.y11f{bottom:218.777588pt;}
.y141{bottom:218.777730pt;}
.y31{bottom:220.557600pt;}
.y1c4{bottom:223.556287pt;}
.y1fc{bottom:223.609620pt;}
.y23e{bottom:223.960954pt;}
.y26{bottom:225.976400pt;}
.y188{bottom:226.880648pt;}
.y66{bottom:234.146932pt;}
.y84{bottom:234.146973pt;}
.yb7{bottom:235.320272pt;}
.y11e{bottom:235.444255pt;}
.y140{bottom:235.444397pt;}
.y1c3{bottom:236.884287pt;}
.y1fb{bottom:236.937620pt;}
.y23d{bottom:237.288954pt;}
.y30{bottom:238.418925pt;}
.y25{bottom:242.643066pt;}
.y1c2{bottom:250.212287pt;}
.y1fa{bottom:250.265620pt;}
.y23c{bottom:250.616954pt;}
.y65{bottom:250.813599pt;}
.y83{bottom:250.813639pt;}
.yb6{bottom:251.986938pt;}
.y11d{bottom:252.110921pt;}
.y13f{bottom:252.110942pt;}
.y187{bottom:253.513982pt;}
.y24{bottom:259.309733pt;}
.y2f{bottom:260.641604pt;}
.y1c1{bottom:263.540287pt;}
.y1f9{bottom:263.593620pt;}
.y23b{bottom:263.944954pt;}
.y64{bottom:267.480265pt;}
.y82{bottom:267.480306pt;}
.yee{bottom:268.653564pt;}
.yb5{bottom:268.653605pt;}
.y11c{bottom:268.777588pt;}
.y13e{bottom:268.777608pt;}
.y2e{bottom:273.969604pt;}
.y23{bottom:275.976400pt;}
.y1c0{bottom:276.868287pt;}
.y1f8{bottom:276.921620pt;}
.y23a{bottom:277.272954pt;}
.y186{bottom:280.147315pt;}
.y63{bottom:284.146932pt;}
.y81{bottom:284.146973pt;}
.yed{bottom:285.320231pt;}
.yb4{bottom:285.320272pt;}
.y11b{bottom:285.444255pt;}
.y13d{bottom:285.444275pt;}
.y1bf{bottom:290.196287pt;}
.y1f7{bottom:290.249620pt;}
.y239{bottom:290.600954pt;}
.y22{bottom:292.643066pt;}
.y62{bottom:300.813599pt;}
.y80{bottom:300.813639pt;}
.yec{bottom:301.986898pt;}
.y10a{bottom:301.986938pt;}
.y11a{bottom:302.110921pt;}
.y13c{bottom:302.110942pt;}
.y1be{bottom:303.524287pt;}
.y1f6{bottom:303.577620pt;}
.y238{bottom:303.928954pt;}
.ye8{bottom:306.188259pt;}
.y185{bottom:306.780648pt;}
.y21{bottom:309.309733pt;}
.y1bd{bottom:316.852287pt;}
.y1f5{bottom:316.905620pt;}
.y237{bottom:317.256954pt;}
.y61{bottom:317.480265pt;}
.y7f{bottom:317.480306pt;}
.yeb{bottom:318.653564pt;}
.yb3{bottom:318.653605pt;}
.y119{bottom:318.777588pt;}
.ye7{bottom:319.516259pt;}
.y13b{bottom:319.577596pt;}
.y184{bottom:320.108648pt;}
.y1f{bottom:325.976400pt;}
.y1bc{bottom:330.180287pt;}
.y1f4{bottom:330.233620pt;}
.y236{bottom:330.584954pt;}
.ye6{bottom:332.844259pt;}
.y183{bottom:333.436648pt;}
.y60{bottom:334.146932pt;}
.y7e{bottom:334.146973pt;}
.yea{bottom:335.320231pt;}
.y109{bottom:335.320272pt;}
.y118{bottom:335.444255pt;}
.y1e{bottom:342.643066pt;}
.y1bb{bottom:343.508287pt;}
.y1f3{bottom:343.561620pt;}
.y235{bottom:343.912954pt;}
.y182{bottom:346.764648pt;}
.y5f{bottom:350.813599pt;}
.y7d{bottom:350.813639pt;}
.ye9{bottom:351.986898pt;}
.y108{bottom:351.986938pt;}
.y117{bottom:352.110921pt;}
.y1ba{bottom:356.836287pt;}
.y1f2{bottom:356.889620pt;}
.y234{bottom:357.240954pt;}
.y1d{bottom:359.309733pt;}
.y5e{bottom:367.480265pt;}
.y7c{bottom:367.480306pt;}
.yb2{bottom:368.653564pt;}
.y107{bottom:368.653605pt;}
.y116{bottom:368.777588pt;}
.y13a{bottom:369.577596pt;}
.y1b9{bottom:370.164287pt;}
.y1f1{bottom:370.217620pt;}
.y233{bottom:370.568954pt;}
.y1c{bottom:375.976400pt;}
.y181{bottom:376.764648pt;}
.y272{bottom:383.058302pt;}
.y1b8{bottom:383.492287pt;}
.y1f0{bottom:383.545620pt;}
.y232{bottom:383.896954pt;}
.y5d{bottom:384.146973pt;}
.yb1{bottom:385.320231pt;}
.y106{bottom:385.320272pt;}
.y115{bottom:385.444255pt;}
.y1b{bottom:392.643066pt;}
.y271{bottom:396.386302pt;}
.y1b7{bottom:396.820287pt;}
.y1ef{bottom:396.873620pt;}
.y231{bottom:397.224954pt;}
.y5c{bottom:400.813639pt;}
.yb0{bottom:401.986898pt;}
.y105{bottom:401.986938pt;}
.y114{bottom:402.110921pt;}
.y1a{bottom:409.309733pt;}
.y1b6{bottom:410.148287pt;}
.y1ee{bottom:410.201620pt;}
.y180{bottom:410.292287pt;}
.y230{bottom:410.552954pt;}
.y5b{bottom:417.480306pt;}
.yaf{bottom:418.653564pt;}
.y104{bottom:418.653605pt;}
.y113{bottom:418.777588pt;}
.y1b5{bottom:423.476287pt;}
.y1ed{bottom:423.529620pt;}
.y17f{bottom:423.620287pt;}
.y270{bottom:423.801635pt;}
.y22f{bottom:423.880954pt;}
.y19{bottom:425.976400pt;}
.y5a{bottom:434.146973pt;}
.yae{bottom:435.320231pt;}
.y103{bottom:435.320272pt;}
.y112{bottom:435.444255pt;}
.y1b4{bottom:436.804287pt;}
.y1ec{bottom:436.857620pt;}
.y17e{bottom:436.948287pt;}
.y26f{bottom:437.129635pt;}
.y22e{bottom:437.208954pt;}
.y18{bottom:442.643066pt;}
.y1b3{bottom:450.132287pt;}
.y1eb{bottom:450.185620pt;}
.y26e{bottom:450.457635pt;}
.y22d{bottom:450.536954pt;}
.y59{bottom:450.813639pt;}
.yad{bottom:451.986898pt;}
.y102{bottom:451.986938pt;}
.y111{bottom:452.110921pt;}
.y20{bottom:459.309733pt;}
.y1b2{bottom:463.460287pt;}
.y1ea{bottom:463.513620pt;}
.y26d{bottom:463.785635pt;}
.y22c{bottom:463.864954pt;}
.y17d{bottom:466.913620pt;}
.y58{bottom:467.480306pt;}
.yac{bottom:468.653564pt;}
.y101{bottom:468.653605pt;}
.y110{bottom:468.777588pt;}
.y17{bottom:475.976400pt;}
.y1b1{bottom:476.788287pt;}
.y1e9{bottom:476.841620pt;}
.y26c{bottom:477.113635pt;}
.y22b{bottom:477.192954pt;}
.y17c{bottom:480.241620pt;}
.y57{bottom:484.146973pt;}
.yab{bottom:485.320231pt;}
.y100{bottom:485.320272pt;}
.y139{bottom:485.444255pt;}
.y1b0{bottom:490.116287pt;}
.y1e8{bottom:490.169620pt;}
.y26b{bottom:490.441635pt;}
.y22a{bottom:490.520954pt;}
.y17b{bottom:493.569620pt;}
.y56{bottom:500.813639pt;}
.yaa{bottom:501.986898pt;}
.yff{bottom:501.986938pt;}
.y138{bottom:502.110921pt;}
.y1af{bottom:503.444287pt;}
.y1e7{bottom:503.497620pt;}
.y26a{bottom:503.769635pt;}
.y229{bottom:503.848954pt;}
.y1ae{bottom:516.772287pt;}
.y1e6{bottom:516.825620pt;}
.y269{bottom:517.097635pt;}
.y228{bottom:517.176954pt;}
.y55{bottom:517.480306pt;}
.ya9{bottom:518.653564pt;}
.ydb{bottom:518.653605pt;}
.y137{bottom:518.777588pt;}
.y128{bottom:519.694949pt;}
.y17a{bottom:523.534954pt;}
.y16{bottom:525.976400pt;}
.y1ad{bottom:530.100287pt;}
.y1e5{bottom:530.153620pt;}
.y268{bottom:530.425635pt;}
.y227{bottom:530.504954pt;}
.y127{bottom:533.022949pt;}
.y54{bottom:534.146973pt;}
.ya8{bottom:535.320231pt;}
.yda{bottom:535.320272pt;}
.y136{bottom:535.444255pt;}
.y179{bottom:536.862954pt;}
.y1ac{bottom:543.428287pt;}
.y1e4{bottom:543.481620pt;}
.y267{bottom:543.753635pt;}
.y226{bottom:543.832954pt;}
.y178{bottom:550.190954pt;}
.y53{bottom:550.813639pt;}
.ya7{bottom:551.986898pt;}
.yd9{bottom:551.986938pt;}
.y1ab{bottom:556.756287pt;}
.y1e3{bottom:556.809620pt;}
.y266{bottom:557.081635pt;}
.y225{bottom:557.160954pt;}
.y15{bottom:559.309733pt;}
.y177{bottom:563.518954pt;}
.y52{bottom:567.480306pt;}
.ya6{bottom:568.653564pt;}
.yd8{bottom:568.653605pt;}
.y1aa{bottom:570.084287pt;}
.y1e2{bottom:570.137620pt;}
.y265{bottom:570.409635pt;}
.y224{bottom:570.488954pt;}
.y14{bottom:575.976400pt;}
.y15a{bottom:576.510917pt;}
.y176{bottom:576.846954pt;}
.y1a9{bottom:583.412287pt;}
.y1e1{bottom:583.465620pt;}
.y264{bottom:583.737635pt;}
.y223{bottom:583.816954pt;}
.y51{bottom:584.146973pt;}
.ya5{bottom:585.320231pt;}
.yd7{bottom:585.320272pt;}
.y159{bottom:589.838917pt;}
.y175{bottom:590.174954pt;}
.y13{bottom:592.643066pt;}
.y1a8{bottom:596.740287pt;}
.y1e0{bottom:596.793620pt;}
.y263{bottom:597.065635pt;}
.y222{bottom:597.144954pt;}
.y50{bottom:600.813639pt;}
.ya4{bottom:601.986898pt;}
.yd6{bottom:601.986938pt;}
.y158{bottom:603.166917pt;}
.y174{bottom:603.502954pt;}
.y12{bottom:609.309733pt;}
.y1a7{bottom:610.068287pt;}
.y1df{bottom:610.121620pt;}
.y262{bottom:610.393635pt;}
.y221{bottom:610.472954pt;}
.y157{bottom:616.494917pt;}
.y173{bottom:616.830954pt;}
.y4f{bottom:617.480306pt;}
.ya3{bottom:618.653564pt;}
.yd5{bottom:618.653605pt;}
.y1a6{bottom:623.396287pt;}
.y1de{bottom:623.449620pt;}
.y261{bottom:623.721635pt;}
.y220{bottom:623.800954pt;}
.y11{bottom:625.976400pt;}
.y156{bottom:629.822917pt;}
.y4e{bottom:634.146973pt;}
.ya2{bottom:635.320231pt;}
.yd4{bottom:635.320272pt;}
.y1a5{bottom:636.724287pt;}
.y1dd{bottom:636.777620pt;}
.y260{bottom:637.049635pt;}
.y21f{bottom:637.128954pt;}
.y10{bottom:642.643066pt;}
.y172{bottom:646.796287pt;}
.y1a4{bottom:650.052287pt;}
.y1dc{bottom:650.105620pt;}
.y25f{bottom:650.377635pt;}
.y21e{bottom:650.456954pt;}
.y4d{bottom:650.813639pt;}
.ya1{bottom:651.986898pt;}
.yd3{bottom:651.986938pt;}
.yf{bottom:659.309733pt;}
.y171{bottom:660.124287pt;}
.y1a3{bottom:663.380287pt;}
.y1db{bottom:663.433620pt;}
.y25e{bottom:663.705635pt;}
.y21d{bottom:663.784954pt;}
.y4c{bottom:667.480306pt;}
.ya0{bottom:668.653564pt;}
.yd2{bottom:668.653605pt;}
.y153{bottom:669.453613pt;}
.y170{bottom:673.452287pt;}
.ye{bottom:675.976400pt;}
.y1a2{bottom:676.708287pt;}
.y1da{bottom:676.761620pt;}
.y25d{bottom:677.033635pt;}
.y21c{bottom:677.112954pt;}
.y4b{bottom:684.146973pt;}
.y9f{bottom:685.320231pt;}
.yd1{bottom:685.320272pt;}
.y16f{bottom:686.780287pt;}
.y1a1{bottom:690.036287pt;}
.y1d9{bottom:690.089620pt;}
.y25c{bottom:690.361635pt;}
.y21b{bottom:690.440954pt;}
.yd{bottom:692.643066pt;}
.y16e{bottom:700.108287pt;}
.y4a{bottom:700.813639pt;}
.y9e{bottom:701.986898pt;}
.yd0{bottom:701.986938pt;}
.y1a0{bottom:703.364287pt;}
.y1d8{bottom:703.417620pt;}
.y25b{bottom:703.689635pt;}
.y21a{bottom:703.768954pt;}
.yc{bottom:709.309733pt;}
.y16d{bottom:713.436287pt;}
.y19f{bottom:716.692287pt;}
.y1d7{bottom:716.745620pt;}
.y25a{bottom:717.017635pt;}
.y219{bottom:717.096954pt;}
.y49{bottom:717.480306pt;}
.y9d{bottom:718.653564pt;}
.ycf{bottom:718.653605pt;}
.yb{bottom:725.976400pt;}
.y16c{bottom:726.764287pt;}
.y19e{bottom:730.020287pt;}
.y1d6{bottom:730.073620pt;}
.y259{bottom:730.345635pt;}
.y218{bottom:730.424954pt;}
.y48{bottom:734.146973pt;}
.y9c{bottom:735.320231pt;}
.yce{bottom:735.320272pt;}
.ye5{bottom:736.120280pt;}
.y16b{bottom:740.092287pt;}
.y19d{bottom:743.348287pt;}
.y1d5{bottom:743.401620pt;}
.y258{bottom:743.673635pt;}
.y217{bottom:743.752954pt;}
.y47{bottom:750.813639pt;}
.y9b{bottom:751.986898pt;}
.ycd{bottom:751.986938pt;}
.y152{bottom:752.786947pt;}
.y16a{bottom:753.420287pt;}
.y19c{bottom:756.676287pt;}
.y1d4{bottom:756.729620pt;}
.y257{bottom:757.001635pt;}
.y216{bottom:757.080954pt;}
.ya{bottom:765.249962pt;}
.y169{bottom:766.748287pt;}
.y7b{bottom:767.480265pt;}
.y46{bottom:767.480306pt;}
.y9a{bottom:768.653564pt;}
.yfe{bottom:768.653595pt;}
.ycc{bottom:768.653605pt;}
.y19b{bottom:770.004287pt;}
.y1d3{bottom:770.057620pt;}
.y256{bottom:770.329635pt;}
.y215{bottom:770.408954pt;}
.y9{bottom:778.577962pt;}
.y168{bottom:780.076287pt;}
.y19a{bottom:783.332287pt;}
.y1d2{bottom:783.385620pt;}
.y255{bottom:783.657635pt;}
.y214{bottom:783.736954pt;}
.y7a{bottom:784.146932pt;}
.y45{bottom:784.146973pt;}
.y99{bottom:785.320231pt;}
.yfd{bottom:785.320262pt;}
.ycb{bottom:785.320272pt;}
.ye4{bottom:786.120280pt;}
.y167{bottom:793.404287pt;}
.y199{bottom:796.660287pt;}
.y1d1{bottom:796.713620pt;}
.y254{bottom:796.985635pt;}
.y213{bottom:797.064954pt;}
.y79{bottom:800.813599pt;}
.y44{bottom:800.813639pt;}
.y98{bottom:801.986898pt;}
.yfc{bottom:801.986928pt;}
.yca{bottom:801.986938pt;}
.y166{bottom:806.732287pt;}
.y198{bottom:809.988287pt;}
.y1d0{bottom:810.041620pt;}
.y253{bottom:810.313635pt;}
.y212{bottom:810.392954pt;}
.y8{bottom:816.444661pt;}
.y78{bottom:817.480265pt;}
.y43{bottom:817.480306pt;}
.y97{bottom:818.653564pt;}
.yfb{bottom:818.653595pt;}
.yc9{bottom:818.653605pt;}
.ye3{bottom:819.453613pt;}
.y165{bottom:820.060287pt;}
.y197{bottom:823.316287pt;}
.y1cf{bottom:823.369620pt;}
.y252{bottom:823.641635pt;}
.y211{bottom:823.720954pt;}
.y7{bottom:833.111328pt;}
.y164{bottom:833.388287pt;}
.y77{bottom:834.146932pt;}
.y42{bottom:834.146973pt;}
.y96{bottom:835.320231pt;}
.yfa{bottom:835.320262pt;}
.yc8{bottom:835.320272pt;}
.y151{bottom:835.324361pt;}
.y196{bottom:836.644287pt;}
.y1ce{bottom:836.697620pt;}
.y251{bottom:836.969635pt;}
.y210{bottom:837.048954pt;}
.y1cd{bottom:850.025620pt;}
.y250{bottom:850.297635pt;}
.y20f{bottom:850.376954pt;}
.y76{bottom:850.813599pt;}
.y41{bottom:850.813639pt;}
.y95{bottom:851.986898pt;}
.yf9{bottom:851.986928pt;}
.yc7{bottom:851.986938pt;}
.y150{bottom:851.991028pt;}
.y163{bottom:863.353620pt;}
.y24f{bottom:863.625635pt;}
.y20e{bottom:863.704954pt;}
.y195{bottom:866.644287pt;}
.y75{bottom:867.480265pt;}
.y40{bottom:867.480306pt;}
.y94{bottom:868.653564pt;}
.yf8{bottom:868.653595pt;}
.yc6{bottom:868.653605pt;}
.y14f{bottom:868.657694pt;}
.ye2{bottom:869.453613pt;}
.y6{bottom:872.832682pt;}
.y130{bottom:875.684306pt;}
.y162{bottom:876.681620pt;}
.y24e{bottom:876.953635pt;}
.y20d{bottom:877.032954pt;}
.y74{bottom:884.146932pt;}
.y3f{bottom:884.146973pt;}
.y93{bottom:885.320231pt;}
.yf7{bottom:885.320262pt;}
.yc5{bottom:885.320272pt;}
.y14e{bottom:885.324361pt;}
.y12f{bottom:889.012306pt;}
.y161{bottom:890.009620pt;}
.y24d{bottom:890.281635pt;}
.y20c{bottom:890.360954pt;}
.y5{bottom:896.832682pt;}
.y73{bottom:900.813599pt;}
.y3e{bottom:900.813639pt;}
.y92{bottom:901.986898pt;}
.yf6{bottom:901.986928pt;}
.yc4{bottom:901.986938pt;}
.y14d{bottom:901.991028pt;}
.y12e{bottom:902.340306pt;}
.y160{bottom:903.337620pt;}
.y24c{bottom:903.609635pt;}
.y20b{bottom:903.688954pt;}
.y12d{bottom:915.668306pt;}
.y15f{bottom:916.665620pt;}
.y194{bottom:916.717995pt;}
.y24b{bottom:916.937635pt;}
.y20a{bottom:917.016954pt;}
.y72{bottom:917.480265pt;}
.y3d{bottom:917.480306pt;}
.y91{bottom:918.653564pt;}
.yf5{bottom:918.653595pt;}
.yc3{bottom:918.653605pt;}
.y14c{bottom:918.657694pt;}
.ye1{bottom:919.453613pt;}
.y12c{bottom:928.996306pt;}
.y15e{bottom:929.993620pt;}
.y193{bottom:930.045995pt;}
.y24a{bottom:930.265635pt;}
.y209{bottom:930.344954pt;}
.y71{bottom:934.146932pt;}
.y3c{bottom:934.146973pt;}
.y90{bottom:935.320231pt;}
.yf4{bottom:935.320262pt;}
.yc2{bottom:935.320272pt;}
.y14b{bottom:935.324361pt;}
.y12b{bottom:942.324306pt;}
.y15d{bottom:943.321620pt;}
.y192{bottom:943.373995pt;}
.y249{bottom:943.593635pt;}
.y208{bottom:943.672954pt;}
.y70{bottom:950.813599pt;}
.y3b{bottom:950.813639pt;}
.y8f{bottom:951.986898pt;}
.yf3{bottom:951.986928pt;}
.yc1{bottom:951.986938pt;}
.y14a{bottom:951.991028pt;}
.ye0{bottom:952.786947pt;}
.y12a{bottom:955.652306pt;}
.y15c{bottom:956.649620pt;}
.y191{bottom:956.701995pt;}
.y248{bottom:956.921635pt;}
.y207{bottom:957.000954pt;}
.y6f{bottom:967.480265pt;}
.y3a{bottom:967.480306pt;}
.y8e{bottom:968.653564pt;}
.yf2{bottom:968.653595pt;}
.yc0{bottom:968.653605pt;}
.y149{bottom:968.657694pt;}
.y129{bottom:968.980306pt;}
.ydf{bottom:969.453613pt;}
.y15b{bottom:969.977620pt;}
.y190{bottom:970.029995pt;}
.y247{bottom:970.249635pt;}
.y206{bottom:970.328954pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y39{bottom:1002.206543pt;}
.y8d{bottom:1002.206706pt;}
.hd{height:23.292266pt;}
.h2{height:30.080000pt;}
.hc{height:33.274667pt;}
.h11{height:36.797865pt;}
.h8{height:39.146667pt;}
.h4{height:39.712000pt;}
.h10{height:40.165333pt;}
.h17{height:41.401607pt;}
.h16{height:41.404274pt;}
.h9{height:47.253333pt;}
.h15{height:48.735837pt;}
.h14{height:48.735878pt;}
.h13{height:48.735959pt;}
.he{height:48.736000pt;}
.hf{height:48.736163pt;}
.h18{height:48.736488pt;}
.h3{height:48.766452pt;}
.h12{height:52.448000pt;}
.h7{height:52.746667pt;}
.hb{height:54.560000pt;}
.h6{height:57.658667pt;}
.ha{height:63.296000pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x6{left:69.996800pt;}
.x7{left:83.151469pt;}
.xa{left:85.606262pt;}
.x5{left:86.929867pt;}
.xd{left:90.709469pt;}
.x4{left:408.191457pt;}
.x8{left:423.309211pt;}
.xb{left:425.766260pt;}
.xc{left:430.866924pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.x9{left:709.519613pt;}
}




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