
    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_dbf374045df6a87a5c7a1612.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_2e0ae9330df76455709813b7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0cb6e895edd97393e35f49be.woff')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_cd5feaf91f1f6b1bb8210c93.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_23ec7e7654bf1b181cf6b179.woff')format("woff");}.ff5{font-family:ff5;line-height:1.115000;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_00c41e4edef9114afb084722.woff')format("woff");}.ff6{font-family:ff6;line-height:1.115000;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_01e52ba3efc6231120aa9f3a.woff')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_edcf8d3ba116031f97868b94.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_57bf2c1d65158f8893ff2111.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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:-21.900000px;}
.v5{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.v6{vertical-align:45.960000px;}
.v2{vertical-align:61.320000px;}
.v4{vertical-align:67.860000px;}
.ls4b{letter-spacing:-1.680000px;}
.ls45{letter-spacing:-1.452000px;}
.ls46{letter-spacing:-1.320000px;}
.ls44{letter-spacing:-1.122000px;}
.ls56{letter-spacing:-1.008000px;}
.ls4f{letter-spacing:-0.936000px;}
.ls48{letter-spacing:-0.858000px;}
.ls2e{letter-spacing:-0.594000px;}
.ls13{letter-spacing:-0.576000px;}
.ls51{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.528000px;}
.ls2c{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.480000px;}
.ls34{letter-spacing:-0.462000px;}
.ls17{letter-spacing:-0.432000px;}
.ls24{letter-spacing:-0.420000px;}
.ls16{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.330000px;}
.ls15{letter-spacing:-0.300000px;}
.ls18{letter-spacing:-0.288000px;}
.ls43{letter-spacing:-0.264000px;}
.ls5c{letter-spacing:-0.240000px;}
.ls26{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.198000px;}
.ls14{letter-spacing:-0.180000px;}
.ls4c{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.132000px;}
.ls12{letter-spacing:-0.072000px;}
.ls41{letter-spacing:-0.066000px;}
.ls5d{letter-spacing:-0.060000px;}
.lse{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.060000px;}
.ls30{letter-spacing:0.066000px;}
.ls4d{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.084000px;}
.ls4e{letter-spacing:0.093600px;}
.lsd{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.144000px;}
.ls49{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.192000px;}
.ls10{letter-spacing:0.216000px;}
.ls4a{letter-spacing:0.240000px;}
.ls19{letter-spacing:0.288000px;}
.ls6e{letter-spacing:0.300000px;}
.ls42{letter-spacing:0.330000px;}
.ls1e{letter-spacing:0.345600px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.381600px;}
.ls2a{letter-spacing:0.396000px;}
.ls22{letter-spacing:0.410400px;}
.ls52{letter-spacing:0.420000px;}
.ls5e{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.439200px;}
.ls3{letter-spacing:0.456000px;}
.ls3e{letter-spacing:0.460800px;}
.ls31{letter-spacing:0.462000px;}
.ls50{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.482400px;}
.ls6{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.511200px;}
.lsb{letter-spacing:0.525600px;}
.ls47{letter-spacing:0.528000px;}
.ls3d{letter-spacing:0.540000px;}
.ls55{letter-spacing:0.576000px;}
.ls62{letter-spacing:0.604800px;}
.ls3c{letter-spacing:0.780000px;}
.ls6f{letter-spacing:0.900000px;}
.ls1f{letter-spacing:1.008000px;}
.ls21{letter-spacing:1.152000px;}
.ls69{letter-spacing:1.194000px;}
.ls70{letter-spacing:1.200000px;}
.ls5b{letter-spacing:1.368000px;}
.ls3b{letter-spacing:1.980000px;}
.ls40{letter-spacing:3.252000px;}
.ls1d{letter-spacing:3.600000px;}
.ls68{letter-spacing:4.380000px;}
.ls1b{letter-spacing:4.752000px;}
.lsc{letter-spacing:5.788800px;}
.ls66{letter-spacing:7.980000px;}
.ls5a{letter-spacing:9.576000px;}
.ls9{letter-spacing:10.800000px;}
.ls65{letter-spacing:11.952000px;}
.ls61{letter-spacing:12.870000px;}
.ls28{letter-spacing:13.176000px;}
.lsa{letter-spacing:19.152000px;}
.ls54{letter-spacing:19.195200px;}
.ls6b{letter-spacing:19.980000px;}
.ls53{letter-spacing:21.484800px;}
.ls64{letter-spacing:23.976000px;}
.ls1c{letter-spacing:24.984000px;}
.ls25{letter-spacing:27.576000px;}
.ls5f{letter-spacing:28.800000px;}
.ls2b{letter-spacing:29.184000px;}
.ls38{letter-spacing:30.360000px;}
.ls74{letter-spacing:31.176000px;}
.ls67{letter-spacing:31.980000px;}
.ls60{letter-spacing:32.400000px;}
.ls3f{letter-spacing:39.252000px;}
.ls76{letter-spacing:43.980000px;}
.ls6a{letter-spacing:45.180000px;}
.ls20{letter-spacing:46.800000px;}
.ls63{letter-spacing:48.384000px;}
.ls73{letter-spacing:55.980000px;}
.ls39{letter-spacing:62.502000px;}
.ls71{letter-spacing:69.180000px;}
.ls72{letter-spacing:73.176000px;}
.ls37{letter-spacing:75.966000px;}
.ls35{letter-spacing:98.802000px;}
.ls6c{letter-spacing:101.580000px;}
.ls36{letter-spacing:112.002000px;}
.ls6d{letter-spacing:157.980000px;}
.ls57{letter-spacing:317.196000px;}
.ls75{letter-spacing:347.580000px;}
.ls58{letter-spacing:385.572000px;}
.ls59{letter-spacing:469.590000px;}
.ls27{letter-spacing:495.180000px;}
.ls1{letter-spacing:846.780000px;}
.ls2{letter-spacing:874.380000px;}
.ls0{letter-spacing:1335.180000px;}
.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;}
}
.ws3c{word-spacing:-27.576000px;}
.wsc5{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.584000px;}
.wsb5{word-spacing:-19.512000px;}
.ws8{word-spacing:-19.440000px;}
.ws4{word-spacing:-19.224000px;}
.ws32{word-spacing:-19.008000px;}
.ws34{word-spacing:-18.936000px;}
.ws59{word-spacing:-18.792000px;}
.ws5a{word-spacing:-18.720000px;}
.ws33{word-spacing:-18.648000px;}
.ws2{word-spacing:-18.432000px;}
.ws5d{word-spacing:-18.216000px;}
.ws60{word-spacing:-18.084000px;}
.ws8c{word-spacing:-18.018000px;}
.wsc6{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.wsff{word-spacing:-17.856000px;}
.ws8a{word-spacing:-17.688000px;}
.ws10d{word-spacing:-17.640000px;}
.ws5f{word-spacing:-17.622000px;}
.ws86{word-spacing:-17.490000px;}
.ws91{word-spacing:-17.424000px;}
.ws89{word-spacing:-17.358000px;}
.ws88{word-spacing:-17.292000px;}
.ws8e{word-spacing:-17.160000px;}
.ws5e{word-spacing:-17.094000px;}
.ws87{word-spacing:-17.028000px;}
.ws111{word-spacing:-16.920000px;}
.ws90{word-spacing:-16.566000px;}
.ws13a{word-spacing:-16.560000px;}
.ws5c{word-spacing:-16.500000px;}
.wsed{word-spacing:-16.434000px;}
.ws5b{word-spacing:-16.368000px;}
.ws10f{word-spacing:-16.320000px;}
.ws8d{word-spacing:-16.302000px;}
.ws112{word-spacing:-16.260000px;}
.ws8b{word-spacing:-16.170000px;}
.ws1{word-spacing:-16.140000px;}
.ws31{word-spacing:-16.080000px;}
.ws110{word-spacing:-16.020000px;}
.ws113{word-spacing:-15.960000px;}
.ws5{word-spacing:-15.840000px;}
.wsdb{word-spacing:-15.780000px;}
.ws6{word-spacing:-15.720000px;}
.ws139{word-spacing:-15.600000px;}
.ws0{word-spacing:-15.540000px;}
.ws8f{word-spacing:-15.360000px;}
.wsb7{word-spacing:-15.000000px;}
.ws10e{word-spacing:-14.700000px;}
.ws13b{word-spacing:-14.640000px;}
.ws10b{word-spacing:-5.184000px;}
.ws27{word-spacing:-5.040000px;}
.ws2f{word-spacing:-4.752000px;}
.ws69{word-spacing:-4.392000px;}
.ws10a{word-spacing:-4.248000px;}
.ws64{word-spacing:-3.816000px;}
.wsa4{word-spacing:-3.630000px;}
.wsa3{word-spacing:-3.564000px;}
.ws142{word-spacing:-3.540000px;}
.wsfc{word-spacing:-3.528000px;}
.ws19{word-spacing:-3.312000px;}
.ws4f{word-spacing:-3.168000px;}
.wsa5{word-spacing:-3.102000px;}
.ws3d{word-spacing:-3.024000px;}
.ws126{word-spacing:-2.880000px;}
.ws48{word-spacing:-2.664000px;}
.ws38{word-spacing:-2.592000px;}
.ws98{word-spacing:-2.574000px;}
.ws24{word-spacing:-2.376000px;}
.ws127{word-spacing:-2.340000px;}
.wsf9{word-spacing:-2.016000px;}
.ws23{word-spacing:-1.872000px;}
.ws119{word-spacing:-1.860000px;}
.ws25{word-spacing:-1.584000px;}
.ws39{word-spacing:-1.512000px;}
.ws7c{word-spacing:-1.452000px;}
.ws68{word-spacing:-1.440000px;}
.wsdf{word-spacing:-1.368000px;}
.wsa2{word-spacing:-1.254000px;}
.ws61{word-spacing:-1.152000px;}
.ws11a{word-spacing:-1.140000px;}
.wsd9{word-spacing:-1.008000px;}
.wsda{word-spacing:-0.936000px;}
.wsc3{word-spacing:-0.840000px;}
.ws22{word-spacing:-0.792000px;}
.wsb2{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.648000px;}
.wsc4{word-spacing:-0.600000px;}
.ws76{word-spacing:-0.576000px;}
.ws9{word-spacing:-0.540000px;}
.ws35{word-spacing:-0.480000px;}
.ws93{word-spacing:-0.462000px;}
.wsb{word-spacing:-0.420000px;}
.ws7a{word-spacing:-0.396000px;}
.ws11{word-spacing:-0.360000px;}
.ws2e{word-spacing:-0.288000px;}
.wsc2{word-spacing:-0.240000px;}
.wsc{word-spacing:-0.216000px;}
.ws136{word-spacing:-0.180000px;}
.ws11d{word-spacing:-0.120000px;}
.ws81{word-spacing:-0.066000px;}
.wse9{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws12{word-spacing:0.060000px;}
.ws92{word-spacing:0.066000px;}
.wsf{word-spacing:0.072000px;}
.ws9e{word-spacing:0.132000px;}
.wsbc{word-spacing:0.144000px;}
.ws152{word-spacing:0.180000px;}
.ws56{word-spacing:0.216000px;}
.wsd{word-spacing:0.252000px;}
.ws2b{word-spacing:0.288000px;}
.ws13{word-spacing:0.300000px;}
.ws79{word-spacing:0.330000px;}
.wse{word-spacing:0.336000px;}
.ws14{word-spacing:0.360000px;}
.wsb4{word-spacing:0.396000px;}
.ws36{word-spacing:0.420000px;}
.ws17{word-spacing:0.432000px;}
.ws77{word-spacing:0.462000px;}
.ws12f{word-spacing:0.480000px;}
.ws104{word-spacing:0.504000px;}
.ws7f{word-spacing:0.528000px;}
.wsc1{word-spacing:0.540000px;}
.ws10{word-spacing:0.576000px;}
.ws78{word-spacing:0.594000px;}
.wsad{word-spacing:0.720000px;}
.wsa7{word-spacing:0.726000px;}
.ws102{word-spacing:0.792000px;}
.wsc0{word-spacing:0.936000px;}
.wsb3{word-spacing:0.990000px;}
.wsd7{word-spacing:1.008000px;}
.wsac{word-spacing:1.200000px;}
.ws52{word-spacing:1.224000px;}
.wsa6{word-spacing:1.254000px;}
.ws130{word-spacing:1.260000px;}
.wsd6{word-spacing:1.368000px;}
.ws50{word-spacing:1.584000px;}
.wsae{word-spacing:1.680000px;}
.ws3b{word-spacing:1.728000px;}
.wsa8{word-spacing:1.740000px;}
.wsb0{word-spacing:2.016000px;}
.ws6d{word-spacing:2.160000px;}
.ws9f{word-spacing:2.442000px;}
.ws15{word-spacing:2.448000px;}
.wse6{word-spacing:2.664000px;}
.ws4e{word-spacing:2.808000px;}
.wsd8{word-spacing:2.880000px;}
.ws44{word-spacing:2.952000px;}
.ws70{word-spacing:3.096000px;}
.wse0{word-spacing:3.240000px;}
.ws3a{word-spacing:3.312000px;}
.wsf3{word-spacing:3.384000px;}
.ws159{word-spacing:3.564000px;}
.ws125{word-spacing:3.660000px;}
.wsf7{word-spacing:3.672000px;}
.wsfb{word-spacing:3.888000px;}
.ws158{word-spacing:3.960000px;}
.wsf8{word-spacing:4.032000px;}
.ws124{word-spacing:4.140000px;}
.ws75{word-spacing:4.176000px;}
.wsbd{word-spacing:4.248000px;}
.ws11c{word-spacing:4.260000px;}
.ws11b{word-spacing:4.320000px;}
.wse5{word-spacing:4.392000px;}
.ws46{word-spacing:4.536000px;}
.ws122{word-spacing:4.560000px;}
.wsb9{word-spacing:4.752000px;}
.ws121{word-spacing:4.800000px;}
.wsd2{word-spacing:4.824000px;}
.ws123{word-spacing:4.860000px;}
.ws108{word-spacing:4.968000px;}
.ws47{word-spacing:5.040000px;}
.ws45{word-spacing:5.184000px;}
.ws73{word-spacing:5.328000px;}
.ws151{word-spacing:5.340000px;}
.ws14e{word-spacing:5.460000px;}
.ws14d{word-spacing:5.520000px;}
.wse7{word-spacing:5.616000px;}
.ws26{word-spacing:5.760000px;}
.ws14f{word-spacing:5.880000px;}
.ws7d{word-spacing:5.940000px;}
.wsbf{word-spacing:6.048000px;}
.wsbe{word-spacing:6.408000px;}
.wse8{word-spacing:6.480000px;}
.ws4a{word-spacing:6.552000px;}
.wsdd{word-spacing:6.840000px;}
.ws6f{word-spacing:6.912000px;}
.wsfa{word-spacing:6.984000px;}
.ws1f{word-spacing:7.272000px;}
.ws20{word-spacing:7.488000px;}
.ws65{word-spacing:7.632000px;}
.ws1e{word-spacing:7.776000px;}
.ws85{word-spacing:8.316000px;}
.wsc7{word-spacing:8.424000px;}
.wsea{word-spacing:8.496000px;}
.wsb1{word-spacing:8.568000px;}
.ws66{word-spacing:8.640000px;}
.wsde{word-spacing:8.712000px;}
.ws74{word-spacing:8.784000px;}
.ws149{word-spacing:8.820000px;}
.ws83{word-spacing:8.910000px;}
.ws67{word-spacing:8.928000px;}
.ws14a{word-spacing:9.180000px;}
.ws4b{word-spacing:9.360000px;}
.wse2{word-spacing:9.648000px;}
.wsfe{word-spacing:10.008000px;}
.ws4c{word-spacing:10.152000px;}
.ws1b{word-spacing:10.512000px;}
.ws107{word-spacing:10.584000px;}
.ws145{word-spacing:10.860000px;}
.ws4d{word-spacing:10.872000px;}
.ws40{word-spacing:11.088000px;}
.ws1d{word-spacing:11.232000px;}
.ws128{word-spacing:11.340000px;}
.ws1c{word-spacing:11.376000px;}
.ws143{word-spacing:11.580000px;}
.wsca{word-spacing:11.736000px;}
.ws49{word-spacing:12.024000px;}
.ws129{word-spacing:12.060000px;}
.ws116{word-spacing:12.168000px;}
.wsba{word-spacing:12.384000px;}
.wscb{word-spacing:12.528000px;}
.ws118{word-spacing:12.540000px;}
.ws62{word-spacing:12.960000px;}
.wsd0{word-spacing:13.248000px;}
.ws117{word-spacing:13.260000px;}
.wse4{word-spacing:13.320000px;}
.wsbb{word-spacing:13.536000px;}
.ws63{word-spacing:13.608000px;}
.ws43{word-spacing:13.752000px;}
.ws57{word-spacing:14.184000px;}
.ws156{word-spacing:14.322000px;}
.ws157{word-spacing:14.454000px;}
.ws51{word-spacing:14.472000px;}
.ws18{word-spacing:14.688000px;}
.ws16{word-spacing:14.832000px;}
.ws155{word-spacing:14.850000px;}
.wse3{word-spacing:14.904000px;}
.ws58{word-spacing:14.976000px;}
.wsd5{word-spacing:15.048000px;}
.wsf4{word-spacing:15.120000px;}
.wsef{word-spacing:15.336000px;}
.wsaf{word-spacing:15.552000px;}
.wsee{word-spacing:15.624000px;}
.ws94{word-spacing:15.642000px;}
.wsd4{word-spacing:15.840000px;}
.ws6e{word-spacing:15.912000px;}
.ws1a{word-spacing:15.984000px;}
.ws30{word-spacing:16.128000px;}
.wsc9{word-spacing:16.488000px;}
.ws105{word-spacing:16.848000px;}
.wscd{word-spacing:17.064000px;}
.ws7e{word-spacing:17.292000px;}
.ws42{word-spacing:17.352000px;}
.wsd1{word-spacing:17.496000px;}
.wsc8{word-spacing:17.640000px;}
.ws6c{word-spacing:18.432000px;}
.ws132{word-spacing:18.540000px;}
.ws6b{word-spacing:18.576000px;}
.wsce{word-spacing:18.936000px;}
.ws2d{word-spacing:19.008000px;}
.ws3f{word-spacing:19.224000px;}
.ws2c{word-spacing:19.512000px;}
.ws7b{word-spacing:19.536000px;}
.wse1{word-spacing:19.584000px;}
.wscf{word-spacing:19.728000px;}
.wsaa{word-spacing:19.740000px;}
.wsa9{word-spacing:19.920000px;}
.ws54{word-spacing:20.448000px;}
.wsab{word-spacing:20.460000px;}
.ws53{word-spacing:20.592000px;}
.wsd3{word-spacing:20.808000px;}
.ws55{word-spacing:20.952000px;}
.wscc{word-spacing:22.176000px;}
.wsec{word-spacing:22.392000px;}
.ws2a{word-spacing:22.536000px;}
.ws29{word-spacing:23.328000px;}
.ws101{word-spacing:23.688000px;}
.ws100{word-spacing:24.048000px;}
.ws114{word-spacing:24.408000px;}
.ws10c{word-spacing:24.480000px;}
.ws115{word-spacing:24.552000px;}
.ws72{word-spacing:24.984000px;}
.wseb{word-spacing:25.272000px;}
.ws99{word-spacing:25.542000px;}
.ws37{word-spacing:25.776000px;}
.ws6a{word-spacing:26.928000px;}
.ws106{word-spacing:27.648000px;}
.ws109{word-spacing:28.080000px;}
.ws146{word-spacing:28.140000px;}
.ws147{word-spacing:28.860000px;}
.wsf1{word-spacing:29.088000px;}
.wsf0{word-spacing:29.160000px;}
.wsf2{word-spacing:29.376000px;}
.wsfd{word-spacing:30.024000px;}
.wsdc{word-spacing:30.384000px;}
.ws9c{word-spacing:30.888000px;}
.ws11e{word-spacing:31.740000px;}
.ws11f{word-spacing:31.860000px;}
.ws120{word-spacing:32.280000px;}
.ws103{word-spacing:32.472000px;}
.wsf5{word-spacing:32.832000px;}
.wsf6{word-spacing:32.976000px;}
.ws41{word-spacing:33.624000px;}
.ws95{word-spacing:34.056000px;}
.ws82{word-spacing:34.716000px;}
.ws28{word-spacing:35.352000px;}
.ws96{word-spacing:35.904000px;}
.ws80{word-spacing:36.894000px;}
.wsa0{word-spacing:36.960000px;}
.ws71{word-spacing:41.760000px;}
.ws153{word-spacing:44.280000px;}
.ws154{word-spacing:44.460000px;}
.ws12b{word-spacing:45.060000px;}
.ws12c{word-spacing:45.480000px;}
.ws12a{word-spacing:45.660000px;}
.ws3e{word-spacing:47.160000px;}
.wsa1{word-spacing:47.322000px;}
.ws84{word-spacing:48.312000px;}
.ws9b{word-spacing:58.608000px;}
.ws148{word-spacing:59.880000px;}
.ws9d{word-spacing:62.304000px;}
.ws150{word-spacing:62.460000px;}
.ws131{word-spacing:64.860000px;}
.ws13e{word-spacing:70.680000px;}
.ws13f{word-spacing:70.860000px;}
.ws12d{word-spacing:71.460000px;}
.ws12e{word-spacing:72.060000px;}
.ws140{word-spacing:84.060000px;}
.ws141{word-spacing:99.660000px;}
.ws9a{word-spacing:105.402000px;}
.ws97{word-spacing:134.178000px;}
.ws13c{word-spacing:142.140000px;}
.ws13d{word-spacing:142.680000px;}
.ws144{word-spacing:148.140000px;}
.ws135{word-spacing:154.440000px;}
.ws133{word-spacing:157.740000px;}
.ws134{word-spacing:158.460000px;}
.wsb8{word-spacing:221.940000px;}
.wsb6{word-spacing:229.140000px;}
.ws137{word-spacing:278.280000px;}
.ws138{word-spacing:278.460000px;}
.ws14b{word-spacing:347.880000px;}
.ws14c{word-spacing:348.060000px;}
._18{margin-left:-28.807200px;}
._15{margin-left:-27.770400px;}
._16{margin-left:-26.668800px;}
._22{margin-left:-8.160000px;}
._9{margin-left:-5.306400px;}
._a{margin-left:-3.808800px;}
._c{margin-left:-2.671200px;}
._0{margin-left:-1.020000px;}
._1{width:1.260000px;}
._6{width:2.340000px;}
._f{width:3.398400px;}
._b{width:5.284800px;}
._e{width:7.012800px;}
._d{width:8.136000px;}
._14{width:10.159200px;}
._13{width:12.168000px;}
._7{width:14.148000px;}
._10{width:15.890400px;}
._8{width:19.692000px;}
._21{width:24.120000px;}
._12{width:25.308000px;}
._17{width:27.194400px;}
._19{width:28.461600px;}
._2a{width:44.400000px;}
._1a{width:46.360800px;}
._1c{width:62.712000px;}
._23{width:71.040000px;}
._24{width:72.114000px;}
._25{width:84.360000px;}
._29{width:105.300000px;}
._28{width:148.266000px;}
._27{width:149.400000px;}
._20{width:182.556000px;}
._1d{width:356.500800px;}
._1b{width:403.140000px;}
._26{width:618.480000px;}
._4{width:765.780000px;}
._11{width:905.580000px;}
._5{width:918.780000px;}
._2{width:1005.420000px;}
._3{width:1137.480000px;}
._1f{width:1243.224000px;}
._1e{width:1541.958000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.000000px;}
.fs6{font-size:30.000000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.300000px;}
.ye3{bottom:4.200000px;}
.y85{bottom:4.500000px;}
.yc6{bottom:4.501500px;}
.yc0{bottom:4.800000px;}
.y7{bottom:5.100000px;}
.ya{bottom:6.000000px;}
.y9c{bottom:25.800000px;}
.y8c{bottom:26.100000px;}
.y8d{bottom:47.400000px;}
.y81{bottom:67.200000px;}
.y4{bottom:67.800000px;}
.y84{bottom:68.400000px;}
.y8f{bottom:68.700000px;}
.y88{bottom:88.500000px;}
.y89{bottom:90.000000px;}
.ydc{bottom:92.700000px;}
.ye2{bottom:96.900000px;}
.y65{bottom:97.266000px;}
.y91{bottom:99.300000px;}
.y18a{bottom:100.200000px;}
.ydd{bottom:105.900000px;}
.ycb{bottom:106.200000px;}
.y128{bottom:106.218000px;}
.y9e{bottom:109.800000px;}
.ycc{bottom:110.700000px;}
.y95{bottom:111.300000px;}
.y157{bottom:112.854000px;}
.y35{bottom:114.012000px;}
.y144{bottom:114.654000px;}
.ye1{bottom:116.100000px;}
.y1bc{bottom:119.100000px;}
.y189{bottom:119.700000px;}
.y90{bottom:120.000000px;}
.y64{bottom:120.666000px;}
.y127{bottom:129.618000px;}
.yca{bottom:132.000000px;}
.ye0{bottom:135.600000px;}
.y10c{bottom:135.942000px;}
.y156{bottom:135.948000px;}
.y87{bottom:137.100000px;}
.y34{bottom:137.412000px;}
.y1bb{bottom:137.700000px;}
.y143{bottom:138.054000px;}
.y188{bottom:138.900000px;}
.y63{bottom:143.760000px;}
.y1ba{bottom:148.197000px;}
.yc9{bottom:149.400000px;}
.y92{bottom:152.400000px;}
.y126{bottom:152.712000px;}
.y93{bottom:153.900000px;}
.yc8{bottom:154.200000px;}
.ydf{bottom:155.100000px;}
.y187{bottom:158.400000px;}
.y10b{bottom:159.342000px;}
.y155{bottom:159.348000px;}
.y33{bottom:160.812000px;}
.y142{bottom:161.148000px;}
.y8e{bottom:163.200000px;}
.y62{bottom:167.160000px;}
.y1b9{bottom:169.498500px;}
.yc7{bottom:171.600000px;}
.yde{bottom:175.500000px;}
.y125{bottom:176.112000px;}
.y186{bottom:177.900000px;}
.y10a{bottom:182.742000px;}
.y154{bottom:182.748000px;}
.y32{bottom:183.906000px;}
.y8b{bottom:184.498500px;}
.y141{bottom:184.548000px;}
.y61{bottom:190.254000px;}
.y1b8{bottom:190.800000px;}
.yc5{bottom:193.798500px;}
.y185{bottom:197.100000px;}
.y124{bottom:199.512000px;}
.y8a{bottom:205.800000px;}
.y109{bottom:205.836000px;}
.y153{bottom:205.842000px;}
.y31{bottom:207.306000px;}
.y140{bottom:207.948000px;}
.y60{bottom:213.654000px;}
.yc4{bottom:215.700000px;}
.y184{bottom:216.600000px;}
.ydb{bottom:216.900000px;}
.yc3{bottom:220.500000px;}
.y123{bottom:222.606000px;}
.y108{bottom:229.236000px;}
.y152{bottom:229.242000px;}
.y30{bottom:230.706000px;}
.y13f{bottom:231.042000px;}
.y183{bottom:236.100000px;}
.y5f{bottom:237.054000px;}
.yc2{bottom:237.900000px;}
.yf0{bottom:241.842750px;}
.y80{bottom:244.800000px;}
.y122{bottom:246.006000px;}
.y107{bottom:252.636000px;}
.y151{bottom:252.642000px;}
.y2f{bottom:253.800000px;}
.y13e{bottom:254.442000px;}
.y182{bottom:255.300000px;}
.y1b7{bottom:259.798500px;}
.yc1{bottom:260.100000px;}
.y5e{bottom:260.148000px;}
.yef{bottom:267.483000px;}
.y121{bottom:269.406000px;}
.y83{bottom:270.598500px;}
.y181{bottom:274.800000px;}
.y106{bottom:275.730000px;}
.y150{bottom:275.736000px;}
.y2e{bottom:277.200000px;}
.y13d{bottom:277.842000px;}
.y86{bottom:281.100000px;}
.ybf{bottom:282.000000px;}
.y5d{bottom:283.548000px;}
.y82{bottom:291.900000px;}
.y120{bottom:292.500000px;}
.y180{bottom:294.300000px;}
.y2d{bottom:298.500000px;}
.y105{bottom:299.130000px;}
.y14f{bottom:299.136000px;}
.y1b6{bottom:300.300000px;}
.y13c{bottom:300.936000px;}
.ybd{bottom:304.200000px;}
.y5c{bottom:306.948000px;}
.ybe{bottom:308.698500px;}
.y17f{bottom:313.800000px;}
.y11f{bottom:314.100000px;}
.y2c{bottom:315.900000px;}
.y104{bottom:322.224000px;}
.y14e{bottom:322.230000px;}
.y13b{bottom:324.336000px;}
.ybc{bottom:330.000000px;}
.y5b{bottom:330.042000px;}
.y11e{bottom:330.600000px;}
.y17e{bottom:333.000000px;}
.y7f{bottom:336.006000px;}
.y2b{bottom:339.300000px;}
.y103{bottom:345.624000px;}
.y14d{bottom:345.630000px;}
.y11d{bottom:346.500000px;}
.ybb{bottom:347.700000px;}
.y13a{bottom:347.736000px;}
.y1b5{bottom:350.100000px;}
.y17d{bottom:352.500000px;}
.y5a{bottom:353.442000px;}
.y7e{bottom:359.100000px;}
.y1b4{bottom:360.300000px;}
.y2a{bottom:360.600000px;}
.y102{bottom:369.024000px;}
.y14c{bottom:369.030000px;}
.yba{bottom:369.900000px;}
.y139{bottom:370.830000px;}
.y17c{bottom:372.000000px;}
.y11c{bottom:373.200000px;}
.y59{bottom:376.842000px;}
.y29{bottom:378.036000px;}
.y7d{bottom:379.500000px;}
.y1b3{bottom:379.800000px;}
.y11b{bottom:390.600000px;}
.y17b{bottom:391.200000px;}
.y101{bottom:392.118000px;}
.y14b{bottom:392.124000px;}
.y7c{bottom:392.130000px;}
.y138{bottom:394.230000px;}
.yb9{bottom:396.918000px;}
.y1b2{bottom:399.000000px;}
.y58{bottom:399.936000px;}
.y28{bottom:401.436000px;}
.y17a{bottom:410.700000px;}
.y11a{bottom:412.800000px;}
.y100{bottom:415.518000px;}
.y14a{bottom:415.524000px;}
.y7b{bottom:415.530000px;}
.y137{bottom:417.324000px;}
.y1b1{bottom:418.500000px;}
.yb8{bottom:420.318000px;}
.y57{bottom:423.336000px;}
.y27{bottom:424.836000px;}
.y179{bottom:430.200000px;}
.y118{bottom:435.000000px;}
.y1b0{bottom:438.000000px;}
.yff{bottom:438.918000px;}
.y149{bottom:438.924000px;}
.y7a{bottom:438.930000px;}
.y119{bottom:439.500000px;}
.y136{bottom:440.724000px;}
.yb7{bottom:443.718000px;}
.y56{bottom:446.736000px;}
.y26{bottom:447.930000px;}
.y178{bottom:449.400000px;}
.y1af{bottom:457.200000px;}
.y117{bottom:462.000000px;}
.yfe{bottom:462.012000px;}
.y148{bottom:462.018000px;}
.y79{bottom:462.024000px;}
.y135{bottom:464.124000px;}
.ye4{bottom:465.480150px;}
.yb6{bottom:466.812000px;}
.y177{bottom:468.900000px;}
.y55{bottom:469.830000px;}
.y25{bottom:471.330000px;}
.ye6{bottom:473.145150px;}
.y1ae{bottom:476.700000px;}
.yea{bottom:480.810150px;}
.y116{bottom:485.400000px;}
.yfd{bottom:485.412000px;}
.y147{bottom:485.418000px;}
.y78{bottom:485.424000px;}
.y134{bottom:487.218000px;}
.ye8{bottom:487.365150px;}
.y176{bottom:488.400000px;}
.yed{bottom:490.110150px;}
.yb5{bottom:490.212000px;}
.y54{bottom:493.230000px;}
.y24{bottom:494.424000px;}
.y1ad{bottom:496.200000px;}
.y175{bottom:507.900000px;}
.yfc{bottom:508.812000px;}
.y115{bottom:508.818000px;}
.y77{bottom:508.824000px;}
.ye9{bottom:509.820150px;}
.y133{bottom:510.618000px;}
.yb4{bottom:513.306000px;}
.y1ac{bottom:515.400000px;}
.y53{bottom:516.324000px;}
.y23{bottom:517.824000px;}
.yee{bottom:524.826600px;}
.y174{bottom:527.100000px;}
.yfb{bottom:531.906000px;}
.y114{bottom:531.912000px;}
.y76{bottom:531.918000px;}
.y132{bottom:534.018000px;}
.y1ab{bottom:534.900000px;}
.yb3{bottom:536.706000px;}
.y52{bottom:539.724000px;}
.y22{bottom:541.224000px;}
.y173{bottom:546.600000px;}
.y1aa{bottom:554.400000px;}
.yfa{bottom:555.306000px;}
.y113{bottom:555.312000px;}
.y75{bottom:555.318000px;}
.y131{bottom:557.112000px;}
.yb2{bottom:560.106000px;}
.y51{bottom:563.124000px;}
.y21{bottom:564.318000px;}
.yec{bottom:565.455150px;}
.y172{bottom:566.100000px;}
.y1a9{bottom:573.900000px;}
.ye7{bottom:577.665150px;}
.yf9{bottom:578.400000px;}
.y112{bottom:578.406000px;}
.y74{bottom:578.412000px;}
.y130{bottom:580.512000px;}
.yb1{bottom:583.200000px;}
.y171{bottom:585.300000px;}
.y50{bottom:586.218000px;}
.ye5{bottom:586.980150px;}
.y20{bottom:587.718000px;}
.yeb{bottom:591.360150px;}
.y1a8{bottom:593.100000px;}
.yf8{bottom:601.800000px;}
.y111{bottom:601.806000px;}
.y73{bottom:601.812000px;}
.y12f{bottom:603.912000px;}
.y170{bottom:604.800000px;}
.yb0{bottom:606.600000px;}
.y4f{bottom:609.618000px;}
.y1f{bottom:611.118000px;}
.y1a7{bottom:612.600000px;}
.yf7{bottom:623.400000px;}
.y16f{bottom:624.300000px;}
.y110{bottom:625.206000px;}
.y72{bottom:625.212000px;}
.y12e{bottom:627.006000px;}
.yaf{bottom:628.200000px;}
.y1a6{bottom:632.100000px;}
.y4e{bottom:633.018000px;}
.y1e{bottom:634.212000px;}
.yf6{bottom:640.848000px;}
.y16e{bottom:643.500000px;}
.yae{bottom:644.400000px;}
.y10f{bottom:648.300000px;}
.y71{bottom:648.306000px;}
.y12d{bottom:650.406000px;}
.y1a5{bottom:651.300000px;}
.yda{bottom:654.300000px;}
.y4d{bottom:656.112000px;}
.y1d{bottom:657.612000px;}
.y16d{bottom:663.000000px;}
.yad{bottom:663.900000px;}
.yf5{bottom:663.942000px;}
.y1a4{bottom:670.800000px;}
.y10e{bottom:671.700000px;}
.y70{bottom:671.706000px;}
.yd9{bottom:671.724000px;}
.y12c{bottom:673.806000px;}
.y4c{bottom:679.512000px;}
.y1c{bottom:681.012000px;}
.y16c{bottom:682.500000px;}
.yac{bottom:683.400000px;}
.yf4{bottom:687.342000px;}
.y1a3{bottom:690.300000px;}
.y10d{bottom:693.300000px;}
.y146{bottom:695.100000px;}
.y6f{bottom:695.106000px;}
.yd8{bottom:695.124000px;}
.y12b{bottom:696.900000px;}
.y16b{bottom:702.000000px;}
.yab{bottom:702.900000px;}
.y4b{bottom:702.912000px;}
.y1b{bottom:704.106000px;}
.y1a2{bottom:709.500000px;}
.yf3{bottom:710.436000px;}
.y145{bottom:716.400000px;}
.y6e{bottom:718.200000px;}
.yd7{bottom:718.218000px;}
.ya5{bottom:718.800000px;}
.y12a{bottom:719.700000px;}
.y16a{bottom:721.200000px;}
.y4a{bottom:726.006000px;}
.y1a{bottom:727.506000px;}
.y1a1{bottom:729.000000px;}
.yf2{bottom:733.836000px;}
.y129{bottom:739.800000px;}
.y169{bottom:740.700000px;}
.y6d{bottom:741.600000px;}
.yd6{bottom:741.618000px;}
.ya9{bottom:743.100000px;}
.yaa{bottom:744.598500px;}
.y1a0{bottom:748.500000px;}
.y49{bottom:749.406000px;}
.y19{bottom:750.600000px;}
.yf1{bottom:757.236000px;}
.y168{bottom:760.200000px;}
.y6c{bottom:763.200000px;}
.yd5{bottom:765.018000px;}
.ya8{bottom:765.900000px;}
.y19f{bottom:768.000000px;}
.y18{bottom:772.200000px;}
.y48{bottom:772.500000px;}
.y167{bottom:779.400000px;}
.y6b{bottom:780.330000px;}
.y19e{bottom:787.200000px;}
.ya7{bottom:787.201500px;}
.yd4{bottom:788.112000px;}
.y17{bottom:788.700000px;}
.y47{bottom:795.900000px;}
.y166{bottom:798.900000px;}
.y6a{bottom:803.730000px;}
.y19d{bottom:806.700000px;}
.y16{bottom:808.200000px;}
.ya6{bottom:808.800000px;}
.yd3{bottom:811.512000px;}
.y165{bottom:818.400000px;}
.y46{bottom:819.300000px;}
.y19c{bottom:826.200000px;}
.y15{bottom:826.500000px;}
.y69{bottom:827.130000px;}
.yd2{bottom:834.912000px;}
.y164{bottom:837.600000px;}
.y45{bottom:840.600000px;}
.y14{bottom:843.000000px;}
.y19b{bottom:845.400000px;}
.y9d{bottom:847.500000px;}
.y68{bottom:850.224000px;}
.y163{bottom:857.100000px;}
.y44{bottom:858.000000px;}
.yd1{bottom:858.006000px;}
.y13{bottom:862.500000px;}
.y19a{bottom:864.900000px;}
.ya4{bottom:873.595500px;}
.ya0{bottom:873.600000px;}
.y67{bottom:873.624000px;}
.y162{bottom:876.600000px;}
.y43{bottom:881.400000px;}
.yd0{bottom:881.406000px;}
.y12{bottom:882.600000px;}
.y199{bottom:884.400000px;}
.ya3{bottom:894.897000px;}
.y9f{bottom:894.900000px;}
.y161{bottom:896.100000px;}
.y66{bottom:897.024000px;}
.y42{bottom:902.700000px;}
.y198{bottom:903.600000px;}
.ycf{bottom:904.500000px;}
.y11{bottom:906.000000px;}
.y160{bottom:915.300000px;}
.ya2{bottom:916.198500px;}
.y41{bottom:920.118000px;}
.y197{bottom:923.100000px;}
.yce{bottom:927.900000px;}
.y10{bottom:929.400000px;}
.y15f{bottom:934.800000px;}
.ya1{bottom:937.500000px;}
.y196{bottom:942.600000px;}
.y40{bottom:943.518000px;}
.ycd{bottom:949.500000px;}
.yf{bottom:952.500000px;}
.y195{bottom:962.100000px;}
.y15e{bottom:966.600000px;}
.y3f{bottom:966.612000px;}
.ye{bottom:976.500000px;}
.y9b{bottom:981.000000px;}
.y194{bottom:981.300000px;}
.y15d{bottom:987.300000px;}
.y3e{bottom:990.012000px;}
.y193{bottom:1000.800000px;}
.y15c{bottom:1001.706000px;}
.y9a{bottom:1002.300000px;}
.yd{bottom:1003.800000px;}
.y3d{bottom:1013.412000px;}
.y192{bottom:1020.300000px;}
.y99{bottom:1023.600000px;}
.y15b{bottom:1025.106000px;}
.yc{bottom:1030.800000px;}
.y3c{bottom:1036.506000px;}
.y191{bottom:1039.500000px;}
.y97{bottom:1044.900000px;}
.y15a{bottom:1048.200000px;}
.yb{bottom:1058.100000px;}
.y190{bottom:1059.000000px;}
.y3b{bottom:1059.906000px;}
.y96{bottom:1066.500000px;}
.y159{bottom:1071.600000px;}
.y18f{bottom:1078.500000px;}
.y8{bottom:1079.400000px;}
.y3a{bottom:1083.306000px;}
.y98{bottom:1087.800000px;}
.y158{bottom:1092.300000px;}
.y18e{bottom:1097.700000px;}
.y6{bottom:1103.400000px;}
.y39{bottom:1106.400000px;}
.y94{bottom:1109.100000px;}
.y18d{bottom:1117.200000px;}
.y5{bottom:1129.200000px;}
.y38{bottom:1129.800000px;}
.y18c{bottom:1136.700000px;}
.y3{bottom:1144.800000px;}
.y37{bottom:1153.200000px;}
.y18b{bottom:1156.200000px;}
.y2{bottom:1164.300000px;}
.y36{bottom:1183.500000px;}
.y1{bottom:1183.800000px;}
.h25{height:20.880000px;}
.h1a{height:21.298500px;}
.h19{height:21.300000px;}
.h1d{height:21.600000px;}
.h5{height:23.401500px;}
.h8{height:23.998500px;}
.h10{height:26.100000px;}
.h4{height:31.320000px;}
.he{height:41.760000px;}
.h1c{height:42.600000px;}
.h3{height:43.200000px;}
.h2{height:43.920000px;}
.h7{height:47.400000px;}
.h12{height:48.312000px;}
.hf{height:51.840000px;}
.hd{height:52.200000px;}
.h6{height:52.704000px;}
.h13{height:57.420000px;}
.h21{height:58.886719px;}
.h24{height:60.468750px;}
.hb{height:61.488000px;}
.hc{height:62.640000px;}
.h1b{height:68.835938px;}
.h16{height:70.664062px;}
.h9{height:72.562500px;}
.ha{height:73.080000px;}
.h15{height:75.093750px;}
.h11{height:85.200000px;}
.h23{height:104.846719px;}
.h14{height:106.800000px;}
.h20{height:120.206719px;}
.h1f{height:124.200000px;}
.h22{height:126.746719px;}
.h18{height:128.100000px;}
.h17{height:170.700000px;}
.h1e{height:434.098500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:25.198500px;}
.wb{width:43.500000px;}
.w9{width:69.300000px;}
.w6{width:90.300000px;}
.w8{width:102.000000px;}
.w7{width:111.900000px;}
.w4{width:127.500000px;}
.w3{width:127.800000px;}
.wd{width:149.700000px;}
.wf{width:156.900000px;}
.w11{width:192.000000px;}
.w10{width:213.300000px;}
.wa{width:313.500000px;}
.w2{width:478.200000px;}
.wc{width:516.900000px;}
.we{width:710.100000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x23{left:10.500000px;}
.x18{left:12.600000px;}
.x20{left:17.100000px;}
.x34{left:20.700000px;}
.x3a{left:27.000000px;}
.x37{left:29.700000px;}
.x56{left:30.900000px;}
.x5a{left:34.500000px;}
.x54{left:36.000000px;}
.x4e{left:39.000000px;}
.x36{left:49.800000px;}
.x59{left:54.000000px;}
.x5b{left:55.500000px;}
.x58{left:58.500000px;}
.x32{left:60.600000px;}
.x57{left:63.000000px;}
.x2a{left:67.200000px;}
.x51{left:70.800000px;}
.x3{left:79.800000px;}
.x1{left:91.500000px;}
.x15{left:95.700000px;}
.x33{left:99.600000px;}
.x3c{left:101.700000px;}
.x3e{left:109.800000px;}
.x3d{left:111.300000px;}
.x5c{left:112.800000px;}
.x25{left:116.700000px;}
.x4b{left:119.418000px;}
.x8{left:123.000000px;}
.x6{left:125.100000px;}
.x5d{left:129.000000px;}
.x19{left:130.200000px;}
.x2f{left:135.000000px;}
.x1a{left:142.195500px;}
.x14{left:144.600000px;}
.x30{left:166.800000px;}
.x2d{left:168.306000px;}
.xe{left:172.500000px;}
.x41{left:176.770350px;}
.x12{left:179.394000px;}
.x9{left:185.700000px;}
.x45{left:199.585350px;}
.x26{left:228.600000px;}
.x13{left:229.812000px;}
.xf{left:235.800000px;}
.x3b{left:243.600000px;}
.x1b{left:244.792500px;}
.x4d{left:248.400000px;}
.xb{left:255.300000px;}
.x1c{left:258.883500px;}
.xd{left:264.300000px;}
.xc{left:270.600000px;}
.xa{left:303.000000px;}
.x27{left:330.600000px;}
.x3f{left:333.600000px;}
.x1e{left:340.789500px;}
.x1d{left:350.689500px;}
.x2e{left:357.018000px;}
.x4f{left:359.100000px;}
.x46{left:367.390350px;}
.x10{left:374.100000px;}
.x50{left:398.100000px;}
.x1f{left:399.900000px;}
.x2c{left:408.000000px;}
.x22{left:412.207500px;}
.x42{left:416.575350px;}
.x21{left:437.700000px;}
.x47{left:439.390350px;}
.x2{left:446.400000px;}
.x11{left:449.400000px;}
.x4c{left:460.500000px;}
.x40{left:467.700000px;}
.x16{left:473.100000px;}
.x28{left:490.200000px;}
.x29{left:498.300000px;}
.x52{left:540.600000px;}
.x5{left:558.000000px;}
.x43{left:578.245350px;}
.x48{left:595.360350px;}
.x53{left:611.400000px;}
.x24{left:620.400000px;}
.x2b{left:647.400000px;}
.x31{left:651.900000px;}
.x4a{left:663.493950px;}
.x7{left:685.800000px;}
.x38{left:696.000000px;}
.x35{left:712.498500px;}
.x39{left:721.200000px;}
.x44{left:736.315350px;}
.x17{left:746.700000px;}
.x49{left:764.845350px;}
.x55{left:767.400000px;}
@media print{
.v3{vertical-align:-19.466667pt;}
.v5{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.v6{vertical-align:40.853333pt;}
.v2{vertical-align:54.506667pt;}
.v4{vertical-align:60.320000pt;}
.ls4b{letter-spacing:-1.493333pt;}
.ls45{letter-spacing:-1.290667pt;}
.ls46{letter-spacing:-1.173333pt;}
.ls44{letter-spacing:-0.997333pt;}
.ls56{letter-spacing:-0.896000pt;}
.ls4f{letter-spacing:-0.832000pt;}
.ls48{letter-spacing:-0.762667pt;}
.ls2e{letter-spacing:-0.528000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls51{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.469333pt;}
.ls2c{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.426667pt;}
.ls34{letter-spacing:-0.410667pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls24{letter-spacing:-0.373333pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.293333pt;}
.ls15{letter-spacing:-0.266667pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls43{letter-spacing:-0.234667pt;}
.ls5c{letter-spacing:-0.213333pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.176000pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls4c{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.117333pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls41{letter-spacing:-0.058667pt;}
.ls5d{letter-spacing:-0.053333pt;}
.lse{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.053333pt;}
.ls30{letter-spacing:0.058667pt;}
.ls4d{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.074667pt;}
.ls4e{letter-spacing:0.083200pt;}
.lsd{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls49{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.170667pt;}
.ls10{letter-spacing:0.192000pt;}
.ls4a{letter-spacing:0.213333pt;}
.ls19{letter-spacing:0.256000pt;}
.ls6e{letter-spacing:0.266667pt;}
.ls42{letter-spacing:0.293333pt;}
.ls1e{letter-spacing:0.307200pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.339200pt;}
.ls2a{letter-spacing:0.352000pt;}
.ls22{letter-spacing:0.364800pt;}
.ls52{letter-spacing:0.373333pt;}
.ls5e{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.390400pt;}
.ls3{letter-spacing:0.405333pt;}
.ls3e{letter-spacing:0.409600pt;}
.ls31{letter-spacing:0.410667pt;}
.ls50{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.428800pt;}
.ls6{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.454400pt;}
.lsb{letter-spacing:0.467200pt;}
.ls47{letter-spacing:0.469333pt;}
.ls3d{letter-spacing:0.480000pt;}
.ls55{letter-spacing:0.512000pt;}
.ls62{letter-spacing:0.537600pt;}
.ls3c{letter-spacing:0.693333pt;}
.ls6f{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:0.896000pt;}
.ls21{letter-spacing:1.024000pt;}
.ls69{letter-spacing:1.061333pt;}
.ls70{letter-spacing:1.066667pt;}
.ls5b{letter-spacing:1.216000pt;}
.ls3b{letter-spacing:1.760000pt;}
.ls40{letter-spacing:2.890667pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls68{letter-spacing:3.893333pt;}
.ls1b{letter-spacing:4.224000pt;}
.lsc{letter-spacing:5.145600pt;}
.ls66{letter-spacing:7.093333pt;}
.ls5a{letter-spacing:8.512000pt;}
.ls9{letter-spacing:9.600000pt;}
.ls65{letter-spacing:10.624000pt;}
.ls61{letter-spacing:11.440000pt;}
.ls28{letter-spacing:11.712000pt;}
.lsa{letter-spacing:17.024000pt;}
.ls54{letter-spacing:17.062400pt;}
.ls6b{letter-spacing:17.760000pt;}
.ls53{letter-spacing:19.097600pt;}
.ls64{letter-spacing:21.312000pt;}
.ls1c{letter-spacing:22.208000pt;}
.ls25{letter-spacing:24.512000pt;}
.ls5f{letter-spacing:25.600000pt;}
.ls2b{letter-spacing:25.941333pt;}
.ls38{letter-spacing:26.986667pt;}
.ls74{letter-spacing:27.712000pt;}
.ls67{letter-spacing:28.426667pt;}
.ls60{letter-spacing:28.800000pt;}
.ls3f{letter-spacing:34.890667pt;}
.ls76{letter-spacing:39.093333pt;}
.ls6a{letter-spacing:40.160000pt;}
.ls20{letter-spacing:41.600000pt;}
.ls63{letter-spacing:43.008000pt;}
.ls73{letter-spacing:49.760000pt;}
.ls39{letter-spacing:55.557333pt;}
.ls71{letter-spacing:61.493333pt;}
.ls72{letter-spacing:65.045333pt;}
.ls37{letter-spacing:67.525333pt;}
.ls35{letter-spacing:87.824000pt;}
.ls6c{letter-spacing:90.293333pt;}
.ls36{letter-spacing:99.557333pt;}
.ls6d{letter-spacing:140.426667pt;}
.ls57{letter-spacing:281.952000pt;}
.ls75{letter-spacing:308.960000pt;}
.ls58{letter-spacing:342.730667pt;}
.ls59{letter-spacing:417.413333pt;}
.ls27{letter-spacing:440.160000pt;}
.ls1{letter-spacing:752.693333pt;}
.ls2{letter-spacing:777.226667pt;}
.ls0{letter-spacing:1186.826667pt;}
.ws3c{word-spacing:-24.512000pt;}
.wsc5{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.408000pt;}
.wsb5{word-spacing:-17.344000pt;}
.ws8{word-spacing:-17.280000pt;}
.ws4{word-spacing:-17.088000pt;}
.ws32{word-spacing:-16.896000pt;}
.ws34{word-spacing:-16.832000pt;}
.ws59{word-spacing:-16.704000pt;}
.ws5a{word-spacing:-16.640000pt;}
.ws33{word-spacing:-16.576000pt;}
.ws2{word-spacing:-16.384000pt;}
.ws5d{word-spacing:-16.192000pt;}
.ws60{word-spacing:-16.074667pt;}
.ws8c{word-spacing:-16.016000pt;}
.wsc6{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.wsff{word-spacing:-15.872000pt;}
.ws8a{word-spacing:-15.722667pt;}
.ws10d{word-spacing:-15.680000pt;}
.ws5f{word-spacing:-15.664000pt;}
.ws86{word-spacing:-15.546667pt;}
.ws91{word-spacing:-15.488000pt;}
.ws89{word-spacing:-15.429333pt;}
.ws88{word-spacing:-15.370667pt;}
.ws8e{word-spacing:-15.253333pt;}
.ws5e{word-spacing:-15.194667pt;}
.ws87{word-spacing:-15.136000pt;}
.ws111{word-spacing:-15.040000pt;}
.ws90{word-spacing:-14.725333pt;}
.ws13a{word-spacing:-14.720000pt;}
.ws5c{word-spacing:-14.666667pt;}
.wsed{word-spacing:-14.608000pt;}
.ws5b{word-spacing:-14.549333pt;}
.ws10f{word-spacing:-14.506667pt;}
.ws8d{word-spacing:-14.490667pt;}
.ws112{word-spacing:-14.453333pt;}
.ws8b{word-spacing:-14.373333pt;}
.ws1{word-spacing:-14.346667pt;}
.ws31{word-spacing:-14.293333pt;}
.ws110{word-spacing:-14.240000pt;}
.ws113{word-spacing:-14.186667pt;}
.ws5{word-spacing:-14.080000pt;}
.wsdb{word-spacing:-14.026667pt;}
.ws6{word-spacing:-13.973333pt;}
.ws139{word-spacing:-13.866667pt;}
.ws0{word-spacing:-13.813333pt;}
.ws8f{word-spacing:-13.653333pt;}
.wsb7{word-spacing:-13.333333pt;}
.ws10e{word-spacing:-13.066667pt;}
.ws13b{word-spacing:-13.013333pt;}
.ws10b{word-spacing:-4.608000pt;}
.ws27{word-spacing:-4.480000pt;}
.ws2f{word-spacing:-4.224000pt;}
.ws69{word-spacing:-3.904000pt;}
.ws10a{word-spacing:-3.776000pt;}
.ws64{word-spacing:-3.392000pt;}
.wsa4{word-spacing:-3.226667pt;}
.wsa3{word-spacing:-3.168000pt;}
.ws142{word-spacing:-3.146667pt;}
.wsfc{word-spacing:-3.136000pt;}
.ws19{word-spacing:-2.944000pt;}
.ws4f{word-spacing:-2.816000pt;}
.wsa5{word-spacing:-2.757333pt;}
.ws3d{word-spacing:-2.688000pt;}
.ws126{word-spacing:-2.560000pt;}
.ws48{word-spacing:-2.368000pt;}
.ws38{word-spacing:-2.304000pt;}
.ws98{word-spacing:-2.288000pt;}
.ws24{word-spacing:-2.112000pt;}
.ws127{word-spacing:-2.080000pt;}
.wsf9{word-spacing:-1.792000pt;}
.ws23{word-spacing:-1.664000pt;}
.ws119{word-spacing:-1.653333pt;}
.ws25{word-spacing:-1.408000pt;}
.ws39{word-spacing:-1.344000pt;}
.ws7c{word-spacing:-1.290667pt;}
.ws68{word-spacing:-1.280000pt;}
.wsdf{word-spacing:-1.216000pt;}
.wsa2{word-spacing:-1.114667pt;}
.ws61{word-spacing:-1.024000pt;}
.ws11a{word-spacing:-1.013333pt;}
.wsd9{word-spacing:-0.896000pt;}
.wsda{word-spacing:-0.832000pt;}
.wsc3{word-spacing:-0.746667pt;}
.ws22{word-spacing:-0.704000pt;}
.wsb2{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.576000pt;}
.wsc4{word-spacing:-0.533333pt;}
.ws76{word-spacing:-0.512000pt;}
.ws9{word-spacing:-0.480000pt;}
.ws35{word-spacing:-0.426667pt;}
.ws93{word-spacing:-0.410667pt;}
.wsb{word-spacing:-0.373333pt;}
.ws7a{word-spacing:-0.352000pt;}
.ws11{word-spacing:-0.320000pt;}
.ws2e{word-spacing:-0.256000pt;}
.wsc2{word-spacing:-0.213333pt;}
.wsc{word-spacing:-0.192000pt;}
.ws136{word-spacing:-0.160000pt;}
.ws11d{word-spacing:-0.106667pt;}
.ws81{word-spacing:-0.058667pt;}
.wse9{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws12{word-spacing:0.053333pt;}
.ws92{word-spacing:0.058667pt;}
.wsf{word-spacing:0.064000pt;}
.ws9e{word-spacing:0.117333pt;}
.wsbc{word-spacing:0.128000pt;}
.ws152{word-spacing:0.160000pt;}
.ws56{word-spacing:0.192000pt;}
.wsd{word-spacing:0.224000pt;}
.ws2b{word-spacing:0.256000pt;}
.ws13{word-spacing:0.266667pt;}
.ws79{word-spacing:0.293333pt;}
.wse{word-spacing:0.298667pt;}
.ws14{word-spacing:0.320000pt;}
.wsb4{word-spacing:0.352000pt;}
.ws36{word-spacing:0.373333pt;}
.ws17{word-spacing:0.384000pt;}
.ws77{word-spacing:0.410667pt;}
.ws12f{word-spacing:0.426667pt;}
.ws104{word-spacing:0.448000pt;}
.ws7f{word-spacing:0.469333pt;}
.wsc1{word-spacing:0.480000pt;}
.ws10{word-spacing:0.512000pt;}
.ws78{word-spacing:0.528000pt;}
.wsad{word-spacing:0.640000pt;}
.wsa7{word-spacing:0.645333pt;}
.ws102{word-spacing:0.704000pt;}
.wsc0{word-spacing:0.832000pt;}
.wsb3{word-spacing:0.880000pt;}
.wsd7{word-spacing:0.896000pt;}
.wsac{word-spacing:1.066667pt;}
.ws52{word-spacing:1.088000pt;}
.wsa6{word-spacing:1.114667pt;}
.ws130{word-spacing:1.120000pt;}
.wsd6{word-spacing:1.216000pt;}
.ws50{word-spacing:1.408000pt;}
.wsae{word-spacing:1.493333pt;}
.ws3b{word-spacing:1.536000pt;}
.wsa8{word-spacing:1.546667pt;}
.wsb0{word-spacing:1.792000pt;}
.ws6d{word-spacing:1.920000pt;}
.ws9f{word-spacing:2.170667pt;}
.ws15{word-spacing:2.176000pt;}
.wse6{word-spacing:2.368000pt;}
.ws4e{word-spacing:2.496000pt;}
.wsd8{word-spacing:2.560000pt;}
.ws44{word-spacing:2.624000pt;}
.ws70{word-spacing:2.752000pt;}
.wse0{word-spacing:2.880000pt;}
.ws3a{word-spacing:2.944000pt;}
.wsf3{word-spacing:3.008000pt;}
.ws159{word-spacing:3.168000pt;}
.ws125{word-spacing:3.253333pt;}
.wsf7{word-spacing:3.264000pt;}
.wsfb{word-spacing:3.456000pt;}
.ws158{word-spacing:3.520000pt;}
.wsf8{word-spacing:3.584000pt;}
.ws124{word-spacing:3.680000pt;}
.ws75{word-spacing:3.712000pt;}
.wsbd{word-spacing:3.776000pt;}
.ws11c{word-spacing:3.786667pt;}
.ws11b{word-spacing:3.840000pt;}
.wse5{word-spacing:3.904000pt;}
.ws46{word-spacing:4.032000pt;}
.ws122{word-spacing:4.053333pt;}
.wsb9{word-spacing:4.224000pt;}
.ws121{word-spacing:4.266667pt;}
.wsd2{word-spacing:4.288000pt;}
.ws123{word-spacing:4.320000pt;}
.ws108{word-spacing:4.416000pt;}
.ws47{word-spacing:4.480000pt;}
.ws45{word-spacing:4.608000pt;}
.ws73{word-spacing:4.736000pt;}
.ws151{word-spacing:4.746667pt;}
.ws14e{word-spacing:4.853333pt;}
.ws14d{word-spacing:4.906667pt;}
.wse7{word-spacing:4.992000pt;}
.ws26{word-spacing:5.120000pt;}
.ws14f{word-spacing:5.226667pt;}
.ws7d{word-spacing:5.280000pt;}
.wsbf{word-spacing:5.376000pt;}
.wsbe{word-spacing:5.696000pt;}
.wse8{word-spacing:5.760000pt;}
.ws4a{word-spacing:5.824000pt;}
.wsdd{word-spacing:6.080000pt;}
.ws6f{word-spacing:6.144000pt;}
.wsfa{word-spacing:6.208000pt;}
.ws1f{word-spacing:6.464000pt;}
.ws20{word-spacing:6.656000pt;}
.ws65{word-spacing:6.784000pt;}
.ws1e{word-spacing:6.912000pt;}
.ws85{word-spacing:7.392000pt;}
.wsc7{word-spacing:7.488000pt;}
.wsea{word-spacing:7.552000pt;}
.wsb1{word-spacing:7.616000pt;}
.ws66{word-spacing:7.680000pt;}
.wsde{word-spacing:7.744000pt;}
.ws74{word-spacing:7.808000pt;}
.ws149{word-spacing:7.840000pt;}
.ws83{word-spacing:7.920000pt;}
.ws67{word-spacing:7.936000pt;}
.ws14a{word-spacing:8.160000pt;}
.ws4b{word-spacing:8.320000pt;}
.wse2{word-spacing:8.576000pt;}
.wsfe{word-spacing:8.896000pt;}
.ws4c{word-spacing:9.024000pt;}
.ws1b{word-spacing:9.344000pt;}
.ws107{word-spacing:9.408000pt;}
.ws145{word-spacing:9.653333pt;}
.ws4d{word-spacing:9.664000pt;}
.ws40{word-spacing:9.856000pt;}
.ws1d{word-spacing:9.984000pt;}
.ws128{word-spacing:10.080000pt;}
.ws1c{word-spacing:10.112000pt;}
.ws143{word-spacing:10.293333pt;}
.wsca{word-spacing:10.432000pt;}
.ws49{word-spacing:10.688000pt;}
.ws129{word-spacing:10.720000pt;}
.ws116{word-spacing:10.816000pt;}
.wsba{word-spacing:11.008000pt;}
.wscb{word-spacing:11.136000pt;}
.ws118{word-spacing:11.146667pt;}
.ws62{word-spacing:11.520000pt;}
.wsd0{word-spacing:11.776000pt;}
.ws117{word-spacing:11.786667pt;}
.wse4{word-spacing:11.840000pt;}
.wsbb{word-spacing:12.032000pt;}
.ws63{word-spacing:12.096000pt;}
.ws43{word-spacing:12.224000pt;}
.ws57{word-spacing:12.608000pt;}
.ws156{word-spacing:12.730667pt;}
.ws157{word-spacing:12.848000pt;}
.ws51{word-spacing:12.864000pt;}
.ws18{word-spacing:13.056000pt;}
.ws16{word-spacing:13.184000pt;}
.ws155{word-spacing:13.200000pt;}
.wse3{word-spacing:13.248000pt;}
.ws58{word-spacing:13.312000pt;}
.wsd5{word-spacing:13.376000pt;}
.wsf4{word-spacing:13.440000pt;}
.wsef{word-spacing:13.632000pt;}
.wsaf{word-spacing:13.824000pt;}
.wsee{word-spacing:13.888000pt;}
.ws94{word-spacing:13.904000pt;}
.wsd4{word-spacing:14.080000pt;}
.ws6e{word-spacing:14.144000pt;}
.ws1a{word-spacing:14.208000pt;}
.ws30{word-spacing:14.336000pt;}
.wsc9{word-spacing:14.656000pt;}
.ws105{word-spacing:14.976000pt;}
.wscd{word-spacing:15.168000pt;}
.ws7e{word-spacing:15.370667pt;}
.ws42{word-spacing:15.424000pt;}
.wsd1{word-spacing:15.552000pt;}
.wsc8{word-spacing:15.680000pt;}
.ws6c{word-spacing:16.384000pt;}
.ws132{word-spacing:16.480000pt;}
.ws6b{word-spacing:16.512000pt;}
.wsce{word-spacing:16.832000pt;}
.ws2d{word-spacing:16.896000pt;}
.ws3f{word-spacing:17.088000pt;}
.ws2c{word-spacing:17.344000pt;}
.ws7b{word-spacing:17.365333pt;}
.wse1{word-spacing:17.408000pt;}
.wscf{word-spacing:17.536000pt;}
.wsaa{word-spacing:17.546667pt;}
.wsa9{word-spacing:17.706667pt;}
.ws54{word-spacing:18.176000pt;}
.wsab{word-spacing:18.186667pt;}
.ws53{word-spacing:18.304000pt;}
.wsd3{word-spacing:18.496000pt;}
.ws55{word-spacing:18.624000pt;}
.wscc{word-spacing:19.712000pt;}
.wsec{word-spacing:19.904000pt;}
.ws2a{word-spacing:20.032000pt;}
.ws29{word-spacing:20.736000pt;}
.ws101{word-spacing:21.056000pt;}
.ws100{word-spacing:21.376000pt;}
.ws114{word-spacing:21.696000pt;}
.ws10c{word-spacing:21.760000pt;}
.ws115{word-spacing:21.824000pt;}
.ws72{word-spacing:22.208000pt;}
.wseb{word-spacing:22.464000pt;}
.ws99{word-spacing:22.704000pt;}
.ws37{word-spacing:22.912000pt;}
.ws6a{word-spacing:23.936000pt;}
.ws106{word-spacing:24.576000pt;}
.ws109{word-spacing:24.960000pt;}
.ws146{word-spacing:25.013333pt;}
.ws147{word-spacing:25.653333pt;}
.wsf1{word-spacing:25.856000pt;}
.wsf0{word-spacing:25.920000pt;}
.wsf2{word-spacing:26.112000pt;}
.wsfd{word-spacing:26.688000pt;}
.wsdc{word-spacing:27.008000pt;}
.ws9c{word-spacing:27.456000pt;}
.ws11e{word-spacing:28.213333pt;}
.ws11f{word-spacing:28.320000pt;}
.ws120{word-spacing:28.693333pt;}
.ws103{word-spacing:28.864000pt;}
.wsf5{word-spacing:29.184000pt;}
.wsf6{word-spacing:29.312000pt;}
.ws41{word-spacing:29.888000pt;}
.ws95{word-spacing:30.272000pt;}
.ws82{word-spacing:30.858667pt;}
.ws28{word-spacing:31.424000pt;}
.ws96{word-spacing:31.914667pt;}
.ws80{word-spacing:32.794667pt;}
.wsa0{word-spacing:32.853333pt;}
.ws71{word-spacing:37.120000pt;}
.ws153{word-spacing:39.360000pt;}
.ws154{word-spacing:39.520000pt;}
.ws12b{word-spacing:40.053333pt;}
.ws12c{word-spacing:40.426667pt;}
.ws12a{word-spacing:40.586667pt;}
.ws3e{word-spacing:41.920000pt;}
.wsa1{word-spacing:42.064000pt;}
.ws84{word-spacing:42.944000pt;}
.ws9b{word-spacing:52.096000pt;}
.ws148{word-spacing:53.226667pt;}
.ws9d{word-spacing:55.381333pt;}
.ws150{word-spacing:55.520000pt;}
.ws131{word-spacing:57.653333pt;}
.ws13e{word-spacing:62.826667pt;}
.ws13f{word-spacing:62.986667pt;}
.ws12d{word-spacing:63.520000pt;}
.ws12e{word-spacing:64.053333pt;}
.ws140{word-spacing:74.720000pt;}
.ws141{word-spacing:88.586667pt;}
.ws9a{word-spacing:93.690667pt;}
.ws97{word-spacing:119.269333pt;}
.ws13c{word-spacing:126.346667pt;}
.ws13d{word-spacing:126.826667pt;}
.ws144{word-spacing:131.680000pt;}
.ws135{word-spacing:137.280000pt;}
.ws133{word-spacing:140.213333pt;}
.ws134{word-spacing:140.853333pt;}
.wsb8{word-spacing:197.280000pt;}
.wsb6{word-spacing:203.680000pt;}
.ws137{word-spacing:247.360000pt;}
.ws138{word-spacing:247.520000pt;}
.ws14b{word-spacing:309.226667pt;}
.ws14c{word-spacing:309.386667pt;}
._18{margin-left:-25.606400pt;}
._15{margin-left:-24.684800pt;}
._16{margin-left:-23.705600pt;}
._22{margin-left:-7.253333pt;}
._9{margin-left:-4.716800pt;}
._a{margin-left:-3.385600pt;}
._c{margin-left:-2.374400pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.120000pt;}
._6{width:2.080000pt;}
._f{width:3.020800pt;}
._b{width:4.697600pt;}
._e{width:6.233600pt;}
._d{width:7.232000pt;}
._14{width:9.030400pt;}
._13{width:10.816000pt;}
._7{width:12.576000pt;}
._10{width:14.124800pt;}
._8{width:17.504000pt;}
._21{width:21.440000pt;}
._12{width:22.496000pt;}
._17{width:24.172800pt;}
._19{width:25.299200pt;}
._2a{width:39.466667pt;}
._1a{width:41.209600pt;}
._1c{width:55.744000pt;}
._23{width:63.146667pt;}
._24{width:64.101333pt;}
._25{width:74.986667pt;}
._29{width:93.600000pt;}
._28{width:131.792000pt;}
._27{width:132.800000pt;}
._20{width:162.272000pt;}
._1d{width:316.889600pt;}
._1b{width:358.346667pt;}
._26{width:549.760000pt;}
._4{width:680.693333pt;}
._11{width:804.960000pt;}
._5{width:816.693333pt;}
._2{width:893.706667pt;}
._3{width:1011.093333pt;}
._1f{width:1105.088000pt;}
._1e{width:1370.629333pt;}
.fs8{font-size:21.333333pt;}
.fs6{font-size:26.666667pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.933333pt;}
.ye3{bottom:3.733333pt;}
.y85{bottom:4.000000pt;}
.yc6{bottom:4.001333pt;}
.yc0{bottom:4.266667pt;}
.y7{bottom:4.533333pt;}
.ya{bottom:5.333333pt;}
.y9c{bottom:22.933333pt;}
.y8c{bottom:23.200000pt;}
.y8d{bottom:42.133333pt;}
.y81{bottom:59.733333pt;}
.y4{bottom:60.266667pt;}
.y84{bottom:60.800000pt;}
.y8f{bottom:61.066667pt;}
.y88{bottom:78.666667pt;}
.y89{bottom:80.000000pt;}
.ydc{bottom:82.400000pt;}
.ye2{bottom:86.133333pt;}
.y65{bottom:86.458667pt;}
.y91{bottom:88.266667pt;}
.y18a{bottom:89.066667pt;}
.ydd{bottom:94.133333pt;}
.ycb{bottom:94.400000pt;}
.y128{bottom:94.416000pt;}
.y9e{bottom:97.600000pt;}
.ycc{bottom:98.400000pt;}
.y95{bottom:98.933333pt;}
.y157{bottom:100.314667pt;}
.y35{bottom:101.344000pt;}
.y144{bottom:101.914667pt;}
.ye1{bottom:103.200000pt;}
.y1bc{bottom:105.866667pt;}
.y189{bottom:106.400000pt;}
.y90{bottom:106.666667pt;}
.y64{bottom:107.258667pt;}
.y127{bottom:115.216000pt;}
.yca{bottom:117.333333pt;}
.ye0{bottom:120.533333pt;}
.y10c{bottom:120.837333pt;}
.y156{bottom:120.842667pt;}
.y87{bottom:121.866667pt;}
.y34{bottom:122.144000pt;}
.y1bb{bottom:122.400000pt;}
.y143{bottom:122.714667pt;}
.y188{bottom:123.466667pt;}
.y63{bottom:127.786667pt;}
.y1ba{bottom:131.730667pt;}
.yc9{bottom:132.800000pt;}
.y92{bottom:135.466667pt;}
.y126{bottom:135.744000pt;}
.y93{bottom:136.800000pt;}
.yc8{bottom:137.066667pt;}
.ydf{bottom:137.866667pt;}
.y187{bottom:140.800000pt;}
.y10b{bottom:141.637333pt;}
.y155{bottom:141.642667pt;}
.y33{bottom:142.944000pt;}
.y142{bottom:143.242667pt;}
.y8e{bottom:145.066667pt;}
.y62{bottom:148.586667pt;}
.y1b9{bottom:150.665333pt;}
.yc7{bottom:152.533333pt;}
.yde{bottom:156.000000pt;}
.y125{bottom:156.544000pt;}
.y186{bottom:158.133333pt;}
.y10a{bottom:162.437333pt;}
.y154{bottom:162.442667pt;}
.y32{bottom:163.472000pt;}
.y8b{bottom:163.998667pt;}
.y141{bottom:164.042667pt;}
.y61{bottom:169.114667pt;}
.y1b8{bottom:169.600000pt;}
.yc5{bottom:172.265333pt;}
.y185{bottom:175.200000pt;}
.y124{bottom:177.344000pt;}
.y8a{bottom:182.933333pt;}
.y109{bottom:182.965333pt;}
.y153{bottom:182.970667pt;}
.y31{bottom:184.272000pt;}
.y140{bottom:184.842667pt;}
.y60{bottom:189.914667pt;}
.yc4{bottom:191.733333pt;}
.y184{bottom:192.533333pt;}
.ydb{bottom:192.800000pt;}
.yc3{bottom:196.000000pt;}
.y123{bottom:197.872000pt;}
.y108{bottom:203.765333pt;}
.y152{bottom:203.770667pt;}
.y30{bottom:205.072000pt;}
.y13f{bottom:205.370667pt;}
.y183{bottom:209.866667pt;}
.y5f{bottom:210.714667pt;}
.yc2{bottom:211.466667pt;}
.yf0{bottom:214.971333pt;}
.y80{bottom:217.600000pt;}
.y122{bottom:218.672000pt;}
.y107{bottom:224.565333pt;}
.y151{bottom:224.570667pt;}
.y2f{bottom:225.600000pt;}
.y13e{bottom:226.170667pt;}
.y182{bottom:226.933333pt;}
.y1b7{bottom:230.932000pt;}
.yc1{bottom:231.200000pt;}
.y5e{bottom:231.242667pt;}
.yef{bottom:237.762667pt;}
.y121{bottom:239.472000pt;}
.y83{bottom:240.532000pt;}
.y181{bottom:244.266667pt;}
.y106{bottom:245.093333pt;}
.y150{bottom:245.098667pt;}
.y2e{bottom:246.400000pt;}
.y13d{bottom:246.970667pt;}
.y86{bottom:249.866667pt;}
.ybf{bottom:250.666667pt;}
.y5d{bottom:252.042667pt;}
.y82{bottom:259.466667pt;}
.y120{bottom:260.000000pt;}
.y180{bottom:261.600000pt;}
.y2d{bottom:265.333333pt;}
.y105{bottom:265.893333pt;}
.y14f{bottom:265.898667pt;}
.y1b6{bottom:266.933333pt;}
.y13c{bottom:267.498667pt;}
.ybd{bottom:270.400000pt;}
.y5c{bottom:272.842667pt;}
.ybe{bottom:274.398667pt;}
.y17f{bottom:278.933333pt;}
.y11f{bottom:279.200000pt;}
.y2c{bottom:280.800000pt;}
.y104{bottom:286.421333pt;}
.y14e{bottom:286.426667pt;}
.y13b{bottom:288.298667pt;}
.ybc{bottom:293.333333pt;}
.y5b{bottom:293.370667pt;}
.y11e{bottom:293.866667pt;}
.y17e{bottom:296.000000pt;}
.y7f{bottom:298.672000pt;}
.y2b{bottom:301.600000pt;}
.y103{bottom:307.221333pt;}
.y14d{bottom:307.226667pt;}
.y11d{bottom:308.000000pt;}
.ybb{bottom:309.066667pt;}
.y13a{bottom:309.098667pt;}
.y1b5{bottom:311.200000pt;}
.y17d{bottom:313.333333pt;}
.y5a{bottom:314.170667pt;}
.y7e{bottom:319.200000pt;}
.y1b4{bottom:320.266667pt;}
.y2a{bottom:320.533333pt;}
.y102{bottom:328.021333pt;}
.y14c{bottom:328.026667pt;}
.yba{bottom:328.800000pt;}
.y139{bottom:329.626667pt;}
.y17c{bottom:330.666667pt;}
.y11c{bottom:331.733333pt;}
.y59{bottom:334.970667pt;}
.y29{bottom:336.032000pt;}
.y7d{bottom:337.333333pt;}
.y1b3{bottom:337.600000pt;}
.y11b{bottom:347.200000pt;}
.y17b{bottom:347.733333pt;}
.y101{bottom:348.549333pt;}
.y14b{bottom:348.554667pt;}
.y7c{bottom:348.560000pt;}
.y138{bottom:350.426667pt;}
.yb9{bottom:352.816000pt;}
.y1b2{bottom:354.666667pt;}
.y58{bottom:355.498667pt;}
.y28{bottom:356.832000pt;}
.y17a{bottom:365.066667pt;}
.y11a{bottom:366.933333pt;}
.y100{bottom:369.349333pt;}
.y14a{bottom:369.354667pt;}
.y7b{bottom:369.360000pt;}
.y137{bottom:370.954667pt;}
.y1b1{bottom:372.000000pt;}
.yb8{bottom:373.616000pt;}
.y57{bottom:376.298667pt;}
.y27{bottom:377.632000pt;}
.y179{bottom:382.400000pt;}
.y118{bottom:386.666667pt;}
.y1b0{bottom:389.333333pt;}
.yff{bottom:390.149333pt;}
.y149{bottom:390.154667pt;}
.y7a{bottom:390.160000pt;}
.y119{bottom:390.666667pt;}
.y136{bottom:391.754667pt;}
.yb7{bottom:394.416000pt;}
.y56{bottom:397.098667pt;}
.y26{bottom:398.160000pt;}
.y178{bottom:399.466667pt;}
.y1af{bottom:406.400000pt;}
.y117{bottom:410.666667pt;}
.yfe{bottom:410.677333pt;}
.y148{bottom:410.682667pt;}
.y79{bottom:410.688000pt;}
.y135{bottom:412.554667pt;}
.ye4{bottom:413.760133pt;}
.yb6{bottom:414.944000pt;}
.y177{bottom:416.800000pt;}
.y55{bottom:417.626667pt;}
.y25{bottom:418.960000pt;}
.ye6{bottom:420.573467pt;}
.y1ae{bottom:423.733333pt;}
.yea{bottom:427.386800pt;}
.y116{bottom:431.466667pt;}
.yfd{bottom:431.477333pt;}
.y147{bottom:431.482667pt;}
.y78{bottom:431.488000pt;}
.y134{bottom:433.082667pt;}
.ye8{bottom:433.213467pt;}
.y176{bottom:434.133333pt;}
.yed{bottom:435.653467pt;}
.yb5{bottom:435.744000pt;}
.y54{bottom:438.426667pt;}
.y24{bottom:439.488000pt;}
.y1ad{bottom:441.066667pt;}
.y175{bottom:451.466667pt;}
.yfc{bottom:452.277333pt;}
.y115{bottom:452.282667pt;}
.y77{bottom:452.288000pt;}
.ye9{bottom:453.173467pt;}
.y133{bottom:453.882667pt;}
.yb4{bottom:456.272000pt;}
.y1ac{bottom:458.133333pt;}
.y53{bottom:458.954667pt;}
.y23{bottom:460.288000pt;}
.yee{bottom:466.512533pt;}
.y174{bottom:468.533333pt;}
.yfb{bottom:472.805333pt;}
.y114{bottom:472.810667pt;}
.y76{bottom:472.816000pt;}
.y132{bottom:474.682667pt;}
.y1ab{bottom:475.466667pt;}
.yb3{bottom:477.072000pt;}
.y52{bottom:479.754667pt;}
.y22{bottom:481.088000pt;}
.y173{bottom:485.866667pt;}
.y1aa{bottom:492.800000pt;}
.yfa{bottom:493.605333pt;}
.y113{bottom:493.610667pt;}
.y75{bottom:493.616000pt;}
.y131{bottom:495.210667pt;}
.yb2{bottom:497.872000pt;}
.y51{bottom:500.554667pt;}
.y21{bottom:501.616000pt;}
.yec{bottom:502.626800pt;}
.y172{bottom:503.200000pt;}
.y1a9{bottom:510.133333pt;}
.ye7{bottom:513.480133pt;}
.yf9{bottom:514.133333pt;}
.y112{bottom:514.138667pt;}
.y74{bottom:514.144000pt;}
.y130{bottom:516.010667pt;}
.yb1{bottom:518.400000pt;}
.y171{bottom:520.266667pt;}
.y50{bottom:521.082667pt;}
.ye5{bottom:521.760133pt;}
.y20{bottom:522.416000pt;}
.yeb{bottom:525.653467pt;}
.y1a8{bottom:527.200000pt;}
.yf8{bottom:534.933333pt;}
.y111{bottom:534.938667pt;}
.y73{bottom:534.944000pt;}
.y12f{bottom:536.810667pt;}
.y170{bottom:537.600000pt;}
.yb0{bottom:539.200000pt;}
.y4f{bottom:541.882667pt;}
.y1f{bottom:543.216000pt;}
.y1a7{bottom:544.533333pt;}
.yf7{bottom:554.133333pt;}
.y16f{bottom:554.933333pt;}
.y110{bottom:555.738667pt;}
.y72{bottom:555.744000pt;}
.y12e{bottom:557.338667pt;}
.yaf{bottom:558.400000pt;}
.y1a6{bottom:561.866667pt;}
.y4e{bottom:562.682667pt;}
.y1e{bottom:563.744000pt;}
.yf6{bottom:569.642667pt;}
.y16e{bottom:572.000000pt;}
.yae{bottom:572.800000pt;}
.y10f{bottom:576.266667pt;}
.y71{bottom:576.272000pt;}
.y12d{bottom:578.138667pt;}
.y1a5{bottom:578.933333pt;}
.yda{bottom:581.600000pt;}
.y4d{bottom:583.210667pt;}
.y1d{bottom:584.544000pt;}
.y16d{bottom:589.333333pt;}
.yad{bottom:590.133333pt;}
.yf5{bottom:590.170667pt;}
.y1a4{bottom:596.266667pt;}
.y10e{bottom:597.066667pt;}
.y70{bottom:597.072000pt;}
.yd9{bottom:597.088000pt;}
.y12c{bottom:598.938667pt;}
.y4c{bottom:604.010667pt;}
.y1c{bottom:605.344000pt;}
.y16c{bottom:606.666667pt;}
.yac{bottom:607.466667pt;}
.yf4{bottom:610.970667pt;}
.y1a3{bottom:613.600000pt;}
.y10d{bottom:616.266667pt;}
.y146{bottom:617.866667pt;}
.y6f{bottom:617.872000pt;}
.yd8{bottom:617.888000pt;}
.y12b{bottom:619.466667pt;}
.y16b{bottom:624.000000pt;}
.yab{bottom:624.800000pt;}
.y4b{bottom:624.810667pt;}
.y1b{bottom:625.872000pt;}
.y1a2{bottom:630.666667pt;}
.yf3{bottom:631.498667pt;}
.y145{bottom:636.800000pt;}
.y6e{bottom:638.400000pt;}
.yd7{bottom:638.416000pt;}
.ya5{bottom:638.933333pt;}
.y12a{bottom:639.733333pt;}
.y16a{bottom:641.066667pt;}
.y4a{bottom:645.338667pt;}
.y1a{bottom:646.672000pt;}
.y1a1{bottom:648.000000pt;}
.yf2{bottom:652.298667pt;}
.y129{bottom:657.600000pt;}
.y169{bottom:658.400000pt;}
.y6d{bottom:659.200000pt;}
.yd6{bottom:659.216000pt;}
.ya9{bottom:660.533333pt;}
.yaa{bottom:661.865333pt;}
.y1a0{bottom:665.333333pt;}
.y49{bottom:666.138667pt;}
.y19{bottom:667.200000pt;}
.yf1{bottom:673.098667pt;}
.y168{bottom:675.733333pt;}
.y6c{bottom:678.400000pt;}
.yd5{bottom:680.016000pt;}
.ya8{bottom:680.800000pt;}
.y19f{bottom:682.666667pt;}
.y18{bottom:686.400000pt;}
.y48{bottom:686.666667pt;}
.y167{bottom:692.800000pt;}
.y6b{bottom:693.626667pt;}
.y19e{bottom:699.733333pt;}
.ya7{bottom:699.734667pt;}
.yd4{bottom:700.544000pt;}
.y17{bottom:701.066667pt;}
.y47{bottom:707.466667pt;}
.y166{bottom:710.133333pt;}
.y6a{bottom:714.426667pt;}
.y19d{bottom:717.066667pt;}
.y16{bottom:718.400000pt;}
.ya6{bottom:718.933333pt;}
.yd3{bottom:721.344000pt;}
.y165{bottom:727.466667pt;}
.y46{bottom:728.266667pt;}
.y19c{bottom:734.400000pt;}
.y15{bottom:734.666667pt;}
.y69{bottom:735.226667pt;}
.yd2{bottom:742.144000pt;}
.y164{bottom:744.533333pt;}
.y45{bottom:747.200000pt;}
.y14{bottom:749.333333pt;}
.y19b{bottom:751.466667pt;}
.y9d{bottom:753.333333pt;}
.y68{bottom:755.754667pt;}
.y163{bottom:761.866667pt;}
.y44{bottom:762.666667pt;}
.yd1{bottom:762.672000pt;}
.y13{bottom:766.666667pt;}
.y19a{bottom:768.800000pt;}
.ya4{bottom:776.529333pt;}
.ya0{bottom:776.533333pt;}
.y67{bottom:776.554667pt;}
.y162{bottom:779.200000pt;}
.y43{bottom:783.466667pt;}
.yd0{bottom:783.472000pt;}
.y12{bottom:784.533333pt;}
.y199{bottom:786.133333pt;}
.ya3{bottom:795.464000pt;}
.y9f{bottom:795.466667pt;}
.y161{bottom:796.533333pt;}
.y66{bottom:797.354667pt;}
.y42{bottom:802.400000pt;}
.y198{bottom:803.200000pt;}
.ycf{bottom:804.000000pt;}
.y11{bottom:805.333333pt;}
.y160{bottom:813.600000pt;}
.ya2{bottom:814.398667pt;}
.y41{bottom:817.882667pt;}
.y197{bottom:820.533333pt;}
.yce{bottom:824.800000pt;}
.y10{bottom:826.133333pt;}
.y15f{bottom:830.933333pt;}
.ya1{bottom:833.333333pt;}
.y196{bottom:837.866667pt;}
.y40{bottom:838.682667pt;}
.ycd{bottom:844.000000pt;}
.yf{bottom:846.666667pt;}
.y195{bottom:855.200000pt;}
.y15e{bottom:859.200000pt;}
.y3f{bottom:859.210667pt;}
.ye{bottom:868.000000pt;}
.y9b{bottom:872.000000pt;}
.y194{bottom:872.266667pt;}
.y15d{bottom:877.600000pt;}
.y3e{bottom:880.010667pt;}
.y193{bottom:889.600000pt;}
.y15c{bottom:890.405333pt;}
.y9a{bottom:890.933333pt;}
.yd{bottom:892.266667pt;}
.y3d{bottom:900.810667pt;}
.y192{bottom:906.933333pt;}
.y99{bottom:909.866667pt;}
.y15b{bottom:911.205333pt;}
.yc{bottom:916.266667pt;}
.y3c{bottom:921.338667pt;}
.y191{bottom:924.000000pt;}
.y97{bottom:928.800000pt;}
.y15a{bottom:931.733333pt;}
.yb{bottom:940.533333pt;}
.y190{bottom:941.333333pt;}
.y3b{bottom:942.138667pt;}
.y96{bottom:948.000000pt;}
.y159{bottom:952.533333pt;}
.y18f{bottom:958.666667pt;}
.y8{bottom:959.466667pt;}
.y3a{bottom:962.938667pt;}
.y98{bottom:966.933333pt;}
.y158{bottom:970.933333pt;}
.y18e{bottom:975.733333pt;}
.y6{bottom:980.800000pt;}
.y39{bottom:983.466667pt;}
.y94{bottom:985.866667pt;}
.y18d{bottom:993.066667pt;}
.y5{bottom:1003.733333pt;}
.y38{bottom:1004.266667pt;}
.y18c{bottom:1010.400000pt;}
.y3{bottom:1017.600000pt;}
.y37{bottom:1025.066667pt;}
.y18b{bottom:1027.733333pt;}
.y2{bottom:1034.933333pt;}
.y36{bottom:1052.000000pt;}
.y1{bottom:1052.266667pt;}
.h25{height:18.560000pt;}
.h1a{height:18.932000pt;}
.h19{height:18.933333pt;}
.h1d{height:19.200000pt;}
.h5{height:20.801333pt;}
.h8{height:21.332000pt;}
.h10{height:23.200000pt;}
.h4{height:27.840000pt;}
.he{height:37.120000pt;}
.h1c{height:37.866667pt;}
.h3{height:38.400000pt;}
.h2{height:39.040000pt;}
.h7{height:42.133333pt;}
.h12{height:42.944000pt;}
.hf{height:46.080000pt;}
.hd{height:46.400000pt;}
.h6{height:46.848000pt;}
.h13{height:51.040000pt;}
.h21{height:52.343750pt;}
.h24{height:53.750000pt;}
.hb{height:54.656000pt;}
.hc{height:55.680000pt;}
.h1b{height:61.187500pt;}
.h16{height:62.812500pt;}
.h9{height:64.500000pt;}
.ha{height:64.960000pt;}
.h15{height:66.750000pt;}
.h11{height:75.733333pt;}
.h23{height:93.197083pt;}
.h14{height:94.933333pt;}
.h20{height:106.850417pt;}
.h1f{height:110.400000pt;}
.h22{height:112.663750pt;}
.h18{height:113.866667pt;}
.h17{height:151.733333pt;}
.h1e{height:385.865333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:22.398667pt;}
.wb{width:38.666667pt;}
.w9{width:61.600000pt;}
.w6{width:80.266667pt;}
.w8{width:90.666667pt;}
.w7{width:99.466667pt;}
.w4{width:113.333333pt;}
.w3{width:113.600000pt;}
.wd{width:133.066667pt;}
.wf{width:139.466667pt;}
.w11{width:170.666667pt;}
.w10{width:189.600000pt;}
.wa{width:278.666667pt;}
.w2{width:425.066667pt;}
.wc{width:459.466667pt;}
.we{width:631.200000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x23{left:9.333333pt;}
.x18{left:11.200000pt;}
.x20{left:15.200000pt;}
.x34{left:18.400000pt;}
.x3a{left:24.000000pt;}
.x37{left:26.400000pt;}
.x56{left:27.466667pt;}
.x5a{left:30.666667pt;}
.x54{left:32.000000pt;}
.x4e{left:34.666667pt;}
.x36{left:44.266667pt;}
.x59{left:48.000000pt;}
.x5b{left:49.333333pt;}
.x58{left:52.000000pt;}
.x32{left:53.866667pt;}
.x57{left:56.000000pt;}
.x2a{left:59.733333pt;}
.x51{left:62.933333pt;}
.x3{left:70.933333pt;}
.x1{left:81.333333pt;}
.x15{left:85.066667pt;}
.x33{left:88.533333pt;}
.x3c{left:90.400000pt;}
.x3e{left:97.600000pt;}
.x3d{left:98.933333pt;}
.x5c{left:100.266667pt;}
.x25{left:103.733333pt;}
.x4b{left:106.149333pt;}
.x8{left:109.333333pt;}
.x6{left:111.200000pt;}
.x5d{left:114.666667pt;}
.x19{left:115.733333pt;}
.x2f{left:120.000000pt;}
.x1a{left:126.396000pt;}
.x14{left:128.533333pt;}
.x30{left:148.266667pt;}
.x2d{left:149.605333pt;}
.xe{left:153.333333pt;}
.x41{left:157.129200pt;}
.x12{left:159.461333pt;}
.x9{left:165.066667pt;}
.x45{left:177.409200pt;}
.x26{left:203.200000pt;}
.x13{left:204.277333pt;}
.xf{left:209.600000pt;}
.x3b{left:216.533333pt;}
.x1b{left:217.593333pt;}
.x4d{left:220.800000pt;}
.xb{left:226.933333pt;}
.x1c{left:230.118667pt;}
.xd{left:234.933333pt;}
.xc{left:240.533333pt;}
.xa{left:269.333333pt;}
.x27{left:293.866667pt;}
.x3f{left:296.533333pt;}
.x1e{left:302.924000pt;}
.x1d{left:311.724000pt;}
.x2e{left:317.349333pt;}
.x4f{left:319.200000pt;}
.x46{left:326.569200pt;}
.x10{left:332.533333pt;}
.x50{left:353.866667pt;}
.x1f{left:355.466667pt;}
.x2c{left:362.666667pt;}
.x22{left:366.406667pt;}
.x42{left:370.289200pt;}
.x21{left:389.066667pt;}
.x47{left:390.569200pt;}
.x2{left:396.800000pt;}
.x11{left:399.466667pt;}
.x4c{left:409.333333pt;}
.x40{left:415.733333pt;}
.x16{left:420.533333pt;}
.x28{left:435.733333pt;}
.x29{left:442.933333pt;}
.x52{left:480.533333pt;}
.x5{left:496.000000pt;}
.x43{left:513.995867pt;}
.x48{left:529.209200pt;}
.x53{left:543.466667pt;}
.x24{left:551.466667pt;}
.x2b{left:575.466667pt;}
.x31{left:579.466667pt;}
.x4a{left:589.772400pt;}
.x7{left:609.600000pt;}
.x38{left:618.666667pt;}
.x35{left:633.332000pt;}
.x39{left:641.066667pt;}
.x44{left:654.502533pt;}
.x17{left:663.733333pt;}
.x49{left:679.862533pt;}
.x55{left:682.133333pt;}
}




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