
    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_80de3303cefa48afd02cf167.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_1c129f99702d0326efaed386.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.725000;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_3e42ccfad5a14389c2b5be0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.889000;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_d138e4d5e1a9f2926660cbc5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_333a00a8bd0337949e467d65.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.388000;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_e35d73531c8992eda27e3a33.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_5a3678e00c87e5440d3b1fbd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_bfb7c3339abda5ffaf5e96ad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_c084c587b5833a04f0340743.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_189918f633b9c1009b3b69e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_045bb63ffb4f424b62cf87fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_54ff0bc8c5db592eb7b3eba3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3512003ca850b0314d92434d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714046;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:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001161px;}
.ls3{letter-spacing:2.988532px;}
.ls4{letter-spacing:2.994710px;}
.lsf{letter-spacing:8.082691px;}
.ls9{letter-spacing:18.223161px;}
.ls7{letter-spacing:19.639161px;}
.lsa{letter-spacing:19.922338px;}
.lsb{letter-spacing:19.928338px;}
.lsd{letter-spacing:22.250338px;}
.lsc{letter-spacing:22.616338px;}
.ls10{letter-spacing:22.736338px;}
.lse{letter-spacing:23.288338px;}
.ls5{letter-spacing:23.629161px;}
.ls11{letter-spacing:23.666338px;}
.ls6{letter-spacing:25.261161px;}
.ls2{letter-spacing:29.887800px;}
.ls1{letter-spacing:29.890200px;}
.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;}
}
.ws11{word-spacing:-47.162948px;}
.wsf{word-spacing:-45.369680px;}
.ws14e{word-spacing:-34.370970px;}
.ws3c{word-spacing:-30.551309px;}
.ws15{word-spacing:-29.887800px;}
.ws10{word-spacing:-28.572737px;}
.ws12b{word-spacing:-19.905275px;}
.ws14d{word-spacing:-19.128192px;}
.wse1{word-spacing:-16.617617px;}
.wse4{word-spacing:-16.557841px;}
.ws10c{word-spacing:-16.498066px;}
.ws74{word-spacing:-16.318739px;}
.ws25{word-spacing:-16.019861px;}
.wsa3{word-spacing:-15.960085px;}
.wsb6{word-spacing:-15.900310px;}
.wse3{word-spacing:-15.840534px;}
.wsf3{word-spacing:-15.780758px;}
.ws24{word-spacing:-15.720983px;}
.ws70{word-spacing:-15.661207px;}
.ws46{word-spacing:-15.601432px;}
.wsa5{word-spacing:-15.541656px;}
.wsa{word-spacing:-15.481880px;}
.ws4a{word-spacing:-15.422105px;}
.ws69{word-spacing:-15.183002px;}
.ws14c{word-spacing:-15.123227px;}
.ws1c{word-spacing:-15.063451px;}
.ws3d{word-spacing:-15.003676px;}
.ws120{word-spacing:-14.884124px;}
.ws73{word-spacing:-14.858377px;}
.wsc8{word-spacing:-14.824349px;}
.wsee{word-spacing:-14.764573px;}
.ws14{word-spacing:-14.704798px;}
.ws140{word-spacing:-14.700250px;}
.ws1f{word-spacing:-14.645022px;}
.wsdd{word-spacing:-14.585246px;}
.ws7d{word-spacing:-14.545323px;}
.ws7f{word-spacing:-14.525471px;}
.wsfa{word-spacing:-14.465695px;}
.ws14a{word-spacing:-14.418352px;}
.ws31{word-spacing:-14.405920px;}
.ws32{word-spacing:-14.346144px;}
.wsef{word-spacing:-14.286368px;}
.wsaa{word-spacing:-14.166817px;}
.wsd1{word-spacing:-14.118543px;}
.ws111{word-spacing:-14.107042px;}
.wsd2{word-spacing:-14.053244px;}
.wsea{word-spacing:-14.047266px;}
.ws68{word-spacing:-13.993468px;}
.ws65{word-spacing:-13.987490px;}
.wsf0{word-spacing:-13.927715px;}
.ws5a{word-spacing:-13.867939px;}
.ws112{word-spacing:-13.808164px;}
.wseb{word-spacing:-13.688612px;}
.ws1a{word-spacing:-13.628837px;}
.ws9d{word-spacing:-13.569061px;}
.ws5e{word-spacing:-13.509286px;}
.wsfd{word-spacing:-13.449510px;}
.wsc6{word-spacing:-13.389734px;}
.wsae{word-spacing:-13.329959px;}
.ws123{word-spacing:-13.270183px;}
.ws40{word-spacing:-13.150632px;}
.wsce{word-spacing:-13.090856px;}
.wsa4{word-spacing:-13.031081px;}
.wsca{word-spacing:-12.971305px;}
.ws136{word-spacing:-12.917507px;}
.wsa8{word-spacing:-12.911530px;}
.ws148{word-spacing:-12.857732px;}
.wsa9{word-spacing:-12.851754px;}
.wsd6{word-spacing:-12.791978px;}
.ws59{word-spacing:-12.738180px;}
.wse9{word-spacing:-12.732203px;}
.ws96{word-spacing:-12.672427px;}
.wscb{word-spacing:-12.612652px;}
.ws114{word-spacing:-12.493100px;}
.wsb1{word-spacing:-12.433325px;}
.wsd5{word-spacing:-12.373549px;}
.wsd3{word-spacing:-12.313774px;}
.wsa0{word-spacing:-12.253998px;}
.ws106{word-spacing:-12.194222px;}
.ws72{word-spacing:-12.134447px;}
.ws7e{word-spacing:-12.103908px;}
.ws9e{word-spacing:-12.094879px;}
.ws9f{word-spacing:-12.074671px;}
.wsff{word-spacing:-12.014896px;}
.ws30{word-spacing:-11.960463px;}
.wse8{word-spacing:-11.955120px;}
.wsd4{word-spacing:-11.895344px;}
.wsc{word-spacing:-11.835569px;}
.ws36{word-spacing:-11.775793px;}
.ws49{word-spacing:-11.716018px;}
.ws9{word-spacing:-11.656242px;}
.ws6f{word-spacing:-11.629319px;}
.ws37{word-spacing:-11.596466px;}
.ws105{word-spacing:-11.536691px;}
.ws5c{word-spacing:-11.476915px;}
.ws14b{word-spacing:-11.423117px;}
.ws8c{word-spacing:-11.417140px;}
.ws5b{word-spacing:-11.357364px;}
.wsf2{word-spacing:-11.297588px;}
.ws67{word-spacing:-11.237813px;}
.wsdc{word-spacing:-11.178037px;}
.ws2c{word-spacing:-11.118262px;}
.ws4d{word-spacing:-10.998710px;}
.wsb{word-spacing:-10.938935px;}
.ws2b{word-spacing:-10.879159px;}
.wsed{word-spacing:-10.759608px;}
.ws5d{word-spacing:-10.705810px;}
.ws44{word-spacing:-10.699832px;}
.ws38{word-spacing:-10.646034px;}
.ws98{word-spacing:-10.640057px;}
.ws146{word-spacing:-10.586259px;}
.wsdb{word-spacing:-10.580281px;}
.ws8f{word-spacing:-10.520506px;}
.wsc7{word-spacing:-10.460730px;}
.ws63{word-spacing:-10.400954px;}
.ws1b{word-spacing:-10.341179px;}
.ws41{word-spacing:-10.281403px;}
.ws119{word-spacing:-10.221628px;}
.ws76{word-spacing:-10.161852px;}
.ws3e{word-spacing:-10.102076px;}
.wsb5{word-spacing:-10.042301px;}
.ws11e{word-spacing:-9.989044px;}
.wsc4{word-spacing:-9.983728px;}
.ws5{word-spacing:-9.982525px;}
.ws8a{word-spacing:-9.978564px;}
.wsd0{word-spacing:-9.962738px;}
.ws6{word-spacing:-9.922750px;}
.wsad{word-spacing:-9.914527px;}
.ws2f{word-spacing:-9.862974px;}
.ws117{word-spacing:-9.803198px;}
.wsde{word-spacing:-9.791252px;}
.ws97{word-spacing:-9.749400px;}
.ws10a{word-spacing:-9.743423px;}
.ws91{word-spacing:-9.689625px;}
.ws6b{word-spacing:-9.683647px;}
.ws2d{word-spacing:-9.650546px;}
.ws122{word-spacing:-9.623872px;}
.wsfe{word-spacing:-9.564096px;}
.ws126{word-spacing:-9.510298px;}
.wsab{word-spacing:-9.504320px;}
.ws118{word-spacing:-9.450522px;}
.ws149{word-spacing:-9.390747px;}
.ws8e{word-spacing:-9.384769px;}
.ws1d{word-spacing:-9.324994px;}
.wsb9{word-spacing:-9.265218px;}
.ws17{word-spacing:-9.151644px;}
.ws2e{word-spacing:-9.145667px;}
.ws104{word-spacing:-9.030765px;}
.ws26{word-spacing:-9.026116px;}
.ws6a{word-spacing:-8.912542px;}
.wsf8{word-spacing:-8.906564px;}
.wsd8{word-spacing:-8.902092px;}
.ws83{word-spacing:-8.878766px;}
.ws13a{word-spacing:-8.877418px;}
.wsf1{word-spacing:-8.846789px;}
.ws66{word-spacing:-8.798697px;}
.ws125{word-spacing:-8.792991px;}
.ws11a{word-spacing:-8.547911px;}
.ws81{word-spacing:-8.495893px;}
.wsc2{word-spacing:-8.428360px;}
.ws75{word-spacing:-8.364104px;}
.ws4f{word-spacing:-8.308808px;}
.ws21{word-spacing:-8.249033px;}
.ws82{word-spacing:-8.215536px;}
.ws84{word-spacing:-8.201770px;}
.ws86{word-spacing:-8.189257px;}
.ws50{word-spacing:-8.069706px;}
.ws10d{word-spacing:-8.009930px;}
.ws64{word-spacing:-7.950155px;}
.ws110{word-spacing:-7.890379px;}
.wsac{word-spacing:-7.830604px;}
.ws88{word-spacing:-7.812745px;}
.ws58{word-spacing:-7.770828px;}
.ws4e{word-spacing:-7.657254px;}
.ws6e{word-spacing:-7.651277px;}
.ws34{word-spacing:-7.591501px;}
.ws8b{word-spacing:-7.536515px;}
.wsc9{word-spacing:-7.531726px;}
.ws80{word-spacing:-7.530435px;}
.ws35{word-spacing:-7.471950px;}
.ws48{word-spacing:-7.412174px;}
.wsf7{word-spacing:-7.352399px;}
.wsb7{word-spacing:-7.292623px;}
.wsec{word-spacing:-7.232848px;}
.wse6{word-spacing:-7.173072px;}
.ws6d{word-spacing:-7.113296px;}
.ws132{word-spacing:-7.059498px;}
.wsbd{word-spacing:-6.993745px;}
.wsf6{word-spacing:-6.933970px;}
.wsa7{word-spacing:-6.874194px;}
.ws47{word-spacing:-6.820396px;}
.wsdf{word-spacing:-6.814418px;}
.wsba{word-spacing:-6.754643px;}
.ws12a{word-spacing:-6.700845px;}
.wscd{word-spacing:-6.694867px;}
.ws135{word-spacing:-6.581294px;}
.ws39{word-spacing:-6.575316px;}
.ws3b{word-spacing:-6.515540px;}
.ws45{word-spacing:-6.455765px;}
.ws11f{word-spacing:-6.435767px;}
.ws28{word-spacing:-6.395989px;}
.ws7{word-spacing:-6.382809px;}
.ws10f{word-spacing:-6.336214px;}
.ws101{word-spacing:-6.276438px;}
.ws100{word-spacing:-6.254462px;}
.ws16{word-spacing:-6.216662px;}
.wsaf{word-spacing:-6.156887px;}
.ws134{word-spacing:-6.103089px;}
.wscc{word-spacing:-6.097111px;}
.ws3a{word-spacing:-6.043313px;}
.ws42{word-spacing:-5.977560px;}
.ws55{word-spacing:-5.917784px;}
.ws131{word-spacing:-5.916075px;}
.ws4c{word-spacing:-5.858009px;}
.ws13b{word-spacing:-5.804211px;}
.wsb0{word-spacing:-5.798233px;}
.ws85{word-spacing:-5.771721px;}
.ws138{word-spacing:-5.744435px;}
.ws8{word-spacing:-5.738458px;}
.ws56{word-spacing:-5.678682px;}
.ws19{word-spacing:-5.618906px;}
.wsb2{word-spacing:-5.559131px;}
.ws2a{word-spacing:-5.499355px;}
.ws90{word-spacing:-5.489117px;}
.ws1e{word-spacing:-5.439580px;}
.wsb3{word-spacing:-5.379804px;}
.ws18{word-spacing:-5.320028px;}
.ws7a{word-spacing:-5.306541px;}
.ws107{word-spacing:-5.266230px;}
.ws7c{word-spacing:-5.260253px;}
.ws57{word-spacing:-5.206455px;}
.wsb8{word-spacing:-5.200477px;}
.ws108{word-spacing:-5.146679px;}
.ws52{word-spacing:-5.140702px;}
.ws53{word-spacing:-5.021150px;}
.ws71{word-spacing:-5.007880px;}
.ws116{word-spacing:-4.972123px;}
.ws115{word-spacing:-4.961375px;}
.ws87{word-spacing:-4.921174px;}
.ws62{word-spacing:-4.907577px;}
.wse0{word-spacing:-4.901599px;}
.ws9b{word-spacing:-4.841824px;}
.ws3f{word-spacing:-4.782048px;}
.ws102{word-spacing:-4.662497px;}
.ws103{word-spacing:-4.602721px;}
.wsb4{word-spacing:-4.542946px;}
.ws54{word-spacing:-4.483170px;}
.ws9c{word-spacing:-4.429372px;}
.wsd9{word-spacing:-4.423394px;}
.wsd7{word-spacing:-4.418738px;}
.ws124{word-spacing:-4.303843px;}
.ws89{word-spacing:-4.255703px;}
.ws33{word-spacing:-4.244068px;}
.wsf9{word-spacing:-4.184292px;}
.wsbe{word-spacing:-4.160409px;}
.ws99{word-spacing:-4.124516px;}
.ws109{word-spacing:-4.101777px;}
.ws113{word-spacing:-4.064741px;}
.ws29{word-spacing:-4.004965px;}
.wsbb{word-spacing:-3.945190px;}
.wsf5{word-spacing:-3.885414px;}
.ws23{word-spacing:-3.825638px;}
.ws9a{word-spacing:-3.771840px;}
.ws27{word-spacing:-3.765863px;}
.wsa2{word-spacing:-3.706087px;}
.ws51{word-spacing:-3.646312px;}
.ws12f{word-spacing:-3.532738px;}
.ws60{word-spacing:-3.526760px;}
.ws92{word-spacing:-3.433823px;}
.ws4b{word-spacing:-3.431308px;}
.ws94{word-spacing:-3.407209px;}
.ws127{word-spacing:-3.393547px;}
.ws142{word-spacing:-3.393310px;}
.wsa1{word-spacing:-3.353411px;}
.ws6c{word-spacing:-3.347434px;}
.wsa6{word-spacing:-3.287658px;}
.ws93{word-spacing:-3.174084px;}
.ws10e{word-spacing:-3.048556px;}
.wsbc{word-spacing:-2.929004px;}
.ws11b{word-spacing:-2.869229px;}
.ws7b{word-spacing:-2.858723px;}
.wsc3{word-spacing:-2.636104px;}
.wscf{word-spacing:-2.630126px;}
.ws137{word-spacing:-2.547927px;}
.ws129{word-spacing:-2.547237px;}
.ws128{word-spacing:-2.541927px;}
.ws141{word-spacing:-2.541237px;}
.ws43{word-spacing:-2.450800px;}
.ws95{word-spacing:-2.331248px;}
.ws5f{word-spacing:-2.052331px;}
.wsfb{word-spacing:-1.972595px;}
.ws10b{word-spacing:-1.733492px;}
.ws22{word-spacing:-1.434614px;}
.wse2{word-spacing:-1.374839px;}
.ws133{word-spacing:-1.315063px;}
.wsc0{word-spacing:-1.255288px;}
.ws145{word-spacing:-1.195512px;}
.ws12e{word-spacing:-1.141714px;}
.ws147{word-spacing:-1.141226px;}
.ws61{word-spacing:-1.094366px;}
.wsda{word-spacing:-0.956410px;}
.wsf4{word-spacing:-0.836858px;}
.ws77{word-spacing:-0.524589px;}
.ws79{word-spacing:-0.478205px;}
.wsc1{word-spacing:-0.358654px;}
.ws121{word-spacing:-0.071731px;}
.ws11d{word-spacing:-0.047821px;}
.ws3{word-spacing:0.000000px;}
.ws13f{word-spacing:0.038763px;}
.wsbf{word-spacing:0.207281px;}
.wse5{word-spacing:0.239102px;}
.ws139{word-spacing:1.202073px;}
.ws78{word-spacing:1.927758px;}
.ws12d{word-spacing:3.162129px;}
.ws12c{word-spacing:3.407209px;}
.ws144{word-spacing:3.939212px;}
.ws143{word-spacing:4.244068px;}
.ws13e{word-spacing:5.618906px;}
.ws13c{word-spacing:7.471950px;}
.ws11c{word-spacing:14.489642px;}
.ws130{word-spacing:14.824349px;}
.wsfc{word-spacing:16.880672px;}
.ws4{word-spacing:18.399053px;}
.wsc5{word-spacing:19.845499px;}
.wsd{word-spacing:21.818094px;}
.wse{word-spacing:21.877870px;}
.ws13d{word-spacing:22.236523px;}
.ws20{word-spacing:26.181888px;}
.ws1{word-spacing:26.253619px;}
.ws2{word-spacing:27.975090px;}
.wse7{word-spacing:31.418178px;}
.ws13{word-spacing:45.250875px;}
.ws0{word-spacing:45.374850px;}
.ws8d{word-spacing:47.256383px;}
.ws12{word-spacing:2123.405519px;}
._18{margin-left:-34.849175px;}
._c{margin-left:-31.561517px;}
._a{margin-left:-29.887800px;}
._16{margin-left:-28.214083px;}
._2a{margin-left:-11.405700px;}
._17{margin-left:-9.982525px;}
._1d{margin-left:-8.368584px;}
._e{margin-left:-7.352399px;}
._32{margin-left:-5.994785px;}
._2{margin-left:-4.961375px;}
._1c{margin-left:-3.843225px;}
._1{margin-left:-2.223667px;}
._3{margin-left:-1.063991px;}
._4{width:1.494390px;}
._5{width:2.558455px;}
._0{width:3.719250px;}
._20{width:5.457833px;}
._27{width:6.925517px;}
._28{width:14.274473px;}
._26{width:15.924250px;}
._24{width:17.875168px;}
._22{width:19.083349px;}
._11{width:20.455225px;}
._23{width:21.510280px;}
._12{width:22.894055px;}
._1e{width:23.979849px;}
._1f{width:26.078140px;}
._21{width:27.327861px;}
._29{width:29.021103px;}
._25{width:30.068901px;}
._b{width:31.202863px;}
._2d{width:33.354785px;}
._2e{width:34.669848px;}
._2f{width:37.718404px;}
._2c{width:39.033467px;}
._14{width:42.918881px;}
._2b{width:47.342460px;}
._31{width:52.793825px;}
._6{width:56.786820px;}
._10{width:61.090663px;}
._30{width:66.841091px;}
._1b{width:68.186250px;}
._35{width:69.656284px;}
._d{width:72.866456px;}
._34{width:103.608340px;}
._33{width:122.659531px;}
._19{width:173.731834px;}
._8{width:791.082260px;}
._7{width:1224.515136px;}
._13{width:1463.749057px;}
._9{width:1695.833772px;}
._15{width:1817.740160px;}
._f{width:1884.736638px;}
._1a{width:2266.161607px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:127.558500px;}
.ye0{bottom:190.323000px;}
.y124{bottom:193.305000px;}
.y1ce{bottom:194.542500px;}
.y1e8{bottom:194.560500px;}
.y13f{bottom:195.519000px;}
.y5f{bottom:199.242000px;}
.y297{bottom:200.929500px;}
.ya1{bottom:206.458500px;}
.y2e0{bottom:206.935500px;}
.y107{bottom:210.049500px;}
.y241{bottom:210.159000px;}
.y123{bottom:213.031500px;}
.y13e{bottom:215.245500px;}
.y5e{bottom:218.967000px;}
.y175{bottom:219.460500px;}
.y296{bottom:220.656000px;}
.ydf{bottom:221.757000px;}
.y276{bottom:221.812500px;}
.y1e7{bottom:225.226500px;}
.ya0{bottom:226.185000px;}
.y2df{bottom:226.662000px;}
.y207{bottom:229.776000px;}
.y240{bottom:230.856000px;}
.y21b{bottom:231.994500px;}
.y1cd{bottom:232.897500px;}
.y2c7{bottom:233.046000px;}
.y13d{bottom:234.970500px;}
.y5d{bottom:238.693500px;}
.y174{bottom:239.187000px;}
.y295{bottom:240.381000px;}
.y106{bottom:240.648000px;}
.y122{bottom:244.713000px;}
.y1e6{bottom:244.953000px;}
.y2de{bottom:246.387000px;}
.y193{bottom:248.463000px;}
.y206{bottom:249.502500px;}
.y23f{bottom:250.582500px;}
.y21a{bottom:251.721000px;}
.y1cc{bottom:252.624000px;}
.y2c6{bottom:252.771000px;}
.y275{bottom:253.111500px;}
.yde{bottom:253.189500px;}
.y13c{bottom:254.697000px;}
.y9f{bottom:257.866500px;}
.y5c{bottom:258.420000px;}
.y294{bottom:260.107500px;}
.yc0{bottom:260.452500px;}
.y1e5{bottom:264.679500px;}
.y2dd{bottom:266.113500px;}
.y192{bottom:268.189500px;}
.y205{bottom:269.227500px;}
.y23e{bottom:270.309000px;}
.y173{bottom:270.868500px;}
.y105{bottom:271.246500px;}
.y219{bottom:271.447500px;}
.y1cb{bottom:272.350500px;}
.y13b{bottom:274.423500px;}
.y9e{bottom:277.593000px;}
.y5b{bottom:278.146500px;}
.y293{bottom:279.834000px;}
.ybf{bottom:280.179000px;}
.y121{bottom:282.880500px;}
.y1e4{bottom:284.404500px;}
.ydd{bottom:284.622000px;}
.y2dc{bottom:285.840000px;}
.y191{bottom:287.914500px;}
.y204{bottom:288.954000px;}
.y23d{bottom:290.034000px;}
.y172{bottom:290.593500px;}
.y104{bottom:290.973000px;}
.y218{bottom:291.174000px;}
.y1ca{bottom:292.077000px;}
.y2c5{bottom:292.224000px;}
.y274{bottom:292.563000px;}
.y13a{bottom:294.150000px;}
.y9d{bottom:297.318000px;}
.y292{bottom:299.560500px;}
.y120{bottom:303.240000px;}
.y1e3{bottom:304.131000px;}
.y2db{bottom:305.566500px;}
.y5a{bottom:307.522500px;}
.y203{bottom:308.680500px;}
.y23c{bottom:309.760500px;}
.y3c{bottom:310.681500px;}
.y103{bottom:310.698000px;}
.y217{bottom:310.899000px;}
.y1c9{bottom:311.802000px;}
.ybe{bottom:311.860500px;}
.y2c4{bottom:311.950500px;}
.y273{bottom:312.289500px;}
.y139{bottom:313.875000px;}
.ydc{bottom:316.054500px;}
.y9c{bottom:317.044500px;}
.y190{bottom:317.292000px;}
.y1b1{bottom:317.836500px;}
.y81{bottom:318.657000px;}
.y291{bottom:319.285500px;}
.y171{bottom:322.275000px;}
.y257{bottom:328.407000px;}
.y23b{bottom:329.487000px;}
.y102{bottom:330.424500px;}
.y216{bottom:330.625500px;}
.y1c8{bottom:331.528500px;}
.ybd{bottom:331.585500px;}
.y272{bottom:332.016000px;}
.y11f{bottom:334.839000px;}
.y2da{bottom:334.942500px;}
.y1e2{bottom:335.812500px;}
.y9b{bottom:336.771000px;}
.y1b0{bottom:337.563000px;}
.y80{bottom:338.383500px;}
.y290{bottom:339.012000px;}
.y202{bottom:339.273000px;}
.y170{bottom:342.001500px;}
.y3b{bottom:342.363000px;}
.y138{bottom:345.556500px;}
.ydb{bottom:347.239500px;}
.y23a{bottom:349.213500px;}
.y215{bottom:350.352000px;}
.y2c3{bottom:351.402000px;}
.y59{bottom:351.448500px;}
.y271{bottom:351.741000px;}
.y1e1{bottom:355.539000px;}
.y1af{bottom:357.289500px;}
.y18f{bottom:357.930000px;}
.y2d9{bottom:357.957000px;}
.y7f{bottom:358.110000px;}
.y256{bottom:358.164000px;}
.y28f{bottom:358.738500px;}
.y101{bottom:359.940000px;}
.y1c7{bottom:362.131500px;}
.ybc{bottom:363.267000px;}
.y11e{bottom:364.216500px;}
.y137{bottom:365.283000px;}
.yda{bottom:366.966000px;}
.y9a{bottom:368.452500px;}
.y239{bottom:368.938500px;}
.y214{bottom:370.078500px;}
.y201{bottom:370.410000px;}
.y2c2{bottom:371.128500px;}
.y58{bottom:371.173500px;}
.y270{bottom:371.467500px;}
.y16f{bottom:373.683000px;}
.y3a{bottom:374.044500px;}
.y1ae{bottom:377.016000px;}
.y7e{bottom:377.836500px;}
.y28e{bottom:378.465000px;}
.y100{bottom:379.666500px;}
.yd9{bottom:386.692500px;}
.y1e0{bottom:387.220500px;}
.y99{bottom:388.179000px;}
.y18{bottom:388.581000px;}
.y238{bottom:388.665000px;}
.y255{bottom:388.884000px;}
.y18e{bottom:389.611500px;}
.y213{bottom:389.803500px;}
.y200{bottom:390.136500px;}
.y57{bottom:390.900000px;}
.y26f{bottom:391.194000px;}
.y1c6{bottom:393.273000px;}
.y16e{bottom:393.409500px;}
.ybb{bottom:394.948500px;}
.y1ad{bottom:396.741000px;}
.y136{bottom:396.964500px;}
.y28d{bottom:398.190000px;}
.yff{bottom:399.393000px;}
.y39{bottom:405.726000px;}
.yd8{bottom:406.417500px;}
.y1df{bottom:406.945500px;}
.y98{bottom:407.904000px;}
.y11d{bottom:408.141000px;}
.y17{bottom:408.306000px;}
.y237{bottom:408.391500px;}
.y7d{bottom:409.516500px;}
.y212{bottom:409.530000px;}
.y2c1{bottom:410.580000px;}
.y26e{bottom:410.920500px;}
.y16d{bottom:413.134500px;}
.yba{bottom:414.675000px;}
.y1ac{bottom:416.467500px;}
.y28c{bottom:417.916500px;}
.y254{bottom:419.602500px;}
.y156{bottom:420.874500px;}
.y1ff{bottom:421.273500px;}
.y18d{bottom:421.291500px;}
.y2d8{bottom:421.608000px;}
.y56{bottom:422.581500px;}
.y1c5{bottom:424.416000px;}
.yd7{bottom:426.144000px;}
.y135{bottom:426.342000px;}
.y11c{bottom:427.867500px;}
.y236{bottom:428.118000px;}
.y7c{bottom:429.243000px;}
.y211{bottom:429.256500px;}
.y2c0{bottom:430.306500px;}
.y26d{bottom:430.645500px;}
.y16c{bottom:432.861000px;}
.y1ab{bottom:436.194000px;}
.y38{bottom:437.407500px;}
.y28b{bottom:437.643000px;}
.y1de{bottom:438.627000px;}
.yfe{bottom:438.844500px;}
.y97{bottom:439.585500px;}
.y16{bottom:439.987500px;}
.y155{bottom:440.601000px;}
.y2d7{bottom:441.334500px;}
.y1c4{bottom:444.141000px;}
.yb9{bottom:446.356500px;}
.y11b{bottom:447.594000px;}
.y235{bottom:447.843000px;}
.y7b{bottom:448.969500px;}
.y210{bottom:448.983000px;}
.y253{bottom:450.322500px;}
.y26c{bottom:450.372000px;}
.y1fe{bottom:452.410500px;}
.y16b{bottom:452.587500px;}
.y18c{bottom:452.973000px;}
.y55{bottom:454.263000px;}
.y1aa{bottom:455.920500px;}
.yd6{bottom:457.329000px;}
.y28a{bottom:457.369500px;}
.y1dd{bottom:458.353500px;}
.yfd{bottom:458.571000px;}
.y96{bottom:459.312000px;}
.y154{bottom:460.327500px;}
.y20f{bottom:468.708000px;}
.y37{bottom:469.089000px;}
.y2bf{bottom:469.759500px;}
.y26b{bottom:470.098500px;}
.y134{bottom:470.266500px;}
.y2d6{bottom:470.712000px;}
.y15{bottom:471.669000px;}
.y1c3{bottom:475.284000px;}
.y1a9{bottom:475.645500px;}
.yd5{bottom:477.055500px;}
.y289{bottom:477.094500px;}
.y234{bottom:477.220500px;}
.yb8{bottom:478.038000px;}
.y1dc{bottom:478.080000px;}
.yfc{bottom:478.297500px;}
.y95{bottom:479.038500px;}
.y153{bottom:480.054000px;}
.y7a{bottom:480.651000px;}
.y252{bottom:481.041000px;}
.y11a{bottom:482.118000px;}
.y1fd{bottom:483.547500px;}
.y16a{bottom:484.269000px;}
.y18b{bottom:484.654500px;}
.y54{bottom:485.944500px;}
.y20e{bottom:488.434500px;}
.y36{bottom:488.815500px;}
.y2be{bottom:489.484500px;}
.y26a{bottom:489.825000px;}
.y133{bottom:489.993000px;}
.y14{bottom:491.395500px;}
.y1c2{bottom:495.010500px;}
.y1a8{bottom:495.372000px;}
.yd4{bottom:496.780500px;}
.y288{bottom:496.821000px;}
.yfb{bottom:498.022500px;}
.y94{bottom:498.765000px;}
.y152{bottom:499.779000px;}
.y79{bottom:500.377500px;}
.y169{bottom:503.995500px;}
.y20d{bottom:508.161000px;}
.y269{bottom:509.550000px;}
.yb7{bottom:509.719500px;}
.y251{bottom:511.761000px;}
.y1db{bottom:512.604000px;}
.y1fc{bottom:514.686000px;}
.y18a{bottom:516.336000px;}
.yd3{bottom:516.507000px;}
.y287{bottom:516.547500px;}
.y53{bottom:517.626000px;}
.yfa{bottom:517.749000px;}
.y93{bottom:518.490000px;}
.y151{bottom:519.505500px;}
.y78{bottom:520.102500px;}
.y35{bottom:520.495500px;}
.y233{bottom:520.552500px;}
.y132{bottom:521.674500px;}
.y13{bottom:526.065000px;}
.y1c1{bottom:526.152000px;}
.y1a7{bottom:527.053500px;}
.y20c{bottom:527.887500px;}
.y2bd{bottom:528.937500px;}
.y268{bottom:529.276500px;}
.yb6{bottom:529.444500px;}
.y119{bottom:534.226500px;}
.y2d5{bottom:534.361500px;}
.y168{bottom:535.675500px;}
.yd2{bottom:536.233500px;}
.y286{bottom:536.274000px;}
.yf9{bottom:537.475500px;}
.y92{bottom:538.216500px;}
.y2ae{bottom:538.410000px;}
.y150{bottom:539.232000px;}
.y77{bottom:539.829000px;}
.y27{bottom:539.860500px;}
.y232{bottom:540.279000px;}
.y131{bottom:541.399500px;}
.y250{bottom:541.518000px;}
.y1fb{bottom:545.823000px;}
.y1c0{bottom:545.878500px;}
.y1a6{bottom:546.780000px;}
.y20b{bottom:547.612500px;}
.y189{bottom:548.017500px;}
.y2bc{bottom:548.664000px;}
.y267{bottom:549.003000px;}
.y52{bottom:549.306000px;}
.y34{bottom:552.177000px;}
.y118{bottom:553.953000px;}
.y2d4{bottom:554.088000px;}
.y167{bottom:555.402000px;}
.y285{bottom:556.000500px;}
.yf8{bottom:557.202000px;}
.y12{bottom:557.746500px;}
.y91{bottom:557.943000px;}
.y2ad{bottom:558.136500px;}
.y14f{bottom:558.958500px;}
.y76{bottom:559.555500px;}
.y231{bottom:560.005500px;}
.yb5{bottom:561.126000px;}
.y24f{bottom:561.244500px;}
.y1da{bottom:564.712500px;}
.y1a5{bottom:566.506500px;}
.y20a{bottom:567.339000px;}
.yd1{bottom:567.666000px;}
.y188{bottom:567.744000px;}
.y117{bottom:573.679500px;}
.y26{bottom:574.531500px;}
.y166{bottom:575.128500px;}
.y284{bottom:575.725500px;}
.y1fa{bottom:576.415500px;}
.yf7{bottom:576.927000px;}
.y1bf{bottom:577.020000px;}
.y11{bottom:577.473000px;}
.y2ac{bottom:577.863000px;}
.y14e{bottom:578.683500px;}
.y75{bottom:579.282000px;}
.y230{bottom:579.732000px;}
.y266{bottom:580.300500px;}
.yb4{bottom:580.852500px;}
.y51{bottom:580.987500px;}
.y33{bottom:583.858500px;}
.y1d9{bottom:584.439000px;}
.yd0{bottom:587.392500px;}
.y2bb{bottom:588.115500px;}
.y90{bottom:589.624500px;}
.y24e{bottom:590.622000px;}
.y116{bottom:593.404500px;}
.y2d3{bottom:593.541000px;}
.y283{bottom:595.452000px;}
.y1f9{bottom:596.142000px;}
.yf6{bottom:596.653500px;}
.y1be{bottom:596.746500px;}
.y2ab{bottom:597.589500px;}
.y1a4{bottom:598.186500px;}
.y14d{bottom:598.410000px;}
.y74{bottom:599.007000px;}
.y187{bottom:599.425500px;}
.y22f{bottom:599.457000px;}
.y50{bottom:600.714000px;}
.y1d8{bottom:604.165500px;}
.y165{bottom:606.810000px;}
.ycf{bottom:607.119000px;}
.y2ba{bottom:607.842000px;}
.y10{bottom:609.154500px;}
.y25{bottom:609.201000px;}
.y8f{bottom:609.349500px;}
.y265{bottom:611.790000px;}
.yb3{bottom:612.534000px;}
.y115{bottom:613.131000px;}
.y2d2{bottom:613.266000px;}
.y282{bottom:615.178500px;}
.y32{bottom:615.540000px;}
.y1f8{bottom:615.868500px;}
.yf5{bottom:616.380000px;}
.y1bd{bottom:616.473000px;}
.y2aa{bottom:617.316000px;}
.y1a3{bottom:617.913000px;}
.y73{bottom:618.733500px;}
.y22e{bottom:619.183500px;}
.y4f{bottom:620.440500px;}
.y1d7{bottom:623.892000px;}
.y164{bottom:626.536500px;}
.yce{bottom:626.844000px;}
.yf{bottom:628.881000px;}
.y8e{bottom:629.076000px;}
.y14c{bottom:630.091500px;}
.y24d{bottom:630.844500px;}
.y186{bottom:631.105500px;}
.y264{bottom:631.516500px;}
.yb2{bottom:632.260500px;}
.y114{bottom:632.857500px;}
.y281{bottom:634.905000px;}
.y1f7{bottom:635.593500px;}
.yf4{bottom:636.106500px;}
.y2a9{bottom:637.041000px;}
.y2b9{bottom:637.219500px;}
.y209{bottom:637.815000px;}
.y72{bottom:638.460000px;}
.y22d{bottom:638.910000px;}
.y1d6{bottom:643.617000px;}
.y24{bottom:643.872000px;}
.ycd{bottom:646.570500px;}
.y31{bottom:647.221500px;}
.y1bc{bottom:647.614500px;}
.y8d{bottom:648.802500px;}
.y1a2{bottom:649.594500px;}
.y4e{bottom:649.818000px;}
.y24c{bottom:650.571000px;}
.y185{bottom:650.832000px;}
.y113{bottom:652.584000px;}
.y2d1{bottom:652.719000px;}
.y280{bottom:654.630000px;}
.y1f6{bottom:655.320000px;}
.yf3{bottom:655.831500px;}
.y2a8{bottom:656.767500px;}
.y208{bottom:657.541500px;}
.y163{bottom:658.218000px;}
.y22c{bottom:658.636500px;}
.ye{bottom:660.562500px;}
.y263{bottom:663.006000px;}
.y23{bottom:663.597000px;}
.yb1{bottom:663.940500px;}
.ycc{bottom:666.297000px;}
.y1bb{bottom:667.341000px;}
.y8c{bottom:668.529000px;}
.y71{bottom:670.141500px;}
.y24b{bottom:670.297500px;}
.y112{bottom:672.309000px;}
.y2d0{bottom:672.445500px;}
.y27f{bottom:674.356500px;}
.y1f5{bottom:675.046500px;}
.y1d5{bottom:675.298500px;}
.yf2{bottom:675.558000px;}
.y2a7{bottom:676.494000px;}
.y162{bottom:677.943000px;}
.y22b{bottom:678.361500px;}
.y30{bottom:678.903000px;}
.yd{bottom:680.287500px;}
.y1a1{bottom:681.276000px;}
.y14b{bottom:681.499500px;}
.y184{bottom:682.513500px;}
.y262{bottom:682.732500px;}
.yb0{bottom:683.667000px;}
.ycb{bottom:686.023500px;}
.y8b{bottom:688.254000px;}
.y70{bottom:689.866500px;}
.y24a{bottom:690.024000px;}
.y111{bottom:692.035500px;}
.y4d{bottom:693.742500px;}
.y27e{bottom:694.083000px;}
.y1f4{bottom:694.773000px;}
.yf1{bottom:695.284500px;}
.y2a6{bottom:696.220500px;}
.y161{bottom:697.669500px;}
.y22a{bottom:698.088000px;}
.y22{bottom:698.268000px;}
.y1ba{bottom:698.482500px;}
.y6{bottom:699.577500px;}
.y2b8{bottom:700.870500px;}
.y1a0{bottom:701.002500px;}
.y130{bottom:703.393500px;}
.yca{bottom:705.748500px;}
.y1d4{bottom:706.980000px;}
.y8a{bottom:707.980500px;}
.y249{bottom:709.749000px;}
.y2f{bottom:710.584500px;}
.y110{bottom:711.762000px;}
.y2cf{bottom:711.897000px;}
.y14a{bottom:713.179500px;}
.y27d{bottom:713.809500px;}
.y261{bottom:714.222000px;}
.y1f3{bottom:714.498000px;}
.yc{bottom:714.958500px;}
.yaf{bottom:715.348500px;}
.y2a5{bottom:715.945500px;}
.y183{bottom:717.039000px;}
.y160{bottom:717.396000px;}
.y229{bottom:717.814500px;}
.y21{bottom:717.993000px;}
.y2b7{bottom:720.595500px;}
.y19f{bottom:720.727500px;}
.y6f{bottom:721.548000px;}
.y12f{bottom:723.120000px;}
.y4c{bottom:725.424000px;}
.yc9{bottom:725.475000px;}
.y89{bottom:727.707000px;}
.y248{bottom:729.475500px;}
.y10f{bottom:731.488500px;}
.y2ce{bottom:731.623500px;}
.y149{bottom:732.906000px;}
.y27c{bottom:733.534500px;}
.y1f2{bottom:734.224500px;}
.yf0{bottom:734.737500px;}
.y2a4{bottom:735.672000px;}
.y1d3{bottom:738.661500px;}
.y2b6{bottom:740.322000px;}
.y19e{bottom:740.454000px;}
.y6e{bottom:741.274500px;}
.y2e{bottom:742.264500px;}
.yc8{bottom:745.201500px;}
.y260{bottom:745.711500px;}
.y228{bottom:746.742000px;}
.yae{bottom:747.030000px;}
.y5{bottom:747.189000px;}
.y88{bottom:747.433500px;}
.y1b9{bottom:748.812000px;}
.y15f{bottom:749.077500px;}
.y247{bottom:749.202000px;}
.yb{bottom:749.628000px;}
.y10e{bottom:751.213500px;}
.y148{bottom:752.632500px;}
.y20{bottom:752.664000px;}
.y27b{bottom:753.261000px;}
.y1f1{bottom:753.951000px;}
.yef{bottom:754.462500px;}
.y12e{bottom:754.801500px;}
.y2a3{bottom:755.398500px;}
.y4b{bottom:757.105500px;}
.y2b5{bottom:760.048500px;}
.y19d{bottom:760.180500px;}
.y6d{bottom:761.001000px;}
.yc7{bottom:764.928000px;}
.y227{bottom:766.468500px;}
.yad{bottom:766.756500px;}
.y87{bottom:767.160000px;}
.y1b8{bottom:768.538500px;}
.y15e{bottom:768.802500px;}
.y246{bottom:768.928500px;}
.y182{bottom:769.147500px;}
.y1d2{bottom:770.343000px;}
.y10d{bottom:770.940000px;}
.y1f{bottom:772.390500px;}
.y27a{bottom:772.987500px;}
.y1f0{bottom:773.677500px;}
.y2d{bottom:773.946000px;}
.yee{bottom:774.189000px;}
.y12d{bottom:774.526500px;}
.y2a2{bottom:775.125000px;}
.y4{bottom:776.778000px;}
.y25f{bottom:777.201000px;}
.y19c{bottom:779.907000px;}
.y6c{bottom:780.727500px;}
.ya{bottom:781.309500px;}
.y147{bottom:782.010000px;}
.y86{bottom:786.885000px;}
.y15d{bottom:788.529000px;}
.y4a{bottom:788.785500px;}
.y181{bottom:788.872500px;}
.y10c{bottom:790.666500px;}
.y279{bottom:792.714000px;}
.yed{bottom:793.915500px;}
.y12c{bottom:794.253000px;}
.y2a1{bottom:794.850000px;}
.yc6{bottom:796.360500px;}
.y226{bottom:796.771500px;}
.y245{bottom:798.304500px;}
.yac{bottom:798.438000px;}
.y1b7{bottom:799.140000px;}
.y2b4{bottom:799.501500px;}
.y19b{bottom:799.633500px;}
.y6b{bottom:800.452500px;}
.y1d1{bottom:802.024500px;}
.y2c{bottom:805.627500px;}
.y3{bottom:806.367000px;}
.y1e{bottom:807.060000px;}
.y49{bottom:808.512000px;}
.y180{bottom:808.599000px;}
.y25e{bottom:808.690500px;}
.y10b{bottom:810.393000px;}
.y278{bottom:812.439000px;}
.y1ef{bottom:813.129000px;}
.yec{bottom:813.642000px;}
.y2a0{bottom:814.576500px;}
.y9{bottom:815.979000px;}
.yc5{bottom:816.087000px;}
.y225{bottom:816.498000px;}
.yab{bottom:818.163000px;}
.y85{bottom:818.566500px;}
.y2b3{bottom:819.226500px;}
.y19a{bottom:819.358500px;}
.y6a{bottom:820.179000px;}
.y15c{bottom:820.210500px;}
.y2cd{bottom:824.652000px;}
.y12b{bottom:825.934500px;}
.y1d{bottom:826.786500px;}
.y244{bottom:827.682000px;}
.y48{bottom:828.238500px;}
.y17f{bottom:828.325500px;}
.y10a{bottom:830.118000px;}
.y1b6{bottom:830.283000px;}
.y277{bottom:832.165500px;}
.y1ee{bottom:832.855500px;}
.yeb{bottom:833.367000px;}
.y1d0{bottom:833.706000px;}
.y29f{bottom:834.303000px;}
.yc4{bottom:835.813500px;}
.y224{bottom:836.224500px;}
.y2b{bottom:837.309000px;}
.yaa{bottom:837.889500px;}
.y84{bottom:838.293000px;}
.y199{bottom:839.085000px;}
.y69{bottom:839.905500px;}
.y25d{bottom:839.988000px;}
.y2cc{bottom:844.378500px;}
.y12a{bottom:845.661000px;}
.y1c{bottom:846.513000px;}
.y47{bottom:847.965000px;}
.y17e{bottom:848.052000px;}
.y109{bottom:849.844500px;}
.y1b5{bottom:850.009500px;}
.y15b{bottom:851.892000px;}
.y1ed{bottom:852.582000px;}
.yea{bottom:853.093500px;}
.y29e{bottom:854.029500px;}
.y2a{bottom:857.035500px;}
.ya9{bottom:857.616000px;}
.y83{bottom:858.019500px;}
.y2b2{bottom:858.679500px;}
.y198{bottom:858.811500px;}
.y68{bottom:859.632000px;}
.y25c{bottom:859.714500px;}
.y2cb{bottom:864.103500px;}
.y223{bottom:865.152000px;}
.y146{bottom:865.386000px;}
.y2{bottom:865.845000px;}
.yc3{bottom:866.997000px;}
.y46{bottom:867.690000px;}
.y17d{bottom:867.777000px;}
.y108{bottom:869.571000px;}
.y243{bottom:871.192500px;}
.y15a{bottom:871.618500px;}
.y1ec{bottom:872.307000px;}
.ye9{bottom:872.820000px;}
.y29d{bottom:873.754500px;}
.y129{bottom:877.342500px;}
.y2b1{bottom:878.406000px;}
.y197{bottom:878.538000px;}
.y67{bottom:879.357000px;}
.y25b{bottom:879.441000px;}
.y1b4{bottom:881.151000px;}
.y1b{bottom:881.182500px;}
.y222{bottom:884.878500px;}
.y145{bottom:885.112500px;}
.y29{bottom:886.413000px;}
.yc2{bottom:886.723500px;}
.y17c{bottom:887.503500px;}
.ya8{bottom:889.297500px;}
.y82{bottom:889.701000px;}
.y242{bottom:890.919000px;}
.y159{bottom:891.343500px;}
.y1eb{bottom:892.033500px;}
.ye8{bottom:892.546500px;}
.y29c{bottom:893.481000px;}
.y128{bottom:897.067500px;}
.y2b0{bottom:898.131000px;}
.y196{bottom:898.263000px;}
.y66{bottom:899.083500px;}
.y25a{bottom:899.166000px;}
.y45{bottom:899.371500px;}
.y2ca{bottom:903.556500px;}
.y1{bottom:903.802500px;}
.y221{bottom:904.603500px;}
.y144{bottom:904.839000px;}
.y17b{bottom:907.230000px;}
.ya7{bottom:909.022500px;}
.y158{bottom:911.070000px;}
.y1b3{bottom:911.754000px;}
.y1ea{bottom:911.760000px;}
.ye7{bottom:912.271500px;}
.y29b{bottom:913.207500px;}
.y1a{bottom:915.852000px;}
.y127{bottom:916.794000px;}
.y65{bottom:918.810000px;}
.y259{bottom:918.892500px;}
.yc1{bottom:921.247500px;}
.y2c9{bottom:923.283000px;}
.y220{bottom:924.330000px;}
.y143{bottom:924.565500px;}
.y17a{bottom:926.956500px;}
.y2af{bottom:927.508500px;}
.y1cf{bottom:928.749000px;}
.y157{bottom:930.796500px;}
.y44{bottom:931.053000px;}
.y1b2{bottom:931.480500px;}
.y1e9{bottom:931.486500px;}
.ye6{bottom:931.998000px;}
.y29a{bottom:932.934000px;}
.y195{bottom:937.716000px;}
.ya6{bottom:940.704000px;}
.y28{bottom:943.453500px;}
.y21f{bottom:944.056500px;}
.y179{bottom:946.681500px;}
.y64{bottom:948.187500px;}
.y258{bottom:948.270000px;}
.y126{bottom:948.475500px;}
.y43{bottom:950.779500px;}
.y8{bottom:950.839500px;}
.ye5{bottom:951.724500px;}
.y299{bottom:952.659000px;}
.y142{bottom:956.247000px;}
.y194{bottom:957.442500px;}
.ya5{bottom:960.430500px;}
.y2c8{bottom:962.734500px;}
.y178{bottom:966.408000px;}
.y125{bottom:968.202000px;}
.ye4{bottom:971.451000px;}
.y298{bottom:972.385500px;}
.y21e{bottom:973.434000px;}
.ya4{bottom:980.157000px;}
.y42{bottom:982.461000px;}
.y19{bottom:984.550500px;}
.y177{bottom:986.134500px;}
.y7{bottom:986.509500px;}
.y141{bottom:987.928500px;}
.ye3{bottom:991.176000px;}
.y63{bottom:992.112000px;}
.ya3{bottom:999.883500px;}
.y41{bottom:1002.187500px;}
.y176{bottom:1005.861000px;}
.ye2{bottom:1010.902500px;}
.y62{bottom:1011.838500px;}
.y21d{bottom:1016.766000px;}
.ya2{bottom:1019.608500px;}
.y40{bottom:1021.912500px;}
.y61{bottom:1031.565000px;}
.y21c{bottom:1036.492500px;}
.y140{bottom:1039.335000px;}
.ye1{bottom:1040.418000px;}
.y3f{bottom:1041.639000px;}
.y60{bottom:1051.290000px;}
.y3e{bottom:1071.016500px;}
.hb{height:23.850624px;}
.hc{height:35.865450px;}
.h5{height:36.744307px;}
.h7{height:41.484266px;}
.h8{height:42.799330px;}
.ha{height:44.831700px;}
.h6{height:49.673524px;}
.h3{height:51.359539px;}
.h4{height:60.598349px;}
.h9{height:61.631275px;}
.h2{height:88.766100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:85.039500px;}
.x17{left:91.515000px;}
.xb{left:99.979500px;}
.x16{left:103.305000px;}
.xa{left:107.455500px;}
.x10{left:109.056000px;}
.xe{left:119.133000px;}
.xc{left:122.400000px;}
.x12{left:137.343000px;}
.x1{left:149.445000px;}
.x15{left:155.275500px;}
.x14{left:170.220000px;}
.x18{left:175.117500px;}
.x4{left:197.430000px;}
.x11{left:222.595500px;}
.xd{left:244.749000px;}
.x5{left:295.725000px;}
.x2{left:306.049500px;}
.x7{left:352.708500px;}
.x8{left:364.486500px;}
.x6{left:366.522000px;}
.x3{left:371.064000px;}
.x13{left:417.724500px;}
.xf{left:421.461000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001032pt;}
.ls3{letter-spacing:2.656473pt;}
.ls4{letter-spacing:2.661964pt;}
.lsf{letter-spacing:7.184614pt;}
.ls9{letter-spacing:16.198366pt;}
.ls7{letter-spacing:17.457032pt;}
.lsa{letter-spacing:17.708745pt;}
.lsb{letter-spacing:17.714079pt;}
.lsd{letter-spacing:19.778079pt;}
.lsc{letter-spacing:20.103412pt;}
.ls10{letter-spacing:20.210079pt;}
.lse{letter-spacing:20.700745pt;}
.ls5{letter-spacing:21.003699pt;}
.ls11{letter-spacing:21.036745pt;}
.ls6{letter-spacing:22.454366pt;}
.ls2{letter-spacing:26.566933pt;}
.ls1{letter-spacing:26.569067pt;}
.ws11{word-spacing:-41.922621pt;}
.wsf{word-spacing:-40.328605pt;}
.ws14e{word-spacing:-30.551973pt;}
.ws3c{word-spacing:-27.156719pt;}
.ws15{word-spacing:-26.566933pt;}
.ws10{word-spacing:-25.397988pt;}
.ws12b{word-spacing:-17.693578pt;}
.ws14d{word-spacing:-17.002837pt;}
.wse1{word-spacing:-14.771215pt;}
.wse4{word-spacing:-14.718081pt;}
.ws10c{word-spacing:-14.664947pt;}
.ws74{word-spacing:-14.505546pt;}
.ws25{word-spacing:-14.239876pt;}
.wsa3{word-spacing:-14.186742pt;}
.wsb6{word-spacing:-14.133609pt;}
.wse3{word-spacing:-14.080475pt;}
.wsf3{word-spacing:-14.027341pt;}
.ws24{word-spacing:-13.974207pt;}
.ws70{word-spacing:-13.921073pt;}
.ws46{word-spacing:-13.867939pt;}
.wsa5{word-spacing:-13.814805pt;}
.wsa{word-spacing:-13.761671pt;}
.ws4a{word-spacing:-13.708538pt;}
.ws69{word-spacing:-13.496002pt;}
.ws14c{word-spacing:-13.442868pt;}
.ws1c{word-spacing:-13.389734pt;}
.ws3d{word-spacing:-13.336601pt;}
.ws120{word-spacing:-13.230333pt;}
.ws73{word-spacing:-13.207446pt;}
.wsc8{word-spacing:-13.177199pt;}
.wsee{word-spacing:-13.124065pt;}
.ws14{word-spacing:-13.070931pt;}
.ws140{word-spacing:-13.066889pt;}
.ws1f{word-spacing:-13.017797pt;}
.wsdd{word-spacing:-12.964663pt;}
.ws7d{word-spacing:-12.929176pt;}
.ws7f{word-spacing:-12.911530pt;}
.wsfa{word-spacing:-12.858396pt;}
.ws14a{word-spacing:-12.816313pt;}
.ws31{word-spacing:-12.805262pt;}
.ws32{word-spacing:-12.752128pt;}
.wsef{word-spacing:-12.698994pt;}
.wsaa{word-spacing:-12.592726pt;}
.wsd1{word-spacing:-12.549816pt;}
.ws111{word-spacing:-12.539593pt;}
.wsd2{word-spacing:-12.491772pt;}
.wsea{word-spacing:-12.486459pt;}
.ws68{word-spacing:-12.438638pt;}
.ws65{word-spacing:-12.433325pt;}
.wsf0{word-spacing:-12.380191pt;}
.ws5a{word-spacing:-12.327057pt;}
.ws112{word-spacing:-12.273923pt;}
.wseb{word-spacing:-12.167655pt;}
.ws1a{word-spacing:-12.114522pt;}
.ws9d{word-spacing:-12.061388pt;}
.ws5e{word-spacing:-12.008254pt;}
.wsfd{word-spacing:-11.955120pt;}
.wsc6{word-spacing:-11.901986pt;}
.wsae{word-spacing:-11.848852pt;}
.ws123{word-spacing:-11.795718pt;}
.ws40{word-spacing:-11.689451pt;}
.wsce{word-spacing:-11.636317pt;}
.wsa4{word-spacing:-11.583183pt;}
.wsca{word-spacing:-11.530049pt;}
.ws136{word-spacing:-11.482229pt;}
.wsa8{word-spacing:-11.476915pt;}
.ws148{word-spacing:-11.429095pt;}
.wsa9{word-spacing:-11.423781pt;}
.wsd6{word-spacing:-11.370647pt;}
.ws59{word-spacing:-11.322827pt;}
.wse9{word-spacing:-11.317514pt;}
.ws96{word-spacing:-11.264380pt;}
.wscb{word-spacing:-11.211246pt;}
.ws114{word-spacing:-11.104978pt;}
.wsb1{word-spacing:-11.051844pt;}
.wsd5{word-spacing:-10.998710pt;}
.wsd3{word-spacing:-10.945577pt;}
.wsa0{word-spacing:-10.892443pt;}
.ws106{word-spacing:-10.839309pt;}
.ws72{word-spacing:-10.786175pt;}
.ws7e{word-spacing:-10.759029pt;}
.ws9e{word-spacing:-10.751003pt;}
.ws9f{word-spacing:-10.733041pt;}
.wsff{word-spacing:-10.679907pt;}
.ws30{word-spacing:-10.631523pt;}
.wse8{word-spacing:-10.626773pt;}
.wsd4{word-spacing:-10.573639pt;}
.wsc{word-spacing:-10.520506pt;}
.ws36{word-spacing:-10.467372pt;}
.ws49{word-spacing:-10.414238pt;}
.ws9{word-spacing:-10.361104pt;}
.ws6f{word-spacing:-10.337172pt;}
.ws37{word-spacing:-10.307970pt;}
.ws105{word-spacing:-10.254836pt;}
.ws5c{word-spacing:-10.201702pt;}
.ws14b{word-spacing:-10.153882pt;}
.ws8c{word-spacing:-10.148569pt;}
.ws5b{word-spacing:-10.095435pt;}
.wsf2{word-spacing:-10.042301pt;}
.ws67{word-spacing:-9.989167pt;}
.wsdc{word-spacing:-9.936033pt;}
.ws2c{word-spacing:-9.882899pt;}
.ws4d{word-spacing:-9.776631pt;}
.wsb{word-spacing:-9.723498pt;}
.ws2b{word-spacing:-9.670364pt;}
.wsed{word-spacing:-9.564096pt;}
.ws5d{word-spacing:-9.516276pt;}
.ws44{word-spacing:-9.510962pt;}
.ws38{word-spacing:-9.463142pt;}
.ws98{word-spacing:-9.457828pt;}
.ws146{word-spacing:-9.410008pt;}
.wsdb{word-spacing:-9.404694pt;}
.ws8f{word-spacing:-9.351561pt;}
.wsc7{word-spacing:-9.298427pt;}
.ws63{word-spacing:-9.245293pt;}
.ws1b{word-spacing:-9.192159pt;}
.ws41{word-spacing:-9.139025pt;}
.ws119{word-spacing:-9.085891pt;}
.ws76{word-spacing:-9.032757pt;}
.ws3e{word-spacing:-8.979623pt;}
.wsb5{word-spacing:-8.926490pt;}
.ws11e{word-spacing:-8.879151pt;}
.wsc4{word-spacing:-8.874425pt;}
.ws5{word-spacing:-8.873356pt;}
.ws8a{word-spacing:-8.869834pt;}
.wsd0{word-spacing:-8.855767pt;}
.ws6{word-spacing:-8.820222pt;}
.wsad{word-spacing:-8.812913pt;}
.ws2f{word-spacing:-8.767088pt;}
.ws117{word-spacing:-8.713954pt;}
.wsde{word-spacing:-8.703335pt;}
.ws97{word-spacing:-8.666134pt;}
.ws10a{word-spacing:-8.660820pt;}
.ws91{word-spacing:-8.613000pt;}
.ws6b{word-spacing:-8.607686pt;}
.ws2d{word-spacing:-8.578263pt;}
.ws122{word-spacing:-8.554553pt;}
.wsfe{word-spacing:-8.501419pt;}
.ws126{word-spacing:-8.453598pt;}
.wsab{word-spacing:-8.448285pt;}
.ws118{word-spacing:-8.400464pt;}
.ws149{word-spacing:-8.347330pt;}
.ws8e{word-spacing:-8.342017pt;}
.ws1d{word-spacing:-8.288883pt;}
.wsb9{word-spacing:-8.235749pt;}
.ws17{word-spacing:-8.134795pt;}
.ws2e{word-spacing:-8.129482pt;}
.ws104{word-spacing:-8.027347pt;}
.ws26{word-spacing:-8.023214pt;}
.ws6a{word-spacing:-7.922260pt;}
.wsf8{word-spacing:-7.916946pt;}
.wsd8{word-spacing:-7.912970pt;}
.ws83{word-spacing:-7.892237pt;}
.ws13a{word-spacing:-7.891038pt;}
.wsf1{word-spacing:-7.863812pt;}
.ws66{word-spacing:-7.821064pt;}
.ws125{word-spacing:-7.815992pt;}
.ws11a{word-spacing:-7.598143pt;}
.ws81{word-spacing:-7.551905pt;}
.wsc2{word-spacing:-7.491875pt;}
.ws75{word-spacing:-7.434759pt;}
.ws4f{word-spacing:-7.385607pt;}
.ws21{word-spacing:-7.332474pt;}
.ws82{word-spacing:-7.302699pt;}
.ws84{word-spacing:-7.290462pt;}
.ws86{word-spacing:-7.279340pt;}
.ws50{word-spacing:-7.173072pt;}
.ws10d{word-spacing:-7.119938pt;}
.ws64{word-spacing:-7.066804pt;}
.ws110{word-spacing:-7.013670pt;}
.wsac{word-spacing:-6.960537pt;}
.ws88{word-spacing:-6.944662pt;}
.ws58{word-spacing:-6.907403pt;}
.ws4e{word-spacing:-6.806448pt;}
.ws6e{word-spacing:-6.801135pt;}
.ws34{word-spacing:-6.748001pt;}
.ws8b{word-spacing:-6.699124pt;}
.wsc9{word-spacing:-6.694867pt;}
.ws80{word-spacing:-6.693720pt;}
.ws35{word-spacing:-6.641733pt;}
.ws48{word-spacing:-6.588599pt;}
.wsf7{word-spacing:-6.535466pt;}
.wsb7{word-spacing:-6.482332pt;}
.wsec{word-spacing:-6.429198pt;}
.wse6{word-spacing:-6.376064pt;}
.ws6d{word-spacing:-6.322930pt;}
.ws132{word-spacing:-6.275110pt;}
.wsbd{word-spacing:-6.216662pt;}
.wsf6{word-spacing:-6.163529pt;}
.wsa7{word-spacing:-6.110395pt;}
.ws47{word-spacing:-6.062574pt;}
.wsdf{word-spacing:-6.057261pt;}
.wsba{word-spacing:-6.004127pt;}
.ws12a{word-spacing:-5.956306pt;}
.wscd{word-spacing:-5.950993pt;}
.ws135{word-spacing:-5.850039pt;}
.ws39{word-spacing:-5.844725pt;}
.ws3b{word-spacing:-5.791591pt;}
.ws45{word-spacing:-5.738458pt;}
.ws11f{word-spacing:-5.720682pt;}
.ws28{word-spacing:-5.685324pt;}
.ws7{word-spacing:-5.673608pt;}
.ws10f{word-spacing:-5.632190pt;}
.ws101{word-spacing:-5.579056pt;}
.ws100{word-spacing:-5.559521pt;}
.ws16{word-spacing:-5.525922pt;}
.wsaf{word-spacing:-5.472788pt;}
.ws134{word-spacing:-5.424968pt;}
.wscc{word-spacing:-5.419654pt;}
.ws3a{word-spacing:-5.371834pt;}
.ws42{word-spacing:-5.313387pt;}
.ws55{word-spacing:-5.260253pt;}
.ws131{word-spacing:-5.258734pt;}
.ws4c{word-spacing:-5.207119pt;}
.ws13b{word-spacing:-5.159298pt;}
.wsb0{word-spacing:-5.153985pt;}
.ws85{word-spacing:-5.130419pt;}
.ws138{word-spacing:-5.106165pt;}
.ws8{word-spacing:-5.100851pt;}
.ws56{word-spacing:-5.047717pt;}
.ws19{word-spacing:-4.994583pt;}
.wsb2{word-spacing:-4.941450pt;}
.ws2a{word-spacing:-4.888316pt;}
.ws90{word-spacing:-4.879215pt;}
.ws1e{word-spacing:-4.835182pt;}
.wsb3{word-spacing:-4.782048pt;}
.ws18{word-spacing:-4.728914pt;}
.ws7a{word-spacing:-4.716925pt;}
.ws107{word-spacing:-4.681094pt;}
.ws7c{word-spacing:-4.675780pt;}
.ws57{word-spacing:-4.627960pt;}
.wsb8{word-spacing:-4.622646pt;}
.ws108{word-spacing:-4.574826pt;}
.ws52{word-spacing:-4.569513pt;}
.ws53{word-spacing:-4.463245pt;}
.ws71{word-spacing:-4.451449pt;}
.ws116{word-spacing:-4.419665pt;}
.ws115{word-spacing:-4.410111pt;}
.ws87{word-spacing:-4.374377pt;}
.ws62{word-spacing:-4.362290pt;}
.wse0{word-spacing:-4.356977pt;}
.ws9b{word-spacing:-4.303843pt;}
.ws3f{word-spacing:-4.250709pt;}
.ws102{word-spacing:-4.144442pt;}
.ws103{word-spacing:-4.091308pt;}
.wsb4{word-spacing:-4.038174pt;}
.ws54{word-spacing:-3.985040pt;}
.ws9c{word-spacing:-3.937220pt;}
.wsd9{word-spacing:-3.931906pt;}
.wsd7{word-spacing:-3.927767pt;}
.ws124{word-spacing:-3.825638pt;}
.ws89{word-spacing:-3.782847pt;}
.ws33{word-spacing:-3.772505pt;}
.wsf9{word-spacing:-3.719371pt;}
.wsbe{word-spacing:-3.698141pt;}
.ws99{word-spacing:-3.666237pt;}
.ws109{word-spacing:-3.646024pt;}
.ws113{word-spacing:-3.613103pt;}
.ws29{word-spacing:-3.559969pt;}
.wsbb{word-spacing:-3.506835pt;}
.wsf5{word-spacing:-3.453701pt;}
.ws23{word-spacing:-3.400567pt;}
.ws9a{word-spacing:-3.352747pt;}
.ws27{word-spacing:-3.347434pt;}
.wsa2{word-spacing:-3.294300pt;}
.ws51{word-spacing:-3.241166pt;}
.ws12f{word-spacing:-3.140212pt;}
.ws60{word-spacing:-3.134898pt;}
.ws92{word-spacing:-3.052287pt;}
.ws4b{word-spacing:-3.050052pt;}
.ws94{word-spacing:-3.028630pt;}
.ws127{word-spacing:-3.016486pt;}
.ws142{word-spacing:-3.016276pt;}
.wsa1{word-spacing:-2.980810pt;}
.ws6c{word-spacing:-2.975497pt;}
.wsa6{word-spacing:-2.922363pt;}
.ws93{word-spacing:-2.821408pt;}
.ws10e{word-spacing:-2.709827pt;}
.wsbc{word-spacing:-2.603559pt;}
.ws11b{word-spacing:-2.550426pt;}
.ws7b{word-spacing:-2.541087pt;}
.wsc3{word-spacing:-2.343204pt;}
.wscf{word-spacing:-2.337890pt;}
.ws137{word-spacing:-2.264824pt;}
.ws129{word-spacing:-2.264210pt;}
.ws128{word-spacing:-2.259491pt;}
.ws141{word-spacing:-2.258877pt;}
.ws43{word-spacing:-2.178489pt;}
.ws95{word-spacing:-2.072221pt;}
.ws5f{word-spacing:-1.824294pt;}
.wsfb{word-spacing:-1.753418pt;}
.ws10b{word-spacing:-1.540882pt;}
.ws22{word-spacing:-1.275213pt;}
.wse2{word-spacing:-1.222079pt;}
.ws133{word-spacing:-1.168945pt;}
.wsc0{word-spacing:-1.115811pt;}
.ws145{word-spacing:-1.062677pt;}
.ws12e{word-spacing:-1.014857pt;}
.ws147{word-spacing:-1.014423pt;}
.ws61{word-spacing:-0.972769pt;}
.wsda{word-spacing:-0.850142pt;}
.wsf4{word-spacing:-0.743874pt;}
.ws77{word-spacing:-0.466301pt;}
.ws79{word-spacing:-0.425071pt;}
.wsc1{word-spacing:-0.318803pt;}
.ws121{word-spacing:-0.063761pt;}
.ws11d{word-spacing:-0.042507pt;}
.ws3{word-spacing:0.000000pt;}
.ws13f{word-spacing:0.034456pt;}
.wsbf{word-spacing:0.184250pt;}
.wse5{word-spacing:0.212535pt;}
.ws139{word-spacing:1.068509pt;}
.ws78{word-spacing:1.713563pt;}
.ws12d{word-spacing:2.810782pt;}
.ws12c{word-spacing:3.028630pt;}
.ws144{word-spacing:3.501522pt;}
.ws143{word-spacing:3.772505pt;}
.ws13e{word-spacing:4.994583pt;}
.ws13c{word-spacing:6.641733pt;}
.ws11c{word-spacing:12.879682pt;}
.ws130{word-spacing:13.177199pt;}
.wsfc{word-spacing:15.005042pt;}
.ws4{word-spacing:16.354714pt;}
.wsc5{word-spacing:17.640444pt;}
.wsd{word-spacing:19.393861pt;}
.wse{word-spacing:19.446995pt;}
.ws13d{word-spacing:19.765798pt;}
.ws20{word-spacing:23.272789pt;}
.ws1{word-spacing:23.336550pt;}
.ws2{word-spacing:24.866747pt;}
.wse7{word-spacing:27.927269pt;}
.ws13{word-spacing:40.223000pt;}
.ws0{word-spacing:40.333200pt;}
.ws8d{word-spacing:42.005674pt;}
.ws12{word-spacing:1887.471572pt;}
._18{margin-left:-30.977044pt;}
._c{margin-left:-28.054682pt;}
._a{margin-left:-26.566933pt;}
._16{margin-left:-25.079185pt;}
._2a{margin-left:-10.138400pt;}
._17{margin-left:-8.873356pt;}
._1d{margin-left:-7.438741pt;}
._e{margin-left:-6.535466pt;}
._32{margin-left:-5.328698pt;}
._2{margin-left:-4.410111pt;}
._1c{margin-left:-3.416200pt;}
._1{margin-left:-1.976593pt;}
._3{margin-left:-0.945770pt;}
._4{width:1.328347pt;}
._5{width:2.274182pt;}
._0{width:3.306000pt;}
._20{width:4.851407pt;}
._27{width:6.156015pt;}
._28{width:12.688420pt;}
._26{width:14.154889pt;}
._24{width:15.889038pt;}
._22{width:16.962977pt;}
._11{width:18.182422pt;}
._23{width:19.120249pt;}
._12{width:20.350271pt;}
._1e{width:21.315421pt;}
._1f{width:23.180569pt;}
._21{width:24.291432pt;}
._29{width:25.796536pt;}
._25{width:26.727912pt;}
._b{width:27.735878pt;}
._2d{width:29.648698pt;}
._2e{width:30.817643pt;}
._2f{width:33.527470pt;}
._2c{width:34.696415pt;}
._14{width:38.150116pt;}
._2b{width:42.082187pt;}
._31{width:46.927844pt;}
._6{width:50.477173pt;}
._10{width:54.302812pt;}
._30{width:59.414303pt;}
._1b{width:60.610000pt;}
._35{width:61.916697pt;}
._d{width:64.770183pt;}
._34{width:92.096302pt;}
._33{width:109.030694pt;}
._19{width:154.428297pt;}
._8{width:703.184231pt;}
._7{width:1088.457899pt;}
._13{width:1301.110273pt;}
._9{width:1507.407797pt;}
._15{width:1615.769031pt;}
._f{width:1675.321456pt;}
._1a{width:2014.365873pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:113.385333pt;}
.ye0{bottom:169.176000pt;}
.y124{bottom:171.826667pt;}
.y1ce{bottom:172.926667pt;}
.y1e8{bottom:172.942667pt;}
.y13f{bottom:173.794667pt;}
.y5f{bottom:177.104000pt;}
.y297{bottom:178.604000pt;}
.ya1{bottom:183.518667pt;}
.y2e0{bottom:183.942667pt;}
.y107{bottom:186.710667pt;}
.y241{bottom:186.808000pt;}
.y123{bottom:189.361333pt;}
.y13e{bottom:191.329333pt;}
.y5e{bottom:194.637333pt;}
.y175{bottom:195.076000pt;}
.y296{bottom:196.138667pt;}
.ydf{bottom:197.117333pt;}
.y276{bottom:197.166667pt;}
.y1e7{bottom:200.201333pt;}
.ya0{bottom:201.053333pt;}
.y2df{bottom:201.477333pt;}
.y207{bottom:204.245333pt;}
.y240{bottom:205.205333pt;}
.y21b{bottom:206.217333pt;}
.y1cd{bottom:207.020000pt;}
.y2c7{bottom:207.152000pt;}
.y13d{bottom:208.862667pt;}
.y5d{bottom:212.172000pt;}
.y174{bottom:212.610667pt;}
.y295{bottom:213.672000pt;}
.y106{bottom:213.909333pt;}
.y122{bottom:217.522667pt;}
.y1e6{bottom:217.736000pt;}
.y2de{bottom:219.010667pt;}
.y193{bottom:220.856000pt;}
.y206{bottom:221.780000pt;}
.y23f{bottom:222.740000pt;}
.y21a{bottom:223.752000pt;}
.y1cc{bottom:224.554667pt;}
.y2c6{bottom:224.685333pt;}
.y275{bottom:224.988000pt;}
.yde{bottom:225.057333pt;}
.y13c{bottom:226.397333pt;}
.y9f{bottom:229.214667pt;}
.y5c{bottom:229.706667pt;}
.y294{bottom:231.206667pt;}
.yc0{bottom:231.513333pt;}
.y1e5{bottom:235.270667pt;}
.y2dd{bottom:236.545333pt;}
.y192{bottom:238.390667pt;}
.y205{bottom:239.313333pt;}
.y23e{bottom:240.274667pt;}
.y173{bottom:240.772000pt;}
.y105{bottom:241.108000pt;}
.y219{bottom:241.286667pt;}
.y1cb{bottom:242.089333pt;}
.y13b{bottom:243.932000pt;}
.y9e{bottom:246.749333pt;}
.y5b{bottom:247.241333pt;}
.y293{bottom:248.741333pt;}
.ybf{bottom:249.048000pt;}
.y121{bottom:251.449333pt;}
.y1e4{bottom:252.804000pt;}
.ydd{bottom:252.997333pt;}
.y2dc{bottom:254.080000pt;}
.y191{bottom:255.924000pt;}
.y204{bottom:256.848000pt;}
.y23d{bottom:257.808000pt;}
.y172{bottom:258.305333pt;}
.y104{bottom:258.642667pt;}
.y218{bottom:258.821333pt;}
.y1ca{bottom:259.624000pt;}
.y2c5{bottom:259.754667pt;}
.y274{bottom:260.056000pt;}
.y13a{bottom:261.466667pt;}
.y9d{bottom:264.282667pt;}
.y292{bottom:266.276000pt;}
.y120{bottom:269.546667pt;}
.y1e3{bottom:270.338667pt;}
.y2db{bottom:271.614667pt;}
.y5a{bottom:273.353333pt;}
.y203{bottom:274.382667pt;}
.y23c{bottom:275.342667pt;}
.y3c{bottom:276.161333pt;}
.y103{bottom:276.176000pt;}
.y217{bottom:276.354667pt;}
.y1c9{bottom:277.157333pt;}
.ybe{bottom:277.209333pt;}
.y2c4{bottom:277.289333pt;}
.y273{bottom:277.590667pt;}
.y139{bottom:279.000000pt;}
.ydc{bottom:280.937333pt;}
.y9c{bottom:281.817333pt;}
.y190{bottom:282.037333pt;}
.y1b1{bottom:282.521333pt;}
.y81{bottom:283.250667pt;}
.y291{bottom:283.809333pt;}
.y171{bottom:286.466667pt;}
.y257{bottom:291.917333pt;}
.y23b{bottom:292.877333pt;}
.y102{bottom:293.710667pt;}
.y216{bottom:293.889333pt;}
.y1c8{bottom:294.692000pt;}
.ybd{bottom:294.742667pt;}
.y272{bottom:295.125333pt;}
.y11f{bottom:297.634667pt;}
.y2da{bottom:297.726667pt;}
.y1e2{bottom:298.500000pt;}
.y9b{bottom:299.352000pt;}
.y1b0{bottom:300.056000pt;}
.y80{bottom:300.785333pt;}
.y290{bottom:301.344000pt;}
.y202{bottom:301.576000pt;}
.y170{bottom:304.001333pt;}
.y3b{bottom:304.322667pt;}
.y138{bottom:307.161333pt;}
.ydb{bottom:308.657333pt;}
.y23a{bottom:310.412000pt;}
.y215{bottom:311.424000pt;}
.y2c3{bottom:312.357333pt;}
.y59{bottom:312.398667pt;}
.y271{bottom:312.658667pt;}
.y1e1{bottom:316.034667pt;}
.y1af{bottom:317.590667pt;}
.y18f{bottom:318.160000pt;}
.y2d9{bottom:318.184000pt;}
.y7f{bottom:318.320000pt;}
.y256{bottom:318.368000pt;}
.y28f{bottom:318.878667pt;}
.y101{bottom:319.946667pt;}
.y1c7{bottom:321.894667pt;}
.ybc{bottom:322.904000pt;}
.y11e{bottom:323.748000pt;}
.y137{bottom:324.696000pt;}
.yda{bottom:326.192000pt;}
.y9a{bottom:327.513333pt;}
.y239{bottom:327.945333pt;}
.y214{bottom:328.958667pt;}
.y201{bottom:329.253333pt;}
.y2c2{bottom:329.892000pt;}
.y58{bottom:329.932000pt;}
.y270{bottom:330.193333pt;}
.y16f{bottom:332.162667pt;}
.y3a{bottom:332.484000pt;}
.y1ae{bottom:335.125333pt;}
.y7e{bottom:335.854667pt;}
.y28e{bottom:336.413333pt;}
.y100{bottom:337.481333pt;}
.yd9{bottom:343.726667pt;}
.y1e0{bottom:344.196000pt;}
.y99{bottom:345.048000pt;}
.y18{bottom:345.405333pt;}
.y238{bottom:345.480000pt;}
.y255{bottom:345.674667pt;}
.y18e{bottom:346.321333pt;}
.y213{bottom:346.492000pt;}
.y200{bottom:346.788000pt;}
.y57{bottom:347.466667pt;}
.y26f{bottom:347.728000pt;}
.y1c6{bottom:349.576000pt;}
.y16e{bottom:349.697333pt;}
.ybb{bottom:351.065333pt;}
.y1ad{bottom:352.658667pt;}
.y136{bottom:352.857333pt;}
.y28d{bottom:353.946667pt;}
.yff{bottom:355.016000pt;}
.y39{bottom:360.645333pt;}
.yd8{bottom:361.260000pt;}
.y1df{bottom:361.729333pt;}
.y98{bottom:362.581333pt;}
.y11d{bottom:362.792000pt;}
.y17{bottom:362.938667pt;}
.y237{bottom:363.014667pt;}
.y7d{bottom:364.014667pt;}
.y212{bottom:364.026667pt;}
.y2c1{bottom:364.960000pt;}
.y26e{bottom:365.262667pt;}
.y16d{bottom:367.230667pt;}
.yba{bottom:368.600000pt;}
.y1ac{bottom:370.193333pt;}
.y28c{bottom:371.481333pt;}
.y254{bottom:372.980000pt;}
.y156{bottom:374.110667pt;}
.y1ff{bottom:374.465333pt;}
.y18d{bottom:374.481333pt;}
.y2d8{bottom:374.762667pt;}
.y56{bottom:375.628000pt;}
.y1c5{bottom:377.258667pt;}
.yd7{bottom:378.794667pt;}
.y135{bottom:378.970667pt;}
.y11c{bottom:380.326667pt;}
.y236{bottom:380.549333pt;}
.y7c{bottom:381.549333pt;}
.y211{bottom:381.561333pt;}
.y2c0{bottom:382.494667pt;}
.y26d{bottom:382.796000pt;}
.y16c{bottom:384.765333pt;}
.y1ab{bottom:387.728000pt;}
.y38{bottom:388.806667pt;}
.y28b{bottom:389.016000pt;}
.y1de{bottom:389.890667pt;}
.yfe{bottom:390.084000pt;}
.y97{bottom:390.742667pt;}
.y16{bottom:391.100000pt;}
.y155{bottom:391.645333pt;}
.y2d7{bottom:392.297333pt;}
.y1c4{bottom:394.792000pt;}
.yb9{bottom:396.761333pt;}
.y11b{bottom:397.861333pt;}
.y235{bottom:398.082667pt;}
.y7b{bottom:399.084000pt;}
.y210{bottom:399.096000pt;}
.y253{bottom:400.286667pt;}
.y26c{bottom:400.330667pt;}
.y1fe{bottom:402.142667pt;}
.y16b{bottom:402.300000pt;}
.y18c{bottom:402.642667pt;}
.y55{bottom:403.789333pt;}
.y1aa{bottom:405.262667pt;}
.yd6{bottom:406.514667pt;}
.y28a{bottom:406.550667pt;}
.y1dd{bottom:407.425333pt;}
.yfd{bottom:407.618667pt;}
.y96{bottom:408.277333pt;}
.y154{bottom:409.180000pt;}
.y20f{bottom:416.629333pt;}
.y37{bottom:416.968000pt;}
.y2bf{bottom:417.564000pt;}
.y26b{bottom:417.865333pt;}
.y134{bottom:418.014667pt;}
.y2d6{bottom:418.410667pt;}
.y15{bottom:419.261333pt;}
.y1c3{bottom:422.474667pt;}
.y1a9{bottom:422.796000pt;}
.yd5{bottom:424.049333pt;}
.y289{bottom:424.084000pt;}
.y234{bottom:424.196000pt;}
.yb8{bottom:424.922667pt;}
.y1dc{bottom:424.960000pt;}
.yfc{bottom:425.153333pt;}
.y95{bottom:425.812000pt;}
.y153{bottom:426.714667pt;}
.y7a{bottom:427.245333pt;}
.y252{bottom:427.592000pt;}
.y11a{bottom:428.549333pt;}
.y1fd{bottom:429.820000pt;}
.y16a{bottom:430.461333pt;}
.y18b{bottom:430.804000pt;}
.y54{bottom:431.950667pt;}
.y20e{bottom:434.164000pt;}
.y36{bottom:434.502667pt;}
.y2be{bottom:435.097333pt;}
.y26a{bottom:435.400000pt;}
.y133{bottom:435.549333pt;}
.y14{bottom:436.796000pt;}
.y1c2{bottom:440.009333pt;}
.y1a8{bottom:440.330667pt;}
.yd4{bottom:441.582667pt;}
.y288{bottom:441.618667pt;}
.yfb{bottom:442.686667pt;}
.y94{bottom:443.346667pt;}
.y152{bottom:444.248000pt;}
.y79{bottom:444.780000pt;}
.y169{bottom:447.996000pt;}
.y20d{bottom:451.698667pt;}
.y269{bottom:452.933333pt;}
.yb7{bottom:453.084000pt;}
.y251{bottom:454.898667pt;}
.y1db{bottom:455.648000pt;}
.y1fc{bottom:457.498667pt;}
.y18a{bottom:458.965333pt;}
.yd3{bottom:459.117333pt;}
.y287{bottom:459.153333pt;}
.y53{bottom:460.112000pt;}
.yfa{bottom:460.221333pt;}
.y93{bottom:460.880000pt;}
.y151{bottom:461.782667pt;}
.y78{bottom:462.313333pt;}
.y35{bottom:462.662667pt;}
.y233{bottom:462.713333pt;}
.y132{bottom:463.710667pt;}
.y13{bottom:467.613333pt;}
.y1c1{bottom:467.690667pt;}
.y1a7{bottom:468.492000pt;}
.y20c{bottom:469.233333pt;}
.y2bd{bottom:470.166667pt;}
.y268{bottom:470.468000pt;}
.yb6{bottom:470.617333pt;}
.y119{bottom:474.868000pt;}
.y2d5{bottom:474.988000pt;}
.y168{bottom:476.156000pt;}
.yd2{bottom:476.652000pt;}
.y286{bottom:476.688000pt;}
.yf9{bottom:477.756000pt;}
.y92{bottom:478.414667pt;}
.y2ae{bottom:478.586667pt;}
.y150{bottom:479.317333pt;}
.y77{bottom:479.848000pt;}
.y27{bottom:479.876000pt;}
.y232{bottom:480.248000pt;}
.y131{bottom:481.244000pt;}
.y250{bottom:481.349333pt;}
.y1fb{bottom:485.176000pt;}
.y1c0{bottom:485.225333pt;}
.y1a6{bottom:486.026667pt;}
.y20b{bottom:486.766667pt;}
.y189{bottom:487.126667pt;}
.y2bc{bottom:487.701333pt;}
.y267{bottom:488.002667pt;}
.y52{bottom:488.272000pt;}
.y34{bottom:490.824000pt;}
.y118{bottom:492.402667pt;}
.y2d4{bottom:492.522667pt;}
.y167{bottom:493.690667pt;}
.y285{bottom:494.222667pt;}
.yf8{bottom:495.290667pt;}
.y12{bottom:495.774667pt;}
.y91{bottom:495.949333pt;}
.y2ad{bottom:496.121333pt;}
.y14f{bottom:496.852000pt;}
.y76{bottom:497.382667pt;}
.y231{bottom:497.782667pt;}
.yb5{bottom:498.778667pt;}
.y24f{bottom:498.884000pt;}
.y1da{bottom:501.966667pt;}
.y1a5{bottom:503.561333pt;}
.y20a{bottom:504.301333pt;}
.yd1{bottom:504.592000pt;}
.y188{bottom:504.661333pt;}
.y117{bottom:509.937333pt;}
.y26{bottom:510.694667pt;}
.y166{bottom:511.225333pt;}
.y284{bottom:511.756000pt;}
.y1fa{bottom:512.369333pt;}
.yf7{bottom:512.824000pt;}
.y1bf{bottom:512.906667pt;}
.y11{bottom:513.309333pt;}
.y2ac{bottom:513.656000pt;}
.y14e{bottom:514.385333pt;}
.y75{bottom:514.917333pt;}
.y230{bottom:515.317333pt;}
.y266{bottom:515.822667pt;}
.yb4{bottom:516.313333pt;}
.y51{bottom:516.433333pt;}
.y33{bottom:518.985333pt;}
.y1d9{bottom:519.501333pt;}
.yd0{bottom:522.126667pt;}
.y2bb{bottom:522.769333pt;}
.y90{bottom:524.110667pt;}
.y24e{bottom:524.997333pt;}
.y116{bottom:527.470667pt;}
.y2d3{bottom:527.592000pt;}
.y283{bottom:529.290667pt;}
.y1f9{bottom:529.904000pt;}
.yf6{bottom:530.358667pt;}
.y1be{bottom:530.441333pt;}
.y2ab{bottom:531.190667pt;}
.y1a4{bottom:531.721333pt;}
.y14d{bottom:531.920000pt;}
.y74{bottom:532.450667pt;}
.y187{bottom:532.822667pt;}
.y22f{bottom:532.850667pt;}
.y50{bottom:533.968000pt;}
.y1d8{bottom:537.036000pt;}
.y165{bottom:539.386667pt;}
.ycf{bottom:539.661333pt;}
.y2ba{bottom:540.304000pt;}
.y10{bottom:541.470667pt;}
.y25{bottom:541.512000pt;}
.y8f{bottom:541.644000pt;}
.y265{bottom:543.813333pt;}
.yb3{bottom:544.474667pt;}
.y115{bottom:545.005333pt;}
.y2d2{bottom:545.125333pt;}
.y282{bottom:546.825333pt;}
.y32{bottom:547.146667pt;}
.y1f8{bottom:547.438667pt;}
.yf5{bottom:547.893333pt;}
.y1bd{bottom:547.976000pt;}
.y2aa{bottom:548.725333pt;}
.y1a3{bottom:549.256000pt;}
.y73{bottom:549.985333pt;}
.y22e{bottom:550.385333pt;}
.y4f{bottom:551.502667pt;}
.y1d7{bottom:554.570667pt;}
.y164{bottom:556.921333pt;}
.yce{bottom:557.194667pt;}
.yf{bottom:559.005333pt;}
.y8e{bottom:559.178667pt;}
.y14c{bottom:560.081333pt;}
.y24d{bottom:560.750667pt;}
.y186{bottom:560.982667pt;}
.y264{bottom:561.348000pt;}
.yb2{bottom:562.009333pt;}
.y114{bottom:562.540000pt;}
.y281{bottom:564.360000pt;}
.y1f7{bottom:564.972000pt;}
.yf4{bottom:565.428000pt;}
.y2a9{bottom:566.258667pt;}
.y2b9{bottom:566.417333pt;}
.y209{bottom:566.946667pt;}
.y72{bottom:567.520000pt;}
.y22d{bottom:567.920000pt;}
.y1d6{bottom:572.104000pt;}
.y24{bottom:572.330667pt;}
.ycd{bottom:574.729333pt;}
.y31{bottom:575.308000pt;}
.y1bc{bottom:575.657333pt;}
.y8d{bottom:576.713333pt;}
.y1a2{bottom:577.417333pt;}
.y4e{bottom:577.616000pt;}
.y24c{bottom:578.285333pt;}
.y185{bottom:578.517333pt;}
.y113{bottom:580.074667pt;}
.y2d1{bottom:580.194667pt;}
.y280{bottom:581.893333pt;}
.y1f6{bottom:582.506667pt;}
.yf3{bottom:582.961333pt;}
.y2a8{bottom:583.793333pt;}
.y208{bottom:584.481333pt;}
.y163{bottom:585.082667pt;}
.y22c{bottom:585.454667pt;}
.ye{bottom:587.166667pt;}
.y263{bottom:589.338667pt;}
.y23{bottom:589.864000pt;}
.yb1{bottom:590.169333pt;}
.ycc{bottom:592.264000pt;}
.y1bb{bottom:593.192000pt;}
.y8c{bottom:594.248000pt;}
.y71{bottom:595.681333pt;}
.y24b{bottom:595.820000pt;}
.y112{bottom:597.608000pt;}
.y2d0{bottom:597.729333pt;}
.y27f{bottom:599.428000pt;}
.y1f5{bottom:600.041333pt;}
.y1d5{bottom:600.265333pt;}
.yf2{bottom:600.496000pt;}
.y2a7{bottom:601.328000pt;}
.y162{bottom:602.616000pt;}
.y22b{bottom:602.988000pt;}
.y30{bottom:603.469333pt;}
.yd{bottom:604.700000pt;}
.y1a1{bottom:605.578667pt;}
.y14b{bottom:605.777333pt;}
.y184{bottom:606.678667pt;}
.y262{bottom:606.873333pt;}
.yb0{bottom:607.704000pt;}
.ycb{bottom:609.798667pt;}
.y8b{bottom:611.781333pt;}
.y70{bottom:613.214667pt;}
.y24a{bottom:613.354667pt;}
.y111{bottom:615.142667pt;}
.y4d{bottom:616.660000pt;}
.y27e{bottom:616.962667pt;}
.y1f4{bottom:617.576000pt;}
.yf1{bottom:618.030667pt;}
.y2a6{bottom:618.862667pt;}
.y161{bottom:620.150667pt;}
.y22a{bottom:620.522667pt;}
.y22{bottom:620.682667pt;}
.y1ba{bottom:620.873333pt;}
.y6{bottom:621.846667pt;}
.y2b8{bottom:622.996000pt;}
.y1a0{bottom:623.113333pt;}
.y130{bottom:625.238667pt;}
.yca{bottom:627.332000pt;}
.y1d4{bottom:628.426667pt;}
.y8a{bottom:629.316000pt;}
.y249{bottom:630.888000pt;}
.y2f{bottom:631.630667pt;}
.y110{bottom:632.677333pt;}
.y2cf{bottom:632.797333pt;}
.y14a{bottom:633.937333pt;}
.y27d{bottom:634.497333pt;}
.y261{bottom:634.864000pt;}
.y1f3{bottom:635.109333pt;}
.yc{bottom:635.518667pt;}
.yaf{bottom:635.865333pt;}
.y2a5{bottom:636.396000pt;}
.y183{bottom:637.368000pt;}
.y160{bottom:637.685333pt;}
.y229{bottom:638.057333pt;}
.y21{bottom:638.216000pt;}
.y2b7{bottom:640.529333pt;}
.y19f{bottom:640.646667pt;}
.y6f{bottom:641.376000pt;}
.y12f{bottom:642.773333pt;}
.y4c{bottom:644.821333pt;}
.yc9{bottom:644.866667pt;}
.y89{bottom:646.850667pt;}
.y248{bottom:648.422667pt;}
.y10f{bottom:650.212000pt;}
.y2ce{bottom:650.332000pt;}
.y149{bottom:651.472000pt;}
.y27c{bottom:652.030667pt;}
.y1f2{bottom:652.644000pt;}
.yf0{bottom:653.100000pt;}
.y2a4{bottom:653.930667pt;}
.y1d3{bottom:656.588000pt;}
.y2b6{bottom:658.064000pt;}
.y19e{bottom:658.181333pt;}
.y6e{bottom:658.910667pt;}
.y2e{bottom:659.790667pt;}
.yc8{bottom:662.401333pt;}
.y260{bottom:662.854667pt;}
.y228{bottom:663.770667pt;}
.yae{bottom:664.026667pt;}
.y5{bottom:664.168000pt;}
.y88{bottom:664.385333pt;}
.y1b9{bottom:665.610667pt;}
.y15f{bottom:665.846667pt;}
.y247{bottom:665.957333pt;}
.yb{bottom:666.336000pt;}
.y10e{bottom:667.745333pt;}
.y148{bottom:669.006667pt;}
.y20{bottom:669.034667pt;}
.y27b{bottom:669.565333pt;}
.y1f1{bottom:670.178667pt;}
.yef{bottom:670.633333pt;}
.y12e{bottom:670.934667pt;}
.y2a3{bottom:671.465333pt;}
.y4b{bottom:672.982667pt;}
.y2b5{bottom:675.598667pt;}
.y19d{bottom:675.716000pt;}
.y6d{bottom:676.445333pt;}
.yc7{bottom:679.936000pt;}
.y227{bottom:681.305333pt;}
.yad{bottom:681.561333pt;}
.y87{bottom:681.920000pt;}
.y1b8{bottom:683.145333pt;}
.y15e{bottom:683.380000pt;}
.y246{bottom:683.492000pt;}
.y182{bottom:683.686667pt;}
.y1d2{bottom:684.749333pt;}
.y10d{bottom:685.280000pt;}
.y1f{bottom:686.569333pt;}
.y27a{bottom:687.100000pt;}
.y1f0{bottom:687.713333pt;}
.y2d{bottom:687.952000pt;}
.yee{bottom:688.168000pt;}
.y12d{bottom:688.468000pt;}
.y2a2{bottom:689.000000pt;}
.y4{bottom:690.469333pt;}
.y25f{bottom:690.845333pt;}
.y19c{bottom:693.250667pt;}
.y6c{bottom:693.980000pt;}
.ya{bottom:694.497333pt;}
.y147{bottom:695.120000pt;}
.y86{bottom:699.453333pt;}
.y15d{bottom:700.914667pt;}
.y4a{bottom:701.142667pt;}
.y181{bottom:701.220000pt;}
.y10c{bottom:702.814667pt;}
.y279{bottom:704.634667pt;}
.yed{bottom:705.702667pt;}
.y12c{bottom:706.002667pt;}
.y2a1{bottom:706.533333pt;}
.yc6{bottom:707.876000pt;}
.y226{bottom:708.241333pt;}
.y245{bottom:709.604000pt;}
.yac{bottom:709.722667pt;}
.y1b7{bottom:710.346667pt;}
.y2b4{bottom:710.668000pt;}
.y19b{bottom:710.785333pt;}
.y6b{bottom:711.513333pt;}
.y1d1{bottom:712.910667pt;}
.y2c{bottom:716.113333pt;}
.y3{bottom:716.770667pt;}
.y1e{bottom:717.386667pt;}
.y49{bottom:718.677333pt;}
.y180{bottom:718.754667pt;}
.y25e{bottom:718.836000pt;}
.y10b{bottom:720.349333pt;}
.y278{bottom:722.168000pt;}
.y1ef{bottom:722.781333pt;}
.yec{bottom:723.237333pt;}
.y2a0{bottom:724.068000pt;}
.y9{bottom:725.314667pt;}
.yc5{bottom:725.410667pt;}
.y225{bottom:725.776000pt;}
.yab{bottom:727.256000pt;}
.y85{bottom:727.614667pt;}
.y2b3{bottom:728.201333pt;}
.y19a{bottom:728.318667pt;}
.y6a{bottom:729.048000pt;}
.y15c{bottom:729.076000pt;}
.y2cd{bottom:733.024000pt;}
.y12b{bottom:734.164000pt;}
.y1d{bottom:734.921333pt;}
.y244{bottom:735.717333pt;}
.y48{bottom:736.212000pt;}
.y17f{bottom:736.289333pt;}
.y10a{bottom:737.882667pt;}
.y1b6{bottom:738.029333pt;}
.y277{bottom:739.702667pt;}
.y1ee{bottom:740.316000pt;}
.yeb{bottom:740.770667pt;}
.y1d0{bottom:741.072000pt;}
.y29f{bottom:741.602667pt;}
.yc4{bottom:742.945333pt;}
.y224{bottom:743.310667pt;}
.y2b{bottom:744.274667pt;}
.yaa{bottom:744.790667pt;}
.y84{bottom:745.149333pt;}
.y199{bottom:745.853333pt;}
.y69{bottom:746.582667pt;}
.y25d{bottom:746.656000pt;}
.y2cc{bottom:750.558667pt;}
.y12a{bottom:751.698667pt;}
.y1c{bottom:752.456000pt;}
.y47{bottom:753.746667pt;}
.y17e{bottom:753.824000pt;}
.y109{bottom:755.417333pt;}
.y1b5{bottom:755.564000pt;}
.y15b{bottom:757.237333pt;}
.y1ed{bottom:757.850667pt;}
.yea{bottom:758.305333pt;}
.y29e{bottom:759.137333pt;}
.y2a{bottom:761.809333pt;}
.ya9{bottom:762.325333pt;}
.y83{bottom:762.684000pt;}
.y2b2{bottom:763.270667pt;}
.y198{bottom:763.388000pt;}
.y68{bottom:764.117333pt;}
.y25c{bottom:764.190667pt;}
.y2cb{bottom:768.092000pt;}
.y223{bottom:769.024000pt;}
.y146{bottom:769.232000pt;}
.y2{bottom:769.640000pt;}
.yc3{bottom:770.664000pt;}
.y46{bottom:771.280000pt;}
.y17d{bottom:771.357333pt;}
.y108{bottom:772.952000pt;}
.y243{bottom:774.393333pt;}
.y15a{bottom:774.772000pt;}
.y1ec{bottom:775.384000pt;}
.ye9{bottom:775.840000pt;}
.y29d{bottom:776.670667pt;}
.y129{bottom:779.860000pt;}
.y2b1{bottom:780.805333pt;}
.y197{bottom:780.922667pt;}
.y67{bottom:781.650667pt;}
.y25b{bottom:781.725333pt;}
.y1b4{bottom:783.245333pt;}
.y1b{bottom:783.273333pt;}
.y222{bottom:786.558667pt;}
.y145{bottom:786.766667pt;}
.y29{bottom:787.922667pt;}
.yc2{bottom:788.198667pt;}
.y17c{bottom:788.892000pt;}
.ya8{bottom:790.486667pt;}
.y82{bottom:790.845333pt;}
.y242{bottom:791.928000pt;}
.y159{bottom:792.305333pt;}
.y1eb{bottom:792.918667pt;}
.ye8{bottom:793.374667pt;}
.y29c{bottom:794.205333pt;}
.y128{bottom:797.393333pt;}
.y2b0{bottom:798.338667pt;}
.y196{bottom:798.456000pt;}
.y66{bottom:799.185333pt;}
.y25a{bottom:799.258667pt;}
.y45{bottom:799.441333pt;}
.y2ca{bottom:803.161333pt;}
.y1{bottom:803.380000pt;}
.y221{bottom:804.092000pt;}
.y144{bottom:804.301333pt;}
.y17b{bottom:806.426667pt;}
.ya7{bottom:808.020000pt;}
.y158{bottom:809.840000pt;}
.y1b3{bottom:810.448000pt;}
.y1ea{bottom:810.453333pt;}
.ye7{bottom:810.908000pt;}
.y29b{bottom:811.740000pt;}
.y1a{bottom:814.090667pt;}
.y127{bottom:814.928000pt;}
.y65{bottom:816.720000pt;}
.y259{bottom:816.793333pt;}
.yc1{bottom:818.886667pt;}
.y2c9{bottom:820.696000pt;}
.y220{bottom:821.626667pt;}
.y143{bottom:821.836000pt;}
.y17a{bottom:823.961333pt;}
.y2af{bottom:824.452000pt;}
.y1cf{bottom:825.554667pt;}
.y157{bottom:827.374667pt;}
.y44{bottom:827.602667pt;}
.y1b2{bottom:827.982667pt;}
.y1e9{bottom:827.988000pt;}
.ye6{bottom:828.442667pt;}
.y29a{bottom:829.274667pt;}
.y195{bottom:833.525333pt;}
.ya6{bottom:836.181333pt;}
.y28{bottom:838.625333pt;}
.y21f{bottom:839.161333pt;}
.y179{bottom:841.494667pt;}
.y64{bottom:842.833333pt;}
.y258{bottom:842.906667pt;}
.y126{bottom:843.089333pt;}
.y43{bottom:845.137333pt;}
.y8{bottom:845.190667pt;}
.ye5{bottom:845.977333pt;}
.y299{bottom:846.808000pt;}
.y142{bottom:849.997333pt;}
.y194{bottom:851.060000pt;}
.ya5{bottom:853.716000pt;}
.y2c8{bottom:855.764000pt;}
.y178{bottom:859.029333pt;}
.y125{bottom:860.624000pt;}
.ye4{bottom:863.512000pt;}
.y298{bottom:864.342667pt;}
.y21e{bottom:865.274667pt;}
.ya4{bottom:871.250667pt;}
.y42{bottom:873.298667pt;}
.y19{bottom:875.156000pt;}
.y177{bottom:876.564000pt;}
.y7{bottom:876.897333pt;}
.y141{bottom:878.158667pt;}
.ye3{bottom:881.045333pt;}
.y63{bottom:881.877333pt;}
.ya3{bottom:888.785333pt;}
.y41{bottom:890.833333pt;}
.y176{bottom:894.098667pt;}
.ye2{bottom:898.580000pt;}
.y62{bottom:899.412000pt;}
.y21d{bottom:903.792000pt;}
.ya2{bottom:906.318667pt;}
.y40{bottom:908.366667pt;}
.y61{bottom:916.946667pt;}
.y21c{bottom:921.326667pt;}
.y140{bottom:923.853333pt;}
.ye1{bottom:924.816000pt;}
.y3f{bottom:925.901333pt;}
.y60{bottom:934.480000pt;}
.y3e{bottom:952.014667pt;}
.hb{height:21.200555pt;}
.hc{height:31.880400pt;}
.h5{height:32.661606pt;}
.h7{height:36.874903pt;}
.h8{height:38.043849pt;}
.ha{height:39.850400pt;}
.h6{height:44.154243pt;}
.h3{height:45.652924pt;}
.h4{height:53.865199pt;}
.h9{height:54.783356pt;}
.h2{height:78.903200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:75.590667pt;}
.x17{left:81.346667pt;}
.xb{left:88.870667pt;}
.x16{left:91.826667pt;}
.xa{left:95.516000pt;}
.x10{left:96.938667pt;}
.xe{left:105.896000pt;}
.xc{left:108.800000pt;}
.x12{left:122.082667pt;}
.x1{left:132.840000pt;}
.x15{left:138.022667pt;}
.x14{left:151.306667pt;}
.x18{left:155.660000pt;}
.x4{left:175.493333pt;}
.x11{left:197.862667pt;}
.xd{left:217.554667pt;}
.x5{left:262.866667pt;}
.x2{left:272.044000pt;}
.x7{left:313.518667pt;}
.x8{left:323.988000pt;}
.x6{left:325.797333pt;}
.x3{left:329.834667pt;}
.x13{left:371.310667pt;}
.xf{left:374.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; }
  