
    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_4a4a61e2f7d1491f2e0d4b29.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_92aa3297aee8a6059e9a534f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.267000;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_41c65b014a5ce0032354643c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967000;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_2fb9d18c67fb42dfdec4686c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.122000;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_9a5c1300962ac70472e3742f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964000;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_0fcc2edf62f040e75a2ef0d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.844727;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_e7bf5b3004707f41677d2706.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.737305;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_1c24006505f63a3326de07e4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967000;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_977a856b1eb9f0a84fe35889.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.967000;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_b1af289489f80bd78f633c32.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.122000;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_0a85eb67aa4f58a005a02ac7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.122000;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_977a856b1eb9f0a84fe35889.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.967000;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_977a856b1eb9f0a84fe35889.woff2')format("woff");}.fff{font-family:fff;line-height:0.967000;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_b1af289489f80bd78f633c32.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.122000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.200000px;}
.v3{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.012000px;}
.v2{vertical-align:26.484000px;}
.ls8{letter-spacing:-5.346000px;}
.lsa{letter-spacing:-4.851000px;}
.ls15{letter-spacing:-4.009500px;}
.ls10{letter-spacing:-3.528000px;}
.lsc{letter-spacing:-3.316500px;}
.ls7{letter-spacing:-3.120000px;}
.ls9{letter-spacing:-2.970000px;}
.ls16{letter-spacing:-2.916000px;}
.lse{letter-spacing:-2.722500px;}
.ls13{letter-spacing:-2.640000px;}
.ls26{letter-spacing:-2.623500px;}
.ls12{letter-spacing:-2.412000px;}
.ls4{letter-spacing:-2.184000px;}
.lsf{letter-spacing:-2.160000px;}
.lsb{letter-spacing:-2.079000px;}
.ls2a{letter-spacing:-1.914000px;}
.ls14{letter-spacing:-1.908000px;}
.ls1f{letter-spacing:-1.881000px;}
.ls1e{letter-spacing:-1.534500px;}
.ls11{letter-spacing:-1.512000px;}
.ls17{letter-spacing:-1.435500px;}
.ls23{letter-spacing:-1.296000px;}
.ls22{letter-spacing:-1.237500px;}
.ls21{letter-spacing:-1.089000px;}
.ls19{letter-spacing:-1.044000px;}
.ls2c{letter-spacing:-0.990000px;}
.ls25{letter-spacing:-0.900000px;}
.ls24{letter-spacing:-0.792000px;}
.ls2d{letter-spacing:-0.648000px;}
.ls20{letter-spacing:-0.594000px;}
.ls6{letter-spacing:-0.480000px;}
.ls1c{letter-spacing:-0.384000px;}
.ls18{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.198000px;}
.ls5{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.132000px;}
.ls2b{letter-spacing:-0.099000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000300px;}
.ls28{letter-spacing:0.132000px;}
.ls27{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.928200px;}
.ls1a{letter-spacing:1.070400px;}
.ls1d{letter-spacing:1.899000px;}
.ls1{letter-spacing:3.762000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws39{word-spacing:-14.454000px;}
.ws172{word-spacing:-14.322000px;}
.wsd6{word-spacing:-13.200000px;}
.ws174{word-spacing:-13.068000px;}
.ws13a{word-spacing:-13.002000px;}
.ws171{word-spacing:-12.540000px;}
.ws10f{word-spacing:-12.408000px;}
.ws2{word-spacing:-10.840500px;}
.ws173{word-spacing:-10.741500px;}
.ws74{word-spacing:-10.512000px;}
.ws5{word-spacing:-10.368000px;}
.wsf1{word-spacing:-10.246500px;}
.wsb9{word-spacing:-10.032000px;}
.ws175{word-spacing:-9.850500px;}
.wsf2{word-spacing:-9.751500px;}
.ws110{word-spacing:-9.603000px;}
.ws4{word-spacing:-9.600000px;}
.ws10e{word-spacing:-9.405000px;}
.wsef{word-spacing:-9.306000px;}
.ws3a{word-spacing:-9.120000px;}
.ws6b{word-spacing:-9.108000px;}
.wsf0{word-spacing:-8.959500px;}
.ws6e{word-spacing:-8.761500px;}
.ws111{word-spacing:-8.217000px;}
.ws6f{word-spacing:-8.118000px;}
.ws3{word-spacing:-7.884000px;}
.ws6c{word-spacing:-7.870500px;}
.wsd7{word-spacing:-7.596000px;}
.wsb8{word-spacing:-7.524000px;}
.ws176{word-spacing:-7.236000px;}
.wsf4{word-spacing:-7.092000px;}
.ws1{word-spacing:-7.014000px;}
.wsf5{word-spacing:-6.984000px;}
.wsba{word-spacing:-6.840000px;}
.ws95{word-spacing:-6.831000px;}
.wsf3{word-spacing:-6.588000px;}
.ws72{word-spacing:-6.372000px;}
.ws6d{word-spacing:-5.989500px;}
.ws75{word-spacing:-5.976000px;}
.ws14e{word-spacing:-5.808000px;}
.ws70{word-spacing:-5.724000px;}
.ws162{word-spacing:-5.478000px;}
.ws73{word-spacing:-5.472000px;}
.ws14f{word-spacing:-5.346000px;}
.ws89{word-spacing:-5.280000px;}
.ws96{word-spacing:-4.968000px;}
.ws134{word-spacing:-4.884000px;}
.ws16c{word-spacing:-4.818000px;}
.ws71{word-spacing:-4.356000px;}
.ws179{word-spacing:-4.290000px;}
.ws150{word-spacing:-4.224000px;}
.ws86{word-spacing:-4.026000px;}
.ws17a{word-spacing:-3.960000px;}
.ws16a{word-spacing:-3.894000px;}
.ws170{word-spacing:-3.762000px;}
.ws7b{word-spacing:-3.696000px;}
.wsda{word-spacing:-3.630000px;}
.ws167{word-spacing:-3.498000px;}
.ws5b{word-spacing:-3.456000px;}
.ws177{word-spacing:-3.432000px;}
.ws14d{word-spacing:-3.234000px;}
.wsee{word-spacing:-3.216000px;}
.ws5c{word-spacing:-3.168000px;}
.ws156{word-spacing:-3.102000px;}
.ws12d{word-spacing:-3.036000px;}
.wsed{word-spacing:-2.928000px;}
.ws9b{word-spacing:-2.838000px;}
.wsa6{word-spacing:-2.772000px;}
.ws163{word-spacing:-2.574000px;}
.ws41{word-spacing:-2.508000px;}
.ws16f{word-spacing:-2.442000px;}
.ws117{word-spacing:-2.310000px;}
.ws13d{word-spacing:-2.244000px;}
.ws178{word-spacing:-2.178000px;}
.wsa8{word-spacing:-2.112000px;}
.ws10{word-spacing:-2.046000px;}
.ws104{word-spacing:-1.980000px;}
.ws48{word-spacing:-1.914000px;}
.ws164{word-spacing:-1.782000px;}
.ws12c{word-spacing:-1.776000px;}
.ws20{word-spacing:-1.728000px;}
.ws119{word-spacing:-1.716000px;}
.ws76{word-spacing:-1.650000px;}
.ws12b{word-spacing:-1.632000px;}
.ws21{word-spacing:-1.584000px;}
.ws3d{word-spacing:-1.518000px;}
.wsb1{word-spacing:-1.488000px;}
.ws87{word-spacing:-1.452000px;}
.ws64{word-spacing:-1.392000px;}
.ws3c{word-spacing:-1.386000px;}
.ws139{word-spacing:-1.344000px;}
.wsd8{word-spacing:-1.320000px;}
.wsce{word-spacing:-1.254000px;}
.ws65{word-spacing:-1.248000px;}
.ws14{word-spacing:-1.188000px;}
.ws3e{word-spacing:-1.122000px;}
.ws101{word-spacing:-1.056000px;}
.ws13f{word-spacing:-0.990000px;}
.ws15c{word-spacing:-0.924000px;}
.ws77{word-spacing:-0.858000px;}
.ws7d{word-spacing:-0.726000px;}
.ws97{word-spacing:-0.660000px;}
.ws165{word-spacing:-0.624000px;}
.ws85{word-spacing:-0.594000px;}
.wse9{word-spacing:-0.576000px;}
.ws157{word-spacing:-0.528000px;}
.ws158{word-spacing:-0.462000px;}
.ws61{word-spacing:-0.432000px;}
.ws152{word-spacing:-0.396000px;}
.ws62{word-spacing:-0.384000px;}
.wsaa{word-spacing:-0.330000px;}
.ws12a{word-spacing:-0.288000px;}
.ws11d{word-spacing:-0.264000px;}
.ws2d{word-spacing:-0.240000px;}
.wsaf{word-spacing:-0.192000px;}
.ws12f{word-spacing:-0.132000px;}
.ws17d{word-spacing:-0.096000px;}
.ws15e{word-spacing:-0.066000px;}
.wsb2{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:0.048000px;}
.ws102{word-spacing:0.066000px;}
.ws2e{word-spacing:0.096000px;}
.wsc{word-spacing:0.132000px;}
.ws25{word-spacing:0.144000px;}
.ws59{word-spacing:0.192000px;}
.wscd{word-spacing:0.198000px;}
.ws6a{word-spacing:0.240000px;}
.ws7a{word-spacing:0.264000px;}
.ws69{word-spacing:0.288000px;}
.ws13b{word-spacing:0.330000px;}
.ws40{word-spacing:0.396000px;}
.ws8e{word-spacing:0.432000px;}
.ws81{word-spacing:0.462000px;}
.ws5a{word-spacing:0.480000px;}
.ws80{word-spacing:0.528000px;}
.wseb{word-spacing:0.576000px;}
.wsb0{word-spacing:0.624000px;}
.ws9{word-spacing:0.672000px;}
.ws121{word-spacing:0.720000px;}
.ws84{word-spacing:0.726000px;}
.ws55{word-spacing:0.768000px;}
.ws130{word-spacing:0.792000px;}
.ws33{word-spacing:0.816000px;}
.ws6{word-spacing:0.840000px;}
.ws132{word-spacing:0.858000px;}
.ws10d{word-spacing:0.864000px;}
.ws60{word-spacing:0.912000px;}
.ws7{word-spacing:0.924000px;}
.ws1a{word-spacing:0.960000px;}
.wsff{word-spacing:0.990000px;}
.ws5f{word-spacing:1.008000px;}
.ws1b{word-spacing:1.056000px;}
.ws161{word-spacing:1.089000px;}
.wsea{word-spacing:1.104000px;}
.ws14b{word-spacing:1.122000px;}
.ws155{word-spacing:1.188000px;}
.ws24{word-spacing:1.200000px;}
.ws105{word-spacing:1.237500px;}
.ws7e{word-spacing:1.254000px;}
.ws3b{word-spacing:1.320000px;}
.wsfb{word-spacing:1.386000px;}
.wsc2{word-spacing:1.435500px;}
.ws12{word-spacing:1.452000px;}
.ws98{word-spacing:1.518000px;}
.ws108{word-spacing:1.536000px;}
.ws68{word-spacing:1.584000px;}
.ws100{word-spacing:1.650000px;}
.ws107{word-spacing:1.680000px;}
.ws15{word-spacing:1.716000px;}
.ws15d{word-spacing:1.782000px;}
.wsec{word-spacing:1.824000px;}
.ws13{word-spacing:1.848000px;}
.ws17e{word-spacing:1.872000px;}
.ws109{word-spacing:1.968000px;}
.ws13c{word-spacing:1.980000px;}
.ws4c{word-spacing:2.046000px;}
.ws5e{word-spacing:2.064000px;}
.ws11c{word-spacing:2.112000px;}
.ws2c{word-spacing:2.160000px;}
.wsad{word-spacing:2.244000px;}
.ws5d{word-spacing:2.256000px;}
.ws2f{word-spacing:2.304000px;}
.wsf{word-spacing:2.310000px;}
.ws2b{word-spacing:2.352000px;}
.ws160{word-spacing:2.376000px;}
.ws54{word-spacing:2.400000px;}
.ws8{word-spacing:2.436000px;}
.ws7c{word-spacing:2.442000px;}
.ws106{word-spacing:2.496000px;}
.wsa5{word-spacing:2.508000px;}
.wsd3{word-spacing:2.544000px;}
.ws16{word-spacing:2.574000px;}
.ws52{word-spacing:2.592000px;}
.ws8a{word-spacing:2.640000px;}
.wse7{word-spacing:2.706000px;}
.ws88{word-spacing:2.722500px;}
.wsfa{word-spacing:2.772000px;}
.ws36{word-spacing:2.784000px;}
.ws51{word-spacing:2.832000px;}
.wsde{word-spacing:2.838000px;}
.wse4{word-spacing:2.904000px;}
.wsa{word-spacing:2.940000px;}
.ws8d{word-spacing:3.024000px;}
.ws9e{word-spacing:3.036000px;}
.ws125{word-spacing:3.072000px;}
.ws43{word-spacing:3.102000px;}
.ws67{word-spacing:3.120000px;}
.wsbc{word-spacing:3.168000px;}
.ws32{word-spacing:3.216000px;}
.ws83{word-spacing:3.234000px;}
.ws11{word-spacing:3.300000px;}
.ws8c{word-spacing:3.312000px;}
.ws82{word-spacing:3.316500px;}
.ws1f{word-spacing:3.360000px;}
.ws42{word-spacing:3.366000px;}
.ws116{word-spacing:3.432000px;}
.ws11f{word-spacing:3.498000px;}
.ws18{word-spacing:3.504000px;}
.ws31{word-spacing:3.552000px;}
.ws114{word-spacing:3.564000px;}
.ws123{word-spacing:3.600000px;}
.ws168{word-spacing:3.630000px;}
.wsc3{word-spacing:3.696000px;}
.wsd2{word-spacing:3.744000px;}
.ws131{word-spacing:3.762000px;}
.ws17{word-spacing:3.840000px;}
.ws153{word-spacing:3.894000px;}
.ws122{word-spacing:3.936000px;}
.wsc8{word-spacing:3.960000px;}
.ws8b{word-spacing:3.984000px;}
.ws99{word-spacing:4.026000px;}
.ws66{word-spacing:4.032000px;}
.wsbe{word-spacing:4.092000px;}
.ws90{word-spacing:4.128000px;}
.wsdb{word-spacing:4.158000px;}
.ws4d{word-spacing:4.224000px;}
.wse5{word-spacing:4.290000px;}
.ws113{word-spacing:4.356000px;}
.ws17f{word-spacing:4.416000px;}
.wse3{word-spacing:4.422000px;}
.ws49{word-spacing:4.488000px;}
.ws8f{word-spacing:4.512000px;}
.ws166{word-spacing:4.554000px;}
.ws63{word-spacing:4.608000px;}
.ws142{word-spacing:4.620000px;}
.ws126{word-spacing:4.656000px;}
.wsfe{word-spacing:4.686000px;}
.ws58{word-spacing:4.752000px;}
.ws22{word-spacing:4.800000px;}
.ws29{word-spacing:4.896000px;}
.wse8{word-spacing:4.950000px;}
.wsa9{word-spacing:5.016000px;}
.wsf7{word-spacing:5.082000px;}
.wsb6{word-spacing:5.088000px;}
.ws94{word-spacing:5.136000px;}
.wsf6{word-spacing:5.148000px;}
.ws57{word-spacing:5.184000px;}
.wsab{word-spacing:5.214000px;}
.ws23{word-spacing:5.280000px;}
.ws127{word-spacing:5.328000px;}
.ws15a{word-spacing:5.346000px;}
.ws2a{word-spacing:5.376000px;}
.wsfd{word-spacing:5.412000px;}
.ws144{word-spacing:5.478000px;}
.wse1{word-spacing:5.544000px;}
.ws37{word-spacing:5.568000px;}
.wsa1{word-spacing:5.610000px;}
.ws93{word-spacing:5.616000px;}
.ws19{word-spacing:5.664000px;}
.ws78{word-spacing:5.676000px;}
.ws136{word-spacing:5.742000px;}
.ws180{word-spacing:5.760000px;}
.ws91{word-spacing:5.808000px;}
.wse{word-spacing:5.874000px;}
.wscb{word-spacing:5.940000px;}
.ws28{word-spacing:6.000000px;}
.wsbb{word-spacing:6.006000px;}
.wsca{word-spacing:6.072000px;}
.ws38{word-spacing:6.096000px;}
.ws182{word-spacing:6.138000px;}
.wsae{word-spacing:6.192000px;}
.wsd9{word-spacing:6.204000px;}
.ws10b{word-spacing:6.240000px;}
.ws7f{word-spacing:6.270000px;}
.ws129{word-spacing:6.288000px;}
.ws9c{word-spacing:6.336000px;}
.wsb3{word-spacing:6.384000px;}
.ws3f{word-spacing:6.402000px;}
.ws1d{word-spacing:6.432000px;}
.ws47{word-spacing:6.468000px;}
.ws27{word-spacing:6.576000px;}
.wsa0{word-spacing:6.600000px;}
.ws118{word-spacing:6.666000px;}
.ws10a{word-spacing:6.672000px;}
.ws11b{word-spacing:6.732000px;}
.ws35{word-spacing:6.768000px;}
.ws147{word-spacing:6.798000px;}
.ws10c{word-spacing:6.816000px;}
.ws128{word-spacing:6.864000px;}
.wsfc{word-spacing:6.930000px;}
.wsa7{word-spacing:6.996000px;}
.ws1c{word-spacing:7.056000px;}
.wsc9{word-spacing:7.062000px;}
.wsc6{word-spacing:7.128000px;}
.ws9f{word-spacing:7.194000px;}
.ws56{word-spacing:7.200000px;}
.wsf9{word-spacing:7.260000px;}
.ws148{word-spacing:7.326000px;}
.wsac{word-spacing:7.392000px;}
.ws34{word-spacing:7.440000px;}
.ws137{word-spacing:7.458000px;}
.wsa3{word-spacing:7.524000px;}
.wse2{word-spacing:7.590000px;}
.ws15f{word-spacing:7.656000px;}
.ws120{word-spacing:7.722000px;}
.ws26{word-spacing:7.728000px;}
.wsa4{word-spacing:7.854000px;}
.ws103{word-spacing:7.920000px;}
.wsc0{word-spacing:7.986000px;}
.ws145{word-spacing:8.052000px;}
.ws4e{word-spacing:8.184000px;}
.ws154{word-spacing:8.250000px;}
.ws46{word-spacing:8.316000px;}
.ws159{word-spacing:8.382000px;}
.wsb7{word-spacing:8.448000px;}
.ws11e{word-spacing:8.646000px;}
.wsd{word-spacing:8.712000px;}
.ws151{word-spacing:8.778000px;}
.wscc{word-spacing:8.844000px;}
.ws133{word-spacing:8.910000px;}
.ws11a{word-spacing:8.976000px;}
.wscf{word-spacing:9.042000px;}
.ws45{word-spacing:9.108000px;}
.wsd5{word-spacing:9.168000px;}
.wsc1{word-spacing:9.240000px;}
.ws4f{word-spacing:9.306000px;}
.ws44{word-spacing:9.372000px;}
.wsdf{word-spacing:9.438000px;}
.ws50{word-spacing:9.456000px;}
.ws12e{word-spacing:9.504000px;}
.ws138{word-spacing:9.570000px;}
.ws15b{word-spacing:9.702000px;}
.ws4a{word-spacing:9.768000px;}
.ws4b{word-spacing:9.834000px;}
.ws30{word-spacing:9.840000px;}
.ws17c{word-spacing:9.966000px;}
.wsc5{word-spacing:10.032000px;}
.ws9d{word-spacing:10.164000px;}
.wsd4{word-spacing:10.224000px;}
.ws79{word-spacing:10.230000px;}
.ws9a{word-spacing:10.296000px;}
.ws16e{word-spacing:10.560000px;}
.wsc7{word-spacing:10.692000px;}
.ws143{word-spacing:10.758000px;}
.ws14c{word-spacing:10.824000px;}
.wsbd{word-spacing:10.890000px;}
.ws16b{word-spacing:11.022000px;}
.wsb4{word-spacing:11.184000px;}
.ws92{word-spacing:11.568000px;}
.wsd1{word-spacing:11.616000px;}
.wse6{word-spacing:11.682000px;}
.ws115{word-spacing:11.748000px;}
.wsbf{word-spacing:11.880000px;}
.wse0{word-spacing:12.012000px;}
.ws53{word-spacing:12.048000px;}
.ws16d{word-spacing:12.210000px;}
.wsb5{word-spacing:12.240000px;}
.wsdd{word-spacing:12.342000px;}
.ws17b{word-spacing:12.540000px;}
.wsd0{word-spacing:12.720000px;}
.wsc4{word-spacing:13.068000px;}
.wsb{word-spacing:13.464000px;}
.ws14a{word-spacing:13.728000px;}
.ws13e{word-spacing:14.256000px;}
.ws181{word-spacing:14.388000px;}
.ws141{word-spacing:14.718000px;}
.wsf8{word-spacing:14.916000px;}
.ws140{word-spacing:14.982000px;}
.ws146{word-spacing:15.378000px;}
.ws124{word-spacing:15.504000px;}
.ws135{word-spacing:15.576000px;}
.ws169{word-spacing:15.642000px;}
.ws112{word-spacing:16.170000px;}
.wsdc{word-spacing:17.160000px;}
.ws149{word-spacing:17.490000px;}
.wsa2{word-spacing:19.206000px;}
._d{margin-left:-534.276000px;}
._f{margin-left:-279.180000px;}
._8{margin-left:-10.732800px;}
._14{margin-left:-7.983600px;}
._10{margin-left:-6.207600px;}
._7{margin-left:-4.937400px;}
._0{margin-left:-3.762000px;}
._3{margin-left:-2.146200px;}
._2{margin-left:-1.008000px;}
._a{width:1.024800px;}
._4{width:2.184000px;}
._1{width:3.762000px;}
._11{width:4.879200px;}
._6{width:6.309600px;}
._9{width:7.842000px;}
._13{width:9.204600px;}
._c{width:10.444800px;}
._12{width:12.390000px;}
._15{width:14.316600px;}
._16{width:15.518400px;}
._b{width:22.511400px;}
._5{width:24.360000px;}
._e{width:2007.924000px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:49.500000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:108.000000px;}
.y55{bottom:-26.208000px;}
.y0{bottom:0.000000px;}
.y56{bottom:0.048000px;}
.y2b{bottom:20.677950px;}
.y2a{bottom:32.679450px;}
.y59{bottom:40.341600px;}
.y29{bottom:44.680950px;}
.y28{bottom:56.682450px;}
.y5{bottom:66.525004px;}
.y27{bottom:68.682450px;}
.y84{bottom:72.123600px;}
.y58{bottom:72.311100px;}
.yb5{bottom:95.748000px;}
.y54{bottom:95.748150px;}
.y4{bottom:97.125005px;}
.yef{bottom:100.548000px;}
.y82{bottom:100.548150px;}
.y175{bottom:106.237500px;}
.yb4{bottom:109.248000px;}
.y53{bottom:109.248150px;}
.y81{bottom:109.248300px;}
.yd1{bottom:114.048000px;}
.yb3{bottom:122.748000px;}
.y52{bottom:122.748150px;}
.y80{bottom:122.748300px;}
.y174{bottom:125.740500px;}
.yee{bottom:127.548000px;}
.y1b3{bottom:133.611000px;}
.yb2{bottom:136.248000px;}
.y7f{bottom:136.248300px;}
.y21{bottom:139.264499px;}
.y108{bottom:141.048000px;}
.y51{bottom:141.048150px;}
.y173{bottom:145.243500px;}
.yd0{bottom:149.748000px;}
.y50{bottom:149.748300px;}
.y1b2{bottom:153.114000px;}
.yb1{bottom:154.548000px;}
.y7e{bottom:154.548300px;}
.yb0{bottom:163.248000px;}
.y4f{bottom:163.248300px;}
.y7d{bottom:163.248450px;}
.y172{bottom:164.746500px;}
.yed{bottom:168.048000px;}
.y1b1{bottom:172.617000px;}
.yaf{bottom:176.748000px;}
.y4e{bottom:176.748300px;}
.y7c{bottom:176.748450px;}
.y107{bottom:181.548000px;}
.y171{bottom:184.249500px;}
.y189{bottom:184.339500px;}
.yae{bottom:190.248000px;}
.y4d{bottom:190.248300px;}
.y7b{bottom:190.248450px;}
.y1b0{bottom:192.120000px;}
.y106{bottom:195.048000px;}
.y18{bottom:196.933500px;}
.yad{bottom:203.748000px;}
.y4c{bottom:203.748300px;}
.y7a{bottom:203.748450px;}
.y170{bottom:203.752500px;}
.y188{bottom:203.842500px;}
.ycf{bottom:208.548000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1af{bottom:211.623000px;}
.y105{bottom:217.248000px;}
.y79{bottom:217.248450px;}
.yac{bottom:222.048000px;}
.y4b{bottom:222.048300px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y16f{bottom:223.255500px;}
.y187{bottom:223.345500px;}
.yab{bottom:230.748000px;}
.y4a{bottom:230.748450px;}
.y1ae{bottom:231.126000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y104{bottom:235.548000px;}
.y16e{bottom:242.758500px;}
.y186{bottom:242.848500px;}
.yce{bottom:244.248000px;}
.y49{bottom:244.248450px;}
.yaa{bottom:249.048000px;}
.y1ad{bottom:250.629000px;}
.ya9{bottom:257.748000px;}
.y48{bottom:257.748450px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y103{bottom:260.857500px;}
.y16d{bottom:262.261500px;}
.y1c4{bottom:262.297500px;}
.y14f{bottom:262.339500px;}
.y185{bottom:262.351500px;}
.y1ac{bottom:270.132000px;}
.y11e{bottom:271.248000px;}
.y47{bottom:271.248450px;}
.yec{bottom:271.341000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ya8{bottom:276.048000px;}
.y78{bottom:276.048450px;}
.y102{bottom:280.360500px;}
.y16c{bottom:281.764500px;}
.y1c3{bottom:281.800500px;}
.y14e{bottom:281.842500px;}
.y184{bottom:281.854500px;}
.ya7{bottom:284.748000px;}
.y46{bottom:284.748450px;}
.y77{bottom:284.748600px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1ab{bottom:289.635000px;}
.yeb{bottom:290.844000px;}
.ya6{bottom:298.248000px;}
.y45{bottom:298.248450px;}
.y76{bottom:298.248600px;}
.y101{bottom:299.863500px;}
.y16b{bottom:301.267500px;}
.y1c2{bottom:301.303500px;}
.y14d{bottom:301.345500px;}
.y183{bottom:301.357500px;}
.ycd{bottom:301.363500px;}
.y1aa{bottom:309.138000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yea{bottom:310.347000px;}
.y135{bottom:311.748000px;}
.y44{bottom:311.748450px;}
.y75{bottom:311.748600px;}
.ya5{bottom:316.548000px;}
.y100{bottom:319.363500px;}
.y16a{bottom:320.770500px;}
.y1c1{bottom:320.806500px;}
.ycc{bottom:320.824500px;}
.y14c{bottom:320.848500px;}
.y182{bottom:320.860500px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.ya4{bottom:325.248000px;}
.y74{bottom:325.248600px;}
.y1a9{bottom:328.641000px;}
.y134{bottom:330.048000px;}
.y43{bottom:330.048450px;}
.ya3{bottom:338.748000px;}
.y42{bottom:338.748600px;}
.yff{bottom:338.851500px;}
.y169{bottom:340.273500px;}
.y1c0{bottom:340.309500px;}
.ycb{bottom:340.327500px;}
.ye9{bottom:340.344000px;}
.y14b{bottom:340.351500px;}
.y11d{bottom:340.360500px;}
.y181{bottom:340.363500px;}
.yf{bottom:348.133500px;}
.y1a8{bottom:348.144000px;}
.ya2{bottom:352.248000px;}
.y41{bottom:352.248600px;}
.yfe{bottom:358.354500px;}
.y133{bottom:358.357500px;}
.y168{bottom:359.776500px;}
.y1bf{bottom:359.812500px;}
.yca{bottom:359.830500px;}
.ye8{bottom:359.847000px;}
.y14a{bottom:359.854500px;}
.y11c{bottom:359.863500px;}
.y180{bottom:359.866500px;}
.ya1{bottom:365.748000px;}
.y40{bottom:365.748600px;}
.y1a7{bottom:367.647000px;}
.yfd{bottom:377.857500px;}
.y132{bottom:377.860500px;}
.y3f{bottom:379.248600px;}
.y167{bottom:379.279500px;}
.y11b{bottom:379.303500px;}
.y17f{bottom:379.306500px;}
.y1be{bottom:379.315500px;}
.yc9{bottom:379.333500px;}
.ye7{bottom:379.350000px;}
.y149{bottom:379.357500px;}
.ya0{bottom:384.048000px;}
.ye{bottom:386.785499px;}
.y1a6{bottom:387.150000px;}
.y3e{bottom:392.748600px;}
.yfc{bottom:397.360500px;}
.y131{bottom:397.363500px;}
.y9f{bottom:397.548000px;}
.y166{bottom:398.782500px;}
.y11a{bottom:398.806500px;}
.y17e{bottom:398.809500px;}
.y1bd{bottom:398.818500px;}
.yc8{bottom:398.836500px;}
.ye6{bottom:398.853000px;}
.y148{bottom:398.860500px;}
.y73{bottom:406.248600px;}
.y1a5{bottom:406.653000px;}
.yd{bottom:408.044999px;}
.y9e{bottom:411.048000px;}
.y3d{bottom:411.048600px;}
.yfb{bottom:416.863500px;}
.y130{bottom:416.866500px;}
.y165{bottom:418.285500px;}
.y119{bottom:418.309500px;}
.y17d{bottom:418.312500px;}
.y1bc{bottom:418.321500px;}
.yc7{bottom:418.339500px;}
.ye5{bottom:418.356000px;}
.y147{bottom:418.363500px;}
.y9d{bottom:419.748000px;}
.y3c{bottom:419.748600px;}
.y1a4{bottom:426.156000px;}
.y3b{bottom:433.248600px;}
.y12f{bottom:436.360500px;}
.y164{bottom:437.788500px;}
.y72{bottom:437.797500px;}
.y118{bottom:437.812500px;}
.y17c{bottom:437.815500px;}
.y1bb{bottom:437.824500px;}
.yc6{bottom:437.842500px;}
.ye4{bottom:437.859000px;}
.y146{bottom:437.860500px;}
.y1a3{bottom:445.659000px;}
.y3a{bottom:446.748600px;}
.yfa{bottom:446.860500px;}
.y12e{bottom:455.863500px;}
.y163{bottom:457.291500px;}
.y71{bottom:457.300500px;}
.y117{bottom:457.315500px;}
.y17b{bottom:457.318500px;}
.y1ba{bottom:457.327500px;}
.yc5{bottom:457.345500px;}
.ye3{bottom:457.362000px;}
.y9c{bottom:457.363500px;}
.y39{bottom:461.748600px;}
.y1a2{bottom:465.162000px;}
.yf9{bottom:466.363500px;}
.y12d{bottom:475.363500px;}
.y162{bottom:476.794500px;}
.y70{bottom:476.803500px;}
.y116{bottom:476.818500px;}
.y17a{bottom:476.821500px;}
.y1b9{bottom:476.830500px;}
.y145{bottom:476.839500px;}
.yc4{bottom:476.848500px;}
.y9b{bottom:476.866500px;}
.y1a1{bottom:484.665000px;}
.ye2{bottom:486.616500px;}
.y38{bottom:489.688500px;}
.y12c{bottom:494.860500px;}
.y161{bottom:496.297500px;}
.y115{bottom:496.321500px;}
.y179{bottom:496.324500px;}
.y1b8{bottom:496.333500px;}
.y144{bottom:496.342500px;}
.y9a{bottom:496.351500px;}
.yf8{bottom:496.360500px;}
.yc{bottom:502.864502px;}
.y1a0{bottom:504.168000px;}
.y6f{bottom:506.058000px;}
.y37{bottom:509.188500px;}
.y12b{bottom:514.363500px;}
.y160{bottom:515.800500px;}
.y114{bottom:515.824500px;}
.y178{bottom:515.827500px;}
.y1b7{bottom:515.836500px;}
.y143{bottom:515.845500px;}
.y99{bottom:515.854500px;}
.yf7{bottom:515.863500px;}
.yb{bottom:520.864502px;}
.y19f{bottom:523.671000px;}
.y36{bottom:528.685500px;}
.y12a{bottom:533.857500px;}
.y15f{bottom:535.303500px;}
.y113{bottom:535.327500px;}
.ye1{bottom:535.330500px;}
.y1b6{bottom:535.339500px;}
.yf6{bottom:535.345500px;}
.y142{bottom:535.348500px;}
.y98{bottom:535.357500px;}
.ya{bottom:538.864499px;}
.y19e{bottom:543.174000px;}
.y35{bottom:548.188500px;}
.y129{bottom:553.360500px;}
.y15e{bottom:554.806500px;}
.y6e{bottom:554.815500px;}
.y112{bottom:554.830500px;}
.ye0{bottom:554.833500px;}
.y1b5{bottom:554.842500px;}
.yf5{bottom:554.848500px;}
.y141{bottom:554.851500px;}
.y97{bottom:554.860500px;}
.y9{bottom:556.864499px;}
.y19d{bottom:562.677000px;}
.y34{bottom:567.691500px;}
.y128{bottom:572.863500px;}
.y15d{bottom:574.309500px;}
.y6d{bottom:574.318500px;}
.y111{bottom:574.333500px;}
.ydf{bottom:574.336500px;}
.y1b4{bottom:574.345500px;}
.yf4{bottom:574.351500px;}
.y140{bottom:574.354500px;}
.y96{bottom:574.363500px;}
.y19c{bottom:582.180000px;}
.y33{bottom:587.170500px;}
.y127{bottom:592.348500px;}
.y15c{bottom:593.812500px;}
.y6c{bottom:593.821500px;}
.y110{bottom:593.836500px;}
.yde{bottom:593.839500px;}
.yc3{bottom:593.848500px;}
.yf3{bottom:593.854500px;}
.y95{bottom:593.857500px;}
.y19b{bottom:601.683000px;}
.y32{bottom:606.673500px;}
.y126{bottom:611.851500px;}
.y15b{bottom:613.315500px;}
.y6b{bottom:613.324500px;}
.y10f{bottom:613.339500px;}
.ydd{bottom:613.342500px;}
.yc2{bottom:613.351500px;}
.yf2{bottom:613.357500px;}
.y94{bottom:613.360500px;}
.y19a{bottom:621.186000px;}
.y31{bottom:626.176500px;}
.y125{bottom:631.354500px;}
.y15a{bottom:632.818500px;}
.y6a{bottom:632.827500px;}
.y10e{bottom:632.842500px;}
.ydc{bottom:632.845500px;}
.yc1{bottom:632.854500px;}
.yf1{bottom:632.860500px;}
.y93{bottom:632.863500px;}
.y199{bottom:640.689000px;}
.y8{bottom:645.510000px;}
.y30{bottom:645.679500px;}
.y124{bottom:650.857500px;}
.y159{bottom:652.321500px;}
.y69{bottom:652.330500px;}
.y13f{bottom:652.344000px;}
.y10d{bottom:652.345500px;}
.ydb{bottom:652.348500px;}
.yc0{bottom:652.357500px;}
.yf0{bottom:652.363500px;}
.y92{bottom:652.366500px;}
.y198{bottom:660.192000px;}
.y2f{bottom:665.182500px;}
.y7{bottom:666.771000px;}
.y123{bottom:670.360500px;}
.y158{bottom:671.824500px;}
.y68{bottom:671.833500px;}
.y13e{bottom:671.847000px;}
.y10c{bottom:671.848500px;}
.yda{bottom:671.851500px;}
.y91{bottom:671.854500px;}
.ybf{bottom:671.860500px;}
.y197{bottom:679.695000px;}
.y2e{bottom:684.685500px;}
.y122{bottom:689.863500px;}
.y157{bottom:691.327500px;}
.y67{bottom:691.336500px;}
.y13d{bottom:691.350000px;}
.y10b{bottom:691.351500px;}
.yd9{bottom:691.354500px;}
.y90{bottom:691.357500px;}
.ybe{bottom:691.363500px;}
.y196{bottom:699.198000px;}
.y2d{bottom:704.188500px;}
.y121{bottom:709.366500px;}
.y156{bottom:710.830500px;}
.y66{bottom:710.839500px;}
.ybd{bottom:710.845500px;}
.y13c{bottom:710.853000px;}
.y10a{bottom:710.854500px;}
.yd8{bottom:710.857500px;}
.y8f{bottom:710.860500px;}
.y195{bottom:718.701000px;}
.y2c{bottom:723.691500px;}
.y6{bottom:726.298500px;}
.y155{bottom:730.333500px;}
.y65{bottom:730.342500px;}
.ybc{bottom:730.348500px;}
.y13b{bottom:730.356000px;}
.y109{bottom:730.357500px;}
.yd7{bottom:730.360500px;}
.y8e{bottom:730.363500px;}
.y194{bottom:738.204000px;}
.y120{bottom:739.363500px;}
.y154{bottom:749.836500px;}
.y64{bottom:749.845500px;}
.ybb{bottom:749.851500px;}
.y13a{bottom:749.859000px;}
.y8d{bottom:749.860500px;}
.yd6{bottom:749.863500px;}
.y3{bottom:752.599495px;}
.y193{bottom:757.707000px;}
.y11f{bottom:758.866500px;}
.y26{bottom:763.545000px;}
.y153{bottom:769.339500px;}
.y63{bottom:769.348500px;}
.y177{bottom:769.351500px;}
.yba{bottom:769.354500px;}
.y139{bottom:769.362000px;}
.y8c{bottom:769.363500px;}
.yd5{bottom:769.366500px;}
.y192{bottom:777.210000px;}
.y25{bottom:783.048000px;}
.y152{bottom:788.842500px;}
.y62{bottom:788.851500px;}
.y176{bottom:788.854500px;}
.yb9{bottom:788.857500px;}
.y8b{bottom:788.863500px;}
.y191{bottom:796.713000px;}
.y138{bottom:798.616500px;}
.y151{bottom:808.345500px;}
.y61{bottom:808.354500px;}
.yd4{bottom:808.357500px;}
.y8a{bottom:808.360500px;}
.y190{bottom:816.216000px;}
.y24{bottom:826.548000px;}
.y150{bottom:827.848500px;}
.y60{bottom:827.857500px;}
.yd3{bottom:827.860500px;}
.y89{bottom:827.863500px;}
.y18f{bottom:835.719000px;}
.yb8{bottom:847.351500px;}
.y137{bottom:847.354500px;}
.y88{bottom:847.357500px;}
.y5f{bottom:847.360500px;}
.yd2{bottom:847.363500px;}
.y18e{bottom:855.222000px;}
.yb7{bottom:866.854500px;}
.y136{bottom:866.857500px;}
.y87{bottom:866.860500px;}
.y5e{bottom:866.863500px;}
.y18d{bottom:874.725000px;}
.y2{bottom:879.369000px;}
.y23{bottom:880.548000px;}
.yb6{bottom:886.357500px;}
.y5d{bottom:886.360500px;}
.y86{bottom:886.363500px;}
.y18c{bottom:894.228000px;}
.y85{bottom:905.860500px;}
.y5c{bottom:905.863500px;}
.y18b{bottom:913.731000px;}
.y5b{bottom:925.363500px;}
.y22{bottom:934.548000px;}
.y18a{bottom:942.985500px;}
.y5a{bottom:944.866500px;}
.y1{bottom:966.726000px;}
.y83{bottom:977.068500px;}
.y57{bottom:977.368500px;}
.h15{height:25.910156px;}
.h14{height:30.924000px;}
.h7{height:32.130000px;}
.h12{height:35.232000px;}
.hd{height:36.078000px;}
.h13{height:41.232000px;}
.h6{height:45.900000px;}
.h17{height:46.464000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.he{height:56.694000px;}
.h18{height:56.760000px;}
.hb{height:66.198000px;}
.h25{height:68.920500px;}
.h11{height:68.932500px;}
.h10{height:68.944500px;}
.h1a{height:68.956500px;}
.h1b{height:68.968500px;}
.h1c{height:68.980500px;}
.h1d{height:68.992500px;}
.hf{height:69.004500px;}
.h21{height:69.010500px;}
.h22{height:69.028500px;}
.h1f{height:69.064500px;}
.h1e{height:69.088500px;}
.h24{height:69.160500px;}
.h20{height:69.172500px;}
.h19{height:69.196500px;}
.h23{height:69.424500px;}
.h5{height:78.030000px;}
.hc{height:78.174000px;}
.ha{height:108.324000px;}
.h4{height:119.055004px;}
.h16{height:1045.950000px;}
.h8{height:1046.046000px;}
.h9{height:1046.250000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w5{width:727.050150px;}
.w3{width:727.146000px;}
.w4{width:727.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:15.047850px;}
.x9{left:93.572850px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:111.572850px;}
.xc{left:123.300000px;}
.xe{left:136.847850px;}
.xd{left:141.352800px;}
.x6{left:160.959600px;}
.x5{left:170.409600px;}
.x4{left:203.484001px;}
.x7{left:235.587600px;}
.x8{left:280.528050px;}
.x3{left:454.959000px;}
.xf{left:576.817350px;}
@media print{
.v4{vertical-align:-17.066667pt;}
.v3{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.344000pt;}
.v2{vertical-align:23.541333pt;}
.ls8{letter-spacing:-4.752000pt;}
.lsa{letter-spacing:-4.312000pt;}
.ls15{letter-spacing:-3.564000pt;}
.ls10{letter-spacing:-3.136000pt;}
.lsc{letter-spacing:-2.948000pt;}
.ls7{letter-spacing:-2.773333pt;}
.ls9{letter-spacing:-2.640000pt;}
.ls16{letter-spacing:-2.592000pt;}
.lse{letter-spacing:-2.420000pt;}
.ls13{letter-spacing:-2.346667pt;}
.ls26{letter-spacing:-2.332000pt;}
.ls12{letter-spacing:-2.144000pt;}
.ls4{letter-spacing:-1.941333pt;}
.lsf{letter-spacing:-1.920000pt;}
.lsb{letter-spacing:-1.848000pt;}
.ls2a{letter-spacing:-1.701333pt;}
.ls14{letter-spacing:-1.696000pt;}
.ls1f{letter-spacing:-1.672000pt;}
.ls1e{letter-spacing:-1.364000pt;}
.ls11{letter-spacing:-1.344000pt;}
.ls17{letter-spacing:-1.276000pt;}
.ls23{letter-spacing:-1.152000pt;}
.ls22{letter-spacing:-1.100000pt;}
.ls21{letter-spacing:-0.968000pt;}
.ls19{letter-spacing:-0.928000pt;}
.ls2c{letter-spacing:-0.880000pt;}
.ls25{letter-spacing:-0.800000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls2d{letter-spacing:-0.576000pt;}
.ls20{letter-spacing:-0.528000pt;}
.ls6{letter-spacing:-0.426667pt;}
.ls1c{letter-spacing:-0.341333pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.176000pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls2b{letter-spacing:-0.088000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000267pt;}
.ls28{letter-spacing:0.117333pt;}
.ls27{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.825067pt;}
.ls1a{letter-spacing:0.951467pt;}
.ls1d{letter-spacing:1.688000pt;}
.ls1{letter-spacing:3.344000pt;}
.ws39{word-spacing:-12.848000pt;}
.ws172{word-spacing:-12.730667pt;}
.wsd6{word-spacing:-11.733333pt;}
.ws174{word-spacing:-11.616000pt;}
.ws13a{word-spacing:-11.557333pt;}
.ws171{word-spacing:-11.146667pt;}
.ws10f{word-spacing:-11.029333pt;}
.ws2{word-spacing:-9.636000pt;}
.ws173{word-spacing:-9.548000pt;}
.ws74{word-spacing:-9.344000pt;}
.ws5{word-spacing:-9.216000pt;}
.wsf1{word-spacing:-9.108000pt;}
.wsb9{word-spacing:-8.917333pt;}
.ws175{word-spacing:-8.756000pt;}
.wsf2{word-spacing:-8.668000pt;}
.ws110{word-spacing:-8.536000pt;}
.ws4{word-spacing:-8.533333pt;}
.ws10e{word-spacing:-8.360000pt;}
.wsef{word-spacing:-8.272000pt;}
.ws3a{word-spacing:-8.106667pt;}
.ws6b{word-spacing:-8.096000pt;}
.wsf0{word-spacing:-7.964000pt;}
.ws6e{word-spacing:-7.788000pt;}
.ws111{word-spacing:-7.304000pt;}
.ws6f{word-spacing:-7.216000pt;}
.ws3{word-spacing:-7.008000pt;}
.ws6c{word-spacing:-6.996000pt;}
.wsd7{word-spacing:-6.752000pt;}
.wsb8{word-spacing:-6.688000pt;}
.ws176{word-spacing:-6.432000pt;}
.wsf4{word-spacing:-6.304000pt;}
.ws1{word-spacing:-6.234667pt;}
.wsf5{word-spacing:-6.208000pt;}
.wsba{word-spacing:-6.080000pt;}
.ws95{word-spacing:-6.072000pt;}
.wsf3{word-spacing:-5.856000pt;}
.ws72{word-spacing:-5.664000pt;}
.ws6d{word-spacing:-5.324000pt;}
.ws75{word-spacing:-5.312000pt;}
.ws14e{word-spacing:-5.162667pt;}
.ws70{word-spacing:-5.088000pt;}
.ws162{word-spacing:-4.869333pt;}
.ws73{word-spacing:-4.864000pt;}
.ws14f{word-spacing:-4.752000pt;}
.ws89{word-spacing:-4.693333pt;}
.ws96{word-spacing:-4.416000pt;}
.ws134{word-spacing:-4.341333pt;}
.ws16c{word-spacing:-4.282667pt;}
.ws71{word-spacing:-3.872000pt;}
.ws179{word-spacing:-3.813333pt;}
.ws150{word-spacing:-3.754667pt;}
.ws86{word-spacing:-3.578667pt;}
.ws17a{word-spacing:-3.520000pt;}
.ws16a{word-spacing:-3.461333pt;}
.ws170{word-spacing:-3.344000pt;}
.ws7b{word-spacing:-3.285333pt;}
.wsda{word-spacing:-3.226667pt;}
.ws167{word-spacing:-3.109333pt;}
.ws5b{word-spacing:-3.072000pt;}
.ws177{word-spacing:-3.050667pt;}
.ws14d{word-spacing:-2.874667pt;}
.wsee{word-spacing:-2.858667pt;}
.ws5c{word-spacing:-2.816000pt;}
.ws156{word-spacing:-2.757333pt;}
.ws12d{word-spacing:-2.698667pt;}
.wsed{word-spacing:-2.602667pt;}
.ws9b{word-spacing:-2.522667pt;}
.wsa6{word-spacing:-2.464000pt;}
.ws163{word-spacing:-2.288000pt;}
.ws41{word-spacing:-2.229333pt;}
.ws16f{word-spacing:-2.170667pt;}
.ws117{word-spacing:-2.053333pt;}
.ws13d{word-spacing:-1.994667pt;}
.ws178{word-spacing:-1.936000pt;}
.wsa8{word-spacing:-1.877333pt;}
.ws10{word-spacing:-1.818667pt;}
.ws104{word-spacing:-1.760000pt;}
.ws48{word-spacing:-1.701333pt;}
.ws164{word-spacing:-1.584000pt;}
.ws12c{word-spacing:-1.578667pt;}
.ws20{word-spacing:-1.536000pt;}
.ws119{word-spacing:-1.525333pt;}
.ws76{word-spacing:-1.466667pt;}
.ws12b{word-spacing:-1.450667pt;}
.ws21{word-spacing:-1.408000pt;}
.ws3d{word-spacing:-1.349333pt;}
.wsb1{word-spacing:-1.322667pt;}
.ws87{word-spacing:-1.290667pt;}
.ws64{word-spacing:-1.237333pt;}
.ws3c{word-spacing:-1.232000pt;}
.ws139{word-spacing:-1.194667pt;}
.wsd8{word-spacing:-1.173333pt;}
.wsce{word-spacing:-1.114667pt;}
.ws65{word-spacing:-1.109333pt;}
.ws14{word-spacing:-1.056000pt;}
.ws3e{word-spacing:-0.997333pt;}
.ws101{word-spacing:-0.938667pt;}
.ws13f{word-spacing:-0.880000pt;}
.ws15c{word-spacing:-0.821333pt;}
.ws77{word-spacing:-0.762667pt;}
.ws7d{word-spacing:-0.645333pt;}
.ws97{word-spacing:-0.586667pt;}
.ws165{word-spacing:-0.554667pt;}
.ws85{word-spacing:-0.528000pt;}
.wse9{word-spacing:-0.512000pt;}
.ws157{word-spacing:-0.469333pt;}
.ws158{word-spacing:-0.410667pt;}
.ws61{word-spacing:-0.384000pt;}
.ws152{word-spacing:-0.352000pt;}
.ws62{word-spacing:-0.341333pt;}
.wsaa{word-spacing:-0.293333pt;}
.ws12a{word-spacing:-0.256000pt;}
.ws11d{word-spacing:-0.234667pt;}
.ws2d{word-spacing:-0.213333pt;}
.wsaf{word-spacing:-0.170667pt;}
.ws12f{word-spacing:-0.117333pt;}
.ws17d{word-spacing:-0.085333pt;}
.ws15e{word-spacing:-0.058667pt;}
.wsb2{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.042667pt;}
.ws102{word-spacing:0.058667pt;}
.ws2e{word-spacing:0.085333pt;}
.wsc{word-spacing:0.117333pt;}
.ws25{word-spacing:0.128000pt;}
.ws59{word-spacing:0.170667pt;}
.wscd{word-spacing:0.176000pt;}
.ws6a{word-spacing:0.213333pt;}
.ws7a{word-spacing:0.234667pt;}
.ws69{word-spacing:0.256000pt;}
.ws13b{word-spacing:0.293333pt;}
.ws40{word-spacing:0.352000pt;}
.ws8e{word-spacing:0.384000pt;}
.ws81{word-spacing:0.410667pt;}
.ws5a{word-spacing:0.426667pt;}
.ws80{word-spacing:0.469333pt;}
.wseb{word-spacing:0.512000pt;}
.wsb0{word-spacing:0.554667pt;}
.ws9{word-spacing:0.597333pt;}
.ws121{word-spacing:0.640000pt;}
.ws84{word-spacing:0.645333pt;}
.ws55{word-spacing:0.682667pt;}
.ws130{word-spacing:0.704000pt;}
.ws33{word-spacing:0.725333pt;}
.ws6{word-spacing:0.746667pt;}
.ws132{word-spacing:0.762667pt;}
.ws10d{word-spacing:0.768000pt;}
.ws60{word-spacing:0.810667pt;}
.ws7{word-spacing:0.821333pt;}
.ws1a{word-spacing:0.853333pt;}
.wsff{word-spacing:0.880000pt;}
.ws5f{word-spacing:0.896000pt;}
.ws1b{word-spacing:0.938667pt;}
.ws161{word-spacing:0.968000pt;}
.wsea{word-spacing:0.981333pt;}
.ws14b{word-spacing:0.997333pt;}
.ws155{word-spacing:1.056000pt;}
.ws24{word-spacing:1.066667pt;}
.ws105{word-spacing:1.100000pt;}
.ws7e{word-spacing:1.114667pt;}
.ws3b{word-spacing:1.173333pt;}
.wsfb{word-spacing:1.232000pt;}
.wsc2{word-spacing:1.276000pt;}
.ws12{word-spacing:1.290667pt;}
.ws98{word-spacing:1.349333pt;}
.ws108{word-spacing:1.365333pt;}
.ws68{word-spacing:1.408000pt;}
.ws100{word-spacing:1.466667pt;}
.ws107{word-spacing:1.493333pt;}
.ws15{word-spacing:1.525333pt;}
.ws15d{word-spacing:1.584000pt;}
.wsec{word-spacing:1.621333pt;}
.ws13{word-spacing:1.642667pt;}
.ws17e{word-spacing:1.664000pt;}
.ws109{word-spacing:1.749333pt;}
.ws13c{word-spacing:1.760000pt;}
.ws4c{word-spacing:1.818667pt;}
.ws5e{word-spacing:1.834667pt;}
.ws11c{word-spacing:1.877333pt;}
.ws2c{word-spacing:1.920000pt;}
.wsad{word-spacing:1.994667pt;}
.ws5d{word-spacing:2.005333pt;}
.ws2f{word-spacing:2.048000pt;}
.wsf{word-spacing:2.053333pt;}
.ws2b{word-spacing:2.090667pt;}
.ws160{word-spacing:2.112000pt;}
.ws54{word-spacing:2.133333pt;}
.ws8{word-spacing:2.165333pt;}
.ws7c{word-spacing:2.170667pt;}
.ws106{word-spacing:2.218667pt;}
.wsa5{word-spacing:2.229333pt;}
.wsd3{word-spacing:2.261333pt;}
.ws16{word-spacing:2.288000pt;}
.ws52{word-spacing:2.304000pt;}
.ws8a{word-spacing:2.346667pt;}
.wse7{word-spacing:2.405333pt;}
.ws88{word-spacing:2.420000pt;}
.wsfa{word-spacing:2.464000pt;}
.ws36{word-spacing:2.474667pt;}
.ws51{word-spacing:2.517333pt;}
.wsde{word-spacing:2.522667pt;}
.wse4{word-spacing:2.581333pt;}
.wsa{word-spacing:2.613333pt;}
.ws8d{word-spacing:2.688000pt;}
.ws9e{word-spacing:2.698667pt;}
.ws125{word-spacing:2.730667pt;}
.ws43{word-spacing:2.757333pt;}
.ws67{word-spacing:2.773333pt;}
.wsbc{word-spacing:2.816000pt;}
.ws32{word-spacing:2.858667pt;}
.ws83{word-spacing:2.874667pt;}
.ws11{word-spacing:2.933333pt;}
.ws8c{word-spacing:2.944000pt;}
.ws82{word-spacing:2.948000pt;}
.ws1f{word-spacing:2.986667pt;}
.ws42{word-spacing:2.992000pt;}
.ws116{word-spacing:3.050667pt;}
.ws11f{word-spacing:3.109333pt;}
.ws18{word-spacing:3.114667pt;}
.ws31{word-spacing:3.157333pt;}
.ws114{word-spacing:3.168000pt;}
.ws123{word-spacing:3.200000pt;}
.ws168{word-spacing:3.226667pt;}
.wsc3{word-spacing:3.285333pt;}
.wsd2{word-spacing:3.328000pt;}
.ws131{word-spacing:3.344000pt;}
.ws17{word-spacing:3.413333pt;}
.ws153{word-spacing:3.461333pt;}
.ws122{word-spacing:3.498667pt;}
.wsc8{word-spacing:3.520000pt;}
.ws8b{word-spacing:3.541333pt;}
.ws99{word-spacing:3.578667pt;}
.ws66{word-spacing:3.584000pt;}
.wsbe{word-spacing:3.637333pt;}
.ws90{word-spacing:3.669333pt;}
.wsdb{word-spacing:3.696000pt;}
.ws4d{word-spacing:3.754667pt;}
.wse5{word-spacing:3.813333pt;}
.ws113{word-spacing:3.872000pt;}
.ws17f{word-spacing:3.925333pt;}
.wse3{word-spacing:3.930667pt;}
.ws49{word-spacing:3.989333pt;}
.ws8f{word-spacing:4.010667pt;}
.ws166{word-spacing:4.048000pt;}
.ws63{word-spacing:4.096000pt;}
.ws142{word-spacing:4.106667pt;}
.ws126{word-spacing:4.138667pt;}
.wsfe{word-spacing:4.165333pt;}
.ws58{word-spacing:4.224000pt;}
.ws22{word-spacing:4.266667pt;}
.ws29{word-spacing:4.352000pt;}
.wse8{word-spacing:4.400000pt;}
.wsa9{word-spacing:4.458667pt;}
.wsf7{word-spacing:4.517333pt;}
.wsb6{word-spacing:4.522667pt;}
.ws94{word-spacing:4.565333pt;}
.wsf6{word-spacing:4.576000pt;}
.ws57{word-spacing:4.608000pt;}
.wsab{word-spacing:4.634667pt;}
.ws23{word-spacing:4.693333pt;}
.ws127{word-spacing:4.736000pt;}
.ws15a{word-spacing:4.752000pt;}
.ws2a{word-spacing:4.778667pt;}
.wsfd{word-spacing:4.810667pt;}
.ws144{word-spacing:4.869333pt;}
.wse1{word-spacing:4.928000pt;}
.ws37{word-spacing:4.949333pt;}
.wsa1{word-spacing:4.986667pt;}
.ws93{word-spacing:4.992000pt;}
.ws19{word-spacing:5.034667pt;}
.ws78{word-spacing:5.045333pt;}
.ws136{word-spacing:5.104000pt;}
.ws180{word-spacing:5.120000pt;}
.ws91{word-spacing:5.162667pt;}
.wse{word-spacing:5.221333pt;}
.wscb{word-spacing:5.280000pt;}
.ws28{word-spacing:5.333333pt;}
.wsbb{word-spacing:5.338667pt;}
.wsca{word-spacing:5.397333pt;}
.ws38{word-spacing:5.418667pt;}
.ws182{word-spacing:5.456000pt;}
.wsae{word-spacing:5.504000pt;}
.wsd9{word-spacing:5.514667pt;}
.ws10b{word-spacing:5.546667pt;}
.ws7f{word-spacing:5.573333pt;}
.ws129{word-spacing:5.589333pt;}
.ws9c{word-spacing:5.632000pt;}
.wsb3{word-spacing:5.674667pt;}
.ws3f{word-spacing:5.690667pt;}
.ws1d{word-spacing:5.717333pt;}
.ws47{word-spacing:5.749333pt;}
.ws27{word-spacing:5.845333pt;}
.wsa0{word-spacing:5.866667pt;}
.ws118{word-spacing:5.925333pt;}
.ws10a{word-spacing:5.930667pt;}
.ws11b{word-spacing:5.984000pt;}
.ws35{word-spacing:6.016000pt;}
.ws147{word-spacing:6.042667pt;}
.ws10c{word-spacing:6.058667pt;}
.ws128{word-spacing:6.101333pt;}
.wsfc{word-spacing:6.160000pt;}
.wsa7{word-spacing:6.218667pt;}
.ws1c{word-spacing:6.272000pt;}
.wsc9{word-spacing:6.277333pt;}
.wsc6{word-spacing:6.336000pt;}
.ws9f{word-spacing:6.394667pt;}
.ws56{word-spacing:6.400000pt;}
.wsf9{word-spacing:6.453333pt;}
.ws148{word-spacing:6.512000pt;}
.wsac{word-spacing:6.570667pt;}
.ws34{word-spacing:6.613333pt;}
.ws137{word-spacing:6.629333pt;}
.wsa3{word-spacing:6.688000pt;}
.wse2{word-spacing:6.746667pt;}
.ws15f{word-spacing:6.805333pt;}
.ws120{word-spacing:6.864000pt;}
.ws26{word-spacing:6.869333pt;}
.wsa4{word-spacing:6.981333pt;}
.ws103{word-spacing:7.040000pt;}
.wsc0{word-spacing:7.098667pt;}
.ws145{word-spacing:7.157333pt;}
.ws4e{word-spacing:7.274667pt;}
.ws154{word-spacing:7.333333pt;}
.ws46{word-spacing:7.392000pt;}
.ws159{word-spacing:7.450667pt;}
.wsb7{word-spacing:7.509333pt;}
.ws11e{word-spacing:7.685333pt;}
.wsd{word-spacing:7.744000pt;}
.ws151{word-spacing:7.802667pt;}
.wscc{word-spacing:7.861333pt;}
.ws133{word-spacing:7.920000pt;}
.ws11a{word-spacing:7.978667pt;}
.wscf{word-spacing:8.037333pt;}
.ws45{word-spacing:8.096000pt;}
.wsd5{word-spacing:8.149333pt;}
.wsc1{word-spacing:8.213333pt;}
.ws4f{word-spacing:8.272000pt;}
.ws44{word-spacing:8.330667pt;}
.wsdf{word-spacing:8.389333pt;}
.ws50{word-spacing:8.405333pt;}
.ws12e{word-spacing:8.448000pt;}
.ws138{word-spacing:8.506667pt;}
.ws15b{word-spacing:8.624000pt;}
.ws4a{word-spacing:8.682667pt;}
.ws4b{word-spacing:8.741333pt;}
.ws30{word-spacing:8.746667pt;}
.ws17c{word-spacing:8.858667pt;}
.wsc5{word-spacing:8.917333pt;}
.ws9d{word-spacing:9.034667pt;}
.wsd4{word-spacing:9.088000pt;}
.ws79{word-spacing:9.093333pt;}
.ws9a{word-spacing:9.152000pt;}
.ws16e{word-spacing:9.386667pt;}
.wsc7{word-spacing:9.504000pt;}
.ws143{word-spacing:9.562667pt;}
.ws14c{word-spacing:9.621333pt;}
.wsbd{word-spacing:9.680000pt;}
.ws16b{word-spacing:9.797333pt;}
.wsb4{word-spacing:9.941333pt;}
.ws92{word-spacing:10.282667pt;}
.wsd1{word-spacing:10.325333pt;}
.wse6{word-spacing:10.384000pt;}
.ws115{word-spacing:10.442667pt;}
.wsbf{word-spacing:10.560000pt;}
.wse0{word-spacing:10.677333pt;}
.ws53{word-spacing:10.709333pt;}
.ws16d{word-spacing:10.853333pt;}
.wsb5{word-spacing:10.880000pt;}
.wsdd{word-spacing:10.970667pt;}
.ws17b{word-spacing:11.146667pt;}
.wsd0{word-spacing:11.306667pt;}
.wsc4{word-spacing:11.616000pt;}
.wsb{word-spacing:11.968000pt;}
.ws14a{word-spacing:12.202667pt;}
.ws13e{word-spacing:12.672000pt;}
.ws181{word-spacing:12.789333pt;}
.ws141{word-spacing:13.082667pt;}
.wsf8{word-spacing:13.258667pt;}
.ws140{word-spacing:13.317333pt;}
.ws146{word-spacing:13.669333pt;}
.ws124{word-spacing:13.781333pt;}
.ws135{word-spacing:13.845333pt;}
.ws169{word-spacing:13.904000pt;}
.ws112{word-spacing:14.373333pt;}
.wsdc{word-spacing:15.253333pt;}
.ws149{word-spacing:15.546667pt;}
.wsa2{word-spacing:17.072000pt;}
._d{margin-left:-474.912000pt;}
._f{margin-left:-248.160000pt;}
._8{margin-left:-9.540267pt;}
._14{margin-left:-7.096533pt;}
._10{margin-left:-5.517867pt;}
._7{margin-left:-4.388800pt;}
._0{margin-left:-3.344000pt;}
._3{margin-left:-1.907733pt;}
._2{margin-left:-0.896000pt;}
._a{width:0.910933pt;}
._4{width:1.941333pt;}
._1{width:3.344000pt;}
._11{width:4.337067pt;}
._6{width:5.608533pt;}
._9{width:6.970667pt;}
._13{width:8.181867pt;}
._c{width:9.284267pt;}
._12{width:11.013333pt;}
._15{width:12.725867pt;}
._16{width:13.794133pt;}
._b{width:20.010133pt;}
._5{width:21.653333pt;}
._e{width:1784.821333pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:44.000000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:96.000000pt;}
.y55{bottom:-23.296000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:0.042667pt;}
.y2b{bottom:18.380400pt;}
.y2a{bottom:29.048400pt;}
.y59{bottom:35.859200pt;}
.y29{bottom:39.716400pt;}
.y28{bottom:50.384400pt;}
.y5{bottom:59.133337pt;}
.y27{bottom:61.051067pt;}
.y84{bottom:64.109867pt;}
.y58{bottom:64.276533pt;}
.yb5{bottom:85.109333pt;}
.y54{bottom:85.109467pt;}
.y4{bottom:86.333337pt;}
.yef{bottom:89.376000pt;}
.y82{bottom:89.376133pt;}
.y175{bottom:94.433333pt;}
.yb4{bottom:97.109333pt;}
.y53{bottom:97.109467pt;}
.y81{bottom:97.109600pt;}
.yd1{bottom:101.376000pt;}
.yb3{bottom:109.109333pt;}
.y52{bottom:109.109467pt;}
.y80{bottom:109.109600pt;}
.y174{bottom:111.769333pt;}
.yee{bottom:113.376000pt;}
.y1b3{bottom:118.765333pt;}
.yb2{bottom:121.109333pt;}
.y7f{bottom:121.109600pt;}
.y21{bottom:123.790666pt;}
.y108{bottom:125.376000pt;}
.y51{bottom:125.376133pt;}
.y173{bottom:129.105333pt;}
.yd0{bottom:133.109333pt;}
.y50{bottom:133.109600pt;}
.y1b2{bottom:136.101333pt;}
.yb1{bottom:137.376000pt;}
.y7e{bottom:137.376267pt;}
.yb0{bottom:145.109333pt;}
.y4f{bottom:145.109600pt;}
.y7d{bottom:145.109733pt;}
.y172{bottom:146.441333pt;}
.yed{bottom:149.376000pt;}
.y1b1{bottom:153.437333pt;}
.yaf{bottom:157.109333pt;}
.y4e{bottom:157.109600pt;}
.y7c{bottom:157.109733pt;}
.y107{bottom:161.376000pt;}
.y171{bottom:163.777333pt;}
.y189{bottom:163.857333pt;}
.yae{bottom:169.109333pt;}
.y4d{bottom:169.109600pt;}
.y7b{bottom:169.109733pt;}
.y1b0{bottom:170.773333pt;}
.y106{bottom:173.376000pt;}
.y18{bottom:175.052000pt;}
.yad{bottom:181.109333pt;}
.y4c{bottom:181.109600pt;}
.y7a{bottom:181.109733pt;}
.y170{bottom:181.113333pt;}
.y188{bottom:181.193333pt;}
.ycf{bottom:185.376000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1af{bottom:188.109333pt;}
.y105{bottom:193.109333pt;}
.y79{bottom:193.109733pt;}
.yac{bottom:197.376000pt;}
.y4b{bottom:197.376267pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y16f{bottom:198.449333pt;}
.y187{bottom:198.529333pt;}
.yab{bottom:205.109333pt;}
.y4a{bottom:205.109733pt;}
.y1ae{bottom:205.445333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y104{bottom:209.376000pt;}
.y16e{bottom:215.785333pt;}
.y186{bottom:215.865333pt;}
.yce{bottom:217.109333pt;}
.y49{bottom:217.109733pt;}
.yaa{bottom:221.376000pt;}
.y1ad{bottom:222.781333pt;}
.ya9{bottom:229.109333pt;}
.y48{bottom:229.109733pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y103{bottom:231.873333pt;}
.y16d{bottom:233.121333pt;}
.y1c4{bottom:233.153333pt;}
.y14f{bottom:233.190667pt;}
.y185{bottom:233.201333pt;}
.y1ac{bottom:240.117333pt;}
.y11e{bottom:241.109333pt;}
.y47{bottom:241.109733pt;}
.yec{bottom:241.192000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ya8{bottom:245.376000pt;}
.y78{bottom:245.376400pt;}
.y102{bottom:249.209333pt;}
.y16c{bottom:250.457333pt;}
.y1c3{bottom:250.489333pt;}
.y14e{bottom:250.526667pt;}
.y184{bottom:250.537333pt;}
.ya7{bottom:253.109333pt;}
.y46{bottom:253.109733pt;}
.y77{bottom:253.109867pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1ab{bottom:257.453333pt;}
.yeb{bottom:258.528000pt;}
.ya6{bottom:265.109333pt;}
.y45{bottom:265.109733pt;}
.y76{bottom:265.109867pt;}
.y101{bottom:266.545333pt;}
.y16b{bottom:267.793333pt;}
.y1c2{bottom:267.825333pt;}
.y14d{bottom:267.862667pt;}
.y183{bottom:267.873333pt;}
.ycd{bottom:267.878667pt;}
.y1aa{bottom:274.789333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yea{bottom:275.864000pt;}
.y135{bottom:277.109333pt;}
.y44{bottom:277.109733pt;}
.y75{bottom:277.109867pt;}
.ya5{bottom:281.376000pt;}
.y100{bottom:283.878667pt;}
.y16a{bottom:285.129333pt;}
.y1c1{bottom:285.161333pt;}
.ycc{bottom:285.177333pt;}
.y14c{bottom:285.198667pt;}
.y182{bottom:285.209333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.ya4{bottom:289.109333pt;}
.y74{bottom:289.109867pt;}
.y1a9{bottom:292.125333pt;}
.y134{bottom:293.376000pt;}
.y43{bottom:293.376400pt;}
.ya3{bottom:301.109333pt;}
.y42{bottom:301.109867pt;}
.yff{bottom:301.201333pt;}
.y169{bottom:302.465333pt;}
.y1c0{bottom:302.497333pt;}
.ycb{bottom:302.513333pt;}
.ye9{bottom:302.528000pt;}
.y14b{bottom:302.534667pt;}
.y11d{bottom:302.542667pt;}
.y181{bottom:302.545333pt;}
.yf{bottom:309.452000pt;}
.y1a8{bottom:309.461333pt;}
.ya2{bottom:313.109333pt;}
.y41{bottom:313.109867pt;}
.yfe{bottom:318.537333pt;}
.y133{bottom:318.540000pt;}
.y168{bottom:319.801333pt;}
.y1bf{bottom:319.833333pt;}
.yca{bottom:319.849333pt;}
.ye8{bottom:319.864000pt;}
.y14a{bottom:319.870667pt;}
.y11c{bottom:319.878667pt;}
.y180{bottom:319.881333pt;}
.ya1{bottom:325.109333pt;}
.y40{bottom:325.109867pt;}
.y1a7{bottom:326.797333pt;}
.yfd{bottom:335.873333pt;}
.y132{bottom:335.876000pt;}
.y3f{bottom:337.109867pt;}
.y167{bottom:337.137333pt;}
.y11b{bottom:337.158667pt;}
.y17f{bottom:337.161333pt;}
.y1be{bottom:337.169333pt;}
.yc9{bottom:337.185333pt;}
.ye7{bottom:337.200000pt;}
.y149{bottom:337.206667pt;}
.ya0{bottom:341.376000pt;}
.ye{bottom:343.809333pt;}
.y1a6{bottom:344.133333pt;}
.y3e{bottom:349.109867pt;}
.yfc{bottom:353.209333pt;}
.y131{bottom:353.212000pt;}
.y9f{bottom:353.376000pt;}
.y166{bottom:354.473333pt;}
.y11a{bottom:354.494667pt;}
.y17e{bottom:354.497333pt;}
.y1bd{bottom:354.505333pt;}
.yc8{bottom:354.521333pt;}
.ye6{bottom:354.536000pt;}
.y148{bottom:354.542667pt;}
.y73{bottom:361.109867pt;}
.y1a5{bottom:361.469333pt;}
.yd{bottom:362.706666pt;}
.y9e{bottom:365.376000pt;}
.y3d{bottom:365.376533pt;}
.yfb{bottom:370.545333pt;}
.y130{bottom:370.548000pt;}
.y165{bottom:371.809333pt;}
.y119{bottom:371.830667pt;}
.y17d{bottom:371.833333pt;}
.y1bc{bottom:371.841333pt;}
.yc7{bottom:371.857333pt;}
.ye5{bottom:371.872000pt;}
.y147{bottom:371.878667pt;}
.y9d{bottom:373.109333pt;}
.y3c{bottom:373.109867pt;}
.y1a4{bottom:378.805333pt;}
.y3b{bottom:385.109867pt;}
.y12f{bottom:387.876000pt;}
.y164{bottom:389.145333pt;}
.y72{bottom:389.153333pt;}
.y118{bottom:389.166667pt;}
.y17c{bottom:389.169333pt;}
.y1bb{bottom:389.177333pt;}
.yc6{bottom:389.193333pt;}
.ye4{bottom:389.208000pt;}
.y146{bottom:389.209333pt;}
.y1a3{bottom:396.141333pt;}
.y3a{bottom:397.109867pt;}
.yfa{bottom:397.209333pt;}
.y12e{bottom:405.212000pt;}
.y163{bottom:406.481333pt;}
.y71{bottom:406.489333pt;}
.y117{bottom:406.502667pt;}
.y17b{bottom:406.505333pt;}
.y1ba{bottom:406.513333pt;}
.yc5{bottom:406.529333pt;}
.ye3{bottom:406.544000pt;}
.y9c{bottom:406.545333pt;}
.y39{bottom:410.443200pt;}
.y1a2{bottom:413.477333pt;}
.yf9{bottom:414.545333pt;}
.y12d{bottom:422.545333pt;}
.y162{bottom:423.817333pt;}
.y70{bottom:423.825333pt;}
.y116{bottom:423.838667pt;}
.y17a{bottom:423.841333pt;}
.y1b9{bottom:423.849333pt;}
.y145{bottom:423.857333pt;}
.yc4{bottom:423.865333pt;}
.y9b{bottom:423.881333pt;}
.y1a1{bottom:430.813333pt;}
.ye2{bottom:432.548000pt;}
.y38{bottom:435.278667pt;}
.y12c{bottom:439.876000pt;}
.y161{bottom:441.153333pt;}
.y115{bottom:441.174667pt;}
.y179{bottom:441.177333pt;}
.y1b8{bottom:441.185333pt;}
.y144{bottom:441.193333pt;}
.y9a{bottom:441.201333pt;}
.yf8{bottom:441.209333pt;}
.yc{bottom:446.990669pt;}
.y1a0{bottom:448.149333pt;}
.y6f{bottom:449.829333pt;}
.y37{bottom:452.612000pt;}
.y12b{bottom:457.212000pt;}
.y160{bottom:458.489333pt;}
.y114{bottom:458.510667pt;}
.y178{bottom:458.513333pt;}
.y1b7{bottom:458.521333pt;}
.y143{bottom:458.529333pt;}
.y99{bottom:458.537333pt;}
.yf7{bottom:458.545333pt;}
.yb{bottom:462.990669pt;}
.y19f{bottom:465.485333pt;}
.y36{bottom:469.942667pt;}
.y12a{bottom:474.540000pt;}
.y15f{bottom:475.825333pt;}
.y113{bottom:475.846667pt;}
.ye1{bottom:475.849333pt;}
.y1b6{bottom:475.857333pt;}
.yf6{bottom:475.862667pt;}
.y142{bottom:475.865333pt;}
.y98{bottom:475.873333pt;}
.ya{bottom:478.990666pt;}
.y19e{bottom:482.821333pt;}
.y35{bottom:487.278667pt;}
.y129{bottom:491.876000pt;}
.y15e{bottom:493.161333pt;}
.y6e{bottom:493.169333pt;}
.y112{bottom:493.182667pt;}
.ye0{bottom:493.185333pt;}
.y1b5{bottom:493.193333pt;}
.yf5{bottom:493.198667pt;}
.y141{bottom:493.201333pt;}
.y97{bottom:493.209333pt;}
.y9{bottom:494.990666pt;}
.y19d{bottom:500.157333pt;}
.y34{bottom:504.614667pt;}
.y128{bottom:509.212000pt;}
.y15d{bottom:510.497333pt;}
.y6d{bottom:510.505333pt;}
.y111{bottom:510.518667pt;}
.ydf{bottom:510.521333pt;}
.y1b4{bottom:510.529333pt;}
.yf4{bottom:510.534667pt;}
.y140{bottom:510.537333pt;}
.y96{bottom:510.545333pt;}
.y19c{bottom:517.493333pt;}
.y33{bottom:521.929333pt;}
.y127{bottom:526.532000pt;}
.y15c{bottom:527.833333pt;}
.y6c{bottom:527.841333pt;}
.y110{bottom:527.854667pt;}
.yde{bottom:527.857333pt;}
.yc3{bottom:527.865333pt;}
.yf3{bottom:527.870667pt;}
.y95{bottom:527.873333pt;}
.y19b{bottom:534.829333pt;}
.y32{bottom:539.265333pt;}
.y126{bottom:543.868000pt;}
.y15b{bottom:545.169333pt;}
.y6b{bottom:545.177333pt;}
.y10f{bottom:545.190667pt;}
.ydd{bottom:545.193333pt;}
.yc2{bottom:545.201333pt;}
.yf2{bottom:545.206667pt;}
.y94{bottom:545.209333pt;}
.y19a{bottom:552.165333pt;}
.y31{bottom:556.601333pt;}
.y125{bottom:561.204000pt;}
.y15a{bottom:562.505333pt;}
.y6a{bottom:562.513333pt;}
.y10e{bottom:562.526667pt;}
.ydc{bottom:562.529333pt;}
.yc1{bottom:562.537333pt;}
.yf1{bottom:562.542667pt;}
.y93{bottom:562.545333pt;}
.y199{bottom:569.501333pt;}
.y8{bottom:573.786667pt;}
.y30{bottom:573.937333pt;}
.y124{bottom:578.540000pt;}
.y159{bottom:579.841333pt;}
.y69{bottom:579.849333pt;}
.y13f{bottom:579.861333pt;}
.y10d{bottom:579.862667pt;}
.ydb{bottom:579.865333pt;}
.yc0{bottom:579.873333pt;}
.yf0{bottom:579.878667pt;}
.y92{bottom:579.881333pt;}
.y198{bottom:586.837333pt;}
.y2f{bottom:591.273333pt;}
.y7{bottom:592.685334pt;}
.y123{bottom:595.876000pt;}
.y158{bottom:597.177333pt;}
.y68{bottom:597.185333pt;}
.y13e{bottom:597.197333pt;}
.y10c{bottom:597.198667pt;}
.yda{bottom:597.201333pt;}
.y91{bottom:597.204000pt;}
.ybf{bottom:597.209333pt;}
.y197{bottom:604.173333pt;}
.y2e{bottom:608.609333pt;}
.y122{bottom:613.212000pt;}
.y157{bottom:614.513333pt;}
.y67{bottom:614.521333pt;}
.y13d{bottom:614.533333pt;}
.y10b{bottom:614.534667pt;}
.yd9{bottom:614.537333pt;}
.y90{bottom:614.540000pt;}
.ybe{bottom:614.545333pt;}
.y196{bottom:621.509333pt;}
.y2d{bottom:625.945333pt;}
.y121{bottom:630.548000pt;}
.y156{bottom:631.849333pt;}
.y66{bottom:631.857333pt;}
.ybd{bottom:631.862667pt;}
.y13c{bottom:631.869333pt;}
.y10a{bottom:631.870667pt;}
.yd8{bottom:631.873333pt;}
.y8f{bottom:631.876000pt;}
.y195{bottom:638.845333pt;}
.y2c{bottom:643.281333pt;}
.y6{bottom:645.598667pt;}
.y155{bottom:649.185333pt;}
.y65{bottom:649.193333pt;}
.ybc{bottom:649.198667pt;}
.y13b{bottom:649.205333pt;}
.y109{bottom:649.206667pt;}
.yd7{bottom:649.209333pt;}
.y8e{bottom:649.212000pt;}
.y194{bottom:656.181333pt;}
.y120{bottom:657.212000pt;}
.y154{bottom:666.521333pt;}
.y64{bottom:666.529333pt;}
.ybb{bottom:666.534667pt;}
.y13a{bottom:666.541333pt;}
.y8d{bottom:666.542667pt;}
.yd6{bottom:666.545333pt;}
.y3{bottom:668.977329pt;}
.y193{bottom:673.517333pt;}
.y11f{bottom:674.548000pt;}
.y26{bottom:678.706667pt;}
.y153{bottom:683.857333pt;}
.y63{bottom:683.865333pt;}
.y177{bottom:683.868000pt;}
.yba{bottom:683.870667pt;}
.y139{bottom:683.877333pt;}
.y8c{bottom:683.878667pt;}
.yd5{bottom:683.881333pt;}
.y192{bottom:690.853333pt;}
.y25{bottom:696.042667pt;}
.y152{bottom:701.193333pt;}
.y62{bottom:701.201333pt;}
.y176{bottom:701.204000pt;}
.yb9{bottom:701.206667pt;}
.y8b{bottom:701.212000pt;}
.y191{bottom:708.189333pt;}
.y138{bottom:709.881333pt;}
.y151{bottom:718.529333pt;}
.y61{bottom:718.537333pt;}
.yd4{bottom:718.540000pt;}
.y8a{bottom:718.542667pt;}
.y190{bottom:725.525333pt;}
.y24{bottom:734.709333pt;}
.y150{bottom:735.865333pt;}
.y60{bottom:735.873333pt;}
.yd3{bottom:735.876000pt;}
.y89{bottom:735.878667pt;}
.y18f{bottom:742.861333pt;}
.yb8{bottom:753.201333pt;}
.y137{bottom:753.204000pt;}
.y88{bottom:753.206667pt;}
.y5f{bottom:753.209333pt;}
.yd2{bottom:753.212000pt;}
.y18e{bottom:760.197333pt;}
.yb7{bottom:770.537333pt;}
.y136{bottom:770.540000pt;}
.y87{bottom:770.542667pt;}
.y5e{bottom:770.545333pt;}
.y18d{bottom:777.533333pt;}
.y2{bottom:781.661334pt;}
.y23{bottom:782.709333pt;}
.yb6{bottom:787.873333pt;}
.y5d{bottom:787.876000pt;}
.y86{bottom:787.878667pt;}
.y18c{bottom:794.869333pt;}
.y85{bottom:805.209333pt;}
.y5c{bottom:805.212000pt;}
.y18b{bottom:812.205333pt;}
.y5b{bottom:822.545333pt;}
.y22{bottom:830.709333pt;}
.y18a{bottom:838.209333pt;}
.y5a{bottom:839.881333pt;}
.y1{bottom:859.312000pt;}
.y83{bottom:868.505333pt;}
.y57{bottom:868.772000pt;}
.h15{height:23.031250pt;}
.h14{height:27.488000pt;}
.h7{height:28.560000pt;}
.h12{height:31.317333pt;}
.hd{height:32.069333pt;}
.h13{height:36.650667pt;}
.h6{height:40.800000pt;}
.h17{height:41.301333pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.he{height:50.394667pt;}
.h18{height:50.453333pt;}
.hb{height:58.842667pt;}
.h25{height:61.262667pt;}
.h11{height:61.273333pt;}
.h10{height:61.284000pt;}
.h1a{height:61.294667pt;}
.h1b{height:61.305333pt;}
.h1c{height:61.316000pt;}
.h1d{height:61.326667pt;}
.hf{height:61.337333pt;}
.h21{height:61.342667pt;}
.h22{height:61.358667pt;}
.h1f{height:61.390667pt;}
.h1e{height:61.412000pt;}
.h24{height:61.476000pt;}
.h20{height:61.486667pt;}
.h19{height:61.508000pt;}
.h23{height:61.710667pt;}
.h5{height:69.360000pt;}
.hc{height:69.488000pt;}
.ha{height:96.288000pt;}
.h4{height:105.826671pt;}
.h16{height:929.733333pt;}
.h8{height:929.818667pt;}
.h9{height:930.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w5{width:646.266800pt;}
.w3{width:646.352000pt;}
.w4{width:646.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:13.375867pt;}
.x9{left:83.175867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:99.175867pt;}
.xc{left:109.600000pt;}
.xe{left:121.642533pt;}
.xd{left:125.646933pt;}
.x6{left:143.075200pt;}
.x5{left:151.475200pt;}
.x4{left:180.874667pt;}
.x7{left:209.411200pt;}
.x8{left:249.358267pt;}
.x3{left:404.408000pt;}
.xf{left:512.726533pt;}
}




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