
    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_0131f5fe3cde0f3abbb43469.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d76ce9cfc7ea0a82ef00659f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_8c90f2aaf61aa40087ecf6ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4ded62e9975e9227ac79f47e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_2c82b531fd109a94917e2556.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.077000;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_50236be1d7319320731a4e25.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_65f57e27909a97e76134a579.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_b87e262e41a19c68b8e148f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;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_65415d97ea2915923dd340b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;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_986cbf5cfe944ce95b3a89d0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_7faa9a4dcecaa3e802355b4d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.934000;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_9d59452bbece37fb9352f333.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.943000;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_ac9697360fcc22c58531b8f1.woff2')format("woff");}.fff{font-family:fff;line-height:0.689000;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_d50f8e4a784508174e067680.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.857000;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_f7000ac3a26222da3db680b5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.911000;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:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.ls1d{letter-spacing:-1.350000px;}
.lsf{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.029027px;}
.ls1{letter-spacing:0.060000px;}
.lsd{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.409050px;}
.ls8{letter-spacing:0.409200px;}
.ls5{letter-spacing:0.409500px;}
.ls9{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.lse{letter-spacing:1.200000px;}
.ls18{letter-spacing:1.500000px;}
.lsa{letter-spacing:7.938000px;}
.ls1a{letter-spacing:9.157200px;}
.ls1b{letter-spacing:9.157800px;}
.ls19{letter-spacing:18.673800px;}
.ls17{letter-spacing:59.713747px;}
.lsb{letter-spacing:67.857600px;}
.ls6{letter-spacing:71.943600px;}
.ls15{letter-spacing:132.162499px;}
.ls16{letter-spacing:132.227974px;}
.ls14{letter-spacing:132.260712px;}
.ls13{letter-spacing:140.543375px;}
.ls12{letter-spacing:148.760563px;}
.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;}
}
.wsbc{word-spacing:-156.159306px;}
.wsbd{word-spacing:-147.942118px;}
.wsbe{word-spacing:-139.659455px;}
.wsc0{word-spacing:-139.626717px;}
.wsbf{word-spacing:-139.561241px;}
.wsc1{word-spacing:-67.112490px;}
.ws2{word-spacing:-18.228000px;}
.ws1{word-spacing:-13.986000px;}
.ws3b{word-spacing:-13.920000px;}
.ws5{word-spacing:-13.332000px;}
.ws3a{word-spacing:-12.900000px;}
.ws6{word-spacing:-12.720000px;}
.ws5f{word-spacing:-12.120000px;}
.wsea{word-spacing:-11.718000px;}
.wsae{word-spacing:-11.592000px;}
.wse1{word-spacing:-11.448000px;}
.wsad{word-spacing:-10.920000px;}
.wsb{word-spacing:-10.176000px;}
.wseb{word-spacing:-10.098000px;}
.wse9{word-spacing:-9.828000px;}
.wsa{word-spacing:-9.810000px;}
.ws7{word-spacing:-9.696000px;}
.ws4{word-spacing:-9.360000px;}
.ws8{word-spacing:-8.820000px;}
.ws150{word-spacing:-8.478000px;}
.wsaf{word-spacing:-8.268000px;}
.ws9{word-spacing:-8.232000px;}
.ws3{word-spacing:-6.879600px;}
.wsc2{word-spacing:-6.589220px;}
.ws60{word-spacing:-0.450000px;}
.ws103{word-spacing:-0.270000px;}
.wsd0{word-spacing:-0.029027px;}
.ws0{word-spacing:0.000000px;}
.wscd{word-spacing:0.360000px;}
.ws6c{word-spacing:0.600000px;}
.ws159{word-spacing:1.350000px;}
.wse2{word-spacing:3.720000px;}
.ws13d{word-spacing:4.050000px;}
.ws13c{word-spacing:4.698000px;}
.ws8b{word-spacing:4.740000px;}
.ws145{word-spacing:4.752000px;}
.ws170{word-spacing:4.860000px;}
.wsa3{word-spacing:4.920000px;}
.wse7{word-spacing:4.980000px;}
.wsef{word-spacing:5.184000px;}
.ws66{word-spacing:5.400000px;}
.ws109{word-spacing:5.454000px;}
.ws144{word-spacing:5.562000px;}
.ws3c{word-spacing:5.580000px;}
.wsb7{word-spacing:5.640000px;}
.ws16f{word-spacing:5.670000px;}
.ws32{word-spacing:5.808000px;}
.ws43{word-spacing:5.940000px;}
.wsf0{word-spacing:5.994000px;}
.wsb1{word-spacing:6.120000px;}
.wsf4{word-spacing:6.156000px;}
.ws39{word-spacing:6.192000px;}
.wsd5{word-spacing:6.360000px;}
.ws108{word-spacing:6.372000px;}
.ws89{word-spacing:6.420000px;}
.wsd6{word-spacing:6.480000px;}
.ws2c{word-spacing:6.540000px;}
.ws30{word-spacing:6.594000px;}
.wsb6{word-spacing:6.600000px;}
.wsd{word-spacing:6.615000px;}
.ws36{word-spacing:6.660000px;}
.ws48{word-spacing:6.720000px;}
.ws10c{word-spacing:6.750000px;}
.ws77{word-spacing:6.780000px;}
.ws16b{word-spacing:6.804000px;}
.ws7a{word-spacing:7.020000px;}
.wse{word-spacing:7.065000px;}
.ws14a{word-spacing:7.128000px;}
.ws95{word-spacing:7.140000px;}
.ws8a{word-spacing:7.200000px;}
.ws138{word-spacing:7.236000px;}
.ws131{word-spacing:7.290000px;}
.ws9b{word-spacing:7.320000px;}
.ws82{word-spacing:7.440000px;}
.ws16e{word-spacing:7.452000px;}
.wsb4{word-spacing:7.500000px;}
.ws14e{word-spacing:7.506000px;}
.ws33{word-spacing:7.536000px;}
.ws16{word-spacing:7.560000px;}
.ws15f{word-spacing:7.614000px;}
.ws83{word-spacing:7.620000px;}
.ws91{word-spacing:7.680000px;}
.ws15a{word-spacing:7.722000px;}
.wsc8{word-spacing:7.740000px;}
.ws75{word-spacing:7.800000px;}
.ws88{word-spacing:7.860000px;}
.ws31{word-spacing:7.872000px;}
.wsf6{word-spacing:7.884000px;}
.wsdd{word-spacing:7.920000px;}
.ws139{word-spacing:7.938000px;}
.ws38{word-spacing:7.968000px;}
.wsb3{word-spacing:7.980000px;}
.ws115{word-spacing:7.992000px;}
.ws8f{word-spacing:8.040000px;}
.ws15{word-spacing:8.046000px;}
.wsb9{word-spacing:8.100000px;}
.ws11{word-spacing:8.127000px;}
.ws112{word-spacing:8.154000px;}
.ws37{word-spacing:8.160000px;}
.ws11e{word-spacing:8.208000px;}
.ws24{word-spacing:8.220000px;}
.ws136{word-spacing:8.262000px;}
.wsd7{word-spacing:8.280000px;}
.ws63{word-spacing:8.340000px;}
.wsb2{word-spacing:8.400000px;}
.ws4d{word-spacing:8.460000px;}
.ws12{word-spacing:8.478000px;}
.ws35{word-spacing:8.484000px;}
.ws6d{word-spacing:8.520000px;}
.ws85{word-spacing:8.580000px;}
.ws14f{word-spacing:8.586000px;}
.ws10d{word-spacing:8.640000px;}
.ws16d{word-spacing:8.694000px;}
.wsbb{word-spacing:8.700000px;}
.ws12b{word-spacing:8.748000px;}
.wsa9{word-spacing:8.760000px;}
.wsd1{word-spacing:8.778000px;}
.ws65{word-spacing:8.820000px;}
.ws132{word-spacing:8.856000px;}
.ws72{word-spacing:8.880000px;}
.ws96{word-spacing:8.940000px;}
.wsd2{word-spacing:8.949000px;}
.ws58{word-spacing:9.000000px;}
.ws161{word-spacing:9.018000px;}
.ws50{word-spacing:9.060000px;}
.ws17{word-spacing:9.072000px;}
.ws7d{word-spacing:9.120000px;}
.ws101{word-spacing:9.126000px;}
.ws23{word-spacing:9.180000px;}
.wsaa{word-spacing:9.198000px;}
.ws120{word-spacing:9.234000px;}
.ws40{word-spacing:9.240000px;}
.wsa8{word-spacing:9.261000px;}
.ws102{word-spacing:9.288000px;}
.ws94{word-spacing:9.300000px;}
.ws15b{word-spacing:9.396000px;}
.ws59{word-spacing:9.420000px;}
.wsb5{word-spacing:9.480000px;}
.ws45{word-spacing:9.540000px;}
.ws1a{word-spacing:9.558000px;}
.wsc{word-spacing:9.600000px;}
.ws140{word-spacing:9.612000px;}
.wsba{word-spacing:9.660000px;}
.wsfe{word-spacing:9.666000px;}
.ws44{word-spacing:9.720000px;}
.wsf1{word-spacing:9.774000px;}
.ws54{word-spacing:9.780000px;}
.wsf3{word-spacing:9.828000px;}
.ws97{word-spacing:9.840000px;}
.ws10f{word-spacing:9.882000px;}
.ws55{word-spacing:9.900000px;}
.ws162{word-spacing:9.936000px;}
.ws28{word-spacing:10.020000px;}
.ws5c{word-spacing:10.080000px;}
.ws11f{word-spacing:10.098000px;}
.ws2b{word-spacing:10.200000px;}
.ws151{word-spacing:10.206000px;}
.wse4{word-spacing:10.260000px;}
.wscb{word-spacing:10.380000px;}
.ws149{word-spacing:10.422000px;}
.ws5a{word-spacing:10.440000px;}
.ws21{word-spacing:10.476000px;}
.ws68{word-spacing:10.500000px;}
.ws160{word-spacing:10.530000px;}
.wsa2{word-spacing:10.560000px;}
.ws100{word-spacing:10.584000px;}
.ws4c{word-spacing:10.620000px;}
.ws168{word-spacing:10.638000px;}
.wsa5{word-spacing:10.680000px;}
.ws64{word-spacing:10.692000px;}
.ws10{word-spacing:10.710000px;}
.wsab{word-spacing:10.740000px;}
.wsfa{word-spacing:10.746000px;}
.wscc{word-spacing:10.800000px;}
.ws99{word-spacing:10.860000px;}
.wsff{word-spacing:10.908000px;}
.ws2a{word-spacing:10.920000px;}
.ws10a{word-spacing:10.962000px;}
.ws76{word-spacing:10.980000px;}
.ws12e{word-spacing:11.016000px;}
.ws90{word-spacing:11.040000px;}
.ws13e{word-spacing:11.070000px;}
.wsb0{word-spacing:11.100000px;}
.wsc9{word-spacing:11.220000px;}
.ws148{word-spacing:11.232000px;}
.ws6a{word-spacing:11.280000px;}
.wsf2{word-spacing:11.286000px;}
.ws34{word-spacing:11.298000px;}
.wsdc{word-spacing:11.340000px;}
.wsec{word-spacing:11.394000px;}
.ws49{word-spacing:11.400000px;}
.ws110{word-spacing:11.448000px;}
.wsdf{word-spacing:11.520000px;}
.ws124{word-spacing:11.556000px;}
.ws87{word-spacing:11.580000px;}
.ws1d{word-spacing:11.610000px;}
.ws41{word-spacing:11.640000px;}
.wsd9{word-spacing:11.700000px;}
.ws15e{word-spacing:11.718000px;}
.ws46{word-spacing:11.760000px;}
.wsfc{word-spacing:11.772000px;}
.ws2d{word-spacing:11.880000px;}
.ws146{word-spacing:11.934000px;}
.ws92{word-spacing:11.940000px;}
.ws9d{word-spacing:12.000000px;}
.ws11d{word-spacing:12.042000px;}
.ws7c{word-spacing:12.060000px;}
.ws141{word-spacing:12.096000px;}
.ws9c{word-spacing:12.180000px;}
.ws118{word-spacing:12.204000px;}
.ws5b{word-spacing:12.240000px;}
.wsfd{word-spacing:12.258000px;}
.ws9f{word-spacing:12.300000px;}
.ws10b{word-spacing:12.312000px;}
.ws11c{word-spacing:12.366000px;}
.wse8{word-spacing:12.420000px;}
.ws2e{word-spacing:12.540000px;}
.ws78{word-spacing:12.600000px;}
.ws13b{word-spacing:12.636000px;}
.ws8e{word-spacing:12.660000px;}
.ws70{word-spacing:12.720000px;}
.ws167{word-spacing:12.744000px;}
.wsdb{word-spacing:12.780000px;}
.ws79{word-spacing:12.840000px;}
.ws111{word-spacing:12.852000px;}
.wsa6{word-spacing:12.906000px;}
.ws133{word-spacing:12.960000px;}
.ws27{word-spacing:13.020000px;}
.ws5e{word-spacing:13.080000px;}
.ws147{word-spacing:13.122000px;}
.wsed{word-spacing:13.176000px;}
.ws71{word-spacing:13.200000px;}
.ws123{word-spacing:13.230000px;}
.ws73{word-spacing:13.260000px;}
.ws114{word-spacing:13.284000px;}
.wsca{word-spacing:13.380000px;}
.ws6e{word-spacing:13.500000px;}
.ws11a{word-spacing:13.608000px;}
.ws5d{word-spacing:13.620000px;}
.ws15d{word-spacing:13.662000px;}
.ws7b{word-spacing:13.680000px;}
.wsfb{word-spacing:13.716000px;}
.wsc6{word-spacing:13.740000px;}
.ws7f{word-spacing:13.800000px;}
.ws153{word-spacing:13.824000px;}
.wsb8{word-spacing:13.860000px;}
.ws20{word-spacing:13.932000px;}
.wsf{word-spacing:13.944000px;}
.ws1b{word-spacing:14.040000px;}
.ws4b{word-spacing:14.100000px;}
.ws137{word-spacing:14.202000px;}
.ws47{word-spacing:14.280000px;}
.ws86{word-spacing:14.340000px;}
.ws11b{word-spacing:14.364000px;}
.ws6f{word-spacing:14.460000px;}
.wsa1{word-spacing:14.520000px;}
.ws1e{word-spacing:14.580000px;}
.ws61{word-spacing:14.640000px;}
.ws13a{word-spacing:14.688000px;}
.ws80{word-spacing:14.700000px;}
.ws15c{word-spacing:14.742000px;}
.ws8d{word-spacing:14.760000px;}
.ws3d{word-spacing:14.820000px;}
.ws14d{word-spacing:14.850000px;}
.ws3e{word-spacing:14.940000px;}
.ws106{word-spacing:14.958000px;}
.ws74{word-spacing:15.000000px;}
.ws3f{word-spacing:15.180000px;}
.wsda{word-spacing:15.240000px;}
.wsd3{word-spacing:15.300000px;}
.ws122{word-spacing:15.444000px;}
.ws4a{word-spacing:15.480000px;}
.ws113{word-spacing:15.498000px;}
.ws84{word-spacing:15.540000px;}
.ws14{word-spacing:15.552000px;}
.ws22{word-spacing:15.714000px;}
.ws119{word-spacing:15.822000px;}
.wsac{word-spacing:15.900000px;}
.ws57{word-spacing:16.020000px;}
.ws26{word-spacing:16.080000px;}
.ws62{word-spacing:16.200000px;}
.ws98{word-spacing:16.260000px;}
.ws53{word-spacing:16.320000px;}
.wsd8{word-spacing:16.380000px;}
.wsee{word-spacing:16.578000px;}
.ws29{word-spacing:16.620000px;}
.ws25{word-spacing:16.680000px;}
.ws93{word-spacing:16.740000px;}
.ws4e{word-spacing:16.800000px;}
.ws56{word-spacing:16.860000px;}
.wsf7{word-spacing:17.010000px;}
.ws143{word-spacing:17.064000px;}
.ws4f{word-spacing:17.100000px;}
.ws10e{word-spacing:17.172000px;}
.wsa0{word-spacing:17.280000px;}
.ws130{word-spacing:17.388000px;}
.ws81{word-spacing:17.400000px;}
.wsc7{word-spacing:17.520000px;}
.wsf5{word-spacing:17.550000px;}
.ws164{word-spacing:17.658000px;}
.wse5{word-spacing:17.700000px;}
.ws9e{word-spacing:17.760000px;}
.wse0{word-spacing:17.880000px;}
.ws142{word-spacing:17.982000px;}
.ws171{word-spacing:18.036000px;}
.wsa7{word-spacing:18.240000px;}
.wsa4{word-spacing:18.480000px;}
.ws51{word-spacing:18.540000px;}
.ws16c{word-spacing:18.738000px;}
.ws121{word-spacing:18.846000px;}
.ws42{word-spacing:19.140000px;}
.ws69{word-spacing:19.260000px;}
.ws107{word-spacing:19.494000px;}
.ws2f{word-spacing:19.560000px;}
.wsd4{word-spacing:19.800000px;}
.ws1c{word-spacing:19.818000px;}
.wsce{word-spacing:19.860000px;}
.ws6b{word-spacing:20.160000px;}
.ws126{word-spacing:20.196000px;}
.wse3{word-spacing:20.220000px;}
.ws12f{word-spacing:20.250000px;}
.ws9a{word-spacing:20.280000px;}
.ws163{word-spacing:20.574000px;}
.wsf9{word-spacing:20.736000px;}
.wsde{word-spacing:20.820000px;}
.ws117{word-spacing:20.898000px;}
.ws8c{word-spacing:21.960000px;}
.wse6{word-spacing:22.320000px;}
.ws16a{word-spacing:22.410000px;}
.ws13f{word-spacing:22.788000px;}
.wscf{word-spacing:23.160000px;}
.ws128{word-spacing:23.166000px;}
.ws125{word-spacing:23.490000px;}
.ws13{word-spacing:23.652000px;}
.ws7e{word-spacing:24.120000px;}
.wsf8{word-spacing:24.138000px;}
.ws116{word-spacing:24.300000px;}
.ws157{word-spacing:24.408000px;}
.ws19{word-spacing:24.840000px;}
.ws67{word-spacing:24.960000px;}
.ws152{word-spacing:25.866000px;}
.ws169{word-spacing:26.082000px;}
.ws127{word-spacing:26.946000px;}
.ws158{word-spacing:27.810000px;}
.ws156{word-spacing:28.458000px;}
.ws1f{word-spacing:29.268000px;}
.ws105{word-spacing:31.806000px;}
.ws52{word-spacing:31.980000px;}
.ws12d{word-spacing:32.400000px;}
.ws135{word-spacing:34.290000px;}
.ws104{word-spacing:37.098000px;}
.ws12c{word-spacing:37.746000px;}
.ws166{word-spacing:37.962000px;}
.ws18{word-spacing:38.394000px;}
.ws14c{word-spacing:38.556000px;}
.ws134{word-spacing:39.960000px;}
.ws165{word-spacing:44.226000px;}
.ws14b{word-spacing:44.874000px;}
.ws12a{word-spacing:58.320000px;}
.ws155{word-spacing:58.968000px;}
.ws129{word-spacing:67.932000px;}
.ws154{word-spacing:68.688000px;}
.wsc4{word-spacing:416.778600px;}
.wsc5{word-spacing:416.779200px;}
.wsc3{word-spacing:439.578600px;}
._17{margin-left:-140.477900px;}
._18{margin-left:-132.293450px;}
._19{margin-left:-59.681009px;}
._2f{margin-left:-16.560000px;}
._16{margin-left:-15.240000px;}
._15{margin-left:-13.403971px;}
._1b{margin-left:-12.033059px;}
._2e{margin-left:-10.980000px;}
._10{margin-left:-9.720044px;}
._12{margin-left:-8.700029px;}
._1{margin-left:-7.560000px;}
._6{margin-left:-6.468000px;}
._2{margin-left:-4.488015px;}
._3{margin-left:-3.480015px;}
._0{margin-left:-1.919985px;}
._7{width:1.388415px;}
._8{width:2.765941px;}
._14{width:3.833985px;}
._38{width:5.095771px;}
._4{width:6.299985px;}
._5{width:7.799985px;}
._33{width:8.883600px;}
._a{width:10.044000px;}
._e{width:11.237400px;}
._d{width:12.388171px;}
._f{width:14.453985px;}
._11{width:15.944327px;}
._9{width:17.094029px;}
._36{width:20.495356px;}
._31{width:23.549971px;}
._3a{width:25.519785px;}
._34{width:27.140371px;}
._32{width:38.059127px;}
._37{width:40.498785px;}
._39{width:44.192971px;}
._b{width:60.055785px;}
._30{width:63.550200px;}
._1a{width:67.224484px;}
._35{width:68.439585px;}
._13{width:131.698171px;}
._c{width:133.679400px;}
._2a{width:240.160785px;}
._25{width:259.456800px;}
._26{width:279.040785px;}
._1e{width:300.067800px;}
._23{width:308.800185px;}
._1d{width:335.946600px;}
._20{width:342.544185px;}
._2d{width:400.048800px;}
._24{width:419.876371px;}
._28{width:432.935956px;}
._2b{width:448.986600px;}
._22{width:472.144200px;}
._2c{width:503.008800px;}
._29{width:515.488800px;}
._1f{width:553.120200px;}
._1c{width:582.838185px;}
._21{width:607.024200px;}
._27{width:639.472185px;}
.fc4{color:rgb(118,113,113);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc3{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:29.027400px;}
.fsf{font-size:32.737800px;}
.fs10{font-size:32.810400px;}
.fsc{font-size:35.100000px;}
.fse{font-size:39.000000px;}
.fsb{font-size:40.950000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs12{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y39{bottom:67.597501px;}
.y1d4{bottom:77.551200px;}
.y195{bottom:79.100250px;}
.y38{bottom:84.097501px;}
.ydf{bottom:84.677700px;}
.yea{bottom:84.749850px;}
.yb2{bottom:85.426200px;}
.y13c{bottom:90.525000px;}
.y1d3{bottom:94.051200px;}
.y194{bottom:95.600250px;}
.y4{bottom:97.125005px;}
.y13b{bottom:104.025000px;}
.yde{bottom:104.177700px;}
.ye9{bottom:104.249850px;}
.yb1{bottom:104.926200px;}
.y1d2{bottom:110.551200px;}
.y6c{bottom:110.940600px;}
.y193{bottom:112.100250px;}
.y13a{bottom:117.525000px;}
.y6b{bottom:122.940600px;}
.ydd{bottom:123.677700px;}
.ye8{bottom:123.749850px;}
.yb0{bottom:124.426200px;}
.y1d1{bottom:127.051200px;}
.y192{bottom:128.600250px;}
.y139{bottom:131.025000px;}
.y6a{bottom:134.940600px;}
.y23{bottom:139.264499px;}
.ydc{bottom:143.177700px;}
.ye7{bottom:143.249850px;}
.y1d0{bottom:143.551200px;}
.yaf{bottom:143.926200px;}
.y138{bottom:144.525000px;}
.y191{bottom:145.100250px;}
.y65{bottom:147.315600px;}
.y149{bottom:153.749850px;}
.y137{bottom:158.025000px;}
.y68{bottom:158.190600px;}
.y167{bottom:159.677700px;}
.y1cf{bottom:160.051200px;}
.y190{bottom:161.600250px;}
.yfa{bottom:162.677700px;}
.ye6{bottom:162.749850px;}
.yae{bottom:163.426200px;}
.y136{bottom:171.525000px;}
.y67{bottom:171.690600px;}
.ydb{bottom:173.177700px;}
.y11f{bottom:173.249850px;}
.y1ce{bottom:176.551200px;}
.y18f{bottom:178.100250px;}
.yf9{bottom:182.177700px;}
.ye5{bottom:182.249850px;}
.yad{bottom:182.926200px;}
.y135{bottom:185.025000px;}
.y66{bottom:185.190600px;}
.y166{bottom:186.677700px;}
.y1cd{bottom:193.051200px;}
.y18e{bottom:194.600250px;}
.y1a{bottom:196.933500px;}
.y134{bottom:198.525000px;}
.yf8{bottom:201.677700px;}
.ye4{bottom:201.749850px;}
.yac{bottom:202.426200px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y1cc{bottom:209.551200px;}
.y18d{bottom:211.100250px;}
.y148{bottom:211.837950px;}
.y133{bottom:212.025000px;}
.ye3{bottom:221.249850px;}
.yab{bottom:221.926200px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y11e{bottom:224.249850px;}
.y132{bottom:225.525000px;}
.y1cb{bottom:226.051200px;}
.y18c{bottom:227.600250px;}
.y64{bottom:227.926200px;}
.yda{bottom:231.301950px;}
.y147{bottom:231.337950px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y37{bottom:236.926501px;}
.y165{bottom:237.677700px;}
.y131{bottom:239.025000px;}
.ye2{bottom:240.749850px;}
.yaa{bottom:241.426200px;}
.y1ca{bottom:242.551200px;}
.y11d{bottom:243.749850px;}
.y18b{bottom:244.100250px;}
.y63{bottom:247.426200px;}
.yf7{bottom:248.177700px;}
.yd9{bottom:250.801950px;}
.y146{bottom:250.837950px;}
.y130{bottom:252.525000px;}
.y164{bottom:257.177700px;}
.y1c9{bottom:259.051200px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.ye1{bottom:260.249850px;}
.y18a{bottom:260.600250px;}
.ya9{bottom:260.926200px;}
.y11c{bottom:263.249850px;}
.y12f{bottom:266.025000px;}
.y62{bottom:266.926200px;}
.yf6{bottom:267.677700px;}
.yd8{bottom:270.301950px;}
.y145{bottom:270.337950px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1c8{bottom:275.551200px;}
.y163{bottom:276.677700px;}
.y189{bottom:277.100250px;}
.ya8{bottom:280.426200px;}
.y11b{bottom:282.749850px;}
.y12e{bottom:284.025000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y61{bottom:286.426200px;}
.yf5{bottom:287.177700px;}
.yd7{bottom:289.801950px;}
.y144{bottom:289.837950px;}
.ye0{bottom:290.249850px;}
.y1c7{bottom:292.051200px;}
.y188{bottom:293.600250px;}
.y162{bottom:296.177700px;}
.ya7{bottom:299.926200px;}
.y36{bottom:301.276501px;}
.y11a{bottom:302.249850px;}
.y12d{bottom:302.775000px;}
.y60{bottom:305.926200px;}
.y1c6{bottom:308.551200px;}
.yd6{bottom:309.301950px;}
.y143{bottom:309.337950px;}
.y187{bottom:310.100250px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y161{bottom:315.677700px;}
.yf4{bottom:317.177700px;}
.ya6{bottom:319.426200px;}
.y119{bottom:321.749850px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1c5{bottom:325.051200px;}
.y5f{bottom:325.426200px;}
.y186{bottom:326.600250px;}
.yd5{bottom:328.801950px;}
.y142{bottom:328.837950px;}
.y160{bottom:335.177700px;}
.ya5{bottom:338.926200px;}
.y118{bottom:341.249850px;}
.y1c4{bottom:341.551200px;}
.y185{bottom:343.100250px;}
.y5e{bottom:344.926200px;}
.y11{bottom:348.133500px;}
.yd4{bottom:348.301950px;}
.y141{bottom:348.337950px;}
.y12c{bottom:349.462500px;}
.y15f{bottom:354.677700px;}
.y1c3{bottom:358.051200px;}
.ya4{bottom:358.426200px;}
.y184{bottom:359.600250px;}
.y117{bottom:360.749850px;}
.y5d{bottom:364.426200px;}
.y35{bottom:365.626501px;}
.yd3{bottom:367.801950px;}
.y140{bottom:367.837950px;}
.yf3{bottom:368.177700px;}
.y15e{bottom:374.177700px;}
.y1c2{bottom:374.551200px;}
.y183{bottom:376.100250px;}
.ya3{bottom:377.926200px;}
.y116{bottom:380.249850px;}
.y5c{bottom:383.926200px;}
.y12b{bottom:385.673509px;}
.y10{bottom:386.785499px;}
.yd2{bottom:387.301950px;}
.y13f{bottom:387.337950px;}
.y127{bottom:387.553500px;}
.yf2{bottom:387.677700px;}
.y1c1{bottom:391.051200px;}
.y182{bottom:392.600250px;}
.y15d{bottom:393.677700px;}
.y12a{bottom:394.570407px;}
.ya2{bottom:397.426200px;}
.y115{bottom:399.749850px;}
.y5b{bottom:403.426200px;}
.y120{bottom:405.685650px;}
.yd1{bottom:406.801950px;}
.y13e{bottom:406.837950px;}
.y1c0{bottom:407.551200px;}
.yf{bottom:408.044999px;}
.y181{bottom:409.100250px;}
.y121{bottom:416.325435px;}
.ya1{bottom:416.926200px;}
.yf1{bottom:417.677700px;}
.y114{bottom:419.249850px;}
.y5a{bottom:422.926200px;}
.y15c{bottom:423.677700px;}
.y1bf{bottom:424.051200px;}
.y180{bottom:425.600250px;}
.yd0{bottom:426.301950px;}
.y34{bottom:432.907500px;}
.ya0{bottom:436.426200px;}
.y13d{bottom:436.837950px;}
.y113{bottom:438.749850px;}
.y1be{bottom:440.551200px;}
.y17f{bottom:442.100250px;}
.y59{bottom:442.426200px;}
.y122{bottom:443.227722px;}
.ycf{bottom:445.801950px;}
.y9f{bottom:455.926200px;}
.y1bd{bottom:457.051200px;}
.y112{bottom:458.249850px;}
.y17e{bottom:458.600250px;}
.yce{bottom:465.301950px;}
.yf0{bottom:468.677700px;}
.y123{bottom:470.105456px;}
.y58{bottom:472.426200px;}
.y1bc{bottom:473.551200px;}
.y17d{bottom:475.100250px;}
.y9e{bottom:475.426200px;}
.y111{bottom:477.749850px;}
.ycd{bottom:484.801950px;}
.ye{bottom:484.864502px;}
.y15b{bottom:487.614000px;}
.yef{bottom:488.177700px;}
.y1bb{bottom:490.051200px;}
.y33{bottom:494.326501px;}
.y9d{bottom:494.926200px;}
.y124{bottom:497.005950px;}
.y110{bottom:497.249850px;}
.y17c{bottom:502.100250px;}
.yd{bottom:502.864502px;}
.ycc{bottom:504.301950px;}
.y1ba{bottom:506.551200px;}
.y15a{bottom:507.114000px;}
.y9c{bottom:514.426200px;}
.y10f{bottom:516.749850px;}
.yee{bottom:519.526200px;}
.yc{bottom:520.864502px;}
.y1b9{bottom:523.051200px;}
.ycb{bottom:523.801950px;}
.y125{bottom:523.887300px;}
.y159{bottom:526.614000px;}
.y9b{bottom:533.926200px;}
.yed{bottom:536.026200px;}
.yb{bottom:538.864499px;}
.y1b8{bottom:539.551200px;}
.y57{bottom:542.926200px;}
.yca{bottom:543.301950px;}
.y158{bottom:546.114000px;}
.y7e{bottom:546.351900px;}
.y10e{bottom:546.749850px;}
.y126{bottom:550.786200px;}
.y17b{bottom:553.100250px;}
.y9a{bottom:553.426200px;}
.y1b7{bottom:556.051200px;}
.ya{bottom:556.864499px;}
.y56{bottom:557.926200px;}
.y7d{bottom:559.851900px;}
.y32{bottom:561.607500px;}
.yc9{bottom:562.801950px;}
.y129{bottom:565.498252px;}
.y157{bottom:565.614000px;}
.yec{bottom:565.726200px;}
.y1b6{bottom:572.551200px;}
.y55{bottom:572.926200px;}
.y7c{bottom:573.351900px;}
.y128{bottom:574.395150px;}
.y17a{bottom:580.100250px;}
.yeb{bottom:582.226200px;}
.yc8{bottom:582.301950px;}
.y156{bottom:585.114000px;}
.y54{bottom:587.926200px;}
.y1b5{bottom:589.051200px;}
.y99{bottom:592.426200px;}
.y7b{bottom:594.195150px;}
.y31{bottom:595.957501px;}
.y10d{bottom:597.749850px;}
.yc7{bottom:601.801950px;}
.y53{bottom:602.926200px;}
.y155{bottom:604.614000px;}
.y1b4{bottom:605.551200px;}
.y7a{bottom:607.695150px;}
.y30{bottom:610.957501px;}
.y98{bottom:611.926200px;}
.y10c{bottom:617.249850px;}
.y52{bottom:617.926200px;}
.y79{bottom:621.195150px;}
.yc6{bottom:621.301950px;}
.y1b3{bottom:622.051200px;}
.y154{bottom:624.114000px;}
.y2f{bottom:625.957500px;}
.y97{bottom:631.426200px;}
.y51{bottom:632.926200px;}
.y78{bottom:634.695150px;}
.y10b{bottom:636.749850px;}
.y179{bottom:637.801200px;}
.y1b2{bottom:638.551200px;}
.yc5{bottom:640.801950px;}
.y153{bottom:643.614000px;}
.y9{bottom:645.510000px;}
.y50{bottom:647.926200px;}
.y96{bottom:650.926200px;}
.y178{bottom:654.301200px;}
.y77{bottom:654.976200px;}
.y1b1{bottom:655.051200px;}
.yc4{bottom:660.301950px;}
.y4f{bottom:662.926200px;}
.y152{bottom:663.114000px;}
.y8{bottom:666.771000px;}
.y76{bottom:668.476200px;}
.y95{bottom:670.426200px;}
.y177{bottom:670.801200px;}
.y1b0{bottom:671.551200px;}
.y4e{bottom:677.926200px;}
.yc3{bottom:679.801950px;}
.y75{bottom:681.976200px;}
.y151{bottom:682.614000px;}
.y10a{bottom:683.249850px;}
.y1af{bottom:688.051200px;}
.y94{bottom:689.926200px;}
.y4d{bottom:692.926200px;}
.y74{bottom:695.476200px;}
.y176{bottom:697.801200px;}
.yc2{bottom:699.301950px;}
.y150{bottom:702.114000px;}
.y109{bottom:702.749850px;}
.y1ae{bottom:704.551200px;}
.y2e{bottom:707.317498px;}
.y4c{bottom:707.926200px;}
.y73{bottom:708.976200px;}
.y93{bottom:709.426200px;}
.yc1{bottom:718.801950px;}
.y1ad{bottom:721.051200px;}
.y14f{bottom:721.614000px;}
.y108{bottom:722.249850px;}
.y72{bottom:722.476200px;}
.y4b{bottom:722.926200px;}
.y7{bottom:726.298500px;}
.y92{bottom:728.926200px;}
.y2d{bottom:737.317498px;}
.y1ac{bottom:737.551200px;}
.y4a{bottom:737.926200px;}
.yc0{bottom:738.301950px;}
.y14e{bottom:741.114000px;}
.y107{bottom:741.749850px;}
.y71{bottom:745.238700px;}
.y91{bottom:748.426200px;}
.y175{bottom:748.801200px;}
.y3{bottom:752.599495px;}
.y49{bottom:752.926200px;}
.y1ab{bottom:754.051200px;}
.y2c{bottom:755.317498px;}
.ybf{bottom:757.801950px;}
.y70{bottom:758.738700px;}
.y14d{bottom:760.614000px;}
.y106{bottom:761.249850px;}
.y174{bottom:765.301200px;}
.y48{bottom:767.926200px;}
.y1aa{bottom:770.551200px;}
.y6f{bottom:772.238700px;}
.y2b{bottom:773.317498px;}
.ybe{bottom:777.301950px;}
.y14c{bottom:780.114000px;}
.y47{bottom:782.926200px;}
.y6e{bottom:785.738700px;}
.y1a9{bottom:787.051200px;}
.y90{bottom:787.426200px;}
.y2a{bottom:791.317498px;}
.y173{bottom:792.301200px;}
.ybd{bottom:796.801950px;}
.y46{bottom:797.926200px;}
.y6d{bottom:799.238700px;}
.y14b{bottom:799.614000px;}
.y1a8{bottom:803.551200px;}
.y8f{bottom:806.926200px;}
.y105{bottom:807.749850px;}
.ybc{bottom:816.301950px;}
.y1a7{bottom:820.051200px;}
.y8e{bottom:826.426200px;}
.y104{bottom:827.249850px;}
.y14a{bottom:829.614000px;}
.ybb{bottom:835.801950px;}
.y1a6{bottom:836.551200px;}
.y172{bottom:843.301200px;}
.y29{bottom:843.789002px;}
.y45{bottom:844.801200px;}
.y8d{bottom:845.926200px;}
.y103{bottom:846.749850px;}
.y1a5{bottom:853.051200px;}
.yba{bottom:855.301950px;}
.y44{bottom:859.801200px;}
.y8c{bottom:865.426200px;}
.y102{bottom:866.249850px;}
.y1a4{bottom:869.551200px;}
.y43{bottom:874.801200px;}
.yb9{bottom:874.801950px;}
.y171{bottom:876.301200px;}
.y2{bottom:879.369000px;}
.y8b{bottom:884.926200px;}
.y1a3{bottom:886.051200px;}
.y42{bottom:889.801200px;}
.yb8{bottom:894.301950px;}
.y170{bottom:901.801200px;}
.y1a2{bottom:902.551200px;}
.y8a{bottom:904.426200px;}
.y28{bottom:907.440000px;}
.y41{bottom:909.256200px;}
.yb7{bottom:913.801950px;}
.y101{bottom:915.813450px;}
.y16f{bottom:918.301200px;}
.y1a1{bottom:919.051200px;}
.y89{bottom:923.926200px;}
.y40{bottom:931.801200px;}
.yb6{bottom:933.301950px;}
.y16e{bottom:934.801200px;}
.y100{bottom:935.313450px;}
.y1a0{bottom:935.551200px;}
.y27{bottom:938.940000px;}
.y88{bottom:943.426200px;}
.y19f{bottom:952.051200px;}
.yb5{bottom:952.801950px;}
.yff{bottom:954.813450px;}
.y16d{bottom:960.301200px;}
.y87{bottom:962.926200px;}
.y1{bottom:966.726000px;}
.y19e{bottom:968.551200px;}
.y26{bottom:970.440000px;}
.y3f{bottom:970.801200px;}
.yfe{bottom:974.313450px;}
.y16c{bottom:976.801200px;}
.y86{bottom:982.426200px;}
.yb4{bottom:982.801950px;}
.y19d{bottom:985.051200px;}
.y16b{bottom:993.301200px;}
.yfd{bottom:993.813450px;}
.y3e{bottom:994.801200px;}
.y19c{bottom:1001.551200px;}
.y85{bottom:1001.926200px;}
.yfc{bottom:1013.313450px;}
.y19b{bottom:1018.051200px;}
.y3d{bottom:1018.801200px;}
.y16a{bottom:1020.301200px;}
.y84{bottom:1021.426200px;}
.yfb{bottom:1032.813450px;}
.y19a{bottom:1034.551200px;}
.y25{bottom:1035.546001px;}
.y83{bottom:1040.926200px;}
.y3a{bottom:1047.511200px;}
.y199{bottom:1051.051200px;}
.y82{bottom:1060.426200px;}
.y198{bottom:1067.551200px;}
.y169{bottom:1071.301200px;}
.y81{bottom:1079.926200px;}
.y69{bottom:1083.782250px;}
.y197{bottom:1084.051200px;}
.y3c{bottom:1097.407950px;}
.y168{bottom:1098.301200px;}
.y80{bottom:1099.426200px;}
.y196{bottom:1100.551200px;}
.y3b{bottom:1110.907950px;}
.yb3{bottom:1141.238100px;}
.y7f{bottom:1141.313100px;}
.y24{bottom:1165.122003px;}
.h26{height:19.738632px;}
.h24{height:22.261704px;}
.h25{height:22.311072px;}
.h16{height:25.096500px;}
.h1c{height:30.030000px;}
.h19{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1e{height:34.320000px;}
.h1d{height:34.608000px;}
.hb{height:36.726562px;}
.h20{height:37.215000px;}
.h18{height:38.610000px;}
.h1f{height:39.696000px;}
.h27{height:40.755000px;}
.hf{height:41.317383px;}
.h17{height:42.916500px;}
.h1a{height:44.658000px;}
.h22{height:44.730000px;}
.h21{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h1b{height:47.586000px;}
.h3{height:48.195000px;}
.h12{height:49.620000px;}
.h23{height:52.053000px;}
.h15{height:54.655650px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x13{left:123.000000px;}
.xb{left:126.112500px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x9{left:228.743990px;}
.xf{left:281.379961px;}
.xe{left:291.070350px;}
.x8{left:293.590494px;}
.x10{left:392.266200px;}
.x3{left:454.959000px;}
.x11{left:561.902363px;}
.x14{left:565.175550px;}
.xd{left:570.946500px;}
.x12{left:581.162043px;}
.xc{left:650.025750px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.ls1d{letter-spacing:-1.200000pt;}
.lsf{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.025802pt;}
.ls1{letter-spacing:0.053333pt;}
.lsd{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.363600pt;}
.ls8{letter-spacing:0.363733pt;}
.ls5{letter-spacing:0.364000pt;}
.ls9{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.066667pt;}
.ls18{letter-spacing:1.333333pt;}
.lsa{letter-spacing:7.056000pt;}
.ls1a{letter-spacing:8.139733pt;}
.ls1b{letter-spacing:8.140267pt;}
.ls19{letter-spacing:16.598933pt;}
.ls17{letter-spacing:53.078886pt;}
.lsb{letter-spacing:60.317867pt;}
.ls6{letter-spacing:63.949867pt;}
.ls15{letter-spacing:117.477777pt;}
.ls16{letter-spacing:117.535977pt;}
.ls14{letter-spacing:117.565077pt;}
.ls13{letter-spacing:124.927445pt;}
.ls12{letter-spacing:132.231612pt;}
.wsbc{word-spacing:-138.808272pt;}
.wsbd{word-spacing:-131.504105pt;}
.wsbe{word-spacing:-124.141738pt;}
.wsc0{word-spacing:-124.112637pt;}
.wsbf{word-spacing:-124.054437pt;}
.wsc1{word-spacing:-59.655547pt;}
.ws2{word-spacing:-16.202667pt;}
.ws1{word-spacing:-12.432000pt;}
.ws3b{word-spacing:-12.373333pt;}
.ws5{word-spacing:-11.850667pt;}
.ws3a{word-spacing:-11.466667pt;}
.ws6{word-spacing:-11.306667pt;}
.ws5f{word-spacing:-10.773333pt;}
.wsea{word-spacing:-10.416000pt;}
.wsae{word-spacing:-10.304000pt;}
.wse1{word-spacing:-10.176000pt;}
.wsad{word-spacing:-9.706667pt;}
.wsb{word-spacing:-9.045333pt;}
.wseb{word-spacing:-8.976000pt;}
.wse9{word-spacing:-8.736000pt;}
.wsa{word-spacing:-8.720000pt;}
.ws7{word-spacing:-8.618667pt;}
.ws4{word-spacing:-8.320000pt;}
.ws8{word-spacing:-7.840000pt;}
.ws150{word-spacing:-7.536000pt;}
.wsaf{word-spacing:-7.349333pt;}
.ws9{word-spacing:-7.317333pt;}
.ws3{word-spacing:-6.115200pt;}
.wsc2{word-spacing:-5.857084pt;}
.ws60{word-spacing:-0.400000pt;}
.ws103{word-spacing:-0.240000pt;}
.wsd0{word-spacing:-0.025802pt;}
.ws0{word-spacing:0.000000pt;}
.wscd{word-spacing:0.320000pt;}
.ws6c{word-spacing:0.533333pt;}
.ws159{word-spacing:1.200000pt;}
.wse2{word-spacing:3.306667pt;}
.ws13d{word-spacing:3.600000pt;}
.ws13c{word-spacing:4.176000pt;}
.ws8b{word-spacing:4.213333pt;}
.ws145{word-spacing:4.224000pt;}
.ws170{word-spacing:4.320000pt;}
.wsa3{word-spacing:4.373333pt;}
.wse7{word-spacing:4.426667pt;}
.wsef{word-spacing:4.608000pt;}
.ws66{word-spacing:4.800000pt;}
.ws109{word-spacing:4.848000pt;}
.ws144{word-spacing:4.944000pt;}
.ws3c{word-spacing:4.960000pt;}
.wsb7{word-spacing:5.013333pt;}
.ws16f{word-spacing:5.040000pt;}
.ws32{word-spacing:5.162667pt;}
.ws43{word-spacing:5.280000pt;}
.wsf0{word-spacing:5.328000pt;}
.wsb1{word-spacing:5.440000pt;}
.wsf4{word-spacing:5.472000pt;}
.ws39{word-spacing:5.504000pt;}
.wsd5{word-spacing:5.653333pt;}
.ws108{word-spacing:5.664000pt;}
.ws89{word-spacing:5.706667pt;}
.wsd6{word-spacing:5.760000pt;}
.ws2c{word-spacing:5.813333pt;}
.ws30{word-spacing:5.861333pt;}
.wsb6{word-spacing:5.866667pt;}
.wsd{word-spacing:5.880000pt;}
.ws36{word-spacing:5.920000pt;}
.ws48{word-spacing:5.973333pt;}
.ws10c{word-spacing:6.000000pt;}
.ws77{word-spacing:6.026667pt;}
.ws16b{word-spacing:6.048000pt;}
.ws7a{word-spacing:6.240000pt;}
.wse{word-spacing:6.280000pt;}
.ws14a{word-spacing:6.336000pt;}
.ws95{word-spacing:6.346667pt;}
.ws8a{word-spacing:6.400000pt;}
.ws138{word-spacing:6.432000pt;}
.ws131{word-spacing:6.480000pt;}
.ws9b{word-spacing:6.506667pt;}
.ws82{word-spacing:6.613333pt;}
.ws16e{word-spacing:6.624000pt;}
.wsb4{word-spacing:6.666667pt;}
.ws14e{word-spacing:6.672000pt;}
.ws33{word-spacing:6.698667pt;}
.ws16{word-spacing:6.720000pt;}
.ws15f{word-spacing:6.768000pt;}
.ws83{word-spacing:6.773333pt;}
.ws91{word-spacing:6.826667pt;}
.ws15a{word-spacing:6.864000pt;}
.wsc8{word-spacing:6.880000pt;}
.ws75{word-spacing:6.933333pt;}
.ws88{word-spacing:6.986667pt;}
.ws31{word-spacing:6.997333pt;}
.wsf6{word-spacing:7.008000pt;}
.wsdd{word-spacing:7.040000pt;}
.ws139{word-spacing:7.056000pt;}
.ws38{word-spacing:7.082667pt;}
.wsb3{word-spacing:7.093333pt;}
.ws115{word-spacing:7.104000pt;}
.ws8f{word-spacing:7.146667pt;}
.ws15{word-spacing:7.152000pt;}
.wsb9{word-spacing:7.200000pt;}
.ws11{word-spacing:7.224000pt;}
.ws112{word-spacing:7.248000pt;}
.ws37{word-spacing:7.253333pt;}
.ws11e{word-spacing:7.296000pt;}
.ws24{word-spacing:7.306667pt;}
.ws136{word-spacing:7.344000pt;}
.wsd7{word-spacing:7.360000pt;}
.ws63{word-spacing:7.413333pt;}
.wsb2{word-spacing:7.466667pt;}
.ws4d{word-spacing:7.520000pt;}
.ws12{word-spacing:7.536000pt;}
.ws35{word-spacing:7.541333pt;}
.ws6d{word-spacing:7.573333pt;}
.ws85{word-spacing:7.626667pt;}
.ws14f{word-spacing:7.632000pt;}
.ws10d{word-spacing:7.680000pt;}
.ws16d{word-spacing:7.728000pt;}
.wsbb{word-spacing:7.733333pt;}
.ws12b{word-spacing:7.776000pt;}
.wsa9{word-spacing:7.786667pt;}
.wsd1{word-spacing:7.802667pt;}
.ws65{word-spacing:7.840000pt;}
.ws132{word-spacing:7.872000pt;}
.ws72{word-spacing:7.893333pt;}
.ws96{word-spacing:7.946667pt;}
.wsd2{word-spacing:7.954667pt;}
.ws58{word-spacing:8.000000pt;}
.ws161{word-spacing:8.016000pt;}
.ws50{word-spacing:8.053333pt;}
.ws17{word-spacing:8.064000pt;}
.ws7d{word-spacing:8.106667pt;}
.ws101{word-spacing:8.112000pt;}
.ws23{word-spacing:8.160000pt;}
.wsaa{word-spacing:8.176000pt;}
.ws120{word-spacing:8.208000pt;}
.ws40{word-spacing:8.213333pt;}
.wsa8{word-spacing:8.232000pt;}
.ws102{word-spacing:8.256000pt;}
.ws94{word-spacing:8.266667pt;}
.ws15b{word-spacing:8.352000pt;}
.ws59{word-spacing:8.373333pt;}
.wsb5{word-spacing:8.426667pt;}
.ws45{word-spacing:8.480000pt;}
.ws1a{word-spacing:8.496000pt;}
.wsc{word-spacing:8.533333pt;}
.ws140{word-spacing:8.544000pt;}
.wsba{word-spacing:8.586667pt;}
.wsfe{word-spacing:8.592000pt;}
.ws44{word-spacing:8.640000pt;}
.wsf1{word-spacing:8.688000pt;}
.ws54{word-spacing:8.693333pt;}
.wsf3{word-spacing:8.736000pt;}
.ws97{word-spacing:8.746667pt;}
.ws10f{word-spacing:8.784000pt;}
.ws55{word-spacing:8.800000pt;}
.ws162{word-spacing:8.832000pt;}
.ws28{word-spacing:8.906667pt;}
.ws5c{word-spacing:8.960000pt;}
.ws11f{word-spacing:8.976000pt;}
.ws2b{word-spacing:9.066667pt;}
.ws151{word-spacing:9.072000pt;}
.wse4{word-spacing:9.120000pt;}
.wscb{word-spacing:9.226667pt;}
.ws149{word-spacing:9.264000pt;}
.ws5a{word-spacing:9.280000pt;}
.ws21{word-spacing:9.312000pt;}
.ws68{word-spacing:9.333333pt;}
.ws160{word-spacing:9.360000pt;}
.wsa2{word-spacing:9.386667pt;}
.ws100{word-spacing:9.408000pt;}
.ws4c{word-spacing:9.440000pt;}
.ws168{word-spacing:9.456000pt;}
.wsa5{word-spacing:9.493333pt;}
.ws64{word-spacing:9.504000pt;}
.ws10{word-spacing:9.520000pt;}
.wsab{word-spacing:9.546667pt;}
.wsfa{word-spacing:9.552000pt;}
.wscc{word-spacing:9.600000pt;}
.ws99{word-spacing:9.653333pt;}
.wsff{word-spacing:9.696000pt;}
.ws2a{word-spacing:9.706667pt;}
.ws10a{word-spacing:9.744000pt;}
.ws76{word-spacing:9.760000pt;}
.ws12e{word-spacing:9.792000pt;}
.ws90{word-spacing:9.813333pt;}
.ws13e{word-spacing:9.840000pt;}
.wsb0{word-spacing:9.866667pt;}
.wsc9{word-spacing:9.973333pt;}
.ws148{word-spacing:9.984000pt;}
.ws6a{word-spacing:10.026667pt;}
.wsf2{word-spacing:10.032000pt;}
.ws34{word-spacing:10.042667pt;}
.wsdc{word-spacing:10.080000pt;}
.wsec{word-spacing:10.128000pt;}
.ws49{word-spacing:10.133333pt;}
.ws110{word-spacing:10.176000pt;}
.wsdf{word-spacing:10.240000pt;}
.ws124{word-spacing:10.272000pt;}
.ws87{word-spacing:10.293333pt;}
.ws1d{word-spacing:10.320000pt;}
.ws41{word-spacing:10.346667pt;}
.wsd9{word-spacing:10.400000pt;}
.ws15e{word-spacing:10.416000pt;}
.ws46{word-spacing:10.453333pt;}
.wsfc{word-spacing:10.464000pt;}
.ws2d{word-spacing:10.560000pt;}
.ws146{word-spacing:10.608000pt;}
.ws92{word-spacing:10.613333pt;}
.ws9d{word-spacing:10.666667pt;}
.ws11d{word-spacing:10.704000pt;}
.ws7c{word-spacing:10.720000pt;}
.ws141{word-spacing:10.752000pt;}
.ws9c{word-spacing:10.826667pt;}
.ws118{word-spacing:10.848000pt;}
.ws5b{word-spacing:10.880000pt;}
.wsfd{word-spacing:10.896000pt;}
.ws9f{word-spacing:10.933333pt;}
.ws10b{word-spacing:10.944000pt;}
.ws11c{word-spacing:10.992000pt;}
.wse8{word-spacing:11.040000pt;}
.ws2e{word-spacing:11.146667pt;}
.ws78{word-spacing:11.200000pt;}
.ws13b{word-spacing:11.232000pt;}
.ws8e{word-spacing:11.253333pt;}
.ws70{word-spacing:11.306667pt;}
.ws167{word-spacing:11.328000pt;}
.wsdb{word-spacing:11.360000pt;}
.ws79{word-spacing:11.413333pt;}
.ws111{word-spacing:11.424000pt;}
.wsa6{word-spacing:11.472000pt;}
.ws133{word-spacing:11.520000pt;}
.ws27{word-spacing:11.573333pt;}
.ws5e{word-spacing:11.626667pt;}
.ws147{word-spacing:11.664000pt;}
.wsed{word-spacing:11.712000pt;}
.ws71{word-spacing:11.733333pt;}
.ws123{word-spacing:11.760000pt;}
.ws73{word-spacing:11.786667pt;}
.ws114{word-spacing:11.808000pt;}
.wsca{word-spacing:11.893333pt;}
.ws6e{word-spacing:12.000000pt;}
.ws11a{word-spacing:12.096000pt;}
.ws5d{word-spacing:12.106667pt;}
.ws15d{word-spacing:12.144000pt;}
.ws7b{word-spacing:12.160000pt;}
.wsfb{word-spacing:12.192000pt;}
.wsc6{word-spacing:12.213333pt;}
.ws7f{word-spacing:12.266667pt;}
.ws153{word-spacing:12.288000pt;}
.wsb8{word-spacing:12.320000pt;}
.ws20{word-spacing:12.384000pt;}
.wsf{word-spacing:12.394667pt;}
.ws1b{word-spacing:12.480000pt;}
.ws4b{word-spacing:12.533333pt;}
.ws137{word-spacing:12.624000pt;}
.ws47{word-spacing:12.693333pt;}
.ws86{word-spacing:12.746667pt;}
.ws11b{word-spacing:12.768000pt;}
.ws6f{word-spacing:12.853333pt;}
.wsa1{word-spacing:12.906667pt;}
.ws1e{word-spacing:12.960000pt;}
.ws61{word-spacing:13.013333pt;}
.ws13a{word-spacing:13.056000pt;}
.ws80{word-spacing:13.066667pt;}
.ws15c{word-spacing:13.104000pt;}
.ws8d{word-spacing:13.120000pt;}
.ws3d{word-spacing:13.173333pt;}
.ws14d{word-spacing:13.200000pt;}
.ws3e{word-spacing:13.280000pt;}
.ws106{word-spacing:13.296000pt;}
.ws74{word-spacing:13.333333pt;}
.ws3f{word-spacing:13.493333pt;}
.wsda{word-spacing:13.546667pt;}
.wsd3{word-spacing:13.600000pt;}
.ws122{word-spacing:13.728000pt;}
.ws4a{word-spacing:13.760000pt;}
.ws113{word-spacing:13.776000pt;}
.ws84{word-spacing:13.813333pt;}
.ws14{word-spacing:13.824000pt;}
.ws22{word-spacing:13.968000pt;}
.ws119{word-spacing:14.064000pt;}
.wsac{word-spacing:14.133333pt;}
.ws57{word-spacing:14.240000pt;}
.ws26{word-spacing:14.293333pt;}
.ws62{word-spacing:14.400000pt;}
.ws98{word-spacing:14.453333pt;}
.ws53{word-spacing:14.506667pt;}
.wsd8{word-spacing:14.560000pt;}
.wsee{word-spacing:14.736000pt;}
.ws29{word-spacing:14.773333pt;}
.ws25{word-spacing:14.826667pt;}
.ws93{word-spacing:14.880000pt;}
.ws4e{word-spacing:14.933333pt;}
.ws56{word-spacing:14.986667pt;}
.wsf7{word-spacing:15.120000pt;}
.ws143{word-spacing:15.168000pt;}
.ws4f{word-spacing:15.200000pt;}
.ws10e{word-spacing:15.264000pt;}
.wsa0{word-spacing:15.360000pt;}
.ws130{word-spacing:15.456000pt;}
.ws81{word-spacing:15.466667pt;}
.wsc7{word-spacing:15.573333pt;}
.wsf5{word-spacing:15.600000pt;}
.ws164{word-spacing:15.696000pt;}
.wse5{word-spacing:15.733333pt;}
.ws9e{word-spacing:15.786667pt;}
.wse0{word-spacing:15.893333pt;}
.ws142{word-spacing:15.984000pt;}
.ws171{word-spacing:16.032000pt;}
.wsa7{word-spacing:16.213333pt;}
.wsa4{word-spacing:16.426667pt;}
.ws51{word-spacing:16.480000pt;}
.ws16c{word-spacing:16.656000pt;}
.ws121{word-spacing:16.752000pt;}
.ws42{word-spacing:17.013333pt;}
.ws69{word-spacing:17.120000pt;}
.ws107{word-spacing:17.328000pt;}
.ws2f{word-spacing:17.386667pt;}
.wsd4{word-spacing:17.600000pt;}
.ws1c{word-spacing:17.616000pt;}
.wsce{word-spacing:17.653333pt;}
.ws6b{word-spacing:17.920000pt;}
.ws126{word-spacing:17.952000pt;}
.wse3{word-spacing:17.973333pt;}
.ws12f{word-spacing:18.000000pt;}
.ws9a{word-spacing:18.026667pt;}
.ws163{word-spacing:18.288000pt;}
.wsf9{word-spacing:18.432000pt;}
.wsde{word-spacing:18.506667pt;}
.ws117{word-spacing:18.576000pt;}
.ws8c{word-spacing:19.520000pt;}
.wse6{word-spacing:19.840000pt;}
.ws16a{word-spacing:19.920000pt;}
.ws13f{word-spacing:20.256000pt;}
.wscf{word-spacing:20.586667pt;}
.ws128{word-spacing:20.592000pt;}
.ws125{word-spacing:20.880000pt;}
.ws13{word-spacing:21.024000pt;}
.ws7e{word-spacing:21.440000pt;}
.wsf8{word-spacing:21.456000pt;}
.ws116{word-spacing:21.600000pt;}
.ws157{word-spacing:21.696000pt;}
.ws19{word-spacing:22.080000pt;}
.ws67{word-spacing:22.186667pt;}
.ws152{word-spacing:22.992000pt;}
.ws169{word-spacing:23.184000pt;}
.ws127{word-spacing:23.952000pt;}
.ws158{word-spacing:24.720000pt;}
.ws156{word-spacing:25.296000pt;}
.ws1f{word-spacing:26.016000pt;}
.ws105{word-spacing:28.272000pt;}
.ws52{word-spacing:28.426667pt;}
.ws12d{word-spacing:28.800000pt;}
.ws135{word-spacing:30.480000pt;}
.ws104{word-spacing:32.976000pt;}
.ws12c{word-spacing:33.552000pt;}
.ws166{word-spacing:33.744000pt;}
.ws18{word-spacing:34.128000pt;}
.ws14c{word-spacing:34.272000pt;}
.ws134{word-spacing:35.520000pt;}
.ws165{word-spacing:39.312000pt;}
.ws14b{word-spacing:39.888000pt;}
.ws12a{word-spacing:51.840000pt;}
.ws155{word-spacing:52.416000pt;}
.ws129{word-spacing:60.384000pt;}
.ws154{word-spacing:61.056000pt;}
.wsc4{word-spacing:370.469867pt;}
.wsc5{word-spacing:370.470400pt;}
.wsc3{word-spacing:390.736533pt;}
._17{margin-left:-124.869244pt;}
._18{margin-left:-117.594178pt;}
._19{margin-left:-53.049786pt;}
._2f{margin-left:-14.720000pt;}
._16{margin-left:-13.546667pt;}
._15{margin-left:-11.914641pt;}
._1b{margin-left:-10.696052pt;}
._2e{margin-left:-9.760000pt;}
._10{margin-left:-8.640039pt;}
._12{margin-left:-7.733359pt;}
._1{margin-left:-6.720000pt;}
._6{margin-left:-5.749333pt;}
._2{margin-left:-3.989346pt;}
._3{margin-left:-3.093346pt;}
._0{margin-left:-1.706654pt;}
._7{width:1.234146pt;}
._8{width:2.458615pt;}
._14{width:3.407987pt;}
._38{width:4.529574pt;}
._4{width:5.599987pt;}
._5{width:6.933320pt;}
._33{width:7.896533pt;}
._a{width:8.928000pt;}
._e{width:9.988800pt;}
._d{width:11.011707pt;}
._f{width:12.847987pt;}
._11{width:14.172735pt;}
._9{width:15.194693pt;}
._36{width:18.218094pt;}
._31{width:20.933307pt;}
._3a{width:22.684254pt;}
._34{width:24.124774pt;}
._32{width:33.830335pt;}
._37{width:35.998920pt;}
._39{width:39.282641pt;}
._b{width:53.382920pt;}
._30{width:56.489067pt;}
._1a{width:59.755097pt;}
._35{width:60.835187pt;}
._13{width:117.065041pt;}
._c{width:118.826133pt;}
._2a{width:213.476254pt;}
._25{width:230.628267pt;}
._26{width:248.036254pt;}
._1e{width:266.726933pt;}
._23{width:274.489054pt;}
._1d{width:298.619200pt;}
._20{width:304.483720pt;}
._2d{width:355.598933pt;}
._24{width:373.223441pt;}
._28{width:384.831961pt;}
._2b{width:399.099200pt;}
._22{width:419.683733pt;}
._2c{width:447.118933pt;}
._29{width:458.212267pt;}
._1f{width:491.662400pt;}
._1c{width:518.078387pt;}
._21{width:539.577067pt;}
._27{width:568.419720pt;}
.fs11{font-size:25.802133pt;}
.fsf{font-size:29.100267pt;}
.fs10{font-size:29.164800pt;}
.fsc{font-size:31.200000pt;}
.fse{font-size:34.666667pt;}
.fsb{font-size:36.400000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs12{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y39{bottom:60.086668pt;}
.y1d4{bottom:68.934400pt;}
.y195{bottom:70.311333pt;}
.y38{bottom:74.753335pt;}
.ydf{bottom:75.269067pt;}
.yea{bottom:75.333200pt;}
.yb2{bottom:75.934400pt;}
.y13c{bottom:80.466667pt;}
.y1d3{bottom:83.601067pt;}
.y194{bottom:84.978000pt;}
.y4{bottom:86.333337pt;}
.y13b{bottom:92.466667pt;}
.yde{bottom:92.602400pt;}
.ye9{bottom:92.666533pt;}
.yb1{bottom:93.267733pt;}
.y1d2{bottom:98.267733pt;}
.y6c{bottom:98.613867pt;}
.y193{bottom:99.644667pt;}
.y13a{bottom:104.466667pt;}
.y6b{bottom:109.280533pt;}
.ydd{bottom:109.935733pt;}
.ye8{bottom:109.999867pt;}
.yb0{bottom:110.601067pt;}
.y1d1{bottom:112.934400pt;}
.y192{bottom:114.311333pt;}
.y139{bottom:116.466667pt;}
.y6a{bottom:119.947200pt;}
.y23{bottom:123.790666pt;}
.ydc{bottom:127.269067pt;}
.ye7{bottom:127.333200pt;}
.y1d0{bottom:127.601067pt;}
.yaf{bottom:127.934400pt;}
.y138{bottom:128.466667pt;}
.y191{bottom:128.978000pt;}
.y65{bottom:130.947200pt;}
.y149{bottom:136.666533pt;}
.y137{bottom:140.466667pt;}
.y68{bottom:140.613867pt;}
.y167{bottom:141.935733pt;}
.y1cf{bottom:142.267733pt;}
.y190{bottom:143.644667pt;}
.yfa{bottom:144.602400pt;}
.ye6{bottom:144.666533pt;}
.yae{bottom:145.267733pt;}
.y136{bottom:152.466667pt;}
.y67{bottom:152.613867pt;}
.ydb{bottom:153.935733pt;}
.y11f{bottom:153.999867pt;}
.y1ce{bottom:156.934400pt;}
.y18f{bottom:158.311333pt;}
.yf9{bottom:161.935733pt;}
.ye5{bottom:161.999867pt;}
.yad{bottom:162.601067pt;}
.y135{bottom:164.466667pt;}
.y66{bottom:164.613867pt;}
.y166{bottom:165.935733pt;}
.y1cd{bottom:171.601067pt;}
.y18e{bottom:172.978000pt;}
.y1a{bottom:175.052000pt;}
.y134{bottom:176.466667pt;}
.yf8{bottom:179.269067pt;}
.ye4{bottom:179.333200pt;}
.yac{bottom:179.934400pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y1cc{bottom:186.267733pt;}
.y18d{bottom:187.644667pt;}
.y148{bottom:188.300400pt;}
.y133{bottom:188.466667pt;}
.ye3{bottom:196.666533pt;}
.yab{bottom:197.267733pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y11e{bottom:199.333200pt;}
.y132{bottom:200.466667pt;}
.y1cb{bottom:200.934400pt;}
.y18c{bottom:202.311333pt;}
.y64{bottom:202.601067pt;}
.yda{bottom:205.601733pt;}
.y147{bottom:205.633733pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y37{bottom:210.601334pt;}
.y165{bottom:211.269067pt;}
.y131{bottom:212.466667pt;}
.ye2{bottom:213.999867pt;}
.yaa{bottom:214.601067pt;}
.y1ca{bottom:215.601067pt;}
.y11d{bottom:216.666533pt;}
.y18b{bottom:216.978000pt;}
.y63{bottom:219.934400pt;}
.yf7{bottom:220.602400pt;}
.yd9{bottom:222.935067pt;}
.y146{bottom:222.967067pt;}
.y130{bottom:224.466667pt;}
.y164{bottom:228.602400pt;}
.y1c9{bottom:230.267733pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.ye1{bottom:231.333200pt;}
.y18a{bottom:231.644667pt;}
.ya9{bottom:231.934400pt;}
.y11c{bottom:233.999867pt;}
.y12f{bottom:236.466667pt;}
.y62{bottom:237.267733pt;}
.yf6{bottom:237.935733pt;}
.yd8{bottom:240.268400pt;}
.y145{bottom:240.300400pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1c8{bottom:244.934400pt;}
.y163{bottom:245.935733pt;}
.y189{bottom:246.311333pt;}
.ya8{bottom:249.267733pt;}
.y11b{bottom:251.333200pt;}
.y12e{bottom:252.466667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y61{bottom:254.601067pt;}
.yf5{bottom:255.269067pt;}
.yd7{bottom:257.601733pt;}
.y144{bottom:257.633733pt;}
.ye0{bottom:257.999867pt;}
.y1c7{bottom:259.601067pt;}
.y188{bottom:260.978000pt;}
.y162{bottom:263.269067pt;}
.ya7{bottom:266.601067pt;}
.y36{bottom:267.801334pt;}
.y11a{bottom:268.666533pt;}
.y12d{bottom:269.133333pt;}
.y60{bottom:271.934400pt;}
.y1c6{bottom:274.267733pt;}
.yd6{bottom:274.935067pt;}
.y143{bottom:274.967067pt;}
.y187{bottom:275.644667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y161{bottom:280.602400pt;}
.yf4{bottom:281.935733pt;}
.ya6{bottom:283.934400pt;}
.y119{bottom:285.999867pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1c5{bottom:288.934400pt;}
.y5f{bottom:289.267733pt;}
.y186{bottom:290.311333pt;}
.yd5{bottom:292.268400pt;}
.y142{bottom:292.300400pt;}
.y160{bottom:297.935733pt;}
.ya5{bottom:301.267733pt;}
.y118{bottom:303.333200pt;}
.y1c4{bottom:303.601067pt;}
.y185{bottom:304.978000pt;}
.y5e{bottom:306.601067pt;}
.y11{bottom:309.452000pt;}
.yd4{bottom:309.601733pt;}
.y141{bottom:309.633733pt;}
.y12c{bottom:310.633333pt;}
.y15f{bottom:315.269067pt;}
.y1c3{bottom:318.267733pt;}
.ya4{bottom:318.601067pt;}
.y184{bottom:319.644667pt;}
.y117{bottom:320.666533pt;}
.y5d{bottom:323.934400pt;}
.y35{bottom:325.001334pt;}
.yd3{bottom:326.935067pt;}
.y140{bottom:326.967067pt;}
.yf3{bottom:327.269067pt;}
.y15e{bottom:332.602400pt;}
.y1c2{bottom:332.934400pt;}
.y183{bottom:334.311333pt;}
.ya3{bottom:335.934400pt;}
.y116{bottom:337.999867pt;}
.y5c{bottom:341.267733pt;}
.y12b{bottom:342.820897pt;}
.y10{bottom:343.809333pt;}
.yd2{bottom:344.268400pt;}
.y13f{bottom:344.300400pt;}
.y127{bottom:344.492000pt;}
.yf2{bottom:344.602400pt;}
.y1c1{bottom:347.601067pt;}
.y182{bottom:348.978000pt;}
.y15d{bottom:349.935733pt;}
.y12a{bottom:350.729251pt;}
.ya2{bottom:353.267733pt;}
.y115{bottom:355.333200pt;}
.y5b{bottom:358.601067pt;}
.y120{bottom:360.609467pt;}
.yd1{bottom:361.601733pt;}
.y13e{bottom:361.633733pt;}
.y1c0{bottom:362.267733pt;}
.yf{bottom:362.706666pt;}
.y181{bottom:363.644667pt;}
.y121{bottom:370.067053pt;}
.ya1{bottom:370.601067pt;}
.yf1{bottom:371.269067pt;}
.y114{bottom:372.666533pt;}
.y5a{bottom:375.934400pt;}
.y15c{bottom:376.602400pt;}
.y1bf{bottom:376.934400pt;}
.y180{bottom:378.311333pt;}
.yd0{bottom:378.935067pt;}
.y34{bottom:384.806667pt;}
.ya0{bottom:387.934400pt;}
.y13d{bottom:388.300400pt;}
.y113{bottom:389.999867pt;}
.y1be{bottom:391.601067pt;}
.y17f{bottom:392.978000pt;}
.y59{bottom:393.267733pt;}
.y122{bottom:393.980197pt;}
.ycf{bottom:396.268400pt;}
.y9f{bottom:405.267733pt;}
.y1bd{bottom:406.267733pt;}
.y112{bottom:407.333200pt;}
.y17e{bottom:407.644667pt;}
.yce{bottom:413.601733pt;}
.yf0{bottom:416.602400pt;}
.y123{bottom:417.871516pt;}
.y58{bottom:419.934400pt;}
.y1bc{bottom:420.934400pt;}
.y17d{bottom:422.311333pt;}
.y9e{bottom:422.601067pt;}
.y111{bottom:424.666533pt;}
.ycd{bottom:430.935067pt;}
.ye{bottom:430.990669pt;}
.y15b{bottom:433.434667pt;}
.yef{bottom:433.935733pt;}
.y1bb{bottom:435.601067pt;}
.y33{bottom:439.401334pt;}
.y9d{bottom:439.934400pt;}
.y124{bottom:441.783067pt;}
.y110{bottom:441.999867pt;}
.y17c{bottom:446.311333pt;}
.yd{bottom:446.990669pt;}
.ycc{bottom:448.268400pt;}
.y1ba{bottom:450.267733pt;}
.y15a{bottom:450.768000pt;}
.y9c{bottom:457.267733pt;}
.y10f{bottom:459.333200pt;}
.yee{bottom:461.801067pt;}
.yc{bottom:462.990669pt;}
.y1b9{bottom:464.934400pt;}
.ycb{bottom:465.601733pt;}
.y125{bottom:465.677600pt;}
.y159{bottom:468.101333pt;}
.y9b{bottom:474.601067pt;}
.yed{bottom:476.467733pt;}
.yb{bottom:478.990666pt;}
.y1b8{bottom:479.601067pt;}
.y57{bottom:482.601067pt;}
.yca{bottom:482.935067pt;}
.y158{bottom:485.434667pt;}
.y7e{bottom:485.646133pt;}
.y10e{bottom:485.999867pt;}
.y126{bottom:489.587733pt;}
.y17b{bottom:491.644667pt;}
.y9a{bottom:491.934400pt;}
.y1b7{bottom:494.267733pt;}
.ya{bottom:494.990666pt;}
.y56{bottom:495.934400pt;}
.y7d{bottom:497.646133pt;}
.y32{bottom:499.206667pt;}
.yc9{bottom:500.268400pt;}
.y129{bottom:502.665113pt;}
.y157{bottom:502.768000pt;}
.yec{bottom:502.867733pt;}
.y1b6{bottom:508.934400pt;}
.y55{bottom:509.267733pt;}
.y7c{bottom:509.646133pt;}
.y128{bottom:510.573467pt;}
.y17a{bottom:515.644667pt;}
.yeb{bottom:517.534400pt;}
.yc8{bottom:517.601733pt;}
.y156{bottom:520.101333pt;}
.y54{bottom:522.601067pt;}
.y1b5{bottom:523.601067pt;}
.y99{bottom:526.601067pt;}
.y7b{bottom:528.173467pt;}
.y31{bottom:529.740001pt;}
.y10d{bottom:531.333200pt;}
.yc7{bottom:534.935067pt;}
.y53{bottom:535.934400pt;}
.y155{bottom:537.434667pt;}
.y1b4{bottom:538.267733pt;}
.y7a{bottom:540.173467pt;}
.y30{bottom:543.073335pt;}
.y98{bottom:543.934400pt;}
.y10c{bottom:548.666533pt;}
.y52{bottom:549.267733pt;}
.y79{bottom:552.173467pt;}
.yc6{bottom:552.268400pt;}
.y1b3{bottom:552.934400pt;}
.y154{bottom:554.768000pt;}
.y2f{bottom:556.406667pt;}
.y97{bottom:561.267733pt;}
.y51{bottom:562.601067pt;}
.y78{bottom:564.173467pt;}
.y10b{bottom:565.999867pt;}
.y179{bottom:566.934400pt;}
.y1b2{bottom:567.601067pt;}
.yc5{bottom:569.601733pt;}
.y153{bottom:572.101333pt;}
.y9{bottom:573.786667pt;}
.y50{bottom:575.934400pt;}
.y96{bottom:578.601067pt;}
.y178{bottom:581.601067pt;}
.y77{bottom:582.201067pt;}
.y1b1{bottom:582.267733pt;}
.yc4{bottom:586.935067pt;}
.y4f{bottom:589.267733pt;}
.y152{bottom:589.434667pt;}
.y8{bottom:592.685334pt;}
.y76{bottom:594.201067pt;}
.y95{bottom:595.934400pt;}
.y177{bottom:596.267733pt;}
.y1b0{bottom:596.934400pt;}
.y4e{bottom:602.601067pt;}
.yc3{bottom:604.268400pt;}
.y75{bottom:606.201067pt;}
.y151{bottom:606.768000pt;}
.y10a{bottom:607.333200pt;}
.y1af{bottom:611.601067pt;}
.y94{bottom:613.267733pt;}
.y4d{bottom:615.934400pt;}
.y74{bottom:618.201067pt;}
.y176{bottom:620.267733pt;}
.yc2{bottom:621.601733pt;}
.y150{bottom:624.101333pt;}
.y109{bottom:624.666533pt;}
.y1ae{bottom:626.267733pt;}
.y2e{bottom:628.726665pt;}
.y4c{bottom:629.267733pt;}
.y73{bottom:630.201067pt;}
.y93{bottom:630.601067pt;}
.yc1{bottom:638.935067pt;}
.y1ad{bottom:640.934400pt;}
.y14f{bottom:641.434667pt;}
.y108{bottom:641.999867pt;}
.y72{bottom:642.201067pt;}
.y4b{bottom:642.601067pt;}
.y7{bottom:645.598667pt;}
.y92{bottom:647.934400pt;}
.y2d{bottom:655.393332pt;}
.y1ac{bottom:655.601067pt;}
.y4a{bottom:655.934400pt;}
.yc0{bottom:656.268400pt;}
.y14e{bottom:658.768000pt;}
.y107{bottom:659.333200pt;}
.y71{bottom:662.434400pt;}
.y91{bottom:665.267733pt;}
.y175{bottom:665.601067pt;}
.y3{bottom:668.977329pt;}
.y49{bottom:669.267733pt;}
.y1ab{bottom:670.267733pt;}
.y2c{bottom:671.393332pt;}
.ybf{bottom:673.601733pt;}
.y70{bottom:674.434400pt;}
.y14d{bottom:676.101333pt;}
.y106{bottom:676.666533pt;}
.y174{bottom:680.267733pt;}
.y48{bottom:682.601067pt;}
.y1aa{bottom:684.934400pt;}
.y6f{bottom:686.434400pt;}
.y2b{bottom:687.393332pt;}
.ybe{bottom:690.935067pt;}
.y14c{bottom:693.434667pt;}
.y47{bottom:695.934400pt;}
.y6e{bottom:698.434400pt;}
.y1a9{bottom:699.601067pt;}
.y90{bottom:699.934400pt;}
.y2a{bottom:703.393332pt;}
.y173{bottom:704.267733pt;}
.ybd{bottom:708.268400pt;}
.y46{bottom:709.267733pt;}
.y6d{bottom:710.434400pt;}
.y14b{bottom:710.768000pt;}
.y1a8{bottom:714.267733pt;}
.y8f{bottom:717.267733pt;}
.y105{bottom:717.999867pt;}
.ybc{bottom:725.601733pt;}
.y1a7{bottom:728.934400pt;}
.y8e{bottom:734.601067pt;}
.y104{bottom:735.333200pt;}
.y14a{bottom:737.434667pt;}
.ybb{bottom:742.935067pt;}
.y1a6{bottom:743.601067pt;}
.y172{bottom:749.601067pt;}
.y29{bottom:750.034669pt;}
.y45{bottom:750.934400pt;}
.y8d{bottom:751.934400pt;}
.y103{bottom:752.666533pt;}
.y1a5{bottom:758.267733pt;}
.yba{bottom:760.268400pt;}
.y44{bottom:764.267733pt;}
.y8c{bottom:769.267733pt;}
.y102{bottom:769.999867pt;}
.y1a4{bottom:772.934400pt;}
.y43{bottom:777.601067pt;}
.yb9{bottom:777.601733pt;}
.y171{bottom:778.934400pt;}
.y2{bottom:781.661334pt;}
.y8b{bottom:786.601067pt;}
.y1a3{bottom:787.601067pt;}
.y42{bottom:790.934400pt;}
.yb8{bottom:794.935067pt;}
.y170{bottom:801.601067pt;}
.y1a2{bottom:802.267733pt;}
.y8a{bottom:803.934400pt;}
.y28{bottom:806.613333pt;}
.y41{bottom:808.227733pt;}
.yb7{bottom:812.268400pt;}
.y101{bottom:814.056400pt;}
.y16f{bottom:816.267733pt;}
.y1a1{bottom:816.934400pt;}
.y89{bottom:821.267733pt;}
.y40{bottom:828.267733pt;}
.yb6{bottom:829.601733pt;}
.y16e{bottom:830.934400pt;}
.y100{bottom:831.389733pt;}
.y1a0{bottom:831.601067pt;}
.y27{bottom:834.613333pt;}
.y88{bottom:838.601067pt;}
.y19f{bottom:846.267733pt;}
.yb5{bottom:846.935067pt;}
.yff{bottom:848.723067pt;}
.y16d{bottom:853.601067pt;}
.y87{bottom:855.934400pt;}
.y1{bottom:859.312000pt;}
.y19e{bottom:860.934400pt;}
.y26{bottom:862.613333pt;}
.y3f{bottom:862.934400pt;}
.yfe{bottom:866.056400pt;}
.y16c{bottom:868.267733pt;}
.y86{bottom:873.267733pt;}
.yb4{bottom:873.601733pt;}
.y19d{bottom:875.601067pt;}
.y16b{bottom:882.934400pt;}
.yfd{bottom:883.389733pt;}
.y3e{bottom:884.267733pt;}
.y19c{bottom:890.267733pt;}
.y85{bottom:890.601067pt;}
.yfc{bottom:900.723067pt;}
.y19b{bottom:904.934400pt;}
.y3d{bottom:905.601067pt;}
.y16a{bottom:906.934400pt;}
.y84{bottom:907.934400pt;}
.yfb{bottom:918.056400pt;}
.y19a{bottom:919.601067pt;}
.y25{bottom:920.485335pt;}
.y83{bottom:925.267733pt;}
.y3a{bottom:931.121067pt;}
.y199{bottom:934.267733pt;}
.y82{bottom:942.601067pt;}
.y198{bottom:948.934400pt;}
.y169{bottom:952.267733pt;}
.y81{bottom:959.934400pt;}
.y69{bottom:963.362000pt;}
.y197{bottom:963.601067pt;}
.y3c{bottom:975.473733pt;}
.y168{bottom:976.267733pt;}
.y80{bottom:977.267733pt;}
.y196{bottom:978.267733pt;}
.y3b{bottom:987.473733pt;}
.yb3{bottom:1014.433867pt;}
.y7f{bottom:1014.500533pt;}
.y24{bottom:1035.664002pt;}
.h26{height:17.545451pt;}
.h24{height:19.788181pt;}
.h25{height:19.832064pt;}
.h16{height:22.308000pt;}
.h1c{height:26.693333pt;}
.h19{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1e{height:30.506667pt;}
.h1d{height:30.762667pt;}
.hb{height:32.645833pt;}
.h20{height:33.080000pt;}
.h18{height:34.320000pt;}
.h1f{height:35.285333pt;}
.h27{height:36.226667pt;}
.hf{height:36.726562pt;}
.h17{height:38.148000pt;}
.h1a{height:39.696000pt;}
.h22{height:39.760000pt;}
.h21{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h1b{height:42.298667pt;}
.h3{height:42.840000pt;}
.h12{height:44.106667pt;}
.h23{height:46.269333pt;}
.h15{height:48.582800pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x13{left:109.333333pt;}
.xb{left:112.100000pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x9{left:203.327991pt;}
.xf{left:250.115521pt;}
.xe{left:258.729200pt;}
.x8{left:260.969328pt;}
.x10{left:348.681067pt;}
.x3{left:404.408000pt;}
.x11{left:499.468767pt;}
.x14{left:502.378267pt;}
.xd{left:507.508000pt;}
.x12{left:516.588483pt;}
.xc{left:577.800667pt;}
}




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