
    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_f1b2047e73f671aa9a9b0798.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_883c4e4883a5d61940957641.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128000;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_8823078f6fd6cf5e44d0df18.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.848000;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_9aabecf8b28023891e219d47.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fc205517f394dbcd105aba7d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_77e43a212a13acdf5e498be5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d69941210d24750e13168286.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2e874fd82de183ff71a9e0c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_f6924d6d73a0a28a86e85edb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_1618fc2b72869cbee0c94891.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-23.976000px;}
.v6{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.763400px;}
.v7{vertical-align:17.982000px;}
.v2{vertical-align:20.251800px;}
.v4{vertical-align:23.976000px;}
.v3{vertical-align:49.078200px;}
.ls1c{letter-spacing:-5.976000px;}
.ls1b{letter-spacing:-5.832000px;}
.ls15{letter-spacing:-4.392000px;}
.ls21{letter-spacing:-3.816000px;}
.lsb{letter-spacing:-3.600000px;}
.ls1d{letter-spacing:-2.560536px;}
.lse{letter-spacing:-2.160000px;}
.ls7{letter-spacing:-1.998000px;}
.ls23{letter-spacing:-1.620000px;}
.ls1e{letter-spacing:-1.164834px;}
.ls14{letter-spacing:-1.152000px;}
.ls2{letter-spacing:-1.080000px;}
.ls20{letter-spacing:-1.008000px;}
.ls17{letter-spacing:-0.944460px;}
.lsf{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.629640px;}
.ls8{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.503712px;}
.lsc{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.220374px;}
.ls19{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.369600px;}
.ls12{letter-spacing:0.696600px;}
.ls1{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.759600px;}
.ls27{letter-spacing:1.265400px;}
.ls26{letter-spacing:1.276800px;}
.ls24{letter-spacing:1.620000px;}
.ls3{letter-spacing:1.791000px;}
.ls25{letter-spacing:2.520000px;}
.ls29{letter-spacing:2.664000px;}
.ls6{letter-spacing:2.810400px;}
.ls5{letter-spacing:2.811000px;}
.ls2a{letter-spacing:4.464000px;}
.ls28{letter-spacing:5.256000px;}
.ls4{letter-spacing:17.409000px;}
.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;}
}
.ws13b{word-spacing:-23.256000px;}
.ws13d{word-spacing:-22.464000px;}
.ws13c{word-spacing:-20.664000px;}
.ws123{word-spacing:-20.520000px;}
.ws3e{word-spacing:-18.000000px;}
.wsd4{word-spacing:-17.856000px;}
.ws9d{word-spacing:-17.712000px;}
.ws82{word-spacing:-17.424000px;}
.ws9f{word-spacing:-17.280000px;}
.ws6b{word-spacing:-16.344000px;}
.ws11e{word-spacing:-15.618543px;}
.wsbd{word-spacing:-13.608000px;}
.ws25{word-spacing:-13.500000px;}
.wsd5{word-spacing:-12.168000px;}
.wsd6{word-spacing:-12.024000px;}
.ws9e{word-spacing:-10.494000px;}
.ws73{word-spacing:-10.224000px;}
.ws72{word-spacing:-8.928000px;}
.ws19{word-spacing:-8.208000px;}
.ws108{word-spacing:-7.992000px;}
.wsbe{word-spacing:-7.870500px;}
.wsdb{word-spacing:-7.704000px;}
.wse{word-spacing:-7.344000px;}
.wsda{word-spacing:-7.056000px;}
.wsbf{word-spacing:-6.926040px;}
.ws10b{word-spacing:-6.840000px;}
.ws8b{word-spacing:-6.768000px;}
.wsd7{word-spacing:-6.705666px;}
.ws135{word-spacing:-6.624000px;}
.ws64{word-spacing:-5.976000px;}
.ws49{word-spacing:-5.688000px;}
.ws28{word-spacing:-5.616000px;}
.ws109{word-spacing:-5.328000px;}
.ws13e{word-spacing:-5.256000px;}
.ws96{word-spacing:-5.112000px;}
.ws78{word-spacing:-4.752000px;}
.wsd3{word-spacing:-4.680000px;}
.ws92{word-spacing:-4.608000px;}
.ws99{word-spacing:-4.590000px;}
.ws10a{word-spacing:-4.536000px;}
.ws40{word-spacing:-4.464000px;}
.wsa0{word-spacing:-4.104000px;}
.wsfe{word-spacing:-4.032000px;}
.ws13f{word-spacing:-3.960000px;}
.ws121{word-spacing:-3.888000px;}
.ws106{word-spacing:-3.672000px;}
.ws57{word-spacing:-3.600000px;}
.ws127{word-spacing:-3.528000px;}
.ws26{word-spacing:-3.384000px;}
.wsc{word-spacing:-3.312000px;}
.ws80{word-spacing:-3.240000px;}
.ws4a{word-spacing:-3.168000px;}
.wsc3{word-spacing:-3.096000px;}
.wsa{word-spacing:-3.024000px;}
.wsa4{word-spacing:-2.952000px;}
.ws33{word-spacing:-2.880000px;}
.ws61{word-spacing:-2.808000px;}
.ws7e{word-spacing:-2.754000px;}
.ws105{word-spacing:-2.736000px;}
.wse3{word-spacing:-2.664000px;}
.ws12c{word-spacing:-2.592000px;}
.wse8{word-spacing:-2.520000px;}
.wsd2{word-spacing:-2.448000px;}
.ws3c{word-spacing:-2.430000px;}
.ws60{word-spacing:-2.376000px;}
.wsea{word-spacing:-2.304000px;}
.ws90{word-spacing:-2.232000px;}
.ws54{word-spacing:-2.160000px;}
.wsb5{word-spacing:-2.052000px;}
.ws16{word-spacing:-2.016000px;}
.ws112{word-spacing:-1.998000px;}
.wsd{word-spacing:-1.872000px;}
.ws34{word-spacing:-1.800000px;}
.ws2d{word-spacing:-1.728000px;}
.ws95{word-spacing:-1.620000px;}
.ws46{word-spacing:-1.584000px;}
.ws9c{word-spacing:-1.516320px;}
.ws117{word-spacing:-1.512000px;}
.ws115{word-spacing:-1.440000px;}
.ws5b{word-spacing:-1.368000px;}
.ws2{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.152000px;}
.wsfa{word-spacing:-1.134000px;}
.ws55{word-spacing:-1.080000px;}
.ws6f{word-spacing:-1.008000px;}
.ws5d{word-spacing:-0.972000px;}
.ws1{word-spacing:-0.792000px;}
.ws1f{word-spacing:-0.720000px;}
.wsb9{word-spacing:-0.702000px;}
.ws23{word-spacing:-0.648000px;}
.ws89{word-spacing:-0.576000px;}
.wsd1{word-spacing:-0.504000px;}
.ws2c{word-spacing:-0.432000px;}
.wsf7{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.288000px;}
.ws4d{word-spacing:-0.162000px;}
.wsa6{word-spacing:-0.144000px;}
.ws120{word-spacing:-0.108000px;}
.ws18{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.wsc4{word-spacing:0.072000px;}
.ws32{word-spacing:0.144000px;}
.ws111{word-spacing:0.216000px;}
.wse4{word-spacing:0.220374px;}
.wsa8{word-spacing:0.288000px;}
.ws5f{word-spacing:0.360000px;}
.wsca{word-spacing:0.432000px;}
.wse9{word-spacing:0.503712px;}
.ws8d{word-spacing:0.504000px;}
.wsb4{word-spacing:0.629640px;}
.ws66{word-spacing:0.648000px;}
.wsf0{word-spacing:0.720000px;}
.ws62{word-spacing:0.864000px;}
.ws10d{word-spacing:0.918000px;}
.ws124{word-spacing:0.936000px;}
.ws8{word-spacing:1.008000px;}
.ws15{word-spacing:1.080000px;}
.wsc7{word-spacing:1.152000px;}
.ws41{word-spacing:1.224000px;}
.wsef{word-spacing:1.368000px;}
.wscd{word-spacing:1.440000px;}
.wsb8{word-spacing:1.458000px;}
.ws9a{word-spacing:1.566000px;}
.ws4b{word-spacing:1.584000px;}
.wsfc{word-spacing:1.620000px;}
.ws1b{word-spacing:1.656000px;}
.ws126{word-spacing:1.728000px;}
.ws31{word-spacing:1.800000px;}
.wsf4{word-spacing:1.872000px;}
.ws37{word-spacing:1.944000px;}
.ws6c{word-spacing:1.998000px;}
.wsf{word-spacing:2.016000px;}
.wsfd{word-spacing:2.052000px;}
.wsa1{word-spacing:2.088000px;}
.wsed{word-spacing:2.160000px;}
.ws6a{word-spacing:2.232000px;}
.wsae{word-spacing:2.304000px;}
.ws6d{word-spacing:2.376000px;}
.ws27{word-spacing:2.448000px;}
.wsc1{word-spacing:2.520000px;}
.wsdf{word-spacing:2.560536px;}
.ws10c{word-spacing:2.592000px;}
.wsb6{word-spacing:2.646000px;}
.wsf5{word-spacing:2.664000px;}
.ws1a{word-spacing:2.736000px;}
.ws81{word-spacing:2.808000px;}
.wsa2{word-spacing:2.880000px;}
.wsd8{word-spacing:2.952000px;}
.wse2{word-spacing:3.024000px;}
.ws14{word-spacing:3.096000px;}
.wsf6{word-spacing:3.240000px;}
.wsc2{word-spacing:3.312000px;}
.ws75{word-spacing:3.384000px;}
.ws1d{word-spacing:3.456000px;}
.ws97{word-spacing:3.528000px;}
.wsa3{word-spacing:3.600000px;}
.ws79{word-spacing:3.672000px;}
.ws9b{word-spacing:3.726000px;}
.wsac{word-spacing:3.816000px;}
.wsba{word-spacing:3.888000px;}
.wsb7{word-spacing:3.942000px;}
.ws3{word-spacing:3.960000px;}
.wscb{word-spacing:4.032000px;}
.wsce{word-spacing:4.176000px;}
.ws5a{word-spacing:4.248000px;}
.ws56{word-spacing:4.392000px;}
.wsad{word-spacing:4.464000px;}
.ws58{word-spacing:4.536000px;}
.ws39{word-spacing:4.752000px;}
.ws2a{word-spacing:4.896000px;}
.ws2b{word-spacing:4.968000px;}
.wsb{word-spacing:5.040000px;}
.ws85{word-spacing:5.112000px;}
.ws7b{word-spacing:5.184000px;}
.ws45{word-spacing:5.256000px;}
.ws119{word-spacing:5.328000px;}
.ws22{word-spacing:5.400000px;}
.wse1{word-spacing:5.544000px;}
.ws3a{word-spacing:5.724000px;}
.ws8c{word-spacing:5.760000px;}
.wsbb{word-spacing:5.778000px;}
.wsdd{word-spacing:5.832000px;}
.ws91{word-spacing:5.904000px;}
.ws4c{word-spacing:5.976000px;}
.wsf1{word-spacing:6.048000px;}
.ws68{word-spacing:6.192000px;}
.ws50{word-spacing:6.372000px;}
.wsee{word-spacing:6.408000px;}
.wscc{word-spacing:6.480000px;}
.ws93{word-spacing:6.534000px;}
.wsf8{word-spacing:6.696000px;}
.wsbc{word-spacing:6.750000px;}
.wsaf{word-spacing:6.768000px;}
.ws29{word-spacing:6.840000px;}
.ws98{word-spacing:6.912000px;}
.ws4f{word-spacing:6.966000px;}
.wsd9{word-spacing:6.984000px;}
.wsc8{word-spacing:7.128000px;}
.ws113{word-spacing:7.182000px;}
.ws43{word-spacing:7.200000px;}
.wsd0{word-spacing:7.272000px;}
.ws12{word-spacing:7.344000px;}
.ws104{word-spacing:7.560000px;}
.wsa7{word-spacing:7.632000px;}
.ws118{word-spacing:7.920000px;}
.ws5e{word-spacing:7.992000px;}
.ws59{word-spacing:8.136000px;}
.ws24{word-spacing:8.208000px;}
.wsff{word-spacing:8.280000px;}
.ws10{word-spacing:8.352000px;}
.ws130{word-spacing:8.424000px;}
.ws77{word-spacing:8.496000px;}
.ws88{word-spacing:8.568000px;}
.ws1e{word-spacing:8.856000px;}
.ws35{word-spacing:9.000000px;}
.ws3b{word-spacing:9.072000px;}
.ws134{word-spacing:9.144000px;}
.ws11{word-spacing:9.288000px;}
.ws12b{word-spacing:9.432000px;}
.ws36{word-spacing:9.504000px;}
.ws107{word-spacing:9.576000px;}
.wsfb{word-spacing:9.648000px;}
.wsab{word-spacing:9.720000px;}
.ws76{word-spacing:9.792000px;}
.ws30{word-spacing:9.864000px;}
.ws94{word-spacing:9.882000px;}
.ws128{word-spacing:10.080000px;}
.ws13{word-spacing:10.224000px;}
.wsf2{word-spacing:10.296000px;}
.ws87{word-spacing:10.440000px;}
.ws7c{word-spacing:10.476000px;}
.wsb2{word-spacing:10.584000px;}
.ws4{word-spacing:10.656000px;}
.ws67{word-spacing:10.728000px;}
.ws13a{word-spacing:10.800000px;}
.ws65{word-spacing:10.872000px;}
.ws5{word-spacing:11.016000px;}
.wsc0{word-spacing:11.232000px;}
.ws7d{word-spacing:11.448000px;}
.ws42{word-spacing:11.520000px;}
.ws8f{word-spacing:11.664000px;}
.wsec{word-spacing:11.736000px;}
.ws101{word-spacing:11.772000px;}
.wsde{word-spacing:11.808000px;}
.ws11a{word-spacing:11.952000px;}
.ws125{word-spacing:12.168000px;}
.ws7f{word-spacing:12.204000px;}
.wsb3{word-spacing:12.240000px;}
.ws8e{word-spacing:12.312000px;}
.wse6{word-spacing:12.384000px;}
.ws10e{word-spacing:12.474000px;}
.ws5c{word-spacing:12.888000px;}
.ws86{word-spacing:12.960000px;}
.ws7{word-spacing:13.104000px;}
.ws12d{word-spacing:13.176000px;}
.ws69{word-spacing:13.248000px;}
.wsc9{word-spacing:13.320000px;}
.ws83{word-spacing:13.446000px;}
.ws11c{word-spacing:13.464000px;}
.wsb1{word-spacing:13.608000px;}
.wsf9{word-spacing:13.752000px;}
.ws71{word-spacing:13.824000px;}
.ws114{word-spacing:13.968000px;}
.ws3d{word-spacing:13.986000px;}
.wsdc{word-spacing:14.112000px;}
.ws53{word-spacing:14.256000px;}
.ws116{word-spacing:14.472000px;}
.ws137{word-spacing:14.760000px;}
.ws12e{word-spacing:14.832000px;}
.wsb0{word-spacing:15.120000px;}
.ws70{word-spacing:15.192000px;}
.ws11b{word-spacing:15.264000px;}
.wsa9{word-spacing:15.408000px;}
.ws129{word-spacing:15.552000px;}
.ws3f{word-spacing:15.984000px;}
.ws12f{word-spacing:16.128000px;}
.ws11d{word-spacing:16.308000px;}
.wsc5{word-spacing:16.344000px;}
.ws136{word-spacing:16.560000px;}
.wsaa{word-spacing:16.704000px;}
.ws12a{word-spacing:16.920000px;}
.wsa5{word-spacing:16.992000px;}
.ws8a{word-spacing:17.352000px;}
.ws7a{word-spacing:17.388000px;}
.wsf3{word-spacing:17.496000px;}
.ws103{word-spacing:17.712000px;}
.ws48{word-spacing:17.784000px;}
.wse7{word-spacing:18.072000px;}
.ws133{word-spacing:18.216000px;}
.wse0{word-spacing:18.432000px;}
.wseb{word-spacing:18.504000px;}
.ws131{word-spacing:18.792000px;}
.wse5{word-spacing:18.936000px;}
.ws17{word-spacing:20.088000px;}
.ws52{word-spacing:20.412000px;}
.ws74{word-spacing:20.592000px;}
.ws63{word-spacing:20.664000px;}
.ws47{word-spacing:20.808000px;}
.ws138{word-spacing:21.456000px;}
.wscf{word-spacing:22.032000px;}
.ws2e{word-spacing:22.320000px;}
.ws6{word-spacing:22.968000px;}
.ws20{word-spacing:23.184000px;}
.ws132{word-spacing:23.328000px;}
.ws100{word-spacing:24.084000px;}
.ws44{word-spacing:24.192000px;}
.wsc6{word-spacing:24.912000px;}
.ws139{word-spacing:25.416000px;}
.ws6e{word-spacing:25.704000px;}
.ws110{word-spacing:25.812000px;}
.ws10f{word-spacing:26.136000px;}
.ws21{word-spacing:26.424000px;}
.ws84{word-spacing:26.892000px;}
.ws51{word-spacing:28.944000px;}
.ws38{word-spacing:32.994000px;}
.ws2f{word-spacing:33.552000px;}
.ws102{word-spacing:33.912000px;}
.ws4e{word-spacing:65.286000px;}
.ws122{word-spacing:198.000000px;}
.ws11f{word-spacing:699.945138px;}
._1b{margin-left:-3147.010050px;}
._1d{margin-left:-1062.025419px;}
._19{margin-left:-1050.036594px;}
._21{margin-left:-199.303200px;}
._20{margin-left:-198.000000px;}
._d{margin-left:-27.725400px;}
._b{margin-left:-17.546400px;}
._22{margin-left:-9.625200px;}
._4{margin-left:-8.438400px;}
._2{margin-left:-7.416000px;}
._0{margin-left:-5.904000px;}
._5{margin-left:-3.924000px;}
._3{margin-left:-2.649600px;}
._1{margin-left:-1.447200px;}
._6{width:1.296000px;}
._e{width:2.332800px;}
._8{width:3.528000px;}
._7{width:4.665600px;}
._a{width:5.832000px;}
._17{width:7.071000px;}
._f{width:8.152800px;}
._c{width:9.344400px;}
._15{width:10.780800px;}
._9{width:12.672000px;}
._13{width:13.708800px;}
._18{width:14.728200px;}
._23{width:15.939000px;}
._12{width:16.948800px;}
._24{width:19.751400px;}
._10{width:105.289200px;}
._16{width:399.244068px;}
._1f{width:744.438897px;}
._11{width:1237.382400px;}
._1a{width:1507.405332px;}
._1c{width:1525.387824px;}
._1e{width:1535.098029px;}
._14{width:1597.830600px;}
.fc4{color:transparent;}
.fc3{color:rgb(110,107,108);}
.fc2{color:rgb(105,103,103);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:31.482000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:41.976000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.633000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y16{bottom:27.206550px;}
.y23b{bottom:35.569800px;}
.y17b{bottom:41.404350px;}
.y6b{bottom:42.457950px;}
.y1b6{bottom:51.019800px;}
.y23a{bottom:51.769800px;}
.y8c{bottom:52.505550px;}
.y17a{bottom:53.109000px;}
.y6a{bottom:58.657950px;}
.y203{bottom:60.653250px;}
.y1b3{bottom:63.207600px;}
.yd2{bottom:65.690100px;}
.y140{bottom:65.789400px;}
.y239{bottom:67.969800px;}
.y8b{bottom:68.705550px;}
.y1b5{bottom:71.715300px;}
.y163{bottom:73.476450px;}
.y177{bottom:73.804350px;}
.y179{bottom:73.804500px;}
.y1af{bottom:74.347650px;}
.y1ca{bottom:77.293050px;}
.y237{bottom:78.089400px;}
.ydf{bottom:81.337350px;}
.yd1{bottom:81.890100px;}
.y13f{bottom:81.989400px;}
.y202{bottom:82.253250px;}
.y1b2{bottom:83.903100px;}
.y238{bottom:84.169800px;}
.y8d{bottom:84.892350px;}
.y8a{bottom:84.905550px;}
.y22e{bottom:87.353250px;}
.yab{bottom:87.610800px;}
.y1b4{bottom:87.915300px;}
.yb0{bottom:87.942900px;}
.y162{bottom:89.676450px;}
.y176{bottom:90.004350px;}
.y178{bottom:90.004500px;}
.y17e{bottom:90.896850px;}
.y165{bottom:92.723250px;}
.y247{bottom:93.679950px;}
.y236{bottom:94.289400px;}
.y1c9{bottom:94.582950px;}
.y1ae{bottom:95.043150px;}
.y24b{bottom:95.097300px;}
.y1b1{bottom:95.607600px;}
.y24f{bottom:96.514650px;}
.y257{bottom:97.223250px;}
.yde{bottom:97.537350px;}
.y110{bottom:97.659600px;}
.y253{bottom:97.932000px;}
.yd0{bottom:98.090100px;}
.y13e{bottom:98.189400px;}
.y5{bottom:100.541250px;}
.y87{bottom:101.092350px;}
.y89{bottom:101.105550px;}
.y201{bottom:103.853250px;}
.yaf{bottom:104.142900px;}
.yb2{bottom:104.156100px;}
.y17d{bottom:107.096850px;}
.y22d{bottom:108.953400px;}
.yaa{bottom:109.210950px;}
.y246{bottom:109.879950px;}
.y235{bottom:110.489400px;}
.y103{bottom:111.223350px;}
.y24a{bottom:111.297300px;}
.y1c8{bottom:111.873000px;}
.y233{bottom:112.105200px;}
.y24e{bottom:112.714650px;}
.y256{bottom:113.423250px;}
.y10f{bottom:113.859600px;}
.y252{bottom:114.132000px;}
.y13d{bottom:114.389400px;}
.y1b0{bottom:116.303100px;}
.y31{bottom:116.921100px;}
.y86{bottom:117.292350px;}
.y88{bottom:117.305550px;}
.yae{bottom:120.342900px;}
.yb1{bottom:120.356100px;}
.y4{bottom:122.141250px;}
.y158{bottom:125.453400px;}
.y245{bottom:126.079950px;}
.y234{bottom:126.689400px;}
.y100{bottom:127.410150px;}
.y102{bottom:127.423350px;}
.y249{bottom:127.497300px;}
.y232{bottom:128.305200px;}
.y24d{bottom:128.914650px;}
.y255{bottom:129.623250px;}
.y251{bottom:130.332000px;}
.y22c{bottom:130.553400px;}
.ya9{bottom:130.810800px;}
.yff{bottom:131.340600px;}
.y243{bottom:133.187850px;}
.y18a{bottom:134.639550px;}
.y13c{bottom:135.084900px;}
.y30{bottom:138.521100px;}
.ycf{bottom:140.845500px;}
.y244{bottom:142.279950px;}
.y101{bottom:143.623350px;}
.y248{bottom:143.697300px;}
.y3{bottom:143.741250px;}
.y231{bottom:144.505200px;}
.y24c{bottom:145.114650px;}
.y254{bottom:145.823250px;}
.y250{bottom:146.532000px;}
.y141{bottom:146.789400px;}
.y157{bottom:147.053400px;}
.y242{bottom:149.387850px;}
.y189{bottom:150.839550px;}
.y13b{bottom:151.284900px;}
.ya8{bottom:152.410800px;}
.yfe{bottom:152.940600px;}
.ybe{bottom:157.536900px;}
.y1ad{bottom:157.894500px;}
.y230{bottom:160.705200px;}
.yce{bottom:162.445500px;}
.y241{bottom:165.587850px;}
.y188{bottom:167.039550px;}
.y13a{bottom:167.484900px;}
.y1c7{bottom:168.468450px;}
.y156{bottom:168.653250px;}
.y64{bottom:171.442050px;}
.y22b{bottom:173.753250px;}
.ya7{bottom:174.010800px;}
.y1ac{bottom:174.094500px;}
.yfd{bottom:174.540600px;}
.y175{bottom:174.776250px;}
.ybd{bottom:179.136900px;}
.y240{bottom:181.787850px;}
.y23f{bottom:182.333550px;}
.y139{bottom:183.684900px;}
.ycd{bottom:184.045500px;}
.y1c6{bottom:185.758500px;}
.y48{bottom:186.218250px;}
.y2{bottom:186.941250px;}
.y1f1{bottom:189.069450px;}
.y155{bottom:190.253250px;}
.y1aa{bottom:190.253400px;}
.y1ab{bottom:190.294500px;}
.y63{bottom:193.042200px;}
.y22a{bottom:195.353250px;}
.ya6{bottom:195.610800px;}
.yfc{bottom:196.140600px;}
.y174{bottom:196.376250px;}
.y23e{bottom:198.533550px;}
.y85{bottom:199.437600px;}
.ybc{bottom:200.736900px;}
.y1c5{bottom:203.048400px;}
.y2f{bottom:203.321100px;}
.ycc{bottom:205.645500px;}
.y47{bottom:207.818250px;}
.y1{bottom:208.541250px;}
.y1f0{bottom:210.669450px;}
.y154{bottom:211.853250px;}
.y1a9{bottom:211.853400px;}
.y11{bottom:213.469050px;}
.y62{bottom:214.642200px;}
.y23d{bottom:214.733550px;}
.y229{bottom:216.953400px;}
.ya5{bottom:217.210950px;}
.yfb{bottom:217.740600px;}
.y173{bottom:217.976250px;}
.y84{bottom:221.037600px;}
.ybb{bottom:222.336900px;}
.y2e{bottom:224.921100px;}
.y143{bottom:226.709850px;}
.ycb{bottom:227.245500px;}
.y46{bottom:229.418250px;}
.y129{bottom:229.881750px;}
.y23c{bottom:230.933550px;}
.y153{bottom:233.453400px;}
.y160{bottom:234.615150px;}
.y61{bottom:236.242200px;}
.yfa{bottom:239.340600px;}
.y172{bottom:239.576250px;}
.y83{bottom:242.637600px;}
.y142{bottom:242.909850px;}
.yba{bottom:243.936900px;}
.y2d{bottom:246.521100px;}
.yca{bottom:248.845500px;}
.y45{bottom:251.018250px;}
.y128{bottom:251.481750px;}
.y164{bottom:255.053400px;}
.y15f{bottom:256.215150px;}
.y10{bottom:256.669050px;}
.y60{bottom:257.842050px;}
.y228{bottom:260.153250px;}
.ya4{bottom:260.410800px;}
.yf9{bottom:260.940600px;}
.y171{bottom:261.176250px;}
.y82{bottom:264.237600px;}
.yb9{bottom:265.536900px;}
.y1c4{bottom:268.091700px;}
.y2c{bottom:268.121100px;}
.yc9{bottom:270.445500px;}
.y44{bottom:272.618250px;}
.y127{bottom:273.081750px;}
.y200{bottom:275.084250px;}
.y1ef{bottom:275.469450px;}
.y10a{bottom:276.390300px;}
.y214{bottom:276.635700px;}
.y152{bottom:276.653250px;}
.y1a8{bottom:276.653400px;}
.y15e{bottom:277.815150px;}
.y5f{bottom:279.442050px;}
.y227{bottom:281.753250px;}
.ya3{bottom:282.010800px;}
.y170{bottom:282.776250px;}
.y1c3{bottom:285.381600px;}
.y81{bottom:285.837600px;}
.yb8{bottom:287.136900px;}
.y2b{bottom:289.721100px;}
.y43{bottom:294.218250px;}
.y126{bottom:294.681750px;}
.y1ff{bottom:296.684250px;}
.y1ee{bottom:297.069450px;}
.y109{bottom:297.990300px;}
.y213{bottom:298.235700px;}
.y151{bottom:298.253250px;}
.y1a7{bottom:298.253400px;}
.y15d{bottom:299.415150px;}
.yf{bottom:299.869050px;}
.y5e{bottom:301.042200px;}
.y226{bottom:303.353250px;}
.ya2{bottom:303.610800px;}
.yf8{bottom:304.140600px;}
.y16f{bottom:304.376250px;}
.y80{bottom:307.437600px;}
.yb7{bottom:308.736900px;}
.y2a{bottom:311.321100px;}
.yc8{bottom:313.645500px;}
.y42{bottom:315.818250px;}
.y125{bottom:316.281750px;}
.y1fe{bottom:318.284250px;}
.y1ed{bottom:318.669450px;}
.y108{bottom:319.590300px;}
.y150{bottom:319.853250px;}
.y1a6{bottom:319.853400px;}
.y15c{bottom:321.015150px;}
.y5d{bottom:322.642200px;}
.yd7{bottom:324.252300px;}
.yd9{bottom:324.265500px;}
.ya1{bottom:325.210950px;}
.yf7{bottom:325.740600px;}
.y16e{bottom:325.976250px;}
.y18e{bottom:328.441200px;}
.y7f{bottom:329.037600px;}
.y69{bottom:330.273750px;}
.yb6{bottom:330.336900px;}
.y29{bottom:332.921100px;}
.yc7{bottom:335.245500px;}
.y41{bottom:337.418250px;}
.y124{bottom:337.881750px;}
.yd6{bottom:340.452300px;}
.yd8{bottom:340.465500px;}
.y107{bottom:341.190300px;}
.y212{bottom:341.435700px;}
.y14f{bottom:341.453400px;}
.y15b{bottom:342.615150px;}
.ye{bottom:343.069050px;}
.y18d{bottom:344.641200px;}
.y68{bottom:346.473750px;}
.yb4{bottom:346.518300px;}
.y225{bottom:346.553400px;}
.ya0{bottom:346.810800px;}
.yf6{bottom:347.340600px;}
.y16d{bottom:347.576250px;}
.y7e{bottom:350.637600px;}
.y28{bottom:354.521100px;}
.yc6{bottom:356.845500px;}
.y123{bottom:359.481750px;}
.y18c{bottom:360.841200px;}
.y1ec{bottom:361.869450px;}
.yb5{bottom:362.264400px;}
.y67{bottom:362.673750px;}
.yb3{bottom:362.718300px;}
.y106{bottom:362.790300px;}
.y211{bottom:363.035700px;}
.y14e{bottom:363.053400px;}
.y15a{bottom:364.215150px;}
.y9f{bottom:364.703250px;}
.y5c{bottom:365.842050px;}
.y224{bottom:368.153250px;}
.yf5{bottom:368.940600px;}
.y16c{bottom:369.176250px;}
.y1c2{bottom:370.887750px;}
.y7d{bottom:372.237600px;}
.y27{bottom:376.121100px;}
.y18b{bottom:377.041200px;}
.yc5{bottom:378.445500px;}
.y40{bottom:380.618250px;}
.y9c{bottom:380.890050px;}
.y9e{bottom:380.903250px;}
.y122{bottom:381.081750px;}
.y105{bottom:384.390300px;}
.y14d{bottom:384.653250px;}
.yd{bottom:386.269050px;}
.y5b{bottom:387.442050px;}
.yf4{bottom:390.540600px;}
.y16b{bottom:390.776250px;}
.y9b{bottom:396.649200px;}
.y9d{bottom:397.103250px;}
.y26{bottom:397.721100px;}
.yc4{bottom:400.045500px;}
.y161{bottom:400.560450px;}
.y3f{bottom:402.218250px;}
.y1fd{bottom:404.684250px;}
.y1eb{bottom:405.069450px;}
.y15{bottom:405.668850px;}
.y104{bottom:405.990300px;}
.y210{bottom:406.235700px;}
.y14c{bottom:406.253250px;}
.y1a5{bottom:406.253400px;}
.yc{bottom:407.869050px;}
.y5a{bottom:409.042200px;}
.y223{bottom:411.353250px;}
.yf3{bottom:412.140600px;}
.y7c{bottom:415.437600px;}
.y25{bottom:419.321100px;}
.yc3{bottom:421.645500px;}
.y3e{bottom:423.818250px;}
.y121{bottom:424.281750px;}
.y1fc{bottom:426.284250px;}
.y1ea{bottom:426.669450px;}
.y20f{bottom:427.835700px;}
.y14b{bottom:427.853250px;}
.y1a4{bottom:427.853400px;}
.yb{bottom:429.469050px;}
.y59{bottom:430.642200px;}
.y222{bottom:432.953400px;}
.yf2{bottom:433.740600px;}
.y16a{bottom:433.976250px;}
.y7b{bottom:437.037600px;}
.y22f{bottom:437.508750px;}
.y112{bottom:438.571800px;}
.y1c1{bottom:440.931900px;}
.y4a{bottom:443.902800px;}
.y3d{bottom:445.418250px;}
.y120{bottom:445.881750px;}
.y1fb{bottom:447.884250px;}
.y1e9{bottom:448.269450px;}
.y14{bottom:448.868850px;}
.y14a{bottom:449.453400px;}
.ya{bottom:451.069050px;}
.y91{bottom:451.093350px;}
.y58{bottom:452.242200px;}
.yf1{bottom:455.340600px;}
.y1c0{bottom:458.221800px;}
.y7a{bottom:458.637600px;}
.y24{bottom:462.521100px;}
.yc2{bottom:464.845500px;}
.y3c{bottom:467.018250px;}
.y90{bottom:467.293350px;}
.y138{bottom:467.464200px;}
.y11f{bottom:467.481750px;}
.y1fa{bottom:469.484250px;}
.y1e8{bottom:469.869450px;}
.y13{bottom:470.468850px;}
.y111{bottom:470.749950px;}
.y20e{bottom:471.035700px;}
.y149{bottom:471.053400px;}
.y57{bottom:473.842050px;}
.y1bf{bottom:475.511700px;}
.y221{bottom:476.153250px;}
.y79{bottom:480.237600px;}
.y8f{bottom:483.493350px;}
.y23{bottom:484.121100px;}
.yc1{bottom:486.445500px;}
.y10e{bottom:486.936750px;}
.y10c{bottom:486.949950px;}
.y180{bottom:487.596600px;}
.y3b{bottom:488.618250px;}
.y137{bottom:489.064200px;}
.y11e{bottom:489.081750px;}
.y1f9{bottom:491.084250px;}
.y1e7{bottom:491.469450px;}
.y12{bottom:492.068850px;}
.y148{bottom:492.653250px;}
.y1a3{bottom:492.653400px;}
.y169{bottom:492.656400px;}
.y9{bottom:494.269050px;}
.y220{bottom:497.753250px;}
.y187{bottom:498.299550px;}
.yf0{bottom:498.540600px;}
.y8e{bottom:499.693350px;}
.y78{bottom:501.837600px;}
.y10d{bottom:503.136750px;}
.y10b{bottom:503.149950px;}
.y17f{bottom:503.796600px;}
.y22{bottom:505.721100px;}
.yc0{bottom:508.045500px;}
.y168{bottom:508.856400px;}
.y3a{bottom:510.218250px;}
.y136{bottom:510.664200px;}
.y11d{bottom:510.681750px;}
.y1f8{bottom:512.684250px;}
.y1e6{bottom:513.069450px;}
.y20d{bottom:514.235700px;}
.y147{bottom:514.253250px;}
.y1a2{bottom:514.253400px;}
.y56{bottom:517.042200px;}
.y186{bottom:519.899550px;}
.y17c{bottom:519.996600px;}
.yef{bottom:520.140600px;}
.y1be{bottom:522.152850px;}
.ye1{bottom:522.295800px;}
.ye3{bottom:522.309000px;}
.y77{bottom:523.437600px;}
.y1d8{bottom:523.630650px;}
.y167{bottom:525.056400px;}
.y1d0{bottom:526.591950px;}
.y21{bottom:527.321100px;}
.ybf{bottom:529.645500px;}
.y39{bottom:531.818250px;}
.y135{bottom:532.264200px;}
.y11c{bottom:532.281750px;}
.y1f7{bottom:534.284250px;}
.y1d7{bottom:534.430650px;}
.y1e5{bottom:534.669450px;}
.y20c{bottom:535.835700px;}
.y146{bottom:535.853250px;}
.y1a1{bottom:535.853400px;}
.y1bd{bottom:536.552850px;}
.y1cf{bottom:537.391950px;}
.y8{bottom:537.469050px;}
.ye0{bottom:538.495800px;}
.ye2{bottom:538.509000px;}
.y55{bottom:538.642200px;}
.y21f{bottom:540.953400px;}
.y166{bottom:541.256400px;}
.y185{bottom:541.499550px;}
.yee{bottom:541.740600px;}
.y1d3{bottom:542.066100px;}
.y1db{bottom:543.440700px;}
.yd5{bottom:544.998150px;}
.y76{bottom:545.037600px;}
.y1d6{bottom:545.230650px;}
.y1dd{bottom:547.824900px;}
.y1ce{bottom:548.191950px;}
.y20{bottom:548.921100px;}
.y1bc{bottom:550.952850px;}
.y1d2{bottom:552.866100px;}
.y38{bottom:553.418250px;}
.y134{bottom:553.864200px;}
.y11b{bottom:553.881750px;}
.y1da{bottom:554.240700px;}
.y1f6{bottom:555.884250px;}
.y1e4{bottom:556.269450px;}
.y145{bottom:557.453400px;}
.y1dc{bottom:558.624900px;}
.y1cd{bottom:558.991950px;}
.y54{bottom:560.242200px;}
.ydd{bottom:560.645400px;}
.yd4{bottom:561.198150px;}
.ydb{bottom:561.211350px;}
.y184{bottom:563.099550px;}
.yed{bottom:563.340600px;}
.y1d1{bottom:563.666100px;}
.y1d9{bottom:565.040700px;}
.y1bb{bottom:565.352850px;}
.y75{bottom:566.637600px;}
.y1d5{bottom:566.830650px;}
.y1f{bottom:570.521100px;}
.y1cc{bottom:575.116500px;}
.y133{bottom:575.464200px;}
.y11a{bottom:575.481750px;}
.ydc{bottom:576.845400px;}
.yd3{bottom:577.398150px;}
.yda{bottom:577.411350px;}
.y1f5{bottom:577.484250px;}
.y1d4{bottom:577.630650px;}
.y1e3{bottom:577.869450px;}
.y66{bottom:578.828100px;}
.y20b{bottom:579.035700px;}
.y199{bottom:579.035850px;}
.y144{bottom:579.053400px;}
.y1ba{bottom:579.752850px;}
.y7{bottom:580.669050px;}
.y53{bottom:581.842050px;}
.y21e{bottom:584.153250px;}
.y183{bottom:584.699550px;}
.y74{bottom:588.237600px;}
.y65{bottom:595.028100px;}
.y37{bottom:596.618250px;}
.y132{bottom:597.064200px;}
.y1f4{bottom:599.084250px;}
.y1e2{bottom:599.469450px;}
.y198{bottom:600.635850px;}
.yad{bottom:600.653250px;}
.y1a0{bottom:600.653400px;}
.y52{bottom:603.442050px;}
.y21d{bottom:605.753250px;}
.y182{bottom:606.299550px;}
.yec{bottom:606.540600px;}
.y1e{bottom:613.721100px;}
.y36{bottom:618.218250px;}
.y131{bottom:618.664200px;}
.y119{bottom:618.681750px;}
.y1f3{bottom:620.684250px;}
.y1e1{bottom:621.069450px;}
.y20a{bottom:622.235700px;}
.y197{bottom:622.235850px;}
.y9a{bottom:622.253250px;}
.y19f{bottom:622.253400px;}
.y21c{bottom:627.353250px;}
.y181{bottom:627.899550px;}
.yeb{bottom:628.140600px;}
.y73{bottom:631.437600px;}
.y6{bottom:633.213300px;}
.y1b9{bottom:633.728400px;}
.y1d{bottom:635.321100px;}
.y35{bottom:639.818250px;}
.y130{bottom:640.264200px;}
.y1f2{bottom:642.284250px;}
.y1e0{bottom:642.669450px;}
.y209{bottom:643.835700px;}
.y196{bottom:643.835850px;}
.y99{bottom:643.853250px;}
.y19e{bottom:643.853400px;}
.y51{bottom:646.642200px;}
.y21b{bottom:648.953400px;}
.y159{bottom:649.681500px;}
.yea{bottom:649.740600px;}
.y1b8{bottom:651.018450px;}
.y72{bottom:653.037600px;}
.y1c{bottom:656.921100px;}
.y34{bottom:661.418250px;}
.y12f{bottom:661.864200px;}
.y118{bottom:661.881750px;}
.y195{bottom:665.435850px;}
.y98{bottom:665.453400px;}
.y50{bottom:668.242200px;}
.y21a{bottom:670.553400px;}
.ye9{bottom:671.340600px;}
.y71{bottom:674.637600px;}
.y1b{bottom:678.521100px;}
.y33{bottom:683.018250px;}
.y12e{bottom:683.464200px;}
.y117{bottom:683.481750px;}
.y1df{bottom:685.869450px;}
.y208{bottom:687.035700px;}
.y194{bottom:687.035850px;}
.y97{bottom:687.053400px;}
.y4f{bottom:689.842050px;}
.y219{bottom:692.153250px;}
.ye8{bottom:692.940600px;}
.y70{bottom:696.237600px;}
.y1a{bottom:700.121100px;}
.y12d{bottom:705.064200px;}
.y116{bottom:705.081750px;}
.y207{bottom:708.635700px;}
.yac{bottom:708.653250px;}
.y19d{bottom:708.653400px;}
.y4e{bottom:711.442050px;}
.y218{bottom:713.753250px;}
.ye7{bottom:714.540600px;}
.y1b7{bottom:716.639400px;}
.y6f{bottom:717.837600px;}
.y19{bottom:721.721100px;}
.y12c{bottom:726.664200px;}
.y115{bottom:726.681750px;}
.y49{bottom:728.173950px;}
.y1de{bottom:729.069450px;}
.y193{bottom:730.235850px;}
.y96{bottom:730.253250px;}
.y19c{bottom:730.253400px;}
.y4d{bottom:733.042200px;}
.y217{bottom:735.353250px;}
.ye6{bottom:736.140600px;}
.y6e{bottom:739.437600px;}
.y18{bottom:743.321100px;}
.y12b{bottom:748.264200px;}
.y114{bottom:748.281750px;}
.y206{bottom:751.835700px;}
.y192{bottom:751.835850px;}
.y95{bottom:751.853250px;}
.y19b{bottom:751.853400px;}
.y4c{bottom:754.642200px;}
.y216{bottom:756.953400px;}
.ye5{bottom:757.740600px;}
.y6d{bottom:761.037600px;}
.y17{bottom:764.921100px;}
.y12a{bottom:769.864200px;}
.y113{bottom:769.881750px;}
.y205{bottom:773.435700px;}
.y191{bottom:773.435850px;}
.y94{bottom:773.453400px;}
.y4b{bottom:776.242200px;}
.y215{bottom:778.553250px;}
.ye4{bottom:779.340600px;}
.y6c{bottom:782.637600px;}
.y190{bottom:795.035850px;}
.y93{bottom:795.053250px;}
.y204{bottom:816.635700px;}
.y18f{bottom:816.635850px;}
.y92{bottom:816.653250px;}
.y19a{bottom:816.653400px;}
.y1cb{bottom:816.943350px;}
.y32{bottom:816.943500px;}
.h12{height:27.623610px;}
.h10{height:29.399836px;}
.h16{height:32.220000px;}
.hc{height:37.494141px;}
.hb{height:38.448000px;}
.h15{height:42.960000px;}
.h8{height:47.381836px;}
.h13{height:47.961914px;}
.hd{height:49.145236px;}
.h7{height:49.992188px;}
.h14{height:51.581535px;}
.h3{height:52.560000px;}
.h5{height:59.976000px;}
.h11{height:60.807480px;}
.h2{height:61.320000px;}
.h6{height:63.175781px;}
.h9{height:63.949219px;}
.h4{height:64.440000px;}
.he{height:67.633636px;}
.ha{height:74.820586px;}
.hf{height:96.460036px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x9{left:63.779550px;}
.x23{left:70.254450px;}
.x28{left:71.601750px;}
.x27{left:75.203850px;}
.x29{left:76.248300px;}
.x2c{left:79.403850px;}
.x24{left:80.592600px;}
.x1c{left:85.039350px;}
.x25{left:86.625750px;}
.x2a{left:87.969450px;}
.x1{left:90.354300px;}
.x26{left:91.497600px;}
.x2b{left:92.767350px;}
.x2d{left:96.520500px;}
.x41{left:119.055150px;}
.x40{left:151.465350px;}
.x30{left:161.789850px;}
.x2f{left:165.916050px;}
.x31{left:172.301550px;}
.x22{left:175.112250px;}
.x2{left:195.680400px;}
.x33{left:272.056200px;}
.x32{left:273.383850px;}
.x34{left:281.443200px;}
.x1e{left:287.007900px;}
.x45{left:291.577950px;}
.x21{left:316.771650px;}
.x42{left:343.986150px;}
.x16{left:345.472500px;}
.x14{left:360.631200px;}
.x44{left:379.412850px;}
.x8{left:417.685800px;}
.x1a{left:427.819200px;}
.x43{left:443.119350px;}
.x35{left:482.166150px;}
.x36{left:489.336150px;}
.x37{left:497.310150px;}
.x38{left:515.026350px;}
.x3f{left:592.880850px;}
.x2e{left:618.753000px;}
.x12{left:643.895100px;}
.x5{left:646.299150px;}
.xb{left:647.537250px;}
.x20{left:667.558950px;}
.x3e{left:785.444850px;}
.x3c{left:786.939300px;}
.x3d{left:794.444850px;}
.x3a{left:800.939400px;}
.x4{left:809.433000px;}
.x3{left:818.433000px;}
.x10{left:823.839600px;}
.x39{left:826.530750px;}
.xe{left:834.048000px;}
.xa{left:844.139100px;}
.x18{left:847.742100px;}
.x6{left:882.490650px;}
.xc{left:891.877950px;}
.x17{left:905.074050px;}
.x3b{left:910.930200px;}
.x13{left:921.937200px;}
.x15{left:927.992250px;}
.x19{left:943.936950px;}
.x1b{left:981.928350px;}
.x1d{left:1019.409450px;}
.x11{left:1023.554100px;}
.xd{left:1025.046000px;}
.xf{left:1029.464850px;}
.x1f{left:1045.984350px;}
.x7{left:1177.795350px;}
@media print{
.v5{vertical-align:-21.312000pt;}
.v6{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.567467pt;}
.v7{vertical-align:15.984000pt;}
.v2{vertical-align:18.001600pt;}
.v4{vertical-align:21.312000pt;}
.v3{vertical-align:43.625067pt;}
.ls1c{letter-spacing:-5.312000pt;}
.ls1b{letter-spacing:-5.184000pt;}
.ls15{letter-spacing:-3.904000pt;}
.ls21{letter-spacing:-3.392000pt;}
.lsb{letter-spacing:-3.200000pt;}
.ls1d{letter-spacing:-2.276032pt;}
.lse{letter-spacing:-1.920000pt;}
.ls7{letter-spacing:-1.776000pt;}
.ls23{letter-spacing:-1.440000pt;}
.ls1e{letter-spacing:-1.035408pt;}
.ls14{letter-spacing:-1.024000pt;}
.ls2{letter-spacing:-0.960000pt;}
.ls20{letter-spacing:-0.896000pt;}
.ls17{letter-spacing:-0.839520pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.559680pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.447744pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.195888pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.328533pt;}
.ls12{letter-spacing:0.619200pt;}
.ls1{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.675200pt;}
.ls27{letter-spacing:1.124800pt;}
.ls26{letter-spacing:1.134933pt;}
.ls24{letter-spacing:1.440000pt;}
.ls3{letter-spacing:1.592000pt;}
.ls25{letter-spacing:2.240000pt;}
.ls29{letter-spacing:2.368000pt;}
.ls6{letter-spacing:2.498133pt;}
.ls5{letter-spacing:2.498667pt;}
.ls2a{letter-spacing:3.968000pt;}
.ls28{letter-spacing:4.672000pt;}
.ls4{letter-spacing:15.474667pt;}
.ws13b{word-spacing:-20.672000pt;}
.ws13d{word-spacing:-19.968000pt;}
.ws13c{word-spacing:-18.368000pt;}
.ws123{word-spacing:-18.240000pt;}
.ws3e{word-spacing:-16.000000pt;}
.wsd4{word-spacing:-15.872000pt;}
.ws9d{word-spacing:-15.744000pt;}
.ws82{word-spacing:-15.488000pt;}
.ws9f{word-spacing:-15.360000pt;}
.ws6b{word-spacing:-14.528000pt;}
.ws11e{word-spacing:-13.883149pt;}
.wsbd{word-spacing:-12.096000pt;}
.ws25{word-spacing:-12.000000pt;}
.wsd5{word-spacing:-10.816000pt;}
.wsd6{word-spacing:-10.688000pt;}
.ws9e{word-spacing:-9.328000pt;}
.ws73{word-spacing:-9.088000pt;}
.ws72{word-spacing:-7.936000pt;}
.ws19{word-spacing:-7.296000pt;}
.ws108{word-spacing:-7.104000pt;}
.wsbe{word-spacing:-6.996000pt;}
.wsdb{word-spacing:-6.848000pt;}
.wse{word-spacing:-6.528000pt;}
.wsda{word-spacing:-6.272000pt;}
.wsbf{word-spacing:-6.156480pt;}
.ws10b{word-spacing:-6.080000pt;}
.ws8b{word-spacing:-6.016000pt;}
.wsd7{word-spacing:-5.960592pt;}
.ws135{word-spacing:-5.888000pt;}
.ws64{word-spacing:-5.312000pt;}
.ws49{word-spacing:-5.056000pt;}
.ws28{word-spacing:-4.992000pt;}
.ws109{word-spacing:-4.736000pt;}
.ws13e{word-spacing:-4.672000pt;}
.ws96{word-spacing:-4.544000pt;}
.ws78{word-spacing:-4.224000pt;}
.wsd3{word-spacing:-4.160000pt;}
.ws92{word-spacing:-4.096000pt;}
.ws99{word-spacing:-4.080000pt;}
.ws10a{word-spacing:-4.032000pt;}
.ws40{word-spacing:-3.968000pt;}
.wsa0{word-spacing:-3.648000pt;}
.wsfe{word-spacing:-3.584000pt;}
.ws13f{word-spacing:-3.520000pt;}
.ws121{word-spacing:-3.456000pt;}
.ws106{word-spacing:-3.264000pt;}
.ws57{word-spacing:-3.200000pt;}
.ws127{word-spacing:-3.136000pt;}
.ws26{word-spacing:-3.008000pt;}
.wsc{word-spacing:-2.944000pt;}
.ws80{word-spacing:-2.880000pt;}
.ws4a{word-spacing:-2.816000pt;}
.wsc3{word-spacing:-2.752000pt;}
.wsa{word-spacing:-2.688000pt;}
.wsa4{word-spacing:-2.624000pt;}
.ws33{word-spacing:-2.560000pt;}
.ws61{word-spacing:-2.496000pt;}
.ws7e{word-spacing:-2.448000pt;}
.ws105{word-spacing:-2.432000pt;}
.wse3{word-spacing:-2.368000pt;}
.ws12c{word-spacing:-2.304000pt;}
.wse8{word-spacing:-2.240000pt;}
.wsd2{word-spacing:-2.176000pt;}
.ws3c{word-spacing:-2.160000pt;}
.ws60{word-spacing:-2.112000pt;}
.wsea{word-spacing:-2.048000pt;}
.ws90{word-spacing:-1.984000pt;}
.ws54{word-spacing:-1.920000pt;}
.wsb5{word-spacing:-1.824000pt;}
.ws16{word-spacing:-1.792000pt;}
.ws112{word-spacing:-1.776000pt;}
.wsd{word-spacing:-1.664000pt;}
.ws34{word-spacing:-1.600000pt;}
.ws2d{word-spacing:-1.536000pt;}
.ws95{word-spacing:-1.440000pt;}
.ws46{word-spacing:-1.408000pt;}
.ws9c{word-spacing:-1.347840pt;}
.ws117{word-spacing:-1.344000pt;}
.ws115{word-spacing:-1.280000pt;}
.ws5b{word-spacing:-1.216000pt;}
.ws2{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.024000pt;}
.wsfa{word-spacing:-1.008000pt;}
.ws55{word-spacing:-0.960000pt;}
.ws6f{word-spacing:-0.896000pt;}
.ws5d{word-spacing:-0.864000pt;}
.ws1{word-spacing:-0.704000pt;}
.ws1f{word-spacing:-0.640000pt;}
.wsb9{word-spacing:-0.624000pt;}
.ws23{word-spacing:-0.576000pt;}
.ws89{word-spacing:-0.512000pt;}
.wsd1{word-spacing:-0.448000pt;}
.ws2c{word-spacing:-0.384000pt;}
.wsf7{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.256000pt;}
.ws4d{word-spacing:-0.144000pt;}
.wsa6{word-spacing:-0.128000pt;}
.ws120{word-spacing:-0.096000pt;}
.ws18{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.064000pt;}
.ws32{word-spacing:0.128000pt;}
.ws111{word-spacing:0.192000pt;}
.wse4{word-spacing:0.195888pt;}
.wsa8{word-spacing:0.256000pt;}
.ws5f{word-spacing:0.320000pt;}
.wsca{word-spacing:0.384000pt;}
.wse9{word-spacing:0.447744pt;}
.ws8d{word-spacing:0.448000pt;}
.wsb4{word-spacing:0.559680pt;}
.ws66{word-spacing:0.576000pt;}
.wsf0{word-spacing:0.640000pt;}
.ws62{word-spacing:0.768000pt;}
.ws10d{word-spacing:0.816000pt;}
.ws124{word-spacing:0.832000pt;}
.ws8{word-spacing:0.896000pt;}
.ws15{word-spacing:0.960000pt;}
.wsc7{word-spacing:1.024000pt;}
.ws41{word-spacing:1.088000pt;}
.wsef{word-spacing:1.216000pt;}
.wscd{word-spacing:1.280000pt;}
.wsb8{word-spacing:1.296000pt;}
.ws9a{word-spacing:1.392000pt;}
.ws4b{word-spacing:1.408000pt;}
.wsfc{word-spacing:1.440000pt;}
.ws1b{word-spacing:1.472000pt;}
.ws126{word-spacing:1.536000pt;}
.ws31{word-spacing:1.600000pt;}
.wsf4{word-spacing:1.664000pt;}
.ws37{word-spacing:1.728000pt;}
.ws6c{word-spacing:1.776000pt;}
.wsf{word-spacing:1.792000pt;}
.wsfd{word-spacing:1.824000pt;}
.wsa1{word-spacing:1.856000pt;}
.wsed{word-spacing:1.920000pt;}
.ws6a{word-spacing:1.984000pt;}
.wsae{word-spacing:2.048000pt;}
.ws6d{word-spacing:2.112000pt;}
.ws27{word-spacing:2.176000pt;}
.wsc1{word-spacing:2.240000pt;}
.wsdf{word-spacing:2.276032pt;}
.ws10c{word-spacing:2.304000pt;}
.wsb6{word-spacing:2.352000pt;}
.wsf5{word-spacing:2.368000pt;}
.ws1a{word-spacing:2.432000pt;}
.ws81{word-spacing:2.496000pt;}
.wsa2{word-spacing:2.560000pt;}
.wsd8{word-spacing:2.624000pt;}
.wse2{word-spacing:2.688000pt;}
.ws14{word-spacing:2.752000pt;}
.wsf6{word-spacing:2.880000pt;}
.wsc2{word-spacing:2.944000pt;}
.ws75{word-spacing:3.008000pt;}
.ws1d{word-spacing:3.072000pt;}
.ws97{word-spacing:3.136000pt;}
.wsa3{word-spacing:3.200000pt;}
.ws79{word-spacing:3.264000pt;}
.ws9b{word-spacing:3.312000pt;}
.wsac{word-spacing:3.392000pt;}
.wsba{word-spacing:3.456000pt;}
.wsb7{word-spacing:3.504000pt;}
.ws3{word-spacing:3.520000pt;}
.wscb{word-spacing:3.584000pt;}
.wsce{word-spacing:3.712000pt;}
.ws5a{word-spacing:3.776000pt;}
.ws56{word-spacing:3.904000pt;}
.wsad{word-spacing:3.968000pt;}
.ws58{word-spacing:4.032000pt;}
.ws39{word-spacing:4.224000pt;}
.ws2a{word-spacing:4.352000pt;}
.ws2b{word-spacing:4.416000pt;}
.wsb{word-spacing:4.480000pt;}
.ws85{word-spacing:4.544000pt;}
.ws7b{word-spacing:4.608000pt;}
.ws45{word-spacing:4.672000pt;}
.ws119{word-spacing:4.736000pt;}
.ws22{word-spacing:4.800000pt;}
.wse1{word-spacing:4.928000pt;}
.ws3a{word-spacing:5.088000pt;}
.ws8c{word-spacing:5.120000pt;}
.wsbb{word-spacing:5.136000pt;}
.wsdd{word-spacing:5.184000pt;}
.ws91{word-spacing:5.248000pt;}
.ws4c{word-spacing:5.312000pt;}
.wsf1{word-spacing:5.376000pt;}
.ws68{word-spacing:5.504000pt;}
.ws50{word-spacing:5.664000pt;}
.wsee{word-spacing:5.696000pt;}
.wscc{word-spacing:5.760000pt;}
.ws93{word-spacing:5.808000pt;}
.wsf8{word-spacing:5.952000pt;}
.wsbc{word-spacing:6.000000pt;}
.wsaf{word-spacing:6.016000pt;}
.ws29{word-spacing:6.080000pt;}
.ws98{word-spacing:6.144000pt;}
.ws4f{word-spacing:6.192000pt;}
.wsd9{word-spacing:6.208000pt;}
.wsc8{word-spacing:6.336000pt;}
.ws113{word-spacing:6.384000pt;}
.ws43{word-spacing:6.400000pt;}
.wsd0{word-spacing:6.464000pt;}
.ws12{word-spacing:6.528000pt;}
.ws104{word-spacing:6.720000pt;}
.wsa7{word-spacing:6.784000pt;}
.ws118{word-spacing:7.040000pt;}
.ws5e{word-spacing:7.104000pt;}
.ws59{word-spacing:7.232000pt;}
.ws24{word-spacing:7.296000pt;}
.wsff{word-spacing:7.360000pt;}
.ws10{word-spacing:7.424000pt;}
.ws130{word-spacing:7.488000pt;}
.ws77{word-spacing:7.552000pt;}
.ws88{word-spacing:7.616000pt;}
.ws1e{word-spacing:7.872000pt;}
.ws35{word-spacing:8.000000pt;}
.ws3b{word-spacing:8.064000pt;}
.ws134{word-spacing:8.128000pt;}
.ws11{word-spacing:8.256000pt;}
.ws12b{word-spacing:8.384000pt;}
.ws36{word-spacing:8.448000pt;}
.ws107{word-spacing:8.512000pt;}
.wsfb{word-spacing:8.576000pt;}
.wsab{word-spacing:8.640000pt;}
.ws76{word-spacing:8.704000pt;}
.ws30{word-spacing:8.768000pt;}
.ws94{word-spacing:8.784000pt;}
.ws128{word-spacing:8.960000pt;}
.ws13{word-spacing:9.088000pt;}
.wsf2{word-spacing:9.152000pt;}
.ws87{word-spacing:9.280000pt;}
.ws7c{word-spacing:9.312000pt;}
.wsb2{word-spacing:9.408000pt;}
.ws4{word-spacing:9.472000pt;}
.ws67{word-spacing:9.536000pt;}
.ws13a{word-spacing:9.600000pt;}
.ws65{word-spacing:9.664000pt;}
.ws5{word-spacing:9.792000pt;}
.wsc0{word-spacing:9.984000pt;}
.ws7d{word-spacing:10.176000pt;}
.ws42{word-spacing:10.240000pt;}
.ws8f{word-spacing:10.368000pt;}
.wsec{word-spacing:10.432000pt;}
.ws101{word-spacing:10.464000pt;}
.wsde{word-spacing:10.496000pt;}
.ws11a{word-spacing:10.624000pt;}
.ws125{word-spacing:10.816000pt;}
.ws7f{word-spacing:10.848000pt;}
.wsb3{word-spacing:10.880000pt;}
.ws8e{word-spacing:10.944000pt;}
.wse6{word-spacing:11.008000pt;}
.ws10e{word-spacing:11.088000pt;}
.ws5c{word-spacing:11.456000pt;}
.ws86{word-spacing:11.520000pt;}
.ws7{word-spacing:11.648000pt;}
.ws12d{word-spacing:11.712000pt;}
.ws69{word-spacing:11.776000pt;}
.wsc9{word-spacing:11.840000pt;}
.ws83{word-spacing:11.952000pt;}
.ws11c{word-spacing:11.968000pt;}
.wsb1{word-spacing:12.096000pt;}
.wsf9{word-spacing:12.224000pt;}
.ws71{word-spacing:12.288000pt;}
.ws114{word-spacing:12.416000pt;}
.ws3d{word-spacing:12.432000pt;}
.wsdc{word-spacing:12.544000pt;}
.ws53{word-spacing:12.672000pt;}
.ws116{word-spacing:12.864000pt;}
.ws137{word-spacing:13.120000pt;}
.ws12e{word-spacing:13.184000pt;}
.wsb0{word-spacing:13.440000pt;}
.ws70{word-spacing:13.504000pt;}
.ws11b{word-spacing:13.568000pt;}
.wsa9{word-spacing:13.696000pt;}
.ws129{word-spacing:13.824000pt;}
.ws3f{word-spacing:14.208000pt;}
.ws12f{word-spacing:14.336000pt;}
.ws11d{word-spacing:14.496000pt;}
.wsc5{word-spacing:14.528000pt;}
.ws136{word-spacing:14.720000pt;}
.wsaa{word-spacing:14.848000pt;}
.ws12a{word-spacing:15.040000pt;}
.wsa5{word-spacing:15.104000pt;}
.ws8a{word-spacing:15.424000pt;}
.ws7a{word-spacing:15.456000pt;}
.wsf3{word-spacing:15.552000pt;}
.ws103{word-spacing:15.744000pt;}
.ws48{word-spacing:15.808000pt;}
.wse7{word-spacing:16.064000pt;}
.ws133{word-spacing:16.192000pt;}
.wse0{word-spacing:16.384000pt;}
.wseb{word-spacing:16.448000pt;}
.ws131{word-spacing:16.704000pt;}
.wse5{word-spacing:16.832000pt;}
.ws17{word-spacing:17.856000pt;}
.ws52{word-spacing:18.144000pt;}
.ws74{word-spacing:18.304000pt;}
.ws63{word-spacing:18.368000pt;}
.ws47{word-spacing:18.496000pt;}
.ws138{word-spacing:19.072000pt;}
.wscf{word-spacing:19.584000pt;}
.ws2e{word-spacing:19.840000pt;}
.ws6{word-spacing:20.416000pt;}
.ws20{word-spacing:20.608000pt;}
.ws132{word-spacing:20.736000pt;}
.ws100{word-spacing:21.408000pt;}
.ws44{word-spacing:21.504000pt;}
.wsc6{word-spacing:22.144000pt;}
.ws139{word-spacing:22.592000pt;}
.ws6e{word-spacing:22.848000pt;}
.ws110{word-spacing:22.944000pt;}
.ws10f{word-spacing:23.232000pt;}
.ws21{word-spacing:23.488000pt;}
.ws84{word-spacing:23.904000pt;}
.ws51{word-spacing:25.728000pt;}
.ws38{word-spacing:29.328000pt;}
.ws2f{word-spacing:29.824000pt;}
.ws102{word-spacing:30.144000pt;}
.ws4e{word-spacing:58.032000pt;}
.ws122{word-spacing:176.000000pt;}
.ws11f{word-spacing:622.173456pt;}
._1b{margin-left:-2797.342267pt;}
._1d{margin-left:-944.022595pt;}
._19{margin-left:-933.365861pt;}
._21{margin-left:-177.158400pt;}
._20{margin-left:-176.000000pt;}
._d{margin-left:-24.644800pt;}
._b{margin-left:-15.596800pt;}
._22{margin-left:-8.555733pt;}
._4{margin-left:-7.500800pt;}
._2{margin-left:-6.592000pt;}
._0{margin-left:-5.248000pt;}
._5{margin-left:-3.488000pt;}
._3{margin-left:-2.355200pt;}
._1{margin-left:-1.286400pt;}
._6{width:1.152000pt;}
._e{width:2.073600pt;}
._8{width:3.136000pt;}
._7{width:4.147200pt;}
._a{width:5.184000pt;}
._17{width:6.285333pt;}
._f{width:7.246933pt;}
._c{width:8.306133pt;}
._15{width:9.582933pt;}
._9{width:11.264000pt;}
._13{width:12.185600pt;}
._18{width:13.091733pt;}
._23{width:14.168000pt;}
._12{width:15.065600pt;}
._24{width:17.556800pt;}
._10{width:93.590400pt;}
._16{width:354.883616pt;}
._1f{width:661.723464pt;}
._11{width:1099.895467pt;}
._1a{width:1339.915851pt;}
._1c{width:1355.900288pt;}
._1e{width:1364.531581pt;}
._14{width:1420.293867pt;}
.fs5{font-size:27.984000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:37.312000pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:51.229333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:24.183600pt;}
.y23b{bottom:31.617600pt;}
.y17b{bottom:36.803867pt;}
.y6b{bottom:37.740400pt;}
.y1b6{bottom:45.350933pt;}
.y23a{bottom:46.017600pt;}
.y8c{bottom:46.671600pt;}
.y17a{bottom:47.208000pt;}
.y6a{bottom:52.140400pt;}
.y203{bottom:53.914000pt;}
.y1b3{bottom:56.184533pt;}
.yd2{bottom:58.391200pt;}
.y140{bottom:58.479467pt;}
.y239{bottom:60.417600pt;}
.y8b{bottom:61.071600pt;}
.y1b5{bottom:63.746933pt;}
.y163{bottom:65.312400pt;}
.y177{bottom:65.603867pt;}
.y179{bottom:65.604000pt;}
.y1af{bottom:66.086800pt;}
.y1ca{bottom:68.704933pt;}
.y237{bottom:69.412800pt;}
.ydf{bottom:72.299867pt;}
.yd1{bottom:72.791200pt;}
.y13f{bottom:72.879467pt;}
.y202{bottom:73.114000pt;}
.y1b2{bottom:74.580533pt;}
.y238{bottom:74.817600pt;}
.y8d{bottom:75.459867pt;}
.y8a{bottom:75.471600pt;}
.y22e{bottom:77.647333pt;}
.yab{bottom:77.876267pt;}
.y1b4{bottom:78.146933pt;}
.yb0{bottom:78.171467pt;}
.y162{bottom:79.712400pt;}
.y176{bottom:80.003867pt;}
.y178{bottom:80.004000pt;}
.y17e{bottom:80.797200pt;}
.y165{bottom:82.420667pt;}
.y247{bottom:83.271067pt;}
.y236{bottom:83.812800pt;}
.y1c9{bottom:84.073733pt;}
.y1ae{bottom:84.482800pt;}
.y24b{bottom:84.530933pt;}
.y1b1{bottom:84.984533pt;}
.y24f{bottom:85.790800pt;}
.y257{bottom:86.420667pt;}
.yde{bottom:86.699867pt;}
.y110{bottom:86.808533pt;}
.y253{bottom:87.050667pt;}
.yd0{bottom:87.191200pt;}
.y13e{bottom:87.279467pt;}
.y5{bottom:89.370000pt;}
.y87{bottom:89.859867pt;}
.y89{bottom:89.871600pt;}
.y201{bottom:92.314000pt;}
.yaf{bottom:92.571467pt;}
.yb2{bottom:92.583200pt;}
.y17d{bottom:95.197200pt;}
.y22d{bottom:96.847467pt;}
.yaa{bottom:97.076400pt;}
.y246{bottom:97.671067pt;}
.y235{bottom:98.212800pt;}
.y103{bottom:98.865200pt;}
.y24a{bottom:98.930933pt;}
.y1c8{bottom:99.442667pt;}
.y233{bottom:99.649067pt;}
.y24e{bottom:100.190800pt;}
.y256{bottom:100.820667pt;}
.y10f{bottom:101.208533pt;}
.y252{bottom:101.450667pt;}
.y13d{bottom:101.679467pt;}
.y1b0{bottom:103.380533pt;}
.y31{bottom:103.929867pt;}
.y86{bottom:104.259867pt;}
.y88{bottom:104.271600pt;}
.yae{bottom:106.971467pt;}
.yb1{bottom:106.983200pt;}
.y4{bottom:108.570000pt;}
.y158{bottom:111.514133pt;}
.y245{bottom:112.071067pt;}
.y234{bottom:112.612800pt;}
.y100{bottom:113.253467pt;}
.y102{bottom:113.265200pt;}
.y249{bottom:113.330933pt;}
.y232{bottom:114.049067pt;}
.y24d{bottom:114.590800pt;}
.y255{bottom:115.220667pt;}
.y251{bottom:115.850667pt;}
.y22c{bottom:116.047467pt;}
.ya9{bottom:116.276267pt;}
.yff{bottom:116.747200pt;}
.y243{bottom:118.389200pt;}
.y18a{bottom:119.679600pt;}
.y13c{bottom:120.075467pt;}
.y30{bottom:123.129867pt;}
.ycf{bottom:125.196000pt;}
.y244{bottom:126.471067pt;}
.y101{bottom:127.665200pt;}
.y248{bottom:127.730933pt;}
.y3{bottom:127.770000pt;}
.y231{bottom:128.449067pt;}
.y24c{bottom:128.990800pt;}
.y254{bottom:129.620667pt;}
.y250{bottom:130.250667pt;}
.y141{bottom:130.479467pt;}
.y157{bottom:130.714133pt;}
.y242{bottom:132.789200pt;}
.y189{bottom:134.079600pt;}
.y13b{bottom:134.475467pt;}
.ya8{bottom:135.476267pt;}
.yfe{bottom:135.947200pt;}
.ybe{bottom:140.032800pt;}
.y1ad{bottom:140.350667pt;}
.y230{bottom:142.849067pt;}
.yce{bottom:144.396000pt;}
.y241{bottom:147.189200pt;}
.y188{bottom:148.479600pt;}
.y13a{bottom:148.875467pt;}
.y1c7{bottom:149.749733pt;}
.y156{bottom:149.914000pt;}
.y64{bottom:152.392933pt;}
.y22b{bottom:154.447333pt;}
.ya7{bottom:154.676267pt;}
.y1ac{bottom:154.750667pt;}
.yfd{bottom:155.147200pt;}
.y175{bottom:155.356667pt;}
.ybd{bottom:159.232800pt;}
.y240{bottom:161.589200pt;}
.y23f{bottom:162.074267pt;}
.y139{bottom:163.275467pt;}
.ycd{bottom:163.596000pt;}
.y1c6{bottom:165.118667pt;}
.y48{bottom:165.527333pt;}
.y2{bottom:166.170000pt;}
.y1f1{bottom:168.061733pt;}
.y155{bottom:169.114000pt;}
.y1aa{bottom:169.114133pt;}
.y1ab{bottom:169.150667pt;}
.y63{bottom:171.593067pt;}
.y22a{bottom:173.647333pt;}
.ya6{bottom:173.876267pt;}
.yfc{bottom:174.347200pt;}
.y174{bottom:174.556667pt;}
.y23e{bottom:176.474267pt;}
.y85{bottom:177.277867pt;}
.ybc{bottom:178.432800pt;}
.y1c5{bottom:180.487467pt;}
.y2f{bottom:180.729867pt;}
.ycc{bottom:182.796000pt;}
.y47{bottom:184.727333pt;}
.y1{bottom:185.370000pt;}
.y1f0{bottom:187.261733pt;}
.y154{bottom:188.314000pt;}
.y1a9{bottom:188.314133pt;}
.y11{bottom:189.750267pt;}
.y62{bottom:190.793067pt;}
.y23d{bottom:190.874267pt;}
.y229{bottom:192.847467pt;}
.ya5{bottom:193.076400pt;}
.yfb{bottom:193.547200pt;}
.y173{bottom:193.756667pt;}
.y84{bottom:196.477867pt;}
.ybb{bottom:197.632800pt;}
.y2e{bottom:199.929867pt;}
.y143{bottom:201.519867pt;}
.ycb{bottom:201.996000pt;}
.y46{bottom:203.927333pt;}
.y129{bottom:204.339333pt;}
.y23c{bottom:205.274267pt;}
.y153{bottom:207.514133pt;}
.y160{bottom:208.546800pt;}
.y61{bottom:209.993067pt;}
.yfa{bottom:212.747200pt;}
.y172{bottom:212.956667pt;}
.y83{bottom:215.677867pt;}
.y142{bottom:215.919867pt;}
.yba{bottom:216.832800pt;}
.y2d{bottom:219.129867pt;}
.yca{bottom:221.196000pt;}
.y45{bottom:223.127333pt;}
.y128{bottom:223.539333pt;}
.y164{bottom:226.714133pt;}
.y15f{bottom:227.746800pt;}
.y10{bottom:228.150267pt;}
.y60{bottom:229.192933pt;}
.y228{bottom:231.247333pt;}
.ya4{bottom:231.476267pt;}
.yf9{bottom:231.947200pt;}
.y171{bottom:232.156667pt;}
.y82{bottom:234.877867pt;}
.yb9{bottom:236.032800pt;}
.y1c4{bottom:238.303733pt;}
.y2c{bottom:238.329867pt;}
.yc9{bottom:240.396000pt;}
.y44{bottom:242.327333pt;}
.y127{bottom:242.739333pt;}
.y200{bottom:244.519333pt;}
.y1ef{bottom:244.861733pt;}
.y10a{bottom:245.680267pt;}
.y214{bottom:245.898400pt;}
.y152{bottom:245.914000pt;}
.y1a8{bottom:245.914133pt;}
.y15e{bottom:246.946800pt;}
.y5f{bottom:248.392933pt;}
.y227{bottom:250.447333pt;}
.ya3{bottom:250.676267pt;}
.y170{bottom:251.356667pt;}
.y1c3{bottom:253.672533pt;}
.y81{bottom:254.077867pt;}
.yb8{bottom:255.232800pt;}
.y2b{bottom:257.529867pt;}
.y43{bottom:261.527333pt;}
.y126{bottom:261.939333pt;}
.y1ff{bottom:263.719333pt;}
.y1ee{bottom:264.061733pt;}
.y109{bottom:264.880267pt;}
.y213{bottom:265.098400pt;}
.y151{bottom:265.114000pt;}
.y1a7{bottom:265.114133pt;}
.y15d{bottom:266.146800pt;}
.yf{bottom:266.550267pt;}
.y5e{bottom:267.593067pt;}
.y226{bottom:269.647333pt;}
.ya2{bottom:269.876267pt;}
.yf8{bottom:270.347200pt;}
.y16f{bottom:270.556667pt;}
.y80{bottom:273.277867pt;}
.yb7{bottom:274.432800pt;}
.y2a{bottom:276.729867pt;}
.yc8{bottom:278.796000pt;}
.y42{bottom:280.727333pt;}
.y125{bottom:281.139333pt;}
.y1fe{bottom:282.919333pt;}
.y1ed{bottom:283.261733pt;}
.y108{bottom:284.080267pt;}
.y150{bottom:284.314000pt;}
.y1a6{bottom:284.314133pt;}
.y15c{bottom:285.346800pt;}
.y5d{bottom:286.793067pt;}
.yd7{bottom:288.224267pt;}
.yd9{bottom:288.236000pt;}
.ya1{bottom:289.076400pt;}
.yf7{bottom:289.547200pt;}
.y16e{bottom:289.756667pt;}
.y18e{bottom:291.947733pt;}
.y7f{bottom:292.477867pt;}
.y69{bottom:293.576667pt;}
.yb6{bottom:293.632800pt;}
.y29{bottom:295.929867pt;}
.yc7{bottom:297.996000pt;}
.y41{bottom:299.927333pt;}
.y124{bottom:300.339333pt;}
.yd6{bottom:302.624267pt;}
.yd8{bottom:302.636000pt;}
.y107{bottom:303.280267pt;}
.y212{bottom:303.498400pt;}
.y14f{bottom:303.514133pt;}
.y15b{bottom:304.546800pt;}
.ye{bottom:304.950267pt;}
.y18d{bottom:306.347733pt;}
.y68{bottom:307.976667pt;}
.yb4{bottom:308.016267pt;}
.y225{bottom:308.047467pt;}
.ya0{bottom:308.276267pt;}
.yf6{bottom:308.747200pt;}
.y16d{bottom:308.956667pt;}
.y7e{bottom:311.677867pt;}
.y28{bottom:315.129867pt;}
.yc6{bottom:317.196000pt;}
.y123{bottom:319.539333pt;}
.y18c{bottom:320.747733pt;}
.y1ec{bottom:321.661733pt;}
.yb5{bottom:322.012800pt;}
.y67{bottom:322.376667pt;}
.yb3{bottom:322.416267pt;}
.y106{bottom:322.480267pt;}
.y211{bottom:322.698400pt;}
.y14e{bottom:322.714133pt;}
.y15a{bottom:323.746800pt;}
.y9f{bottom:324.180667pt;}
.y5c{bottom:325.192933pt;}
.y224{bottom:327.247333pt;}
.yf5{bottom:327.947200pt;}
.y16c{bottom:328.156667pt;}
.y1c2{bottom:329.678000pt;}
.y7d{bottom:330.877867pt;}
.y27{bottom:334.329867pt;}
.y18b{bottom:335.147733pt;}
.yc5{bottom:336.396000pt;}
.y40{bottom:338.327333pt;}
.y9c{bottom:338.568933pt;}
.y9e{bottom:338.580667pt;}
.y122{bottom:338.739333pt;}
.y105{bottom:341.680267pt;}
.y14d{bottom:341.914000pt;}
.yd{bottom:343.350267pt;}
.y5b{bottom:344.392933pt;}
.yf4{bottom:347.147200pt;}
.y16b{bottom:347.356667pt;}
.y9b{bottom:352.577067pt;}
.y9d{bottom:352.980667pt;}
.y26{bottom:353.529867pt;}
.yc4{bottom:355.596000pt;}
.y161{bottom:356.053733pt;}
.y3f{bottom:357.527333pt;}
.y1fd{bottom:359.719333pt;}
.y1eb{bottom:360.061733pt;}
.y15{bottom:360.594533pt;}
.y104{bottom:360.880267pt;}
.y210{bottom:361.098400pt;}
.y14c{bottom:361.114000pt;}
.y1a5{bottom:361.114133pt;}
.yc{bottom:362.550267pt;}
.y5a{bottom:363.593067pt;}
.y223{bottom:365.647333pt;}
.yf3{bottom:366.347200pt;}
.y7c{bottom:369.277867pt;}
.y25{bottom:372.729867pt;}
.yc3{bottom:374.796000pt;}
.y3e{bottom:376.727333pt;}
.y121{bottom:377.139333pt;}
.y1fc{bottom:378.919333pt;}
.y1ea{bottom:379.261733pt;}
.y20f{bottom:380.298400pt;}
.y14b{bottom:380.314000pt;}
.y1a4{bottom:380.314133pt;}
.yb{bottom:381.750267pt;}
.y59{bottom:382.793067pt;}
.y222{bottom:384.847467pt;}
.yf2{bottom:385.547200pt;}
.y16a{bottom:385.756667pt;}
.y7b{bottom:388.477867pt;}
.y22f{bottom:388.896667pt;}
.y112{bottom:389.841600pt;}
.y1c1{bottom:391.939467pt;}
.y4a{bottom:394.580267pt;}
.y3d{bottom:395.927333pt;}
.y120{bottom:396.339333pt;}
.y1fb{bottom:398.119333pt;}
.y1e9{bottom:398.461733pt;}
.y14{bottom:398.994533pt;}
.y14a{bottom:399.514133pt;}
.ya{bottom:400.950267pt;}
.y91{bottom:400.971867pt;}
.y58{bottom:401.993067pt;}
.yf1{bottom:404.747200pt;}
.y1c0{bottom:407.308267pt;}
.y7a{bottom:407.677867pt;}
.y24{bottom:411.129867pt;}
.yc2{bottom:413.196000pt;}
.y3c{bottom:415.127333pt;}
.y90{bottom:415.371867pt;}
.y138{bottom:415.523733pt;}
.y11f{bottom:415.539333pt;}
.y1fa{bottom:417.319333pt;}
.y1e8{bottom:417.661733pt;}
.y13{bottom:418.194533pt;}
.y111{bottom:418.444400pt;}
.y20e{bottom:418.698400pt;}
.y149{bottom:418.714133pt;}
.y57{bottom:421.192933pt;}
.y1bf{bottom:422.677067pt;}
.y221{bottom:423.247333pt;}
.y79{bottom:426.877867pt;}
.y8f{bottom:429.771867pt;}
.y23{bottom:430.329867pt;}
.yc1{bottom:432.396000pt;}
.y10e{bottom:432.832667pt;}
.y10c{bottom:432.844400pt;}
.y180{bottom:433.419200pt;}
.y3b{bottom:434.327333pt;}
.y137{bottom:434.723733pt;}
.y11e{bottom:434.739333pt;}
.y1f9{bottom:436.519333pt;}
.y1e7{bottom:436.861733pt;}
.y12{bottom:437.394533pt;}
.y148{bottom:437.914000pt;}
.y1a3{bottom:437.914133pt;}
.y169{bottom:437.916800pt;}
.y9{bottom:439.350267pt;}
.y220{bottom:442.447333pt;}
.y187{bottom:442.932933pt;}
.yf0{bottom:443.147200pt;}
.y8e{bottom:444.171867pt;}
.y78{bottom:446.077867pt;}
.y10d{bottom:447.232667pt;}
.y10b{bottom:447.244400pt;}
.y17f{bottom:447.819200pt;}
.y22{bottom:449.529867pt;}
.yc0{bottom:451.596000pt;}
.y168{bottom:452.316800pt;}
.y3a{bottom:453.527333pt;}
.y136{bottom:453.923733pt;}
.y11d{bottom:453.939333pt;}
.y1f8{bottom:455.719333pt;}
.y1e6{bottom:456.061733pt;}
.y20d{bottom:457.098400pt;}
.y147{bottom:457.114000pt;}
.y1a2{bottom:457.114133pt;}
.y56{bottom:459.593067pt;}
.y186{bottom:462.132933pt;}
.y17c{bottom:462.219200pt;}
.yef{bottom:462.347200pt;}
.y1be{bottom:464.135867pt;}
.ye1{bottom:464.262933pt;}
.ye3{bottom:464.274667pt;}
.y77{bottom:465.277867pt;}
.y1d8{bottom:465.449467pt;}
.y167{bottom:466.716800pt;}
.y1d0{bottom:468.081733pt;}
.y21{bottom:468.729867pt;}
.ybf{bottom:470.796000pt;}
.y39{bottom:472.727333pt;}
.y135{bottom:473.123733pt;}
.y11c{bottom:473.139333pt;}
.y1f7{bottom:474.919333pt;}
.y1d7{bottom:475.049467pt;}
.y1e5{bottom:475.261733pt;}
.y20c{bottom:476.298400pt;}
.y146{bottom:476.314000pt;}
.y1a1{bottom:476.314133pt;}
.y1bd{bottom:476.935867pt;}
.y1cf{bottom:477.681733pt;}
.y8{bottom:477.750267pt;}
.ye0{bottom:478.662933pt;}
.ye2{bottom:478.674667pt;}
.y55{bottom:478.793067pt;}
.y21f{bottom:480.847467pt;}
.y166{bottom:481.116800pt;}
.y185{bottom:481.332933pt;}
.yee{bottom:481.547200pt;}
.y1d3{bottom:481.836533pt;}
.y1db{bottom:483.058400pt;}
.yd5{bottom:484.442800pt;}
.y76{bottom:484.477867pt;}
.y1d6{bottom:484.649467pt;}
.y1dd{bottom:486.955467pt;}
.y1ce{bottom:487.281733pt;}
.y20{bottom:487.929867pt;}
.y1bc{bottom:489.735867pt;}
.y1d2{bottom:491.436533pt;}
.y38{bottom:491.927333pt;}
.y134{bottom:492.323733pt;}
.y11b{bottom:492.339333pt;}
.y1da{bottom:492.658400pt;}
.y1f6{bottom:494.119333pt;}
.y1e4{bottom:494.461733pt;}
.y145{bottom:495.514133pt;}
.y1dc{bottom:496.555467pt;}
.y1cd{bottom:496.881733pt;}
.y54{bottom:497.993067pt;}
.ydd{bottom:498.351467pt;}
.yd4{bottom:498.842800pt;}
.ydb{bottom:498.854533pt;}
.y184{bottom:500.532933pt;}
.yed{bottom:500.747200pt;}
.y1d1{bottom:501.036533pt;}
.y1d9{bottom:502.258400pt;}
.y1bb{bottom:502.535867pt;}
.y75{bottom:503.677867pt;}
.y1d5{bottom:503.849467pt;}
.y1f{bottom:507.129867pt;}
.y1cc{bottom:511.214667pt;}
.y133{bottom:511.523733pt;}
.y11a{bottom:511.539333pt;}
.ydc{bottom:512.751467pt;}
.yd3{bottom:513.242800pt;}
.yda{bottom:513.254533pt;}
.y1f5{bottom:513.319333pt;}
.y1d4{bottom:513.449467pt;}
.y1e3{bottom:513.661733pt;}
.y66{bottom:514.513867pt;}
.y20b{bottom:514.698400pt;}
.y199{bottom:514.698533pt;}
.y144{bottom:514.714133pt;}
.y1ba{bottom:515.335867pt;}
.y7{bottom:516.150267pt;}
.y53{bottom:517.192933pt;}
.y21e{bottom:519.247333pt;}
.y183{bottom:519.732933pt;}
.y74{bottom:522.877867pt;}
.y65{bottom:528.913867pt;}
.y37{bottom:530.327333pt;}
.y132{bottom:530.723733pt;}
.y1f4{bottom:532.519333pt;}
.y1e2{bottom:532.861733pt;}
.y198{bottom:533.898533pt;}
.yad{bottom:533.914000pt;}
.y1a0{bottom:533.914133pt;}
.y52{bottom:536.392933pt;}
.y21d{bottom:538.447333pt;}
.y182{bottom:538.932933pt;}
.yec{bottom:539.147200pt;}
.y1e{bottom:545.529867pt;}
.y36{bottom:549.527333pt;}
.y131{bottom:549.923733pt;}
.y119{bottom:549.939333pt;}
.y1f3{bottom:551.719333pt;}
.y1e1{bottom:552.061733pt;}
.y20a{bottom:553.098400pt;}
.y197{bottom:553.098533pt;}
.y9a{bottom:553.114000pt;}
.y19f{bottom:553.114133pt;}
.y21c{bottom:557.647333pt;}
.y181{bottom:558.132933pt;}
.yeb{bottom:558.347200pt;}
.y73{bottom:561.277867pt;}
.y6{bottom:562.856267pt;}
.y1b9{bottom:563.314133pt;}
.y1d{bottom:564.729867pt;}
.y35{bottom:568.727333pt;}
.y130{bottom:569.123733pt;}
.y1f2{bottom:570.919333pt;}
.y1e0{bottom:571.261733pt;}
.y209{bottom:572.298400pt;}
.y196{bottom:572.298533pt;}
.y99{bottom:572.314000pt;}
.y19e{bottom:572.314133pt;}
.y51{bottom:574.793067pt;}
.y21b{bottom:576.847467pt;}
.y159{bottom:577.494667pt;}
.yea{bottom:577.547200pt;}
.y1b8{bottom:578.683067pt;}
.y72{bottom:580.477867pt;}
.y1c{bottom:583.929867pt;}
.y34{bottom:587.927333pt;}
.y12f{bottom:588.323733pt;}
.y118{bottom:588.339333pt;}
.y195{bottom:591.498533pt;}
.y98{bottom:591.514133pt;}
.y50{bottom:593.993067pt;}
.y21a{bottom:596.047467pt;}
.ye9{bottom:596.747200pt;}
.y71{bottom:599.677867pt;}
.y1b{bottom:603.129867pt;}
.y33{bottom:607.127333pt;}
.y12e{bottom:607.523733pt;}
.y117{bottom:607.539333pt;}
.y1df{bottom:609.661733pt;}
.y208{bottom:610.698400pt;}
.y194{bottom:610.698533pt;}
.y97{bottom:610.714133pt;}
.y4f{bottom:613.192933pt;}
.y219{bottom:615.247333pt;}
.ye8{bottom:615.947200pt;}
.y70{bottom:618.877867pt;}
.y1a{bottom:622.329867pt;}
.y12d{bottom:626.723733pt;}
.y116{bottom:626.739333pt;}
.y207{bottom:629.898400pt;}
.yac{bottom:629.914000pt;}
.y19d{bottom:629.914133pt;}
.y4e{bottom:632.392933pt;}
.y218{bottom:634.447333pt;}
.ye7{bottom:635.147200pt;}
.y1b7{bottom:637.012800pt;}
.y6f{bottom:638.077867pt;}
.y19{bottom:641.529867pt;}
.y12c{bottom:645.923733pt;}
.y115{bottom:645.939333pt;}
.y49{bottom:647.265733pt;}
.y1de{bottom:648.061733pt;}
.y193{bottom:649.098533pt;}
.y96{bottom:649.114000pt;}
.y19c{bottom:649.114133pt;}
.y4d{bottom:651.593067pt;}
.y217{bottom:653.647333pt;}
.ye6{bottom:654.347200pt;}
.y6e{bottom:657.277867pt;}
.y18{bottom:660.729867pt;}
.y12b{bottom:665.123733pt;}
.y114{bottom:665.139333pt;}
.y206{bottom:668.298400pt;}
.y192{bottom:668.298533pt;}
.y95{bottom:668.314000pt;}
.y19b{bottom:668.314133pt;}
.y4c{bottom:670.793067pt;}
.y216{bottom:672.847467pt;}
.ye5{bottom:673.547200pt;}
.y6d{bottom:676.477867pt;}
.y17{bottom:679.929867pt;}
.y12a{bottom:684.323733pt;}
.y113{bottom:684.339333pt;}
.y205{bottom:687.498400pt;}
.y191{bottom:687.498533pt;}
.y94{bottom:687.514133pt;}
.y4b{bottom:689.993067pt;}
.y215{bottom:692.047333pt;}
.ye4{bottom:692.747200pt;}
.y6c{bottom:695.677867pt;}
.y190{bottom:706.698533pt;}
.y93{bottom:706.714000pt;}
.y204{bottom:725.898400pt;}
.y18f{bottom:725.898533pt;}
.y92{bottom:725.914000pt;}
.y19a{bottom:725.914133pt;}
.y1cb{bottom:726.171867pt;}
.y32{bottom:726.172000pt;}
.h12{height:24.554320pt;}
.h10{height:26.133187pt;}
.h16{height:28.640000pt;}
.hc{height:33.328125pt;}
.hb{height:34.176000pt;}
.h15{height:38.186667pt;}
.h8{height:42.117188pt;}
.h13{height:42.632812pt;}
.hd{height:43.684654pt;}
.h7{height:44.437500pt;}
.h14{height:45.850253pt;}
.h3{height:46.720000pt;}
.h5{height:53.312000pt;}
.h11{height:54.051094pt;}
.h2{height:54.506667pt;}
.h6{height:56.156250pt;}
.h9{height:56.843750pt;}
.h4{height:57.280000pt;}
.he{height:60.118788pt;}
.ha{height:66.507188pt;}
.hf{height:85.742254pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x9{left:56.692933pt;}
.x23{left:62.448400pt;}
.x28{left:63.646000pt;}
.x27{left:66.847867pt;}
.x29{left:67.776267pt;}
.x2c{left:70.581200pt;}
.x24{left:71.637867pt;}
.x1c{left:75.590533pt;}
.x25{left:77.000667pt;}
.x2a{left:78.195067pt;}
.x1{left:80.314933pt;}
.x26{left:81.331200pt;}
.x2b{left:82.459867pt;}
.x2d{left:85.796000pt;}
.x41{left:105.826800pt;}
.x40{left:134.635867pt;}
.x30{left:143.813200pt;}
.x2f{left:147.480933pt;}
.x31{left:153.156933pt;}
.x22{left:155.655333pt;}
.x2{left:173.938133pt;}
.x33{left:241.827733pt;}
.x32{left:243.007867pt;}
.x34{left:250.171733pt;}
.x1e{left:255.118133pt;}
.x45{left:259.180400pt;}
.x21{left:281.574800pt;}
.x42{left:305.765467pt;}
.x16{left:307.086667pt;}
.x14{left:320.561067pt;}
.x44{left:337.255867pt;}
.x8{left:371.276267pt;}
.x1a{left:380.283733pt;}
.x43{left:393.883867pt;}
.x35{left:428.592133pt;}
.x36{left:434.965467pt;}
.x37{left:442.053467pt;}
.x38{left:457.801200pt;}
.x3f{left:527.005200pt;}
.x2e{left:550.002667pt;}
.x12{left:572.351200pt;}
.x5{left:574.488133pt;}
.xb{left:575.588667pt;}
.x20{left:593.385733pt;}
.x3e{left:698.173200pt;}
.x3c{left:699.501600pt;}
.x3d{left:706.173200pt;}
.x3a{left:711.946133pt;}
.x4{left:719.496000pt;}
.x3{left:727.496000pt;}
.x10{left:732.301867pt;}
.x39{left:734.694000pt;}
.xe{left:741.376000pt;}
.xa{left:750.345867pt;}
.x18{left:753.548533pt;}
.x6{left:784.436133pt;}
.xc{left:792.780400pt;}
.x17{left:804.510267pt;}
.x3b{left:809.715733pt;}
.x13{left:819.499733pt;}
.x15{left:824.882000pt;}
.x19{left:839.055067pt;}
.x1b{left:872.825200pt;}
.x1d{left:906.141733pt;}
.x11{left:909.825867pt;}
.xd{left:911.152000pt;}
.xf{left:915.079867pt;}
.x1f{left:929.763867pt;}
.x7{left:1046.929200pt;}
}




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