
    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_2700cfbc029437995ba3c3f1.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_0609cce8110a3c7c1bfc7caf.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_43d5342112ce838de787d61d.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_f23ff79a7072c3b3fae4d13f.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_46bb06d4395f2c0a69abbfa9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_95ab0f87bb79635c7f1ad0b1.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_7756ac7e263ccfc68d580308.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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_e0f7ee09c163d69ab13bf208.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_0584db9e9441932f64c93cec.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_0ed73d376a56972ea2267e5c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.947000;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_2b715186f14d0415080cc843.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.794000;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_06210d38901c0d060305f16a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_67751e276eb857bb571fbe9d.woff2')format("woff");}.fff{font-family:fff;line-height:0.799000;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_413a762d1f375d9cfe76b594.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7a1b528ec25e24fbb4bd8493.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_211dcdf5fe23525577314195.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_b5bce11a6381cb69479bfd2a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.682129;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:ff14;src:url('chunks/assets/font_d3f78af45d393adb4c746d70.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.820000px;}
.v6{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.000000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.v5{vertical-align:28.003800px;}
.lsb{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.420000px;}
.ls1b{letter-spacing:-0.312185px;}
.ls1a{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.138749px;}
.lsc{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.408450px;}
.ls5{letter-spacing:0.409500px;}
.ls8{letter-spacing:0.450000px;}
.ls16{letter-spacing:0.486000px;}
.lsd{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.lse{letter-spacing:3.205466px;}
.ls18{letter-spacing:8.067600px;}
.lsf{letter-spacing:8.257800px;}
.ls10{letter-spacing:8.258400px;}
.ls24{letter-spacing:9.157200px;}
.ls23{letter-spacing:9.157800px;}
.ls19{letter-spacing:10.174800px;}
.ls11{letter-spacing:18.480000px;}
.ls9{letter-spacing:21.489600px;}
.ls6{letter-spacing:71.943600px;}
.ls1e{letter-spacing:76.732120px;}
.lsa{letter-spacing:81.273000px;}
.ls14{letter-spacing:89.007355px;}
.ls1d{letter-spacing:91.990454px;}
.ls13{letter-spacing:96.660000px;}
.ls1c{letter-spacing:103.860000px;}
.ls20{letter-spacing:275.383800px;}
.ls1f{letter-spacing:288.900000px;}
.ls21{letter-spacing:404.564400px;}
.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;}
}
.wsd7{word-spacing:-288.900000px;}
.wse3{word-spacing:-284.791800px;}
.wsa2{word-spacing:-121.194000px;}
.wscf{word-spacing:-87.810647px;}
.wsd0{word-spacing:-85.873624px;}
.wsa3{word-spacing:-82.444537px;}
.wsce{word-spacing:-52.194000px;}
.ws1{word-spacing:-13.986000px;}
.ws112{word-spacing:-13.332000px;}
.ws9e{word-spacing:-13.260000px;}
.ws37{word-spacing:-12.720000px;}
.ws5{word-spacing:-12.600000px;}
.wsff{word-spacing:-12.240000px;}
.ws113{word-spacing:-11.448000px;}
.wsa9{word-spacing:-11.100000px;}
.wsa6{word-spacing:-10.920000px;}
.ws82{word-spacing:-10.908000px;}
.wsca{word-spacing:-10.680000px;}
.ws114{word-spacing:-9.828000px;}
.ws9{word-spacing:-9.810000px;}
.ws6{word-spacing:-9.696000px;}
.wsaa{word-spacing:-9.408000px;}
.ws3{word-spacing:-9.360000px;}
.ws133{word-spacing:-9.288000px;}
.ws7{word-spacing:-8.820000px;}
.wsa8{word-spacing:-8.268000px;}
.ws8{word-spacing:-8.232000px;}
.wsa7{word-spacing:-7.098000px;}
.ws2{word-spacing:-6.879600px;}
.wsc6{word-spacing:-5.220000px;}
.ws4{word-spacing:-2.666400px;}
.ws61{word-spacing:-0.450000px;}
.ws0{word-spacing:0.000000px;}
.ws103{word-spacing:0.480000px;}
.ws13c{word-spacing:0.540000px;}
.wsd4{word-spacing:3.420000px;}
.ws144{word-spacing:3.888000px;}
.ws102{word-spacing:4.080000px;}
.ws143{word-spacing:4.914000px;}
.ws13{word-spacing:5.022000px;}
.ws128{word-spacing:5.454000px;}
.ws154{word-spacing:5.616000px;}
.ws98{word-spacing:5.640000px;}
.wsde{word-spacing:5.700000px;}
.ws142{word-spacing:5.724000px;}
.ws14d{word-spacing:5.886000px;}
.wsd9{word-spacing:5.889000px;}
.ws1f{word-spacing:6.060000px;}
.ws11f{word-spacing:6.102000px;}
.ws36{word-spacing:6.192000px;}
.ws145{word-spacing:6.264000px;}
.ws15b{word-spacing:6.318000px;}
.ws107{word-spacing:6.372000px;}
.ws8b{word-spacing:6.420000px;}
.ws1a{word-spacing:6.426000px;}
.ws21{word-spacing:6.480000px;}
.ws153{word-spacing:6.588000px;}
.ws2f{word-spacing:6.594000px;}
.wsb{word-spacing:6.615000px;}
.ws137{word-spacing:6.642000px;}
.ws34{word-spacing:6.660000px;}
.ws13d{word-spacing:6.750000px;}
.ws12d{word-spacing:6.804000px;}
.ws2c{word-spacing:6.840000px;}
.ws6a{word-spacing:6.900000px;}
.ws12a{word-spacing:6.912000px;}
.ws38{word-spacing:6.960000px;}
.wsf8{word-spacing:7.020000px;}
.wsc{word-spacing:7.065000px;}
.ws11e{word-spacing:7.074000px;}
.ws12b{word-spacing:7.182000px;}
.ws2d{word-spacing:7.200000px;}
.ws119{word-spacing:7.290000px;}
.ws108{word-spacing:7.344000px;}
.ws8a{word-spacing:7.380000px;}
.ws46{word-spacing:7.440000px;}
.ws140{word-spacing:7.452000px;}
.wsfb{word-spacing:7.500000px;}
.ws139{word-spacing:7.506000px;}
.ws31{word-spacing:7.536000px;}
.ws2e{word-spacing:7.560000px;}
.ws13a{word-spacing:7.614000px;}
.ws40{word-spacing:7.620000px;}
.ws4a{word-spacing:7.680000px;}
.ws125{word-spacing:7.722000px;}
.ws6b{word-spacing:7.740000px;}
.ws10{word-spacing:7.776000px;}
.ws51{word-spacing:7.860000px;}
.ws11a{word-spacing:7.884000px;}
.ws12c{word-spacing:7.938000px;}
.ws69{word-spacing:7.980000px;}
.ws76{word-spacing:8.040000px;}
.ws14b{word-spacing:8.046000px;}
.wsd1{word-spacing:8.100000px;}
.ws129{word-spacing:8.154000px;}
.ws35{word-spacing:8.160000px;}
.ws111{word-spacing:8.208000px;}
.ws101{word-spacing:8.220000px;}
.ws71{word-spacing:8.280000px;}
.ws24{word-spacing:8.340000px;}
.ws5a{word-spacing:8.400000px;}
.ws52{word-spacing:8.460000px;}
.wsf{word-spacing:8.478000px;}
.ws33{word-spacing:8.484000px;}
.ws1e{word-spacing:8.520000px;}
.ws127{word-spacing:8.532000px;}
.ws54{word-spacing:8.580000px;}
.ws3b{word-spacing:8.640000px;}
.ws55{word-spacing:8.700000px;}
.ws138{word-spacing:8.748000px;}
.wsf4{word-spacing:8.760000px;}
.wsc8{word-spacing:8.778000px;}
.ws132{word-spacing:8.802000px;}
.ws3f{word-spacing:8.820000px;}
.ws9a{word-spacing:8.940000px;}
.wsc9{word-spacing:8.949000px;}
.ws16{word-spacing:8.964000px;}
.ws58{word-spacing:9.000000px;}
.ws75{word-spacing:9.060000px;}
.ws41{word-spacing:9.120000px;}
.ws11c{word-spacing:9.126000px;}
.ws1b{word-spacing:9.180000px;}
.ws67{word-spacing:9.240000px;}
.ws49{word-spacing:9.261000px;}
.ws6e{word-spacing:9.300000px;}
.ws29{word-spacing:9.360000px;}
.ws42{word-spacing:9.420000px;}
.wsdf{word-spacing:9.480000px;}
.ws104{word-spacing:9.540000px;}
.wsa{word-spacing:9.600000px;}
.ws7f{word-spacing:9.660000px;}
.ws141{word-spacing:9.666000px;}
.ws11d{word-spacing:9.774000px;}
.ws105{word-spacing:9.780000px;}
.ws70{word-spacing:9.840000px;}
.ws79{word-spacing:9.900000px;}
.wsfc{word-spacing:9.960000px;}
.ws14e{word-spacing:9.990000px;}
.ws100{word-spacing:10.020000px;}
.ws4e{word-spacing:10.080000px;}
.ws124{word-spacing:10.098000px;}
.ws97{word-spacing:10.140000px;}
.ws44{word-spacing:10.200000px;}
.ws95{word-spacing:10.260000px;}
.ws12f{word-spacing:10.368000px;}
.ws1d{word-spacing:10.380000px;}
.ws10b{word-spacing:10.422000px;}
.ws57{word-spacing:10.440000px;}
.ws6f{word-spacing:10.500000px;}
.ws134{word-spacing:10.530000px;}
.ws64{word-spacing:10.560000px;}
.ws147{word-spacing:10.584000px;}
.ws7b{word-spacing:10.620000px;}
.ws11b{word-spacing:10.638000px;}
.ws96{word-spacing:10.680000px;}
.ws48{word-spacing:10.692000px;}
.wse{word-spacing:10.710000px;}
.ws77{word-spacing:10.740000px;}
.ws12{word-spacing:10.746000px;}
.wsc2{word-spacing:10.800000px;}
.ws152{word-spacing:10.854000px;}
.ws3d{word-spacing:10.860000px;}
.ws136{word-spacing:10.908000px;}
.ws8d{word-spacing:10.920000px;}
.wsd3{word-spacing:10.980000px;}
.ws110{word-spacing:11.016000px;}
.ws28{word-spacing:11.040000px;}
.ws72{word-spacing:11.100000px;}
.ws94{word-spacing:11.124000px;}
.ws99{word-spacing:11.160000px;}
.ws115{word-spacing:11.178000px;}
.ws2a{word-spacing:11.220000px;}
.ws109{word-spacing:11.232000px;}
.ws62{word-spacing:11.280000px;}
.ws32{word-spacing:11.298000px;}
.ws8e{word-spacing:11.400000px;}
.ws159{word-spacing:11.448000px;}
.wsda{word-spacing:11.460000px;}
.wsd2{word-spacing:11.520000px;}
.ws155{word-spacing:11.556000px;}
.ws158{word-spacing:11.610000px;}
.wsbf{word-spacing:11.640000px;}
.ws89{word-spacing:11.760000px;}
.ws8f{word-spacing:11.820000px;}
.ws1c{word-spacing:11.880000px;}
.ws66{word-spacing:12.000000px;}
.ws7d{word-spacing:12.060000px;}
.ws5f{word-spacing:12.120000px;}
.ws3a{word-spacing:12.180000px;}
.ws117{word-spacing:12.204000px;}
.ws2b{word-spacing:12.240000px;}
.ws84{word-spacing:12.300000px;}
.ws146{word-spacing:12.312000px;}
.ws6d{word-spacing:12.420000px;}
.ws157{word-spacing:12.474000px;}
.wsc3{word-spacing:12.480000px;}
.ws65{word-spacing:12.540000px;}
.ws122{word-spacing:12.582000px;}
.ws151{word-spacing:12.636000px;}
.ws5b{word-spacing:12.660000px;}
.ws135{word-spacing:12.690000px;}
.ws7e{word-spacing:12.720000px;}
.wse1{word-spacing:12.840000px;}
.ws131{word-spacing:12.852000px;}
.wsf6{word-spacing:12.900000px;}
.ws150{word-spacing:12.906000px;}
.wsd5{word-spacing:12.960000px;}
.ws23{word-spacing:13.020000px;}
.ws14a{word-spacing:13.068000px;}
.wsf5{word-spacing:13.080000px;}
.ws14c{word-spacing:13.122000px;}
.ws47{word-spacing:13.200000px;}
.ws50{word-spacing:13.260000px;}
.ws93{word-spacing:13.320000px;}
.wsf3{word-spacing:13.440000px;}
.ws8c{word-spacing:13.500000px;}
.ws121{word-spacing:13.662000px;}
.ws3c{word-spacing:13.680000px;}
.ws126{word-spacing:13.716000px;}
.ws14f{word-spacing:13.770000px;}
.ws25{word-spacing:13.860000px;}
.wsd{word-spacing:13.944000px;}
.ws27{word-spacing:14.040000px;}
.ws12e{word-spacing:14.202000px;}
.ws86{word-spacing:14.220000px;}
.ws4c{word-spacing:14.280000px;}
.ws73{word-spacing:14.400000px;}
.ws10d{word-spacing:14.472000px;}
.ws9d{word-spacing:14.520000px;}
.ws156{word-spacing:14.526000px;}
.wse2{word-spacing:14.580000px;}
.ws4d{word-spacing:14.640000px;}
.wsc0{word-spacing:14.700000px;}
.ws78{word-spacing:14.760000px;}
.ws53{word-spacing:14.820000px;}
.ws74{word-spacing:14.880000px;}
.ws22{word-spacing:14.940000px;}
.ws130{word-spacing:14.958000px;}
.ws92{word-spacing:15.120000px;}
.ws68{word-spacing:15.180000px;}
.ws3e{word-spacing:15.240000px;}
.wsf2{word-spacing:15.300000px;}
.ws45{word-spacing:15.360000px;}
.ws20{word-spacing:15.420000px;}
.wsfa{word-spacing:15.480000px;}
.wsdb{word-spacing:15.660000px;}
.ws59{word-spacing:15.720000px;}
.ws10c{word-spacing:15.768000px;}
.wsf7{word-spacing:15.840000px;}
.ws85{word-spacing:15.900000px;}
.ws80{word-spacing:15.960000px;}
.ws149{word-spacing:16.092000px;}
.wsfd{word-spacing:16.140000px;}
.ws10a{word-spacing:16.146000px;}
.ws11{word-spacing:16.308000px;}
.ws88{word-spacing:16.320000px;}
.ws120{word-spacing:16.362000px;}
.wsd6{word-spacing:16.440000px;}
.ws123{word-spacing:16.470000px;}
.ws4b{word-spacing:16.560000px;}
.ws26{word-spacing:16.620000px;}
.ws4f{word-spacing:16.680000px;}
.ws10e{word-spacing:16.794000px;}
.ws83{word-spacing:16.920000px;}
.wsdd{word-spacing:17.160000px;}
.wse0{word-spacing:17.280000px;}
.ws116{word-spacing:17.334000px;}
.ws63{word-spacing:17.520000px;}
.ws91{word-spacing:17.880000px;}
.ws39{word-spacing:18.000000px;}
.ws6c{word-spacing:18.060000px;}
.wsfe{word-spacing:18.180000px;}
.ws10f{word-spacing:18.252000px;}
.wsf9{word-spacing:18.600000px;}
.ws81{word-spacing:18.660000px;}
.ws148{word-spacing:18.738000px;}
.ws5c{word-spacing:18.840000px;}
.ws7c{word-spacing:19.140000px;}
.ws90{word-spacing:19.200000px;}
.ws7a{word-spacing:19.260000px;}
.wsdc{word-spacing:19.620000px;}
.ws56{word-spacing:19.800000px;}
.ws43{word-spacing:19.920000px;}
.ws19{word-spacing:20.034000px;}
.ws60{word-spacing:20.040000px;}
.ws15{word-spacing:20.088000px;}
.wsc1{word-spacing:20.100000px;}
.ws14{word-spacing:20.466000px;}
.ws9b{word-spacing:20.520000px;}
.ws13f{word-spacing:20.736000px;}
.ws87{word-spacing:20.940000px;}
.ws118{word-spacing:21.060000px;}
.ws30{word-spacing:21.264000px;}
.ws106{word-spacing:22.500000px;}
.ws15a{word-spacing:22.680000px;}
.ws5e{word-spacing:23.700000px;}
.ws18{word-spacing:24.084000px;}
.ws13e{word-spacing:24.138000px;}
.ws17{word-spacing:24.354000px;}
.wsc4{word-spacing:25.020000px;}
.ws9c{word-spacing:25.320000px;}
.ws13b{word-spacing:27.972000px;}
.wsc7{word-spacing:32.700000px;}
.ws5d{word-spacing:34.560000px;}
.wsa4{word-spacing:41.220000px;}
.ws9f{word-spacing:41.460000px;}
.wscc{word-spacing:88.105488px;}
.wsa0{word-spacing:94.383871px;}
.wscb{word-spacing:132.000000px;}
.wsa5{word-spacing:161.820000px;}
.wsee{word-spacing:167.431800px;}
.wsf1{word-spacing:174.775800px;}
.wsed{word-spacing:187.831800px;}
.wsef{word-spacing:210.631800px;}
.wsb8{word-spacing:236.980800px;}
.wsae{word-spacing:236.981400px;}
.wsf0{word-spacing:243.175800px;}
.wse4{word-spacing:245.720400px;}
.wsac{word-spacing:265.408800px;}
.wse5{word-spacing:337.448400px;}
.wse6{word-spacing:340.184400px;}
.wsc5{word-spacing:442.638000px;}
.wsb3{word-spacing:466.384200px;}
.wsb7{word-spacing:467.867400px;}
.wse7{word-spacing:468.981000px;}
.wse8{word-spacing:471.717000px;}
.wsba{word-spacing:475.984200px;}
.wsaf{word-spacing:482.699400px;}
.wsab{word-spacing:484.008000px;}
.wsb0{word-spacing:484.283400px;}
.wsb5{word-spacing:499.355400px;}
.wsb4{word-spacing:501.947400px;}
.wsbb{word-spacing:502.523400px;}
.wsb1{word-spacing:505.259400px;}
.wsad{word-spacing:506.507400px;}
.wsbc{word-spacing:507.275400px;}
.wsb9{word-spacing:508.523400px;}
.wsd8{word-spacing:509.814000px;}
.wsb2{word-spacing:510.203400px;}
.wsb6{word-spacing:514.187400px;}
.wsbe{word-spacing:525.515400px;}
.wsbd{word-spacing:556.715400px;}
.wsea{word-spacing:941.544000px;}
.wse9{word-spacing:964.151400px;}
.wsec{word-spacing:1073.076600px;}
.wseb{word-spacing:1095.684600px;}
.wscd{word-spacing:1432.511986px;}
.wsa1{word-spacing:1559.085578px;}
._1f{margin-left:-1591.726234px;}
._4e{margin-left:-1469.916361px;}
._5e{margin-left:-274.892517px;}
._11{margin-left:-29.383815px;}
._4f{margin-left:-25.188000px;}
._20{margin-left:-18.588000px;}
._12{margin-left:-17.280015px;}
._5b{margin-left:-16.022429px;}
._5a{margin-left:-14.776200px;}
._5c{margin-left:-13.147829px;}
._45{margin-left:-9.245941px;}
._68{margin-left:-7.632000px;}
._a{margin-left:-5.484029px;}
._1{margin-left:-4.140000px;}
._7{margin-left:-3.078000px;}
._0{margin-left:-1.919985px;}
._5{width:1.037371px;}
._4{width:2.667585px;}
._6b{width:4.810800px;}
._2{width:6.299985px;}
._3{width:7.799985px;}
._6{width:9.088785px;}
._d{width:10.665600px;}
._9{width:13.392000px;}
._8{width:14.597985px;}
._e{width:16.488000px;}
._f{width:19.313985px;}
._13{width:20.917244px;}
._6a{width:24.731971px;}
._53{width:29.414746px;}
._4a{width:41.760000px;}
._49{width:44.160000px;}
._69{width:59.194200px;}
._b{width:60.611385px;}
._28{width:72.181829px;}
._4b{width:75.534000px;}
._22{width:77.432400px;}
._15{width:79.800000px;}
._19{width:81.600000px;}
._50{width:96.612000px;}
._14{width:101.100000px;}
._47{width:107.160000px;}
._58{width:111.088227px;}
._55{width:112.816649px;}
._21{width:122.125829px;}
._54{width:123.611306px;}
._10{width:131.698171px;}
._c{width:133.679400px;}
._48{width:134.940000px;}
._24{width:147.597505px;}
._17{width:156.120000px;}
._1a{width:162.720000px;}
._52{width:166.212000px;}
._43{width:172.859400px;}
._67{width:175.183800px;}
._51{width:180.012000px;}
._61{width:185.236200px;}
._36{width:186.443400px;}
._4d{width:202.434499px;}
._66{width:203.887229px;}
._56{width:205.816501px;}
._59{width:208.884611px;}
._16{width:210.000000px;}
._63{width:211.039800px;}
._44{width:213.954585px;}
._57{width:226.195231px;}
._1c{width:234.069226px;}
._39{width:235.601985px;}
._25{width:238.783216px;}
._65{width:243.583200px;}
._35{width:248.507385px;}
._37{width:257.771400px;}
._42{width:268.235385px;}
._46{width:270.600000px;}
._26{width:278.989150px;}
._23{width:284.983098px;}
._18{width:297.600000px;}
._33{width:310.523400px;}
._31{width:312.491400px;}
._3f{width:315.330600px;}
._3e{width:320.123400px;}
._1e{width:323.458140px;}
._3c{width:326.382015px;}
._1d{width:328.869343px;}
._41{width:335.497229px;}
._34{width:338.466000px;}
._32{width:339.905985px;}
._38{width:341.023785px;}
._3a{width:356.363385px;}
._3b{width:358.043400px;}
._3d{width:368.454600px;}
._40{width:379.883400px;}
._2c{width:445.344644px;}
._2d{width:469.277400px;}
._4c{width:503.623457px;}
._1b{width:523.880782px;}
._2e{width:551.645415px;}
._27{width:612.360000px;}
._2b{width:751.494015px;}
._5d{width:858.733785px;}
._29{width:863.028629px;}
._64{width:1443.019200px;}
._60{width:1445.251785px;}
._2a{width:1448.147400px;}
._62{width:1464.283185px;}
._5f{width:1494.758985px;}
._30{width:1507.907385px;}
._2f{width:1526.602800px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:31.200000px;}
.fse{font-size:34.687200px;}
.fsc{font-size:35.100000px;}
.fsf{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;}
.fs10{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs11{font-size:61.434844px;}
.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;}
.yfa{bottom:3.498300px;}
.y121{bottom:3.498450px;}
.yf8{bottom:7.248300px;}
.y11f{bottom:7.398450px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y3a{bottom:67.597501px;}
.y6b{bottom:70.815600px;}
.y6a{bottom:82.815600px;}
.y39{bottom:84.097501px;}
.yaf{bottom:85.275000px;}
.y149{bottom:86.400000px;}
.y11c{bottom:90.525000px;}
.y195{bottom:90.656550px;}
.y205{bottom:94.051200px;}
.y69{bottom:94.815600px;}
.y4{bottom:97.125005px;}
.y1ca{bottom:98.700450px;}
.y11b{bottom:104.025000px;}
.yae{bottom:104.775000px;}
.y148{bottom:105.900000px;}
.y194{bottom:107.156550px;}
.y65{bottom:107.190600px;}
.y204{bottom:110.551200px;}
.y1c9{bottom:115.200450px;}
.y11a{bottom:117.525000px;}
.y67{bottom:121.065600px;}
.y193{bottom:123.656550px;}
.yad{bottom:124.275000px;}
.y147{bottom:125.400000px;}
.y203{bottom:127.051200px;}
.y119{bottom:131.025000px;}
.y1c8{bottom:131.700450px;}
.y66{bottom:134.565600px;}
.y23{bottom:139.264499px;}
.y192{bottom:140.156550px;}
.y202{bottom:143.551200px;}
.yac{bottom:143.775000px;}
.y118{bottom:144.525000px;}
.y146{bottom:144.900000px;}
.y1c7{bottom:148.200450px;}
.y191{bottom:156.656550px;}
.y117{bottom:158.025000px;}
.y201{bottom:160.051200px;}
.yab{bottom:163.275000px;}
.y145{bottom:164.400000px;}
.y1c6{bottom:164.700450px;}
.y116{bottom:171.525000px;}
.y200{bottom:176.551200px;}
.y1c5{bottom:181.200450px;}
.y190{bottom:182.156550px;}
.yaa{bottom:182.775000px;}
.y144{bottom:183.900000px;}
.y64{bottom:184.426200px;}
.y115{bottom:185.025000px;}
.y1ff{bottom:193.051200px;}
.y1a{bottom:196.933500px;}
.y1c4{bottom:197.700450px;}
.y114{bottom:198.525000px;}
.y18f{bottom:198.656550px;}
.ya9{bottom:202.275000px;}
.y143{bottom:203.400000px;}
.y63{bottom:203.926200px;}
.y38{bottom:205.426501px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y1fe{bottom:209.551200px;}
.y113{bottom:212.025000px;}
.y1c3{bottom:214.200450px;}
.y18e{bottom:215.156550px;}
.ya8{bottom:221.775000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y142{bottom:222.900000px;}
.y62{bottom:223.426200px;}
.y112{bottom:225.525000px;}
.y1fd{bottom:226.051200px;}
.y1c2{bottom:230.700450px;}
.y18d{bottom:231.656550px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y111{bottom:239.025000px;}
.ya7{bottom:241.275000px;}
.y141{bottom:242.400000px;}
.y1fc{bottom:242.551200px;}
.y61{bottom:242.926200px;}
.y1c1{bottom:247.200450px;}
.y18c{bottom:248.156550px;}
.y110{bottom:252.525000px;}
.y1fb{bottom:259.051200px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.ya6{bottom:260.775000px;}
.y140{bottom:261.900000px;}
.y60{bottom:262.426200px;}
.y1c0{bottom:263.700450px;}
.y18b{bottom:264.656550px;}
.y10f{bottom:266.025000px;}
.y37{bottom:269.776501px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y1fa{bottom:275.551200px;}
.y10e{bottom:279.525000px;}
.y1bf{bottom:280.200450px;}
.ya5{bottom:280.275000px;}
.y13f{bottom:281.400000px;}
.y5f{bottom:281.926200px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y18a{bottom:291.656550px;}
.y1f9{bottom:292.051200px;}
.y10d{bottom:293.025000px;}
.y1be{bottom:296.700450px;}
.ya4{bottom:299.775000px;}
.y13e{bottom:300.900000px;}
.y5e{bottom:301.426200px;}
.y10c{bottom:306.525000px;}
.y1f8{bottom:308.551200px;}
.yee{bottom:310.275000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1bd{bottom:313.200450px;}
.ya3{bottom:319.275000px;}
.y10b{bottom:320.025000px;}
.y13d{bottom:320.400000px;}
.y5d{bottom:320.926200px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y1f7{bottom:325.051200px;}
.y1bc{bottom:329.700450px;}
.y36{bottom:334.126501px;}
.y109{bottom:338.025000px;}
.ya2{bottom:338.775000px;}
.y13c{bottom:339.900000px;}
.y5c{bottom:340.426200px;}
.y1f6{bottom:341.551200px;}
.y189{bottom:342.656550px;}
.y1bb{bottom:346.200450px;}
.y11{bottom:348.133500px;}
.y10a{bottom:351.525000px;}
.y1f5{bottom:358.051200px;}
.ya1{bottom:358.275000px;}
.y13b{bottom:359.400000px;}
.y5b{bottom:359.926200px;}
.y1ba{bottom:362.700450px;}
.y188{bottom:369.656550px;}
.y108{bottom:370.275000px;}
.yed{bottom:371.100600px;}
.y1f4{bottom:374.551200px;}
.ya0{bottom:377.775000px;}
.y13a{bottom:378.900000px;}
.y1b9{bottom:379.200450px;}
.y5a{bottom:379.426200px;}
.y10{bottom:386.785499px;}
.yec{bottom:387.600600px;}
.y1f3{bottom:391.051200px;}
.y1b8{bottom:395.700450px;}
.y9f{bottom:397.275000px;}
.y139{bottom:398.400000px;}
.y59{bottom:398.926200px;}
.y35{bottom:401.407500px;}
.y1f2{bottom:407.551200px;}
.yf{bottom:408.044999px;}
.y1b7{bottom:412.200450px;}
.yeb{bottom:415.388400px;}
.y9e{bottom:416.775000px;}
.y138{bottom:417.900000px;}
.y58{bottom:418.426200px;}
.y187{bottom:420.038100px;}
.y107{bottom:423.067800px;}
.y1f1{bottom:424.051200px;}
.y1b6{bottom:428.700450px;}
.yea{bottom:434.888400px;}
.y9d{bottom:436.275000px;}
.y106{bottom:436.567800px;}
.y137{bottom:437.400000px;}
.y57{bottom:437.926200px;}
.y186{bottom:439.538100px;}
.y1f0{bottom:440.551200px;}
.y1b5{bottom:445.200450px;}
.y105{bottom:450.067800px;}
.ye9{bottom:454.388400px;}
.y9c{bottom:455.775000px;}
.y136{bottom:456.900000px;}
.y1ef{bottom:457.051200px;}
.y56{bottom:457.426200px;}
.y185{bottom:459.038100px;}
.y1b4{bottom:461.700450px;}
.y34{bottom:462.826501px;}
.y104{bottom:463.567800px;}
.y1ee{bottom:473.551200px;}
.ye8{bottom:473.888400px;}
.y9b{bottom:475.275000px;}
.y135{bottom:476.400000px;}
.y55{bottom:476.926200px;}
.y103{bottom:477.067800px;}
.y1b3{bottom:478.200450px;}
.y184{bottom:478.538100px;}
.ye{bottom:484.864502px;}
.yce{bottom:485.775000px;}
.y1ed{bottom:490.051200px;}
.y102{bottom:490.567800px;}
.ye7{bottom:493.388400px;}
.y1b2{bottom:494.700450px;}
.y9a{bottom:494.775000px;}
.y134{bottom:495.900000px;}
.y54{bottom:496.426200px;}
.y183{bottom:498.038100px;}
.yd{bottom:502.864502px;}
.y101{bottom:504.067800px;}
.y12c{bottom:505.275000px;}
.y1ec{bottom:506.551200px;}
.y1b1{bottom:511.200450px;}
.ye6{bottom:512.888400px;}
.y99{bottom:514.275000px;}
.y133{bottom:515.400000px;}
.y53{bottom:515.926200px;}
.y182{bottom:517.538100px;}
.y100{bottom:517.567800px;}
.yc{bottom:520.864502px;}
.y1eb{bottom:523.051200px;}
.y1b0{bottom:527.700450px;}
.y33{bottom:530.107500px;}
.ye5{bottom:532.388400px;}
.y98{bottom:533.775000px;}
.y132{bottom:534.900000px;}
.y52{bottom:535.426200px;}
.yff{bottom:535.567800px;}
.y181{bottom:537.038100px;}
.yb{bottom:538.864499px;}
.y1ea{bottom:539.551200px;}
.ycd{bottom:542.363700px;}
.y1af{bottom:544.200450px;}
.ye4{bottom:551.888400px;}
.y97{bottom:553.275000px;}
.yfe{bottom:554.317800px;}
.y131{bottom:554.400000px;}
.y1e9{bottom:556.051200px;}
.y180{bottom:556.538100px;}
.ya{bottom:556.864499px;}
.y12b{bottom:557.325450px;}
.y1ae{bottom:560.700450px;}
.ycc{bottom:561.863700px;}
.y32{bottom:564.457501px;}
.y51{bottom:565.426200px;}
.ye3{bottom:571.388400px;}
.y1e8{bottom:572.551200px;}
.y96{bottom:572.775000px;}
.y130{bottom:573.900000px;}
.y17f{bottom:576.038100px;}
.y12a{bottom:576.825450px;}
.y1ad{bottom:577.200450px;}
.y31{bottom:579.457501px;}
.ycb{bottom:581.363700px;}
.y1e7{bottom:589.051200px;}
.ye2{bottom:590.888400px;}
.y95{bottom:592.275000px;}
.yfd{bottom:592.860450px;}
.y12f{bottom:593.400000px;}
.y1ac{bottom:593.700450px;}
.y30{bottom:594.457500px;}
.y17e{bottom:595.538100px;}
.y129{bottom:596.325450px;}
.yca{bottom:600.863700px;}
.y1e6{bottom:605.551200px;}
.y1ab{bottom:610.200450px;}
.ye1{bottom:610.388400px;}
.y7d{bottom:610.951200px;}
.y94{bottom:611.775000px;}
.yfc{bottom:612.360450px;}
.y12e{bottom:612.900000px;}
.y17d{bottom:615.038100px;}
.y128{bottom:615.825450px;}
.yc9{bottom:620.363700px;}
.y1e5{bottom:622.051200px;}
.y7c{bottom:624.451200px;}
.y1aa{bottom:626.700450px;}
.ye0{bottom:629.888400px;}
.y93{bottom:631.275000px;}
.y12d{bottom:632.400000px;}
.y127{bottom:635.325450px;}
.y7b{bottom:637.951200px;}
.y1e4{bottom:638.551200px;}
.yc8{bottom:639.863700px;}
.yf7{bottom:640.216500px;}
.y1a9{bottom:643.200450px;}
.yf9{bottom:643.714800px;}
.y17c{bottom:645.038100px;}
.y9{bottom:645.510000px;}
.yfb{bottom:647.464800px;}
.ydf{bottom:649.388400px;}
.yf6{bottom:650.715750px;}
.y92{bottom:650.775000px;}
.y7a{bottom:651.451200px;}
.y126{bottom:654.825450px;}
.y1e3{bottom:655.051200px;}
.yc7{bottom:659.363700px;}
.y1a8{bottom:659.700450px;}
.y8{bottom:666.771000px;}
.yde{bottom:668.888400px;}
.y1e2{bottom:671.551200px;}
.y50{bottom:671.926200px;}
.y79{bottom:674.213700px;}
.y125{bottom:674.325450px;}
.y2f{bottom:675.817498px;}
.y1a7{bottom:676.200450px;}
.y168{bottom:676.238700px;}
.yc6{bottom:678.863700px;}
.y91{bottom:680.775000px;}
.yf5{bottom:686.070900px;}
.y4f{bottom:686.926200px;}
.y78{bottom:687.713700px;}
.y1e1{bottom:688.051200px;}
.ydd{bottom:688.388400px;}
.y167{bottom:689.363700px;}
.y1a6{bottom:692.700450px;}
.y124{bottom:693.825450px;}
.y17b{bottom:695.419650px;}
.yc5{bottom:698.363700px;}
.y77{bottom:701.213700px;}
.y4e{bottom:701.926200px;}
.y166{bottom:702.488700px;}
.y1e0{bottom:704.551200px;}
.yf4{bottom:705.570900px;}
.y2e{bottom:705.817498px;}
.ydc{bottom:707.888400px;}
.y1a5{bottom:709.200450px;}
.y90{bottom:710.775000px;}
.y123{bottom:713.325450px;}
.y76{bottom:714.713700px;}
.y17a{bottom:714.919650px;}
.y4d{bottom:716.926200px;}
.yc4{bottom:717.863700px;}
.y165{bottom:720.488700px;}
.y1df{bottom:721.051200px;}
.y2d{bottom:723.817498px;}
.yf3{bottom:725.070900px;}
.y1a4{bottom:725.700450px;}
.y7{bottom:726.298500px;}
.ydb{bottom:727.388400px;}
.y75{bottom:728.213700px;}
.y4c{bottom:731.926200px;}
.y122{bottom:732.825450px;}
.y164{bottom:733.988700px;}
.y179{bottom:734.419650px;}
.yc3{bottom:737.363700px;}
.y1de{bottom:737.551200px;}
.y2c{bottom:741.817498px;}
.y1a3{bottom:742.200450px;}
.yf2{bottom:744.570900px;}
.yda{bottom:746.888400px;}
.y4b{bottom:746.926200px;}
.y163{bottom:747.488700px;}
.y74{bottom:750.976200px;}
.y3{bottom:752.599495px;}
.y178{bottom:753.919650px;}
.y1dd{bottom:754.051200px;}
.yc2{bottom:756.863700px;}
.y1a2{bottom:758.700450px;}
.y2b{bottom:759.817498px;}
.y162{bottom:760.988700px;}
.y4a{bottom:761.926200px;}
.y11e{bottom:763.876500px;}
.yf1{bottom:764.070900px;}
.y73{bottom:764.476200px;}
.yd9{bottom:766.388400px;}
.y120{bottom:767.374950px;}
.y8f{bottom:767.926200px;}
.y1dc{bottom:770.551200px;}
.y11d{bottom:771.375750px;}
.y177{bottom:773.419650px;}
.y161{bottom:774.488700px;}
.y1a1{bottom:775.200450px;}
.yc1{bottom:776.363700px;}
.y49{bottom:776.926200px;}
.y72{bottom:777.976200px;}
.yf0{bottom:783.570900px;}
.yd8{bottom:785.888400px;}
.y1db{bottom:787.051200px;}
.y8e{bottom:787.426200px;}
.y160{bottom:787.988700px;}
.y71{bottom:791.476200px;}
.y1a0{bottom:791.700450px;}
.y48{bottom:791.926200px;}
.y176{bottom:792.919650px;}
.yc0{bottom:795.863700px;}
.y15f{bottom:801.488700px;}
.y1da{bottom:803.551200px;}
.y70{bottom:804.976200px;}
.yd7{bottom:805.388400px;}
.y47{bottom:806.926200px;}
.y19f{bottom:808.200450px;}
.y2a{bottom:812.289002px;}
.yef{bottom:813.570900px;}
.y15e{bottom:814.988700px;}
.ybf{bottom:815.363700px;}
.y1d9{bottom:820.051200px;}
.y46{bottom:821.926200px;}
.y175{bottom:822.919650px;}
.yd6{bottom:824.888400px;}
.y8d{bottom:826.426200px;}
.y6f{bottom:827.738700px;}
.y15d{bottom:828.488700px;}
.ybe{bottom:834.863700px;}
.y19e{bottom:835.200450px;}
.y1d8{bottom:836.551200px;}
.y45{bottom:836.926200px;}
.y6e{bottom:841.238700px;}
.y15c{bottom:841.988700px;}
.yd5{bottom:844.388400px;}
.y8c{bottom:845.926200px;}
.y44{bottom:851.926200px;}
.y1d7{bottom:853.051200px;}
.ybd{bottom:854.363700px;}
.y6d{bottom:854.738700px;}
.y15b{bottom:855.488700px;}
.yd4{bottom:863.888400px;}
.y8b{bottom:865.426200px;}
.y43{bottom:866.926200px;}
.y6c{bottom:868.238700px;}
.y15a{bottom:868.988700px;}
.y1d6{bottom:869.551200px;}
.y174{bottom:873.301200px;}
.ybc{bottom:873.863700px;}
.y29{bottom:875.940000px;}
.y2{bottom:879.369000px;}
.y159{bottom:882.488700px;}
.yd3{bottom:883.388400px;}
.y8a{bottom:884.926200px;}
.y1d5{bottom:886.051200px;}
.y19d{bottom:890.625750px;}
.y173{bottom:892.801200px;}
.ybb{bottom:893.363700px;}
.y158{bottom:895.988700px;}
.y1d4{bottom:902.551200px;}
.yd2{bottom:902.888400px;}
.y89{bottom:904.426200px;}
.y28{bottom:907.440000px;}
.y157{bottom:909.488700px;}
.y172{bottom:912.301200px;}
.yba{bottom:912.863700px;}
.y42{bottom:913.801200px;}
.y19c{bottom:917.625750px;}
.y1d3{bottom:919.051200px;}
.yd1{bottom:922.388400px;}
.y156{bottom:922.988700px;}
.y88{bottom:923.926200px;}
.y171{bottom:931.801200px;}
.yb9{bottom:932.363700px;}
.y41{bottom:933.256200px;}
.y1d2{bottom:935.551200px;}
.y155{bottom:936.488700px;}
.y27{bottom:938.940000px;}
.yd0{bottom:941.888400px;}
.y87{bottom:943.426200px;}
.y154{bottom:949.988700px;}
.y170{bottom:951.301200px;}
.yb8{bottom:951.863700px;}
.y1d1{bottom:952.051200px;}
.y40{bottom:955.801200px;}
.y86{bottom:962.926200px;}
.y153{bottom:963.488700px;}
.y1{bottom:966.726000px;}
.y1d0{bottom:968.551200px;}
.y26{bottom:970.440000px;}
.y16f{bottom:970.801200px;}
.yb7{bottom:971.363700px;}
.ycf{bottom:971.888400px;}
.y19b{bottom:973.051200px;}
.y152{bottom:976.988700px;}
.y85{bottom:982.426200px;}
.y1cf{bottom:985.051200px;}
.y19a{bottom:989.551200px;}
.y16e{bottom:990.301200px;}
.y151{bottom:990.488700px;}
.yb6{bottom:990.863700px;}
.y3f{bottom:994.801200px;}
.y1ce{bottom:1001.551200px;}
.y84{bottom:1001.926200px;}
.y150{bottom:1003.988700px;}
.y16d{bottom:1009.801200px;}
.yb5{bottom:1010.363700px;}
.y199{bottom:1016.551200px;}
.y14f{bottom:1017.488700px;}
.y1cd{bottom:1018.051200px;}
.y3e{bottom:1018.801200px;}
.y83{bottom:1021.426200px;}
.y16c{bottom:1029.301200px;}
.yb4{bottom:1029.863700px;}
.y14e{bottom:1030.988700px;}
.y1cc{bottom:1034.551200px;}
.y25{bottom:1035.546001px;}
.y82{bottom:1040.926200px;}
.y14d{bottom:1044.488700px;}
.y3b{bottom:1047.511200px;}
.y16b{bottom:1048.801200px;}
.yb3{bottom:1049.363700px;}
.y1cb{bottom:1051.051200px;}
.y81{bottom:1060.426200px;}
.y14b{bottom:1062.488700px;}
.y198{bottom:1067.551200px;}
.y16a{bottom:1068.301200px;}
.yb2{bottom:1068.863700px;}
.y80{bottom:1079.926200px;}
.y14c{bottom:1081.238700px;}
.y68{bottom:1083.782250px;}
.y197{bottom:1084.051200px;}
.y3d{bottom:1097.407950px;}
.y169{bottom:1098.301200px;}
.yb1{bottom:1098.863700px;}
.y7f{bottom:1099.426200px;}
.y14a{bottom:1099.988700px;}
.y196{bottom:1100.551200px;}
.y3c{bottom:1110.907950px;}
.yb0{bottom:1141.238100px;}
.y7e{bottom:1141.313100px;}
.y24{bottom:1165.122003px;}
.h21{height:22.249500px;}
.h27{height:22.399500px;}
.h23{height:24.281040px;}
.h16{height:25.096500px;}
.h1b{height:30.030000px;}
.h18{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1f{height:33.750000px;}
.h1d{height:34.320000px;}
.h1c{height:34.608000px;}
.h1e{height:36.000000px;}
.hb{height:36.726562px;}
.h29{height:38.148000px;}
.h2a{height:38.934000px;}
.h24{height:39.990234px;}
.h19{height:40.500000px;}
.h26{height:40.755000px;}
.h28{height:40.946563px;}
.hf{height:41.317383px;}
.h22{height:42.000000px;}
.h17{height:42.916500px;}
.h12{height:45.000000px;}
.h20{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h1a{height:47.586000px;}
.h3{height:48.195000px;}
.h15{height:51.502500px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.h25{height:68.503800px;}
.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;}
.w7{width:387.093000px;}
.w6{width:419.823000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x1c{left:-1.062150px;}
.x0{left:0.000000px;}
.x11{left:16.217250px;}
.x10{left:25.817250px;}
.x1e{left:33.437850px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x39{left:123.000000px;}
.xb{left:126.112500px;}
.x6{left:145.650000px;}
.x16{left:170.851350px;}
.x14{left:172.500000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x29{left:215.546100px;}
.x9{left:228.743990px;}
.x21{left:231.219000px;}
.xe{left:236.485500px;}
.xf{left:242.052750px;}
.x1b{left:252.910500px;}
.x1d{left:258.148350px;}
.x2a{left:287.692050px;}
.x2b{left:290.092050px;}
.x8{left:293.590494px;}
.x12{left:311.052750px;}
.x20{left:316.357350px;}
.x13{left:340.752750px;}
.x2c{left:363.738000px;}
.x2d{left:366.138000px;}
.x17{left:369.497250px;}
.x18{left:386.611650px;}
.x36{left:436.831950px;}
.x2e{left:438.283950px;}
.x2f{left:440.683950px;}
.x35{left:443.983950px;}
.x3{left:454.959000px;}
.x30{left:509.829900px;}
.x22{left:512.229900px;}
.x34{left:515.529750px;}
.x3a{left:565.175550px;}
.xd{left:570.946500px;}
.x31{left:582.875850px;}
.x24{left:585.275700px;}
.x23{left:588.575700px;}
.x15{left:615.627900px;}
.x1f{left:640.003350px;}
.xc{left:650.025750px;}
.x37{left:655.969650px;}
.x32{left:657.421800px;}
.x26{left:659.821650px;}
.x25{left:663.121650px;}
.x19{left:704.953950px;}
.x1a{left:722.068200px;}
.x38{left:730.515600px;}
.x33{left:731.967750px;}
.x28{left:734.367600px;}
.x27{left:737.667600px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v6{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.333333pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.v5{vertical-align:24.892267pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls1b{letter-spacing:-0.277498pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.123332pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.363067pt;}
.ls5{letter-spacing:0.364000pt;}
.ls8{letter-spacing:0.400000pt;}
.ls16{letter-spacing:0.432000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.lse{letter-spacing:2.849303pt;}
.ls18{letter-spacing:7.171200pt;}
.lsf{letter-spacing:7.340267pt;}
.ls10{letter-spacing:7.340800pt;}
.ls24{letter-spacing:8.139733pt;}
.ls23{letter-spacing:8.140267pt;}
.ls19{letter-spacing:9.044267pt;}
.ls11{letter-spacing:16.426667pt;}
.ls9{letter-spacing:19.101867pt;}
.ls6{letter-spacing:63.949867pt;}
.ls1e{letter-spacing:68.206329pt;}
.lsa{letter-spacing:72.242667pt;}
.ls14{letter-spacing:79.117649pt;}
.ls1d{letter-spacing:81.769293pt;}
.ls13{letter-spacing:85.920000pt;}
.ls1c{letter-spacing:92.320000pt;}
.ls20{letter-spacing:244.785600pt;}
.ls1f{letter-spacing:256.800000pt;}
.ls21{letter-spacing:359.612800pt;}
.wsd7{word-spacing:-256.800000pt;}
.wse3{word-spacing:-253.148267pt;}
.wsa2{word-spacing:-107.728000pt;}
.wscf{word-spacing:-78.053908pt;}
.wsd0{word-spacing:-76.332110pt;}
.wsa3{word-spacing:-73.284033pt;}
.wsce{word-spacing:-46.394667pt;}
.ws1{word-spacing:-12.432000pt;}
.ws112{word-spacing:-11.850667pt;}
.ws9e{word-spacing:-11.786667pt;}
.ws37{word-spacing:-11.306667pt;}
.ws5{word-spacing:-11.200000pt;}
.wsff{word-spacing:-10.880000pt;}
.ws113{word-spacing:-10.176000pt;}
.wsa9{word-spacing:-9.866667pt;}
.wsa6{word-spacing:-9.706667pt;}
.ws82{word-spacing:-9.696000pt;}
.wsca{word-spacing:-9.493333pt;}
.ws114{word-spacing:-8.736000pt;}
.ws9{word-spacing:-8.720000pt;}
.ws6{word-spacing:-8.618667pt;}
.wsaa{word-spacing:-8.362667pt;}
.ws3{word-spacing:-8.320000pt;}
.ws133{word-spacing:-8.256000pt;}
.ws7{word-spacing:-7.840000pt;}
.wsa8{word-spacing:-7.349333pt;}
.ws8{word-spacing:-7.317333pt;}
.wsa7{word-spacing:-6.309333pt;}
.ws2{word-spacing:-6.115200pt;}
.wsc6{word-spacing:-4.640000pt;}
.ws4{word-spacing:-2.370133pt;}
.ws61{word-spacing:-0.400000pt;}
.ws0{word-spacing:0.000000pt;}
.ws103{word-spacing:0.426667pt;}
.ws13c{word-spacing:0.480000pt;}
.wsd4{word-spacing:3.040000pt;}
.ws144{word-spacing:3.456000pt;}
.ws102{word-spacing:3.626667pt;}
.ws143{word-spacing:4.368000pt;}
.ws13{word-spacing:4.464000pt;}
.ws128{word-spacing:4.848000pt;}
.ws154{word-spacing:4.992000pt;}
.ws98{word-spacing:5.013333pt;}
.wsde{word-spacing:5.066667pt;}
.ws142{word-spacing:5.088000pt;}
.ws14d{word-spacing:5.232000pt;}
.wsd9{word-spacing:5.234667pt;}
.ws1f{word-spacing:5.386667pt;}
.ws11f{word-spacing:5.424000pt;}
.ws36{word-spacing:5.504000pt;}
.ws145{word-spacing:5.568000pt;}
.ws15b{word-spacing:5.616000pt;}
.ws107{word-spacing:5.664000pt;}
.ws8b{word-spacing:5.706667pt;}
.ws1a{word-spacing:5.712000pt;}
.ws21{word-spacing:5.760000pt;}
.ws153{word-spacing:5.856000pt;}
.ws2f{word-spacing:5.861333pt;}
.wsb{word-spacing:5.880000pt;}
.ws137{word-spacing:5.904000pt;}
.ws34{word-spacing:5.920000pt;}
.ws13d{word-spacing:6.000000pt;}
.ws12d{word-spacing:6.048000pt;}
.ws2c{word-spacing:6.080000pt;}
.ws6a{word-spacing:6.133333pt;}
.ws12a{word-spacing:6.144000pt;}
.ws38{word-spacing:6.186667pt;}
.wsf8{word-spacing:6.240000pt;}
.wsc{word-spacing:6.280000pt;}
.ws11e{word-spacing:6.288000pt;}
.ws12b{word-spacing:6.384000pt;}
.ws2d{word-spacing:6.400000pt;}
.ws119{word-spacing:6.480000pt;}
.ws108{word-spacing:6.528000pt;}
.ws8a{word-spacing:6.560000pt;}
.ws46{word-spacing:6.613333pt;}
.ws140{word-spacing:6.624000pt;}
.wsfb{word-spacing:6.666667pt;}
.ws139{word-spacing:6.672000pt;}
.ws31{word-spacing:6.698667pt;}
.ws2e{word-spacing:6.720000pt;}
.ws13a{word-spacing:6.768000pt;}
.ws40{word-spacing:6.773333pt;}
.ws4a{word-spacing:6.826667pt;}
.ws125{word-spacing:6.864000pt;}
.ws6b{word-spacing:6.880000pt;}
.ws10{word-spacing:6.912000pt;}
.ws51{word-spacing:6.986667pt;}
.ws11a{word-spacing:7.008000pt;}
.ws12c{word-spacing:7.056000pt;}
.ws69{word-spacing:7.093333pt;}
.ws76{word-spacing:7.146667pt;}
.ws14b{word-spacing:7.152000pt;}
.wsd1{word-spacing:7.200000pt;}
.ws129{word-spacing:7.248000pt;}
.ws35{word-spacing:7.253333pt;}
.ws111{word-spacing:7.296000pt;}
.ws101{word-spacing:7.306667pt;}
.ws71{word-spacing:7.360000pt;}
.ws24{word-spacing:7.413333pt;}
.ws5a{word-spacing:7.466667pt;}
.ws52{word-spacing:7.520000pt;}
.wsf{word-spacing:7.536000pt;}
.ws33{word-spacing:7.541333pt;}
.ws1e{word-spacing:7.573333pt;}
.ws127{word-spacing:7.584000pt;}
.ws54{word-spacing:7.626667pt;}
.ws3b{word-spacing:7.680000pt;}
.ws55{word-spacing:7.733333pt;}
.ws138{word-spacing:7.776000pt;}
.wsf4{word-spacing:7.786667pt;}
.wsc8{word-spacing:7.802667pt;}
.ws132{word-spacing:7.824000pt;}
.ws3f{word-spacing:7.840000pt;}
.ws9a{word-spacing:7.946667pt;}
.wsc9{word-spacing:7.954667pt;}
.ws16{word-spacing:7.968000pt;}
.ws58{word-spacing:8.000000pt;}
.ws75{word-spacing:8.053333pt;}
.ws41{word-spacing:8.106667pt;}
.ws11c{word-spacing:8.112000pt;}
.ws1b{word-spacing:8.160000pt;}
.ws67{word-spacing:8.213333pt;}
.ws49{word-spacing:8.232000pt;}
.ws6e{word-spacing:8.266667pt;}
.ws29{word-spacing:8.320000pt;}
.ws42{word-spacing:8.373333pt;}
.wsdf{word-spacing:8.426667pt;}
.ws104{word-spacing:8.480000pt;}
.wsa{word-spacing:8.533333pt;}
.ws7f{word-spacing:8.586667pt;}
.ws141{word-spacing:8.592000pt;}
.ws11d{word-spacing:8.688000pt;}
.ws105{word-spacing:8.693333pt;}
.ws70{word-spacing:8.746667pt;}
.ws79{word-spacing:8.800000pt;}
.wsfc{word-spacing:8.853333pt;}
.ws14e{word-spacing:8.880000pt;}
.ws100{word-spacing:8.906667pt;}
.ws4e{word-spacing:8.960000pt;}
.ws124{word-spacing:8.976000pt;}
.ws97{word-spacing:9.013333pt;}
.ws44{word-spacing:9.066667pt;}
.ws95{word-spacing:9.120000pt;}
.ws12f{word-spacing:9.216000pt;}
.ws1d{word-spacing:9.226667pt;}
.ws10b{word-spacing:9.264000pt;}
.ws57{word-spacing:9.280000pt;}
.ws6f{word-spacing:9.333333pt;}
.ws134{word-spacing:9.360000pt;}
.ws64{word-spacing:9.386667pt;}
.ws147{word-spacing:9.408000pt;}
.ws7b{word-spacing:9.440000pt;}
.ws11b{word-spacing:9.456000pt;}
.ws96{word-spacing:9.493333pt;}
.ws48{word-spacing:9.504000pt;}
.wse{word-spacing:9.520000pt;}
.ws77{word-spacing:9.546667pt;}
.ws12{word-spacing:9.552000pt;}
.wsc2{word-spacing:9.600000pt;}
.ws152{word-spacing:9.648000pt;}
.ws3d{word-spacing:9.653333pt;}
.ws136{word-spacing:9.696000pt;}
.ws8d{word-spacing:9.706667pt;}
.wsd3{word-spacing:9.760000pt;}
.ws110{word-spacing:9.792000pt;}
.ws28{word-spacing:9.813333pt;}
.ws72{word-spacing:9.866667pt;}
.ws94{word-spacing:9.888000pt;}
.ws99{word-spacing:9.920000pt;}
.ws115{word-spacing:9.936000pt;}
.ws2a{word-spacing:9.973333pt;}
.ws109{word-spacing:9.984000pt;}
.ws62{word-spacing:10.026667pt;}
.ws32{word-spacing:10.042667pt;}
.ws8e{word-spacing:10.133333pt;}
.ws159{word-spacing:10.176000pt;}
.wsda{word-spacing:10.186667pt;}
.wsd2{word-spacing:10.240000pt;}
.ws155{word-spacing:10.272000pt;}
.ws158{word-spacing:10.320000pt;}
.wsbf{word-spacing:10.346667pt;}
.ws89{word-spacing:10.453333pt;}
.ws8f{word-spacing:10.506667pt;}
.ws1c{word-spacing:10.560000pt;}
.ws66{word-spacing:10.666667pt;}
.ws7d{word-spacing:10.720000pt;}
.ws5f{word-spacing:10.773333pt;}
.ws3a{word-spacing:10.826667pt;}
.ws117{word-spacing:10.848000pt;}
.ws2b{word-spacing:10.880000pt;}
.ws84{word-spacing:10.933333pt;}
.ws146{word-spacing:10.944000pt;}
.ws6d{word-spacing:11.040000pt;}
.ws157{word-spacing:11.088000pt;}
.wsc3{word-spacing:11.093333pt;}
.ws65{word-spacing:11.146667pt;}
.ws122{word-spacing:11.184000pt;}
.ws151{word-spacing:11.232000pt;}
.ws5b{word-spacing:11.253333pt;}
.ws135{word-spacing:11.280000pt;}
.ws7e{word-spacing:11.306667pt;}
.wse1{word-spacing:11.413333pt;}
.ws131{word-spacing:11.424000pt;}
.wsf6{word-spacing:11.466667pt;}
.ws150{word-spacing:11.472000pt;}
.wsd5{word-spacing:11.520000pt;}
.ws23{word-spacing:11.573333pt;}
.ws14a{word-spacing:11.616000pt;}
.wsf5{word-spacing:11.626667pt;}
.ws14c{word-spacing:11.664000pt;}
.ws47{word-spacing:11.733333pt;}
.ws50{word-spacing:11.786667pt;}
.ws93{word-spacing:11.840000pt;}
.wsf3{word-spacing:11.946667pt;}
.ws8c{word-spacing:12.000000pt;}
.ws121{word-spacing:12.144000pt;}
.ws3c{word-spacing:12.160000pt;}
.ws126{word-spacing:12.192000pt;}
.ws14f{word-spacing:12.240000pt;}
.ws25{word-spacing:12.320000pt;}
.wsd{word-spacing:12.394667pt;}
.ws27{word-spacing:12.480000pt;}
.ws12e{word-spacing:12.624000pt;}
.ws86{word-spacing:12.640000pt;}
.ws4c{word-spacing:12.693333pt;}
.ws73{word-spacing:12.800000pt;}
.ws10d{word-spacing:12.864000pt;}
.ws9d{word-spacing:12.906667pt;}
.ws156{word-spacing:12.912000pt;}
.wse2{word-spacing:12.960000pt;}
.ws4d{word-spacing:13.013333pt;}
.wsc0{word-spacing:13.066667pt;}
.ws78{word-spacing:13.120000pt;}
.ws53{word-spacing:13.173333pt;}
.ws74{word-spacing:13.226667pt;}
.ws22{word-spacing:13.280000pt;}
.ws130{word-spacing:13.296000pt;}
.ws92{word-spacing:13.440000pt;}
.ws68{word-spacing:13.493333pt;}
.ws3e{word-spacing:13.546667pt;}
.wsf2{word-spacing:13.600000pt;}
.ws45{word-spacing:13.653333pt;}
.ws20{word-spacing:13.706667pt;}
.wsfa{word-spacing:13.760000pt;}
.wsdb{word-spacing:13.920000pt;}
.ws59{word-spacing:13.973333pt;}
.ws10c{word-spacing:14.016000pt;}
.wsf7{word-spacing:14.080000pt;}
.ws85{word-spacing:14.133333pt;}
.ws80{word-spacing:14.186667pt;}
.ws149{word-spacing:14.304000pt;}
.wsfd{word-spacing:14.346667pt;}
.ws10a{word-spacing:14.352000pt;}
.ws11{word-spacing:14.496000pt;}
.ws88{word-spacing:14.506667pt;}
.ws120{word-spacing:14.544000pt;}
.wsd6{word-spacing:14.613333pt;}
.ws123{word-spacing:14.640000pt;}
.ws4b{word-spacing:14.720000pt;}
.ws26{word-spacing:14.773333pt;}
.ws4f{word-spacing:14.826667pt;}
.ws10e{word-spacing:14.928000pt;}
.ws83{word-spacing:15.040000pt;}
.wsdd{word-spacing:15.253333pt;}
.wse0{word-spacing:15.360000pt;}
.ws116{word-spacing:15.408000pt;}
.ws63{word-spacing:15.573333pt;}
.ws91{word-spacing:15.893333pt;}
.ws39{word-spacing:16.000000pt;}
.ws6c{word-spacing:16.053333pt;}
.wsfe{word-spacing:16.160000pt;}
.ws10f{word-spacing:16.224000pt;}
.wsf9{word-spacing:16.533333pt;}
.ws81{word-spacing:16.586667pt;}
.ws148{word-spacing:16.656000pt;}
.ws5c{word-spacing:16.746667pt;}
.ws7c{word-spacing:17.013333pt;}
.ws90{word-spacing:17.066667pt;}
.ws7a{word-spacing:17.120000pt;}
.wsdc{word-spacing:17.440000pt;}
.ws56{word-spacing:17.600000pt;}
.ws43{word-spacing:17.706667pt;}
.ws19{word-spacing:17.808000pt;}
.ws60{word-spacing:17.813333pt;}
.ws15{word-spacing:17.856000pt;}
.wsc1{word-spacing:17.866667pt;}
.ws14{word-spacing:18.192000pt;}
.ws9b{word-spacing:18.240000pt;}
.ws13f{word-spacing:18.432000pt;}
.ws87{word-spacing:18.613333pt;}
.ws118{word-spacing:18.720000pt;}
.ws30{word-spacing:18.901333pt;}
.ws106{word-spacing:20.000000pt;}
.ws15a{word-spacing:20.160000pt;}
.ws5e{word-spacing:21.066667pt;}
.ws18{word-spacing:21.408000pt;}
.ws13e{word-spacing:21.456000pt;}
.ws17{word-spacing:21.648000pt;}
.wsc4{word-spacing:22.240000pt;}
.ws9c{word-spacing:22.506667pt;}
.ws13b{word-spacing:24.864000pt;}
.wsc7{word-spacing:29.066667pt;}
.ws5d{word-spacing:30.720000pt;}
.wsa4{word-spacing:36.640000pt;}
.ws9f{word-spacing:36.853333pt;}
.wscc{word-spacing:78.315989pt;}
.wsa0{word-spacing:83.896774pt;}
.wscb{word-spacing:117.333333pt;}
.wsa5{word-spacing:143.840000pt;}
.wsee{word-spacing:148.828267pt;}
.wsf1{word-spacing:155.356267pt;}
.wsed{word-spacing:166.961600pt;}
.wsef{word-spacing:187.228267pt;}
.wsb8{word-spacing:210.649600pt;}
.wsae{word-spacing:210.650133pt;}
.wsf0{word-spacing:216.156267pt;}
.wse4{word-spacing:218.418133pt;}
.wsac{word-spacing:235.918933pt;}
.wse5{word-spacing:299.954133pt;}
.wse6{word-spacing:302.386133pt;}
.wsc5{word-spacing:393.456000pt;}
.wsb3{word-spacing:414.563733pt;}
.wsb7{word-spacing:415.882133pt;}
.wse7{word-spacing:416.872000pt;}
.wse8{word-spacing:419.304000pt;}
.wsba{word-spacing:423.097067pt;}
.wsaf{word-spacing:429.066133pt;}
.wsab{word-spacing:430.229333pt;}
.wsb0{word-spacing:430.474133pt;}
.wsb5{word-spacing:443.871467pt;}
.wsb4{word-spacing:446.175467pt;}
.wsbb{word-spacing:446.687467pt;}
.wsb1{word-spacing:449.119467pt;}
.wsad{word-spacing:450.228800pt;}
.wsbc{word-spacing:450.911467pt;}
.wsb9{word-spacing:452.020800pt;}
.wsd8{word-spacing:453.168000pt;}
.wsb2{word-spacing:453.514133pt;}
.wsb6{word-spacing:457.055467pt;}
.wsbe{word-spacing:467.124800pt;}
.wsbd{word-spacing:494.858133pt;}
.wsea{word-spacing:836.928000pt;}
.wse9{word-spacing:857.023467pt;}
.wsec{word-spacing:953.845867pt;}
.wseb{word-spacing:973.941867pt;}
.wscd{word-spacing:1273.343987pt;}
.wsa1{word-spacing:1385.853847pt;}
._1f{margin-left:-1414.867763pt;}
._4e{margin-left:-1306.592321pt;}
._5e{margin-left:-244.348904pt;}
._11{margin-left:-26.118946pt;}
._4f{margin-left:-22.389333pt;}
._20{margin-left:-16.522667pt;}
._12{margin-left:-15.360013pt;}
._5b{margin-left:-14.242159pt;}
._5a{margin-left:-13.134400pt;}
._5c{margin-left:-11.686959pt;}
._45{margin-left:-8.218615pt;}
._68{margin-left:-6.784000pt;}
._a{margin-left:-4.874693pt;}
._1{margin-left:-3.680000pt;}
._7{margin-left:-2.736000pt;}
._0{margin-left:-1.706654pt;}
._5{width:0.922107pt;}
._4{width:2.371187pt;}
._6b{width:4.276267pt;}
._2{width:5.599987pt;}
._3{width:6.933320pt;}
._6{width:8.078920pt;}
._d{width:9.480533pt;}
._9{width:11.904000pt;}
._8{width:12.975987pt;}
._e{width:14.656000pt;}
._f{width:17.167987pt;}
._13{width:18.593106pt;}
._6a{width:21.983974pt;}
._53{width:26.146441pt;}
._4a{width:37.120000pt;}
._49{width:39.253333pt;}
._69{width:52.617067pt;}
._b{width:53.876787pt;}
._28{width:64.161626pt;}
._4b{width:67.141333pt;}
._22{width:68.828800pt;}
._15{width:70.933333pt;}
._19{width:72.533333pt;}
._50{width:85.877333pt;}
._14{width:89.866667pt;}
._47{width:95.253333pt;}
._58{width:98.745091pt;}
._55{width:100.281466pt;}
._21{width:108.556293pt;}
._54{width:109.876716pt;}
._10{width:117.065041pt;}
._c{width:118.826133pt;}
._48{width:119.946667pt;}
._24{width:131.197782pt;}
._17{width:138.773333pt;}
._1a{width:144.640000pt;}
._52{width:147.744000pt;}
._43{width:153.652800pt;}
._67{width:155.718933pt;}
._51{width:160.010667pt;}
._61{width:164.654400pt;}
._36{width:165.727467pt;}
._4d{width:179.941777pt;}
._66{width:181.233093pt;}
._56{width:182.948001pt;}
._59{width:185.675210pt;}
._16{width:186.666667pt;}
._63{width:187.590933pt;}
._44{width:190.181854pt;}
._57{width:201.062428pt;}
._1c{width:208.061534pt;}
._39{width:209.423987pt;}
._25{width:212.251748pt;}
._65{width:216.518400pt;}
._35{width:220.895454pt;}
._37{width:229.130133pt;}
._42{width:238.431454pt;}
._46{width:240.533333pt;}
._26{width:247.990355pt;}
._23{width:253.318309pt;}
._18{width:264.533333pt;}
._33{width:276.020800pt;}
._31{width:277.770133pt;}
._3f{width:280.293867pt;}
._3e{width:284.554133pt;}
._1e{width:287.518347pt;}
._3c{width:290.117346pt;}
._1d{width:292.328305pt;}
._41{width:298.219759pt;}
._34{width:300.858667pt;}
._32{width:302.138654pt;}
._38{width:303.132254pt;}
._3a{width:316.767454pt;}
._3b{width:318.260800pt;}
._3d{width:327.515200pt;}
._40{width:337.674133pt;}
._2c{width:395.861906pt;}
._2d{width:417.135467pt;}
._4c{width:447.665295pt;}
._1b{width:465.671806pt;}
._2e{width:490.351480pt;}
._27{width:544.320000pt;}
._2b{width:667.994680pt;}
._5d{width:763.318920pt;}
._29{width:767.136559pt;}
._64{width:1282.683733pt;}
._60{width:1284.668254pt;}
._2a{width:1287.242133pt;}
._62{width:1301.585054pt;}
._5f{width:1328.674654pt;}
._30{width:1340.362120pt;}
._2f{width:1356.980267pt;}
.fs12{font-size:27.733333pt;}
.fse{font-size:30.833067pt;}
.fsc{font-size:31.200000pt;}
.fsf{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;}
.fs10{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs11{font-size:54.608750pt;}
.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;}
.yfa{bottom:3.109600pt;}
.y121{bottom:3.109733pt;}
.yf8{bottom:6.442933pt;}
.y11f{bottom:6.576400pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y3a{bottom:60.086668pt;}
.y6b{bottom:62.947200pt;}
.y6a{bottom:73.613867pt;}
.y39{bottom:74.753335pt;}
.yaf{bottom:75.800000pt;}
.y149{bottom:76.800000pt;}
.y11c{bottom:80.466667pt;}
.y195{bottom:80.583600pt;}
.y205{bottom:83.601067pt;}
.y69{bottom:84.280533pt;}
.y4{bottom:86.333337pt;}
.y1ca{bottom:87.733733pt;}
.y11b{bottom:92.466667pt;}
.yae{bottom:93.133333pt;}
.y148{bottom:94.133333pt;}
.y194{bottom:95.250267pt;}
.y65{bottom:95.280533pt;}
.y204{bottom:98.267733pt;}
.y1c9{bottom:102.400400pt;}
.y11a{bottom:104.466667pt;}
.y67{bottom:107.613867pt;}
.y193{bottom:109.916933pt;}
.yad{bottom:110.466667pt;}
.y147{bottom:111.466667pt;}
.y203{bottom:112.934400pt;}
.y119{bottom:116.466667pt;}
.y1c8{bottom:117.067067pt;}
.y66{bottom:119.613867pt;}
.y23{bottom:123.790666pt;}
.y192{bottom:124.583600pt;}
.y202{bottom:127.601067pt;}
.yac{bottom:127.800000pt;}
.y118{bottom:128.466667pt;}
.y146{bottom:128.800000pt;}
.y1c7{bottom:131.733733pt;}
.y191{bottom:139.250267pt;}
.y117{bottom:140.466667pt;}
.y201{bottom:142.267733pt;}
.yab{bottom:145.133333pt;}
.y145{bottom:146.133333pt;}
.y1c6{bottom:146.400400pt;}
.y116{bottom:152.466667pt;}
.y200{bottom:156.934400pt;}
.y1c5{bottom:161.067067pt;}
.y190{bottom:161.916933pt;}
.yaa{bottom:162.466667pt;}
.y144{bottom:163.466667pt;}
.y64{bottom:163.934400pt;}
.y115{bottom:164.466667pt;}
.y1ff{bottom:171.601067pt;}
.y1a{bottom:175.052000pt;}
.y1c4{bottom:175.733733pt;}
.y114{bottom:176.466667pt;}
.y18f{bottom:176.583600pt;}
.ya9{bottom:179.800000pt;}
.y143{bottom:180.800000pt;}
.y63{bottom:181.267733pt;}
.y38{bottom:182.601334pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y1fe{bottom:186.267733pt;}
.y113{bottom:188.466667pt;}
.y1c3{bottom:190.400400pt;}
.y18e{bottom:191.250267pt;}
.ya8{bottom:197.133333pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y142{bottom:198.133333pt;}
.y62{bottom:198.601067pt;}
.y112{bottom:200.466667pt;}
.y1fd{bottom:200.934400pt;}
.y1c2{bottom:205.067067pt;}
.y18d{bottom:205.916933pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y111{bottom:212.466667pt;}
.ya7{bottom:214.466667pt;}
.y141{bottom:215.466667pt;}
.y1fc{bottom:215.601067pt;}
.y61{bottom:215.934400pt;}
.y1c1{bottom:219.733733pt;}
.y18c{bottom:220.583600pt;}
.y110{bottom:224.466667pt;}
.y1fb{bottom:230.267733pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.ya6{bottom:231.800000pt;}
.y140{bottom:232.800000pt;}
.y60{bottom:233.267733pt;}
.y1c0{bottom:234.400400pt;}
.y18b{bottom:235.250267pt;}
.y10f{bottom:236.466667pt;}
.y37{bottom:239.801334pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y1fa{bottom:244.934400pt;}
.y10e{bottom:248.466667pt;}
.y1bf{bottom:249.067067pt;}
.ya5{bottom:249.133333pt;}
.y13f{bottom:250.133333pt;}
.y5f{bottom:250.601067pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y18a{bottom:259.250267pt;}
.y1f9{bottom:259.601067pt;}
.y10d{bottom:260.466667pt;}
.y1be{bottom:263.733733pt;}
.ya4{bottom:266.466667pt;}
.y13e{bottom:267.466667pt;}
.y5e{bottom:267.934400pt;}
.y10c{bottom:272.466667pt;}
.y1f8{bottom:274.267733pt;}
.yee{bottom:275.800000pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1bd{bottom:278.400400pt;}
.ya3{bottom:283.800000pt;}
.y10b{bottom:284.466667pt;}
.y13d{bottom:284.800000pt;}
.y5d{bottom:285.267733pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y1f7{bottom:288.934400pt;}
.y1bc{bottom:293.067067pt;}
.y36{bottom:297.001334pt;}
.y109{bottom:300.466667pt;}
.ya2{bottom:301.133333pt;}
.y13c{bottom:302.133333pt;}
.y5c{bottom:302.601067pt;}
.y1f6{bottom:303.601067pt;}
.y189{bottom:304.583600pt;}
.y1bb{bottom:307.733733pt;}
.y11{bottom:309.452000pt;}
.y10a{bottom:312.466667pt;}
.y1f5{bottom:318.267733pt;}
.ya1{bottom:318.466667pt;}
.y13b{bottom:319.466667pt;}
.y5b{bottom:319.934400pt;}
.y1ba{bottom:322.400400pt;}
.y188{bottom:328.583600pt;}
.y108{bottom:329.133333pt;}
.yed{bottom:329.867200pt;}
.y1f4{bottom:332.934400pt;}
.ya0{bottom:335.800000pt;}
.y13a{bottom:336.800000pt;}
.y1b9{bottom:337.067067pt;}
.y5a{bottom:337.267733pt;}
.y10{bottom:343.809333pt;}
.yec{bottom:344.533867pt;}
.y1f3{bottom:347.601067pt;}
.y1b8{bottom:351.733733pt;}
.y9f{bottom:353.133333pt;}
.y139{bottom:354.133333pt;}
.y59{bottom:354.601067pt;}
.y35{bottom:356.806667pt;}
.y1f2{bottom:362.267733pt;}
.yf{bottom:362.706666pt;}
.y1b7{bottom:366.400400pt;}
.yeb{bottom:369.234133pt;}
.y9e{bottom:370.466667pt;}
.y138{bottom:371.466667pt;}
.y58{bottom:371.934400pt;}
.y187{bottom:373.367200pt;}
.y107{bottom:376.060267pt;}
.y1f1{bottom:376.934400pt;}
.y1b6{bottom:381.067067pt;}
.yea{bottom:386.567467pt;}
.y9d{bottom:387.800000pt;}
.y106{bottom:388.060267pt;}
.y137{bottom:388.800000pt;}
.y57{bottom:389.267733pt;}
.y186{bottom:390.700533pt;}
.y1f0{bottom:391.601067pt;}
.y1b5{bottom:395.733733pt;}
.y105{bottom:400.060267pt;}
.ye9{bottom:403.900800pt;}
.y9c{bottom:405.133333pt;}
.y136{bottom:406.133333pt;}
.y1ef{bottom:406.267733pt;}
.y56{bottom:406.601067pt;}
.y185{bottom:408.033867pt;}
.y1b4{bottom:410.400400pt;}
.y34{bottom:411.401334pt;}
.y104{bottom:412.060267pt;}
.y1ee{bottom:420.934400pt;}
.ye8{bottom:421.234133pt;}
.y9b{bottom:422.466667pt;}
.y135{bottom:423.466667pt;}
.y55{bottom:423.934400pt;}
.y103{bottom:424.060267pt;}
.y1b3{bottom:425.067067pt;}
.y184{bottom:425.367200pt;}
.ye{bottom:430.990669pt;}
.yce{bottom:431.800000pt;}
.y1ed{bottom:435.601067pt;}
.y102{bottom:436.060267pt;}
.ye7{bottom:438.567467pt;}
.y1b2{bottom:439.733733pt;}
.y9a{bottom:439.800000pt;}
.y134{bottom:440.800000pt;}
.y54{bottom:441.267733pt;}
.y183{bottom:442.700533pt;}
.yd{bottom:446.990669pt;}
.y101{bottom:448.060267pt;}
.y12c{bottom:449.133333pt;}
.y1ec{bottom:450.267733pt;}
.y1b1{bottom:454.400400pt;}
.ye6{bottom:455.900800pt;}
.y99{bottom:457.133333pt;}
.y133{bottom:458.133333pt;}
.y53{bottom:458.601067pt;}
.y182{bottom:460.033867pt;}
.y100{bottom:460.060267pt;}
.yc{bottom:462.990669pt;}
.y1eb{bottom:464.934400pt;}
.y1b0{bottom:469.067067pt;}
.y33{bottom:471.206667pt;}
.ye5{bottom:473.234133pt;}
.y98{bottom:474.466667pt;}
.y132{bottom:475.466667pt;}
.y52{bottom:475.934400pt;}
.yff{bottom:476.060267pt;}
.y181{bottom:477.367200pt;}
.yb{bottom:478.990666pt;}
.y1ea{bottom:479.601067pt;}
.ycd{bottom:482.101067pt;}
.y1af{bottom:483.733733pt;}
.ye4{bottom:490.567467pt;}
.y97{bottom:491.800000pt;}
.yfe{bottom:492.726933pt;}
.y131{bottom:492.800000pt;}
.y1e9{bottom:494.267733pt;}
.y180{bottom:494.700533pt;}
.ya{bottom:494.990666pt;}
.y12b{bottom:495.400400pt;}
.y1ae{bottom:498.400400pt;}
.ycc{bottom:499.434400pt;}
.y32{bottom:501.740001pt;}
.y51{bottom:502.601067pt;}
.ye3{bottom:507.900800pt;}
.y1e8{bottom:508.934400pt;}
.y96{bottom:509.133333pt;}
.y130{bottom:510.133333pt;}
.y17f{bottom:512.033867pt;}
.y12a{bottom:512.733733pt;}
.y1ad{bottom:513.067067pt;}
.y31{bottom:515.073335pt;}
.ycb{bottom:516.767733pt;}
.y1e7{bottom:523.601067pt;}
.ye2{bottom:525.234133pt;}
.y95{bottom:526.466667pt;}
.yfd{bottom:526.987067pt;}
.y12f{bottom:527.466667pt;}
.y1ac{bottom:527.733733pt;}
.y30{bottom:528.406667pt;}
.y17e{bottom:529.367200pt;}
.y129{bottom:530.067067pt;}
.yca{bottom:534.101067pt;}
.y1e6{bottom:538.267733pt;}
.y1ab{bottom:542.400400pt;}
.ye1{bottom:542.567467pt;}
.y7d{bottom:543.067733pt;}
.y94{bottom:543.800000pt;}
.yfc{bottom:544.320400pt;}
.y12e{bottom:544.800000pt;}
.y17d{bottom:546.700533pt;}
.y128{bottom:547.400400pt;}
.yc9{bottom:551.434400pt;}
.y1e5{bottom:552.934400pt;}
.y7c{bottom:555.067733pt;}
.y1aa{bottom:557.067067pt;}
.ye0{bottom:559.900800pt;}
.y93{bottom:561.133333pt;}
.y12d{bottom:562.133333pt;}
.y127{bottom:564.733733pt;}
.y7b{bottom:567.067733pt;}
.y1e4{bottom:567.601067pt;}
.yc8{bottom:568.767733pt;}
.yf7{bottom:569.081333pt;}
.y1a9{bottom:571.733733pt;}
.yf9{bottom:572.190933pt;}
.y17c{bottom:573.367200pt;}
.y9{bottom:573.786667pt;}
.yfb{bottom:575.524267pt;}
.ydf{bottom:577.234133pt;}
.yf6{bottom:578.414000pt;}
.y92{bottom:578.466667pt;}
.y7a{bottom:579.067733pt;}
.y126{bottom:582.067067pt;}
.y1e3{bottom:582.267733pt;}
.yc7{bottom:586.101067pt;}
.y1a8{bottom:586.400400pt;}
.y8{bottom:592.685334pt;}
.yde{bottom:594.567467pt;}
.y1e2{bottom:596.934400pt;}
.y50{bottom:597.267733pt;}
.y79{bottom:599.301067pt;}
.y125{bottom:599.400400pt;}
.y2f{bottom:600.726665pt;}
.y1a7{bottom:601.067067pt;}
.y168{bottom:601.101067pt;}
.yc6{bottom:603.434400pt;}
.y91{bottom:605.133333pt;}
.yf5{bottom:609.840800pt;}
.y4f{bottom:610.601067pt;}
.y78{bottom:611.301067pt;}
.y1e1{bottom:611.601067pt;}
.ydd{bottom:611.900800pt;}
.y167{bottom:612.767733pt;}
.y1a6{bottom:615.733733pt;}
.y124{bottom:616.733733pt;}
.y17b{bottom:618.150800pt;}
.yc5{bottom:620.767733pt;}
.y77{bottom:623.301067pt;}
.y4e{bottom:623.934400pt;}
.y166{bottom:624.434400pt;}
.y1e0{bottom:626.267733pt;}
.yf4{bottom:627.174133pt;}
.y2e{bottom:627.393332pt;}
.ydc{bottom:629.234133pt;}
.y1a5{bottom:630.400400pt;}
.y90{bottom:631.800000pt;}
.y123{bottom:634.067067pt;}
.y76{bottom:635.301067pt;}
.y17a{bottom:635.484133pt;}
.y4d{bottom:637.267733pt;}
.yc4{bottom:638.101067pt;}
.y165{bottom:640.434400pt;}
.y1df{bottom:640.934400pt;}
.y2d{bottom:643.393332pt;}
.yf3{bottom:644.507467pt;}
.y1a4{bottom:645.067067pt;}
.y7{bottom:645.598667pt;}
.ydb{bottom:646.567467pt;}
.y75{bottom:647.301067pt;}
.y4c{bottom:650.601067pt;}
.y122{bottom:651.400400pt;}
.y164{bottom:652.434400pt;}
.y179{bottom:652.817467pt;}
.yc3{bottom:655.434400pt;}
.y1de{bottom:655.601067pt;}
.y2c{bottom:659.393332pt;}
.y1a3{bottom:659.733733pt;}
.yf2{bottom:661.840800pt;}
.yda{bottom:663.900800pt;}
.y4b{bottom:663.934400pt;}
.y163{bottom:664.434400pt;}
.y74{bottom:667.534400pt;}
.y3{bottom:668.977329pt;}
.y178{bottom:670.150800pt;}
.y1dd{bottom:670.267733pt;}
.yc2{bottom:672.767733pt;}
.y1a2{bottom:674.400400pt;}
.y2b{bottom:675.393332pt;}
.y162{bottom:676.434400pt;}
.y4a{bottom:677.267733pt;}
.y11e{bottom:679.001333pt;}
.yf1{bottom:679.174133pt;}
.y73{bottom:679.534400pt;}
.yd9{bottom:681.234133pt;}
.y120{bottom:682.111067pt;}
.y8f{bottom:682.601067pt;}
.y1dc{bottom:684.934400pt;}
.y11d{bottom:685.667333pt;}
.y177{bottom:687.484133pt;}
.y161{bottom:688.434400pt;}
.y1a1{bottom:689.067067pt;}
.yc1{bottom:690.101067pt;}
.y49{bottom:690.601067pt;}
.y72{bottom:691.534400pt;}
.yf0{bottom:696.507467pt;}
.yd8{bottom:698.567467pt;}
.y1db{bottom:699.601067pt;}
.y8e{bottom:699.934400pt;}
.y160{bottom:700.434400pt;}
.y71{bottom:703.534400pt;}
.y1a0{bottom:703.733733pt;}
.y48{bottom:703.934400pt;}
.y176{bottom:704.817467pt;}
.yc0{bottom:707.434400pt;}
.y15f{bottom:712.434400pt;}
.y1da{bottom:714.267733pt;}
.y70{bottom:715.534400pt;}
.yd7{bottom:715.900800pt;}
.y47{bottom:717.267733pt;}
.y19f{bottom:718.400400pt;}
.y2a{bottom:722.034669pt;}
.yef{bottom:723.174133pt;}
.y15e{bottom:724.434400pt;}
.ybf{bottom:724.767733pt;}
.y1d9{bottom:728.934400pt;}
.y46{bottom:730.601067pt;}
.y175{bottom:731.484133pt;}
.yd6{bottom:733.234133pt;}
.y8d{bottom:734.601067pt;}
.y6f{bottom:735.767733pt;}
.y15d{bottom:736.434400pt;}
.ybe{bottom:742.101067pt;}
.y19e{bottom:742.400400pt;}
.y1d8{bottom:743.601067pt;}
.y45{bottom:743.934400pt;}
.y6e{bottom:747.767733pt;}
.y15c{bottom:748.434400pt;}
.yd5{bottom:750.567467pt;}
.y8c{bottom:751.934400pt;}
.y44{bottom:757.267733pt;}
.y1d7{bottom:758.267733pt;}
.ybd{bottom:759.434400pt;}
.y6d{bottom:759.767733pt;}
.y15b{bottom:760.434400pt;}
.yd4{bottom:767.900800pt;}
.y8b{bottom:769.267733pt;}
.y43{bottom:770.601067pt;}
.y6c{bottom:771.767733pt;}
.y15a{bottom:772.434400pt;}
.y1d6{bottom:772.934400pt;}
.y174{bottom:776.267733pt;}
.ybc{bottom:776.767733pt;}
.y29{bottom:778.613333pt;}
.y2{bottom:781.661334pt;}
.y159{bottom:784.434400pt;}
.yd3{bottom:785.234133pt;}
.y8a{bottom:786.601067pt;}
.y1d5{bottom:787.601067pt;}
.y19d{bottom:791.667333pt;}
.y173{bottom:793.601067pt;}
.ybb{bottom:794.101067pt;}
.y158{bottom:796.434400pt;}
.y1d4{bottom:802.267733pt;}
.yd2{bottom:802.567467pt;}
.y89{bottom:803.934400pt;}
.y28{bottom:806.613333pt;}
.y157{bottom:808.434400pt;}
.y172{bottom:810.934400pt;}
.yba{bottom:811.434400pt;}
.y42{bottom:812.267733pt;}
.y19c{bottom:815.667333pt;}
.y1d3{bottom:816.934400pt;}
.yd1{bottom:819.900800pt;}
.y156{bottom:820.434400pt;}
.y88{bottom:821.267733pt;}
.y171{bottom:828.267733pt;}
.yb9{bottom:828.767733pt;}
.y41{bottom:829.561067pt;}
.y1d2{bottom:831.601067pt;}
.y155{bottom:832.434400pt;}
.y27{bottom:834.613333pt;}
.yd0{bottom:837.234133pt;}
.y87{bottom:838.601067pt;}
.y154{bottom:844.434400pt;}
.y170{bottom:845.601067pt;}
.yb8{bottom:846.101067pt;}
.y1d1{bottom:846.267733pt;}
.y40{bottom:849.601067pt;}
.y86{bottom:855.934400pt;}
.y153{bottom:856.434400pt;}
.y1{bottom:859.312000pt;}
.y1d0{bottom:860.934400pt;}
.y26{bottom:862.613333pt;}
.y16f{bottom:862.934400pt;}
.yb7{bottom:863.434400pt;}
.ycf{bottom:863.900800pt;}
.y19b{bottom:864.934400pt;}
.y152{bottom:868.434400pt;}
.y85{bottom:873.267733pt;}
.y1cf{bottom:875.601067pt;}
.y19a{bottom:879.601067pt;}
.y16e{bottom:880.267733pt;}
.y151{bottom:880.434400pt;}
.yb6{bottom:880.767733pt;}
.y3f{bottom:884.267733pt;}
.y1ce{bottom:890.267733pt;}
.y84{bottom:890.601067pt;}
.y150{bottom:892.434400pt;}
.y16d{bottom:897.601067pt;}
.yb5{bottom:898.101067pt;}
.y199{bottom:903.601067pt;}
.y14f{bottom:904.434400pt;}
.y1cd{bottom:904.934400pt;}
.y3e{bottom:905.601067pt;}
.y83{bottom:907.934400pt;}
.y16c{bottom:914.934400pt;}
.yb4{bottom:915.434400pt;}
.y14e{bottom:916.434400pt;}
.y1cc{bottom:919.601067pt;}
.y25{bottom:920.485335pt;}
.y82{bottom:925.267733pt;}
.y14d{bottom:928.434400pt;}
.y3b{bottom:931.121067pt;}
.y16b{bottom:932.267733pt;}
.yb3{bottom:932.767733pt;}
.y1cb{bottom:934.267733pt;}
.y81{bottom:942.601067pt;}
.y14b{bottom:944.434400pt;}
.y198{bottom:948.934400pt;}
.y16a{bottom:949.601067pt;}
.yb2{bottom:950.101067pt;}
.y80{bottom:959.934400pt;}
.y14c{bottom:961.101067pt;}
.y68{bottom:963.362000pt;}
.y197{bottom:963.601067pt;}
.y3d{bottom:975.473733pt;}
.y169{bottom:976.267733pt;}
.yb1{bottom:976.767733pt;}
.y7f{bottom:977.267733pt;}
.y14a{bottom:977.767733pt;}
.y196{bottom:978.267733pt;}
.y3c{bottom:987.473733pt;}
.yb0{bottom:1014.433867pt;}
.y7e{bottom:1014.500533pt;}
.y24{bottom:1035.664002pt;}
.h21{height:19.777333pt;}
.h27{height:19.910667pt;}
.h23{height:21.583147pt;}
.h16{height:22.308000pt;}
.h1b{height:26.693333pt;}
.h18{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1f{height:30.000000pt;}
.h1d{height:30.506667pt;}
.h1c{height:30.762667pt;}
.h1e{height:32.000000pt;}
.hb{height:32.645833pt;}
.h29{height:33.909333pt;}
.h2a{height:34.608000pt;}
.h24{height:35.546875pt;}
.h19{height:36.000000pt;}
.h26{height:36.226667pt;}
.h28{height:36.396945pt;}
.hf{height:36.726562pt;}
.h22{height:37.333333pt;}
.h17{height:38.148000pt;}
.h12{height:40.000000pt;}
.h20{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h1a{height:42.298667pt;}
.h3{height:42.840000pt;}
.h15{height:45.780000pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.h25{height:60.892267pt;}
.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;}
.w7{width:344.082667pt;}
.w6{width:373.176000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x1c{left:-0.944133pt;}
.x0{left:0.000000pt;}
.x11{left:14.415333pt;}
.x10{left:22.948667pt;}
.x1e{left:29.722533pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x39{left:109.333333pt;}
.xb{left:112.100000pt;}
.x6{left:129.466667pt;}
.x16{left:151.867867pt;}
.x14{left:153.333333pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x29{left:191.596533pt;}
.x9{left:203.327991pt;}
.x21{left:205.528000pt;}
.xe{left:210.209333pt;}
.xf{left:215.158000pt;}
.x1b{left:224.809333pt;}
.x1d{left:229.465200pt;}
.x2a{left:255.726267pt;}
.x2b{left:257.859600pt;}
.x8{left:260.969328pt;}
.x12{left:276.491333pt;}
.x20{left:281.206533pt;}
.x13{left:302.891333pt;}
.x2c{left:323.322667pt;}
.x2d{left:325.456000pt;}
.x17{left:328.442000pt;}
.x18{left:343.654800pt;}
.x36{left:388.295067pt;}
.x2e{left:389.585733pt;}
.x2f{left:391.719067pt;}
.x35{left:394.652400pt;}
.x3{left:404.408000pt;}
.x30{left:453.182133pt;}
.x22{left:455.315467pt;}
.x34{left:458.248667pt;}
.x3a{left:502.378267pt;}
.xd{left:507.508000pt;}
.x31{left:518.111867pt;}
.x24{left:520.245067pt;}
.x23{left:523.178400pt;}
.x15{left:547.224800pt;}
.x1f{left:568.891867pt;}
.xc{left:577.800667pt;}
.x37{left:583.084133pt;}
.x32{left:584.374933pt;}
.x26{left:586.508133pt;}
.x25{left:589.441467pt;}
.x19{left:626.625733pt;}
.x1a{left:641.838400pt;}
.x38{left:649.347200pt;}
.x33{left:650.638000pt;}
.x28{left:652.771200pt;}
.x27{left:655.704533pt;}
}




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