
    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_1a9fff17d255c7462a1e7e89.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_fc345efd1163ff31cf16e77d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090000;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_976fed3b0d2d75f555f74987.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963867;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_fe5c97ee8c47b6073b2630b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.801270;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_5328ad1e21c7013d4e8d8243.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_e900e94d48cec69c323696f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_892a10c02315d90385a60095.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.073000;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_588b155e0edfaf79e299b04b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904000;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_52308808c26c456989d52d1a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_5948163946f482e6f5620406.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-3.648000px;}
.lsd{letter-spacing:-2.970000px;}
.ls13{letter-spacing:-0.726000px;}
.ls10{letter-spacing:-0.660000px;}
.ls11{letter-spacing:-0.594000px;}
.lsf{letter-spacing:-0.528000px;}
.ls5{letter-spacing:-0.462000px;}
.ls8{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.396000px;}
.ls2{letter-spacing:-0.330000px;}
.ls4{letter-spacing:-0.264000px;}
.lse{letter-spacing:-0.198000px;}
.ls1{letter-spacing:-0.132000px;}
.ls6{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.330000px;}
.lsb{letter-spacing:0.912000px;}
.lsa{letter-spacing:1.152000px;}
.lsc{letter-spacing:8.112000px;}
.ls9{letter-spacing:10.416000px;}
.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;}
}
.ws10e{word-spacing:-16.830000px;}
.ws1{word-spacing:-16.500000px;}
.ws10a{word-spacing:-15.906000px;}
.wsf1{word-spacing:-12.042000px;}
.wscf{word-spacing:-12.000000px;}
.wsc3{word-spacing:-8.352000px;}
.ws5b{word-spacing:-8.250000px;}
.ws6{word-spacing:-8.184000px;}
.ws10{word-spacing:-8.052000px;}
.ws10b{word-spacing:-7.920000px;}
.ws57{word-spacing:-7.854000px;}
.ws76{word-spacing:-7.590000px;}
.wsb2{word-spacing:-7.524000px;}
.ws47{word-spacing:-7.458000px;}
.ws110{word-spacing:-7.326000px;}
.wsa{word-spacing:-7.260000px;}
.ws83{word-spacing:-7.194000px;}
.wsf9{word-spacing:-7.062000px;}
.ws10c{word-spacing:-6.996000px;}
.ws9e{word-spacing:-6.930000px;}
.ws82{word-spacing:-6.798000px;}
.ws71{word-spacing:-6.666000px;}
.wsd0{word-spacing:-6.600000px;}
.ws61{word-spacing:-6.534000px;}
.ws3{word-spacing:-6.468000px;}
.ws102{word-spacing:-6.402000px;}
.ws4b{word-spacing:-6.336000px;}
.wse5{word-spacing:-6.270000px;}
.ws4c{word-spacing:-6.204000px;}
.wse{word-spacing:-6.072000px;}
.wsa9{word-spacing:-6.006000px;}
.wsbb{word-spacing:-5.940000px;}
.ws81{word-spacing:-5.874000px;}
.wsa7{word-spacing:-5.742000px;}
.ws46{word-spacing:-5.676000px;}
.ws6b{word-spacing:-5.610000px;}
.wsb{word-spacing:-5.544000px;}
.ws115{word-spacing:-5.478000px;}
.wsa2{word-spacing:-5.412000px;}
.ws113{word-spacing:-5.346000px;}
.ws101{word-spacing:-5.280000px;}
.wsa6{word-spacing:-5.214000px;}
.wsda{word-spacing:-5.184000px;}
.wsae{word-spacing:-5.082000px;}
.ws6d{word-spacing:-5.016000px;}
.wsff{word-spacing:-4.950000px;}
.ws43{word-spacing:-4.884000px;}
.wscd{word-spacing:-4.818000px;}
.ws53{word-spacing:-4.752000px;}
.ws41{word-spacing:-4.686000px;}
.ws85{word-spacing:-4.620000px;}
.ws2e{word-spacing:-4.554000px;}
.wsb8{word-spacing:-4.488000px;}
.wsc2{word-spacing:-4.422000px;}
.ws38{word-spacing:-4.356000px;}
.ws21{word-spacing:-4.290000px;}
.wsf{word-spacing:-4.224000px;}
.ws17{word-spacing:-4.158000px;}
.ws3e{word-spacing:-4.092000px;}
.ws9b{word-spacing:-4.026000px;}
.ws7b{word-spacing:-3.960000px;}
.ws9c{word-spacing:-3.894000px;}
.ws97{word-spacing:-3.828000px;}
.ws68{word-spacing:-3.762000px;}
.wsa5{word-spacing:-3.696000px;}
.ws7d{word-spacing:-3.630000px;}
.wsa4{word-spacing:-3.564000px;}
.wsde{word-spacing:-3.552000px;}
.ws80{word-spacing:-3.498000px;}
.wsbc{word-spacing:-3.432000px;}
.ws18{word-spacing:-3.366000px;}
.wsdd{word-spacing:-3.312000px;}
.ws73{word-spacing:-3.300000px;}
.ws3f{word-spacing:-3.234000px;}
.ws9f{word-spacing:-3.168000px;}
.ws7{word-spacing:-3.102000px;}
.ws96{word-spacing:-3.036000px;}
.ws3d{word-spacing:-2.970000px;}
.ws5e{word-spacing:-2.904000px;}
.ws51{word-spacing:-2.838000px;}
.ws70{word-spacing:-2.772000px;}
.ws35{word-spacing:-2.706000px;}
.ws52{word-spacing:-2.664000px;}
.ws79{word-spacing:-2.640000px;}
.wsca{word-spacing:-2.574000px;}
.wsf5{word-spacing:-2.508000px;}
.ws36{word-spacing:-2.442000px;}
.ws6a{word-spacing:-2.376000px;}
.wsba{word-spacing:-2.310000px;}
.ws55{word-spacing:-2.244000px;}
.wsce{word-spacing:-2.178000px;}
.ws64{word-spacing:-2.112000px;}
.ws4d{word-spacing:-2.046000px;}
.ws2d{word-spacing:-1.980000px;}
.ws67{word-spacing:-1.914000px;}
.ws62{word-spacing:-1.848000px;}
.ws9a{word-spacing:-1.782000px;}
.ws48{word-spacing:-1.716000px;}
.ws16{word-spacing:-1.650000px;}
.ws34{word-spacing:-1.584000px;}
.wsc9{word-spacing:-1.518000px;}
.ws60{word-spacing:-1.452000px;}
.wsb7{word-spacing:-1.386000px;}
.ws28{word-spacing:-1.320000px;}
.ws40{word-spacing:-1.254000px;}
.ws72{word-spacing:-1.188000px;}
.wsf0{word-spacing:-1.122000px;}
.ws100{word-spacing:-1.056000px;}
.ws69{word-spacing:-0.990000px;}
.ws54{word-spacing:-0.924000px;}
.ws6e{word-spacing:-0.858000px;}
.ws7a{word-spacing:-0.792000px;}
.ws5c{word-spacing:-0.726000px;}
.wsaa{word-spacing:-0.660000px;}
.ws94{word-spacing:-0.594000px;}
.wsb4{word-spacing:-0.528000px;}
.ws9{word-spacing:-0.462000px;}
.wsaf{word-spacing:-0.396000px;}
.ws6f{word-spacing:-0.330000px;}
.ws30{word-spacing:-0.264000px;}
.ws5d{word-spacing:-0.198000px;}
.wsd9{word-spacing:-0.192000px;}
.ws5f{word-spacing:-0.132000px;}
.wsb0{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:0.066000px;}
.ws7e{word-spacing:0.132000px;}
.wsfe{word-spacing:0.198000px;}
.ws4{word-spacing:0.264000px;}
.ws9d{word-spacing:0.330000px;}
.ws7c{word-spacing:0.396000px;}
.ws8a{word-spacing:0.462000px;}
.ws8{word-spacing:0.528000px;}
.ws1e{word-spacing:0.594000px;}
.ws63{word-spacing:0.660000px;}
.ws2{word-spacing:0.726000px;}
.ws2a{word-spacing:0.792000px;}
.ws95{word-spacing:0.858000px;}
.ws93{word-spacing:0.924000px;}
.ws3c{word-spacing:0.990000px;}
.wsd6{word-spacing:1.008000px;}
.wsd{word-spacing:1.056000px;}
.wse3{word-spacing:1.122000px;}
.wsa8{word-spacing:1.188000px;}
.ws15{word-spacing:1.254000px;}
.ws24{word-spacing:1.320000px;}
.ws1b{word-spacing:1.386000px;}
.ws89{word-spacing:1.452000px;}
.ws29{word-spacing:1.518000px;}
.ws26{word-spacing:1.584000px;}
.ws5a{word-spacing:1.650000px;}
.ws98{word-spacing:1.716000px;}
.ws6c{word-spacing:1.782000px;}
.ws4f{word-spacing:1.848000px;}
.ws4e{word-spacing:1.914000px;}
.wsa1{word-spacing:1.980000px;}
.ws45{word-spacing:2.046000px;}
.ws59{word-spacing:2.112000px;}
.wsb9{word-spacing:2.178000px;}
.ws8f{word-spacing:2.244000px;}
.ws90{word-spacing:2.310000px;}
.wscb{word-spacing:2.442000px;}
.ws27{word-spacing:2.508000px;}
.ws4a{word-spacing:2.574000px;}
.ws31{word-spacing:2.640000px;}
.ws2b{word-spacing:2.706000px;}
.wsc8{word-spacing:2.772000px;}
.ws87{word-spacing:2.838000px;}
.ws56{word-spacing:2.904000px;}
.ws74{word-spacing:2.970000px;}
.ws13{word-spacing:3.036000px;}
.wsc{word-spacing:3.102000px;}
.ws25{word-spacing:3.168000px;}
.ws3b{word-spacing:3.234000px;}
.ws49{word-spacing:3.300000px;}
.ws3a{word-spacing:3.366000px;}
.ws2f{word-spacing:3.432000px;}
.ws1c{word-spacing:3.498000px;}
.wsf7{word-spacing:3.564000px;}
.ws32{word-spacing:3.630000px;}
.wsfd{word-spacing:3.696000px;}
.ws84{word-spacing:3.762000px;}
.wsf6{word-spacing:3.894000px;}
.wse6{word-spacing:3.960000px;}
.ws11{word-spacing:4.026000px;}
.ws1a{word-spacing:4.092000px;}
.ws88{word-spacing:4.158000px;}
.ws107{word-spacing:4.224000px;}
.ws44{word-spacing:4.290000px;}
.wsd1{word-spacing:4.356000px;}
.wse9{word-spacing:4.422000px;}
.wse0{word-spacing:4.464000px;}
.ws7f{word-spacing:4.488000px;}
.ws114{word-spacing:4.554000px;}
.ws66{word-spacing:4.620000px;}
.wsef{word-spacing:4.686000px;}
.ws22{word-spacing:4.752000px;}
.ws78{word-spacing:4.818000px;}
.wsbd{word-spacing:4.884000px;}
.wsad{word-spacing:4.950000px;}
.ws23{word-spacing:5.016000px;}
.wseb{word-spacing:5.148000px;}
.ws65{word-spacing:5.214000px;}
.ws8d{word-spacing:5.280000px;}
.ws42{word-spacing:5.346000px;}
.ws103{word-spacing:5.412000px;}
.ws5{word-spacing:5.478000px;}
.ws20{word-spacing:5.544000px;}
.wsf8{word-spacing:5.610000px;}
.ws8b{word-spacing:5.676000px;}
.wsa3{word-spacing:5.742000px;}
.ws8e{word-spacing:5.808000px;}
.ws106{word-spacing:5.874000px;}
.ws104{word-spacing:5.940000px;}
.wsab{word-spacing:6.006000px;}
.ws39{word-spacing:6.072000px;}
.wsb1{word-spacing:6.138000px;}
.wsf2{word-spacing:6.204000px;}
.ws1f{word-spacing:6.336000px;}
.wsfb{word-spacing:6.402000px;}
.ws99{word-spacing:6.468000px;}
.ws92{word-spacing:6.534000px;}
.wsec{word-spacing:6.600000px;}
.wsb3{word-spacing:6.666000px;}
.wsdc{word-spacing:6.768000px;}
.ws86{word-spacing:6.864000px;}
.wsa0{word-spacing:6.930000px;}
.wsb5{word-spacing:6.996000px;}
.ws50{word-spacing:7.062000px;}
.ws8c{word-spacing:7.128000px;}
.ws58{word-spacing:7.326000px;}
.ws2c{word-spacing:7.392000px;}
.wscc{word-spacing:7.458000px;}
.ws1d{word-spacing:7.524000px;}
.ws33{word-spacing:7.590000px;}
.ws75{word-spacing:7.656000px;}
.ws19{word-spacing:7.722000px;}
.ws105{word-spacing:7.854000px;}
.wse4{word-spacing:7.986000px;}
.wse1{word-spacing:8.016000px;}
.ws109{word-spacing:8.118000px;}
.ws77{word-spacing:8.316000px;}
.ws37{word-spacing:8.844000px;}
.ws112{word-spacing:8.976000px;}
.wsb6{word-spacing:9.042000px;}
.wsac{word-spacing:9.108000px;}
.wsf4{word-spacing:9.306000px;}
.wsd5{word-spacing:9.408000px;}
.ws108{word-spacing:9.570000px;}
.ws14{word-spacing:9.636000px;}
.wsfc{word-spacing:9.900000px;}
.wsea{word-spacing:10.032000px;}
.wsc1{word-spacing:10.098000px;}
.ws10f{word-spacing:10.230000px;}
.ws91{word-spacing:11.088000px;}
.wsd7{word-spacing:11.280000px;}
.wsdb{word-spacing:12.000000px;}
.wse2{word-spacing:12.012000px;}
.ws10d{word-spacing:12.276000px;}
.wsed{word-spacing:12.408000px;}
.wsf3{word-spacing:12.672000px;}
.wsfa{word-spacing:14.454000px;}
.ws111{word-spacing:15.642000px;}
.wse8{word-spacing:18.414000px;}
.wse7{word-spacing:20.262000px;}
.wsee{word-spacing:23.892000px;}
.wsdf{word-spacing:32.496000px;}
.wsd8{word-spacing:41.712000px;}
.wsc4{word-spacing:76.944000px;}
.wsc6{word-spacing:100.944000px;}
.wsd3{word-spacing:156.768000px;}
.wsd2{word-spacing:240.288000px;}
.wsd4{word-spacing:259.824000px;}
.wsc5{word-spacing:362.736000px;}
.wsc7{word-spacing:471.360000px;}
.wsbe{word-spacing:569.328000px;}
.wsbf{word-spacing:581.328000px;}
.wsc0{word-spacing:1004.256000px;}
._5f{margin-left:-32.280000px;}
._57{margin-left:-27.060000px;}
._14{margin-left:-23.148000px;}
._5{margin-left:-21.870000px;}
._42{margin-left:-20.616000px;}
._15{margin-left:-18.978000px;}
._8{margin-left:-17.910000px;}
._7{margin-left:-16.380000px;}
._b{margin-left:-14.400000px;}
._12{margin-left:-13.398000px;}
._9{margin-left:-12.198000px;}
._11{margin-left:-10.002000px;}
._c{margin-left:-8.668800px;}
._4e{margin-left:-7.548000px;}
._a{margin-left:-6.123600px;}
._2{margin-left:-4.554000px;}
._3{margin-left:-2.574000px;}
._0{margin-left:-1.296000px;}
._1{width:1.134000px;}
._6{width:2.345400px;}
._13{width:3.450000px;}
._60{width:5.394000px;}
._5a{width:7.729200px;}
._5c{width:10.032000px;}
._61{width:12.266400px;}
._4{width:16.500000px;}
._5d{width:18.223800px;}
._5b{width:28.254600px;}
._5e{width:33.079200px;}
._59{width:50.340000px;}
._55{width:55.068000px;}
._56{width:57.126000px;}
._58{width:63.558000px;}
._53{width:65.706000px;}
._45{width:67.824000px;}
._54{width:69.087600px;}
._d{width:70.554000px;}
._51{width:71.610000px;}
._f{width:73.392000px;}
._52{width:75.108000px;}
._10{width:77.010000px;}
._e{width:78.438600px;}
._3f{width:84.480000px;}
._1d{width:86.160000px;}
._40{width:87.600000px;}
._1e{width:89.554800px;}
._3e{width:92.304000px;}
._23{width:96.816000px;}
._24{width:100.944000px;}
._1c{width:101.952000px;}
._21{width:104.064000px;}
._1b{width:105.408000px;}
._29{width:108.816000px;}
._25{width:111.600000px;}
._22{width:112.608000px;}
._28{width:116.064000px;}
._31{width:120.816000px;}
._2c{width:124.608000px;}
._2f{width:128.064000px;}
._34{width:136.032000px;}
._41{width:154.656000px;}
._1f{width:155.760000px;}
._30{width:160.224000px;}
._1a{width:170.688000px;}
._26{width:178.656000px;}
._32{width:190.992000px;}
._2d{width:202.656000px;}
._4b{width:226.560000px;}
._4a{width:239.760000px;}
._4c{width:244.032000px;}
._4d{width:247.998000px;}
._33{width:249.456000px;}
._49{width:259.710000px;}
._3d{width:261.456000px;}
._3a{width:269.424000px;}
._20{width:277.104000px;}
._2e{width:279.744000px;}
._3c{width:281.424000px;}
._46{width:285.378000px;}
._44{width:314.448000px;}
._27{width:359.808000px;}
._48{width:365.136000px;}
._47{width:377.184000px;}
._17{width:389.040000px;}
._37{width:398.400000px;}
._4f{width:408.384000px;}
._2b{width:411.678000px;}
._38{width:418.368000px;}
._39{width:421.488000px;}
._2a{width:425.136000px;}
._35{width:437.136000px;}
._36{width:445.488000px;}
._16{width:609.168000px;}
._50{width:621.984000px;}
._43{width:724.224000px;}
._3b{width:726.528000px;}
._18{width:826.128000px;}
._19{width:838.128000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:70.609200px;}
.y5{bottom:90.367050px;}
.y4{bottom:99.367050px;}
.y3{bottom:108.367050px;}
.y2{bottom:117.367050px;}
.y25d{bottom:130.393500px;}
.y1f{bottom:131.105400px;}
.y146{bottom:131.140500px;}
.y225{bottom:133.299600px;}
.y109{bottom:136.831800px;}
.y242{bottom:139.718700px;}
.y1ee{bottom:139.891950px;}
.y9b{bottom:140.466000px;}
.y44{bottom:140.485800px;}
.y20a{bottom:140.524800px;}
.ye4{bottom:140.553300px;}
.y2d7{bottom:142.129500px;}
.yd1{bottom:142.690500px;}
.y2cc{bottom:145.086000px;}
.yf9{bottom:146.415000px;}
.y25c{bottom:151.398000px;}
.y145{bottom:152.145000px;}
.y156{bottom:153.157500px;}
.y224{bottom:154.304100px;}
.y108{bottom:157.836300px;}
.y241{bottom:160.723200px;}
.y1ed{bottom:160.896450px;}
.y68{bottom:161.454000px;}
.y9a{bottom:161.470500px;}
.y43{bottom:161.490300px;}
.y209{bottom:161.529300px;}
.ye3{bottom:161.557800px;}
.y7a{bottom:161.569800px;}
.y327{bottom:161.607000px;}
.y1b8{bottom:162.036300px;}
.y194{bottom:162.705600px;}
.y2d6{bottom:163.134000px;}
.yd0{bottom:163.695000px;}
.y2cb{bottom:166.090500px;}
.yf8{bottom:167.419500px;}
.y2b5{bottom:168.735000px;}
.y27c{bottom:170.238300px;}
.y25b{bottom:172.402500px;}
.y144{bottom:173.149500px;}
.y155{bottom:174.162000px;}
.y223{bottom:175.308600px;}
.y193{bottom:178.833600px;}
.y107{bottom:178.840800px;}
.y240{bottom:181.727700px;}
.y1ec{bottom:181.900950px;}
.y67{bottom:182.458500px;}
.y99{bottom:182.475000px;}
.y42{bottom:182.494800px;}
.y208{bottom:182.533800px;}
.ye2{bottom:182.562300px;}
.y79{bottom:182.574300px;}
.y326{bottom:182.611500px;}
.y1b7{bottom:183.040800px;}
.y2d5{bottom:184.138500px;}
.ycf{bottom:184.699500px;}
.y122{bottom:185.180100px;}
.y1e{bottom:187.091400px;}
.y2ca{bottom:187.095000px;}
.yf7{bottom:188.424000px;}
.y2b4{bottom:189.739500px;}
.y312{bottom:189.784500px;}
.y27b{bottom:191.242800px;}
.y192{bottom:193.233600px;}
.y25a{bottom:193.407000px;}
.y24e{bottom:193.632000px;}
.y1d9{bottom:193.902900px;}
.y143{bottom:194.154000px;}
.y154{bottom:195.166500px;}
.y106{bottom:199.845300px;}
.y31a{bottom:200.575500px;}
.y23f{bottom:202.732200px;}
.y2f5{bottom:202.846050px;}
.y1eb{bottom:202.905450px;}
.y222{bottom:203.061600px;}
.y16b{bottom:203.308500px;}
.y66{bottom:203.463000px;}
.y98{bottom:203.479500px;}
.y41{bottom:203.499300px;}
.y207{bottom:203.538300px;}
.ye1{bottom:203.566800px;}
.y325{bottom:203.616000px;}
.y1b6{bottom:204.045300px;}
.y2d4{bottom:205.143000px;}
.yce{bottom:205.704000px;}
.y121{bottom:206.184600px;}
.y191{bottom:207.633600px;}
.y1d{bottom:208.095900px;}
.y2c9{bottom:208.099500px;}
.yf6{bottom:209.428500px;}
.y2b3{bottom:210.744000px;}
.y311{bottom:210.789000px;}
.y27a{bottom:212.247300px;}
.y259{bottom:214.411500px;}
.y24d{bottom:214.636500px;}
.y1d8{bottom:214.907400px;}
.y290{bottom:215.132100px;}
.y142{bottom:215.158500px;}
.y153{bottom:216.171000px;}
.y105{bottom:220.849800px;}
.y319{bottom:221.580000px;}
.y23e{bottom:223.736700px;}
.y2f4{bottom:223.850550px;}
.y1ea{bottom:223.909950px;}
.y16a{bottom:224.313000px;}
.y65{bottom:224.467500px;}
.y97{bottom:224.484000px;}
.y40{bottom:224.503800px;}
.y206{bottom:224.542800px;}
.y78{bottom:224.566800px;}
.ye0{bottom:224.571300px;}
.y324{bottom:224.620500px;}
.y1b5{bottom:225.049800px;}
.y2d3{bottom:226.147500px;}
.ycd{bottom:226.708500px;}
.y120{bottom:227.189100px;}
.y1c{bottom:229.100400px;}
.y2c8{bottom:229.104000px;}
.y190{bottom:230.133600px;}
.yf5{bottom:230.433000px;}
.y2b2{bottom:231.748500px;}
.y279{bottom:233.251800px;}
.y258{bottom:235.416000px;}
.y24c{bottom:235.641000px;}
.y1d7{bottom:235.911900px;}
.y28f{bottom:236.136600px;}
.y141{bottom:236.163000px;}
.y152{bottom:237.175500px;}
.y104{bottom:241.854300px;}
.y310{bottom:242.584500px;}
.y18f{bottom:244.533600px;}
.y23d{bottom:244.741200px;}
.y2f3{bottom:244.855050px;}
.y169{bottom:245.317500px;}
.y64{bottom:245.472000px;}
.y96{bottom:245.488500px;}
.y3f{bottom:245.508300px;}
.y205{bottom:245.547300px;}
.y77{bottom:245.571300px;}
.ydf{bottom:245.575800px;}
.y221{bottom:245.598600px;}
.y323{bottom:245.625000px;}
.y1b4{bottom:246.054300px;}
.y2d2{bottom:247.152000px;}
.ycc{bottom:247.713000px;}
.y11f{bottom:248.193600px;}
.y1b{bottom:250.104900px;}
.y2c7{bottom:250.108500px;}
.yf4{bottom:251.437500px;}
.y2b1{bottom:252.753000px;}
.y278{bottom:254.256300px;}
.y257{bottom:256.420500px;}
.y24b{bottom:256.645500px;}
.y1d6{bottom:256.916400px;}
.y28e{bottom:257.141100px;}
.y140{bottom:257.167500px;}
.y151{bottom:258.180000px;}
.y103{bottom:262.858800px;}
.y30f{bottom:263.589000px;}
.y23c{bottom:265.745700px;}
.y1e9{bottom:265.905150px;}
.y168{bottom:266.322000px;}
.y63{bottom:266.476500px;}
.y95{bottom:266.493000px;}
.y3e{bottom:266.512800px;}
.y204{bottom:266.551800px;}
.y76{bottom:266.575800px;}
.yde{bottom:266.580300px;}
.y220{bottom:266.603100px;}
.y18e{bottom:267.033600px;}
.y1b3{bottom:267.058800px;}
.y2d1{bottom:268.156500px;}
.ycb{bottom:268.717500px;}
.y11e{bottom:269.198100px;}
.y1a{bottom:271.109400px;}
.y2c6{bottom:271.113000px;}
.yf3{bottom:272.442000px;}
.y2b0{bottom:273.757500px;}
.y318{bottom:274.380000px;}
.y277{bottom:275.260800px;}
.y2f2{bottom:276.650550px;}
.y256{bottom:277.425000px;}
.y24a{bottom:277.650000px;}
.y1d5{bottom:277.920900px;}
.y28d{bottom:278.145600px;}
.y13f{bottom:278.172000px;}
.y150{bottom:279.184500px;}
.y18d{bottom:281.433600px;}
.y102{bottom:283.863300px;}
.y30e{bottom:284.593500px;}
.y322{bottom:284.625000px;}
.y23b{bottom:286.750200px;}
.y167{bottom:287.326500px;}
.y62{bottom:287.481000px;}
.y94{bottom:287.497500px;}
.y3d{bottom:287.517300px;}
.y75{bottom:287.580300px;}
.ydd{bottom:287.584800px;}
.y21f{bottom:287.607600px;}
.y1b2{bottom:288.063300px;}
.y2d0{bottom:289.161000px;}
.yca{bottom:289.722000px;}
.y281{bottom:289.752000px;}
.y11d{bottom:290.202600px;}
.y19{bottom:292.113900px;}
.y2c5{bottom:292.117500px;}
.yf2{bottom:293.446500px;}
.y2af{bottom:294.762000px;}
.y2a0{bottom:294.997500px;}
.y317{bottom:295.384500px;}
.y18c{bottom:295.833600px;}
.y276{bottom:296.265300px;}
.y2f1{bottom:297.655050px;}
.y249{bottom:298.654500px;}
.y1d4{bottom:298.925400px;}
.y28c{bottom:299.150100px;}
.y13e{bottom:299.176500px;}
.y14f{bottom:300.189000px;}
.y101{bottom:304.867800px;}
.y23a{bottom:307.754700px;}
.yba{bottom:307.769700px;}
.y1e8{bottom:307.846650px;}
.y166{bottom:308.331000px;}
.y61{bottom:308.485500px;}
.y93{bottom:308.502000px;}
.y3c{bottom:308.521800px;}
.y203{bottom:308.544300px;}
.y74{bottom:308.584800px;}
.ydc{bottom:308.589300px;}
.y21e{bottom:308.612100px;}
.y1b1{bottom:309.067800px;}
.y2cf{bottom:310.165500px;}
.yc9{bottom:310.726500px;}
.y280{bottom:310.756500px;}
.y11c{bottom:311.207100px;}
.y18{bottom:313.118400px;}
.y2c4{bottom:313.122000px;}
.yf1{bottom:314.451000px;}
.y2ae{bottom:315.766500px;}
.y29f{bottom:316.002000px;}
.y30d{bottom:316.389000px;}
.y275{bottom:317.269800px;}
.y18b{bottom:318.333600px;}
.y2f0{bottom:318.659550px;}
.y1d3{bottom:319.929900px;}
.y28b{bottom:320.154600px;}
.y13d{bottom:320.181000px;}
.y14e{bottom:321.193500px;}
.y100{bottom:325.872300px;}
.y239{bottom:328.759200px;}
.yb9{bottom:328.774200px;}
.y1e7{bottom:328.851150px;}
.y165{bottom:329.335500px;}
.y60{bottom:329.490000px;}
.y92{bottom:329.506500px;}
.y3b{bottom:329.526300px;}
.y202{bottom:329.548800px;}
.y73{bottom:329.589300px;}
.ydb{bottom:329.593800px;}
.y21d{bottom:329.616600px;}
.y1b0{bottom:330.072300px;}
.y2ce{bottom:331.170000px;}
.yc8{bottom:331.731000px;}
.y27f{bottom:331.761000px;}
.y11b{bottom:332.211600px;}
.y2c3{bottom:334.126500px;}
.yf0{bottom:335.455500px;}
.y2ad{bottom:336.771000px;}
.y29e{bottom:337.006500px;}
.y30c{bottom:337.393500px;}
.y18a{bottom:340.930500px;}
.y1d2{bottom:340.934400px;}
.y13c{bottom:341.185500px;}
.y14d{bottom:342.198000px;}
.yff{bottom:346.876800px;}
.y17{bottom:347.618400px;}
.y238{bottom:349.763700px;}
.yb8{bottom:349.778700px;}
.y1e6{bottom:349.855650px;}
.y164{bottom:350.340000px;}
.y2ef{bottom:350.455050px;}
.y5f{bottom:350.494500px;}
.y91{bottom:350.511000px;}
.y3a{bottom:350.530800px;}
.y201{bottom:350.553300px;}
.y72{bottom:350.593800px;}
.yda{bottom:350.598300px;}
.y21c{bottom:350.621100px;}
.y1af{bottom:351.076800px;}
.yc7{bottom:352.735500px;}
.y27e{bottom:352.765500px;}
.y11a{bottom:353.216100px;}
.y2c2{bottom:355.131000px;}
.yef{bottom:356.460000px;}
.y2ac{bottom:357.775500px;}
.y29d{bottom:358.011000px;}
.y321{bottom:358.398000px;}
.y274{bottom:359.265000px;}
.y1d1{bottom:361.938900px;}
.y28a{bottom:362.149800px;}
.y13b{bottom:362.190000px;}
.y14c{bottom:363.202500px;}
.y269{bottom:365.335500px;}
.yfe{bottom:367.881300px;}
.y30b{bottom:369.189000px;}
.y237{bottom:370.768200px;}
.yb7{bottom:370.783200px;}
.y1e5{bottom:370.860150px;}
.y163{bottom:371.344500px;}
.y2ee{bottom:371.459550px;}
.y5e{bottom:371.499000px;}
.y90{bottom:371.515500px;}
.y39{bottom:371.535300px;}
.y200{bottom:371.557800px;}
.y71{bottom:371.598300px;}
.yd9{bottom:371.602800px;}
.y21b{bottom:371.625600px;}
.y1ae{bottom:372.081300px;}
.yc6{bottom:373.740000px;}
.y27d{bottom:373.770000px;}
.y119{bottom:374.220600px;}
.y2c1{bottom:376.135500px;}
.yee{bottom:377.464500px;}
.y2ab{bottom:378.780000px;}
.y29c{bottom:379.015500px;}
.y320{bottom:379.402500px;}
.y1d0{bottom:382.943400px;}
.y13a{bottom:383.194500px;}
.y14b{bottom:384.207000px;}
.y268{bottom:386.340000px;}
.yfd{bottom:388.885800px;}
.y16{bottom:390.156600px;}
.y30a{bottom:390.193500px;}
.yb6{bottom:391.787700px;}
.y1e4{bottom:391.864650px;}
.y162{bottom:392.349000px;}
.y2ed{bottom:392.464050px;}
.y5d{bottom:392.503500px;}
.y8f{bottom:392.520000px;}
.y38{bottom:392.539800px;}
.y1ff{bottom:392.562300px;}
.y70{bottom:392.602800px;}
.yd8{bottom:392.607300px;}
.y21a{bottom:392.630100px;}
.y1ad{bottom:393.085800px;}
.yc5{bottom:394.744500px;}
.y118{bottom:395.225100px;}
.y2c0{bottom:397.140000px;}
.y189{bottom:397.921500px;}
.yed{bottom:398.469000px;}
.y2aa{bottom:399.784500px;}
.y29b{bottom:400.020000px;}
.y31f{bottom:400.407000px;}
.y273{bottom:401.224500px;}
.y289{bottom:404.140800px;}
.y139{bottom:404.199000px;}
.y14a{bottom:405.211500px;}
.y267{bottom:407.344500px;}
.yfc{bottom:409.890300px;}
.y309{bottom:411.198000px;}
.y236{bottom:412.760700px;}
.yb5{bottom:412.792200px;}
.y1e3{bottom:412.869150px;}
.y161{bottom:413.353500px;}
.y2ec{bottom:413.468550px;}
.y5c{bottom:413.508000px;}
.y8e{bottom:413.524500px;}
.y37{bottom:413.544300px;}
.y15{bottom:413.553600px;}
.y1fe{bottom:413.566800px;}
.y6f{bottom:413.607300px;}
.yd7{bottom:413.611800px;}
.y219{bottom:413.634600px;}
.y1ac{bottom:414.090300px;}
.yc4{bottom:415.749000px;}
.y117{bottom:416.229600px;}
.y2bf{bottom:418.144500px;}
.y188{bottom:418.926000px;}
.yec{bottom:419.473500px;}
.y2a9{bottom:420.789000px;}
.y29a{bottom:421.024500px;}
.y272{bottom:422.229000px;}
.y1cf{bottom:424.938600px;}
.y288{bottom:425.145300px;}
.y138{bottom:425.203500px;}
.y149{bottom:426.216000px;}
.y159{bottom:427.645500px;}
.y266{bottom:428.349000px;}
.yfb{bottom:430.894800px;}
.y14{bottom:431.553600px;}
.y31e{bottom:432.202500px;}
.y235{bottom:433.765200px;}
.yb4{bottom:433.796700px;}
.y1e2{bottom:433.873650px;}
.y160{bottom:434.358000px;}
.y5b{bottom:434.512500px;}
.y8d{bottom:434.529000px;}
.y36{bottom:434.548800px;}
.y1fd{bottom:434.571300px;}
.y6e{bottom:434.611800px;}
.yd6{bottom:434.616300px;}
.y1ab{bottom:435.094800px;}
.yc3{bottom:436.753500px;}
.y116{bottom:437.234100px;}
.y2be{bottom:439.149000px;}
.y187{bottom:439.930500px;}
.yeb{bottom:440.478000px;}
.y2a8{bottom:441.793500px;}
.y299{bottom:442.029000px;}
.y308{bottom:442.993500px;}
.y271{bottom:443.233500px;}
.y2eb{bottom:445.264050px;}
.y287{bottom:446.149800px;}
.y137{bottom:446.208000px;}
.y148{bottom:447.220500px;}
.y158{bottom:448.650000px;}
.y265{bottom:449.353500px;}
.y31d{bottom:453.207000px;}
.y234{bottom:454.769700px;}
.yb3{bottom:454.801200px;}
.y1e1{bottom:454.878150px;}
.y15f{bottom:455.362500px;}
.y5a{bottom:455.517000px;}
.y8c{bottom:455.533500px;}
.y35{bottom:455.553300px;}
.y1fc{bottom:455.575800px;}
.y6d{bottom:455.616300px;}
.yd5{bottom:455.620800px;}
.y218{bottom:455.629800px;}
.yc2{bottom:457.758000px;}
.y115{bottom:458.238600px;}
.y2bd{bottom:460.153500px;}
.y186{bottom:460.935000px;}
.yea{bottom:461.482500px;}
.y2a7{bottom:462.798000px;}
.y298{bottom:463.033500px;}
.y307{bottom:463.998000px;}
.y270{bottom:464.238000px;}
.y2ea{bottom:466.268550px;}
.y1ce{bottom:466.916100px;}
.y136{bottom:467.212500px;}
.y13{bottom:467.556600px;}
.y147{bottom:468.225000px;}
.y264{bottom:470.358000px;}
.y233{bottom:475.774200px;}
.yb2{bottom:475.805700px;}
.y1e0{bottom:475.882650px;}
.y15e{bottom:476.367000px;}
.y59{bottom:476.521500px;}
.y8b{bottom:476.538000px;}
.y34{bottom:476.557800px;}
.y1fb{bottom:476.580300px;}
.y6c{bottom:476.620800px;}
.yd4{bottom:476.625300px;}
.y1aa{bottom:477.090000px;}
.yc1{bottom:478.762500px;}
.y2bc{bottom:481.158000px;}
.ye9{bottom:482.487000px;}
.y2a6{bottom:483.802500px;}
.y297{bottom:484.038000px;}
.y306{bottom:485.002500px;}
.y26f{bottom:485.242500px;}
.y2e9{bottom:487.273050px;}
.y1cd{bottom:487.920600px;}
.y286{bottom:488.145000px;}
.y135{bottom:488.217000px;}
.y12{bottom:490.953600px;}
.y263{bottom:491.362500px;}
.y316{bottom:495.793500px;}
.yb1{bottom:496.810200px;}
.y1df{bottom:496.887150px;}
.y15d{bottom:497.371500px;}
.y58{bottom:497.526000px;}
.y8a{bottom:497.542500px;}
.y33{bottom:497.562300px;}
.y217{bottom:497.580300px;}
.y1fa{bottom:497.584800px;}
.y6b{bottom:497.625300px;}
.yd3{bottom:497.629800px;}
.yc0{bottom:499.767000px;}
.y2bb{bottom:502.162500px;}
.ye8{bottom:503.491500px;}
.y2a5{bottom:504.807000px;}
.y296{bottom:505.042500px;}
.y26e{bottom:506.247000px;}
.y1cc{bottom:508.925100px;}
.y11{bottom:508.953600px;}
.y134{bottom:509.221500px;}
.y114{bottom:509.523600px;}
.y185{bottom:512.220000px;}
.y262{bottom:512.367000px;}
.y305{bottom:516.798000px;}
.y232{bottom:517.769400px;}
.yb0{bottom:517.814700px;}
.y1de{bottom:517.891650px;}
.y15c{bottom:518.376000px;}
.y57{bottom:518.530500px;}
.y89{bottom:518.547000px;}
.y32{bottom:518.566800px;}
.y216{bottom:518.584800px;}
.y1f9{bottom:518.589300px;}
.y6a{bottom:518.629800px;}
.y1a9{bottom:519.045000px;}
.y2e8{bottom:519.068550px;}
.ybf{bottom:520.771500px;}
.y2ba{bottom:523.167000px;}
.ye7{bottom:524.496000px;}
.y2a4{bottom:525.811500px;}
.y295{bottom:526.047000px;}
.y184{bottom:526.620000px;}
.y26d{bottom:527.251500px;}
.y1cb{bottom:529.929600px;}
.y285{bottom:530.131500px;}
.y133{bottom:530.226000px;}
.y113{bottom:532.023600px;}
.y261{bottom:533.371500px;}
.y304{bottom:537.802500px;}
.yaf{bottom:538.819200px;}
.y1dd{bottom:538.896150px;}
.y15b{bottom:539.380500px;}
.y56{bottom:539.535000px;}
.y88{bottom:539.551500px;}
.y31{bottom:539.571300px;}
.y215{bottom:539.589300px;}
.y1f8{bottom:539.593800px;}
.yd2{bottom:539.619000px;}
.y1a8{bottom:540.049500px;}
.y2e7{bottom:540.073050px;}
.y183{bottom:541.020000px;}
.ybe{bottom:541.776000px;}
.y2b9{bottom:544.171500px;}
.y10{bottom:544.956600px;}
.ye6{bottom:545.500500px;}
.y2a3{bottom:546.816000px;}
.y294{bottom:547.051500px;}
.y26c{bottom:548.256000px;}
.y315{bottom:548.593500px;}
.y1ca{bottom:550.934100px;}
.y284{bottom:551.136000px;}
.y132{bottom:551.230500px;}
.y260{bottom:554.376000px;}
.y112{bottom:554.523600px;}
.y31c{bottom:558.807000px;}
.y231{bottom:559.714500px;}
.yae{bottom:559.823700px;}
.y1dc{bottom:559.900650px;}
.y15a{bottom:560.385000px;}
.y55{bottom:560.539500px;}
.y87{bottom:560.556000px;}
.y30{bottom:560.575800px;}
.y214{bottom:560.593800px;}
.y1f7{bottom:560.598300px;}
.y69{bottom:560.625000px;}
.y1a7{bottom:561.054000px;}
.y2e6{bottom:561.077550px;}
.ybd{bottom:562.780500px;}
.y182{bottom:563.520000px;}
.y2b8{bottom:565.176000px;}
.ye5{bottom:566.505000px;}
.y2a2{bottom:567.820500px;}
.y293{bottom:568.056000px;}
.yf{bottom:568.353600px;}
.y26b{bottom:569.260500px;}
.y303{bottom:569.598000px;}
.y1c9{bottom:571.938600px;}
.y283{bottom:572.140500px;}
.y131{bottom:572.235000px;}
.y25f{bottom:575.380500px;}
.y111{bottom:577.023600px;}
.y181{bottom:577.920000px;}
.y230{bottom:580.719000px;}
.yad{bottom:580.828200px;}
.y1db{bottom:580.905150px;}
.y54{bottom:581.544000px;}
.y86{bottom:581.560500px;}
.y2f{bottom:581.580300px;}
.y213{bottom:581.598300px;}
.y1f6{bottom:581.602800px;}
.y1a6{bottom:582.058500px;}
.ybc{bottom:583.785000px;}
.y2b7{bottom:586.180500px;}
.ye{bottom:586.353600px;}
.y2a1{bottom:588.825000px;}
.y292{bottom:589.060500px;}
.y26a{bottom:590.265000px;}
.y302{bottom:590.602500px;}
.y180{bottom:592.320000px;}
.y2e5{bottom:592.873050px;}
.y282{bottom:593.145000px;}
.y25e{bottom:596.385000px;}
.y110{bottom:599.523600px;}
.y22f{bottom:601.723500px;}
.yac{bottom:601.832700px;}
.y53{bottom:602.548500px;}
.y85{bottom:602.565000px;}
.y2e{bottom:602.584800px;}
.y212{bottom:602.602800px;}
.y1f5{bottom:602.607300px;}
.y1a5{bottom:603.063000px;}
.y2b6{bottom:607.185000px;}
.y291{bottom:610.065000px;}
.y301{bottom:611.607000px;}
.y2e4{bottom:613.877550px;}
.y17f{bottom:614.820000px;}
.y10f{bottom:622.023600px;}
.y255{bottom:622.042500px;}
.yd{bottom:622.356600px;}
.y314{bottom:622.398000px;}
.y22e{bottom:622.728000px;}
.yab{bottom:622.837200px;}
.y1da{bottom:622.900350px;}
.y1c8{bottom:623.223600px;}
.y130{bottom:623.520000px;}
.y52{bottom:623.553000px;}
.y84{bottom:623.569500px;}
.y2d{bottom:623.589300px;}
.y211{bottom:623.607300px;}
.y1f4{bottom:623.611800px;}
.y1a4{bottom:624.067500px;}
.y17e{bottom:629.220000px;}
.y2e3{bottom:634.882050px;}
.y1c7{bottom:637.623600px;}
.y254{bottom:643.047000px;}
.y300{bottom:643.402500px;}
.y17d{bottom:643.620000px;}
.yaa{bottom:643.841700px;}
.y10e{bottom:644.523600px;}
.y51{bottom:644.557500px;}
.y83{bottom:644.574000px;}
.y2c{bottom:644.593800px;}
.y210{bottom:644.611800px;}
.y1f3{bottom:644.616300px;}
.y1a3{bottom:645.072000px;}
.yc{bottom:645.753600px;}
.y12f{bottom:646.020000px;}
.y22d{bottom:650.481000px;}
.y248{bottom:656.124000px;}
.y1c6{bottom:660.123600px;}
.yb{bottom:663.753600px;}
.y253{bottom:664.051500px;}
.y2ff{bottom:664.407000px;}
.ya9{bottom:664.846200px;}
.y50{bottom:665.562000px;}
.y82{bottom:665.578500px;}
.y2b{bottom:665.598300px;}
.y20f{bottom:665.616300px;}
.y1f2{bottom:665.620800px;}
.y1a2{bottom:666.076500px;}
.y17c{bottom:666.120000px;}
.y2e2{bottom:666.677550px;}
.y10d{bottom:667.023600px;}
.y12e{bottom:668.520000px;}
.y1c5{bottom:674.523600px;}
.yfa{bottom:677.148300px;}
.y17b{bottom:680.520000px;}
.y252{bottom:685.056000px;}
.y2fe{bottom:685.411500px;}
.ya8{bottom:685.850700px;}
.y4f{bottom:686.566500px;}
.y81{bottom:686.583000px;}
.y2a{bottom:686.602800px;}
.y20e{bottom:686.620800px;}
.y1f1{bottom:686.625300px;}
.y1a1{bottom:687.081000px;}
.y2e1{bottom:687.682050px;}
.y10c{bottom:689.523600px;}
.y12d{bottom:691.020000px;}
.y22c{bottom:693.018000px;}
.y17a{bottom:694.920000px;}
.y313{bottom:696.202500px;}
.y1c4{bottom:697.023600px;}
.y251{bottom:706.060500px;}
.ya7{bottom:706.855200px;}
.y4e{bottom:707.571000px;}
.y80{bottom:707.587500px;}
.y29{bottom:707.607300px;}
.y20d{bottom:707.625300px;}
.y1f0{bottom:707.629800px;}
.y1a0{bottom:708.085500px;}
.y2e0{bottom:708.686550px;}
.y1c3{bottom:711.423600px;}
.y10b{bottom:712.023600px;}
.ya{bottom:713.253600px;}
.y12c{bottom:713.520000px;}
.y22b{bottom:714.022500px;}
.y2fd{bottom:717.207000px;}
.y179{bottom:717.420000px;}
.y1c2{bottom:725.823600px;}
.y250{bottom:727.065000px;}
.ya6{bottom:727.859700px;}
.y4d{bottom:728.575500px;}
.y7f{bottom:728.592000px;}
.y28{bottom:728.611800px;}
.y20c{bottom:728.629800px;}
.y19f{bottom:729.090000px;}
.y178{bottom:731.820000px;}
.y10a{bottom:734.598000px;}
.y22a{bottom:735.027000px;}
.y12b{bottom:736.020000px;}
.y2fc{bottom:738.211500px;}
.y2df{bottom:740.482050px;}
.y9{bottom:745.653600px;}
.y177{bottom:746.220000px;}
.y1c1{bottom:748.323600px;}
.ya5{bottom:748.864200px;}
.y31b{bottom:749.002500px;}
.y4c{bottom:749.580000px;}
.y7e{bottom:749.596500px;}
.y27{bottom:749.616300px;}
.y1ef{bottom:749.625000px;}
.y229{bottom:756.031500px;}
.y12a{bottom:758.520000px;}
.y2de{bottom:761.486550px;}
.y1c0{bottom:762.723600px;}
.y176{bottom:768.720000px;}
.ya4{bottom:769.868700px;}
.y2fb{bottom:770.007000px;}
.y4b{bottom:770.584500px;}
.y7d{bottom:770.601000px;}
.y26{bottom:770.620800px;}
.y20b{bottom:770.625000px;}
.y8{bottom:778.053600px;}
.y19e{bottom:780.375000px;}
.y129{bottom:781.020000px;}
.y2dd{bottom:782.491050px;}
.y175{bottom:783.120000px;}
.y228{bottom:783.784500px;}
.y1bf{bottom:785.223600px;}
.ya3{bottom:790.873200px;}
.y2fa{bottom:791.011500px;}
.y4a{bottom:791.589000px;}
.y7c{bottom:791.605500px;}
.y25{bottom:791.625300px;}
.y19d{bottom:794.775000px;}
.y174{bottom:797.520000px;}
.y1be{bottom:799.623600px;}
.y2cd{bottom:803.139000px;}
.y128{bottom:803.520000px;}
.y19c{bottom:809.175000px;}
.ya2{bottom:811.877700px;}
.y2f9{bottom:812.016000px;}
.y49{bottom:812.593500px;}
.y7b{bottom:812.610000px;}
.y24{bottom:812.629800px;}
.y2dc{bottom:814.286550px;}
.y173{bottom:820.020000px;}
.y7{bottom:821.253600px;}
.y1bd{bottom:822.123600px;}
.y127{bottom:826.020000px;}
.y227{bottom:826.321500px;}
.y19b{bottom:831.675000px;}
.ya1{bottom:832.882200px;}
.y48{bottom:833.598000px;}
.y247{bottom:833.614500px;}
.y172{bottom:834.420000px;}
.y2db{bottom:835.291050px;}
.y1bc{bottom:836.523600px;}
.y2f8{bottom:843.811500px;}
.y19a{bottom:846.075000px;}
.y126{bottom:848.520000px;}
.y171{bottom:848.820000px;}
.ya0{bottom:853.886700px;}
.y226{bottom:854.074500px;}
.y47{bottom:854.602500px;}
.y246{bottom:854.619000px;}
.y23{bottom:854.625000px;}
.y2da{bottom:856.295550px;}
.y1bb{bottom:859.023600px;}
.y6{bottom:864.453600px;}
.y2f7{bottom:864.816000px;}
.y199{bottom:868.575000px;}
.y125{bottom:871.020000px;}
.y170{bottom:871.320000px;}
.y9f{bottom:874.891200px;}
.y46{bottom:875.607000px;}
.y245{bottom:875.623500px;}
.y1ba{bottom:881.629500px;}
.y198{bottom:882.975000px;}
.y16f{bottom:885.720000px;}
.y2f6{bottom:885.820500px;}
.y157{bottom:887.157000px;}
.y2d9{bottom:888.091050px;}
.y124{bottom:893.520000px;}
.y9e{bottom:895.895700px;}
.y45{bottom:896.611500px;}
.y244{bottom:896.628000px;}
.y197{bottom:897.375000px;}
.y16e{bottom:900.120000px;}
.y2d8{bottom:909.095550px;}
.y196{bottom:911.775000px;}
.y16d{bottom:914.520000px;}
.y123{bottom:916.020000px;}
.y9d{bottom:916.900200px;}
.y22{bottom:917.616000px;}
.y243{bottom:917.632500px;}
.y195{bottom:934.275000px;}
.y16c{bottom:937.020000px;}
.y21{bottom:938.620500px;}
.ybb{bottom:953.536350px;}
.y24f{bottom:953.536500px;}
.y9c{bottom:958.895550px;}
.y1b9{bottom:959.563800px;}
.y20{bottom:959.625000px;}
.h2{height:26.160000px;}
.hb{height:33.216000px;}
.h1{height:39.313477px;}
.hc{height:41.856000px;}
.h6{height:45.672000px;}
.ha{height:47.088000px;}
.he{height:48.049805px;}
.h9{height:52.417969px;}
.hd{height:52.453125px;}
.h8{height:56.496000px;}
.h7{height:57.552000px;}
.h3{height:83.267578px;}
.h5{height:84.585938px;}
.h4{height:111.023438px;}
.h0{height:1080.000000px;}
.w0{width:756.000000px;}
.x0{left:0.000000px;}
.x11{left:108.000000px;}
.x2{left:109.225050px;}
.x3{left:115.300050px;}
.x1b{left:127.482450px;}
.x12{left:129.600000px;}
.x17{left:135.651600px;}
.x16{left:138.015600px;}
.x13{left:143.625000px;}
.x6{left:161.114250px;}
.x14{left:169.620150px;}
.x1a{left:173.973450px;}
.x15{left:175.944150px;}
.x18{left:185.448300px;}
.x8{left:187.665900px;}
.x7{left:190.187850px;}
.x1c{left:224.478450px;}
.xe{left:253.783200px;}
.xb{left:255.614550px;}
.xc{left:269.326050px;}
.x5{left:290.268450px;}
.x9{left:293.711100px;}
.xd{left:308.777550px;}
.xa{left:313.815150px;}
.x19{left:317.028300px;}
.x10{left:325.013550px;}
.x4{left:334.232550px;}
.xf{left:342.932700px;}
.x1{left:366.737850px;}
.x1d{left:453.390450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-3.242667pt;}
.lsd{letter-spacing:-2.640000pt;}
.ls13{letter-spacing:-0.645333pt;}
.ls10{letter-spacing:-0.586667pt;}
.ls11{letter-spacing:-0.528000pt;}
.lsf{letter-spacing:-0.469333pt;}
.ls5{letter-spacing:-0.410667pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.352000pt;}
.ls2{letter-spacing:-0.293333pt;}
.ls4{letter-spacing:-0.234667pt;}
.lse{letter-spacing:-0.176000pt;}
.ls1{letter-spacing:-0.117333pt;}
.ls6{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.293333pt;}
.lsb{letter-spacing:0.810667pt;}
.lsa{letter-spacing:1.024000pt;}
.lsc{letter-spacing:7.210667pt;}
.ls9{letter-spacing:9.258667pt;}
.ws10e{word-spacing:-14.960000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws10a{word-spacing:-14.138667pt;}
.wsf1{word-spacing:-10.704000pt;}
.wscf{word-spacing:-10.666667pt;}
.wsc3{word-spacing:-7.424000pt;}
.ws5b{word-spacing:-7.333333pt;}
.ws6{word-spacing:-7.274667pt;}
.ws10{word-spacing:-7.157333pt;}
.ws10b{word-spacing:-7.040000pt;}
.ws57{word-spacing:-6.981333pt;}
.ws76{word-spacing:-6.746667pt;}
.wsb2{word-spacing:-6.688000pt;}
.ws47{word-spacing:-6.629333pt;}
.ws110{word-spacing:-6.512000pt;}
.wsa{word-spacing:-6.453333pt;}
.ws83{word-spacing:-6.394667pt;}
.wsf9{word-spacing:-6.277333pt;}
.ws10c{word-spacing:-6.218667pt;}
.ws9e{word-spacing:-6.160000pt;}
.ws82{word-spacing:-6.042667pt;}
.ws71{word-spacing:-5.925333pt;}
.wsd0{word-spacing:-5.866667pt;}
.ws61{word-spacing:-5.808000pt;}
.ws3{word-spacing:-5.749333pt;}
.ws102{word-spacing:-5.690667pt;}
.ws4b{word-spacing:-5.632000pt;}
.wse5{word-spacing:-5.573333pt;}
.ws4c{word-spacing:-5.514667pt;}
.wse{word-spacing:-5.397333pt;}
.wsa9{word-spacing:-5.338667pt;}
.wsbb{word-spacing:-5.280000pt;}
.ws81{word-spacing:-5.221333pt;}
.wsa7{word-spacing:-5.104000pt;}
.ws46{word-spacing:-5.045333pt;}
.ws6b{word-spacing:-4.986667pt;}
.wsb{word-spacing:-4.928000pt;}
.ws115{word-spacing:-4.869333pt;}
.wsa2{word-spacing:-4.810667pt;}
.ws113{word-spacing:-4.752000pt;}
.ws101{word-spacing:-4.693333pt;}
.wsa6{word-spacing:-4.634667pt;}
.wsda{word-spacing:-4.608000pt;}
.wsae{word-spacing:-4.517333pt;}
.ws6d{word-spacing:-4.458667pt;}
.wsff{word-spacing:-4.400000pt;}
.ws43{word-spacing:-4.341333pt;}
.wscd{word-spacing:-4.282667pt;}
.ws53{word-spacing:-4.224000pt;}
.ws41{word-spacing:-4.165333pt;}
.ws85{word-spacing:-4.106667pt;}
.ws2e{word-spacing:-4.048000pt;}
.wsb8{word-spacing:-3.989333pt;}
.wsc2{word-spacing:-3.930667pt;}
.ws38{word-spacing:-3.872000pt;}
.ws21{word-spacing:-3.813333pt;}
.wsf{word-spacing:-3.754667pt;}
.ws17{word-spacing:-3.696000pt;}
.ws3e{word-spacing:-3.637333pt;}
.ws9b{word-spacing:-3.578667pt;}
.ws7b{word-spacing:-3.520000pt;}
.ws9c{word-spacing:-3.461333pt;}
.ws97{word-spacing:-3.402667pt;}
.ws68{word-spacing:-3.344000pt;}
.wsa5{word-spacing:-3.285333pt;}
.ws7d{word-spacing:-3.226667pt;}
.wsa4{word-spacing:-3.168000pt;}
.wsde{word-spacing:-3.157333pt;}
.ws80{word-spacing:-3.109333pt;}
.wsbc{word-spacing:-3.050667pt;}
.ws18{word-spacing:-2.992000pt;}
.wsdd{word-spacing:-2.944000pt;}
.ws73{word-spacing:-2.933333pt;}
.ws3f{word-spacing:-2.874667pt;}
.ws9f{word-spacing:-2.816000pt;}
.ws7{word-spacing:-2.757333pt;}
.ws96{word-spacing:-2.698667pt;}
.ws3d{word-spacing:-2.640000pt;}
.ws5e{word-spacing:-2.581333pt;}
.ws51{word-spacing:-2.522667pt;}
.ws70{word-spacing:-2.464000pt;}
.ws35{word-spacing:-2.405333pt;}
.ws52{word-spacing:-2.368000pt;}
.ws79{word-spacing:-2.346667pt;}
.wsca{word-spacing:-2.288000pt;}
.wsf5{word-spacing:-2.229333pt;}
.ws36{word-spacing:-2.170667pt;}
.ws6a{word-spacing:-2.112000pt;}
.wsba{word-spacing:-2.053333pt;}
.ws55{word-spacing:-1.994667pt;}
.wsce{word-spacing:-1.936000pt;}
.ws64{word-spacing:-1.877333pt;}
.ws4d{word-spacing:-1.818667pt;}
.ws2d{word-spacing:-1.760000pt;}
.ws67{word-spacing:-1.701333pt;}
.ws62{word-spacing:-1.642667pt;}
.ws9a{word-spacing:-1.584000pt;}
.ws48{word-spacing:-1.525333pt;}
.ws16{word-spacing:-1.466667pt;}
.ws34{word-spacing:-1.408000pt;}
.wsc9{word-spacing:-1.349333pt;}
.ws60{word-spacing:-1.290667pt;}
.wsb7{word-spacing:-1.232000pt;}
.ws28{word-spacing:-1.173333pt;}
.ws40{word-spacing:-1.114667pt;}
.ws72{word-spacing:-1.056000pt;}
.wsf0{word-spacing:-0.997333pt;}
.ws100{word-spacing:-0.938667pt;}
.ws69{word-spacing:-0.880000pt;}
.ws54{word-spacing:-0.821333pt;}
.ws6e{word-spacing:-0.762667pt;}
.ws7a{word-spacing:-0.704000pt;}
.ws5c{word-spacing:-0.645333pt;}
.wsaa{word-spacing:-0.586667pt;}
.ws94{word-spacing:-0.528000pt;}
.wsb4{word-spacing:-0.469333pt;}
.ws9{word-spacing:-0.410667pt;}
.wsaf{word-spacing:-0.352000pt;}
.ws6f{word-spacing:-0.293333pt;}
.ws30{word-spacing:-0.234667pt;}
.ws5d{word-spacing:-0.176000pt;}
.wsd9{word-spacing:-0.170667pt;}
.ws5f{word-spacing:-0.117333pt;}
.wsb0{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:0.058667pt;}
.ws7e{word-spacing:0.117333pt;}
.wsfe{word-spacing:0.176000pt;}
.ws4{word-spacing:0.234667pt;}
.ws9d{word-spacing:0.293333pt;}
.ws7c{word-spacing:0.352000pt;}
.ws8a{word-spacing:0.410667pt;}
.ws8{word-spacing:0.469333pt;}
.ws1e{word-spacing:0.528000pt;}
.ws63{word-spacing:0.586667pt;}
.ws2{word-spacing:0.645333pt;}
.ws2a{word-spacing:0.704000pt;}
.ws95{word-spacing:0.762667pt;}
.ws93{word-spacing:0.821333pt;}
.ws3c{word-spacing:0.880000pt;}
.wsd6{word-spacing:0.896000pt;}
.wsd{word-spacing:0.938667pt;}
.wse3{word-spacing:0.997333pt;}
.wsa8{word-spacing:1.056000pt;}
.ws15{word-spacing:1.114667pt;}
.ws24{word-spacing:1.173333pt;}
.ws1b{word-spacing:1.232000pt;}
.ws89{word-spacing:1.290667pt;}
.ws29{word-spacing:1.349333pt;}
.ws26{word-spacing:1.408000pt;}
.ws5a{word-spacing:1.466667pt;}
.ws98{word-spacing:1.525333pt;}
.ws6c{word-spacing:1.584000pt;}
.ws4f{word-spacing:1.642667pt;}
.ws4e{word-spacing:1.701333pt;}
.wsa1{word-spacing:1.760000pt;}
.ws45{word-spacing:1.818667pt;}
.ws59{word-spacing:1.877333pt;}
.wsb9{word-spacing:1.936000pt;}
.ws8f{word-spacing:1.994667pt;}
.ws90{word-spacing:2.053333pt;}
.wscb{word-spacing:2.170667pt;}
.ws27{word-spacing:2.229333pt;}
.ws4a{word-spacing:2.288000pt;}
.ws31{word-spacing:2.346667pt;}
.ws2b{word-spacing:2.405333pt;}
.wsc8{word-spacing:2.464000pt;}
.ws87{word-spacing:2.522667pt;}
.ws56{word-spacing:2.581333pt;}
.ws74{word-spacing:2.640000pt;}
.ws13{word-spacing:2.698667pt;}
.wsc{word-spacing:2.757333pt;}
.ws25{word-spacing:2.816000pt;}
.ws3b{word-spacing:2.874667pt;}
.ws49{word-spacing:2.933333pt;}
.ws3a{word-spacing:2.992000pt;}
.ws2f{word-spacing:3.050667pt;}
.ws1c{word-spacing:3.109333pt;}
.wsf7{word-spacing:3.168000pt;}
.ws32{word-spacing:3.226667pt;}
.wsfd{word-spacing:3.285333pt;}
.ws84{word-spacing:3.344000pt;}
.wsf6{word-spacing:3.461333pt;}
.wse6{word-spacing:3.520000pt;}
.ws11{word-spacing:3.578667pt;}
.ws1a{word-spacing:3.637333pt;}
.ws88{word-spacing:3.696000pt;}
.ws107{word-spacing:3.754667pt;}
.ws44{word-spacing:3.813333pt;}
.wsd1{word-spacing:3.872000pt;}
.wse9{word-spacing:3.930667pt;}
.wse0{word-spacing:3.968000pt;}
.ws7f{word-spacing:3.989333pt;}
.ws114{word-spacing:4.048000pt;}
.ws66{word-spacing:4.106667pt;}
.wsef{word-spacing:4.165333pt;}
.ws22{word-spacing:4.224000pt;}
.ws78{word-spacing:4.282667pt;}
.wsbd{word-spacing:4.341333pt;}
.wsad{word-spacing:4.400000pt;}
.ws23{word-spacing:4.458667pt;}
.wseb{word-spacing:4.576000pt;}
.ws65{word-spacing:4.634667pt;}
.ws8d{word-spacing:4.693333pt;}
.ws42{word-spacing:4.752000pt;}
.ws103{word-spacing:4.810667pt;}
.ws5{word-spacing:4.869333pt;}
.ws20{word-spacing:4.928000pt;}
.wsf8{word-spacing:4.986667pt;}
.ws8b{word-spacing:5.045333pt;}
.wsa3{word-spacing:5.104000pt;}
.ws8e{word-spacing:5.162667pt;}
.ws106{word-spacing:5.221333pt;}
.ws104{word-spacing:5.280000pt;}
.wsab{word-spacing:5.338667pt;}
.ws39{word-spacing:5.397333pt;}
.wsb1{word-spacing:5.456000pt;}
.wsf2{word-spacing:5.514667pt;}
.ws1f{word-spacing:5.632000pt;}
.wsfb{word-spacing:5.690667pt;}
.ws99{word-spacing:5.749333pt;}
.ws92{word-spacing:5.808000pt;}
.wsec{word-spacing:5.866667pt;}
.wsb3{word-spacing:5.925333pt;}
.wsdc{word-spacing:6.016000pt;}
.ws86{word-spacing:6.101333pt;}
.wsa0{word-spacing:6.160000pt;}
.wsb5{word-spacing:6.218667pt;}
.ws50{word-spacing:6.277333pt;}
.ws8c{word-spacing:6.336000pt;}
.ws58{word-spacing:6.512000pt;}
.ws2c{word-spacing:6.570667pt;}
.wscc{word-spacing:6.629333pt;}
.ws1d{word-spacing:6.688000pt;}
.ws33{word-spacing:6.746667pt;}
.ws75{word-spacing:6.805333pt;}
.ws19{word-spacing:6.864000pt;}
.ws105{word-spacing:6.981333pt;}
.wse4{word-spacing:7.098667pt;}
.wse1{word-spacing:7.125333pt;}
.ws109{word-spacing:7.216000pt;}
.ws77{word-spacing:7.392000pt;}
.ws37{word-spacing:7.861333pt;}
.ws112{word-spacing:7.978667pt;}
.wsb6{word-spacing:8.037333pt;}
.wsac{word-spacing:8.096000pt;}
.wsf4{word-spacing:8.272000pt;}
.wsd5{word-spacing:8.362667pt;}
.ws108{word-spacing:8.506667pt;}
.ws14{word-spacing:8.565333pt;}
.wsfc{word-spacing:8.800000pt;}
.wsea{word-spacing:8.917333pt;}
.wsc1{word-spacing:8.976000pt;}
.ws10f{word-spacing:9.093333pt;}
.ws91{word-spacing:9.856000pt;}
.wsd7{word-spacing:10.026667pt;}
.wsdb{word-spacing:10.666667pt;}
.wse2{word-spacing:10.677333pt;}
.ws10d{word-spacing:10.912000pt;}
.wsed{word-spacing:11.029333pt;}
.wsf3{word-spacing:11.264000pt;}
.wsfa{word-spacing:12.848000pt;}
.ws111{word-spacing:13.904000pt;}
.wse8{word-spacing:16.368000pt;}
.wse7{word-spacing:18.010667pt;}
.wsee{word-spacing:21.237333pt;}
.wsdf{word-spacing:28.885333pt;}
.wsd8{word-spacing:37.077333pt;}
.wsc4{word-spacing:68.394667pt;}
.wsc6{word-spacing:89.728000pt;}
.wsd3{word-spacing:139.349333pt;}
.wsd2{word-spacing:213.589333pt;}
.wsd4{word-spacing:230.954667pt;}
.wsc5{word-spacing:322.432000pt;}
.wsc7{word-spacing:418.986667pt;}
.wsbe{word-spacing:506.069333pt;}
.wsbf{word-spacing:516.736000pt;}
.wsc0{word-spacing:892.672000pt;}
._5f{margin-left:-28.693333pt;}
._57{margin-left:-24.053333pt;}
._14{margin-left:-20.576000pt;}
._5{margin-left:-19.440000pt;}
._42{margin-left:-18.325333pt;}
._15{margin-left:-16.869333pt;}
._8{margin-left:-15.920000pt;}
._7{margin-left:-14.560000pt;}
._b{margin-left:-12.800000pt;}
._12{margin-left:-11.909333pt;}
._9{margin-left:-10.842667pt;}
._11{margin-left:-8.890667pt;}
._c{margin-left:-7.705600pt;}
._4e{margin-left:-6.709333pt;}
._a{margin-left:-5.443200pt;}
._2{margin-left:-4.048000pt;}
._3{margin-left:-2.288000pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.008000pt;}
._6{width:2.084800pt;}
._13{width:3.066667pt;}
._60{width:4.794667pt;}
._5a{width:6.870400pt;}
._5c{width:8.917333pt;}
._61{width:10.903467pt;}
._4{width:14.666667pt;}
._5d{width:16.198933pt;}
._5b{width:25.115200pt;}
._5e{width:29.403733pt;}
._59{width:44.746667pt;}
._55{width:48.949333pt;}
._56{width:50.778667pt;}
._58{width:56.496000pt;}
._53{width:58.405333pt;}
._45{width:60.288000pt;}
._54{width:61.411200pt;}
._d{width:62.714667pt;}
._51{width:63.653333pt;}
._f{width:65.237333pt;}
._52{width:66.762667pt;}
._10{width:68.453333pt;}
._e{width:69.723200pt;}
._3f{width:75.093333pt;}
._1d{width:76.586667pt;}
._40{width:77.866667pt;}
._1e{width:79.604267pt;}
._3e{width:82.048000pt;}
._23{width:86.058667pt;}
._24{width:89.728000pt;}
._1c{width:90.624000pt;}
._21{width:92.501333pt;}
._1b{width:93.696000pt;}
._29{width:96.725333pt;}
._25{width:99.200000pt;}
._22{width:100.096000pt;}
._28{width:103.168000pt;}
._31{width:107.392000pt;}
._2c{width:110.762667pt;}
._2f{width:113.834667pt;}
._34{width:120.917333pt;}
._41{width:137.472000pt;}
._1f{width:138.453333pt;}
._30{width:142.421333pt;}
._1a{width:151.722667pt;}
._26{width:158.805333pt;}
._32{width:169.770667pt;}
._2d{width:180.138667pt;}
._4b{width:201.386667pt;}
._4a{width:213.120000pt;}
._4c{width:216.917333pt;}
._4d{width:220.442667pt;}
._33{width:221.738667pt;}
._49{width:230.853333pt;}
._3d{width:232.405333pt;}
._3a{width:239.488000pt;}
._20{width:246.314667pt;}
._2e{width:248.661333pt;}
._3c{width:250.154667pt;}
._46{width:253.669333pt;}
._44{width:279.509333pt;}
._27{width:319.829333pt;}
._48{width:324.565333pt;}
._47{width:335.274667pt;}
._17{width:345.813333pt;}
._37{width:354.133333pt;}
._4f{width:363.008000pt;}
._2b{width:365.936000pt;}
._38{width:371.882667pt;}
._39{width:374.656000pt;}
._2a{width:377.898667pt;}
._35{width:388.565333pt;}
._36{width:395.989333pt;}
._16{width:541.482667pt;}
._50{width:552.874667pt;}
._43{width:643.754667pt;}
._3b{width:645.802667pt;}
._18{width:734.336000pt;}
._19{width:745.002667pt;}
.fs1{font-size:26.666667pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:62.763733pt;}
.y5{bottom:80.326267pt;}
.y4{bottom:88.326267pt;}
.y3{bottom:96.326267pt;}
.y2{bottom:104.326267pt;}
.y25d{bottom:115.905333pt;}
.y1f{bottom:116.538133pt;}
.y146{bottom:116.569333pt;}
.y225{bottom:118.488533pt;}
.y109{bottom:121.628267pt;}
.y242{bottom:124.194400pt;}
.y1ee{bottom:124.348400pt;}
.y9b{bottom:124.858667pt;}
.y44{bottom:124.876267pt;}
.y20a{bottom:124.910933pt;}
.ye4{bottom:124.936267pt;}
.y2d7{bottom:126.337333pt;}
.yd1{bottom:126.836000pt;}
.y2cc{bottom:128.965333pt;}
.yf9{bottom:130.146667pt;}
.y25c{bottom:134.576000pt;}
.y145{bottom:135.240000pt;}
.y156{bottom:136.140000pt;}
.y224{bottom:137.159200pt;}
.y108{bottom:140.298933pt;}
.y241{bottom:142.865067pt;}
.y1ed{bottom:143.019067pt;}
.y68{bottom:143.514667pt;}
.y9a{bottom:143.529333pt;}
.y43{bottom:143.546933pt;}
.y209{bottom:143.581600pt;}
.ye3{bottom:143.606933pt;}
.y7a{bottom:143.617600pt;}
.y327{bottom:143.650667pt;}
.y1b8{bottom:144.032267pt;}
.y194{bottom:144.627200pt;}
.y2d6{bottom:145.008000pt;}
.yd0{bottom:145.506667pt;}
.y2cb{bottom:147.636000pt;}
.yf8{bottom:148.817333pt;}
.y2b5{bottom:149.986667pt;}
.y27c{bottom:151.322933pt;}
.y25b{bottom:153.246667pt;}
.y144{bottom:153.910667pt;}
.y155{bottom:154.810667pt;}
.y223{bottom:155.829867pt;}
.y193{bottom:158.963200pt;}
.y107{bottom:158.969600pt;}
.y240{bottom:161.535733pt;}
.y1ec{bottom:161.689733pt;}
.y67{bottom:162.185333pt;}
.y99{bottom:162.200000pt;}
.y42{bottom:162.217600pt;}
.y208{bottom:162.252267pt;}
.ye2{bottom:162.277600pt;}
.y79{bottom:162.288267pt;}
.y326{bottom:162.321333pt;}
.y1b7{bottom:162.702933pt;}
.y2d5{bottom:163.678667pt;}
.ycf{bottom:164.177333pt;}
.y122{bottom:164.604533pt;}
.y1e{bottom:166.303467pt;}
.y2ca{bottom:166.306667pt;}
.yf7{bottom:167.488000pt;}
.y2b4{bottom:168.657333pt;}
.y312{bottom:168.697333pt;}
.y27b{bottom:169.993600pt;}
.y192{bottom:171.763200pt;}
.y25a{bottom:171.917333pt;}
.y24e{bottom:172.117333pt;}
.y1d9{bottom:172.358133pt;}
.y143{bottom:172.581333pt;}
.y154{bottom:173.481333pt;}
.y106{bottom:177.640267pt;}
.y31a{bottom:178.289333pt;}
.y23f{bottom:180.206400pt;}
.y2f5{bottom:180.307600pt;}
.y1eb{bottom:180.360400pt;}
.y222{bottom:180.499200pt;}
.y16b{bottom:180.718667pt;}
.y66{bottom:180.856000pt;}
.y98{bottom:180.870667pt;}
.y41{bottom:180.888267pt;}
.y207{bottom:180.922933pt;}
.ye1{bottom:180.948267pt;}
.y325{bottom:180.992000pt;}
.y1b6{bottom:181.373600pt;}
.y2d4{bottom:182.349333pt;}
.yce{bottom:182.848000pt;}
.y121{bottom:183.275200pt;}
.y191{bottom:184.563200pt;}
.y1d{bottom:184.974133pt;}
.y2c9{bottom:184.977333pt;}
.yf6{bottom:186.158667pt;}
.y2b3{bottom:187.328000pt;}
.y311{bottom:187.368000pt;}
.y27a{bottom:188.664267pt;}
.y259{bottom:190.588000pt;}
.y24d{bottom:190.788000pt;}
.y1d8{bottom:191.028800pt;}
.y290{bottom:191.228533pt;}
.y142{bottom:191.252000pt;}
.y153{bottom:192.152000pt;}
.y105{bottom:196.310933pt;}
.y319{bottom:196.960000pt;}
.y23e{bottom:198.877067pt;}
.y2f4{bottom:198.978267pt;}
.y1ea{bottom:199.031067pt;}
.y16a{bottom:199.389333pt;}
.y65{bottom:199.526667pt;}
.y97{bottom:199.541333pt;}
.y40{bottom:199.558933pt;}
.y206{bottom:199.593600pt;}
.y78{bottom:199.614933pt;}
.ye0{bottom:199.618933pt;}
.y324{bottom:199.662667pt;}
.y1b5{bottom:200.044267pt;}
.y2d3{bottom:201.020000pt;}
.ycd{bottom:201.518667pt;}
.y120{bottom:201.945867pt;}
.y1c{bottom:203.644800pt;}
.y2c8{bottom:203.648000pt;}
.y190{bottom:204.563200pt;}
.yf5{bottom:204.829333pt;}
.y2b2{bottom:205.998667pt;}
.y279{bottom:207.334933pt;}
.y258{bottom:209.258667pt;}
.y24c{bottom:209.458667pt;}
.y1d7{bottom:209.699467pt;}
.y28f{bottom:209.899200pt;}
.y141{bottom:209.922667pt;}
.y152{bottom:210.822667pt;}
.y104{bottom:214.981600pt;}
.y310{bottom:215.630667pt;}
.y18f{bottom:217.363200pt;}
.y23d{bottom:217.547733pt;}
.y2f3{bottom:217.648933pt;}
.y169{bottom:218.060000pt;}
.y64{bottom:218.197333pt;}
.y96{bottom:218.212000pt;}
.y3f{bottom:218.229600pt;}
.y205{bottom:218.264267pt;}
.y77{bottom:218.285600pt;}
.ydf{bottom:218.289600pt;}
.y221{bottom:218.309867pt;}
.y323{bottom:218.333333pt;}
.y1b4{bottom:218.714933pt;}
.y2d2{bottom:219.690667pt;}
.ycc{bottom:220.189333pt;}
.y11f{bottom:220.616533pt;}
.y1b{bottom:222.315467pt;}
.y2c7{bottom:222.318667pt;}
.yf4{bottom:223.500000pt;}
.y2b1{bottom:224.669333pt;}
.y278{bottom:226.005600pt;}
.y257{bottom:227.929333pt;}
.y24b{bottom:228.129333pt;}
.y1d6{bottom:228.370133pt;}
.y28e{bottom:228.569867pt;}
.y140{bottom:228.593333pt;}
.y151{bottom:229.493333pt;}
.y103{bottom:233.652267pt;}
.y30f{bottom:234.301333pt;}
.y23c{bottom:236.218400pt;}
.y1e9{bottom:236.360133pt;}
.y168{bottom:236.730667pt;}
.y63{bottom:236.868000pt;}
.y95{bottom:236.882667pt;}
.y3e{bottom:236.900267pt;}
.y204{bottom:236.934933pt;}
.y76{bottom:236.956267pt;}
.yde{bottom:236.960267pt;}
.y220{bottom:236.980533pt;}
.y18e{bottom:237.363200pt;}
.y1b3{bottom:237.385600pt;}
.y2d1{bottom:238.361333pt;}
.ycb{bottom:238.860000pt;}
.y11e{bottom:239.287200pt;}
.y1a{bottom:240.986133pt;}
.y2c6{bottom:240.989333pt;}
.yf3{bottom:242.170667pt;}
.y2b0{bottom:243.340000pt;}
.y318{bottom:243.893333pt;}
.y277{bottom:244.676267pt;}
.y2f2{bottom:245.911600pt;}
.y256{bottom:246.600000pt;}
.y24a{bottom:246.800000pt;}
.y1d5{bottom:247.040800pt;}
.y28d{bottom:247.240533pt;}
.y13f{bottom:247.264000pt;}
.y150{bottom:248.164000pt;}
.y18d{bottom:250.163200pt;}
.y102{bottom:252.322933pt;}
.y30e{bottom:252.972000pt;}
.y322{bottom:253.000000pt;}
.y23b{bottom:254.889067pt;}
.y167{bottom:255.401333pt;}
.y62{bottom:255.538667pt;}
.y94{bottom:255.553333pt;}
.y3d{bottom:255.570933pt;}
.y75{bottom:255.626933pt;}
.ydd{bottom:255.630933pt;}
.y21f{bottom:255.651200pt;}
.y1b2{bottom:256.056267pt;}
.y2d0{bottom:257.032000pt;}
.yca{bottom:257.530667pt;}
.y281{bottom:257.557333pt;}
.y11d{bottom:257.957867pt;}
.y19{bottom:259.656800pt;}
.y2c5{bottom:259.660000pt;}
.yf2{bottom:260.841333pt;}
.y2af{bottom:262.010667pt;}
.y2a0{bottom:262.220000pt;}
.y317{bottom:262.564000pt;}
.y18c{bottom:262.963200pt;}
.y276{bottom:263.346933pt;}
.y2f1{bottom:264.582267pt;}
.y249{bottom:265.470667pt;}
.y1d4{bottom:265.711467pt;}
.y28c{bottom:265.911200pt;}
.y13e{bottom:265.934667pt;}
.y14f{bottom:266.834667pt;}
.y101{bottom:270.993600pt;}
.y23a{bottom:273.559733pt;}
.yba{bottom:273.573067pt;}
.y1e8{bottom:273.641467pt;}
.y166{bottom:274.072000pt;}
.y61{bottom:274.209333pt;}
.y93{bottom:274.224000pt;}
.y3c{bottom:274.241600pt;}
.y203{bottom:274.261600pt;}
.y74{bottom:274.297600pt;}
.ydc{bottom:274.301600pt;}
.y21e{bottom:274.321867pt;}
.y1b1{bottom:274.726933pt;}
.y2cf{bottom:275.702667pt;}
.yc9{bottom:276.201333pt;}
.y280{bottom:276.228000pt;}
.y11c{bottom:276.628533pt;}
.y18{bottom:278.327467pt;}
.y2c4{bottom:278.330667pt;}
.yf1{bottom:279.512000pt;}
.y2ae{bottom:280.681333pt;}
.y29f{bottom:280.890667pt;}
.y30d{bottom:281.234667pt;}
.y275{bottom:282.017600pt;}
.y18b{bottom:282.963200pt;}
.y2f0{bottom:283.252933pt;}
.y1d3{bottom:284.382133pt;}
.y28b{bottom:284.581867pt;}
.y13d{bottom:284.605333pt;}
.y14e{bottom:285.505333pt;}
.y100{bottom:289.664267pt;}
.y239{bottom:292.230400pt;}
.yb9{bottom:292.243733pt;}
.y1e7{bottom:292.312133pt;}
.y165{bottom:292.742667pt;}
.y60{bottom:292.880000pt;}
.y92{bottom:292.894667pt;}
.y3b{bottom:292.912267pt;}
.y202{bottom:292.932267pt;}
.y73{bottom:292.968267pt;}
.ydb{bottom:292.972267pt;}
.y21d{bottom:292.992533pt;}
.y1b0{bottom:293.397600pt;}
.y2ce{bottom:294.373333pt;}
.yc8{bottom:294.872000pt;}
.y27f{bottom:294.898667pt;}
.y11b{bottom:295.299200pt;}
.y2c3{bottom:297.001333pt;}
.yf0{bottom:298.182667pt;}
.y2ad{bottom:299.352000pt;}
.y29e{bottom:299.561333pt;}
.y30c{bottom:299.905333pt;}
.y18a{bottom:303.049333pt;}
.y1d2{bottom:303.052800pt;}
.y13c{bottom:303.276000pt;}
.y14d{bottom:304.176000pt;}
.yff{bottom:308.334933pt;}
.y17{bottom:308.994133pt;}
.y238{bottom:310.901067pt;}
.yb8{bottom:310.914400pt;}
.y1e6{bottom:310.982800pt;}
.y164{bottom:311.413333pt;}
.y2ef{bottom:311.515600pt;}
.y5f{bottom:311.550667pt;}
.y91{bottom:311.565333pt;}
.y3a{bottom:311.582933pt;}
.y201{bottom:311.602933pt;}
.y72{bottom:311.638933pt;}
.yda{bottom:311.642933pt;}
.y21c{bottom:311.663200pt;}
.y1af{bottom:312.068267pt;}
.yc7{bottom:313.542667pt;}
.y27e{bottom:313.569333pt;}
.y11a{bottom:313.969867pt;}
.y2c2{bottom:315.672000pt;}
.yef{bottom:316.853333pt;}
.y2ac{bottom:318.022667pt;}
.y29d{bottom:318.232000pt;}
.y321{bottom:318.576000pt;}
.y274{bottom:319.346667pt;}
.y1d1{bottom:321.723467pt;}
.y28a{bottom:321.910933pt;}
.y13b{bottom:321.946667pt;}
.y14c{bottom:322.846667pt;}
.y269{bottom:324.742667pt;}
.yfe{bottom:327.005600pt;}
.y30b{bottom:328.168000pt;}
.y237{bottom:329.571733pt;}
.yb7{bottom:329.585067pt;}
.y1e5{bottom:329.653467pt;}
.y163{bottom:330.084000pt;}
.y2ee{bottom:330.186267pt;}
.y5e{bottom:330.221333pt;}
.y90{bottom:330.236000pt;}
.y39{bottom:330.253600pt;}
.y200{bottom:330.273600pt;}
.y71{bottom:330.309600pt;}
.yd9{bottom:330.313600pt;}
.y21b{bottom:330.333867pt;}
.y1ae{bottom:330.738933pt;}
.yc6{bottom:332.213333pt;}
.y27d{bottom:332.240000pt;}
.y119{bottom:332.640533pt;}
.y2c1{bottom:334.342667pt;}
.yee{bottom:335.524000pt;}
.y2ab{bottom:336.693333pt;}
.y29c{bottom:336.902667pt;}
.y320{bottom:337.246667pt;}
.y1d0{bottom:340.394133pt;}
.y13a{bottom:340.617333pt;}
.y14b{bottom:341.517333pt;}
.y268{bottom:343.413333pt;}
.yfd{bottom:345.676267pt;}
.y16{bottom:346.805867pt;}
.y30a{bottom:346.838667pt;}
.yb6{bottom:348.255733pt;}
.y1e4{bottom:348.324133pt;}
.y162{bottom:348.754667pt;}
.y2ed{bottom:348.856933pt;}
.y5d{bottom:348.892000pt;}
.y8f{bottom:348.906667pt;}
.y38{bottom:348.924267pt;}
.y1ff{bottom:348.944267pt;}
.y70{bottom:348.980267pt;}
.yd8{bottom:348.984267pt;}
.y21a{bottom:349.004533pt;}
.y1ad{bottom:349.409600pt;}
.yc5{bottom:350.884000pt;}
.y118{bottom:351.311200pt;}
.y2c0{bottom:353.013333pt;}
.y189{bottom:353.708000pt;}
.yed{bottom:354.194667pt;}
.y2aa{bottom:355.364000pt;}
.y29b{bottom:355.573333pt;}
.y31f{bottom:355.917333pt;}
.y273{bottom:356.644000pt;}
.y289{bottom:359.236267pt;}
.y139{bottom:359.288000pt;}
.y14a{bottom:360.188000pt;}
.y267{bottom:362.084000pt;}
.yfc{bottom:364.346933pt;}
.y309{bottom:365.509333pt;}
.y236{bottom:366.898400pt;}
.yb5{bottom:366.926400pt;}
.y1e3{bottom:366.994800pt;}
.y161{bottom:367.425333pt;}
.y2ec{bottom:367.527600pt;}
.y5c{bottom:367.562667pt;}
.y8e{bottom:367.577333pt;}
.y37{bottom:367.594933pt;}
.y15{bottom:367.603200pt;}
.y1fe{bottom:367.614933pt;}
.y6f{bottom:367.650933pt;}
.yd7{bottom:367.654933pt;}
.y219{bottom:367.675200pt;}
.y1ac{bottom:368.080267pt;}
.yc4{bottom:369.554667pt;}
.y117{bottom:369.981867pt;}
.y2bf{bottom:371.684000pt;}
.y188{bottom:372.378667pt;}
.yec{bottom:372.865333pt;}
.y2a9{bottom:374.034667pt;}
.y29a{bottom:374.244000pt;}
.y272{bottom:375.314667pt;}
.y1cf{bottom:377.723200pt;}
.y288{bottom:377.906933pt;}
.y138{bottom:377.958667pt;}
.y149{bottom:378.858667pt;}
.y159{bottom:380.129333pt;}
.y266{bottom:380.754667pt;}
.yfb{bottom:383.017600pt;}
.y14{bottom:383.603200pt;}
.y31e{bottom:384.180000pt;}
.y235{bottom:385.569067pt;}
.yb4{bottom:385.597067pt;}
.y1e2{bottom:385.665467pt;}
.y160{bottom:386.096000pt;}
.y5b{bottom:386.233333pt;}
.y8d{bottom:386.248000pt;}
.y36{bottom:386.265600pt;}
.y1fd{bottom:386.285600pt;}
.y6e{bottom:386.321600pt;}
.yd6{bottom:386.325600pt;}
.y1ab{bottom:386.750933pt;}
.yc3{bottom:388.225333pt;}
.y116{bottom:388.652533pt;}
.y2be{bottom:390.354667pt;}
.y187{bottom:391.049333pt;}
.yeb{bottom:391.536000pt;}
.y2a8{bottom:392.705333pt;}
.y299{bottom:392.914667pt;}
.y308{bottom:393.772000pt;}
.y271{bottom:393.985333pt;}
.y2eb{bottom:395.790267pt;}
.y287{bottom:396.577600pt;}
.y137{bottom:396.629333pt;}
.y148{bottom:397.529333pt;}
.y158{bottom:398.800000pt;}
.y265{bottom:399.425333pt;}
.y31d{bottom:402.850667pt;}
.y234{bottom:404.239733pt;}
.yb3{bottom:404.267733pt;}
.y1e1{bottom:404.336133pt;}
.y15f{bottom:404.766667pt;}
.y5a{bottom:404.904000pt;}
.y8c{bottom:404.918667pt;}
.y35{bottom:404.936267pt;}
.y1fc{bottom:404.956267pt;}
.y6d{bottom:404.992267pt;}
.yd5{bottom:404.996267pt;}
.y218{bottom:405.004267pt;}
.yc2{bottom:406.896000pt;}
.y115{bottom:407.323200pt;}
.y2bd{bottom:409.025333pt;}
.y186{bottom:409.720000pt;}
.yea{bottom:410.206667pt;}
.y2a7{bottom:411.376000pt;}
.y298{bottom:411.585333pt;}
.y307{bottom:412.442667pt;}
.y270{bottom:412.656000pt;}
.y2ea{bottom:414.460933pt;}
.y1ce{bottom:415.036533pt;}
.y136{bottom:415.300000pt;}
.y13{bottom:415.605867pt;}
.y147{bottom:416.200000pt;}
.y264{bottom:418.096000pt;}
.y233{bottom:422.910400pt;}
.yb2{bottom:422.938400pt;}
.y1e0{bottom:423.006800pt;}
.y15e{bottom:423.437333pt;}
.y59{bottom:423.574667pt;}
.y8b{bottom:423.589333pt;}
.y34{bottom:423.606933pt;}
.y1fb{bottom:423.626933pt;}
.y6c{bottom:423.662933pt;}
.yd4{bottom:423.666933pt;}
.y1aa{bottom:424.080000pt;}
.yc1{bottom:425.566667pt;}
.y2bc{bottom:427.696000pt;}
.ye9{bottom:428.877333pt;}
.y2a6{bottom:430.046667pt;}
.y297{bottom:430.256000pt;}
.y306{bottom:431.113333pt;}
.y26f{bottom:431.326667pt;}
.y2e9{bottom:433.131600pt;}
.y1cd{bottom:433.707200pt;}
.y286{bottom:433.906667pt;}
.y135{bottom:433.970667pt;}
.y12{bottom:436.403200pt;}
.y263{bottom:436.766667pt;}
.y316{bottom:440.705333pt;}
.yb1{bottom:441.609067pt;}
.y1df{bottom:441.677467pt;}
.y15d{bottom:442.108000pt;}
.y58{bottom:442.245333pt;}
.y8a{bottom:442.260000pt;}
.y33{bottom:442.277600pt;}
.y217{bottom:442.293600pt;}
.y1fa{bottom:442.297600pt;}
.y6b{bottom:442.333600pt;}
.yd3{bottom:442.337600pt;}
.yc0{bottom:444.237333pt;}
.y2bb{bottom:446.366667pt;}
.ye8{bottom:447.548000pt;}
.y2a5{bottom:448.717333pt;}
.y296{bottom:448.926667pt;}
.y26e{bottom:449.997333pt;}
.y1cc{bottom:452.377867pt;}
.y11{bottom:452.403200pt;}
.y134{bottom:452.641333pt;}
.y114{bottom:452.909867pt;}
.y185{bottom:455.306667pt;}
.y262{bottom:455.437333pt;}
.y305{bottom:459.376000pt;}
.y232{bottom:460.239467pt;}
.yb0{bottom:460.279733pt;}
.y1de{bottom:460.348133pt;}
.y15c{bottom:460.778667pt;}
.y57{bottom:460.916000pt;}
.y89{bottom:460.930667pt;}
.y32{bottom:460.948267pt;}
.y216{bottom:460.964267pt;}
.y1f9{bottom:460.968267pt;}
.y6a{bottom:461.004267pt;}
.y1a9{bottom:461.373333pt;}
.y2e8{bottom:461.394267pt;}
.ybf{bottom:462.908000pt;}
.y2ba{bottom:465.037333pt;}
.ye7{bottom:466.218667pt;}
.y2a4{bottom:467.388000pt;}
.y295{bottom:467.597333pt;}
.y184{bottom:468.106667pt;}
.y26d{bottom:468.668000pt;}
.y1cb{bottom:471.048533pt;}
.y285{bottom:471.228000pt;}
.y133{bottom:471.312000pt;}
.y113{bottom:472.909867pt;}
.y261{bottom:474.108000pt;}
.y304{bottom:478.046667pt;}
.yaf{bottom:478.950400pt;}
.y1dd{bottom:479.018800pt;}
.y15b{bottom:479.449333pt;}
.y56{bottom:479.586667pt;}
.y88{bottom:479.601333pt;}
.y31{bottom:479.618933pt;}
.y215{bottom:479.634933pt;}
.y1f8{bottom:479.638933pt;}
.yd2{bottom:479.661333pt;}
.y1a8{bottom:480.044000pt;}
.y2e7{bottom:480.064933pt;}
.y183{bottom:480.906667pt;}
.ybe{bottom:481.578667pt;}
.y2b9{bottom:483.708000pt;}
.y10{bottom:484.405867pt;}
.ye6{bottom:484.889333pt;}
.y2a3{bottom:486.058667pt;}
.y294{bottom:486.268000pt;}
.y26c{bottom:487.338667pt;}
.y315{bottom:487.638667pt;}
.y1ca{bottom:489.719200pt;}
.y284{bottom:489.898667pt;}
.y132{bottom:489.982667pt;}
.y260{bottom:492.778667pt;}
.y112{bottom:492.909867pt;}
.y31c{bottom:496.717333pt;}
.y231{bottom:497.524000pt;}
.yae{bottom:497.621067pt;}
.y1dc{bottom:497.689467pt;}
.y15a{bottom:498.120000pt;}
.y55{bottom:498.257333pt;}
.y87{bottom:498.272000pt;}
.y30{bottom:498.289600pt;}
.y214{bottom:498.305600pt;}
.y1f7{bottom:498.309600pt;}
.y69{bottom:498.333333pt;}
.y1a7{bottom:498.714667pt;}
.y2e6{bottom:498.735600pt;}
.ybd{bottom:500.249333pt;}
.y182{bottom:500.906667pt;}
.y2b8{bottom:502.378667pt;}
.ye5{bottom:503.560000pt;}
.y2a2{bottom:504.729333pt;}
.y293{bottom:504.938667pt;}
.yf{bottom:505.203200pt;}
.y26b{bottom:506.009333pt;}
.y303{bottom:506.309333pt;}
.y1c9{bottom:508.389867pt;}
.y283{bottom:508.569333pt;}
.y131{bottom:508.653333pt;}
.y25f{bottom:511.449333pt;}
.y111{bottom:512.909867pt;}
.y181{bottom:513.706667pt;}
.y230{bottom:516.194667pt;}
.yad{bottom:516.291733pt;}
.y1db{bottom:516.360133pt;}
.y54{bottom:516.928000pt;}
.y86{bottom:516.942667pt;}
.y2f{bottom:516.960267pt;}
.y213{bottom:516.976267pt;}
.y1f6{bottom:516.980267pt;}
.y1a6{bottom:517.385333pt;}
.ybc{bottom:518.920000pt;}
.y2b7{bottom:521.049333pt;}
.ye{bottom:521.203200pt;}
.y2a1{bottom:523.400000pt;}
.y292{bottom:523.609333pt;}
.y26a{bottom:524.680000pt;}
.y302{bottom:524.980000pt;}
.y180{bottom:526.506667pt;}
.y2e5{bottom:526.998267pt;}
.y282{bottom:527.240000pt;}
.y25e{bottom:530.120000pt;}
.y110{bottom:532.909867pt;}
.y22f{bottom:534.865333pt;}
.yac{bottom:534.962400pt;}
.y53{bottom:535.598667pt;}
.y85{bottom:535.613333pt;}
.y2e{bottom:535.630933pt;}
.y212{bottom:535.646933pt;}
.y1f5{bottom:535.650933pt;}
.y1a5{bottom:536.056000pt;}
.y2b6{bottom:539.720000pt;}
.y291{bottom:542.280000pt;}
.y301{bottom:543.650667pt;}
.y2e4{bottom:545.668933pt;}
.y17f{bottom:546.506667pt;}
.y10f{bottom:552.909867pt;}
.y255{bottom:552.926667pt;}
.yd{bottom:553.205867pt;}
.y314{bottom:553.242667pt;}
.y22e{bottom:553.536000pt;}
.yab{bottom:553.633067pt;}
.y1da{bottom:553.689200pt;}
.y1c8{bottom:553.976533pt;}
.y130{bottom:554.240000pt;}
.y52{bottom:554.269333pt;}
.y84{bottom:554.284000pt;}
.y2d{bottom:554.301600pt;}
.y211{bottom:554.317600pt;}
.y1f4{bottom:554.321600pt;}
.y1a4{bottom:554.726667pt;}
.y17e{bottom:559.306667pt;}
.y2e3{bottom:564.339600pt;}
.y1c7{bottom:566.776533pt;}
.y254{bottom:571.597333pt;}
.y300{bottom:571.913333pt;}
.y17d{bottom:572.106667pt;}
.yaa{bottom:572.303733pt;}
.y10e{bottom:572.909867pt;}
.y51{bottom:572.940000pt;}
.y83{bottom:572.954667pt;}
.y2c{bottom:572.972267pt;}
.y210{bottom:572.988267pt;}
.y1f3{bottom:572.992267pt;}
.y1a3{bottom:573.397333pt;}
.yc{bottom:574.003200pt;}
.y12f{bottom:574.240000pt;}
.y22d{bottom:578.205333pt;}
.y248{bottom:583.221333pt;}
.y1c6{bottom:586.776533pt;}
.yb{bottom:590.003200pt;}
.y253{bottom:590.268000pt;}
.y2ff{bottom:590.584000pt;}
.ya9{bottom:590.974400pt;}
.y50{bottom:591.610667pt;}
.y82{bottom:591.625333pt;}
.y2b{bottom:591.642933pt;}
.y20f{bottom:591.658933pt;}
.y1f2{bottom:591.662933pt;}
.y1a2{bottom:592.068000pt;}
.y17c{bottom:592.106667pt;}
.y2e2{bottom:592.602267pt;}
.y10d{bottom:592.909867pt;}
.y12e{bottom:594.240000pt;}
.y1c5{bottom:599.576533pt;}
.yfa{bottom:601.909600pt;}
.y17b{bottom:604.906667pt;}
.y252{bottom:608.938667pt;}
.y2fe{bottom:609.254667pt;}
.ya8{bottom:609.645067pt;}
.y4f{bottom:610.281333pt;}
.y81{bottom:610.296000pt;}
.y2a{bottom:610.313600pt;}
.y20e{bottom:610.329600pt;}
.y1f1{bottom:610.333600pt;}
.y1a1{bottom:610.738667pt;}
.y2e1{bottom:611.272933pt;}
.y10c{bottom:612.909867pt;}
.y12d{bottom:614.240000pt;}
.y22c{bottom:616.016000pt;}
.y17a{bottom:617.706667pt;}
.y313{bottom:618.846667pt;}
.y1c4{bottom:619.576533pt;}
.y251{bottom:627.609333pt;}
.ya7{bottom:628.315733pt;}
.y4e{bottom:628.952000pt;}
.y80{bottom:628.966667pt;}
.y29{bottom:628.984267pt;}
.y20d{bottom:629.000267pt;}
.y1f0{bottom:629.004267pt;}
.y1a0{bottom:629.409333pt;}
.y2e0{bottom:629.943600pt;}
.y1c3{bottom:632.376533pt;}
.y10b{bottom:632.909867pt;}
.ya{bottom:634.003200pt;}
.y12c{bottom:634.240000pt;}
.y22b{bottom:634.686667pt;}
.y2fd{bottom:637.517333pt;}
.y179{bottom:637.706667pt;}
.y1c2{bottom:645.176533pt;}
.y250{bottom:646.280000pt;}
.ya6{bottom:646.986400pt;}
.y4d{bottom:647.622667pt;}
.y7f{bottom:647.637333pt;}
.y28{bottom:647.654933pt;}
.y20c{bottom:647.670933pt;}
.y19f{bottom:648.080000pt;}
.y178{bottom:650.506667pt;}
.y10a{bottom:652.976000pt;}
.y22a{bottom:653.357333pt;}
.y12b{bottom:654.240000pt;}
.y2fc{bottom:656.188000pt;}
.y2df{bottom:658.206267pt;}
.y9{bottom:662.803200pt;}
.y177{bottom:663.306667pt;}
.y1c1{bottom:665.176533pt;}
.ya5{bottom:665.657067pt;}
.y31b{bottom:665.780000pt;}
.y4c{bottom:666.293333pt;}
.y7e{bottom:666.308000pt;}
.y27{bottom:666.325600pt;}
.y1ef{bottom:666.333333pt;}
.y229{bottom:672.028000pt;}
.y12a{bottom:674.240000pt;}
.y2de{bottom:676.876933pt;}
.y1c0{bottom:677.976533pt;}
.y176{bottom:683.306667pt;}
.ya4{bottom:684.327733pt;}
.y2fb{bottom:684.450667pt;}
.y4b{bottom:684.964000pt;}
.y7d{bottom:684.978667pt;}
.y26{bottom:684.996267pt;}
.y20b{bottom:685.000000pt;}
.y8{bottom:691.603200pt;}
.y19e{bottom:693.666667pt;}
.y129{bottom:694.240000pt;}
.y2dd{bottom:695.547600pt;}
.y175{bottom:696.106667pt;}
.y228{bottom:696.697333pt;}
.y1bf{bottom:697.976533pt;}
.ya3{bottom:702.998400pt;}
.y2fa{bottom:703.121333pt;}
.y4a{bottom:703.634667pt;}
.y7c{bottom:703.649333pt;}
.y25{bottom:703.666933pt;}
.y19d{bottom:706.466667pt;}
.y174{bottom:708.906667pt;}
.y1be{bottom:710.776533pt;}
.y2cd{bottom:713.901333pt;}
.y128{bottom:714.240000pt;}
.y19c{bottom:719.266667pt;}
.ya2{bottom:721.669067pt;}
.y2f9{bottom:721.792000pt;}
.y49{bottom:722.305333pt;}
.y7b{bottom:722.320000pt;}
.y24{bottom:722.337600pt;}
.y2dc{bottom:723.810267pt;}
.y173{bottom:728.906667pt;}
.y7{bottom:730.003200pt;}
.y1bd{bottom:730.776533pt;}
.y127{bottom:734.240000pt;}
.y227{bottom:734.508000pt;}
.y19b{bottom:739.266667pt;}
.ya1{bottom:740.339733pt;}
.y48{bottom:740.976000pt;}
.y247{bottom:740.990667pt;}
.y172{bottom:741.706667pt;}
.y2db{bottom:742.480933pt;}
.y1bc{bottom:743.576533pt;}
.y2f8{bottom:750.054667pt;}
.y19a{bottom:752.066667pt;}
.y126{bottom:754.240000pt;}
.y171{bottom:754.506667pt;}
.ya0{bottom:759.010400pt;}
.y226{bottom:759.177333pt;}
.y47{bottom:759.646667pt;}
.y246{bottom:759.661333pt;}
.y23{bottom:759.666667pt;}
.y2da{bottom:761.151600pt;}
.y1bb{bottom:763.576533pt;}
.y6{bottom:768.403200pt;}
.y2f7{bottom:768.725333pt;}
.y199{bottom:772.066667pt;}
.y125{bottom:774.240000pt;}
.y170{bottom:774.506667pt;}
.y9f{bottom:777.681067pt;}
.y46{bottom:778.317333pt;}
.y245{bottom:778.332000pt;}
.y1ba{bottom:783.670667pt;}
.y198{bottom:784.866667pt;}
.y16f{bottom:787.306667pt;}
.y2f6{bottom:787.396000pt;}
.y157{bottom:788.584000pt;}
.y2d9{bottom:789.414267pt;}
.y124{bottom:794.240000pt;}
.y9e{bottom:796.351733pt;}
.y45{bottom:796.988000pt;}
.y244{bottom:797.002667pt;}
.y197{bottom:797.666667pt;}
.y16e{bottom:800.106667pt;}
.y2d8{bottom:808.084933pt;}
.y196{bottom:810.466667pt;}
.y16d{bottom:812.906667pt;}
.y123{bottom:814.240000pt;}
.y9d{bottom:815.022400pt;}
.y22{bottom:815.658667pt;}
.y243{bottom:815.673333pt;}
.y195{bottom:830.466667pt;}
.y16c{bottom:832.906667pt;}
.y21{bottom:834.329333pt;}
.ybb{bottom:847.587867pt;}
.y24f{bottom:847.588000pt;}
.y9c{bottom:852.351600pt;}
.y1b9{bottom:852.945600pt;}
.y20{bottom:853.000000pt;}
.h2{height:23.253333pt;}
.hb{height:29.525333pt;}
.h1{height:34.945312pt;}
.hc{height:37.205333pt;}
.h6{height:40.597333pt;}
.ha{height:41.856000pt;}
.he{height:42.710938pt;}
.h9{height:46.593750pt;}
.hd{height:46.625000pt;}
.h8{height:50.218667pt;}
.h7{height:51.157333pt;}
.h3{height:74.015625pt;}
.h5{height:75.187500pt;}
.h4{height:98.687500pt;}
.h0{height:960.000000pt;}
.w0{width:672.000000pt;}
.x0{left:0.000000pt;}
.x11{left:96.000000pt;}
.x2{left:97.088933pt;}
.x3{left:102.488933pt;}
.x1b{left:113.317733pt;}
.x12{left:115.200000pt;}
.x17{left:120.579200pt;}
.x16{left:122.680533pt;}
.x13{left:127.666667pt;}
.x6{left:143.212667pt;}
.x14{left:150.773467pt;}
.x1a{left:154.643067pt;}
.x15{left:156.394800pt;}
.x18{left:164.842933pt;}
.x8{left:166.814133pt;}
.x7{left:169.055867pt;}
.x1c{left:199.536400pt;}
.xe{left:225.585067pt;}
.xb{left:227.212933pt;}
.xc{left:239.400933pt;}
.x5{left:258.016400pt;}
.x9{left:261.076533pt;}
.xd{left:274.468933pt;}
.xa{left:278.946800pt;}
.x19{left:281.802933pt;}
.x10{left:288.900933pt;}
.x4{left:297.095600pt;}
.xf{left:304.829067pt;}
.x1{left:325.989200pt;}
.x1d{left:403.013733pt;}
}




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