
    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_1ad2d86720784c1d54058fac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.931000;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_ada81c0cff8f8fadb9ccb2f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_66477bd1bc8f403226de7494.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_ada81c0cff8f8fadb9ccb2f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.700000;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_e7a196df67187eb76ee69167.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951000;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_aa2a0e4074d8a09f7c32953a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938000;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_340fd96ba4188c04a318f4bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.137000;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_dd09f7f08d466787fa1572ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.045000;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_5c64c2f2f4a7141297fbee73.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d695815eb3afe38f89507db3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.848145;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_b79e280d51f16ffba87011e5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d78101d30cfcdaf03816dccf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.137000;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_dd09f7f08d466787fa1572ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.045000;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_f156d629e4716bd71e79f1e3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_6f68682e05695e32909cfb24.woff2')format("woff");}.fff{font-family:fff;line-height:0.984000;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_9031ea811512e8527ad228f3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_cc8454116a1ecc0a2be91f8f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.806000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.818600px;}
.ls36{letter-spacing:-1.170000px;}
.ls2e{letter-spacing:-1.080000px;}
.ls20{letter-spacing:-0.990000px;}
.ls18{letter-spacing:-0.660000px;}
.ls3a{letter-spacing:-0.585000px;}
.lsa{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.330000px;}
.ls9{letter-spacing:-0.084000px;}
.ls8{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000300px;}
.ls2c{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.013800px;}
.ls33{letter-spacing:0.058500px;}
.ls1b{letter-spacing:0.066000px;}
.ls5{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.084000px;}
.ls22{letter-spacing:0.099000px;}
.ls12{letter-spacing:0.132000px;}
.ls28{letter-spacing:0.142500px;}
.ls17{letter-spacing:0.158400px;}
.ls1f{letter-spacing:0.165000px;}
.ls16{letter-spacing:0.198000px;}
.ls29{letter-spacing:0.210000px;}
.ls39{letter-spacing:0.234000px;}
.ls2a{letter-spacing:0.262500px;}
.ls15{letter-spacing:0.264000px;}
.ls2f{letter-spacing:0.290400px;}
.ls1e{letter-spacing:0.297000px;}
.lsf{letter-spacing:0.330000px;}
.ls13{letter-spacing:0.396000px;}
.ls1a{letter-spacing:0.462000px;}
.ls32{letter-spacing:0.526500px;}
.ls19{letter-spacing:0.528000px;}
.ls3b{letter-spacing:0.585000px;}
.lsb{letter-spacing:0.588000px;}
.ls25{letter-spacing:0.594000px;}
.ls31{letter-spacing:0.643500px;}
.ls1c{letter-spacing:0.660000px;}
.ls1d{letter-spacing:0.726000px;}
.ls34{letter-spacing:0.760500px;}
.ls37{letter-spacing:0.819000px;}
.ls24{letter-spacing:0.825000px;}
.ls27{letter-spacing:0.858000px;}
.ls38{letter-spacing:0.877500px;}
.ls10{letter-spacing:0.990000px;}
.ls35{letter-spacing:1.053000px;}
.ls11{letter-spacing:1.188000px;}
.ls21{letter-spacing:1.254000px;}
.ls2{letter-spacing:1.260000px;}
.ls2b{letter-spacing:1.320000px;}
.ls30{letter-spacing:1.462500px;}
.ls2d{letter-spacing:1.848000px;}
.ls1{letter-spacing:9.990000px;}
.ls7{letter-spacing:20.352000px;}
.ls4{letter-spacing:21.312000px;}
.ls6{letter-spacing:22.272000px;}
.lse{letter-spacing:140.256600px;}
.lsd{letter-spacing:188.256600px;}
.ls14{letter-spacing:719.973600px;}
.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;}
}
.ws1{word-spacing:-60.000000px;}
.ws78{word-spacing:-16.500000px;}
.ws93{word-spacing:-15.840000px;}
.wscb{word-spacing:-15.502500px;}
.wsca{word-spacing:-15.444000px;}
.wsb2{word-spacing:-15.151500px;}
.ws38{word-spacing:-12.000000px;}
.ws8b{word-spacing:-10.725000px;}
.ws0{word-spacing:-8.904000px;}
.ws97{word-spacing:-8.531250px;}
.wsb5{word-spacing:-1.462500px;}
.wsb8{word-spacing:-1.053000px;}
.wsab{word-spacing:-0.990000px;}
.wscf{word-spacing:-0.819000px;}
.wsc8{word-spacing:-0.760500px;}
.wsac{word-spacing:-0.660000px;}
.wsb7{word-spacing:-0.643500px;}
.ws8{word-spacing:-0.630000px;}
.ws9{word-spacing:-0.588000px;}
.wse9{word-spacing:-0.585000px;}
.wse3{word-spacing:-0.409500px;}
.ws66{word-spacing:-0.066000px;}
.wsd3{word-spacing:-0.058500px;}
.ws4{word-spacing:0.000000px;}
.ws89{word-spacing:0.066000px;}
.ws62{word-spacing:0.132000px;}
.ws9b{word-spacing:0.157500px;}
.wsf3{word-spacing:0.175500px;}
.ws16{word-spacing:0.252000px;}
.ws3c{word-spacing:0.264000px;}
.ws90{word-spacing:0.315000px;}
.ws5b{word-spacing:0.330000px;}
.wsef{word-spacing:0.351000px;}
.ws17{word-spacing:0.396000px;}
.ws6{word-spacing:0.420000px;}
.ws7{word-spacing:0.462000px;}
.wsee{word-spacing:0.526500px;}
.ws72{word-spacing:0.528000px;}
.wsdd{word-spacing:0.585000px;}
.ws29{word-spacing:0.594000px;}
.wsd5{word-spacing:0.643500px;}
.wsd{word-spacing:0.648000px;}
.ws39{word-spacing:0.660000px;}
.wsa7{word-spacing:0.682500px;}
.wsf1{word-spacing:0.702000px;}
.ws37{word-spacing:0.726000px;}
.wsdf{word-spacing:0.760500px;}
.ws60{word-spacing:0.792000px;}
.ws6b{word-spacing:0.858000px;}
.wsc9{word-spacing:0.877500px;}
.ws54{word-spacing:0.924000px;}
.wsa{word-spacing:0.936000px;}
.ws9e{word-spacing:0.945000px;}
.ws3d{word-spacing:0.990000px;}
.wsd0{word-spacing:0.994500px;}
.wsc1{word-spacing:1.053000px;}
.ws5c{word-spacing:1.056000px;}
.wsad{word-spacing:1.080000px;}
.ws13{word-spacing:1.116000px;}
.ws21{word-spacing:1.122000px;}
.wse0{word-spacing:1.170000px;}
.wsf{word-spacing:1.188000px;}
.ws12{word-spacing:1.224000px;}
.wsd7{word-spacing:1.228500px;}
.ws82{word-spacing:1.254000px;}
.wsa9{word-spacing:1.260000px;}
.wse8{word-spacing:1.287000px;}
.wsa6{word-spacing:1.312500px;}
.ws56{word-spacing:1.320000px;}
.wsd9{word-spacing:1.345500px;}
.ws74{word-spacing:1.386000px;}
.ws34{word-spacing:1.452000px;}
.wsc3{word-spacing:1.462500px;}
.ws8d{word-spacing:1.518000px;}
.wsa8{word-spacing:1.522500px;}
.ws10{word-spacing:1.548000px;}
.wsea{word-spacing:1.579500px;}
.ws1a{word-spacing:1.584000px;}
.ws7d{word-spacing:1.650000px;}
.ws5f{word-spacing:1.716000px;}
.ws4a{word-spacing:1.782000px;}
.wsaf{word-spacing:1.785000px;}
.wsb{word-spacing:1.836000px;}
.ws83{word-spacing:1.848000px;}
.wsd6{word-spacing:1.872000px;}
.ws69{word-spacing:1.914000px;}
.wsb4{word-spacing:1.930500px;}
.ws99{word-spacing:1.942500px;}
.ws11{word-spacing:1.944000px;}
.ws7b{word-spacing:1.980000px;}
.wse7{word-spacing:1.989000px;}
.ws41{word-spacing:2.046000px;}
.wsc0{word-spacing:2.047500px;}
.ws18{word-spacing:2.052000px;}
.wsa1{word-spacing:2.100000px;}
.wsd4{word-spacing:2.106000px;}
.ws42{word-spacing:2.112000px;}
.wse{word-spacing:2.160000px;}
.wsdc{word-spacing:2.164500px;}
.ws50{word-spacing:2.178000px;}
.ws20{word-spacing:2.244000px;}
.ws23{word-spacing:2.310000px;}
.wse1{word-spacing:2.340000px;}
.ws1b{word-spacing:2.376000px;}
.ws5a{word-spacing:2.442000px;}
.ws49{word-spacing:2.508000px;}
.ws15{word-spacing:2.520000px;}
.ws36{word-spacing:2.574000px;}
.wsc2{word-spacing:2.632500px;}
.ws87{word-spacing:2.640000px;}
.ws9c{word-spacing:2.677500px;}
.wsc4{word-spacing:2.691000px;}
.ws71{word-spacing:2.706000px;}
.ws9d{word-spacing:2.730000px;}
.ws1c{word-spacing:2.736000px;}
.ws48{word-spacing:2.772000px;}
.ws4b{word-spacing:2.838000px;}
.ws68{word-spacing:2.904000px;}
.wse5{word-spacing:2.925000px;}
.ws3e{word-spacing:2.970000px;}
.ws91{word-spacing:2.992500px;}
.ws7f{word-spacing:3.036000px;}
.wscc{word-spacing:3.042000px;}
.ws2b{word-spacing:3.102000px;}
.ws14{word-spacing:3.168000px;}
.ws4d{word-spacing:3.234000px;}
.wsa0{word-spacing:3.255000px;}
.wsc7{word-spacing:3.276000px;}
.ws51{word-spacing:3.300000px;}
.ws3a{word-spacing:3.366000px;}
.wsde{word-spacing:3.393000px;}
.ws61{word-spacing:3.432000px;}
.wsb9{word-spacing:3.451500px;}
.ws1e{word-spacing:3.498000px;}
.ws64{word-spacing:3.564000px;}
.wsa5{word-spacing:3.622500px;}
.ws32{word-spacing:3.630000px;}
.wsba{word-spacing:3.685500px;}
.ws70{word-spacing:3.696000px;}
.wsd2{word-spacing:3.744000px;}
.ws88{word-spacing:3.762000px;}
.ws19{word-spacing:3.816000px;}
.ws46{word-spacing:3.828000px;}
.wseb{word-spacing:3.861000px;}
.ws59{word-spacing:3.894000px;}
.wsda{word-spacing:3.919500px;}
.ws4e{word-spacing:3.960000px;}
.wsbd{word-spacing:3.978000px;}
.wsb0{word-spacing:3.990000px;}
.ws35{word-spacing:4.026000px;}
.ws94{word-spacing:4.092000px;}
.wsaa{word-spacing:4.095000px;}
.ws28{word-spacing:4.158000px;}
.ws4c{word-spacing:4.224000px;}
.ws6c{word-spacing:4.290000px;}
.wsdb{word-spacing:4.329000px;}
.ws3f{word-spacing:4.356000px;}
.ws8f{word-spacing:4.357500px;}
.ws6d{word-spacing:4.422000px;}
.ws6a{word-spacing:4.488000px;}
.wsc{word-spacing:4.500000px;}
.wse2{word-spacing:4.504500px;}
.ws2e{word-spacing:4.554000px;}
.ws8a{word-spacing:4.620000px;}
.ws5{word-spacing:4.662000px;}
.ws2f{word-spacing:4.686000px;}
.wsa3{word-spacing:4.725000px;}
.ws53{word-spacing:4.752000px;}
.ws22{word-spacing:4.818000px;}
.ws40{word-spacing:4.884000px;}
.ws2c{word-spacing:4.950000px;}
.ws55{word-spacing:5.016000px;}
.wsec{word-spacing:5.031000px;}
.ws81{word-spacing:5.082000px;}
.ws27{word-spacing:5.148000px;}
.ws7e{word-spacing:5.214000px;}
.ws7c{word-spacing:5.280000px;}
.wsa4{word-spacing:5.302500px;}
.ws5d{word-spacing:5.346000px;}
.wsc5{word-spacing:5.382000px;}
.ws3b{word-spacing:5.412000px;}
.ws75{word-spacing:5.478000px;}
.wsbc{word-spacing:5.499000px;}
.ws6e{word-spacing:5.544000px;}
.ws77{word-spacing:5.610000px;}
.wsf2{word-spacing:5.616000px;}
.wsb1{word-spacing:5.670000px;}
.wsd8{word-spacing:5.674500px;}
.ws85{word-spacing:5.676000px;}
.wsae{word-spacing:5.722500px;}
.wsed{word-spacing:5.733000px;}
.ws1d{word-spacing:5.742000px;}
.wsd1{word-spacing:5.791500px;}
.ws95{word-spacing:5.808000px;}
.ws4f{word-spacing:5.874000px;}
.ws47{word-spacing:5.940000px;}
.ws9f{word-spacing:5.985000px;}
.ws58{word-spacing:6.006000px;}
.wsc6{word-spacing:6.025500px;}
.ws80{word-spacing:6.072000px;}
.wsbe{word-spacing:6.084000px;}
.ws33{word-spacing:6.138000px;}
.wse6{word-spacing:6.201000px;}
.ws73{word-spacing:6.204000px;}
.wsf0{word-spacing:6.259500px;}
.ws1f{word-spacing:6.270000px;}
.wsce{word-spacing:6.318000px;}
.ws92{word-spacing:6.336000px;}
.wscd{word-spacing:6.376500px;}
.ws2d{word-spacing:6.402000px;}
.ws8e{word-spacing:6.468000px;}
.wsa2{word-spacing:6.534000px;}
.ws9a{word-spacing:6.562500px;}
.ws79{word-spacing:6.600000px;}
.ws98{word-spacing:6.666000px;}
.ws57{word-spacing:6.732000px;}
.wsbb{word-spacing:6.786000px;}
.ws2a{word-spacing:6.798000px;}
.ws7a{word-spacing:6.864000px;}
.wsbf{word-spacing:6.903000px;}
.ws44{word-spacing:6.930000px;}
.wse4{word-spacing:6.961500px;}
.ws6f{word-spacing:6.996000px;}
.ws76{word-spacing:7.062000px;}
.ws25{word-spacing:7.128000px;}
.ws67{word-spacing:7.194000px;}
.ws52{word-spacing:7.260000px;}
.wsb6{word-spacing:7.312500px;}
.ws63{word-spacing:7.326000px;}
.ws30{word-spacing:7.392000px;}
.ws31{word-spacing:7.458000px;}
.ws8c{word-spacing:7.590000px;}
.ws96{word-spacing:7.656000px;}
.ws5e{word-spacing:7.722000px;}
.ws65{word-spacing:7.788000px;}
.ws24{word-spacing:7.854000px;}
.ws86{word-spacing:7.920000px;}
.ws84{word-spacing:8.052000px;}
.ws45{word-spacing:8.118000px;}
.ws43{word-spacing:8.184000px;}
.ws26{word-spacing:8.250000px;}
.ws3{word-spacing:10.656000px;}
.ws2{word-spacing:13.344000px;}
.wsb3{word-spacing:18.360000px;}
._5{margin-left:-16.920000px;}
._c{margin-left:-14.736000px;}
._a{margin-left:-13.662000px;}
._4{margin-left:-11.676000px;}
._b{margin-left:-10.626000px;}
._1{margin-left:-1.008000px;}
._9{width:1.056000px;}
._7{width:2.376000px;}
._10{width:3.498000px;}
._2{width:4.620000px;}
._6{width:5.742000px;}
._0{width:7.014000px;}
._8{width:8.896800px;}
._3{width:12.012000px;}
._e{width:15.833400px;}
._f{width:18.360000px;}
._d{width:33.000000px;}
.fc1{color:rgb(227,227,227);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:34.125000px;}
.fs9{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fsa{font-size:42.900000px;}
.fs2{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:52.500000px;}
.fs6{font-size:54.000000px;}
.fsd{font-size:58.500000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs8{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:63.779550px;}
.y1ee{bottom:114.752625px;}
.y21b{bottom:114.775125px;}
.yc1{bottom:114.783600px;}
.y196{bottom:114.786225px;}
.y1d7{bottom:114.797475px;}
.yc{bottom:114.801600px;}
.y100{bottom:114.948600px;}
.y241{bottom:115.047600px;}
.y29f{bottom:116.319300px;}
.y15d{bottom:116.416950px;}
.y176{bottom:116.417100px;}
.y10d{bottom:116.433600px;}
.ydb{bottom:116.450100px;}
.y20b{bottom:118.740600px;}
.y26f{bottom:120.994500px;}
.y5b{bottom:121.323750px;}
.y9b{bottom:125.426100px;}
.y134{bottom:125.426250px;}
.yb{bottom:126.803100px;}
.y80{bottom:128.437050px;}
.y1ed{bottom:129.150750px;}
.y21a{bottom:129.173250px;}
.y195{bottom:129.184350px;}
.y29e{bottom:132.436050px;}
.yc0{bottom:133.065600px;}
.y1d6{bottom:133.133100px;}
.yff{bottom:133.230600px;}
.y240{bottom:133.313100px;}
.y15c{bottom:134.418450px;}
.y175{bottom:134.418600px;}
.y10c{bottom:134.435100px;}
.yda{bottom:134.451600px;}
.y26e{bottom:137.111250px;}
.y5a{bottom:139.325250px;}
.ya{bottom:143.051550px;}
.y9a{bottom:143.427600px;}
.y133{bottom:143.427750px;}
.y20a{bottom:143.514975px;}
.y1ec{bottom:143.548875px;}
.y219{bottom:143.571375px;}
.y194{bottom:143.582475px;}
.y7f{bottom:146.438550px;}
.y29d{bottom:148.552800px;}
.yfe{bottom:151.512600px;}
.y23f{bottom:151.578600px;}
.y15b{bottom:152.419950px;}
.y174{bottom:152.420100px;}
.y10b{bottom:152.436600px;}
.yd9{bottom:152.453100px;}
.y26d{bottom:153.228000px;}
.y9{bottom:157.174050px;}
.y59{bottom:157.326750px;}
.y209{bottom:157.913100px;}
.y1eb{bottom:157.947000px;}
.y218{bottom:157.969500px;}
.ybf{bottom:160.340100px;}
.y99{bottom:161.429100px;}
.y132{bottom:161.429250px;}
.y193{bottom:161.918100px;}
.y29c{bottom:164.669550px;}
.y26c{bottom:169.344750px;}
.yfd{bottom:169.794600px;}
.y23e{bottom:169.844100px;}
.y15a{bottom:170.421450px;}
.y173{bottom:170.421600px;}
.y1d5{bottom:170.423100px;}
.y10a{bottom:170.438100px;}
.y208{bottom:172.311225px;}
.y1ea{bottom:172.345125px;}
.y217{bottom:172.367625px;}
.y8{bottom:173.428050px;}
.y7e{bottom:173.432550px;}
.y58{bottom:175.328250px;}
.ybe{bottom:178.622100px;}
.y1b7{bottom:179.414100px;}
.y98{bottom:179.430600px;}
.y131{bottom:179.430750px;}
.yd8{bottom:179.447100px;}
.y29b{bottom:180.786300px;}
.y7{bottom:185.429550px;}
.y26b{bottom:185.461500px;}
.y207{bottom:186.709350px;}
.y1e9{bottom:186.743250px;}
.y159{bottom:188.422950px;}
.y197{bottom:188.423100px;}
.y1d4{bottom:188.424600px;}
.y109{bottom:188.439600px;}
.y216{bottom:190.703250px;}
.y7d{bottom:191.434050px;}
.y57{bottom:193.329750px;}
.y29a{bottom:196.903050px;}
.ybd{bottom:196.904100px;}
.yfc{bottom:197.085600px;}
.y23d{bottom:197.118600px;}
.y172{bottom:197.415600px;}
.y11e{bottom:197.432100px;}
.y130{bottom:197.432250px;}
.yd7{bottom:197.448600px;}
.y206{bottom:201.107475px;}
.y1e8{bottom:201.141375px;}
.y26a{bottom:201.578250px;}
.y6{bottom:201.683550px;}
.y215{bottom:205.095750px;}
.y1a1{bottom:206.424450px;}
.y97{bottom:206.424600px;}
.y1d3{bottom:206.426100px;}
.y108{bottom:206.441100px;}
.y7c{bottom:209.435550px;}
.y56{bottom:211.331250px;}
.y299{bottom:213.019800px;}
.y5{bottom:213.685050px;}
.ybc{bottom:215.186100px;}
.yfb{bottom:215.367600px;}
.y23c{bottom:215.384100px;}
.y158{bottom:215.416950px;}
.y171{bottom:215.417100px;}
.y12f{bottom:215.433750px;}
.yd6{bottom:215.450100px;}
.y205{bottom:215.505600px;}
.y1e7{bottom:215.539500px;}
.y269{bottom:217.695000px;}
.y1a0{bottom:224.425950px;}
.y96{bottom:224.426100px;}
.y1d2{bottom:224.427600px;}
.y192{bottom:224.430600px;}
.y7b{bottom:227.437050px;}
.y298{bottom:229.136550px;}
.y55{bottom:229.332750px;}
.y204{bottom:229.903725px;}
.y1e6{bottom:229.937625px;}
.y157{bottom:233.418450px;}
.y170{bottom:233.418600px;}
.y107{bottom:233.435100px;}
.y12e{bottom:233.435250px;}
.yd5{bottom:233.451600px;}
.yfa{bottom:233.649600px;}
.y268{bottom:233.811750px;}
.y31{bottom:238.759200px;}
.y1b5{bottom:242.427450px;}
.y95{bottom:242.427600px;}
.y191{bottom:242.432100px;}
.ybb{bottom:242.460600px;}
.y203{bottom:244.301850px;}
.y297{bottom:245.253300px;}
.y7a{bottom:245.438550px;}
.y54{bottom:247.334250px;}
.y1e5{bottom:248.273250px;}
.y267{bottom:249.928500px;}
.y156{bottom:251.419950px;}
.y16f{bottom:251.420100px;}
.y1d1{bottom:251.421600px;}
.y106{bottom:251.436600px;}
.y12d{bottom:251.436750px;}
.y214{bottom:251.436900px;}
.yd4{bottom:251.453100px;}
.y23b{bottom:251.915100px;}
.yf9{bottom:251.931600px;}
.y30{bottom:253.510200px;}
.y202{bottom:258.699975px;}
.y1b4{bottom:260.428950px;}
.y94{bottom:260.429100px;}
.y190{bottom:260.433600px;}
.yba{bottom:260.742600px;}
.y296{bottom:261.370050px;}
.y79{bottom:263.440050px;}
.y2f{bottom:264.013200px;}
.y53{bottom:265.335750px;}
.y266{bottom:266.045250px;}
.y155{bottom:269.421450px;}
.y16e{bottom:269.421600px;}
.y1d0{bottom:269.423100px;}
.y105{bottom:269.438100px;}
.y12c{bottom:269.438250px;}
.y213{bottom:269.438400px;}
.yd3{bottom:269.454600px;}
.y23a{bottom:270.180600px;}
.y201{bottom:273.098100px;}
.y2e{bottom:274.516200px;}
.y295{bottom:277.486800px;}
.y1b3{bottom:278.430450px;}
.y93{bottom:278.430600px;}
.y18f{bottom:278.435100px;}
.yb9{bottom:279.024600px;}
.yf8{bottom:279.222600px;}
.y78{bottom:281.441550px;}
.y265{bottom:282.162000px;}
.y52{bottom:283.337250px;}
.y2d{bottom:285.019200px;}
.y154{bottom:287.422950px;}
.y16d{bottom:287.423100px;}
.y1cf{bottom:287.424600px;}
.y104{bottom:287.439600px;}
.y212{bottom:287.439900px;}
.y200{bottom:287.496225px;}
.y239{bottom:288.446100px;}
.y294{bottom:293.603550px;}
.y2c{bottom:295.522200px;}
.y1b6{bottom:296.415600px;}
.y1b2{bottom:296.431950px;}
.y92{bottom:296.432100px;}
.y12b{bottom:296.432250px;}
.y18e{bottom:296.436600px;}
.y1e4{bottom:296.439750px;}
.yd2{bottom:296.448600px;}
.yb8{bottom:297.306600px;}
.yf7{bottom:297.504600px;}
.y264{bottom:298.278750px;}
.y1ff{bottom:301.894350px;}
.y153{bottom:305.424450px;}
.y1a2{bottom:305.424600px;}
.y1ce{bottom:305.426100px;}
.y103{bottom:305.441100px;}
.y211{bottom:305.441400px;}
.y2b{bottom:306.025200px;}
.y293{bottom:309.720300px;}
.y51{bottom:310.331250px;}
.y263{bottom:314.395500px;}
.y16c{bottom:314.417100px;}
.y91{bottom:314.433600px;}
.y12a{bottom:314.433750px;}
.y18d{bottom:314.438100px;}
.y1e3{bottom:314.441250px;}
.yd1{bottom:314.450100px;}
.yb7{bottom:315.588600px;}
.y238{bottom:315.720600px;}
.yf6{bottom:315.786600px;}
.y1fe{bottom:316.292475px;}
.y2a{bottom:316.528200px;}
.y77{bottom:317.444250px;}
.y152{bottom:323.425950px;}
.y11d{bottom:323.426100px;}
.y1cd{bottom:323.427600px;}
.y210{bottom:323.439900px;}
.y102{bottom:323.442600px;}
.y292{bottom:325.837050px;}
.y50{bottom:328.332750px;}
.y262{bottom:330.512250px;}
.y16b{bottom:332.418600px;}
.y90{bottom:332.435100px;}
.y129{bottom:332.435250px;}
.y18c{bottom:332.439600px;}
.y1e2{bottom:332.442750px;}
.yd0{bottom:332.451600px;}
.y29{bottom:333.784200px;}
.yb6{bottom:333.870600px;}
.y237{bottom:333.986100px;}
.yf5{bottom:334.068600px;}
.y1fd{bottom:334.628100px;}
.y151{bottom:341.427450px;}
.y11c{bottom:341.427600px;}
.y1cc{bottom:341.429100px;}
.y20f{bottom:341.441400px;}
.y291{bottom:341.953800px;}
.y4f{bottom:346.334250px;}
.y261{bottom:346.629000px;}
.y16a{bottom:350.420100px;}
.y8f{bottom:350.436600px;}
.y128{bottom:350.436750px;}
.y18b{bottom:350.441100px;}
.y1e1{bottom:350.444250px;}
.ycf{bottom:350.453100px;}
.yb5{bottom:352.152600px;}
.y236{bottom:352.251600px;}
.y290{bottom:358.070550px;}
.y150{bottom:359.428950px;}
.y11b{bottom:359.429100px;}
.y1cb{bottom:359.430600px;}
.y20e{bottom:359.442900px;}
.y28{bottom:361.018050px;}
.yf4{bottom:361.359600px;}
.y260{bottom:362.745750px;}
.y4e{bottom:364.335750px;}
.y169{bottom:368.421600px;}
.y8e{bottom:368.438100px;}
.y127{bottom:368.438250px;}
.y18a{bottom:368.442600px;}
.y1e0{bottom:368.445750px;}
.yb4{bottom:370.434600px;}
.y235{bottom:370.517100px;}
.y28f{bottom:374.187300px;}
.y27{bottom:375.769050px;}
.y19f{bottom:377.430450px;}
.y76{bottom:377.430600px;}
.y1ca{bottom:377.432100px;}
.y1fc{bottom:377.442750px;}
.yce{bottom:377.447100px;}
.y25f{bottom:378.862500px;}
.yf3{bottom:379.641600px;}
.y4d{bottom:382.337250px;}
.y26{bottom:386.272050px;}
.y14f{bottom:386.422950px;}
.y168{bottom:386.423100px;}
.y8d{bottom:386.439600px;}
.y126{bottom:386.439750px;}
.y189{bottom:386.444100px;}
.y1df{bottom:386.447250px;}
.y234{bottom:388.782600px;}
.y28e{bottom:390.304050px;}
.y25e{bottom:394.979250px;}
.y19e{bottom:395.431950px;}
.y75{bottom:395.432100px;}
.y1c9{bottom:395.433600px;}
.y20d{bottom:395.439750px;}
.y1fb{bottom:395.444250px;}
.ycd{bottom:395.448600px;}
.y25{bottom:396.775050px;}
.yb3{bottom:397.709100px;}
.yf2{bottom:397.923600px;}
.y4c{bottom:400.338750px;}
.y14e{bottom:404.424450px;}
.y167{bottom:404.424600px;}
.y8c{bottom:404.441100px;}
.y125{bottom:404.441250px;}
.y188{bottom:404.445600px;}
.y28d{bottom:406.420800px;}
.y233{bottom:407.048100px;}
.y24{bottom:407.278050px;}
.y25d{bottom:411.096000px;}
.y1b1{bottom:413.433450px;}
.y74{bottom:413.433600px;}
.y1c8{bottom:413.435100px;}
.y1de{bottom:413.441250px;}
.y1fa{bottom:413.445750px;}
.ycc{bottom:413.450100px;}
.yb2{bottom:415.991100px;}
.yf1{bottom:416.205600px;}
.y20c{bottom:416.445750px;}
.y23{bottom:417.781050px;}
.y4b{bottom:418.340250px;}
.y14d{bottom:422.425950px;}
.y166{bottom:422.426100px;}
.y8b{bottom:422.442600px;}
.y124{bottom:422.442750px;}
.y187{bottom:422.447100px;}
.y28c{bottom:422.537550px;}
.y232{bottom:425.313600px;}
.y25c{bottom:427.212750px;}
.y22{bottom:428.284050px;}
.y1b0{bottom:431.434950px;}
.y73{bottom:431.435100px;}
.y1c7{bottom:431.436600px;}
.y1dd{bottom:431.442750px;}
.y1f9{bottom:431.447250px;}
.ycb{bottom:431.451600px;}
.yb1{bottom:434.273100px;}
.yf0{bottom:434.487600px;}
.y4a{bottom:436.341750px;}
.y28b{bottom:438.654300px;}
.y21{bottom:438.787050px;}
.y14c{bottom:440.427450px;}
.y11a{bottom:440.427600px;}
.y8a{bottom:440.444100px;}
.y123{bottom:440.444250px;}
.y186{bottom:440.448600px;}
.y25b{bottom:443.329500px;}
.y231{bottom:443.579100px;}
.y20{bottom:449.290050px;}
.y1af{bottom:449.436450px;}
.y72{bottom:449.436600px;}
.y1dc{bottom:449.444250px;}
.yca{bottom:449.453100px;}
.yb0{bottom:452.555100px;}
.y49{bottom:454.343250px;}
.y28a{bottom:454.771050px;}
.y14b{bottom:458.428950px;}
.y119{bottom:458.429100px;}
.y1c6{bottom:458.430600px;}
.y1f8{bottom:458.441250px;}
.y25a{bottom:459.446250px;}
.yef{bottom:461.778600px;}
.y1f{bottom:466.546050px;}
.y1ae{bottom:467.437950px;}
.y71{bottom:467.438100px;}
.y185{bottom:467.442600px;}
.y1db{bottom:467.445750px;}
.yaf{bottom:470.837100px;}
.y230{bottom:470.853600px;}
.y289{bottom:470.887800px;}
.y48{bottom:472.344750px;}
.y259{bottom:475.563000px;}
.y14a{bottom:476.430450px;}
.y118{bottom:476.430600px;}
.y1c5{bottom:476.432100px;}
.y122{bottom:476.441100px;}
.y1f7{bottom:476.442750px;}
.yc9{bottom:476.447100px;}
.yee{bottom:480.060600px;}
.y165{bottom:485.423100px;}
.y1ad{bottom:485.439450px;}
.y89{bottom:485.439600px;}
.y184{bottom:485.444100px;}
.y1da{bottom:485.447250px;}
.y288{bottom:487.004550px;}
.y22f{bottom:489.119100px;}
.y258{bottom:491.679750px;}
.y1e{bottom:493.779750px;}
.y149{bottom:494.431950px;}
.y70{bottom:494.432100px;}
.y1c4{bottom:494.433600px;}
.y1f6{bottom:494.439750px;}
.yc8{bottom:494.448600px;}
.y121{bottom:497.447100px;}
.yae{bottom:498.111600px;}
.yed{bottom:498.342600px;}
.y47{bottom:499.338750px;}
.y287{bottom:503.121300px;}
.y164{bottom:503.424600px;}
.y1ac{bottom:503.440950px;}
.y88{bottom:503.441100px;}
.y183{bottom:503.445600px;}
.y1d9{bottom:503.448750px;}
.y22e{bottom:507.384600px;}
.y257{bottom:507.796500px;}
.y1d{bottom:508.530750px;}
.y19d{bottom:512.433450px;}
.y6f{bottom:512.433600px;}
.y1c3{bottom:512.435100px;}
.y1f5{bottom:512.441250px;}
.yad{bottom:516.393600px;}
.yec{bottom:516.624600px;}
.y46{bottom:517.340250px;}
.y1c{bottom:519.033750px;}
.y286{bottom:519.238050px;}
.y148{bottom:521.425950px;}
.y87{bottom:521.442600px;}
.y182{bottom:521.447100px;}
.y1d8{bottom:521.450250px;}
.y256{bottom:523.913250px;}
.y22d{bottom:525.650100px;}
.y1b{bottom:529.536750px;}
.y19c{bottom:530.434950px;}
.y6e{bottom:530.435100px;}
.y1c2{bottom:530.436600px;}
.y1f4{bottom:530.442750px;}
.yac{bottom:534.675600px;}
.yeb{bottom:534.906600px;}
.y45{bottom:535.341750px;}
.y285{bottom:535.354800px;}
.y147{bottom:539.427450px;}
.y163{bottom:539.427600px;}
.y86{bottom:539.444100px;}
.y181{bottom:539.448600px;}
.y255{bottom:540.030000px;}
.y1a{bottom:540.039750px;}
.y22c{bottom:543.915600px;}
.y1ab{bottom:548.436450px;}
.y6d{bottom:548.436600px;}
.y1c1{bottom:548.438100px;}
.y1f3{bottom:548.445600px;}
.y19{bottom:550.542750px;}
.y284{bottom:551.471550px;}
.yab{bottom:552.957600px;}
.y44{bottom:553.343250px;}
.y254{bottom:556.146750px;}
.y146{bottom:557.428950px;}
.y117{bottom:557.429100px;}
.y85{bottom:557.445600px;}
.y180{bottom:557.450100px;}
.y18{bottom:561.045750px;}
.y22b{bottom:562.181100px;}
.yea{bottom:562.197600px;}
.y1aa{bottom:566.437950px;}
.y6c{bottom:566.438100px;}
.y1c0{bottom:566.439600px;}
.y1f2{bottom:566.447100px;}
.y283{bottom:567.588300px;}
.yaa{bottom:571.239600px;}
.y43{bottom:571.344750px;}
.y17{bottom:571.548750px;}
.y253{bottom:572.263500px;}
.y145{bottom:575.430450px;}
.y120{bottom:575.430600px;}
.yc7{bottom:575.447100px;}
.y22a{bottom:580.446600px;}
.y16{bottom:582.051750px;}
.y282{bottom:583.705050px;}
.y1a9{bottom:584.439450px;}
.y6b{bottom:584.439600px;}
.y1bf{bottom:584.441100px;}
.y17f{bottom:584.444100px;}
.y1f1{bottom:584.448600px;}
.y252{bottom:588.380250px;}
.y42{bottom:589.346250px;}
.ya9{bottom:589.521600px;}
.y144{bottom:593.431950px;}
.y116{bottom:593.432100px;}
.yc6{bottom:593.448600px;}
.ye9{bottom:598.481100px;}
.y229{bottom:598.712100px;}
.y15{bottom:599.307900px;}
.y281{bottom:599.821800px;}
.y1a8{bottom:602.440950px;}
.y6a{bottom:602.441100px;}
.y1be{bottom:602.442600px;}
.y17e{bottom:602.445600px;}
.y1f0{bottom:602.450100px;}
.y251{bottom:604.497000px;}
.y41{bottom:607.347750px;}
.ya8{bottom:607.803600px;}
.y143{bottom:611.433450px;}
.y115{bottom:611.433600px;}
.yc5{bottom:611.450100px;}
.y280{bottom:615.938550px;}
.ye8{bottom:616.763100px;}
.y162{bottom:620.426100px;}
.y1a7{bottom:620.442450px;}
.y69{bottom:620.442600px;}
.y1bd{bottom:620.444100px;}
.y17d{bottom:620.447100px;}
.y1ef{bottom:620.451600px;}
.y250{bottom:620.613750px;}
.y40{bottom:625.349250px;}
.y228{bottom:625.986600px;}
.y19b{bottom:629.434950px;}
.y114{bottom:629.435100px;}
.y14{bottom:630.813600px;}
.y27f{bottom:632.055300px;}
.ye7{bottom:635.045100px;}
.ya7{bottom:635.078100px;}
.y24f{bottom:636.730500px;}
.y142{bottom:638.427450px;}
.y161{bottom:638.427600px;}
.y84{bottom:638.444100px;}
.y17c{bottom:638.448600px;}
.y3f{bottom:643.350750px;}
.y227{bottom:644.252100px;}
.y19a{bottom:647.436450px;}
.y68{bottom:647.436600px;}
.y1bc{bottom:647.438100px;}
.y27e{bottom:648.172050px;}
.y24e{bottom:652.847250px;}
.ye6{bottom:653.327100px;}
.ya6{bottom:653.360100px;}
.y141{bottom:656.428950px;}
.y160{bottom:656.429100px;}
.y83{bottom:656.445600px;}
.y13{bottom:657.813600px;}
.y3e{bottom:661.352250px;}
.y226{bottom:662.517600px;}
.y27d{bottom:664.288800px;}
.y199{bottom:665.437950px;}
.y67{bottom:665.438100px;}
.y1bb{bottom:665.439600px;}
.y17b{bottom:665.442600px;}
.y24d{bottom:668.964000px;}
.ya5{bottom:671.642100px;}
.y140{bottom:674.430450px;}
.y15f{bottom:674.430600px;}
.y82{bottom:674.447100px;}
.y3d{bottom:679.353750px;}
.y27c{bottom:680.405550px;}
.ye5{bottom:680.618100px;}
.y225{bottom:680.783100px;}
.y198{bottom:683.439450px;}
.y66{bottom:683.439600px;}
.y1ba{bottom:683.441100px;}
.y17a{bottom:683.444100px;}
.y24c{bottom:685.080750px;}
.y12{bottom:688.575600px;}
.ya4{bottom:689.924100px;}
.y13f{bottom:692.431950px;}
.y15e{bottom:692.432100px;}
.yc4{bottom:692.448600px;}
.y27b{bottom:696.522300px;}
.y3c{bottom:697.355250px;}
.ye4{bottom:698.900100px;}
.y224{bottom:699.048600px;}
.y24b{bottom:701.197500px;}
.y179{bottom:701.440950px;}
.y65{bottom:701.441100px;}
.y1b9{bottom:701.442600px;}
.y11{bottom:708.069600px;}
.ya3{bottom:708.206100px;}
.y13e{bottom:710.433450px;}
.y11f{bottom:710.433600px;}
.yc3{bottom:710.450100px;}
.y27a{bottom:712.639050px;}
.ye3{bottom:717.182100px;}
.y24a{bottom:717.314250px;}
.y178{bottom:719.442450px;}
.y64{bottom:719.442600px;}
.y1b8{bottom:719.444100px;}
.y3b{bottom:724.349250px;}
.y223{bottom:726.323100px;}
.y13d{bottom:728.434950px;}
.y113{bottom:728.435100px;}
.yc2{bottom:728.451600px;}
.y279{bottom:728.755800px;}
.y249{bottom:733.431000px;}
.ye2{bottom:735.464100px;}
.ya2{bottom:735.480600px;}
.y177{bottom:737.443950px;}
.y63{bottom:737.444100px;}
.y10{bottom:740.325450px;}
.y3a{bottom:742.350750px;}
.y222{bottom:744.588600px;}
.y278{bottom:744.872550px;}
.y13c{bottom:746.436450px;}
.y112{bottom:746.436600px;}
.y248{bottom:749.547750px;}
.ye1{bottom:753.746100px;}
.ya1{bottom:753.762600px;}
.y1a6{bottom:755.445450px;}
.y62{bottom:755.445600px;}
.y39{bottom:760.352250px;}
.y277{bottom:760.989300px;}
.y221{bottom:762.854100px;}
.y13b{bottom:764.437950px;}
.y111{bottom:764.438100px;}
.y247{bottom:765.664500px;}
.yf{bottom:767.325450px;}
.ye0{bottom:772.028100px;}
.ya0{bottom:772.044600px;}
.y1a5{bottom:773.446950px;}
.y61{bottom:773.447100px;}
.y276{bottom:777.106050px;}
.y38{bottom:778.353750px;}
.y220{bottom:781.119600px;}
.y246{bottom:781.781250px;}
.y13a{bottom:782.439450px;}
.y110{bottom:782.439600px;}
.y9f{bottom:790.326600px;}
.y1a4{bottom:791.448450px;}
.y60{bottom:791.448600px;}
.y275{bottom:793.222800px;}
.ye{bottom:794.325450px;}
.y37{bottom:796.355250px;}
.y245{bottom:797.898000px;}
.ydf{bottom:799.319100px;}
.y21f{bottom:799.385100px;}
.y139{bottom:800.440950px;}
.y10f{bottom:800.441100px;}
.y9e{bottom:808.608600px;}
.y274{bottom:809.339550px;}
.y1a3{bottom:809.449950px;}
.y5f{bottom:809.450100px;}
.y244{bottom:814.014750px;}
.y36{bottom:814.356750px;}
.yde{bottom:817.601100px;}
.y21e{bottom:817.650600px;}
.y138{bottom:818.442450px;}
.y10e{bottom:818.442600px;}
.yd{bottom:821.325450px;}
.y273{bottom:825.456300px;}
.y9d{bottom:826.890600px;}
.y5e{bottom:827.451600px;}
.y243{bottom:830.131500px;}
.ydd{bottom:835.883100px;}
.y21d{bottom:835.916100px;}
.y137{bottom:836.443950px;}
.y81{bottom:836.444100px;}
.y272{bottom:841.573050px;}
.y9c{bottom:845.172600px;}
.y101{bottom:845.453100px;}
.y242{bottom:846.248250px;}
.y35{bottom:850.353600px;}
.ydc{bottom:854.165100px;}
.y21c{bottom:854.181600px;}
.y136{bottom:854.445450px;}
.y5d{bottom:854.445600px;}
.y271{bottom:857.689800px;}
.y34{bottom:871.359600px;}
.y135{bottom:872.446950px;}
.y5c{bottom:872.447100px;}
.y270{bottom:873.806550px;}
.y1{bottom:892.729200px;}
.y2{bottom:892.729950px;}
.y33{bottom:909.921150px;}
.y4{bottom:927.409950px;}
.y3{bottom:940.909950px;}
.hd{height:27.360000px;}
.h13{height:29.108625px;}
.hc{height:30.708000px;}
.h5{height:30.912000px;}
.h3{height:31.206000px;}
.h4{height:31.500000px;}
.h2{height:35.328000px;}
.ha{height:36.456000px;}
.h18{height:39.900000px;}
.he{height:40.944000px;}
.h1e{height:44.460000px;}
.h14{height:44.782500px;}
.h9{height:46.062000px;}
.h15{height:47.190000px;}
.h1d{height:49.900500px;}
.h10{height:50.160000px;}
.h7{height:54.720000px;}
.h8{height:56.298000px;}
.h17{height:56.328600px;}
.h1a{height:56.387700px;}
.h16{height:56.400300px;}
.h1c{height:56.405700px;}
.h1b{height:56.411700px;}
.h12{height:56.412300px;}
.h19{height:56.430300px;}
.h11{height:57.288000px;}
.hf{height:62.496000px;}
.hb{height:67.687500px;}
.h6{height:78.120000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:106.299000px;}
.xa{left:115.080900px;}
.x6{left:125.510400px;}
.x13{left:127.559100px;}
.x10{left:128.799150px;}
.x3{left:131.845650px;}
.x12{left:139.302000px;}
.x14{left:151.674150px;}
.x4{left:166.455600px;}
.x7{left:167.495400px;}
.x5{left:172.080600px;}
.x8{left:213.305400px;}
.x9{left:216.402900px;}
.xc{left:247.020150px;}
.xb{left:264.274500px;}
.xf{left:330.437550px;}
.xe{left:334.133550px;}
.xd{left:335.960550px;}
.x1{left:445.299000px;}
.x11{left:456.217200px;}
@media print{
.v2{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.616533pt;}
.ls36{letter-spacing:-1.040000pt;}
.ls2e{letter-spacing:-0.960000pt;}
.ls20{letter-spacing:-0.880000pt;}
.ls18{letter-spacing:-0.586667pt;}
.ls3a{letter-spacing:-0.520000pt;}
.lsa{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.293333pt;}
.ls9{letter-spacing:-0.074667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000267pt;}
.ls2c{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.012267pt;}
.ls33{letter-spacing:0.052000pt;}
.ls1b{letter-spacing:0.058667pt;}
.ls5{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.074667pt;}
.ls22{letter-spacing:0.088000pt;}
.ls12{letter-spacing:0.117333pt;}
.ls28{letter-spacing:0.126667pt;}
.ls17{letter-spacing:0.140800pt;}
.ls1f{letter-spacing:0.146667pt;}
.ls16{letter-spacing:0.176000pt;}
.ls29{letter-spacing:0.186667pt;}
.ls39{letter-spacing:0.208000pt;}
.ls2a{letter-spacing:0.233333pt;}
.ls15{letter-spacing:0.234667pt;}
.ls2f{letter-spacing:0.258133pt;}
.ls1e{letter-spacing:0.264000pt;}
.lsf{letter-spacing:0.293333pt;}
.ls13{letter-spacing:0.352000pt;}
.ls1a{letter-spacing:0.410667pt;}
.ls32{letter-spacing:0.468000pt;}
.ls19{letter-spacing:0.469333pt;}
.ls3b{letter-spacing:0.520000pt;}
.lsb{letter-spacing:0.522667pt;}
.ls25{letter-spacing:0.528000pt;}
.ls31{letter-spacing:0.572000pt;}
.ls1c{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.645333pt;}
.ls34{letter-spacing:0.676000pt;}
.ls37{letter-spacing:0.728000pt;}
.ls24{letter-spacing:0.733333pt;}
.ls27{letter-spacing:0.762667pt;}
.ls38{letter-spacing:0.780000pt;}
.ls10{letter-spacing:0.880000pt;}
.ls35{letter-spacing:0.936000pt;}
.ls11{letter-spacing:1.056000pt;}
.ls21{letter-spacing:1.114667pt;}
.ls2{letter-spacing:1.120000pt;}
.ls2b{letter-spacing:1.173333pt;}
.ls30{letter-spacing:1.300000pt;}
.ls2d{letter-spacing:1.642667pt;}
.ls1{letter-spacing:8.880000pt;}
.ls7{letter-spacing:18.090667pt;}
.ls4{letter-spacing:18.944000pt;}
.ls6{letter-spacing:19.797333pt;}
.lse{letter-spacing:124.672533pt;}
.lsd{letter-spacing:167.339200pt;}
.ls14{letter-spacing:639.976533pt;}
.ws1{word-spacing:-53.333333pt;}
.ws78{word-spacing:-14.666667pt;}
.ws93{word-spacing:-14.080000pt;}
.wscb{word-spacing:-13.780000pt;}
.wsca{word-spacing:-13.728000pt;}
.wsb2{word-spacing:-13.468000pt;}
.ws38{word-spacing:-10.666667pt;}
.ws8b{word-spacing:-9.533333pt;}
.ws0{word-spacing:-7.914667pt;}
.ws97{word-spacing:-7.583333pt;}
.wsb5{word-spacing:-1.300000pt;}
.wsb8{word-spacing:-0.936000pt;}
.wsab{word-spacing:-0.880000pt;}
.wscf{word-spacing:-0.728000pt;}
.wsc8{word-spacing:-0.676000pt;}
.wsac{word-spacing:-0.586667pt;}
.wsb7{word-spacing:-0.572000pt;}
.ws8{word-spacing:-0.560000pt;}
.ws9{word-spacing:-0.522667pt;}
.wse9{word-spacing:-0.520000pt;}
.wse3{word-spacing:-0.364000pt;}
.ws66{word-spacing:-0.058667pt;}
.wsd3{word-spacing:-0.052000pt;}
.ws4{word-spacing:0.000000pt;}
.ws89{word-spacing:0.058667pt;}
.ws62{word-spacing:0.117333pt;}
.ws9b{word-spacing:0.140000pt;}
.wsf3{word-spacing:0.156000pt;}
.ws16{word-spacing:0.224000pt;}
.ws3c{word-spacing:0.234667pt;}
.ws90{word-spacing:0.280000pt;}
.ws5b{word-spacing:0.293333pt;}
.wsef{word-spacing:0.312000pt;}
.ws17{word-spacing:0.352000pt;}
.ws6{word-spacing:0.373333pt;}
.ws7{word-spacing:0.410667pt;}
.wsee{word-spacing:0.468000pt;}
.ws72{word-spacing:0.469333pt;}
.wsdd{word-spacing:0.520000pt;}
.ws29{word-spacing:0.528000pt;}
.wsd5{word-spacing:0.572000pt;}
.wsd{word-spacing:0.576000pt;}
.ws39{word-spacing:0.586667pt;}
.wsa7{word-spacing:0.606667pt;}
.wsf1{word-spacing:0.624000pt;}
.ws37{word-spacing:0.645333pt;}
.wsdf{word-spacing:0.676000pt;}
.ws60{word-spacing:0.704000pt;}
.ws6b{word-spacing:0.762667pt;}
.wsc9{word-spacing:0.780000pt;}
.ws54{word-spacing:0.821333pt;}
.wsa{word-spacing:0.832000pt;}
.ws9e{word-spacing:0.840000pt;}
.ws3d{word-spacing:0.880000pt;}
.wsd0{word-spacing:0.884000pt;}
.wsc1{word-spacing:0.936000pt;}
.ws5c{word-spacing:0.938667pt;}
.wsad{word-spacing:0.960000pt;}
.ws13{word-spacing:0.992000pt;}
.ws21{word-spacing:0.997333pt;}
.wse0{word-spacing:1.040000pt;}
.wsf{word-spacing:1.056000pt;}
.ws12{word-spacing:1.088000pt;}
.wsd7{word-spacing:1.092000pt;}
.ws82{word-spacing:1.114667pt;}
.wsa9{word-spacing:1.120000pt;}
.wse8{word-spacing:1.144000pt;}
.wsa6{word-spacing:1.166667pt;}
.ws56{word-spacing:1.173333pt;}
.wsd9{word-spacing:1.196000pt;}
.ws74{word-spacing:1.232000pt;}
.ws34{word-spacing:1.290667pt;}
.wsc3{word-spacing:1.300000pt;}
.ws8d{word-spacing:1.349333pt;}
.wsa8{word-spacing:1.353333pt;}
.ws10{word-spacing:1.376000pt;}
.wsea{word-spacing:1.404000pt;}
.ws1a{word-spacing:1.408000pt;}
.ws7d{word-spacing:1.466667pt;}
.ws5f{word-spacing:1.525333pt;}
.ws4a{word-spacing:1.584000pt;}
.wsaf{word-spacing:1.586667pt;}
.wsb{word-spacing:1.632000pt;}
.ws83{word-spacing:1.642667pt;}
.wsd6{word-spacing:1.664000pt;}
.ws69{word-spacing:1.701333pt;}
.wsb4{word-spacing:1.716000pt;}
.ws99{word-spacing:1.726667pt;}
.ws11{word-spacing:1.728000pt;}
.ws7b{word-spacing:1.760000pt;}
.wse7{word-spacing:1.768000pt;}
.ws41{word-spacing:1.818667pt;}
.wsc0{word-spacing:1.820000pt;}
.ws18{word-spacing:1.824000pt;}
.wsa1{word-spacing:1.866667pt;}
.wsd4{word-spacing:1.872000pt;}
.ws42{word-spacing:1.877333pt;}
.wse{word-spacing:1.920000pt;}
.wsdc{word-spacing:1.924000pt;}
.ws50{word-spacing:1.936000pt;}
.ws20{word-spacing:1.994667pt;}
.ws23{word-spacing:2.053333pt;}
.wse1{word-spacing:2.080000pt;}
.ws1b{word-spacing:2.112000pt;}
.ws5a{word-spacing:2.170667pt;}
.ws49{word-spacing:2.229333pt;}
.ws15{word-spacing:2.240000pt;}
.ws36{word-spacing:2.288000pt;}
.wsc2{word-spacing:2.340000pt;}
.ws87{word-spacing:2.346667pt;}
.ws9c{word-spacing:2.380000pt;}
.wsc4{word-spacing:2.392000pt;}
.ws71{word-spacing:2.405333pt;}
.ws9d{word-spacing:2.426667pt;}
.ws1c{word-spacing:2.432000pt;}
.ws48{word-spacing:2.464000pt;}
.ws4b{word-spacing:2.522667pt;}
.ws68{word-spacing:2.581333pt;}
.wse5{word-spacing:2.600000pt;}
.ws3e{word-spacing:2.640000pt;}
.ws91{word-spacing:2.660000pt;}
.ws7f{word-spacing:2.698667pt;}
.wscc{word-spacing:2.704000pt;}
.ws2b{word-spacing:2.757333pt;}
.ws14{word-spacing:2.816000pt;}
.ws4d{word-spacing:2.874667pt;}
.wsa0{word-spacing:2.893333pt;}
.wsc7{word-spacing:2.912000pt;}
.ws51{word-spacing:2.933333pt;}
.ws3a{word-spacing:2.992000pt;}
.wsde{word-spacing:3.016000pt;}
.ws61{word-spacing:3.050667pt;}
.wsb9{word-spacing:3.068000pt;}
.ws1e{word-spacing:3.109333pt;}
.ws64{word-spacing:3.168000pt;}
.wsa5{word-spacing:3.220000pt;}
.ws32{word-spacing:3.226667pt;}
.wsba{word-spacing:3.276000pt;}
.ws70{word-spacing:3.285333pt;}
.wsd2{word-spacing:3.328000pt;}
.ws88{word-spacing:3.344000pt;}
.ws19{word-spacing:3.392000pt;}
.ws46{word-spacing:3.402667pt;}
.wseb{word-spacing:3.432000pt;}
.ws59{word-spacing:3.461333pt;}
.wsda{word-spacing:3.484000pt;}
.ws4e{word-spacing:3.520000pt;}
.wsbd{word-spacing:3.536000pt;}
.wsb0{word-spacing:3.546667pt;}
.ws35{word-spacing:3.578667pt;}
.ws94{word-spacing:3.637333pt;}
.wsaa{word-spacing:3.640000pt;}
.ws28{word-spacing:3.696000pt;}
.ws4c{word-spacing:3.754667pt;}
.ws6c{word-spacing:3.813333pt;}
.wsdb{word-spacing:3.848000pt;}
.ws3f{word-spacing:3.872000pt;}
.ws8f{word-spacing:3.873333pt;}
.ws6d{word-spacing:3.930667pt;}
.ws6a{word-spacing:3.989333pt;}
.wsc{word-spacing:4.000000pt;}
.wse2{word-spacing:4.004000pt;}
.ws2e{word-spacing:4.048000pt;}
.ws8a{word-spacing:4.106667pt;}
.ws5{word-spacing:4.144000pt;}
.ws2f{word-spacing:4.165333pt;}
.wsa3{word-spacing:4.200000pt;}
.ws53{word-spacing:4.224000pt;}
.ws22{word-spacing:4.282667pt;}
.ws40{word-spacing:4.341333pt;}
.ws2c{word-spacing:4.400000pt;}
.ws55{word-spacing:4.458667pt;}
.wsec{word-spacing:4.472000pt;}
.ws81{word-spacing:4.517333pt;}
.ws27{word-spacing:4.576000pt;}
.ws7e{word-spacing:4.634667pt;}
.ws7c{word-spacing:4.693333pt;}
.wsa4{word-spacing:4.713333pt;}
.ws5d{word-spacing:4.752000pt;}
.wsc5{word-spacing:4.784000pt;}
.ws3b{word-spacing:4.810667pt;}
.ws75{word-spacing:4.869333pt;}
.wsbc{word-spacing:4.888000pt;}
.ws6e{word-spacing:4.928000pt;}
.ws77{word-spacing:4.986667pt;}
.wsf2{word-spacing:4.992000pt;}
.wsb1{word-spacing:5.040000pt;}
.wsd8{word-spacing:5.044000pt;}
.ws85{word-spacing:5.045333pt;}
.wsae{word-spacing:5.086667pt;}
.wsed{word-spacing:5.096000pt;}
.ws1d{word-spacing:5.104000pt;}
.wsd1{word-spacing:5.148000pt;}
.ws95{word-spacing:5.162667pt;}
.ws4f{word-spacing:5.221333pt;}
.ws47{word-spacing:5.280000pt;}
.ws9f{word-spacing:5.320000pt;}
.ws58{word-spacing:5.338667pt;}
.wsc6{word-spacing:5.356000pt;}
.ws80{word-spacing:5.397333pt;}
.wsbe{word-spacing:5.408000pt;}
.ws33{word-spacing:5.456000pt;}
.wse6{word-spacing:5.512000pt;}
.ws73{word-spacing:5.514667pt;}
.wsf0{word-spacing:5.564000pt;}
.ws1f{word-spacing:5.573333pt;}
.wsce{word-spacing:5.616000pt;}
.ws92{word-spacing:5.632000pt;}
.wscd{word-spacing:5.668000pt;}
.ws2d{word-spacing:5.690667pt;}
.ws8e{word-spacing:5.749333pt;}
.wsa2{word-spacing:5.808000pt;}
.ws9a{word-spacing:5.833333pt;}
.ws79{word-spacing:5.866667pt;}
.ws98{word-spacing:5.925333pt;}
.ws57{word-spacing:5.984000pt;}
.wsbb{word-spacing:6.032000pt;}
.ws2a{word-spacing:6.042667pt;}
.ws7a{word-spacing:6.101333pt;}
.wsbf{word-spacing:6.136000pt;}
.ws44{word-spacing:6.160000pt;}
.wse4{word-spacing:6.188000pt;}
.ws6f{word-spacing:6.218667pt;}
.ws76{word-spacing:6.277333pt;}
.ws25{word-spacing:6.336000pt;}
.ws67{word-spacing:6.394667pt;}
.ws52{word-spacing:6.453333pt;}
.wsb6{word-spacing:6.500000pt;}
.ws63{word-spacing:6.512000pt;}
.ws30{word-spacing:6.570667pt;}
.ws31{word-spacing:6.629333pt;}
.ws8c{word-spacing:6.746667pt;}
.ws96{word-spacing:6.805333pt;}
.ws5e{word-spacing:6.864000pt;}
.ws65{word-spacing:6.922667pt;}
.ws24{word-spacing:6.981333pt;}
.ws86{word-spacing:7.040000pt;}
.ws84{word-spacing:7.157333pt;}
.ws45{word-spacing:7.216000pt;}
.ws43{word-spacing:7.274667pt;}
.ws26{word-spacing:7.333333pt;}
.ws3{word-spacing:9.472000pt;}
.ws2{word-spacing:11.861333pt;}
.wsb3{word-spacing:16.320000pt;}
._5{margin-left:-15.040000pt;}
._c{margin-left:-13.098667pt;}
._a{margin-left:-12.144000pt;}
._4{margin-left:-10.378667pt;}
._b{margin-left:-9.445333pt;}
._1{margin-left:-0.896000pt;}
._9{width:0.938667pt;}
._7{width:2.112000pt;}
._10{width:3.109333pt;}
._2{width:4.106667pt;}
._6{width:5.104000pt;}
._0{width:6.234667pt;}
._8{width:7.908267pt;}
._3{width:10.677333pt;}
._e{width:14.074133pt;}
._f{width:16.320000pt;}
._d{width:29.333333pt;}
.fsb{font-size:30.333333pt;}
.fs9{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fsa{font-size:38.133333pt;}
.fs2{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:46.666667pt;}
.fs6{font-size:48.000000pt;}
.fsd{font-size:52.000000pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs8{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:56.692933pt;}
.y1ee{bottom:102.002333pt;}
.y21b{bottom:102.022333pt;}
.yc1{bottom:102.029867pt;}
.y196{bottom:102.032200pt;}
.y1d7{bottom:102.042200pt;}
.yc{bottom:102.045867pt;}
.y100{bottom:102.176533pt;}
.y241{bottom:102.264533pt;}
.y29f{bottom:103.394933pt;}
.y15d{bottom:103.481733pt;}
.y176{bottom:103.481867pt;}
.y10d{bottom:103.496533pt;}
.ydb{bottom:103.511200pt;}
.y20b{bottom:105.547200pt;}
.y26f{bottom:107.550667pt;}
.y5b{bottom:107.843333pt;}
.y9b{bottom:111.489867pt;}
.y134{bottom:111.490000pt;}
.yb{bottom:112.713867pt;}
.y80{bottom:114.166267pt;}
.y1ed{bottom:114.800667pt;}
.y21a{bottom:114.820667pt;}
.y195{bottom:114.830533pt;}
.y29e{bottom:117.720933pt;}
.yc0{bottom:118.280533pt;}
.y1d6{bottom:118.340533pt;}
.yff{bottom:118.427200pt;}
.y240{bottom:118.500533pt;}
.y15c{bottom:119.483067pt;}
.y175{bottom:119.483200pt;}
.y10c{bottom:119.497867pt;}
.yda{bottom:119.512533pt;}
.y26e{bottom:121.876667pt;}
.y5a{bottom:123.844667pt;}
.ya{bottom:127.156933pt;}
.y9a{bottom:127.491200pt;}
.y133{bottom:127.491333pt;}
.y20a{bottom:127.568867pt;}
.y1ec{bottom:127.599000pt;}
.y219{bottom:127.619000pt;}
.y194{bottom:127.628867pt;}
.y7f{bottom:130.167600pt;}
.y29d{bottom:132.046933pt;}
.yfe{bottom:134.677867pt;}
.y23f{bottom:134.736533pt;}
.y15b{bottom:135.484400pt;}
.y174{bottom:135.484533pt;}
.y10b{bottom:135.499200pt;}
.yd9{bottom:135.513867pt;}
.y26d{bottom:136.202667pt;}
.y9{bottom:139.710267pt;}
.y59{bottom:139.846000pt;}
.y209{bottom:140.367200pt;}
.y1eb{bottom:140.397333pt;}
.y218{bottom:140.417333pt;}
.ybf{bottom:142.524533pt;}
.y99{bottom:143.492533pt;}
.y132{bottom:143.492667pt;}
.y193{bottom:143.927200pt;}
.y29c{bottom:146.372933pt;}
.y26c{bottom:150.528667pt;}
.yfd{bottom:150.928533pt;}
.y23e{bottom:150.972533pt;}
.y15a{bottom:151.485733pt;}
.y173{bottom:151.485867pt;}
.y1d5{bottom:151.487200pt;}
.y10a{bottom:151.500533pt;}
.y208{bottom:153.165533pt;}
.y1ea{bottom:153.195667pt;}
.y217{bottom:153.215667pt;}
.y8{bottom:154.158267pt;}
.y7e{bottom:154.162267pt;}
.y58{bottom:155.847333pt;}
.ybe{bottom:158.775200pt;}
.y1b7{bottom:159.479200pt;}
.y98{bottom:159.493867pt;}
.y131{bottom:159.494000pt;}
.yd8{bottom:159.508533pt;}
.y29b{bottom:160.698933pt;}
.y7{bottom:164.826267pt;}
.y26b{bottom:164.854667pt;}
.y207{bottom:165.963867pt;}
.y1e9{bottom:165.994000pt;}
.y159{bottom:167.487067pt;}
.y197{bottom:167.487200pt;}
.y1d4{bottom:167.488533pt;}
.y109{bottom:167.501867pt;}
.y216{bottom:169.514000pt;}
.y7d{bottom:170.163600pt;}
.y57{bottom:171.848667pt;}
.y29a{bottom:175.024933pt;}
.ybd{bottom:175.025867pt;}
.yfc{bottom:175.187200pt;}
.y23d{bottom:175.216533pt;}
.y172{bottom:175.480533pt;}
.y11e{bottom:175.495200pt;}
.y130{bottom:175.495333pt;}
.yd7{bottom:175.509867pt;}
.y206{bottom:178.762200pt;}
.y1e8{bottom:178.792333pt;}
.y26a{bottom:179.180667pt;}
.y6{bottom:179.274267pt;}
.y215{bottom:182.307333pt;}
.y1a1{bottom:183.488400pt;}
.y97{bottom:183.488533pt;}
.y1d3{bottom:183.489867pt;}
.y108{bottom:183.503200pt;}
.y7c{bottom:186.164933pt;}
.y56{bottom:187.850000pt;}
.y299{bottom:189.350933pt;}
.y5{bottom:189.942267pt;}
.ybc{bottom:191.276533pt;}
.yfb{bottom:191.437867pt;}
.y23c{bottom:191.452533pt;}
.y158{bottom:191.481733pt;}
.y171{bottom:191.481867pt;}
.y12f{bottom:191.496667pt;}
.yd6{bottom:191.511200pt;}
.y205{bottom:191.560533pt;}
.y1e7{bottom:191.590667pt;}
.y269{bottom:193.506667pt;}
.y1a0{bottom:199.489733pt;}
.y96{bottom:199.489867pt;}
.y1d2{bottom:199.491200pt;}
.y192{bottom:199.493867pt;}
.y7b{bottom:202.166267pt;}
.y298{bottom:203.676933pt;}
.y55{bottom:203.851333pt;}
.y204{bottom:204.358867pt;}
.y1e6{bottom:204.389000pt;}
.y157{bottom:207.483067pt;}
.y170{bottom:207.483200pt;}
.y107{bottom:207.497867pt;}
.y12e{bottom:207.498000pt;}
.yd5{bottom:207.512533pt;}
.yfa{bottom:207.688533pt;}
.y268{bottom:207.832667pt;}
.y31{bottom:212.230400pt;}
.y1b5{bottom:215.491067pt;}
.y95{bottom:215.491200pt;}
.y191{bottom:215.495200pt;}
.ybb{bottom:215.520533pt;}
.y203{bottom:217.157200pt;}
.y297{bottom:218.002933pt;}
.y7a{bottom:218.167600pt;}
.y54{bottom:219.852667pt;}
.y1e5{bottom:220.687333pt;}
.y267{bottom:222.158667pt;}
.y156{bottom:223.484400pt;}
.y16f{bottom:223.484533pt;}
.y1d1{bottom:223.485867pt;}
.y106{bottom:223.499200pt;}
.y12d{bottom:223.499333pt;}
.y214{bottom:223.499467pt;}
.yd4{bottom:223.513867pt;}
.y23b{bottom:223.924533pt;}
.yf9{bottom:223.939200pt;}
.y30{bottom:225.342400pt;}
.y202{bottom:229.955533pt;}
.y1b4{bottom:231.492400pt;}
.y94{bottom:231.492533pt;}
.y190{bottom:231.496533pt;}
.yba{bottom:231.771200pt;}
.y296{bottom:232.328933pt;}
.y79{bottom:234.168933pt;}
.y2f{bottom:234.678400pt;}
.y53{bottom:235.854000pt;}
.y266{bottom:236.484667pt;}
.y155{bottom:239.485733pt;}
.y16e{bottom:239.485867pt;}
.y1d0{bottom:239.487200pt;}
.y105{bottom:239.500533pt;}
.y12c{bottom:239.500667pt;}
.y213{bottom:239.500800pt;}
.yd3{bottom:239.515200pt;}
.y23a{bottom:240.160533pt;}
.y201{bottom:242.753867pt;}
.y2e{bottom:244.014400pt;}
.y295{bottom:246.654933pt;}
.y1b3{bottom:247.493733pt;}
.y93{bottom:247.493867pt;}
.y18f{bottom:247.497867pt;}
.yb9{bottom:248.021867pt;}
.yf8{bottom:248.197867pt;}
.y78{bottom:250.170267pt;}
.y265{bottom:250.810667pt;}
.y52{bottom:251.855333pt;}
.y2d{bottom:253.350400pt;}
.y154{bottom:255.487067pt;}
.y16d{bottom:255.487200pt;}
.y1cf{bottom:255.488533pt;}
.y104{bottom:255.501867pt;}
.y212{bottom:255.502133pt;}
.y200{bottom:255.552200pt;}
.y239{bottom:256.396533pt;}
.y294{bottom:260.980933pt;}
.y2c{bottom:262.686400pt;}
.y1b6{bottom:263.480533pt;}
.y1b2{bottom:263.495067pt;}
.y92{bottom:263.495200pt;}
.y12b{bottom:263.495333pt;}
.y18e{bottom:263.499200pt;}
.y1e4{bottom:263.502000pt;}
.yd2{bottom:263.509867pt;}
.yb8{bottom:264.272533pt;}
.yf7{bottom:264.448533pt;}
.y264{bottom:265.136667pt;}
.y1ff{bottom:268.350533pt;}
.y153{bottom:271.488400pt;}
.y1a2{bottom:271.488533pt;}
.y1ce{bottom:271.489867pt;}
.y103{bottom:271.503200pt;}
.y211{bottom:271.503467pt;}
.y2b{bottom:272.022400pt;}
.y293{bottom:275.306933pt;}
.y51{bottom:275.850000pt;}
.y263{bottom:279.462667pt;}
.y16c{bottom:279.481867pt;}
.y91{bottom:279.496533pt;}
.y12a{bottom:279.496667pt;}
.y18d{bottom:279.500533pt;}
.y1e3{bottom:279.503333pt;}
.yd1{bottom:279.511200pt;}
.yb7{bottom:280.523200pt;}
.y238{bottom:280.640533pt;}
.yf6{bottom:280.699200pt;}
.y1fe{bottom:281.148867pt;}
.y2a{bottom:281.358400pt;}
.y77{bottom:282.172667pt;}
.y152{bottom:287.489733pt;}
.y11d{bottom:287.489867pt;}
.y1cd{bottom:287.491200pt;}
.y210{bottom:287.502133pt;}
.y102{bottom:287.504533pt;}
.y292{bottom:289.632933pt;}
.y50{bottom:291.851333pt;}
.y262{bottom:293.788667pt;}
.y16b{bottom:295.483200pt;}
.y90{bottom:295.497867pt;}
.y129{bottom:295.498000pt;}
.y18c{bottom:295.501867pt;}
.y1e2{bottom:295.504667pt;}
.yd0{bottom:295.512533pt;}
.y29{bottom:296.697067pt;}
.yb6{bottom:296.773867pt;}
.y237{bottom:296.876533pt;}
.yf5{bottom:296.949867pt;}
.y1fd{bottom:297.447200pt;}
.y151{bottom:303.491067pt;}
.y11c{bottom:303.491200pt;}
.y1cc{bottom:303.492533pt;}
.y20f{bottom:303.503467pt;}
.y291{bottom:303.958933pt;}
.y4f{bottom:307.852667pt;}
.y261{bottom:308.114667pt;}
.y16a{bottom:311.484533pt;}
.y8f{bottom:311.499200pt;}
.y128{bottom:311.499333pt;}
.y18b{bottom:311.503200pt;}
.y1e1{bottom:311.506000pt;}
.ycf{bottom:311.513867pt;}
.yb5{bottom:313.024533pt;}
.y236{bottom:313.112533pt;}
.y290{bottom:318.284933pt;}
.y150{bottom:319.492400pt;}
.y11b{bottom:319.492533pt;}
.y1cb{bottom:319.493867pt;}
.y20e{bottom:319.504800pt;}
.y28{bottom:320.904933pt;}
.yf4{bottom:321.208533pt;}
.y260{bottom:322.440667pt;}
.y4e{bottom:323.854000pt;}
.y169{bottom:327.485867pt;}
.y8e{bottom:327.500533pt;}
.y127{bottom:327.500667pt;}
.y18a{bottom:327.504533pt;}
.y1e0{bottom:327.507333pt;}
.yb4{bottom:329.275200pt;}
.y235{bottom:329.348533pt;}
.y28f{bottom:332.610933pt;}
.y27{bottom:334.016933pt;}
.y19f{bottom:335.493733pt;}
.y76{bottom:335.493867pt;}
.y1ca{bottom:335.495200pt;}
.y1fc{bottom:335.504667pt;}
.yce{bottom:335.508533pt;}
.y25f{bottom:336.766667pt;}
.yf3{bottom:337.459200pt;}
.y4d{bottom:339.855333pt;}
.y26{bottom:343.352933pt;}
.y14f{bottom:343.487067pt;}
.y168{bottom:343.487200pt;}
.y8d{bottom:343.501867pt;}
.y126{bottom:343.502000pt;}
.y189{bottom:343.505867pt;}
.y1df{bottom:343.508667pt;}
.y234{bottom:345.584533pt;}
.y28e{bottom:346.936933pt;}
.y25e{bottom:351.092667pt;}
.y19e{bottom:351.495067pt;}
.y75{bottom:351.495200pt;}
.y1c9{bottom:351.496533pt;}
.y20d{bottom:351.502000pt;}
.y1fb{bottom:351.506000pt;}
.ycd{bottom:351.509867pt;}
.y25{bottom:352.688933pt;}
.yb3{bottom:353.519200pt;}
.yf2{bottom:353.709867pt;}
.y4c{bottom:355.856667pt;}
.y14e{bottom:359.488400pt;}
.y167{bottom:359.488533pt;}
.y8c{bottom:359.503200pt;}
.y125{bottom:359.503333pt;}
.y188{bottom:359.507200pt;}
.y28d{bottom:361.262933pt;}
.y233{bottom:361.820533pt;}
.y24{bottom:362.024933pt;}
.y25d{bottom:365.418667pt;}
.y1b1{bottom:367.496400pt;}
.y74{bottom:367.496533pt;}
.y1c8{bottom:367.497867pt;}
.y1de{bottom:367.503333pt;}
.y1fa{bottom:367.507333pt;}
.ycc{bottom:367.511200pt;}
.yb2{bottom:369.769867pt;}
.yf1{bottom:369.960533pt;}
.y20c{bottom:370.174000pt;}
.y23{bottom:371.360933pt;}
.y4b{bottom:371.858000pt;}
.y14d{bottom:375.489733pt;}
.y166{bottom:375.489867pt;}
.y8b{bottom:375.504533pt;}
.y124{bottom:375.504667pt;}
.y187{bottom:375.508533pt;}
.y28c{bottom:375.588933pt;}
.y232{bottom:378.056533pt;}
.y25c{bottom:379.744667pt;}
.y22{bottom:380.696933pt;}
.y1b0{bottom:383.497733pt;}
.y73{bottom:383.497867pt;}
.y1c7{bottom:383.499200pt;}
.y1dd{bottom:383.504667pt;}
.y1f9{bottom:383.508667pt;}
.ycb{bottom:383.512533pt;}
.yb1{bottom:386.020533pt;}
.yf0{bottom:386.211200pt;}
.y4a{bottom:387.859333pt;}
.y28b{bottom:389.914933pt;}
.y21{bottom:390.032933pt;}
.y14c{bottom:391.491067pt;}
.y11a{bottom:391.491200pt;}
.y8a{bottom:391.505867pt;}
.y123{bottom:391.506000pt;}
.y186{bottom:391.509867pt;}
.y25b{bottom:394.070667pt;}
.y231{bottom:394.292533pt;}
.y20{bottom:399.368933pt;}
.y1af{bottom:399.499067pt;}
.y72{bottom:399.499200pt;}
.y1dc{bottom:399.506000pt;}
.yca{bottom:399.513867pt;}
.yb0{bottom:402.271200pt;}
.y49{bottom:403.860667pt;}
.y28a{bottom:404.240933pt;}
.y14b{bottom:407.492400pt;}
.y119{bottom:407.492533pt;}
.y1c6{bottom:407.493867pt;}
.y1f8{bottom:407.503333pt;}
.y25a{bottom:408.396667pt;}
.yef{bottom:410.469867pt;}
.y1f{bottom:414.707600pt;}
.y1ae{bottom:415.500400pt;}
.y71{bottom:415.500533pt;}
.y185{bottom:415.504533pt;}
.y1db{bottom:415.507333pt;}
.yaf{bottom:418.521867pt;}
.y230{bottom:418.536533pt;}
.y289{bottom:418.566933pt;}
.y48{bottom:419.862000pt;}
.y259{bottom:422.722667pt;}
.y14a{bottom:423.493733pt;}
.y118{bottom:423.493867pt;}
.y1c5{bottom:423.495200pt;}
.y122{bottom:423.503200pt;}
.y1f7{bottom:423.504667pt;}
.yc9{bottom:423.508533pt;}
.yee{bottom:426.720533pt;}
.y165{bottom:431.487200pt;}
.y1ad{bottom:431.501733pt;}
.y89{bottom:431.501867pt;}
.y184{bottom:431.505867pt;}
.y1da{bottom:431.508667pt;}
.y288{bottom:432.892933pt;}
.y22f{bottom:434.772533pt;}
.y258{bottom:437.048667pt;}
.y1e{bottom:438.915333pt;}
.y149{bottom:439.495067pt;}
.y70{bottom:439.495200pt;}
.y1c4{bottom:439.496533pt;}
.y1f6{bottom:439.502000pt;}
.yc8{bottom:439.509867pt;}
.y121{bottom:442.175200pt;}
.yae{bottom:442.765867pt;}
.yed{bottom:442.971200pt;}
.y47{bottom:443.856667pt;}
.y287{bottom:447.218933pt;}
.y164{bottom:447.488533pt;}
.y1ac{bottom:447.503067pt;}
.y88{bottom:447.503200pt;}
.y183{bottom:447.507200pt;}
.y1d9{bottom:447.510000pt;}
.y22e{bottom:451.008533pt;}
.y257{bottom:451.374667pt;}
.y1d{bottom:452.027333pt;}
.y19d{bottom:455.496400pt;}
.y6f{bottom:455.496533pt;}
.y1c3{bottom:455.497867pt;}
.y1f5{bottom:455.503333pt;}
.yad{bottom:459.016533pt;}
.yec{bottom:459.221867pt;}
.y46{bottom:459.858000pt;}
.y1c{bottom:461.363333pt;}
.y286{bottom:461.544933pt;}
.y148{bottom:463.489733pt;}
.y87{bottom:463.504533pt;}
.y182{bottom:463.508533pt;}
.y1d8{bottom:463.511333pt;}
.y256{bottom:465.700667pt;}
.y22d{bottom:467.244533pt;}
.y1b{bottom:470.699333pt;}
.y19c{bottom:471.497733pt;}
.y6e{bottom:471.497867pt;}
.y1c2{bottom:471.499200pt;}
.y1f4{bottom:471.504667pt;}
.yac{bottom:475.267200pt;}
.yeb{bottom:475.472533pt;}
.y45{bottom:475.859333pt;}
.y285{bottom:475.870933pt;}
.y147{bottom:479.491067pt;}
.y163{bottom:479.491200pt;}
.y86{bottom:479.505867pt;}
.y181{bottom:479.509867pt;}
.y255{bottom:480.026667pt;}
.y1a{bottom:480.035333pt;}
.y22c{bottom:483.480533pt;}
.y1ab{bottom:487.499067pt;}
.y6d{bottom:487.499200pt;}
.y1c1{bottom:487.500533pt;}
.y1f3{bottom:487.507200pt;}
.y19{bottom:489.371333pt;}
.y284{bottom:490.196933pt;}
.yab{bottom:491.517867pt;}
.y44{bottom:491.860667pt;}
.y254{bottom:494.352667pt;}
.y146{bottom:495.492400pt;}
.y117{bottom:495.492533pt;}
.y85{bottom:495.507200pt;}
.y180{bottom:495.511200pt;}
.y18{bottom:498.707333pt;}
.y22b{bottom:499.716533pt;}
.yea{bottom:499.731200pt;}
.y1aa{bottom:503.500400pt;}
.y6c{bottom:503.500533pt;}
.y1c0{bottom:503.501867pt;}
.y1f2{bottom:503.508533pt;}
.y283{bottom:504.522933pt;}
.yaa{bottom:507.768533pt;}
.y43{bottom:507.862000pt;}
.y17{bottom:508.043333pt;}
.y253{bottom:508.678667pt;}
.y145{bottom:511.493733pt;}
.y120{bottom:511.493867pt;}
.yc7{bottom:511.508533pt;}
.y22a{bottom:515.952533pt;}
.y16{bottom:517.379333pt;}
.y282{bottom:518.848933pt;}
.y1a9{bottom:519.501733pt;}
.y6b{bottom:519.501867pt;}
.y1bf{bottom:519.503200pt;}
.y17f{bottom:519.505867pt;}
.y1f1{bottom:519.509867pt;}
.y252{bottom:523.004667pt;}
.y42{bottom:523.863333pt;}
.ya9{bottom:524.019200pt;}
.y144{bottom:527.495067pt;}
.y116{bottom:527.495200pt;}
.yc6{bottom:527.509867pt;}
.ye9{bottom:531.983200pt;}
.y229{bottom:532.188533pt;}
.y15{bottom:532.718133pt;}
.y281{bottom:533.174933pt;}
.y1a8{bottom:535.503067pt;}
.y6a{bottom:535.503200pt;}
.y1be{bottom:535.504533pt;}
.y17e{bottom:535.507200pt;}
.y1f0{bottom:535.511200pt;}
.y251{bottom:537.330667pt;}
.y41{bottom:539.864667pt;}
.ya8{bottom:540.269867pt;}
.y143{bottom:543.496400pt;}
.y115{bottom:543.496533pt;}
.yc5{bottom:543.511200pt;}
.y280{bottom:547.500933pt;}
.ye8{bottom:548.233867pt;}
.y162{bottom:551.489867pt;}
.y1a7{bottom:551.504400pt;}
.y69{bottom:551.504533pt;}
.y1bd{bottom:551.505867pt;}
.y17d{bottom:551.508533pt;}
.y1ef{bottom:551.512533pt;}
.y250{bottom:551.656667pt;}
.y40{bottom:555.866000pt;}
.y228{bottom:556.432533pt;}
.y19b{bottom:559.497733pt;}
.y114{bottom:559.497867pt;}
.y14{bottom:560.723200pt;}
.y27f{bottom:561.826933pt;}
.ye7{bottom:564.484533pt;}
.ya7{bottom:564.513867pt;}
.y24f{bottom:565.982667pt;}
.y142{bottom:567.491067pt;}
.y161{bottom:567.491200pt;}
.y84{bottom:567.505867pt;}
.y17c{bottom:567.509867pt;}
.y3f{bottom:571.867333pt;}
.y227{bottom:572.668533pt;}
.y19a{bottom:575.499067pt;}
.y68{bottom:575.499200pt;}
.y1bc{bottom:575.500533pt;}
.y27e{bottom:576.152933pt;}
.y24e{bottom:580.308667pt;}
.ye6{bottom:580.735200pt;}
.ya6{bottom:580.764533pt;}
.y141{bottom:583.492400pt;}
.y160{bottom:583.492533pt;}
.y83{bottom:583.507200pt;}
.y13{bottom:584.723200pt;}
.y3e{bottom:587.868667pt;}
.y226{bottom:588.904533pt;}
.y27d{bottom:590.478933pt;}
.y199{bottom:591.500400pt;}
.y67{bottom:591.500533pt;}
.y1bb{bottom:591.501867pt;}
.y17b{bottom:591.504533pt;}
.y24d{bottom:594.634667pt;}
.ya5{bottom:597.015200pt;}
.y140{bottom:599.493733pt;}
.y15f{bottom:599.493867pt;}
.y82{bottom:599.508533pt;}
.y3d{bottom:603.870000pt;}
.y27c{bottom:604.804933pt;}
.ye5{bottom:604.993867pt;}
.y225{bottom:605.140533pt;}
.y198{bottom:607.501733pt;}
.y66{bottom:607.501867pt;}
.y1ba{bottom:607.503200pt;}
.y17a{bottom:607.505867pt;}
.y24c{bottom:608.960667pt;}
.y12{bottom:612.067200pt;}
.ya4{bottom:613.265867pt;}
.y13f{bottom:615.495067pt;}
.y15e{bottom:615.495200pt;}
.yc4{bottom:615.509867pt;}
.y27b{bottom:619.130933pt;}
.y3c{bottom:619.871333pt;}
.ye4{bottom:621.244533pt;}
.y224{bottom:621.376533pt;}
.y24b{bottom:623.286667pt;}
.y179{bottom:623.503067pt;}
.y65{bottom:623.503200pt;}
.y1b9{bottom:623.504533pt;}
.y11{bottom:629.395200pt;}
.ya3{bottom:629.516533pt;}
.y13e{bottom:631.496400pt;}
.y11f{bottom:631.496533pt;}
.yc3{bottom:631.511200pt;}
.y27a{bottom:633.456933pt;}
.ye3{bottom:637.495200pt;}
.y24a{bottom:637.612667pt;}
.y178{bottom:639.504400pt;}
.y64{bottom:639.504533pt;}
.y1b8{bottom:639.505867pt;}
.y3b{bottom:643.866000pt;}
.y223{bottom:645.620533pt;}
.y13d{bottom:647.497733pt;}
.y113{bottom:647.497867pt;}
.yc2{bottom:647.512533pt;}
.y279{bottom:647.782933pt;}
.y249{bottom:651.938667pt;}
.ye2{bottom:653.745867pt;}
.ya2{bottom:653.760533pt;}
.y177{bottom:655.505733pt;}
.y63{bottom:655.505867pt;}
.y10{bottom:658.067067pt;}
.y3a{bottom:659.867333pt;}
.y222{bottom:661.856533pt;}
.y278{bottom:662.108933pt;}
.y13c{bottom:663.499067pt;}
.y112{bottom:663.499200pt;}
.y248{bottom:666.264667pt;}
.ye1{bottom:669.996533pt;}
.ya1{bottom:670.011200pt;}
.y1a6{bottom:671.507067pt;}
.y62{bottom:671.507200pt;}
.y39{bottom:675.868667pt;}
.y277{bottom:676.434933pt;}
.y221{bottom:678.092533pt;}
.y13b{bottom:679.500400pt;}
.y111{bottom:679.500533pt;}
.y247{bottom:680.590667pt;}
.yf{bottom:682.067067pt;}
.ye0{bottom:686.247200pt;}
.ya0{bottom:686.261867pt;}
.y1a5{bottom:687.508400pt;}
.y61{bottom:687.508533pt;}
.y276{bottom:690.760933pt;}
.y38{bottom:691.870000pt;}
.y220{bottom:694.328533pt;}
.y246{bottom:694.916667pt;}
.y13a{bottom:695.501733pt;}
.y110{bottom:695.501867pt;}
.y9f{bottom:702.512533pt;}
.y1a4{bottom:703.509733pt;}
.y60{bottom:703.509867pt;}
.y275{bottom:705.086933pt;}
.ye{bottom:706.067067pt;}
.y37{bottom:707.871333pt;}
.y245{bottom:709.242667pt;}
.ydf{bottom:710.505867pt;}
.y21f{bottom:710.564533pt;}
.y139{bottom:711.503067pt;}
.y10f{bottom:711.503200pt;}
.y9e{bottom:718.763200pt;}
.y274{bottom:719.412933pt;}
.y1a3{bottom:719.511067pt;}
.y5f{bottom:719.511200pt;}
.y244{bottom:723.568667pt;}
.y36{bottom:723.872667pt;}
.yde{bottom:726.756533pt;}
.y21e{bottom:726.800533pt;}
.y138{bottom:727.504400pt;}
.y10e{bottom:727.504533pt;}
.yd{bottom:730.067067pt;}
.y273{bottom:733.738933pt;}
.y9d{bottom:735.013867pt;}
.y5e{bottom:735.512533pt;}
.y243{bottom:737.894667pt;}
.ydd{bottom:743.007200pt;}
.y21d{bottom:743.036533pt;}
.y137{bottom:743.505733pt;}
.y81{bottom:743.505867pt;}
.y272{bottom:748.064933pt;}
.y9c{bottom:751.264533pt;}
.y101{bottom:751.513867pt;}
.y242{bottom:752.220667pt;}
.y35{bottom:755.869867pt;}
.ydc{bottom:759.257867pt;}
.y21c{bottom:759.272533pt;}
.y136{bottom:759.507067pt;}
.y5d{bottom:759.507200pt;}
.y271{bottom:762.390933pt;}
.y34{bottom:774.541867pt;}
.y135{bottom:775.508400pt;}
.y5c{bottom:775.508533pt;}
.y270{bottom:776.716933pt;}
.y1{bottom:793.537067pt;}
.y2{bottom:793.537733pt;}
.y33{bottom:808.818800pt;}
.y4{bottom:824.364400pt;}
.y3{bottom:836.364400pt;}
.hd{height:24.320000pt;}
.h13{height:25.874333pt;}
.hc{height:27.296000pt;}
.h5{height:27.477333pt;}
.h3{height:27.738667pt;}
.h4{height:28.000000pt;}
.h2{height:31.402667pt;}
.ha{height:32.405333pt;}
.h18{height:35.466667pt;}
.he{height:36.394667pt;}
.h1e{height:39.520000pt;}
.h14{height:39.806667pt;}
.h9{height:40.944000pt;}
.h15{height:41.946667pt;}
.h1d{height:44.356000pt;}
.h10{height:44.586667pt;}
.h7{height:48.640000pt;}
.h8{height:50.042667pt;}
.h17{height:50.069867pt;}
.h1a{height:50.122400pt;}
.h16{height:50.133600pt;}
.h1c{height:50.138400pt;}
.h1b{height:50.143733pt;}
.h12{height:50.144267pt;}
.h19{height:50.160267pt;}
.h11{height:50.922667pt;}
.hf{height:55.552000pt;}
.hb{height:60.166667pt;}
.h6{height:69.440000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:94.488000pt;}
.xa{left:102.294133pt;}
.x6{left:111.564800pt;}
.x13{left:113.385867pt;}
.x10{left:114.488133pt;}
.x3{left:117.196133pt;}
.x12{left:123.824000pt;}
.x14{left:134.821467pt;}
.x4{left:147.960533pt;}
.x7{left:148.884800pt;}
.x5{left:152.960533pt;}
.x8{left:189.604800pt;}
.x9{left:192.358133pt;}
.xc{left:219.573467pt;}
.xb{left:234.910667pt;}
.xf{left:293.722267pt;}
.xe{left:297.007600pt;}
.xd{left:298.631600pt;}
.x1{left:395.821333pt;}
.x11{left:405.526400pt;}
}




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