
    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_2c7c2ba469e5c11fa1b78a4f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_c43d59fa0ee42f3f2bd2dc83.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b11bc2de11569effa359a3e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.723000;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_9a5ad5a602f9d6f4892dd633.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_92e9a147250df3d14a0ff548.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f47c1df7e167a7ce8613016e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_7ab763227b8628e88129be1f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.482000;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_0c46ddd956d5825482dcc896.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;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_40ebbe84bc7ea1d88c180574.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_8e8f300922e5538c8c674e7e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.686000;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_af10836c1463e21ac4ff70dd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.738000;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_1f56de73f354444fe39a88bd.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.678000;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_35b24d892fdd7f928ade579e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;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:ffe;src:url('chunks/assets/font_c7751664307e616094a6dd7e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b760a157748b703858055247.woff2')format("woff");}.fff{font-family:fff;line-height:0.633000;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:ff10;src:url('chunks/assets/font_ba027f89c32df9a80c01b703.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_4d4484ef12c1d2b572480405.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.482000;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:ff12;src:url('chunks/assets/font_4cde3f20728e81e657515fae.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.688000;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:ff13;src:url('chunks/assets/font_db2f2039da6fbee7e2b2e4f0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.999000;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);}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-8.970000px;}
.v6{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.v5{vertical-align:31.470000px;}
.v4{vertical-align:40.440000px;}
.ls2{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000444px;}
.ls25{letter-spacing:0.000479px;}
.lsb{letter-spacing:0.000780px;}
.ls16{letter-spacing:0.002338px;}
.ls18{letter-spacing:0.003269px;}
.lsd{letter-spacing:0.003414px;}
.lsf{letter-spacing:0.003573px;}
.ls1f{letter-spacing:0.003652px;}
.ls3{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.989409px;}
.ls4{letter-spacing:2.990525px;}
.lse{letter-spacing:3.059364px;}
.lsa{letter-spacing:3.065364px;}
.ls19{letter-spacing:7.472450px;}
.ls10{letter-spacing:12.291414px;}
.ls23{letter-spacing:13.284538px;}
.ls11{letter-spacing:15.356004px;}
.ls8{letter-spacing:15.357414px;}
.ls7{letter-spacing:18.428004px;}
.lsc{letter-spacing:18.432780px;}
.ls9{letter-spacing:18.434004px;}
.ls2d{letter-spacing:18.530525px;}
.ls15{letter-spacing:19.595251px;}
.ls17{letter-spacing:19.622727px;}
.ls28{letter-spacing:19.926538px;}
.ls1{letter-spacing:21.419468px;}
.ls6{letter-spacing:21.420532px;}
.ls14{letter-spacing:21.617602px;}
.ls21{letter-spacing:23.778538px;}
.ls20{letter-spacing:24.074450px;}
.ls1d{letter-spacing:24.080450px;}
.ls2c{letter-spacing:24.410525px;}
.ls1b{letter-spacing:24.458450px;}
.ls29{letter-spacing:26.436305px;}
.ls1c{letter-spacing:26.442305px;}
.ls1a{letter-spacing:26.864525px;}
.ls27{letter-spacing:27.398450px;}
.ls13{letter-spacing:27.725602px;}
.ls12{letter-spacing:28.170300px;}
.ls5{letter-spacing:29.889030px;}
.ls2a{letter-spacing:30.584525px;}
.ls1e{letter-spacing:33.036538px;}
.ls22{letter-spacing:40.698305px;}
.ls2b{letter-spacing:67.786363px;}
.ls2e{letter-spacing:79.702363px;}
.ls24{letter-spacing:91.618363px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.605662px;}
.ws87{word-spacing:-15.359443px;}
.wsf2{word-spacing:-13.531962px;}
.ws1d{word-spacing:-3.335478px;}
.ws9e{word-spacing:-3.275703px;}
.ws8f{word-spacing:-3.215927px;}
.ws4e{word-spacing:-3.156152px;}
.ws15{word-spacing:-3.093408px;}
.ws9f{word-spacing:-2.976825px;}
.wsfc{word-spacing:-2.917049px;}
.ws4c{word-spacing:-2.677947px;}
.wsdc{word-spacing:-2.618171px;}
.wsd0{word-spacing:-2.558396px;}
.wsd2{word-spacing:-2.498620px;}
.ws7c{word-spacing:-2.319293px;}
.wsda{word-spacing:-2.259518px;}
.ws6c{word-spacing:-2.139966px;}
.ws14e{word-spacing:-2.115076px;}
.wsfb{word-spacing:-2.020415px;}
.wsb0{word-spacing:-1.900864px;}
.wsad{word-spacing:-1.841088px;}
.ws117{word-spacing:-1.694650px;}
.ws55{word-spacing:-1.661762px;}
.ws14a{word-spacing:-1.640851px;}
.ws99{word-spacing:-1.601986px;}
.ws3e{word-spacing:-1.482435px;}
.wsa{word-spacing:-1.479456px;}
.wsfe{word-spacing:-1.243332px;}
.ws76{word-spacing:-1.183557px;}
.wsec{word-spacing:-1.064006px;}
.ws10e{word-spacing:-0.944454px;}
.ws133{word-spacing:-0.780077px;}
.ws35{word-spacing:-0.705352px;}
.ws36{word-spacing:-0.645576px;}
.ws46{word-spacing:-0.585801px;}
.ws8c{word-spacing:-0.526025px;}
.ws38{word-spacing:-0.466250px;}
.ws98{word-spacing:-0.406474px;}
.ws156{word-spacing:-0.295891px;}
.ws11b{word-spacing:-0.242093px;}
.ws3c{word-spacing:-0.167372px;}
.ws7{word-spacing:-0.134496px;}
.ws4b{word-spacing:-0.107596px;}
.ws115{word-spacing:-0.071731px;}
.ws93{word-spacing:-0.059776px;}
.ws81{word-spacing:-0.053798px;}
.ws32{word-spacing:-0.047820px;}
.wsc3{word-spacing:-0.041843px;}
.ws82{word-spacing:-0.002882px;}
.ws22{word-spacing:0.000000px;}
.wsb1{word-spacing:0.011955px;}
.ws128{word-spacing:0.080698px;}
.ws44{word-spacing:0.191282px;}
.wsdb{word-spacing:0.251058px;}
.wsb6{word-spacing:0.310833px;}
.ws74{word-spacing:0.370609px;}
.ws118{word-spacing:0.457286px;}
.ws39{word-spacing:0.490160px;}
.ws20{word-spacing:0.609711px;}
.ws23{word-spacing:0.669487px;}
.ws6d{word-spacing:0.729262px;}
.ws26{word-spacing:0.789038px;}
.ws11e{word-spacing:0.833875px;}
.ws10d{word-spacing:0.848814px;}
.ws7f{word-spacing:0.860188px;}
.ws47{word-spacing:0.908589px;}
.ws3a{word-spacing:0.968365px;}
.ws13c{word-spacing:0.995270px;}
.wse6{word-spacing:1.028140px;}
.ws1c{word-spacing:1.147692px;}
.ws9{word-spacing:1.156666px;}
.ws9d{word-spacing:1.267243px;}
.ws12b{word-spacing:1.371859px;}
.ws3f{word-spacing:1.386794px;}
.ws12{word-spacing:1.425658px;}
.wsa6{word-spacing:1.446570px;}
.ws19{word-spacing:1.566121px;}
.wsa4{word-spacing:1.573834px;}
.wsd3{word-spacing:1.625896px;}
.ws132{word-spacing:1.748448px;}
.ws11c{word-spacing:1.802246px;}
.wsb2{word-spacing:1.805223px;}
.ws8{word-spacing:1.856045px;}
.ws60{word-spacing:1.864999px;}
.ws130{word-spacing:1.909843px;}
.ws103{word-spacing:1.984550px;}
.ws111{word-spacing:2.044326px;}
.wsae{word-spacing:2.104101px;}
.ws73{word-spacing:2.163877px;}
.ws4d{word-spacing:2.223652px;}
.ws6f{word-spacing:2.283428px;}
.ws152{word-spacing:2.286432px;}
.ws12f{word-spacing:2.340230px;}
.ws21{word-spacing:2.343204px;}
.ws147{word-spacing:2.394029px;}
.ws1a{word-spacing:2.402979px;}
.ws72{word-spacing:2.462755px;}
.ws13d{word-spacing:2.501507px;}
.ws5b{word-spacing:2.522530px;}
.wsc1{word-spacing:2.577516px;}
.wsff{word-spacing:2.582306px;}
.ws48{word-spacing:2.642082px;}
.ws107{word-spacing:2.663021px;}
.wsed{word-spacing:2.701857px;}
.ws31{word-spacing:2.821408px;}
.ws9a{word-spacing:2.881184px;}
.ws50{word-spacing:3.000735px;}
.ws3{word-spacing:3.039610px;}
.ws59{word-spacing:3.060511px;}
.ws146{word-spacing:3.070464px;}
.ws89{word-spacing:3.073893px;}
.ws4{word-spacing:3.093408px;}
.ws57{word-spacing:3.120286px;}
.wsd7{word-spacing:3.239838px;}
.ws1{word-spacing:3.299613px;}
.ws40{word-spacing:3.359389px;}
.ws1e{word-spacing:3.419164px;}
.wsc0{word-spacing:3.523795px;}
.ws69{word-spacing:3.538716px;}
.ws41{word-spacing:3.598491px;}
.ws75{word-spacing:3.658267px;}
.ws9b{word-spacing:3.777818px;}
.wsba{word-spacing:3.801728px;}
.wsef{word-spacing:3.837594px;}
.ws4a{word-spacing:3.897369px;}
.wsc{word-spacing:3.954182px;}
.ws58{word-spacing:3.957145px;}
.ws2d{word-spacing:4.016920px;}
.ws11{word-spacing:4.061779px;}
.ws42{word-spacing:4.076696px;}
.wsd1{word-spacing:4.099042px;}
.ws136{word-spacing:4.115578px;}
.ws8d{word-spacing:4.136472px;}
.wsfd{word-spacing:4.196247px;}
.ws139{word-spacing:4.223174px;}
.ws8e{word-spacing:4.256023px;}
.ws12c{word-spacing:4.276973px;}
.ws28{word-spacing:4.315798px;}
.ws131{word-spacing:4.330771px;}
.ws64{word-spacing:4.375574px;}
.ws122{word-spacing:4.384570px;}
.wseb{word-spacing:4.435350px;}
.wsb{word-spacing:4.438368px;}
.ws3d{word-spacing:4.495125px;}
.ws53{word-spacing:4.554901px;}
.ws125{word-spacing:4.599763px;}
.ws5e{word-spacing:4.614676px;}
.ws24{word-spacing:4.734228px;}
.wsea{word-spacing:4.794003px;}
.ws14d{word-spacing:4.814957px;}
.ws63{word-spacing:4.853779px;}
.ws143{word-spacing:4.868755px;}
.ws3b{word-spacing:4.913554px;}
.ws54{word-spacing:4.973330px;}
.wsd5{word-spacing:5.033106px;}
.ws110{word-spacing:5.092881px;}
.ws61{word-spacing:5.152657px;}
.ws15c{word-spacing:5.299142px;}
.ws7a{word-spacing:5.331984px;}
.ws7d{word-spacing:5.391759px;}
.ws30{word-spacing:5.511310px;}
.wsa8{word-spacing:5.568134px;}
.wsf0{word-spacing:5.571086px;}
.wsa2{word-spacing:5.690637px;}
.wsb7{word-spacing:5.750413px;}
.wsf1{word-spacing:5.810188px;}
.ws15f{word-spacing:5.837126px;}
.wse7{word-spacing:5.869964px;}
.ws29{word-spacing:5.989515px;}
.ws4f{word-spacing:6.049291px;}
.ws123{word-spacing:6.052320px;}
.ws25{word-spacing:6.109066px;}
.ws141{word-spacing:6.159917px;}
.ws17{word-spacing:6.168842px;}
.ws1b{word-spacing:6.228618px;}
.ws120{word-spacing:6.267514px;}
.ws62{word-spacing:6.288393px;}
.wsa7{word-spacing:6.321312px;}
.ws66{word-spacing:6.407944px;}
.wsb4{word-spacing:6.467720px;}
.ws155{word-spacing:6.482707px;}
.ws145{word-spacing:6.536506px;}
.ws10c{word-spacing:6.587271px;}
.ws95{word-spacing:6.647047px;}
.ws45{word-spacing:6.706822px;}
.ws101{word-spacing:6.766598px;}
.ws56{word-spacing:6.826374px;}
.ws151{word-spacing:6.859296px;}
.ws6e{word-spacing:6.886149px;}
.ws2a{word-spacing:6.945925px;}
.ws7b{word-spacing:7.005700px;}
.wsd4{word-spacing:7.125252px;}
.wsb8{word-spacing:7.244803px;}
.ws159{word-spacing:7.289683px;}
.wsbd{word-spacing:7.302031px;}
.wsf3{word-spacing:7.364354px;}
.wsa3{word-spacing:7.483905px;}
.wsa1{word-spacing:7.603456px;}
.ws91{word-spacing:7.663232px;}
.ws78{word-spacing:7.723008px;}
.ws5a{word-spacing:7.782783px;}
.wsf4{word-spacing:7.827667px;}
.wse9{word-spacing:7.902334px;}
.ws2e{word-spacing:7.962110px;}
.ws27{word-spacing:8.081661px;}
.ws5f{word-spacing:8.201212px;}
.wsd{word-spacing:8.204256px;}
.ws116{word-spacing:8.260988px;}
.ws160{word-spacing:8.316238px;}
.ws6b{word-spacing:8.380539px;}
.ws2b{word-spacing:8.440315px;}
.wsbc{word-spacing:8.458137px;}
.ws140{word-spacing:8.473248px;}
.ws134{word-spacing:8.527046px;}
.ws104{word-spacing:8.559866px;}
.ws6a{word-spacing:8.619642px;}
.ws65{word-spacing:8.739193px;}
.ws13b{word-spacing:8.796038px;}
.ws96{word-spacing:8.798968px;}
.ws43{word-spacing:8.858744px;}
.ws94{word-spacing:8.978295px;}
.wsb5{word-spacing:8.990250px;}
.ws148{word-spacing:9.011232px;}
.wsaa{word-spacing:9.038071px;}
.ws10{word-spacing:9.065030px;}
.ws10f{word-spacing:9.097846px;}
.ws124{word-spacing:9.143969px;}
.ws137{word-spacing:9.146686px;}
.ws154{word-spacing:9.148232px;}
.ws70{word-spacing:9.157622px;}
.ws13{word-spacing:9.226426px;}
.wsf{word-spacing:9.334022px;}
.wsb9{word-spacing:9.336949px;}
.ws114{word-spacing:9.396724px;}
.ws52{word-spacing:9.456500px;}
.ws105{word-spacing:9.516276px;}
.ws138{word-spacing:9.603014px;}
.ws10a{word-spacing:9.635827px;}
.ws10b{word-spacing:9.755378px;}
.wsd6{word-spacing:9.994480px;}
.ws34{word-spacing:10.054256px;}
.ws49{word-spacing:10.114032px;}
.ws113{word-spacing:10.173807px;}
.ws79{word-spacing:10.233583px;}
.ws37{word-spacing:10.353134px;}
.ws68{word-spacing:10.412910px;}
.ws106{word-spacing:10.463789px;}
.wsee{word-spacing:10.472685px;}
.ws18{word-spacing:10.532461px;}
.ws7e{word-spacing:10.544486px;}
.ws158{word-spacing:10.571386px;}
.ws5d{word-spacing:10.592236px;}
.ws129{word-spacing:10.625184px;}
.ws92{word-spacing:10.711788px;}
.ws33{word-spacing:10.831339px;}
.ws77{word-spacing:10.891114px;}
.wsa0{word-spacing:11.010666px;}
.wse{word-spacing:11.109370px;}
.ws1f{word-spacing:11.189992px;}
.ws5c{word-spacing:11.249768px;}
.ws2c{word-spacing:11.309544px;}
.ws90{word-spacing:11.548646px;}
.ws121{word-spacing:11.593555px;}
.ws67{word-spacing:11.668197px;}
.ws14b{word-spacing:11.701152px;}
.wsd9{word-spacing:11.727973px;}
.ws100{word-spacing:11.787748px;}
.ws15d{word-spacing:11.808749px;}
.ws112{word-spacing:11.847524px;}
.wsaf{word-spacing:11.907300px;}
.ws9c{word-spacing:12.146402px;}
.ws109{word-spacing:12.206178px;}
.wsab{word-spacing:12.265953px;}
.ws80{word-spacing:12.284116px;}
.ws83{word-spacing:12.292934px;}
.ws108{word-spacing:12.385504px;}
.wsa9{word-spacing:12.445280px;}
.wsbb{word-spacing:12.505056px;}
.ws71{word-spacing:12.564831px;}
.wsac{word-spacing:12.684382px;}
.wsa5{word-spacing:12.803934px;}
.wsd8{word-spacing:12.863709px;}
.wsb3{word-spacing:13.043036px;}
.wse8{word-spacing:13.102812px;}
.ws2f{word-spacing:13.162587px;}
.ws97{word-spacing:13.222363px;}
.ws14f{word-spacing:14.955955px;}
.wscf{word-spacing:16.062179px;}
.wsce{word-spacing:16.062711px;}
.wse5{word-spacing:16.065653px;}
.wsfa{word-spacing:16.068179px;}
.ws157{word-spacing:16.623706px;}
.ws127{word-spacing:16.946496px;}
.ws119{word-spacing:17.323085px;}
.ws13f{word-spacing:17.645875px;}
.ws14c{word-spacing:17.968666px;}
.ws153{word-spacing:18.130061px;}
.ws85{word-spacing:18.345254px;}
.ws84{word-spacing:18.379912px;}
.ws8b{word-spacing:18.399053px;}
.ws11d{word-spacing:18.506650px;}
.wsbf{word-spacing:18.824408px;}
.ws11f{word-spacing:18.963936px;}
.ws162{word-spacing:18.990835px;}
.ws12e{word-spacing:19.044634px;}
.ws13e{word-spacing:19.206029px;}
.ws11a{word-spacing:19.690214px;}
.ws13a{word-spacing:20.766182px;}
.ws12d{word-spacing:20.819981px;}
.ws126{word-spacing:21.088973px;}
.ws144{word-spacing:21.357965px;}
.ws15b{word-spacing:21.734554px;}
.ws12a{word-spacing:22.433933px;}
.ws142{word-spacing:22.541530px;}
.ws150{word-spacing:23.187110px;}
.ws15a{word-spacing:23.563699px;}
.ws161{word-spacing:24.532070px;}
.ws135{word-spacing:24.747264px;}
.ws149{word-spacing:25.177651px;}
.ws51{word-spacing:26.827469px;}
.ws14{word-spacing:27.592038px;}
.ws15e{word-spacing:27.759974px;}
.ws5{word-spacing:28.190362px;}
.ws6{word-spacing:29.829450px;}
.ws0{word-spacing:32.192873px;}
.wsdf{word-spacing:39.116839px;}
.wsc7{word-spacing:44.552839px;}
.wsf7{word-spacing:44.558839px;}
.wsf5{word-spacing:44.724730px;}
.wsde{word-spacing:45.668839px;}
.ws102{word-spacing:49.649613px;}
.wsf8{word-spacing:56.462839px;}
.wsc8{word-spacing:56.468839px;}
.wsc2{word-spacing:56.640730px;}
.wsc9{word-spacing:58.208839px;}
.wsf9{word-spacing:58.214839px;}
.wsc5{word-spacing:59.330839px;}
.wsc6{word-spacing:61.201202px;}
.wse0{word-spacing:64.813202px;}
.wse2{word-spacing:68.378839px;}
.wse1{word-spacing:68.384839px;}
.wsf6{word-spacing:69.494839px;}
.wsc4{word-spacing:69.500839px;}
.ws86{word-spacing:72.056116px;}
.ws8a{word-spacing:72.062116px;}
.ws88{word-spacing:72.062957px;}
.wsdd{word-spacing:75.472936px;}
.ws16{word-spacing:80.625869px;}
.wsca{word-spacing:89.317202px;}
.wscd{word-spacing:91.736839px;}
.wse3{word-spacing:101.233202px;}
.wscc{word-spacing:101.906839px;}
.wscb{word-spacing:101.912839px;}
.wse4{word-spacing:113.822839px;}
.wsbe{word-spacing:730.350236px;}
._2{margin-left:-29.887800px;}
._4{margin-left:-28.273859px;}
._28{margin-left:-27.211664px;}
._6{margin-left:-23.252708px;}
._29{margin-left:-21.184658px;}
._5{margin-left:-6.575316px;}
._d{margin-left:-5.140702px;}
._8{margin-left:-4.112778px;}
._1{margin-left:-2.754470px;}
._3{margin-left:-1.613941px;}
._9{width:1.560154px;}
._7{width:3.120307px;}
._26{width:4.302648px;}
._0{width:5.422864px;}
._10{width:14.633284px;}
._16{width:16.109478px;}
._f{width:17.203634px;}
._b{width:18.578473px;}
._27{width:19.646743px;}
._11{width:20.963509px;}
._22{width:22.284560px;}
._a{width:23.735706px;}
._25{width:25.822216px;}
._2c{width:28.342803px;}
._12{width:29.417398px;}
._1f{width:33.234310px;}
._2a{width:35.044252px;}
._e{width:36.851904px;}
._2d{width:39.767344px;}
._18{width:41.510140px;}
._2e{width:42.618649px;}
._1b{width:43.951493px;}
._20{width:47.555615px;}
._2b{width:50.140087px;}
._19{width:53.423615px;}
._1a{width:55.859615px;}
._21{width:59.461191px;}
._1c{width:65.331522px;}
._13{width:68.741940px;}
._24{width:74.550428px;}
._17{width:77.247522px;}
._c{width:80.697600px;}
._1d{width:270.568754px;}
._23{width:290.782754px;}
._14{width:302.692754px;}
._15{width:433.893896px;}
._1e{width:469.635896px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs5{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y51{bottom:148.785000px;}
.yf8{bottom:186.144000px;}
.y78{bottom:193.615500px;}
.yb3{bottom:193.617000px;}
.yf7{bottom:196.395000px;}
.y26{bottom:199.330500px;}
.yb2{bottom:210.055500px;}
.y77{bottom:211.549500px;}
.y50{bottom:215.769000px;}
.y98{bottom:219.235500px;}
.y25{bottom:220.810500px;}
.y1b0{bottom:226.083000px;}
.yb1{bottom:226.492500px;}
.y76{bottom:229.482000px;}
.yf6{bottom:233.691000px;}
.y97{bottom:237.168000px;}
.y24{bottom:238.743000px;}
.y4f{bottom:239.041500px;}
.y1af{bottom:242.521500px;}
.yb0{bottom:242.931000px;}
.yf5{bottom:243.942000px;}
.y75{bottom:247.414500px;}
.y96{bottom:255.100500px;}
.y23{bottom:256.675500px;}
.y4e{bottom:256.974000px;}
.y1ae{bottom:258.960000px;}
.y74{bottom:265.347000px;}
.yaf{bottom:271.288500px;}
.y95{bottom:273.034500px;}
.y22{bottom:274.608000px;}
.y4d{bottom:274.906500px;}
.y1ad{bottom:274.987500px;}
.y73{bottom:283.279500px;}
.yd5{bottom:284.485500px;}
.yf4{bottom:286.537500px;}
.yae{bottom:289.221000px;}
.y94{bottom:290.967000px;}
.y1ac{bottom:291.426000px;}
.y21{bottom:292.540500px;}
.y4c{bottom:292.839000px;}
.y151{bottom:298.557000px;}
.y72{bottom:301.212000px;}
.y132{bottom:301.213500px;}
.y11a{bottom:302.331000px;}
.yd4{bottom:302.418000px;}
.yf3{bottom:304.471500px;}
.yad{bottom:307.153500px;}
.y1ab{bottom:307.455000px;}
.y93{bottom:308.899500px;}
.y20{bottom:310.474500px;}
.y4b{bottom:310.771500px;}
.y185{bottom:318.012000px;}
.y71{bottom:319.146000px;}
.y119{bottom:320.263500px;}
.yd3{bottom:320.352000px;}
.yf2{bottom:322.404000px;}
.y1aa{bottom:323.893500px;}
.yac{bottom:325.087500px;}
.y1d9{bottom:325.330500px;}
.y1f{bottom:328.407000px;}
.y184{bottom:335.944500px;}
.y70{bottom:337.078500px;}
.y118{bottom:338.197500px;}
.yd2{bottom:338.284500px;}
.y92{bottom:340.279500px;}
.y1a9{bottom:340.332000px;}
.yf1{bottom:340.336500px;}
.y1d8{bottom:341.769000px;}
.yab{bottom:343.020000px;}
.y1e{bottom:346.339500px;}
.y150{bottom:346.711500px;}
.y4a{bottom:348.685500px;}
.y183{bottom:354.342000px;}
.y6f{bottom:355.011000px;}
.yd1{bottom:356.217000px;}
.y1a8{bottom:356.359500px;}
.y117{bottom:357.247500px;}
.y1d7{bottom:358.207500px;}
.yf0{bottom:358.269000px;}
.yaa{bottom:360.952500px;}
.y164{bottom:362.724000px;}
.y1d{bottom:364.272000px;}
.y14f{bottom:364.644000px;}
.y49{bottom:367.626000px;}
.y182{bottom:372.274500px;}
.y1a7{bottom:372.798000px;}
.y6e{bottom:372.943500px;}
.yd0{bottom:374.149500px;}
.y1d6{bottom:374.644500px;}
.y116{bottom:375.180000px;}
.ya9{bottom:378.885000px;}
.y163{bottom:380.656500px;}
.y1c{bottom:382.204500px;}
.y14e{bottom:382.576500px;}
.y91{bottom:383.614500px;}
.y48{bottom:385.558500px;}
.y1a6{bottom:389.236500px;}
.y181{bottom:390.207000px;}
.y6d{bottom:390.876000px;}
.y1d5{bottom:391.083000px;}
.yef{bottom:391.717500px;}
.y115{bottom:393.114000px;}
.ycf{bottom:393.288000px;}
.ya8{bottom:396.817500px;}
.y162{bottom:398.589000px;}
.y1b{bottom:400.137000px;}
.y14d{bottom:400.509000px;}
.y90{bottom:401.548500px;}
.y47{bottom:403.491000px;}
.y1a5{bottom:405.264000px;}
.y1d4{bottom:407.521500px;}
.y180{bottom:408.139500px;}
.y6c{bottom:408.810000px;}
.y114{bottom:411.046500px;}
.yce{bottom:411.220500px;}
.ya7{bottom:414.750000px;}
.y161{bottom:416.523000px;}
.y1a{bottom:418.071000px;}
.y14c{bottom:418.443000px;}
.y8f{bottom:419.481000px;}
.y46{bottom:421.425000px;}
.y1a4{bottom:421.702500px;}
.y1d3{bottom:423.960000px;}
.y17f{bottom:426.072000px;}
.y6b{bottom:426.742500px;}
.y131{bottom:428.061000px;}
.y113{bottom:428.979000px;}
.ycd{bottom:429.153000px;}
.ya6{bottom:432.684000px;}
.y160{bottom:434.455500px;}
.y14b{bottom:436.375500px;}
.y8e{bottom:437.413500px;}
.y1a3{bottom:438.141000px;}
.y45{bottom:439.357500px;}
.yee{bottom:440.109000px;}
.y1d2{bottom:440.398500px;}
.y17e{bottom:444.469500px;}
.y6a{bottom:444.675000px;}
.y130{bottom:445.993500px;}
.y112{bottom:446.911500px;}
.ycc{bottom:447.087000px;}
.ya5{bottom:450.616500px;}
.y15f{bottom:452.388000px;}
.y19{bottom:452.599500px;}
.y14a{bottom:454.308000px;}
.y1a2{bottom:454.579500px;}
.y8d{bottom:455.346000px;}
.y1d1{bottom:456.837000px;}
.y44{bottom:457.290000px;}
.yed{bottom:458.041500px;}
.y17d{bottom:462.402000px;}
.y69{bottom:462.607500px;}
.y12f{bottom:463.926000px;}
.y111{bottom:464.844000px;}
.ycb{bottom:465.019500px;}
.ya4{bottom:468.549000px;}
.y1a1{bottom:470.607000px;}
.y149{bottom:472.240500px;}
.y1d0{bottom:473.275500px;}
.y8c{bottom:473.278500px;}
.y43{bottom:475.222500px;}
.yec{bottom:475.974000px;}
.y15e{bottom:478.033500px;}
.y17c{bottom:480.334500px;}
.y68{bottom:480.540000px;}
.y12e{bottom:481.860000px;}
.y110{bottom:482.778000px;}
.yca{bottom:482.952000px;}
.y1a0{bottom:487.045500px;}
.y1cf{bottom:489.714000px;}
.y148{bottom:490.837500px;}
.y8b{bottom:491.212500px;}
.y42{bottom:493.155000px;}
.y15d{bottom:495.966000px;}
.y17b{bottom:498.267000px;}
.y67{bottom:498.472500px;}
.y12d{bottom:499.792500px;}
.y10f{bottom:500.710500px;}
.yc9{bottom:500.884500px;}
.y18{bottom:501.675000px;}
.y19f{bottom:503.484000px;}
.y1ce{bottom:506.152500px;}
.y147{bottom:508.770000px;}
.y8a{bottom:509.145000px;}
.y41{bottom:511.087500px;}
.y15c{bottom:513.898500px;}
.yeb{bottom:515.400000px;}
.y17a{bottom:516.199500px;}
.y66{bottom:516.406500px;}
.y12c{bottom:517.725000px;}
.y17{bottom:518.113500px;}
.y10e{bottom:518.643000px;}
.yc8{bottom:518.817000px;}
.y19e{bottom:519.922500px;}
.ya3{bottom:521.439000px;}
.y1cd{bottom:522.591000px;}
.y146{bottom:526.704000px;}
.y89{bottom:527.077500px;}
.y40{bottom:530.028000px;}
.y15b{bottom:531.832500px;}
.y65{bottom:534.339000px;}
.y12b{bottom:535.657500px;}
.y19d{bottom:535.951500px;}
.y10d{bottom:536.575500px;}
.yc7{bottom:536.749500px;}
.ya2{bottom:537.877500px;}
.y1cc{bottom:539.028000px;}
.y88{bottom:543.888000px;}
.y145{bottom:544.636500px;}
.y3f{bottom:547.960500px;}
.y15a{bottom:549.765000px;}
.y16{bottom:550.656000px;}
.y179{bottom:551.395500px;}
.y64{bottom:552.271500px;}
.y19c{bottom:552.390000px;}
.y12a{bottom:553.590000px;}
.ya1{bottom:554.316000px;}
.y1cb{bottom:555.466500px;}
.y10c{bottom:555.627000px;}
.y87{bottom:561.822000px;}
.y144{bottom:562.569000px;}
.y3e{bottom:565.894500px;}
.yea{bottom:566.781000px;}
.y15{bottom:567.094500px;}
.y159{bottom:567.697500px;}
.y19b{bottom:568.417500px;}
.y178{bottom:569.328000px;}
.y63{bottom:570.204000px;}
.ya0{bottom:570.754500px;}
.y129{bottom:571.522500px;}
.y1ca{bottom:571.905000px;}
.y10b{bottom:573.559500px;}
.yc6{bottom:578.643000px;}
.y86{bottom:579.754500px;}
.y143{bottom:580.501500px;}
.y14{bottom:583.533000px;}
.y3d{bottom:583.827000px;}
.ye9{bottom:584.713500px;}
.y19a{bottom:584.856000px;}
.y158{bottom:585.630000px;}
.y9f{bottom:587.193000px;}
.y177{bottom:587.725500px;}
.y62{bottom:588.136500px;}
.y1c9{bottom:588.343500px;}
.y128{bottom:589.456500px;}
.y10a{bottom:591.492000px;}
.y85{bottom:597.687000px;}
.y13{bottom:599.971500px;}
.y199{bottom:601.294500px;}
.y3c{bottom:601.759500px;}
.ye8{bottom:602.646000px;}
.y157{bottom:603.562500px;}
.y9e{bottom:603.631500px;}
.y1c8{bottom:604.782000px;}
.y176{bottom:605.658000px;}
.y61{bottom:606.069000px;}
.y127{bottom:607.389000px;}
.y109{bottom:609.424500px;}
.y142{bottom:613.711500px;}
.y84{bottom:615.619500px;}
.y12{bottom:616.410000px;}
.y198{bottom:617.322000px;}
.y3b{bottom:619.692000px;}
.y9d{bottom:620.070000px;}
.y1c7{bottom:621.220500px;}
.ye7{bottom:621.291000px;}
.y156{bottom:621.495000px;}
.y175{bottom:623.590500px;}
.y60{bottom:624.003000px;}
.y126{bottom:626.640000px;}
.y108{bottom:627.358500px;}
.yc5{bottom:632.493000px;}
.y11{bottom:632.848500px;}
.y83{bottom:633.552000px;}
.y197{bottom:633.760500px;}
.y9c{bottom:636.508500px;}
.y3a{bottom:637.624500px;}
.y1c6{bottom:637.659000px;}
.ye6{bottom:639.223500px;}
.y155{bottom:639.429000px;}
.y174{bottom:641.523000px;}
.y5f{bottom:641.935500px;}
.y125{bottom:644.572500px;}
.y107{bottom:645.291000px;}
.y10{bottom:649.287000px;}
.y196{bottom:650.199000px;}
.y82{bottom:650.364000px;}
.yc4{bottom:650.425500px;}
.y9b{bottom:652.947000px;}
.y1c5{bottom:654.097500px;}
.y39{bottom:655.558500px;}
.ye5{bottom:657.156000px;}
.y173{bottom:659.455500px;}
.y5e{bottom:659.868000px;}
.y141{bottom:661.866000px;}
.y124{bottom:662.506500px;}
.y106{bottom:663.223500px;}
.yf{bottom:665.724000px;}
.y195{bottom:666.637500px;}
.y81{bottom:668.296500px;}
.yc3{bottom:668.358000px;}
.y1c4{bottom:670.536000px;}
.y9a{bottom:672.514500px;}
.y38{bottom:674.497500px;}
.ye4{bottom:675.088500px;}
.y172{bottom:677.389500px;}
.ybe{bottom:677.800500px;}
.y140{bottom:679.798500px;}
.y105{bottom:681.156000px;}
.y123{bottom:681.757500px;}
.ye{bottom:682.162500px;}
.y194{bottom:682.665000px;}
.y80{bottom:686.229000px;}
.yc2{bottom:686.290500px;}
.y1c3{bottom:686.974500px;}
.y37{bottom:692.430000px;}
.y5d{bottom:692.578500px;}
.ye3{bottom:693.021000px;}
.y171{bottom:695.322000px;}
.ybd{bottom:695.733000px;}
.y13f{bottom:697.731000px;}
.yd{bottom:698.601000px;}
.y104{bottom:699.088500px;}
.y193{bottom:699.103500px;}
.y122{bottom:699.690000px;}
.y1c2{bottom:703.411500px;}
.y7f{bottom:704.163000px;}
.y99{bottom:706.414500px;}
.y36{bottom:710.364000px;}
.ye2{bottom:710.955000px;}
.y170{bottom:713.254500px;}
.ybc{bottom:713.665500px;}
.yc{bottom:715.039500px;}
.y192{bottom:715.132500px;}
.y13e{bottom:715.663500px;}
.y103{bottom:717.021000px;}
.y121{bottom:717.622500px;}
.y1c1{bottom:719.850000px;}
.y154{bottom:721.372500px;}
.y7e{bottom:722.095500px;}
.y35{bottom:728.296500px;}
.ye1{bottom:728.887500px;}
.y16f{bottom:731.187000px;}
.yb{bottom:731.478000px;}
.y191{bottom:731.571000px;}
.ybb{bottom:731.599500px;}
.y13d{bottom:733.597500px;}
.y120{bottom:735.556500px;}
.y1c0{bottom:736.288500px;}
.y5c{bottom:737.244000px;}
.y153{bottom:737.811000px;}
.y7d{bottom:740.028000px;}
.yc1{bottom:740.277000px;}
.y34{bottom:746.229000px;}
.ye0{bottom:746.820000px;}
.ya{bottom:747.916500px;}
.y190{bottom:748.009500px;}
.y16e{bottom:749.119500px;}
.yba{bottom:749.532000px;}
.y13c{bottom:751.530000px;}
.y102{bottom:752.502000px;}
.y1bf{bottom:752.727000px;}
.y11f{bottom:753.489000px;}
.y152{bottom:754.249500px;}
.y5b{bottom:755.176500px;}
.yc0{bottom:756.715500px;}
.y7c{bottom:757.960500px;}
.y18f{bottom:764.037000px;}
.y33{bottom:764.161500px;}
.y9{bottom:764.355000px;}
.ydf{bottom:764.752500px;}
.yb9{bottom:767.464500px;}
.y1be{bottom:769.165500px;}
.y13b{bottom:769.462500px;}
.y11e{bottom:771.421500px;}
.y5a{bottom:773.109000px;}
.ybf{bottom:773.154000px;}
.y7b{bottom:775.893000px;}
.y18e{bottom:780.475500px;}
.y32{bottom:782.094000px;}
.yde{bottom:782.685000px;}
.yb8{bottom:785.397000px;}
.y1bd{bottom:785.604000px;}
.y16d{bottom:787.305000px;}
.y13a{bottom:787.395000px;}
.y11d{bottom:789.354000px;}
.y59{bottom:791.041500px;}
.y7a{bottom:793.825500px;}
.y18d{bottom:796.914000px;}
.ydd{bottom:800.619000px;}
.y31{bottom:801.034500px;}
.y1bc{bottom:802.042500px;}
.y101{bottom:802.926000px;}
.y139{bottom:805.327500px;}
.y58{bottom:808.975500px;}
.yb7{bottom:814.641000px;}
.y1bb{bottom:818.481000px;}
.ydc{bottom:818.551500px;}
.y30{bottom:818.967000px;}
.y79{bottom:819.975000px;}
.y100{bottom:820.858500px;}
.y8{bottom:821.886000px;}
.y138{bottom:823.260000px;}
.y11c{bottom:825.837000px;}
.y18c{bottom:829.234500px;}
.yb6{bottom:831.079500px;}
.y1ba{bottom:834.919500px;}
.ydb{bottom:836.484000px;}
.y2f{bottom:836.901000px;}
.y16c{bottom:837.444000px;}
.y57{bottom:837.907500px;}
.y7{bottom:838.324500px;}
.yff{bottom:838.791000px;}
.yb5{bottom:847.518000px;}
.y1b9{bottom:851.358000px;}
.y6{bottom:854.763000px;}
.y2e{bottom:854.833500px;}
.yda{bottom:855.129000px;}
.y16b{bottom:855.376500px;}
.y56{bottom:855.840000px;}
.yb4{bottom:863.956500px;}
.y1b8{bottom:867.796500px;}
.y5{bottom:871.201500px;}
.y2d{bottom:872.766000px;}
.yd9{bottom:873.061500px;}
.y16a{bottom:873.309000px;}
.y55{bottom:873.774000px;}
.y18b{bottom:875.413500px;}
.y1b7{bottom:884.233500px;}
.y2c{bottom:890.698500px;}
.yd8{bottom:890.994000px;}
.y169{bottom:891.243000px;}
.y54{bottom:891.706500px;}
.y137{bottom:892.677000px;}
.y18a{bottom:893.346000px;}
.y11b{bottom:896.563500px;}
.y1b6{bottom:900.672000px;}
.y4{bottom:902.521500px;}
.y136{bottom:905.230500px;}
.y2b{bottom:908.631000px;}
.yd7{bottom:908.926500px;}
.yfe{bottom:909.115500px;}
.y168{bottom:909.175500px;}
.y53{bottom:909.639000px;}
.y189{bottom:911.280000px;}
.y1b5{bottom:917.110500px;}
.y3{bottom:920.455500px;}
.y135{bottom:921.370500px;}
.yfd{bottom:921.669000px;}
.y2a{bottom:926.563500px;}
.yd6{bottom:926.859000px;}
.y167{bottom:927.108000px;}
.y52{bottom:927.571500px;}
.y188{bottom:929.212500px;}
.y1b4{bottom:933.549000px;}
.y134{bottom:933.922500px;}
.yfc{bottom:937.809000px;}
.y166{bottom:945.040500px;}
.y29{bottom:945.504000px;}
.y187{bottom:947.145000px;}
.y1b3{bottom:949.987500px;}
.yfb{bottom:950.361000px;}
.y165{bottom:962.973000px;}
.y28{bottom:963.436500px;}
.y186{bottom:965.077500px;}
.y1b2{bottom:966.426000px;}
.y133{bottom:971.283000px;}
.y2{bottom:972.403500px;}
.y27{bottom:981.370500px;}
.y1b1{bottom:982.864500px;}
.yfa{bottom:987.721500px;}
.y1{bottom:999.303000px;}
.yf9{bottom:1004.160000px;}
.h7{height:17.645875px;}
.h9{height:23.850624px;}
.hd{height:31.382100px;}
.h5{height:37.336090px;}
.h4{height:40.348800px;}
.ha{height:41.842920px;}
.h3{height:44.831700px;}
.h6{height:50.211840px;}
.h2{height:51.105488px;}
.h8{height:53.072100px;}
.h1{height:60.254040px;}
.hb{height:85.271700px;}
.hc{height:85.835700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:202.147500px;}
.xb{left:206.007000px;}
.x3{left:207.355500px;}
.x1b{left:209.058000px;}
.xc{left:211.486500px;}
.x10{left:216.268500px;}
.x1{left:224.214000px;}
.xd{left:227.551500px;}
.x11{left:230.391000px;}
.x5{left:240.778500px;}
.x9{left:244.666500px;}
.xf{left:261.571500px;}
.x18{left:263.035500px;}
.x1a{left:266.677500px;}
.x17{left:269.656500px;}
.x6{left:270.684000px;}
.x7{left:330.889500px;}
.x8{left:337.950000px;}
.x2{left:368.790000px;}
.x15{left:407.988000px;}
.x4{left:411.870000px;}
.x12{left:429.478500px;}
.x19{left:454.045500px;}
.x16{left:455.503500px;}
.xe{left:457.780500px;}
.x13{left:471.694500px;}
.x14{left:701.791500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.973333pt;}
.v6{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v5{vertical-align:27.973333pt;}
.v4{vertical-align:35.946667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000394pt;}
.ls25{letter-spacing:0.000425pt;}
.lsb{letter-spacing:0.000693pt;}
.ls16{letter-spacing:0.002079pt;}
.ls18{letter-spacing:0.002906pt;}
.lsd{letter-spacing:0.003034pt;}
.lsf{letter-spacing:0.003176pt;}
.ls1f{letter-spacing:0.003246pt;}
.ls3{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.657253pt;}
.ls4{letter-spacing:2.658245pt;}
.lse{letter-spacing:2.719435pt;}
.lsa{letter-spacing:2.724768pt;}
.ls19{letter-spacing:6.642178pt;}
.ls10{letter-spacing:10.925701pt;}
.ls23{letter-spacing:11.808479pt;}
.ls11{letter-spacing:13.649782pt;}
.ls8{letter-spacing:13.651034pt;}
.ls7{letter-spacing:16.380448pt;}
.lsc{letter-spacing:16.384693pt;}
.ls9{letter-spacing:16.385782pt;}
.ls2d{letter-spacing:16.471578pt;}
.ls15{letter-spacing:17.418001pt;}
.ls17{letter-spacing:17.442424pt;}
.ls28{letter-spacing:17.712479pt;}
.ls1{letter-spacing:19.039527pt;}
.ls6{letter-spacing:19.040473pt;}
.ls14{letter-spacing:19.215646pt;}
.ls21{letter-spacing:21.136479pt;}
.ls20{letter-spacing:21.399511pt;}
.ls1d{letter-spacing:21.404845pt;}
.ls2c{letter-spacing:21.698245pt;}
.ls1b{letter-spacing:21.740845pt;}
.ls29{letter-spacing:23.498938pt;}
.ls1c{letter-spacing:23.504271pt;}
.ls1a{letter-spacing:23.879578pt;}
.ls27{letter-spacing:24.354178pt;}
.ls13{letter-spacing:24.644980pt;}
.ls12{letter-spacing:25.040267pt;}
.ls5{letter-spacing:26.568027pt;}
.ls2a{letter-spacing:27.186245pt;}
.ls1e{letter-spacing:29.365812pt;}
.ls22{letter-spacing:36.176271pt;}
.ls2b{letter-spacing:60.254545pt;}
.ls2e{letter-spacing:70.846545pt;}
.ls24{letter-spacing:81.438545pt;}
.ws2{word-spacing:-14.760588pt;}
.ws87{word-spacing:-13.652838pt;}
.wsf2{word-spacing:-12.028410pt;}
.ws1d{word-spacing:-2.964870pt;}
.ws9e{word-spacing:-2.911736pt;}
.ws8f{word-spacing:-2.858602pt;}
.ws4e{word-spacing:-2.805468pt;}
.ws15{word-spacing:-2.749696pt;}
.ws9f{word-spacing:-2.646067pt;}
.wsfc{word-spacing:-2.592933pt;}
.ws4c{word-spacing:-2.380397pt;}
.wsdc{word-spacing:-2.327263pt;}
.wsd0{word-spacing:-2.274129pt;}
.wsd2{word-spacing:-2.220996pt;}
.ws7c{word-spacing:-2.061594pt;}
.wsda{word-spacing:-2.008460pt;}
.ws6c{word-spacing:-1.902192pt;}
.ws14e{word-spacing:-1.880067pt;}
.wsfb{word-spacing:-1.795925pt;}
.wsb0{word-spacing:-1.689657pt;}
.wsad{word-spacing:-1.636523pt;}
.ws117{word-spacing:-1.506355pt;}
.ws55{word-spacing:-1.477121pt;}
.ws14a{word-spacing:-1.458534pt;}
.ws99{word-spacing:-1.423988pt;}
.ws3e{word-spacing:-1.317720pt;}
.wsa{word-spacing:-1.315072pt;}
.wsfe{word-spacing:-1.105184pt;}
.ws76{word-spacing:-1.052051pt;}
.wsec{word-spacing:-0.945783pt;}
.ws10e{word-spacing:-0.839515pt;}
.ws133{word-spacing:-0.693402pt;}
.ws35{word-spacing:-0.626980pt;}
.ws36{word-spacing:-0.573846pt;}
.ws46{word-spacing:-0.520712pt;}
.ws8c{word-spacing:-0.467578pt;}
.ws38{word-spacing:-0.414444pt;}
.ws98{word-spacing:-0.361310pt;}
.ws156{word-spacing:-0.263014pt;}
.ws11b{word-spacing:-0.215194pt;}
.ws3c{word-spacing:-0.148775pt;}
.ws7{word-spacing:-0.119552pt;}
.ws4b{word-spacing:-0.095641pt;}
.ws115{word-spacing:-0.063761pt;}
.ws93{word-spacing:-0.053134pt;}
.ws81{word-spacing:-0.047821pt;}
.ws32{word-spacing:-0.042507pt;}
.wsc3{word-spacing:-0.037194pt;}
.ws82{word-spacing:-0.002562pt;}
.ws22{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.010627pt;}
.ws128{word-spacing:0.071731pt;}
.ws44{word-spacing:0.170028pt;}
.wsdb{word-spacing:0.223162pt;}
.wsb6{word-spacing:0.276296pt;}
.ws74{word-spacing:0.329430pt;}
.ws118{word-spacing:0.406477pt;}
.ws39{word-spacing:0.435698pt;}
.ws20{word-spacing:0.541965pt;}
.ws23{word-spacing:0.595099pt;}
.ws6d{word-spacing:0.648233pt;}
.ws26{word-spacing:0.701367pt;}
.ws11e{word-spacing:0.741222pt;}
.ws10d{word-spacing:0.754501pt;}
.ws7f{word-spacing:0.764611pt;}
.ws47{word-spacing:0.807635pt;}
.ws3a{word-spacing:0.860769pt;}
.ws13c{word-spacing:0.884685pt;}
.wse6{word-spacing:0.913903pt;}
.ws1c{word-spacing:1.020170pt;}
.ws9{word-spacing:1.028147pt;}
.ws9d{word-spacing:1.126438pt;}
.ws12b{word-spacing:1.219430pt;}
.ws3f{word-spacing:1.232706pt;}
.ws12{word-spacing:1.267251pt;}
.wsa6{word-spacing:1.285840pt;}
.ws19{word-spacing:1.392107pt;}
.wsa4{word-spacing:1.398964pt;}
.wsd3{word-spacing:1.445241pt;}
.ws132{word-spacing:1.554176pt;}
.ws11c{word-spacing:1.601997pt;}
.wsb2{word-spacing:1.604643pt;}
.ws8{word-spacing:1.649818pt;}
.ws60{word-spacing:1.657777pt;}
.ws130{word-spacing:1.697638pt;}
.ws103{word-spacing:1.764044pt;}
.ws111{word-spacing:1.817178pt;}
.wsae{word-spacing:1.870312pt;}
.ws73{word-spacing:1.923446pt;}
.ws4d{word-spacing:1.976580pt;}
.ws6f{word-spacing:2.029714pt;}
.ws152{word-spacing:2.032384pt;}
.ws12f{word-spacing:2.080205pt;}
.ws21{word-spacing:2.082848pt;}
.ws147{word-spacing:2.128026pt;}
.ws1a{word-spacing:2.135981pt;}
.ws72{word-spacing:2.189115pt;}
.ws13d{word-spacing:2.223561pt;}
.ws5b{word-spacing:2.242249pt;}
.wsc1{word-spacing:2.291126pt;}
.wsff{word-spacing:2.295383pt;}
.ws48{word-spacing:2.348517pt;}
.ws107{word-spacing:2.367130pt;}
.wsed{word-spacing:2.401651pt;}
.ws31{word-spacing:2.507919pt;}
.ws9a{word-spacing:2.561052pt;}
.ws50{word-spacing:2.667320pt;}
.ws3{word-spacing:2.701875pt;}
.ws59{word-spacing:2.720454pt;}
.ws146{word-spacing:2.729301pt;}
.ws89{word-spacing:2.732349pt;}
.ws4{word-spacing:2.749696pt;}
.ws57{word-spacing:2.773588pt;}
.wsd7{word-spacing:2.879856pt;}
.ws1{word-spacing:2.932989pt;}
.ws40{word-spacing:2.986123pt;}
.ws1e{word-spacing:3.039257pt;}
.wsc0{word-spacing:3.132262pt;}
.ws69{word-spacing:3.145525pt;}
.ws41{word-spacing:3.198659pt;}
.ws75{word-spacing:3.251793pt;}
.ws9b{word-spacing:3.358060pt;}
.wsba{word-spacing:3.379314pt;}
.wsef{word-spacing:3.411194pt;}
.ws4a{word-spacing:3.464328pt;}
.wsc{word-spacing:3.514829pt;}
.ws58{word-spacing:3.517462pt;}
.ws2d{word-spacing:3.570596pt;}
.ws11{word-spacing:3.610470pt;}
.ws42{word-spacing:3.623730pt;}
.wsd1{word-spacing:3.643593pt;}
.ws136{word-spacing:3.658291pt;}
.ws8d{word-spacing:3.676864pt;}
.wsfd{word-spacing:3.729997pt;}
.ws139{word-spacing:3.753933pt;}
.ws8e{word-spacing:3.783131pt;}
.ws12c{word-spacing:3.801754pt;}
.ws28{word-spacing:3.836265pt;}
.ws131{word-spacing:3.849574pt;}
.ws64{word-spacing:3.889399pt;}
.ws122{word-spacing:3.897395pt;}
.wseb{word-spacing:3.942533pt;}
.wsb{word-spacing:3.945216pt;}
.ws3d{word-spacing:3.995667pt;}
.ws53{word-spacing:4.048801pt;}
.ws125{word-spacing:4.088678pt;}
.ws5e{word-spacing:4.101935pt;}
.ws24{word-spacing:4.208202pt;}
.wsea{word-spacing:4.261336pt;}
.ws14d{word-spacing:4.279962pt;}
.ws63{word-spacing:4.314470pt;}
.ws143{word-spacing:4.327782pt;}
.ws3b{word-spacing:4.367604pt;}
.ws54{word-spacing:4.420738pt;}
.wsd5{word-spacing:4.473872pt;}
.ws110{word-spacing:4.527005pt;}
.ws61{word-spacing:4.580139pt;}
.ws15c{word-spacing:4.710349pt;}
.ws7a{word-spacing:4.739541pt;}
.ws7d{word-spacing:4.792675pt;}
.ws30{word-spacing:4.898943pt;}
.wsa8{word-spacing:4.949453pt;}
.wsf0{word-spacing:4.952076pt;}
.wsa2{word-spacing:5.058344pt;}
.wsb7{word-spacing:5.111478pt;}
.wsf1{word-spacing:5.164612pt;}
.ws15f{word-spacing:5.188557pt;}
.wse7{word-spacing:5.217746pt;}
.ws29{word-spacing:5.324013pt;}
.ws4f{word-spacing:5.377147pt;}
.ws123{word-spacing:5.379840pt;}
.ws25{word-spacing:5.430281pt;}
.ws141{word-spacing:5.475482pt;}
.ws17{word-spacing:5.483415pt;}
.ws1b{word-spacing:5.536549pt;}
.ws120{word-spacing:5.571123pt;}
.ws62{word-spacing:5.589683pt;}
.wsa7{word-spacing:5.618944pt;}
.ws66{word-spacing:5.695951pt;}
.wsb4{word-spacing:5.749084pt;}
.ws155{word-spacing:5.762406pt;}
.ws145{word-spacing:5.810227pt;}
.ws10c{word-spacing:5.855352pt;}
.ws95{word-spacing:5.908486pt;}
.ws45{word-spacing:5.961620pt;}
.ws101{word-spacing:6.014754pt;}
.ws56{word-spacing:6.067888pt;}
.ws151{word-spacing:6.097152pt;}
.ws6e{word-spacing:6.121021pt;}
.ws2a{word-spacing:6.174155pt;}
.ws7b{word-spacing:6.227289pt;}
.wsd4{word-spacing:6.333557pt;}
.wsb8{word-spacing:6.439825pt;}
.ws159{word-spacing:6.479718pt;}
.wsbd{word-spacing:6.490694pt;}
.wsf3{word-spacing:6.546092pt;}
.wsa3{word-spacing:6.652360pt;}
.wsa1{word-spacing:6.758628pt;}
.ws91{word-spacing:6.811762pt;}
.ws78{word-spacing:6.864896pt;}
.ws5a{word-spacing:6.918029pt;}
.wsf4{word-spacing:6.957926pt;}
.wse9{word-spacing:7.024297pt;}
.ws2e{word-spacing:7.077431pt;}
.ws27{word-spacing:7.183699pt;}
.ws5f{word-spacing:7.289967pt;}
.wsd{word-spacing:7.292672pt;}
.ws116{word-spacing:7.343100pt;}
.ws160{word-spacing:7.392212pt;}
.ws6b{word-spacing:7.449368pt;}
.ws2b{word-spacing:7.502502pt;}
.wsbc{word-spacing:7.518344pt;}
.ws140{word-spacing:7.531776pt;}
.ws134{word-spacing:7.579597pt;}
.ws104{word-spacing:7.608770pt;}
.ws6a{word-spacing:7.661904pt;}
.ws65{word-spacing:7.768171pt;}
.ws13b{word-spacing:7.818701pt;}
.ws96{word-spacing:7.821305pt;}
.ws43{word-spacing:7.874439pt;}
.ws94{word-spacing:7.980707pt;}
.wsb5{word-spacing:7.991334pt;}
.ws148{word-spacing:8.009984pt;}
.wsaa{word-spacing:8.033841pt;}
.ws10{word-spacing:8.057805pt;}
.ws10f{word-spacing:8.086975pt;}
.ws124{word-spacing:8.127973pt;}
.ws137{word-spacing:8.130388pt;}
.ws154{word-spacing:8.131761pt;}
.ws70{word-spacing:8.140108pt;}
.ws13{word-spacing:8.201267pt;}
.wsf{word-spacing:8.296909pt;}
.wsb9{word-spacing:8.299510pt;}
.ws114{word-spacing:8.352644pt;}
.ws52{word-spacing:8.405778pt;}
.ws105{word-spacing:8.458912pt;}
.ws138{word-spacing:8.536013pt;}
.ws10a{word-spacing:8.565179pt;}
.ws10b{word-spacing:8.671447pt;}
.wsd6{word-spacing:8.883983pt;}
.ws34{word-spacing:8.937116pt;}
.ws49{word-spacing:8.990250pt;}
.ws113{word-spacing:9.043384pt;}
.ws79{word-spacing:9.096518pt;}
.ws37{word-spacing:9.202786pt;}
.ws68{word-spacing:9.255920pt;}
.ws106{word-spacing:9.301146pt;}
.wsee{word-spacing:9.309053pt;}
.ws18{word-spacing:9.362187pt;}
.ws7e{word-spacing:9.372877pt;}
.ws158{word-spacing:9.396787pt;}
.ws5d{word-spacing:9.415321pt;}
.ws129{word-spacing:9.444608pt;}
.ws92{word-spacing:9.521589pt;}
.ws33{word-spacing:9.627857pt;}
.ws77{word-spacing:9.680991pt;}
.wsa0{word-spacing:9.787258pt;}
.wse{word-spacing:9.874995pt;}
.ws1f{word-spacing:9.946660pt;}
.ws5c{word-spacing:9.999794pt;}
.ws2c{word-spacing:10.052928pt;}
.ws90{word-spacing:10.265463pt;}
.ws121{word-spacing:10.305382pt;}
.ws67{word-spacing:10.371731pt;}
.ws14b{word-spacing:10.401024pt;}
.wsd9{word-spacing:10.424865pt;}
.ws100{word-spacing:10.477999pt;}
.ws15d{word-spacing:10.496666pt;}
.ws112{word-spacing:10.531132pt;}
.wsaf{word-spacing:10.584266pt;}
.ws9c{word-spacing:10.796802pt;}
.ws109{word-spacing:10.849936pt;}
.wsab{word-spacing:10.903069pt;}
.ws80{word-spacing:10.919214pt;}
.ws83{word-spacing:10.927053pt;}
.ws108{word-spacing:11.009337pt;}
.wsa9{word-spacing:11.062471pt;}
.wsbb{word-spacing:11.115605pt;}
.ws71{word-spacing:11.168739pt;}
.wsac{word-spacing:11.275007pt;}
.wsa5{word-spacing:11.381274pt;}
.wsd8{word-spacing:11.434408pt;}
.wsb3{word-spacing:11.593810pt;}
.wse8{word-spacing:11.646944pt;}
.ws2f{word-spacing:11.700077pt;}
.ws97{word-spacing:11.753211pt;}
.ws14f{word-spacing:13.294182pt;}
.wscf{word-spacing:14.277492pt;}
.wsce{word-spacing:14.277965pt;}
.wse5{word-spacing:14.280581pt;}
.wsfa{word-spacing:14.282825pt;}
.ws157{word-spacing:14.776627pt;}
.ws127{word-spacing:15.063552pt;}
.ws119{word-spacing:15.398298pt;}
.ws13f{word-spacing:15.685222pt;}
.ws14c{word-spacing:15.972147pt;}
.ws153{word-spacing:16.115610pt;}
.ws85{word-spacing:16.306893pt;}
.ws84{word-spacing:16.337700pt;}
.ws8b{word-spacing:16.354714pt;}
.ws11d{word-spacing:16.450355pt;}
.wsbf{word-spacing:16.732807pt;}
.ws11f{word-spacing:16.856832pt;}
.ws162{word-spacing:16.880742pt;}
.ws12e{word-spacing:16.928563pt;}
.ws13e{word-spacing:17.072026pt;}
.ws11a{word-spacing:17.502413pt;}
.ws13a{word-spacing:18.458829pt;}
.ws12d{word-spacing:18.506650pt;}
.ws126{word-spacing:18.745754pt;}
.ws144{word-spacing:18.984858pt;}
.ws15b{word-spacing:19.319603pt;}
.ws12a{word-spacing:19.941274pt;}
.ws142{word-spacing:20.036915pt;}
.ws150{word-spacing:20.610765pt;}
.ws15a{word-spacing:20.945510pt;}
.ws161{word-spacing:21.806285pt;}
.ws135{word-spacing:21.997568pt;}
.ws149{word-spacing:22.380134pt;}
.ws51{word-spacing:23.846639pt;}
.ws14{word-spacing:24.526256pt;}
.ws15e{word-spacing:24.675533pt;}
.ws5{word-spacing:25.058099pt;}
.ws6{word-spacing:26.515067pt;}
.ws0{word-spacing:28.615887pt;}
.wsdf{word-spacing:34.770523pt;}
.wsc7{word-spacing:39.602523pt;}
.wsf7{word-spacing:39.607857pt;}
.wsf5{word-spacing:39.755316pt;}
.wsde{word-spacing:40.594523pt;}
.ws102{word-spacing:44.132990pt;}
.wsf8{word-spacing:50.189190pt;}
.wsc8{word-spacing:50.194523pt;}
.wsc2{word-spacing:50.347316pt;}
.wsc9{word-spacing:51.741190pt;}
.wsf9{word-spacing:51.746523pt;}
.wsc5{word-spacing:52.738523pt;}
.wsc6{word-spacing:54.401069pt;}
.wse0{word-spacing:57.611735pt;}
.wse2{word-spacing:60.781190pt;}
.wse1{word-spacing:60.786523pt;}
.wsf6{word-spacing:61.773190pt;}
.wsc4{word-spacing:61.778523pt;}
.ws86{word-spacing:64.049881pt;}
.ws8a{word-spacing:64.055214pt;}
.ws88{word-spacing:64.055962pt;}
.wsdd{word-spacing:67.087054pt;}
.ws16{word-spacing:71.667439pt;}
.wsca{word-spacing:79.393069pt;}
.wscd{word-spacing:81.543857pt;}
.wse3{word-spacing:89.985069pt;}
.wscc{word-spacing:90.583857pt;}
.wscb{word-spacing:90.589190pt;}
.wse4{word-spacing:101.175857pt;}
.wsbe{word-spacing:649.200210pt;}
._2{margin-left:-26.566933pt;}
._4{margin-left:-25.132319pt;}
._28{margin-left:-24.188145pt;}
._6{margin-left:-20.669074pt;}
._29{margin-left:-18.830807pt;}
._5{margin-left:-5.844725pt;}
._d{margin-left:-4.569513pt;}
._8{margin-left:-3.655803pt;}
._1{margin-left:-2.448418pt;}
._3{margin-left:-1.434614pt;}
._9{width:1.386803pt;}
._7{width:2.773606pt;}
._26{width:3.824576pt;}
._0{width:4.820323pt;}
._10{width:13.007363pt;}
._16{width:14.319536pt;}
._f{width:15.292119pt;}
._b{width:16.514198pt;}
._27{width:17.463771pt;}
._11{width:18.634230pt;}
._22{width:19.808498pt;}
._a{width:21.098405pt;}
._25{width:22.953081pt;}
._2c{width:25.193603pt;}
._12{width:26.148798pt;}
._1f{width:29.541609pt;}
._2a{width:31.150446pt;}
._e{width:32.757248pt;}
._2d{width:35.348751pt;}
._18{width:36.897902pt;}
._2e{width:37.883243pt;}
._1b{width:39.067993pt;}
._20{width:42.271657pt;}
._2b{width:44.568966pt;}
._19{width:47.487657pt;}
._1a{width:49.652991pt;}
._21{width:52.854392pt;}
._1c{width:58.072464pt;}
._13{width:61.103947pt;}
._24{width:66.267047pt;}
._17{width:68.664464pt;}
._c{width:71.731200pt;}
._1d{width:240.505559pt;}
._23{width:258.473559pt;}
._14{width:269.060226pt;}
._15{width:385.683463pt;}
._1e{width:417.454130pt;}
.fs6{font-size:26.566933pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:132.253333pt;}
.yf8{bottom:165.461333pt;}
.y78{bottom:172.102667pt;}
.yb3{bottom:172.104000pt;}
.yf7{bottom:174.573333pt;}
.y26{bottom:177.182667pt;}
.yb2{bottom:186.716000pt;}
.y77{bottom:188.044000pt;}
.y50{bottom:191.794667pt;}
.y98{bottom:194.876000pt;}
.y25{bottom:196.276000pt;}
.y1b0{bottom:200.962667pt;}
.yb1{bottom:201.326667pt;}
.y76{bottom:203.984000pt;}
.yf6{bottom:207.725333pt;}
.y97{bottom:210.816000pt;}
.y24{bottom:212.216000pt;}
.y4f{bottom:212.481333pt;}
.y1af{bottom:215.574667pt;}
.yb0{bottom:215.938667pt;}
.yf5{bottom:216.837333pt;}
.y75{bottom:219.924000pt;}
.y96{bottom:226.756000pt;}
.y23{bottom:228.156000pt;}
.y4e{bottom:228.421333pt;}
.y1ae{bottom:230.186667pt;}
.y74{bottom:235.864000pt;}
.yaf{bottom:241.145333pt;}
.y95{bottom:242.697333pt;}
.y22{bottom:244.096000pt;}
.y4d{bottom:244.361333pt;}
.y1ad{bottom:244.433333pt;}
.y73{bottom:251.804000pt;}
.yd5{bottom:252.876000pt;}
.yf4{bottom:254.700000pt;}
.yae{bottom:257.085333pt;}
.y94{bottom:258.637333pt;}
.y1ac{bottom:259.045333pt;}
.y21{bottom:260.036000pt;}
.y4c{bottom:260.301333pt;}
.y151{bottom:265.384000pt;}
.y72{bottom:267.744000pt;}
.y132{bottom:267.745333pt;}
.y11a{bottom:268.738667pt;}
.yd4{bottom:268.816000pt;}
.yf3{bottom:270.641333pt;}
.yad{bottom:273.025333pt;}
.y1ab{bottom:273.293333pt;}
.y93{bottom:274.577333pt;}
.y20{bottom:275.977333pt;}
.y4b{bottom:276.241333pt;}
.y185{bottom:282.677333pt;}
.y71{bottom:283.685333pt;}
.y119{bottom:284.678667pt;}
.yd3{bottom:284.757333pt;}
.yf2{bottom:286.581333pt;}
.y1aa{bottom:287.905333pt;}
.yac{bottom:288.966667pt;}
.y1d9{bottom:289.182667pt;}
.y1f{bottom:291.917333pt;}
.y184{bottom:298.617333pt;}
.y70{bottom:299.625333pt;}
.y118{bottom:300.620000pt;}
.yd2{bottom:300.697333pt;}
.y92{bottom:302.470667pt;}
.y1a9{bottom:302.517333pt;}
.yf1{bottom:302.521333pt;}
.y1d8{bottom:303.794667pt;}
.yab{bottom:304.906667pt;}
.y1e{bottom:307.857333pt;}
.y150{bottom:308.188000pt;}
.y4a{bottom:309.942667pt;}
.y183{bottom:314.970667pt;}
.y6f{bottom:315.565333pt;}
.yd1{bottom:316.637333pt;}
.y1a8{bottom:316.764000pt;}
.y117{bottom:317.553333pt;}
.y1d7{bottom:318.406667pt;}
.yf0{bottom:318.461333pt;}
.yaa{bottom:320.846667pt;}
.y164{bottom:322.421333pt;}
.y1d{bottom:323.797333pt;}
.y14f{bottom:324.128000pt;}
.y49{bottom:326.778667pt;}
.y182{bottom:330.910667pt;}
.y1a7{bottom:331.376000pt;}
.y6e{bottom:331.505333pt;}
.yd0{bottom:332.577333pt;}
.y1d6{bottom:333.017333pt;}
.y116{bottom:333.493333pt;}
.ya9{bottom:336.786667pt;}
.y163{bottom:338.361333pt;}
.y1c{bottom:339.737333pt;}
.y14e{bottom:340.068000pt;}
.y91{bottom:340.990667pt;}
.y48{bottom:342.718667pt;}
.y1a6{bottom:345.988000pt;}
.y181{bottom:346.850667pt;}
.y6d{bottom:347.445333pt;}
.y1d5{bottom:347.629333pt;}
.yef{bottom:348.193333pt;}
.y115{bottom:349.434667pt;}
.ycf{bottom:349.589333pt;}
.ya8{bottom:352.726667pt;}
.y162{bottom:354.301333pt;}
.y1b{bottom:355.677333pt;}
.y14d{bottom:356.008000pt;}
.y90{bottom:356.932000pt;}
.y47{bottom:358.658667pt;}
.y1a5{bottom:360.234667pt;}
.y1d4{bottom:362.241333pt;}
.y180{bottom:362.790667pt;}
.y6c{bottom:363.386667pt;}
.y114{bottom:365.374667pt;}
.yce{bottom:365.529333pt;}
.ya7{bottom:368.666667pt;}
.y161{bottom:370.242667pt;}
.y1a{bottom:371.618667pt;}
.y14c{bottom:371.949333pt;}
.y8f{bottom:372.872000pt;}
.y46{bottom:374.600000pt;}
.y1a4{bottom:374.846667pt;}
.y1d3{bottom:376.853333pt;}
.y17f{bottom:378.730667pt;}
.y6b{bottom:379.326667pt;}
.y131{bottom:380.498667pt;}
.y113{bottom:381.314667pt;}
.ycd{bottom:381.469333pt;}
.ya6{bottom:384.608000pt;}
.y160{bottom:386.182667pt;}
.y14b{bottom:387.889333pt;}
.y8e{bottom:388.812000pt;}
.y1a3{bottom:389.458667pt;}
.y45{bottom:390.540000pt;}
.yee{bottom:391.208000pt;}
.y1d2{bottom:391.465333pt;}
.y17e{bottom:395.084000pt;}
.y6a{bottom:395.266667pt;}
.y130{bottom:396.438667pt;}
.y112{bottom:397.254667pt;}
.ycc{bottom:397.410667pt;}
.ya5{bottom:400.548000pt;}
.y15f{bottom:402.122667pt;}
.y19{bottom:402.310667pt;}
.y14a{bottom:403.829333pt;}
.y1a2{bottom:404.070667pt;}
.y8d{bottom:404.752000pt;}
.y1d1{bottom:406.077333pt;}
.y44{bottom:406.480000pt;}
.yed{bottom:407.148000pt;}
.y17d{bottom:411.024000pt;}
.y69{bottom:411.206667pt;}
.y12f{bottom:412.378667pt;}
.y111{bottom:413.194667pt;}
.ycb{bottom:413.350667pt;}
.ya4{bottom:416.488000pt;}
.y1a1{bottom:418.317333pt;}
.y149{bottom:419.769333pt;}
.y1d0{bottom:420.689333pt;}
.y8c{bottom:420.692000pt;}
.y43{bottom:422.420000pt;}
.yec{bottom:423.088000pt;}
.y15e{bottom:424.918667pt;}
.y17c{bottom:426.964000pt;}
.y68{bottom:427.146667pt;}
.y12e{bottom:428.320000pt;}
.y110{bottom:429.136000pt;}
.yca{bottom:429.290667pt;}
.y1a0{bottom:432.929333pt;}
.y1cf{bottom:435.301333pt;}
.y148{bottom:436.300000pt;}
.y8b{bottom:436.633333pt;}
.y42{bottom:438.360000pt;}
.y15d{bottom:440.858667pt;}
.y17b{bottom:442.904000pt;}
.y67{bottom:443.086667pt;}
.y12d{bottom:444.260000pt;}
.y10f{bottom:445.076000pt;}
.yc9{bottom:445.230667pt;}
.y18{bottom:445.933333pt;}
.y19f{bottom:447.541333pt;}
.y1ce{bottom:449.913333pt;}
.y147{bottom:452.240000pt;}
.y8a{bottom:452.573333pt;}
.y41{bottom:454.300000pt;}
.y15c{bottom:456.798667pt;}
.yeb{bottom:458.133333pt;}
.y17a{bottom:458.844000pt;}
.y66{bottom:459.028000pt;}
.y12c{bottom:460.200000pt;}
.y17{bottom:460.545333pt;}
.y10e{bottom:461.016000pt;}
.yc8{bottom:461.170667pt;}
.y19e{bottom:462.153333pt;}
.ya3{bottom:463.501333pt;}
.y1cd{bottom:464.525333pt;}
.y146{bottom:468.181333pt;}
.y89{bottom:468.513333pt;}
.y40{bottom:471.136000pt;}
.y15b{bottom:472.740000pt;}
.y65{bottom:474.968000pt;}
.y12b{bottom:476.140000pt;}
.y19d{bottom:476.401333pt;}
.y10d{bottom:476.956000pt;}
.yc7{bottom:477.110667pt;}
.ya2{bottom:478.113333pt;}
.y1cc{bottom:479.136000pt;}
.y88{bottom:483.456000pt;}
.y145{bottom:484.121333pt;}
.y3f{bottom:487.076000pt;}
.y15a{bottom:488.680000pt;}
.y16{bottom:489.472000pt;}
.y179{bottom:490.129333pt;}
.y64{bottom:490.908000pt;}
.y19c{bottom:491.013333pt;}
.y12a{bottom:492.080000pt;}
.ya1{bottom:492.725333pt;}
.y1cb{bottom:493.748000pt;}
.y10c{bottom:493.890667pt;}
.y87{bottom:499.397333pt;}
.y144{bottom:500.061333pt;}
.y3e{bottom:503.017333pt;}
.yea{bottom:503.805333pt;}
.y15{bottom:504.084000pt;}
.y159{bottom:504.620000pt;}
.y19b{bottom:505.260000pt;}
.y178{bottom:506.069333pt;}
.y63{bottom:506.848000pt;}
.ya0{bottom:507.337333pt;}
.y129{bottom:508.020000pt;}
.y1ca{bottom:508.360000pt;}
.y10b{bottom:509.830667pt;}
.yc6{bottom:514.349333pt;}
.y86{bottom:515.337333pt;}
.y143{bottom:516.001333pt;}
.y14{bottom:518.696000pt;}
.y3d{bottom:518.957333pt;}
.ye9{bottom:519.745333pt;}
.y19a{bottom:519.872000pt;}
.y158{bottom:520.560000pt;}
.y9f{bottom:521.949333pt;}
.y177{bottom:522.422667pt;}
.y62{bottom:522.788000pt;}
.y1c9{bottom:522.972000pt;}
.y128{bottom:523.961333pt;}
.y10a{bottom:525.770667pt;}
.y85{bottom:531.277333pt;}
.y13{bottom:533.308000pt;}
.y199{bottom:534.484000pt;}
.y3c{bottom:534.897333pt;}
.ye8{bottom:535.685333pt;}
.y157{bottom:536.500000pt;}
.y9e{bottom:536.561333pt;}
.y1c8{bottom:537.584000pt;}
.y176{bottom:538.362667pt;}
.y61{bottom:538.728000pt;}
.y127{bottom:539.901333pt;}
.y109{bottom:541.710667pt;}
.y142{bottom:545.521333pt;}
.y84{bottom:547.217333pt;}
.y12{bottom:547.920000pt;}
.y198{bottom:548.730667pt;}
.y3b{bottom:550.837333pt;}
.y9d{bottom:551.173333pt;}
.y1c7{bottom:552.196000pt;}
.ye7{bottom:552.258667pt;}
.y156{bottom:552.440000pt;}
.y175{bottom:554.302667pt;}
.y60{bottom:554.669333pt;}
.y126{bottom:557.013333pt;}
.y108{bottom:557.652000pt;}
.yc5{bottom:562.216000pt;}
.y11{bottom:562.532000pt;}
.y83{bottom:563.157333pt;}
.y197{bottom:563.342667pt;}
.y9c{bottom:565.785333pt;}
.y3a{bottom:566.777333pt;}
.y1c6{bottom:566.808000pt;}
.ye6{bottom:568.198667pt;}
.y155{bottom:568.381333pt;}
.y174{bottom:570.242667pt;}
.y5f{bottom:570.609333pt;}
.y125{bottom:572.953333pt;}
.y107{bottom:573.592000pt;}
.y10{bottom:577.144000pt;}
.y196{bottom:577.954667pt;}
.y82{bottom:578.101333pt;}
.yc4{bottom:578.156000pt;}
.y9b{bottom:580.397333pt;}
.y1c5{bottom:581.420000pt;}
.y39{bottom:582.718667pt;}
.ye5{bottom:584.138667pt;}
.y173{bottom:586.182667pt;}
.y5e{bottom:586.549333pt;}
.y141{bottom:588.325333pt;}
.y124{bottom:588.894667pt;}
.y106{bottom:589.532000pt;}
.yf{bottom:591.754667pt;}
.y195{bottom:592.566667pt;}
.y81{bottom:594.041333pt;}
.yc3{bottom:594.096000pt;}
.y1c4{bottom:596.032000pt;}
.y9a{bottom:597.790667pt;}
.y38{bottom:599.553333pt;}
.ye4{bottom:600.078667pt;}
.y172{bottom:602.124000pt;}
.ybe{bottom:602.489333pt;}
.y140{bottom:604.265333pt;}
.y105{bottom:605.472000pt;}
.y123{bottom:606.006667pt;}
.ye{bottom:606.366667pt;}
.y194{bottom:606.813333pt;}
.y80{bottom:609.981333pt;}
.yc2{bottom:610.036000pt;}
.y1c3{bottom:610.644000pt;}
.y37{bottom:615.493333pt;}
.y5d{bottom:615.625333pt;}
.ye3{bottom:616.018667pt;}
.y171{bottom:618.064000pt;}
.ybd{bottom:618.429333pt;}
.y13f{bottom:620.205333pt;}
.yd{bottom:620.978667pt;}
.y104{bottom:621.412000pt;}
.y193{bottom:621.425333pt;}
.y122{bottom:621.946667pt;}
.y1c2{bottom:625.254667pt;}
.y7f{bottom:625.922667pt;}
.y99{bottom:627.924000pt;}
.y36{bottom:631.434667pt;}
.ye2{bottom:631.960000pt;}
.y170{bottom:634.004000pt;}
.ybc{bottom:634.369333pt;}
.yc{bottom:635.590667pt;}
.y192{bottom:635.673333pt;}
.y13e{bottom:636.145333pt;}
.y103{bottom:637.352000pt;}
.y121{bottom:637.886667pt;}
.y1c1{bottom:639.866667pt;}
.y154{bottom:641.220000pt;}
.y7e{bottom:641.862667pt;}
.y35{bottom:647.374667pt;}
.ye1{bottom:647.900000pt;}
.y16f{bottom:649.944000pt;}
.yb{bottom:650.202667pt;}
.y191{bottom:650.285333pt;}
.ybb{bottom:650.310667pt;}
.y13d{bottom:652.086667pt;}
.y120{bottom:653.828000pt;}
.y1c0{bottom:654.478667pt;}
.y5c{bottom:655.328000pt;}
.y153{bottom:655.832000pt;}
.y7d{bottom:657.802667pt;}
.yc1{bottom:658.024000pt;}
.y34{bottom:663.314667pt;}
.ye0{bottom:663.840000pt;}
.ya{bottom:664.814667pt;}
.y190{bottom:664.897333pt;}
.y16e{bottom:665.884000pt;}
.yba{bottom:666.250667pt;}
.y13c{bottom:668.026667pt;}
.y102{bottom:668.890667pt;}
.y1bf{bottom:669.090667pt;}
.y11f{bottom:669.768000pt;}
.y152{bottom:670.444000pt;}
.y5b{bottom:671.268000pt;}
.yc0{bottom:672.636000pt;}
.y7c{bottom:673.742667pt;}
.y18f{bottom:679.144000pt;}
.y33{bottom:679.254667pt;}
.y9{bottom:679.426667pt;}
.ydf{bottom:679.780000pt;}
.yb9{bottom:682.190667pt;}
.y1be{bottom:683.702667pt;}
.y13b{bottom:683.966667pt;}
.y11e{bottom:685.708000pt;}
.y5a{bottom:687.208000pt;}
.ybf{bottom:687.248000pt;}
.y7b{bottom:689.682667pt;}
.y18e{bottom:693.756000pt;}
.y32{bottom:695.194667pt;}
.yde{bottom:695.720000pt;}
.yb8{bottom:698.130667pt;}
.y1bd{bottom:698.314667pt;}
.y16d{bottom:699.826667pt;}
.y13a{bottom:699.906667pt;}
.y11d{bottom:701.648000pt;}
.y59{bottom:703.148000pt;}
.y7a{bottom:705.622667pt;}
.y18d{bottom:708.368000pt;}
.ydd{bottom:711.661333pt;}
.y31{bottom:712.030667pt;}
.y1bc{bottom:712.926667pt;}
.y101{bottom:713.712000pt;}
.y139{bottom:715.846667pt;}
.y58{bottom:719.089333pt;}
.yb7{bottom:724.125333pt;}
.y1bb{bottom:727.538667pt;}
.ydc{bottom:727.601333pt;}
.y30{bottom:727.970667pt;}
.y79{bottom:728.866667pt;}
.y100{bottom:729.652000pt;}
.y8{bottom:730.565333pt;}
.y138{bottom:731.786667pt;}
.y11c{bottom:734.077333pt;}
.y18c{bottom:737.097333pt;}
.yb6{bottom:738.737333pt;}
.y1ba{bottom:742.150667pt;}
.ydb{bottom:743.541333pt;}
.y2f{bottom:743.912000pt;}
.y16c{bottom:744.394667pt;}
.y57{bottom:744.806667pt;}
.y7{bottom:745.177333pt;}
.yff{bottom:745.592000pt;}
.yb5{bottom:753.349333pt;}
.y1b9{bottom:756.762667pt;}
.y6{bottom:759.789333pt;}
.y2e{bottom:759.852000pt;}
.yda{bottom:760.114667pt;}
.y16b{bottom:760.334667pt;}
.y56{bottom:760.746667pt;}
.yb4{bottom:767.961333pt;}
.y1b8{bottom:771.374667pt;}
.y5{bottom:774.401333pt;}
.y2d{bottom:775.792000pt;}
.yd9{bottom:776.054667pt;}
.y16a{bottom:776.274667pt;}
.y55{bottom:776.688000pt;}
.y18b{bottom:778.145333pt;}
.y1b7{bottom:785.985333pt;}
.y2c{bottom:791.732000pt;}
.yd8{bottom:791.994667pt;}
.y169{bottom:792.216000pt;}
.y54{bottom:792.628000pt;}
.y137{bottom:793.490667pt;}
.y18a{bottom:794.085333pt;}
.y11b{bottom:796.945333pt;}
.y1b6{bottom:800.597333pt;}
.y4{bottom:802.241333pt;}
.y136{bottom:804.649333pt;}
.y2b{bottom:807.672000pt;}
.yd7{bottom:807.934667pt;}
.yfe{bottom:808.102667pt;}
.y168{bottom:808.156000pt;}
.y53{bottom:808.568000pt;}
.y189{bottom:810.026667pt;}
.y1b5{bottom:815.209333pt;}
.y3{bottom:818.182667pt;}
.y135{bottom:818.996000pt;}
.yfd{bottom:819.261333pt;}
.y2a{bottom:823.612000pt;}
.yd6{bottom:823.874667pt;}
.y167{bottom:824.096000pt;}
.y52{bottom:824.508000pt;}
.y188{bottom:825.966667pt;}
.y1b4{bottom:829.821333pt;}
.y134{bottom:830.153333pt;}
.yfc{bottom:833.608000pt;}
.y166{bottom:840.036000pt;}
.y29{bottom:840.448000pt;}
.y187{bottom:841.906667pt;}
.y1b3{bottom:844.433333pt;}
.yfb{bottom:844.765333pt;}
.y165{bottom:855.976000pt;}
.y28{bottom:856.388000pt;}
.y186{bottom:857.846667pt;}
.y1b2{bottom:859.045333pt;}
.y133{bottom:863.362667pt;}
.y2{bottom:864.358667pt;}
.y27{bottom:872.329333pt;}
.y1b1{bottom:873.657333pt;}
.yfa{bottom:877.974667pt;}
.y1{bottom:888.269333pt;}
.yf9{bottom:892.586667pt;}
.h7{height:15.685222pt;}
.h9{height:21.200555pt;}
.hd{height:27.895200pt;}
.h5{height:33.187635pt;}
.h4{height:35.865600pt;}
.ha{height:37.193707pt;}
.h3{height:39.850400pt;}
.h6{height:44.632747pt;}
.h2{height:45.427101pt;}
.h8{height:47.175200pt;}
.h1{height:53.559147pt;}
.hb{height:75.797067pt;}
.hc{height:76.298400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:179.686667pt;}
.xb{left:183.117333pt;}
.x3{left:184.316000pt;}
.x1b{left:185.829333pt;}
.xc{left:187.988000pt;}
.x10{left:192.238667pt;}
.x1{left:199.301333pt;}
.xd{left:202.268000pt;}
.x11{left:204.792000pt;}
.x5{left:214.025333pt;}
.x9{left:217.481333pt;}
.xf{left:232.508000pt;}
.x18{left:233.809333pt;}
.x1a{left:237.046667pt;}
.x17{left:239.694667pt;}
.x6{left:240.608000pt;}
.x7{left:294.124000pt;}
.x8{left:300.400000pt;}
.x2{left:327.813333pt;}
.x15{left:362.656000pt;}
.x4{left:366.106667pt;}
.x12{left:381.758667pt;}
.x19{left:403.596000pt;}
.x16{left:404.892000pt;}
.xe{left:406.916000pt;}
.x13{left:419.284000pt;}
.x14{left:623.814667pt;}
}




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