
    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_aa56e747be80b5f3be674c86.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_0684b3a874abcb4428611815.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e827fa0069a16da62071074f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e415f574e8725d8d818294ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.856934;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_b6253acf9329bb4c150ed1ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.844238;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_623782dad74becdf69e554b4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_e4f781c93e93234a893bb5fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885742;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.688000px;}
.v1{vertical-align:27.360000px;}
.ls40{letter-spacing:-2.160000px;}
.ls72{letter-spacing:-1.792800px;}
.ls71{letter-spacing:-1.656000px;}
.ls51{letter-spacing:-1.512000px;}
.ls3f{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.404000px;}
.lsf{letter-spacing:-1.242000px;}
.ls35{letter-spacing:-1.135440px;}
.ls55{letter-spacing:-1.126080px;}
.lse{letter-spacing:-1.080000px;}
.ls41{letter-spacing:-1.075680px;}
.ls60{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.936000px;}
.ls77{letter-spacing:-0.792000px;}
.ls65{letter-spacing:-0.728640px;}
.ls32{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.648000px;}
.ls54{letter-spacing:-0.596160px;}
.ls70{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.537840px;}
.ls46{letter-spacing:-0.504000px;}
.ls68{letter-spacing:-0.463680px;}
.ls79{letter-spacing:-0.432000px;}
.ls67{letter-spacing:-0.397440px;}
.ls11{letter-spacing:-0.378000px;}
.ls19{letter-spacing:-0.358560px;}
.ls30{letter-spacing:-0.341280px;}
.ls66{letter-spacing:-0.331200px;}
.ls20{letter-spacing:-0.324000px;}
.ls24{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.239040px;}
.ls1e{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.144000px;}
.ls78{letter-spacing:-0.132480px;}
.ls5f{letter-spacing:-0.119520px;}
.ls1f{letter-spacing:-0.108000px;}
.ls13{letter-spacing:-0.095760px;}
.ls4e{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.059760px;}
.ls23{letter-spacing:-0.056880px;}
.ls21{letter-spacing:-0.054000px;}
.lsd{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.054000px;}
.ls1b{letter-spacing:0.059760px;}
.ls33{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.095760px;}
.ls16{letter-spacing:0.119520px;}
.ls53{letter-spacing:0.132480px;}
.ls3e{letter-spacing:0.137448px;}
.ls26{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.162000px;}
.ls29{letter-spacing:0.170640px;}
.ls7{letter-spacing:0.172800px;}
.ls5{letter-spacing:0.173304px;}
.ls3{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.227520px;}
.ls6{letter-spacing:0.239040px;}
.ls6d{letter-spacing:0.264960px;}
.ls58{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.324000px;}
.ls52{letter-spacing:0.331200px;}
.ls4{letter-spacing:0.358560px;}
.ls2b{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.383040px;}
.ls76{letter-spacing:0.385920px;}
.ls45{letter-spacing:0.432000px;}
.ls4b{letter-spacing:0.504000px;}
.ls73{letter-spacing:0.511200px;}
.ls5b{letter-spacing:0.576000px;}
.ls61{letter-spacing:0.596160px;}
.ls47{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.756000px;}
.ls4f{letter-spacing:0.836640px;}
.ls69{letter-spacing:0.864000px;}
.ls74{letter-spacing:1.152000px;}
.ls3a{letter-spacing:1.440000px;}
.ls38{letter-spacing:2.160000px;}
.ls44{letter-spacing:2.880000px;}
.lsb{letter-spacing:2.916000px;}
.ls50{letter-spacing:3.576960px;}
.ls4c{letter-spacing:3.592800px;}
.ls2c{letter-spacing:3.600000px;}
.ls62{letter-spacing:4.312800px;}
.ls3c{letter-spacing:4.320000px;}
.ls3d{letter-spacing:5.040000px;}
.ls6e{letter-spacing:5.047200px;}
.lsc{letter-spacing:5.076000px;}
.ls2d{letter-spacing:5.760000px;}
.ls28{letter-spacing:6.480000px;}
.ls5e{letter-spacing:7.200000px;}
.ls5c{letter-spacing:7.920000px;}
.ls2e{letter-spacing:8.640000px;}
.ls57{letter-spacing:8.647200px;}
.ls42{letter-spacing:9.360000px;}
.ls4d{letter-spacing:10.080000px;}
.ls39{letter-spacing:10.800000px;}
.ls2a{letter-spacing:11.520000px;}
.ls37{letter-spacing:12.240000px;}
.ls3b{letter-spacing:12.960000px;}
.ls56{letter-spacing:13.680000px;}
.ls27{letter-spacing:14.400000px;}
.ls6c{letter-spacing:15.120000px;}
.ls6f{letter-spacing:15.840000px;}
.ls6a{letter-spacing:16.560000px;}
.ls6b{letter-spacing:17.280000px;}
.ls7d{letter-spacing:18.000000px;}
.ls5d{letter-spacing:18.686304px;}
.ls75{letter-spacing:18.720000px;}
.ls59{letter-spacing:20.160000px;}
.ls43{letter-spacing:22.320000px;}
.ls63{letter-spacing:23.040000px;}
.ls64{letter-spacing:23.760000px;}
.ls48{letter-spacing:26.640000px;}
.ls7e{letter-spacing:28.800000px;}
.ls7f{letter-spacing:30.240000px;}
.ls4a{letter-spacing:30.960000px;}
.ls7c{letter-spacing:33.120000px;}
.ls5a{letter-spacing:34.560000px;}
.ls49{letter-spacing:38.880000px;}
.ls7a{letter-spacing:58.327200px;}
.ls7b{letter-spacing:59.760000px;}
.ls36{letter-spacing:733.852800px;}
.ls25{letter-spacing:1494.896400px;}
.ls0{letter-spacing:1748.358000px;}
.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;}
}
.ws110{word-spacing:-19.152000px;}
.wsc7{word-spacing:-18.720000px;}
.ws11d{word-spacing:-18.504000px;}
.wsc6{word-spacing:-18.288000px;}
.ws73{word-spacing:-18.144000px;}
.ws47{word-spacing:-18.072000px;}
.ws45{word-spacing:-18.000000px;}
.ws9e{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.wsc8{word-spacing:-17.784000px;}
.ws43{word-spacing:-17.712000px;}
.ws11f{word-spacing:-17.568000px;}
.wse6{word-spacing:-17.156160px;}
.ws44{word-spacing:-17.064000px;}
.wsd8{word-spacing:-16.891200px;}
.wsb3{word-spacing:-16.692480px;}
.wsb4{word-spacing:-16.560000px;}
.wsb2{word-spacing:-16.488000px;}
.ws11e{word-spacing:-16.427520px;}
.wsff{word-spacing:-16.344000px;}
.wsf3{word-spacing:-16.228800px;}
.wsf4{word-spacing:-16.162560px;}
.wsf6{word-spacing:-16.096320px;}
.wsf1{word-spacing:-15.963840px;}
.ws120{word-spacing:-15.840000px;}
.wsf2{word-spacing:-15.831360px;}
.wsd9{word-spacing:-15.776640px;}
.wsf5{word-spacing:-15.433920px;}
.ws8{word-spacing:-15.298560px;}
.wsb{word-spacing:-15.179040px;}
.wsa{word-spacing:-15.059520px;}
.ws7{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.880240px;}
.wsda{word-spacing:-14.820480px;}
.ws6{word-spacing:-14.700960px;}
.ws9{word-spacing:-14.581440px;}
.ws46{word-spacing:-14.447520px;}
.ws135{word-spacing:-14.390640px;}
.ws12{word-spacing:-14.163120px;}
.ws49{word-spacing:-13.804560px;}
.ws2{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.500000px;}
.ws100{word-spacing:-13.147200px;}
.ws3{word-spacing:-13.122000px;}
.ws10{word-spacing:-12.528000px;}
.ws112{word-spacing:-12.445920px;}
.wsd{word-spacing:-12.366000px;}
.wsf{word-spacing:-12.258000px;}
.wse{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.096000px;}
.wsc{word-spacing:-12.042000px;}
.ws11{word-spacing:-11.988000px;}
.ws106{word-spacing:-10.440000px;}
.ws48{word-spacing:-9.720000px;}
.ws121{word-spacing:-4.464000px;}
.ws88{word-spacing:-4.320000px;}
.wsfb{word-spacing:-4.032000px;}
.ws89{word-spacing:-3.764880px;}
.ws10c{word-spacing:-3.744000px;}
.wsc4{word-spacing:-3.709440px;}
.ws61{word-spacing:-3.600000px;}
.wsc5{word-spacing:-3.576960px;}
.ws8a{word-spacing:-3.525840px;}
.ws62{word-spacing:-3.312000px;}
.wsdc{word-spacing:-3.024000px;}
.wsa9{word-spacing:-2.880000px;}
.wse2{word-spacing:-2.848320px;}
.wscd{word-spacing:-2.664000px;}
.wsa8{word-spacing:-2.592000px;}
.ws20{word-spacing:-2.330640px;}
.wsba{word-spacing:-2.318400px;}
.ws82{word-spacing:-2.304000px;}
.ws32{word-spacing:-2.160000px;}
.ws31{word-spacing:-1.998000px;}
.ws3e{word-spacing:-1.944000px;}
.ws33{word-spacing:-1.890000px;}
.ws70{word-spacing:-1.872000px;}
.ws30{word-spacing:-1.836000px;}
.ws21{word-spacing:-1.733040px;}
.wscf{word-spacing:-1.584000px;}
.ws17{word-spacing:-1.532160px;}
.ws4e{word-spacing:-1.440000px;}
.wsab{word-spacing:-1.434240px;}
.wsaa{word-spacing:-1.374480px;}
.wsd2{word-spacing:-1.296000px;}
.ws2b{word-spacing:-1.188000px;}
.ws4a{word-spacing:-1.152000px;}
.wsb1{word-spacing:-0.896400px;}
.ws5c{word-spacing:-0.864000px;}
.wsf0{word-spacing:-0.861120px;}
.wsac{word-spacing:-0.836640px;}
.wsb9{word-spacing:-0.728640px;}
.ws51{word-spacing:-0.720000px;}
.wsaf{word-spacing:-0.657360px;}
.ws133{word-spacing:-0.648000px;}
.wsd7{word-spacing:-0.576000px;}
.ws11a{word-spacing:-0.504000px;}
.ws52{word-spacing:-0.432000px;}
.ws1b{word-spacing:-0.358560px;}
.wsb7{word-spacing:-0.331200px;}
.wsb0{word-spacing:-0.298800px;}
.wsd1{word-spacing:-0.284400px;}
.wsfc{word-spacing:-0.264960px;}
.ws74{word-spacing:-0.216000px;}
.ws1e{word-spacing:-0.179280px;}
.ws14{word-spacing:-0.162000px;}
.ws67{word-spacing:-0.144000px;}
.wsb8{word-spacing:-0.132480px;}
.wsad{word-spacing:-0.119520px;}
.wsfe{word-spacing:-0.072000px;}
.wsb5{word-spacing:-0.056880px;}
.ws2f{word-spacing:-0.054000px;}
.ws13{word-spacing:0.000000px;}
.ws3a{word-spacing:0.054000px;}
.ws1a{word-spacing:0.059760px;}
.wsa0{word-spacing:0.072000px;}
.ws18{word-spacing:0.095760px;}
.ws9b{word-spacing:0.144000px;}
.ws2e{word-spacing:0.162000px;}
.ws34{word-spacing:0.216000px;}
.wse7{word-spacing:0.227520px;}
.ws28{word-spacing:0.239040px;}
.ws2c{word-spacing:0.270000px;}
.ws56{word-spacing:0.288000px;}
.ws2d{word-spacing:0.324000px;}
.ws5f{word-spacing:0.341280px;}
.ws10d{word-spacing:0.358560px;}
.ws39{word-spacing:0.378000px;}
.wsae{word-spacing:0.418320px;}
.ws115{word-spacing:0.463680px;}
.ws60{word-spacing:0.511920px;}
.ws1f{word-spacing:0.537840px;}
.ws53{word-spacing:0.576000px;}
.ws6e{word-spacing:0.648000px;}
.ws54{word-spacing:0.720000px;}
.ws10b{word-spacing:0.728640px;}
.ws1d{word-spacing:0.776880px;}
.ws11b{word-spacing:0.792000px;}
.ws1c{word-spacing:0.956160px;}
.ws69{word-spacing:1.008000px;}
.ws8b{word-spacing:1.075680px;}
.ws16{word-spacing:1.080000px;}
.ws15{word-spacing:1.242000px;}
.ws10f{word-spacing:1.254960px;}
.ws97{word-spacing:1.296000px;}
.ws38{word-spacing:1.404000px;}
.ws55{word-spacing:1.440000px;}
.ws37{word-spacing:1.674000px;}
.ws19{word-spacing:1.723680px;}
.ws81{word-spacing:1.728000px;}
.ws10e{word-spacing:1.792800px;}
.ws96{word-spacing:1.944000px;}
.ws7e{word-spacing:2.016000px;}
.ws5b{word-spacing:2.160000px;}
.ws7d{word-spacing:2.304000px;}
.ws36{word-spacing:2.430000px;}
.ws5a{word-spacing:2.448000px;}
.ws35{word-spacing:2.484000px;}
.ws23{word-spacing:2.689200px;}
.ws75{word-spacing:2.736000px;}
.ws4b{word-spacing:2.880000px;}
.ws24{word-spacing:3.107520px;}
.ws3b{word-spacing:3.132000px;}
.ws4c{word-spacing:3.168000px;}
.ws3c{word-spacing:3.186000px;}
.wsc1{word-spacing:3.444480px;}
.ws65{word-spacing:3.456000px;}
.ws117{word-spacing:3.576960px;}
.ws42{word-spacing:3.600000px;}
.ws41{word-spacing:3.888000px;}
.ws111{word-spacing:4.176000px;}
.wsc3{word-spacing:4.305600px;}
.ws66{word-spacing:4.320000px;}
.ws87{word-spacing:4.608000px;}
.wsc2{word-spacing:4.703040px;}
.ws79{word-spacing:4.896000px;}
.ws116{word-spacing:4.901760px;}
.wsbb{word-spacing:5.034240px;}
.ws4f{word-spacing:5.040000px;}
.ws101{word-spacing:5.112000px;}
.ws3d{word-spacing:5.184000px;}
.ws2a{word-spacing:5.292000px;}
.ws50{word-spacing:5.328000px;}
.ws29{word-spacing:5.346000px;}
.wscc{word-spacing:5.616000px;}
.ws6b{word-spacing:5.760000px;}
.ws126{word-spacing:5.976000px;}
.ws6c{word-spacing:6.048000px;}
.ws119{word-spacing:6.336000px;}
.wsbd{word-spacing:6.359040px;}
.ws5e{word-spacing:6.480000px;}
.wsbe{word-spacing:6.491520px;}
.wse8{word-spacing:6.552000px;}
.ws5d{word-spacing:6.768000px;}
.wsf7{word-spacing:6.984000px;}
.wse4{word-spacing:7.056000px;}
.ws8c{word-spacing:7.200000px;}
.ws105{word-spacing:7.344000px;}
.wsb6{word-spacing:7.488000px;}
.wsdb{word-spacing:7.776000px;}
.wsc0{word-spacing:7.816320px;}
.ws8d{word-spacing:7.920000px;}
.wse3{word-spacing:7.948800px;}
.ws8e{word-spacing:8.208000px;}
.ws6f{word-spacing:8.496000px;}
.ws118{word-spacing:8.611200px;}
.wsa7{word-spacing:8.640000px;}
.wse5{word-spacing:8.928000px;}
.ws103{word-spacing:9.216000px;}
.ws102{word-spacing:9.360000px;}
.ws95{word-spacing:9.648000px;}
.ws114{word-spacing:9.936000px;}
.ws7f{word-spacing:10.080000px;}
.ws6a{word-spacing:10.368000px;}
.ws72{word-spacing:10.656000px;}
.ws7c{word-spacing:10.800000px;}
.ws109{word-spacing:10.944000px;}
.ws10a{word-spacing:11.016000px;}
.ws71{word-spacing:11.088000px;}
.wsea{word-spacing:11.376000px;}
.ws63{word-spacing:11.520000px;}
.ws64{word-spacing:11.808000px;}
.ws78{word-spacing:12.096000px;}
.ws7b{word-spacing:12.240000px;}
.wse1{word-spacing:12.254400px;}
.ws77{word-spacing:12.528000px;}
.ws83{word-spacing:12.816000px;}
.ws40{word-spacing:12.960000px;}
.ws3f{word-spacing:13.248000px;}
.wsc9{word-spacing:13.536000px;}
.wsbc{word-spacing:13.579200px;}
.ws84{word-spacing:13.680000px;}
.ws85{word-spacing:13.968000px;}
.ws57{word-spacing:14.400000px;}
.ws6d{word-spacing:14.688000px;}
.wsfd{word-spacing:15.408000px;}
.ws137{word-spacing:15.696000px;}
.ws92{word-spacing:15.840000px;}
.ws104{word-spacing:16.128000px;}
.wsfa{word-spacing:16.416000px;}
.ws9c{word-spacing:16.560000px;}
.ws9d{word-spacing:16.848000px;}
.wscb{word-spacing:17.280000px;}
.ws25{word-spacing:17.330400px;}
.ws26{word-spacing:17.390160px;}
.ws136{word-spacing:17.424000px;}
.ws4d{word-spacing:17.568000px;}
.ws134{word-spacing:17.856000px;}
.wsd5{word-spacing:18.000000px;}
.ws91{word-spacing:18.288000px;}
.ws27{word-spacing:18.406080px;}
.wsec{word-spacing:18.576000px;}
.ws9a{word-spacing:18.720000px;}
.wse0{word-spacing:18.745920px;}
.wseb{word-spacing:18.864000px;}
.ws99{word-spacing:19.008000px;}
.ws93{word-spacing:19.440000px;}
.ws94{word-spacing:19.728000px;}
.wsed{word-spacing:19.944000px;}
.wsd4{word-spacing:20.160000px;}
.wsd3{word-spacing:20.448000px;}
.ws12a{word-spacing:20.736000px;}
.ws12b{word-spacing:20.808000px;}
.wsef{word-spacing:20.880000px;}
.wsee{word-spacing:21.168000px;}
.ws98{word-spacing:21.456000px;}
.ws68{word-spacing:21.600000px;}
.wse9{word-spacing:21.888000px;}
.wsf9{word-spacing:22.320000px;}
.ws80{word-spacing:22.608000px;}
.ws11c{word-spacing:22.896000px;}
.wsf8{word-spacing:23.040000px;}
.ws86{word-spacing:23.328000px;}
.wsa3{word-spacing:23.616000px;}
.wsa4{word-spacing:23.760000px;}
.wsbf{word-spacing:23.780160px;}
.wsd0{word-spacing:24.048000px;}
.wsa5{word-spacing:24.336000px;}
.ws90{word-spacing:24.480000px;}
.ws8f{word-spacing:24.768000px;}
.ws108{word-spacing:25.920000px;}
.wsd6{word-spacing:26.208000px;}
.ws9f{word-spacing:26.640000px;}
.wsca{word-spacing:26.928000px;}
.ws129{word-spacing:28.800000px;}
.ws58{word-spacing:29.520000px;}
.ws59{word-spacing:29.808000px;}
.wsce{word-spacing:30.240000px;}
.ws138{word-spacing:30.528000px;}
.wsa6{word-spacing:31.248000px;}
.ws127{word-spacing:31.536000px;}
.ws128{word-spacing:31.968000px;}
.wsdd{word-spacing:32.400000px;}
.ws131{word-spacing:33.120000px;}
.ws132{word-spacing:33.408000px;}
.ws107{word-spacing:34.560000px;}
.ws76{word-spacing:34.848000px;}
.ws12d{word-spacing:35.136000px;}
.ws12c{word-spacing:35.280000px;}
.ws12e{word-spacing:35.568000px;}
.wsdf{word-spacing:38.160000px;}
.wsde{word-spacing:38.448000px;}
.wsa1{word-spacing:38.736000px;}
.wsa2{word-spacing:38.880000px;}
.ws113{word-spacing:39.600000px;}
.ws124{word-spacing:49.680000px;}
.ws122{word-spacing:49.968000px;}
.ws123{word-spacing:50.688000px;}
.ws125{word-spacing:58.608000px;}
.ws130{word-spacing:59.760000px;}
.ws12f{word-spacing:60.048000px;}
.ws7a{word-spacing:64.080000px;}
.ws139{word-spacing:90.720000px;}
.ws22{word-spacing:115.755120px;}
._1e{margin-left:-23.688000px;}
._11{margin-left:-11.044800px;}
._d{margin-left:-8.136000px;}
._13{margin-left:-4.233600px;}
._2{margin-left:-2.277144px;}
._0{margin-left:-1.188000px;}
._1{width:1.706400px;}
._5{width:2.721600px;}
._4{width:4.341600px;}
._10{width:5.349600px;}
._18{width:6.732000px;}
._14{width:7.740000px;}
._c{width:8.784000px;}
._20{width:10.055088px;}
._a{width:11.059200px;}
._f{width:12.096000px;}
._b{width:13.687200px;}
._7{width:14.688000px;}
._6{width:16.423200px;}
._16{width:19.008000px;}
._9{width:20.736000px;}
._1d{width:22.053600px;}
._19{width:23.544000px;}
._1f{width:24.552000px;}
._15{width:26.078400px;}
._1a{width:27.455544px;}
._8{width:29.556000px;}
._17{width:31.557600px;}
._1b{width:33.120000px;}
._1c{width:38.973600px;}
._21{width:58.939200px;}
._12{width:63.432000px;}
._3{width:115.652160px;}
._e{width:243.378000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:45.720000px;}
.y2{bottom:61.380000px;}
.y6e{bottom:97.193700px;}
.y179{bottom:98.460000px;}
.y93{bottom:98.640000px;}
.y4e{bottom:102.420000px;}
.y9a{bottom:104.040000px;}
.y1d1{bottom:107.640000px;}
.yf7{bottom:110.340000px;}
.y29{bottom:113.940000px;}
.y62{bottom:114.294420px;}
.y4d{bottom:114.300000px;}
.yd4{bottom:114.318000px;}
.y110{bottom:116.280000px;}
.y18e{bottom:117.720000px;}
.y178{bottom:119.160000px;}
.y92{bottom:119.340000px;}
.y6d{bottom:119.520000px;}
.y99{bottom:124.740000px;}
.y1d0{bottom:128.340000px;}
.y8f{bottom:130.729680px;}
.yf6{bottom:131.040000px;}
.y6c{bottom:131.574420px;}
.y115{bottom:131.580000px;}
.yd3{bottom:133.212960px;}
.y28{bottom:134.640000px;}
.y134{bottom:135.005040px;}
.y61{bottom:136.800000px;}
.y10f{bottom:136.980000px;}
.y18d{bottom:138.420000px;}
.y91{bottom:140.040000px;}
.y15a{bottom:140.405040px;}
.y69{bottom:145.440000px;}
.y60{bottom:148.860000px;}
.y8e{bottom:149.806800px;}
.y1b7{bottom:149.940000px;}
.yf5{bottom:151.740000px;}
.yd2{bottom:152.290080px;}
.y114{bottom:153.007770px;}
.y133{bottom:153.900000px;}
.y6b{bottom:154.080000px;}
.y27{bottom:155.340000px;}
.y10e{bottom:157.680000px;}
.y177{bottom:157.698000px;}
.y18c{bottom:159.120000px;}
.y159{bottom:159.300000px;}
.y90{bottom:160.740000px;}
.y6a{bottom:166.139850px;}
.y4c{bottom:166.140000px;}
.y1cf{bottom:167.040000px;}
.y8d{bottom:168.701760px;}
.y1b6{bottom:170.640000px;}
.yd1{bottom:171.185040px;}
.y113{bottom:171.902730px;}
.yf4{bottom:172.440000px;}
.yb0{bottom:174.780000px;}
.y176{bottom:176.592960px;}
.y10d{bottom:178.380000px;}
.y18b{bottom:179.820000px;}
.y5f{bottom:181.440000px;}
.y144{bottom:184.320000px;}
.y4b{bottom:186.840000px;}
.y8c{bottom:187.778880px;}
.yd0{bottom:190.080000px;}
.y112{bottom:190.979850px;}
.y132{bottom:191.160000px;}
.y1b5{bottom:191.340000px;}
.yf3{bottom:193.140000px;}
.y26{bottom:193.680000px;}
.yaf{bottom:195.480000px;}
.y175{bottom:195.487920px;}
.y158{bottom:196.560000px;}
.y19b{bottom:199.080000px;}
.y18a{bottom:200.520000px;}
.y5e{bottom:202.140000px;}
.y143{bottom:205.020000px;}
.y1ce{bottom:205.740000px;}
.y8b{bottom:206.673840px;}
.y4a{bottom:207.540000px;}
.y131{bottom:211.860000px;}
.y1b4{bottom:212.040000px;}
.yf2{bottom:213.840000px;}
.y174{bottom:214.565040px;}
.yae{bottom:216.180000px;}
.y10c{bottom:216.756720px;}
.y157{bottom:217.260000px;}
.y189{bottom:221.220000px;}
.y5d{bottom:222.840000px;}
.y142{bottom:225.720000px;}
.y8a{bottom:225.750960px;}
.y1cd{bottom:226.440000px;}
.ycf{bottom:227.340000px;}
.y49{bottom:228.240000px;}
.y1b3{bottom:232.740000px;}
.y173{bottom:233.460000px;}
.yf1{bottom:234.540000px;}
.y10b{bottom:235.833840px;}
.yad{bottom:236.880000px;}
.y19a{bottom:237.461760px;}
.y25{bottom:237.960000px;}
.y188{bottom:241.920000px;}
.y5c{bottom:243.540000px;}
.y89{bottom:244.645920px;}
.y141{bottom:246.420000px;}
.yce{bottom:248.040000px;}
.y48{bottom:248.940000px;}
.y130{bottom:250.410960px;}
.y1b2{bottom:253.440000px;}
.y24{bottom:254.506500px;}
.y10a{bottom:254.728800px;}
.yf0{bottom:255.240000px;}
.y199{bottom:256.538880px;}
.yac{bottom:257.580000px;}
.y156{bottom:258.660000px;}
.y187{bottom:262.620000px;}
.y88{bottom:263.540880px;}
.y5b{bottom:264.240000px;}
.y1cc{bottom:265.140000px;}
.y140{bottom:267.120000px;}
.y12f{bottom:269.305920px;}
.y47{bottom:269.640000px;}
.y172{bottom:270.720000px;}
.y23{bottom:271.071000px;}
.y109{bottom:273.805920px;}
.y1b1{bottom:274.140000px;}
.y198{bottom:275.433840px;}
.yef{bottom:275.940000px;}
.yab{bottom:278.280000px;}
.y155{bottom:279.360000px;}
.y87{bottom:282.618000px;}
.y186{bottom:283.320000px;}
.y5a{bottom:284.940000px;}
.y1cb{bottom:285.840000px;}
.ycd{bottom:286.596720px;}
.y22{bottom:287.446500px;}
.y13f{bottom:287.820000px;}
.y12e{bottom:288.200880px;}
.y46{bottom:290.340000px;}
.y171{bottom:291.420000px;}
.y108{bottom:292.700880px;}
.y197{bottom:294.510960px;}
.y1b0{bottom:294.840000px;}
.yee{bottom:296.640000px;}
.yaa{bottom:298.980000px;}
.y154{bottom:300.060000px;}
.y86{bottom:301.512960px;}
.y21{bottom:304.011000px;}
.y185{bottom:304.020000px;}
.ycc{bottom:305.491680px;}
.y59{bottom:305.640000px;}
.y1ca{bottom:306.540000px;}
.y12d{bottom:307.278000px;}
.y13e{bottom:308.520000px;}
.y45{bottom:311.040000px;}
.y107{bottom:311.595840px;}
.y170{bottom:312.120000px;}
.y196{bottom:313.405920px;}
.y1af{bottom:315.540000px;}
.yed{bottom:317.340000px;}
.ya9{bottom:319.680000px;}
.y20{bottom:320.386500px;}
.y85{bottom:320.590080px;}
.ycb{bottom:324.568800px;}
.y184{bottom:324.720000px;}
.y12c{bottom:326.172960px;}
.y58{bottom:326.340000px;}
.y13d{bottom:329.220000px;}
.y106{bottom:330.672960px;}
.y44{bottom:331.740000px;}
.y195{bottom:332.300880px;}
.y16f{bottom:332.820000px;}
.y1ae{bottom:336.240000px;}
.y1f{bottom:336.951000px;}
.yec{bottom:338.040000px;}
.y153{bottom:338.592960px;}
.y84{bottom:339.485040px;}
.ya8{bottom:340.380000px;}
.yca{bottom:343.463760px;}
.y1c9{bottom:345.240000px;}
.y12b{bottom:345.250080px;}
.y183{bottom:345.420000px;}
.y57{bottom:347.040000px;}
.y105{bottom:349.567920px;}
.y13c{bottom:349.920000px;}
.y194{bottom:351.378000px;}
.y43{bottom:352.440000px;}
.y1e{bottom:353.515500px;}
.y16e{bottom:353.520000px;}
.y152{bottom:357.487920px;}
.y83{bottom:358.380000px;}
.yeb{bottom:358.740000px;}
.ya7{bottom:360.900000px;}
.yc9{bottom:362.358720px;}
.y12a{bottom:364.145040px;}
.y1c8{bottom:365.940000px;}
.y56{bottom:367.740000px;}
.y104{bottom:368.645040px;}
.y1d{bottom:369.891000px;}
.y193{bottom:370.272960px;}
.y13b{bottom:370.620000px;}
.y42{bottom:373.140000px;}
.y16d{bottom:374.220000px;}
.y1ad{bottom:374.580000px;}
.y151{bottom:376.382880px;}
.yea{bottom:379.440000px;}
.yc8{bottom:381.435840px;}
.ya6{bottom:381.600000px;}
.y129{bottom:383.040000px;}
.y182{bottom:383.968800px;}
.y1c{bottom:386.455500px;}
.y1c7{bottom:386.640000px;}
.y103{bottom:387.540000px;}
.y55{bottom:388.440000px;}
.y192{bottom:389.350080px;}
.y13a{bottom:391.320000px;}
.y41{bottom:393.840000px;}
.y150{bottom:395.460000px;}
.y82{bottom:395.640000px;}
.ye9{bottom:400.140000px;}
.yc7{bottom:400.330800px;}
.ya5{bottom:402.300000px;}
.y1b{bottom:402.831000px;}
.y181{bottom:402.863760px;}
.y1c6{bottom:407.340000px;}
.y191{bottom:408.245040px;}
.y54{bottom:409.140000px;}
.y139{bottom:412.020000px;}
.y16c{bottom:412.760880px;}
.y1ac{bottom:413.472960px;}
.y40{bottom:414.540000px;}
.y81{bottom:416.340000px;}
.y1a{bottom:419.395500px;}
.yc6{bottom:419.407920px;}
.y128{bottom:420.300000px;}
.y180{bottom:421.758720px;}
.ya4{bottom:423.000000px;}
.y102{bottom:424.800000px;}
.y190{bottom:427.140000px;}
.y53{bottom:429.840000px;}
.y16b{bottom:431.655840px;}
.y1ab{bottom:432.367920px;}
.y14f{bottom:432.720000px;}
.y3f{bottom:435.240000px;}
.y19{bottom:435.771000px;}
.y80{bottom:437.040000px;}
.yc5{bottom:438.302880px;}
.ye8{bottom:438.480000px;}
.y17f{bottom:440.835840px;}
.y127{bottom:441.000000px;}
.ya3{bottom:443.700000px;}
.y101{bottom:445.500000px;}
.y1c5{bottom:445.860000px;}
.y138{bottom:450.372960px;}
.y52{bottom:450.540000px;}
.y16a{bottom:450.550800px;}
.y1aa{bottom:451.445040px;}
.y18{bottom:452.335500px;}
.y111{bottom:452.880000px;}
.y14e{bottom:453.420000px;}
.y3e{bottom:455.940000px;}
.yc4{bottom:457.380000px;}
.y17e{bottom:459.730800px;}
.y126{bottom:461.700000px;}
.ya2{bottom:464.400000px;}
.y100{bottom:466.200000px;}
.y1c4{bottom:466.560000px;}
.y17{bottom:468.711000px;}
.y137{bottom:469.450080px;}
.y169{bottom:469.627920px;}
.y1a9{bottom:470.340000px;}
.y51{bottom:471.240000px;}
.y7f{bottom:475.598880px;}
.y68{bottom:476.640000px;}
.ye7{bottom:477.540000px;}
.y17d{bottom:478.807920px;}
.y125{bottom:482.400000px;}
.ya1{bottom:485.100000px;}
.y16{bottom:485.275500px;}
.yff{bottom:486.900000px;}
.y1c3{bottom:487.260000px;}
.y136{bottom:488.345040px;}
.y168{bottom:488.522880px;}
.y14d{bottom:491.793840px;}
.y50{bottom:491.940000px;}
.y3d{bottom:494.280000px;}
.y7e{bottom:494.493840px;}
.yc3{bottom:494.640000px;}
.y67{bottom:497.340000px;}
.y17c{bottom:497.702880px;}
.ye6{bottom:498.240000px;}
.y15{bottom:501.840000px;}
.y124{bottom:503.100000px;}
.ya0{bottom:505.800000px;}
.y135{bottom:507.240000px;}
.yfe{bottom:507.600000px;}
.y14c{bottom:510.870960px;}
.y4f{bottom:512.640000px;}
.y7d{bottom:513.570960px;}
.yc2{bottom:515.340000px;}
.y17b{bottom:516.780000px;}
.y66{bottom:518.040000px;}
.y14{bottom:518.220000px;}
.ye5{bottom:518.940000px;}
.y123{bottom:523.800000px;}
.y1c2{bottom:525.960000px;}
.y18f{bottom:526.500000px;}
.y1a8{bottom:528.300000px;}
.y14b{bottom:529.765920px;}
.y7c{bottom:532.465920px;}
.y3c{bottom:533.340000px;}
.y13{bottom:535.500000px;}
.yc1{bottom:536.040000px;}
.y65{bottom:538.560000px;}
.ye4{bottom:539.640000px;}
.y9f{bottom:544.338000px;}
.y122{bottom:544.500000px;}
.y167{bottom:544.860000px;}
.yfd{bottom:545.960880px;}
.y1c1{bottom:546.660000px;}
.y14a{bottom:548.660880px;}
.y1a7{bottom:549.000000px;}
.y7b{bottom:551.360880px;}
.y12{bottom:552.780000px;}
.y17a{bottom:553.860000px;}
.y3b{bottom:554.040000px;}
.yc0{bottom:556.560000px;}
.y64{bottom:559.260000px;}
.ye3{bottom:560.340000px;}
.y9e{bottom:563.232960px;}
.yfc{bottom:565.038000px;}
.y121{bottom:565.200000px;}
.y166{bottom:565.560000px;}
.y1c0{bottom:567.360000px;}
.y149{bottom:567.738000px;}
.y1a6{bottom:569.700000px;}
.y11{bottom:570.053700px;}
.y7a{bottom:570.438000px;}
.y3a{bottom:574.560000px;}
.ybf{bottom:577.260000px;}
.y98{bottom:579.960000px;}
.ye2{bottom:581.040000px;}
.y9d{bottom:582.310080px;}
.yfb{bottom:583.932960px;}
.y120{bottom:585.900000px;}
.y165{bottom:586.260000px;}
.y148{bottom:586.632960px;}
.y10{bottom:587.160000px;}
.y79{bottom:589.332960px;}
.y1a5{bottom:590.400000px;}
.y39{bottom:595.260000px;}
.y63{bottom:597.600000px;}
.ybe{bottom:597.960000px;}
.y97{bottom:600.660000px;}
.y9c{bottom:601.205040px;}
.yfa{bottom:603.010080px;}
.yf{bottom:604.411380px;}
.y147{bottom:605.710080px;}
.y1bf{bottom:606.060000px;}
.y11f{bottom:606.600000px;}
.y164{bottom:606.960000px;}
.y78{bottom:608.410080px;}
.y1a4{bottom:611.100000px;}
.y38{bottom:615.960000px;}
.ybd{bottom:618.660000px;}
.ye1{bottom:619.403760px;}
.y9b{bottom:620.100000px;}
.y96{bottom:621.360000px;}
.ye{bottom:621.696960px;}
.yf9{bottom:621.905040px;}
.y146{bottom:624.605040px;}
.y1be{bottom:626.760000px;}
.y11e{bottom:627.300000px;}
.y77{bottom:627.305040px;}
.y163{bottom:627.660000px;}
.y1a3{bottom:631.800000px;}
.y37{bottom:636.660000px;}
.ye0{bottom:638.480880px;}
.yd{bottom:638.982540px;}
.ybc{bottom:639.360000px;}
.yf8{bottom:640.800000px;}
.y95{bottom:642.060000px;}
.y145{bottom:643.500000px;}
.y76{bottom:646.200000px;}
.y11d{bottom:648.000000px;}
.y162{bottom:648.360000px;}
.y1a2{bottom:652.500000px;}
.yc{bottom:656.268120px;}
.y36{bottom:657.360000px;}
.ydf{bottom:657.375840px;}
.ybb{bottom:660.060000px;}
.y1b9{bottom:662.760000px;}
.y1bd{bottom:665.460000px;}
.y11c{bottom:668.700000px;}
.y161{bottom:669.060000px;}
.yb{bottom:673.374420px;}
.yde{bottom:676.270800px;}
.y35{bottom:678.060000px;}
.y94{bottom:680.400000px;}
.yba{bottom:680.760000px;}
.y75{bottom:683.460000px;}
.y1bc{bottom:686.160000px;}
.y11b{bottom:689.400000px;}
.y160{bottom:689.760000px;}
.ya{bottom:690.660000px;}
.y1a1{bottom:690.860880px;}
.ydd{bottom:695.347920px;}
.y34{bottom:698.760000px;}
.yb9{bottom:701.460000px;}
.y74{bottom:704.160000px;}
.y1bb{bottom:706.860000px;}
.y9{bottom:707.940000px;}
.y1a0{bottom:709.938000px;}
.y11a{bottom:710.100000px;}
.y15f{bottom:710.460000px;}
.ydc{bottom:714.242880px;}
.y33{bottom:719.460000px;}
.yb8{bottom:722.160000px;}
.y73{bottom:724.860000px;}
.y8{bottom:725.940000px;}
.y19f{bottom:728.832960px;}
.y119{bottom:730.800000px;}
.ydb{bottom:733.320000px;}
.y32{bottom:740.160000px;}
.yb7{bottom:742.860000px;}
.y72{bottom:745.560000px;}
.y19e{bottom:747.910080px;}
.y15e{bottom:748.800000px;}
.y118{bottom:751.500000px;}
.y31{bottom:760.860000px;}
.yb6{bottom:763.560000px;}
.y71{bottom:766.260000px;}
.y19d{bottom:766.805040px;}
.yda{bottom:770.580000px;}
.y117{bottom:772.200000px;}
.y7{bottom:772.729740px;}
.y30{bottom:781.560000px;}
.y1ba{bottom:783.900000px;}
.yb5{bottom:784.260000px;}
.y19c{bottom:785.700000px;}
.y70{bottom:786.960000px;}
.y15d{bottom:787.860000px;}
.yd9{bottom:791.280000px;}
.y6{bottom:802.080180px;}
.y2f{bottom:802.260000px;}
.y1b8{bottom:804.600000px;}
.yb4{bottom:804.960000px;}
.y15c{bottom:808.560000px;}
.y116{bottom:810.737850px;}
.y2e{bottom:822.960000px;}
.y6f{bottom:825.300000px;}
.yb3{bottom:825.660000px;}
.y15b{bottom:829.260000px;}
.yd8{bottom:829.632810px;}
.y2d{bottom:843.660000px;}
.yb2{bottom:846.360000px;}
.yd7{bottom:848.709930px;}
.y5{bottom:849.409560px;}
.y2c{bottom:864.360000px;}
.yd6{bottom:867.604890px;}
.y4{bottom:878.760000px;}
.yb1{bottom:884.700000px;}
.y2b{bottom:885.060000px;}
.yd5{bottom:886.499850px;}
.y1{bottom:936.900000px;}
.y2a{bottom:938.880000px;}
.hc{height:34.114922px;}
.h9{height:36.966797px;}
.h2{height:45.345937px;}
.h3{height:47.381836px;}
.h10{height:49.992188px;}
.h6{height:52.435898px;}
.h8{height:52.461098px;}
.h7{height:52.550378px;}
.hd{height:58.121719px;}
.he{height:60.329953px;}
.h5{height:63.175781px;}
.ha{height:63.949219px;}
.h4{height:65.554453px;}
.hf{height:66.605377px;}
.hb{height:69.687773px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.760000px;}
.x3{left:127.620000px;}
.x6{left:148.860000px;}
.x4{left:188.640000px;}
.x2{left:191.700000px;}
.x7{left:306.720000px;}
.x5{left:536.211000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.056000pt;}
.v1{vertical-align:24.320000pt;}
.ls40{letter-spacing:-1.920000pt;}
.ls72{letter-spacing:-1.593600pt;}
.ls71{letter-spacing:-1.472000pt;}
.ls51{letter-spacing:-1.344000pt;}
.ls3f{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.248000pt;}
.lsf{letter-spacing:-1.104000pt;}
.ls35{letter-spacing:-1.009280pt;}
.ls55{letter-spacing:-1.000960pt;}
.lse{letter-spacing:-0.960000pt;}
.ls41{letter-spacing:-0.956160pt;}
.ls60{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.832000pt;}
.ls77{letter-spacing:-0.704000pt;}
.ls65{letter-spacing:-0.647680pt;}
.ls32{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.576000pt;}
.ls54{letter-spacing:-0.529920pt;}
.ls70{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.478080pt;}
.ls46{letter-spacing:-0.448000pt;}
.ls68{letter-spacing:-0.412160pt;}
.ls79{letter-spacing:-0.384000pt;}
.ls67{letter-spacing:-0.353280pt;}
.ls11{letter-spacing:-0.336000pt;}
.ls19{letter-spacing:-0.318720pt;}
.ls30{letter-spacing:-0.303360pt;}
.ls66{letter-spacing:-0.294400pt;}
.ls20{letter-spacing:-0.288000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.212480pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls78{letter-spacing:-0.117760pt;}
.ls5f{letter-spacing:-0.106240pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls13{letter-spacing:-0.085120pt;}
.ls4e{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.053120pt;}
.ls23{letter-spacing:-0.050560pt;}
.ls21{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.048000pt;}
.ls1b{letter-spacing:0.053120pt;}
.ls33{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.085120pt;}
.ls16{letter-spacing:0.106240pt;}
.ls53{letter-spacing:0.117760pt;}
.ls3e{letter-spacing:0.122176pt;}
.ls26{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.144000pt;}
.ls29{letter-spacing:0.151680pt;}
.ls7{letter-spacing:0.153600pt;}
.ls5{letter-spacing:0.154048pt;}
.ls3{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.202240pt;}
.ls6{letter-spacing:0.212480pt;}
.ls6d{letter-spacing:0.235520pt;}
.ls58{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.288000pt;}
.ls52{letter-spacing:0.294400pt;}
.ls4{letter-spacing:0.318720pt;}
.ls2b{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.340480pt;}
.ls76{letter-spacing:0.343040pt;}
.ls45{letter-spacing:0.384000pt;}
.ls4b{letter-spacing:0.448000pt;}
.ls73{letter-spacing:0.454400pt;}
.ls5b{letter-spacing:0.512000pt;}
.ls61{letter-spacing:0.529920pt;}
.ls47{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.672000pt;}
.ls4f{letter-spacing:0.743680pt;}
.ls69{letter-spacing:0.768000pt;}
.ls74{letter-spacing:1.024000pt;}
.ls3a{letter-spacing:1.280000pt;}
.ls38{letter-spacing:1.920000pt;}
.ls44{letter-spacing:2.560000pt;}
.lsb{letter-spacing:2.592000pt;}
.ls50{letter-spacing:3.179520pt;}
.ls4c{letter-spacing:3.193600pt;}
.ls2c{letter-spacing:3.200000pt;}
.ls62{letter-spacing:3.833600pt;}
.ls3c{letter-spacing:3.840000pt;}
.ls3d{letter-spacing:4.480000pt;}
.ls6e{letter-spacing:4.486400pt;}
.lsc{letter-spacing:4.512000pt;}
.ls2d{letter-spacing:5.120000pt;}
.ls28{letter-spacing:5.760000pt;}
.ls5e{letter-spacing:6.400000pt;}
.ls5c{letter-spacing:7.040000pt;}
.ls2e{letter-spacing:7.680000pt;}
.ls57{letter-spacing:7.686400pt;}
.ls42{letter-spacing:8.320000pt;}
.ls4d{letter-spacing:8.960000pt;}
.ls39{letter-spacing:9.600000pt;}
.ls2a{letter-spacing:10.240000pt;}
.ls37{letter-spacing:10.880000pt;}
.ls3b{letter-spacing:11.520000pt;}
.ls56{letter-spacing:12.160000pt;}
.ls27{letter-spacing:12.800000pt;}
.ls6c{letter-spacing:13.440000pt;}
.ls6f{letter-spacing:14.080000pt;}
.ls6a{letter-spacing:14.720000pt;}
.ls6b{letter-spacing:15.360000pt;}
.ls7d{letter-spacing:16.000000pt;}
.ls5d{letter-spacing:16.610048pt;}
.ls75{letter-spacing:16.640000pt;}
.ls59{letter-spacing:17.920000pt;}
.ls43{letter-spacing:19.840000pt;}
.ls63{letter-spacing:20.480000pt;}
.ls64{letter-spacing:21.120000pt;}
.ls48{letter-spacing:23.680000pt;}
.ls7e{letter-spacing:25.600000pt;}
.ls7f{letter-spacing:26.880000pt;}
.ls4a{letter-spacing:27.520000pt;}
.ls7c{letter-spacing:29.440000pt;}
.ls5a{letter-spacing:30.720000pt;}
.ls49{letter-spacing:34.560000pt;}
.ls7a{letter-spacing:51.846400pt;}
.ls7b{letter-spacing:53.120000pt;}
.ls36{letter-spacing:652.313600pt;}
.ls25{letter-spacing:1328.796800pt;}
.ls0{letter-spacing:1554.096000pt;}
.ws110{word-spacing:-17.024000pt;}
.wsc7{word-spacing:-16.640000pt;}
.ws11d{word-spacing:-16.448000pt;}
.wsc6{word-spacing:-16.256000pt;}
.ws73{word-spacing:-16.128000pt;}
.ws47{word-spacing:-16.064000pt;}
.ws45{word-spacing:-16.000000pt;}
.ws9e{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.wsc8{word-spacing:-15.808000pt;}
.ws43{word-spacing:-15.744000pt;}
.ws11f{word-spacing:-15.616000pt;}
.wse6{word-spacing:-15.249920pt;}
.ws44{word-spacing:-15.168000pt;}
.wsd8{word-spacing:-15.014400pt;}
.wsb3{word-spacing:-14.837760pt;}
.wsb4{word-spacing:-14.720000pt;}
.wsb2{word-spacing:-14.656000pt;}
.ws11e{word-spacing:-14.602240pt;}
.wsff{word-spacing:-14.528000pt;}
.wsf3{word-spacing:-14.425600pt;}
.wsf4{word-spacing:-14.366720pt;}
.wsf6{word-spacing:-14.307840pt;}
.wsf1{word-spacing:-14.190080pt;}
.ws120{word-spacing:-14.080000pt;}
.wsf2{word-spacing:-14.072320pt;}
.wsd9{word-spacing:-14.023680pt;}
.wsf5{word-spacing:-13.719040pt;}
.ws8{word-spacing:-13.598720pt;}
.wsb{word-spacing:-13.492480pt;}
.wsa{word-spacing:-13.386240pt;}
.ws7{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.226880pt;}
.wsda{word-spacing:-13.173760pt;}
.ws6{word-spacing:-13.067520pt;}
.ws9{word-spacing:-12.961280pt;}
.ws46{word-spacing:-12.842240pt;}
.ws135{word-spacing:-12.791680pt;}
.ws12{word-spacing:-12.589440pt;}
.ws49{word-spacing:-12.270720pt;}
.ws2{word-spacing:-12.192000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws100{word-spacing:-11.686400pt;}
.ws3{word-spacing:-11.664000pt;}
.ws10{word-spacing:-11.136000pt;}
.ws112{word-spacing:-11.063040pt;}
.wsd{word-spacing:-10.992000pt;}
.wsf{word-spacing:-10.896000pt;}
.wse{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.752000pt;}
.wsc{word-spacing:-10.704000pt;}
.ws11{word-spacing:-10.656000pt;}
.ws106{word-spacing:-9.280000pt;}
.ws48{word-spacing:-8.640000pt;}
.ws121{word-spacing:-3.968000pt;}
.ws88{word-spacing:-3.840000pt;}
.wsfb{word-spacing:-3.584000pt;}
.ws89{word-spacing:-3.346560pt;}
.ws10c{word-spacing:-3.328000pt;}
.wsc4{word-spacing:-3.297280pt;}
.ws61{word-spacing:-3.200000pt;}
.wsc5{word-spacing:-3.179520pt;}
.ws8a{word-spacing:-3.134080pt;}
.ws62{word-spacing:-2.944000pt;}
.wsdc{word-spacing:-2.688000pt;}
.wsa9{word-spacing:-2.560000pt;}
.wse2{word-spacing:-2.531840pt;}
.wscd{word-spacing:-2.368000pt;}
.wsa8{word-spacing:-2.304000pt;}
.ws20{word-spacing:-2.071680pt;}
.wsba{word-spacing:-2.060800pt;}
.ws82{word-spacing:-2.048000pt;}
.ws32{word-spacing:-1.920000pt;}
.ws31{word-spacing:-1.776000pt;}
.ws3e{word-spacing:-1.728000pt;}
.ws33{word-spacing:-1.680000pt;}
.ws70{word-spacing:-1.664000pt;}
.ws30{word-spacing:-1.632000pt;}
.ws21{word-spacing:-1.540480pt;}
.wscf{word-spacing:-1.408000pt;}
.ws17{word-spacing:-1.361920pt;}
.ws4e{word-spacing:-1.280000pt;}
.wsab{word-spacing:-1.274880pt;}
.wsaa{word-spacing:-1.221760pt;}
.wsd2{word-spacing:-1.152000pt;}
.ws2b{word-spacing:-1.056000pt;}
.ws4a{word-spacing:-1.024000pt;}
.wsb1{word-spacing:-0.796800pt;}
.ws5c{word-spacing:-0.768000pt;}
.wsf0{word-spacing:-0.765440pt;}
.wsac{word-spacing:-0.743680pt;}
.wsb9{word-spacing:-0.647680pt;}
.ws51{word-spacing:-0.640000pt;}
.wsaf{word-spacing:-0.584320pt;}
.ws133{word-spacing:-0.576000pt;}
.wsd7{word-spacing:-0.512000pt;}
.ws11a{word-spacing:-0.448000pt;}
.ws52{word-spacing:-0.384000pt;}
.ws1b{word-spacing:-0.318720pt;}
.wsb7{word-spacing:-0.294400pt;}
.wsb0{word-spacing:-0.265600pt;}
.wsd1{word-spacing:-0.252800pt;}
.wsfc{word-spacing:-0.235520pt;}
.ws74{word-spacing:-0.192000pt;}
.ws1e{word-spacing:-0.159360pt;}
.ws14{word-spacing:-0.144000pt;}
.ws67{word-spacing:-0.128000pt;}
.wsb8{word-spacing:-0.117760pt;}
.wsad{word-spacing:-0.106240pt;}
.wsfe{word-spacing:-0.064000pt;}
.wsb5{word-spacing:-0.050560pt;}
.ws2f{word-spacing:-0.048000pt;}
.ws13{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.048000pt;}
.ws1a{word-spacing:0.053120pt;}
.wsa0{word-spacing:0.064000pt;}
.ws18{word-spacing:0.085120pt;}
.ws9b{word-spacing:0.128000pt;}
.ws2e{word-spacing:0.144000pt;}
.ws34{word-spacing:0.192000pt;}
.wse7{word-spacing:0.202240pt;}
.ws28{word-spacing:0.212480pt;}
.ws2c{word-spacing:0.240000pt;}
.ws56{word-spacing:0.256000pt;}
.ws2d{word-spacing:0.288000pt;}
.ws5f{word-spacing:0.303360pt;}
.ws10d{word-spacing:0.318720pt;}
.ws39{word-spacing:0.336000pt;}
.wsae{word-spacing:0.371840pt;}
.ws115{word-spacing:0.412160pt;}
.ws60{word-spacing:0.455040pt;}
.ws1f{word-spacing:0.478080pt;}
.ws53{word-spacing:0.512000pt;}
.ws6e{word-spacing:0.576000pt;}
.ws54{word-spacing:0.640000pt;}
.ws10b{word-spacing:0.647680pt;}
.ws1d{word-spacing:0.690560pt;}
.ws11b{word-spacing:0.704000pt;}
.ws1c{word-spacing:0.849920pt;}
.ws69{word-spacing:0.896000pt;}
.ws8b{word-spacing:0.956160pt;}
.ws16{word-spacing:0.960000pt;}
.ws15{word-spacing:1.104000pt;}
.ws10f{word-spacing:1.115520pt;}
.ws97{word-spacing:1.152000pt;}
.ws38{word-spacing:1.248000pt;}
.ws55{word-spacing:1.280000pt;}
.ws37{word-spacing:1.488000pt;}
.ws19{word-spacing:1.532160pt;}
.ws81{word-spacing:1.536000pt;}
.ws10e{word-spacing:1.593600pt;}
.ws96{word-spacing:1.728000pt;}
.ws7e{word-spacing:1.792000pt;}
.ws5b{word-spacing:1.920000pt;}
.ws7d{word-spacing:2.048000pt;}
.ws36{word-spacing:2.160000pt;}
.ws5a{word-spacing:2.176000pt;}
.ws35{word-spacing:2.208000pt;}
.ws23{word-spacing:2.390400pt;}
.ws75{word-spacing:2.432000pt;}
.ws4b{word-spacing:2.560000pt;}
.ws24{word-spacing:2.762240pt;}
.ws3b{word-spacing:2.784000pt;}
.ws4c{word-spacing:2.816000pt;}
.ws3c{word-spacing:2.832000pt;}
.wsc1{word-spacing:3.061760pt;}
.ws65{word-spacing:3.072000pt;}
.ws117{word-spacing:3.179520pt;}
.ws42{word-spacing:3.200000pt;}
.ws41{word-spacing:3.456000pt;}
.ws111{word-spacing:3.712000pt;}
.wsc3{word-spacing:3.827200pt;}
.ws66{word-spacing:3.840000pt;}
.ws87{word-spacing:4.096000pt;}
.wsc2{word-spacing:4.180480pt;}
.ws79{word-spacing:4.352000pt;}
.ws116{word-spacing:4.357120pt;}
.wsbb{word-spacing:4.474880pt;}
.ws4f{word-spacing:4.480000pt;}
.ws101{word-spacing:4.544000pt;}
.ws3d{word-spacing:4.608000pt;}
.ws2a{word-spacing:4.704000pt;}
.ws50{word-spacing:4.736000pt;}
.ws29{word-spacing:4.752000pt;}
.wscc{word-spacing:4.992000pt;}
.ws6b{word-spacing:5.120000pt;}
.ws126{word-spacing:5.312000pt;}
.ws6c{word-spacing:5.376000pt;}
.ws119{word-spacing:5.632000pt;}
.wsbd{word-spacing:5.652480pt;}
.ws5e{word-spacing:5.760000pt;}
.wsbe{word-spacing:5.770240pt;}
.wse8{word-spacing:5.824000pt;}
.ws5d{word-spacing:6.016000pt;}
.wsf7{word-spacing:6.208000pt;}
.wse4{word-spacing:6.272000pt;}
.ws8c{word-spacing:6.400000pt;}
.ws105{word-spacing:6.528000pt;}
.wsb6{word-spacing:6.656000pt;}
.wsdb{word-spacing:6.912000pt;}
.wsc0{word-spacing:6.947840pt;}
.ws8d{word-spacing:7.040000pt;}
.wse3{word-spacing:7.065600pt;}
.ws8e{word-spacing:7.296000pt;}
.ws6f{word-spacing:7.552000pt;}
.ws118{word-spacing:7.654400pt;}
.wsa7{word-spacing:7.680000pt;}
.wse5{word-spacing:7.936000pt;}
.ws103{word-spacing:8.192000pt;}
.ws102{word-spacing:8.320000pt;}
.ws95{word-spacing:8.576000pt;}
.ws114{word-spacing:8.832000pt;}
.ws7f{word-spacing:8.960000pt;}
.ws6a{word-spacing:9.216000pt;}
.ws72{word-spacing:9.472000pt;}
.ws7c{word-spacing:9.600000pt;}
.ws109{word-spacing:9.728000pt;}
.ws10a{word-spacing:9.792000pt;}
.ws71{word-spacing:9.856000pt;}
.wsea{word-spacing:10.112000pt;}
.ws63{word-spacing:10.240000pt;}
.ws64{word-spacing:10.496000pt;}
.ws78{word-spacing:10.752000pt;}
.ws7b{word-spacing:10.880000pt;}
.wse1{word-spacing:10.892800pt;}
.ws77{word-spacing:11.136000pt;}
.ws83{word-spacing:11.392000pt;}
.ws40{word-spacing:11.520000pt;}
.ws3f{word-spacing:11.776000pt;}
.wsc9{word-spacing:12.032000pt;}
.wsbc{word-spacing:12.070400pt;}
.ws84{word-spacing:12.160000pt;}
.ws85{word-spacing:12.416000pt;}
.ws57{word-spacing:12.800000pt;}
.ws6d{word-spacing:13.056000pt;}
.wsfd{word-spacing:13.696000pt;}
.ws137{word-spacing:13.952000pt;}
.ws92{word-spacing:14.080000pt;}
.ws104{word-spacing:14.336000pt;}
.wsfa{word-spacing:14.592000pt;}
.ws9c{word-spacing:14.720000pt;}
.ws9d{word-spacing:14.976000pt;}
.wscb{word-spacing:15.360000pt;}
.ws25{word-spacing:15.404800pt;}
.ws26{word-spacing:15.457920pt;}
.ws136{word-spacing:15.488000pt;}
.ws4d{word-spacing:15.616000pt;}
.ws134{word-spacing:15.872000pt;}
.wsd5{word-spacing:16.000000pt;}
.ws91{word-spacing:16.256000pt;}
.ws27{word-spacing:16.360960pt;}
.wsec{word-spacing:16.512000pt;}
.ws9a{word-spacing:16.640000pt;}
.wse0{word-spacing:16.663040pt;}
.wseb{word-spacing:16.768000pt;}
.ws99{word-spacing:16.896000pt;}
.ws93{word-spacing:17.280000pt;}
.ws94{word-spacing:17.536000pt;}
.wsed{word-spacing:17.728000pt;}
.wsd4{word-spacing:17.920000pt;}
.wsd3{word-spacing:18.176000pt;}
.ws12a{word-spacing:18.432000pt;}
.ws12b{word-spacing:18.496000pt;}
.wsef{word-spacing:18.560000pt;}
.wsee{word-spacing:18.816000pt;}
.ws98{word-spacing:19.072000pt;}
.ws68{word-spacing:19.200000pt;}
.wse9{word-spacing:19.456000pt;}
.wsf9{word-spacing:19.840000pt;}
.ws80{word-spacing:20.096000pt;}
.ws11c{word-spacing:20.352000pt;}
.wsf8{word-spacing:20.480000pt;}
.ws86{word-spacing:20.736000pt;}
.wsa3{word-spacing:20.992000pt;}
.wsa4{word-spacing:21.120000pt;}
.wsbf{word-spacing:21.137920pt;}
.wsd0{word-spacing:21.376000pt;}
.wsa5{word-spacing:21.632000pt;}
.ws90{word-spacing:21.760000pt;}
.ws8f{word-spacing:22.016000pt;}
.ws108{word-spacing:23.040000pt;}
.wsd6{word-spacing:23.296000pt;}
.ws9f{word-spacing:23.680000pt;}
.wsca{word-spacing:23.936000pt;}
.ws129{word-spacing:25.600000pt;}
.ws58{word-spacing:26.240000pt;}
.ws59{word-spacing:26.496000pt;}
.wsce{word-spacing:26.880000pt;}
.ws138{word-spacing:27.136000pt;}
.wsa6{word-spacing:27.776000pt;}
.ws127{word-spacing:28.032000pt;}
.ws128{word-spacing:28.416000pt;}
.wsdd{word-spacing:28.800000pt;}
.ws131{word-spacing:29.440000pt;}
.ws132{word-spacing:29.696000pt;}
.ws107{word-spacing:30.720000pt;}
.ws76{word-spacing:30.976000pt;}
.ws12d{word-spacing:31.232000pt;}
.ws12c{word-spacing:31.360000pt;}
.ws12e{word-spacing:31.616000pt;}
.wsdf{word-spacing:33.920000pt;}
.wsde{word-spacing:34.176000pt;}
.wsa1{word-spacing:34.432000pt;}
.wsa2{word-spacing:34.560000pt;}
.ws113{word-spacing:35.200000pt;}
.ws124{word-spacing:44.160000pt;}
.ws122{word-spacing:44.416000pt;}
.ws123{word-spacing:45.056000pt;}
.ws125{word-spacing:52.096000pt;}
.ws130{word-spacing:53.120000pt;}
.ws12f{word-spacing:53.376000pt;}
.ws7a{word-spacing:56.960000pt;}
.ws139{word-spacing:80.640000pt;}
.ws22{word-spacing:102.893440pt;}
._1e{margin-left:-21.056000pt;}
._11{margin-left:-9.817600pt;}
._d{margin-left:-7.232000pt;}
._13{margin-left:-3.763200pt;}
._2{margin-left:-2.024128pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.516800pt;}
._5{width:2.419200pt;}
._4{width:3.859200pt;}
._10{width:4.755200pt;}
._18{width:5.984000pt;}
._14{width:6.880000pt;}
._c{width:7.808000pt;}
._20{width:8.937856pt;}
._a{width:9.830400pt;}
._f{width:10.752000pt;}
._b{width:12.166400pt;}
._7{width:13.056000pt;}
._6{width:14.598400pt;}
._16{width:16.896000pt;}
._9{width:18.432000pt;}
._1d{width:19.603200pt;}
._19{width:20.928000pt;}
._1f{width:21.824000pt;}
._15{width:23.180800pt;}
._1a{width:24.404928pt;}
._8{width:26.272000pt;}
._17{width:28.051200pt;}
._1b{width:29.440000pt;}
._1c{width:34.643200pt;}
._21{width:52.390400pt;}
._12{width:56.384000pt;}
._3{width:102.801920pt;}
._e{width:216.336000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:40.640000pt;}
.y2{bottom:54.560000pt;}
.y6e{bottom:86.394400pt;}
.y179{bottom:87.520000pt;}
.y93{bottom:87.680000pt;}
.y4e{bottom:91.040000pt;}
.y9a{bottom:92.480000pt;}
.y1d1{bottom:95.680000pt;}
.yf7{bottom:98.080000pt;}
.y29{bottom:101.280000pt;}
.y62{bottom:101.595040pt;}
.y4d{bottom:101.600000pt;}
.yd4{bottom:101.616000pt;}
.y110{bottom:103.360000pt;}
.y18e{bottom:104.640000pt;}
.y178{bottom:105.920000pt;}
.y92{bottom:106.080000pt;}
.y6d{bottom:106.240000pt;}
.y99{bottom:110.880000pt;}
.y1d0{bottom:114.080000pt;}
.y8f{bottom:116.204160pt;}
.yf6{bottom:116.480000pt;}
.y6c{bottom:116.955040pt;}
.y115{bottom:116.960000pt;}
.yd3{bottom:118.411520pt;}
.y28{bottom:119.680000pt;}
.y134{bottom:120.004480pt;}
.y61{bottom:121.600000pt;}
.y10f{bottom:121.760000pt;}
.y18d{bottom:123.040000pt;}
.y91{bottom:124.480000pt;}
.y15a{bottom:124.804480pt;}
.y69{bottom:129.280000pt;}
.y60{bottom:132.320000pt;}
.y8e{bottom:133.161600pt;}
.y1b7{bottom:133.280000pt;}
.yf5{bottom:134.880000pt;}
.yd2{bottom:135.368960pt;}
.y114{bottom:136.006907pt;}
.y133{bottom:136.800000pt;}
.y6b{bottom:136.960000pt;}
.y27{bottom:138.080000pt;}
.y10e{bottom:140.160000pt;}
.y177{bottom:140.176000pt;}
.y18c{bottom:141.440000pt;}
.y159{bottom:141.600000pt;}
.y90{bottom:142.880000pt;}
.y6a{bottom:147.679867pt;}
.y4c{bottom:147.680000pt;}
.y1cf{bottom:148.480000pt;}
.y8d{bottom:149.957120pt;}
.y1b6{bottom:151.680000pt;}
.yd1{bottom:152.164480pt;}
.y113{bottom:152.802427pt;}
.yf4{bottom:153.280000pt;}
.yb0{bottom:155.360000pt;}
.y176{bottom:156.971520pt;}
.y10d{bottom:158.560000pt;}
.y18b{bottom:159.840000pt;}
.y5f{bottom:161.280000pt;}
.y144{bottom:163.840000pt;}
.y4b{bottom:166.080000pt;}
.y8c{bottom:166.914560pt;}
.yd0{bottom:168.960000pt;}
.y112{bottom:169.759867pt;}
.y132{bottom:169.920000pt;}
.y1b5{bottom:170.080000pt;}
.yf3{bottom:171.680000pt;}
.y26{bottom:172.160000pt;}
.yaf{bottom:173.760000pt;}
.y175{bottom:173.767040pt;}
.y158{bottom:174.720000pt;}
.y19b{bottom:176.960000pt;}
.y18a{bottom:178.240000pt;}
.y5e{bottom:179.680000pt;}
.y143{bottom:182.240000pt;}
.y1ce{bottom:182.880000pt;}
.y8b{bottom:183.710080pt;}
.y4a{bottom:184.480000pt;}
.y131{bottom:188.320000pt;}
.y1b4{bottom:188.480000pt;}
.yf2{bottom:190.080000pt;}
.y174{bottom:190.724480pt;}
.yae{bottom:192.160000pt;}
.y10c{bottom:192.672640pt;}
.y157{bottom:193.120000pt;}
.y189{bottom:196.640000pt;}
.y5d{bottom:198.080000pt;}
.y142{bottom:200.640000pt;}
.y8a{bottom:200.667520pt;}
.y1cd{bottom:201.280000pt;}
.ycf{bottom:202.080000pt;}
.y49{bottom:202.880000pt;}
.y1b3{bottom:206.880000pt;}
.y173{bottom:207.520000pt;}
.yf1{bottom:208.480000pt;}
.y10b{bottom:209.630080pt;}
.yad{bottom:210.560000pt;}
.y19a{bottom:211.077120pt;}
.y25{bottom:211.520000pt;}
.y188{bottom:215.040000pt;}
.y5c{bottom:216.480000pt;}
.y89{bottom:217.463040pt;}
.y141{bottom:219.040000pt;}
.yce{bottom:220.480000pt;}
.y48{bottom:221.280000pt;}
.y130{bottom:222.587520pt;}
.y1b2{bottom:225.280000pt;}
.y24{bottom:226.228000pt;}
.y10a{bottom:226.425600pt;}
.yf0{bottom:226.880000pt;}
.y199{bottom:228.034560pt;}
.yac{bottom:228.960000pt;}
.y156{bottom:229.920000pt;}
.y187{bottom:233.440000pt;}
.y88{bottom:234.258560pt;}
.y5b{bottom:234.880000pt;}
.y1cc{bottom:235.680000pt;}
.y140{bottom:237.440000pt;}
.y12f{bottom:239.383040pt;}
.y47{bottom:239.680000pt;}
.y172{bottom:240.640000pt;}
.y23{bottom:240.952000pt;}
.y109{bottom:243.383040pt;}
.y1b1{bottom:243.680000pt;}
.y198{bottom:244.830080pt;}
.yef{bottom:245.280000pt;}
.yab{bottom:247.360000pt;}
.y155{bottom:248.320000pt;}
.y87{bottom:251.216000pt;}
.y186{bottom:251.840000pt;}
.y5a{bottom:253.280000pt;}
.y1cb{bottom:254.080000pt;}
.ycd{bottom:254.752640pt;}
.y22{bottom:255.508000pt;}
.y13f{bottom:255.840000pt;}
.y12e{bottom:256.178560pt;}
.y46{bottom:258.080000pt;}
.y171{bottom:259.040000pt;}
.y108{bottom:260.178560pt;}
.y197{bottom:261.787520pt;}
.y1b0{bottom:262.080000pt;}
.yee{bottom:263.680000pt;}
.yaa{bottom:265.760000pt;}
.y154{bottom:266.720000pt;}
.y86{bottom:268.011520pt;}
.y21{bottom:270.232000pt;}
.y185{bottom:270.240000pt;}
.ycc{bottom:271.548160pt;}
.y59{bottom:271.680000pt;}
.y1ca{bottom:272.480000pt;}
.y12d{bottom:273.136000pt;}
.y13e{bottom:274.240000pt;}
.y45{bottom:276.480000pt;}
.y107{bottom:276.974080pt;}
.y170{bottom:277.440000pt;}
.y196{bottom:278.583040pt;}
.y1af{bottom:280.480000pt;}
.yed{bottom:282.080000pt;}
.ya9{bottom:284.160000pt;}
.y20{bottom:284.788000pt;}
.y85{bottom:284.968960pt;}
.ycb{bottom:288.505600pt;}
.y184{bottom:288.640000pt;}
.y12c{bottom:289.931520pt;}
.y58{bottom:290.080000pt;}
.y13d{bottom:292.640000pt;}
.y106{bottom:293.931520pt;}
.y44{bottom:294.880000pt;}
.y195{bottom:295.378560pt;}
.y16f{bottom:295.840000pt;}
.y1ae{bottom:298.880000pt;}
.y1f{bottom:299.512000pt;}
.yec{bottom:300.480000pt;}
.y153{bottom:300.971520pt;}
.y84{bottom:301.764480pt;}
.ya8{bottom:302.560000pt;}
.yca{bottom:305.301120pt;}
.y1c9{bottom:306.880000pt;}
.y12b{bottom:306.888960pt;}
.y183{bottom:307.040000pt;}
.y57{bottom:308.480000pt;}
.y105{bottom:310.727040pt;}
.y13c{bottom:311.040000pt;}
.y194{bottom:312.336000pt;}
.y43{bottom:313.280000pt;}
.y1e{bottom:314.236000pt;}
.y16e{bottom:314.240000pt;}
.y152{bottom:317.767040pt;}
.y83{bottom:318.560000pt;}
.yeb{bottom:318.880000pt;}
.ya7{bottom:320.800000pt;}
.yc9{bottom:322.096640pt;}
.y12a{bottom:323.684480pt;}
.y1c8{bottom:325.280000pt;}
.y56{bottom:326.880000pt;}
.y104{bottom:327.684480pt;}
.y1d{bottom:328.792000pt;}
.y193{bottom:329.131520pt;}
.y13b{bottom:329.440000pt;}
.y42{bottom:331.680000pt;}
.y16d{bottom:332.640000pt;}
.y1ad{bottom:332.960000pt;}
.y151{bottom:334.562560pt;}
.yea{bottom:337.280000pt;}
.yc8{bottom:339.054080pt;}
.ya6{bottom:339.200000pt;}
.y129{bottom:340.480000pt;}
.y182{bottom:341.305600pt;}
.y1c{bottom:343.516000pt;}
.y1c7{bottom:343.680000pt;}
.y103{bottom:344.480000pt;}
.y55{bottom:345.280000pt;}
.y192{bottom:346.088960pt;}
.y13a{bottom:347.840000pt;}
.y41{bottom:350.080000pt;}
.y150{bottom:351.520000pt;}
.y82{bottom:351.680000pt;}
.ye9{bottom:355.680000pt;}
.yc7{bottom:355.849600pt;}
.ya5{bottom:357.600000pt;}
.y1b{bottom:358.072000pt;}
.y181{bottom:358.101120pt;}
.y1c6{bottom:362.080000pt;}
.y191{bottom:362.884480pt;}
.y54{bottom:363.680000pt;}
.y139{bottom:366.240000pt;}
.y16c{bottom:366.898560pt;}
.y1ac{bottom:367.531520pt;}
.y40{bottom:368.480000pt;}
.y81{bottom:370.080000pt;}
.y1a{bottom:372.796000pt;}
.yc6{bottom:372.807040pt;}
.y128{bottom:373.600000pt;}
.y180{bottom:374.896640pt;}
.ya4{bottom:376.000000pt;}
.y102{bottom:377.600000pt;}
.y190{bottom:379.680000pt;}
.y53{bottom:382.080000pt;}
.y16b{bottom:383.694080pt;}
.y1ab{bottom:384.327040pt;}
.y14f{bottom:384.640000pt;}
.y3f{bottom:386.880000pt;}
.y19{bottom:387.352000pt;}
.y80{bottom:388.480000pt;}
.yc5{bottom:389.602560pt;}
.ye8{bottom:389.760000pt;}
.y17f{bottom:391.854080pt;}
.y127{bottom:392.000000pt;}
.ya3{bottom:394.400000pt;}
.y101{bottom:396.000000pt;}
.y1c5{bottom:396.320000pt;}
.y138{bottom:400.331520pt;}
.y52{bottom:400.480000pt;}
.y16a{bottom:400.489600pt;}
.y1aa{bottom:401.284480pt;}
.y18{bottom:402.076000pt;}
.y111{bottom:402.560000pt;}
.y14e{bottom:403.040000pt;}
.y3e{bottom:405.280000pt;}
.yc4{bottom:406.560000pt;}
.y17e{bottom:408.649600pt;}
.y126{bottom:410.400000pt;}
.ya2{bottom:412.800000pt;}
.y100{bottom:414.400000pt;}
.y1c4{bottom:414.720000pt;}
.y17{bottom:416.632000pt;}
.y137{bottom:417.288960pt;}
.y169{bottom:417.447040pt;}
.y1a9{bottom:418.080000pt;}
.y51{bottom:418.880000pt;}
.y7f{bottom:422.754560pt;}
.y68{bottom:423.680000pt;}
.ye7{bottom:424.480000pt;}
.y17d{bottom:425.607040pt;}
.y125{bottom:428.800000pt;}
.ya1{bottom:431.200000pt;}
.y16{bottom:431.356000pt;}
.yff{bottom:432.800000pt;}
.y1c3{bottom:433.120000pt;}
.y136{bottom:434.084480pt;}
.y168{bottom:434.242560pt;}
.y14d{bottom:437.150080pt;}
.y50{bottom:437.280000pt;}
.y3d{bottom:439.360000pt;}
.y7e{bottom:439.550080pt;}
.yc3{bottom:439.680000pt;}
.y67{bottom:442.080000pt;}
.y17c{bottom:442.402560pt;}
.ye6{bottom:442.880000pt;}
.y15{bottom:446.080000pt;}
.y124{bottom:447.200000pt;}
.ya0{bottom:449.600000pt;}
.y135{bottom:450.880000pt;}
.yfe{bottom:451.200000pt;}
.y14c{bottom:454.107520pt;}
.y4f{bottom:455.680000pt;}
.y7d{bottom:456.507520pt;}
.yc2{bottom:458.080000pt;}
.y17b{bottom:459.360000pt;}
.y66{bottom:460.480000pt;}
.y14{bottom:460.640000pt;}
.ye5{bottom:461.280000pt;}
.y123{bottom:465.600000pt;}
.y1c2{bottom:467.520000pt;}
.y18f{bottom:468.000000pt;}
.y1a8{bottom:469.600000pt;}
.y14b{bottom:470.903040pt;}
.y7c{bottom:473.303040pt;}
.y3c{bottom:474.080000pt;}
.y13{bottom:476.000000pt;}
.yc1{bottom:476.480000pt;}
.y65{bottom:478.720000pt;}
.ye4{bottom:479.680000pt;}
.y9f{bottom:483.856000pt;}
.y122{bottom:484.000000pt;}
.y167{bottom:484.320000pt;}
.yfd{bottom:485.298560pt;}
.y1c1{bottom:485.920000pt;}
.y14a{bottom:487.698560pt;}
.y1a7{bottom:488.000000pt;}
.y7b{bottom:490.098560pt;}
.y12{bottom:491.360000pt;}
.y17a{bottom:492.320000pt;}
.y3b{bottom:492.480000pt;}
.yc0{bottom:494.720000pt;}
.y64{bottom:497.120000pt;}
.ye3{bottom:498.080000pt;}
.y9e{bottom:500.651520pt;}
.yfc{bottom:502.256000pt;}
.y121{bottom:502.400000pt;}
.y166{bottom:502.720000pt;}
.y1c0{bottom:504.320000pt;}
.y149{bottom:504.656000pt;}
.y1a6{bottom:506.400000pt;}
.y11{bottom:506.714400pt;}
.y7a{bottom:507.056000pt;}
.y3a{bottom:510.720000pt;}
.ybf{bottom:513.120000pt;}
.y98{bottom:515.520000pt;}
.ye2{bottom:516.480000pt;}
.y9d{bottom:517.608960pt;}
.yfb{bottom:519.051520pt;}
.y120{bottom:520.800000pt;}
.y165{bottom:521.120000pt;}
.y148{bottom:521.451520pt;}
.y10{bottom:521.920000pt;}
.y79{bottom:523.851520pt;}
.y1a5{bottom:524.800000pt;}
.y39{bottom:529.120000pt;}
.y63{bottom:531.200000pt;}
.ybe{bottom:531.520000pt;}
.y97{bottom:533.920000pt;}
.y9c{bottom:534.404480pt;}
.yfa{bottom:536.008960pt;}
.yf{bottom:537.254560pt;}
.y147{bottom:538.408960pt;}
.y1bf{bottom:538.720000pt;}
.y11f{bottom:539.200000pt;}
.y164{bottom:539.520000pt;}
.y78{bottom:540.808960pt;}
.y1a4{bottom:543.200000pt;}
.y38{bottom:547.520000pt;}
.ybd{bottom:549.920000pt;}
.ye1{bottom:550.581120pt;}
.y9b{bottom:551.200000pt;}
.y96{bottom:552.320000pt;}
.ye{bottom:552.619520pt;}
.yf9{bottom:552.804480pt;}
.y146{bottom:555.204480pt;}
.y1be{bottom:557.120000pt;}
.y11e{bottom:557.600000pt;}
.y77{bottom:557.604480pt;}
.y163{bottom:557.920000pt;}
.y1a3{bottom:561.600000pt;}
.y37{bottom:565.920000pt;}
.ye0{bottom:567.538560pt;}
.yd{bottom:567.984480pt;}
.ybc{bottom:568.320000pt;}
.yf8{bottom:569.600000pt;}
.y95{bottom:570.720000pt;}
.y145{bottom:572.000000pt;}
.y76{bottom:574.400000pt;}
.y11d{bottom:576.000000pt;}
.y162{bottom:576.320000pt;}
.y1a2{bottom:580.000000pt;}
.yc{bottom:583.349440pt;}
.y36{bottom:584.320000pt;}
.ydf{bottom:584.334080pt;}
.ybb{bottom:586.720000pt;}
.y1b9{bottom:589.120000pt;}
.y1bd{bottom:591.520000pt;}
.y11c{bottom:594.400000pt;}
.y161{bottom:594.720000pt;}
.yb{bottom:598.555040pt;}
.yde{bottom:601.129600pt;}
.y35{bottom:602.720000pt;}
.y94{bottom:604.800000pt;}
.yba{bottom:605.120000pt;}
.y75{bottom:607.520000pt;}
.y1bc{bottom:609.920000pt;}
.y11b{bottom:612.800000pt;}
.y160{bottom:613.120000pt;}
.ya{bottom:613.920000pt;}
.y1a1{bottom:614.098560pt;}
.ydd{bottom:618.087040pt;}
.y34{bottom:621.120000pt;}
.yb9{bottom:623.520000pt;}
.y74{bottom:625.920000pt;}
.y1bb{bottom:628.320000pt;}
.y9{bottom:629.280000pt;}
.y1a0{bottom:631.056000pt;}
.y11a{bottom:631.200000pt;}
.y15f{bottom:631.520000pt;}
.ydc{bottom:634.882560pt;}
.y33{bottom:639.520000pt;}
.yb8{bottom:641.920000pt;}
.y73{bottom:644.320000pt;}
.y8{bottom:645.280000pt;}
.y19f{bottom:647.851520pt;}
.y119{bottom:649.600000pt;}
.ydb{bottom:651.840000pt;}
.y32{bottom:657.920000pt;}
.yb7{bottom:660.320000pt;}
.y72{bottom:662.720000pt;}
.y19e{bottom:664.808960pt;}
.y15e{bottom:665.600000pt;}
.y118{bottom:668.000000pt;}
.y31{bottom:676.320000pt;}
.yb6{bottom:678.720000pt;}
.y71{bottom:681.120000pt;}
.y19d{bottom:681.604480pt;}
.yda{bottom:684.960000pt;}
.y117{bottom:686.400000pt;}
.y7{bottom:686.870880pt;}
.y30{bottom:694.720000pt;}
.y1ba{bottom:696.800000pt;}
.yb5{bottom:697.120000pt;}
.y19c{bottom:698.400000pt;}
.y70{bottom:699.520000pt;}
.y15d{bottom:700.320000pt;}
.yd9{bottom:703.360000pt;}
.y6{bottom:712.960160pt;}
.y2f{bottom:713.120000pt;}
.y1b8{bottom:715.200000pt;}
.yb4{bottom:715.520000pt;}
.y15c{bottom:718.720000pt;}
.y116{bottom:720.655867pt;}
.y2e{bottom:731.520000pt;}
.y6f{bottom:733.600000pt;}
.yb3{bottom:733.920000pt;}
.y15b{bottom:737.120000pt;}
.yd8{bottom:737.451387pt;}
.y2d{bottom:749.920000pt;}
.yb2{bottom:752.320000pt;}
.yd7{bottom:754.408827pt;}
.y5{bottom:755.030720pt;}
.y2c{bottom:768.320000pt;}
.yd6{bottom:771.204347pt;}
.y4{bottom:781.120000pt;}
.yb1{bottom:786.400000pt;}
.y2b{bottom:786.720000pt;}
.yd5{bottom:787.999867pt;}
.y1{bottom:832.800000pt;}
.y2a{bottom:834.560000pt;}
.hc{height:30.324375pt;}
.h9{height:32.859375pt;}
.h2{height:40.307500pt;}
.h3{height:42.117188pt;}
.h10{height:44.437500pt;}
.h6{height:46.609688pt;}
.h8{height:46.632088pt;}
.h7{height:46.711447pt;}
.hd{height:51.663750pt;}
.he{height:53.626625pt;}
.h5{height:56.156250pt;}
.ha{height:56.843750pt;}
.h4{height:58.270625pt;}
.hf{height:59.204779pt;}
.hb{height:61.944688pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.120000pt;}
.x3{left:113.440000pt;}
.x6{left:132.320000pt;}
.x4{left:167.680000pt;}
.x2{left:170.400000pt;}
.x7{left:272.640000pt;}
.x5{left:476.632000pt;}
}




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