
    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_f80d499cc8b1ef094d35df27.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;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_207127b77589bf0d20dcadd8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_0e2ef75396e3d535838fe9b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953000;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_fa98043f3a41d678d683f2aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.134000;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_a58d703d5af63d7e1d1c84d2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.081000;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_9fb60a0da1d01314e1183411.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.249000;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_e6222b90eae8a0d32ad89f42.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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_bcc0dfcd0e1d662dda5367c9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.047000;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_5609ce25ac6dd4d958dbae4a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.857910;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_301769c41d0d7d9299b7a8cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.833008;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_a36173833fa407081ebaccb9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.020000;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;}
.mb{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{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:-18.781200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.752400px;}
.ls4{letter-spacing:-2.268000px;}
.lsb{letter-spacing:-2.250000px;}
.ls15{letter-spacing:-1.218000px;}
.lsa{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.900000px;}
.ls9{letter-spacing:-0.588000px;}
.ls1c{letter-spacing:-0.252000px;}
.ls1{letter-spacing:-0.222000px;}
.ls3{letter-spacing:-0.168000px;}
.ls14{letter-spacing:-0.112800px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000375px;}
.ls8{letter-spacing:0.222000px;}
.ls1b{letter-spacing:1.575000px;}
.lsc{letter-spacing:2.115000px;}
.ls11{letter-spacing:3.486000px;}
.ls17{letter-spacing:9.534000px;}
.ls18{letter-spacing:9.576000px;}
.ls1a{letter-spacing:9.912000px;}
.ls10{letter-spacing:10.038000px;}
.ls16{letter-spacing:11.970000px;}
.ls13{letter-spacing:12.390000px;}
.lsf{letter-spacing:32.928000px;}
.ls12{letter-spacing:39.102000px;}
.ls7{letter-spacing:40.913196px;}
.ls19{letter-spacing:41.448750px;}
.ls6{letter-spacing:63.424948px;}
.ls0{letter-spacing:2110.126531px;}
.lse{letter-spacing:2156.723125px;}
.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;}
}
.ws4{word-spacing:-42.000000px;}
.ws1d{word-spacing:-16.694400px;}
.ws73{word-spacing:-15.984000px;}
.ws10c{word-spacing:-14.100000px;}
.wsbf{word-spacing:-13.365000px;}
.ws19c{word-spacing:-12.825000px;}
.ws19d{word-spacing:-12.600000px;}
.ws1{word-spacing:-12.000000px;}
.ws10f{word-spacing:-11.280000px;}
.wsa2{word-spacing:-11.250000px;}
.ws74{word-spacing:-10.500000px;}
.wsc0{word-spacing:-10.350000px;}
.ws5{word-spacing:-10.332000px;}
.wsc1{word-spacing:-10.080000px;}
.ws8b{word-spacing:-9.492000px;}
.ws140{word-spacing:-9.282000px;}
.wsbe{word-spacing:-9.000000px;}
.ws3f{word-spacing:-8.880000px;}
.ws0{word-spacing:-8.658000px;}
.ws3{word-spacing:-8.400000px;}
.ws1e{word-spacing:-8.232000px;}
.ws19b{word-spacing:-8.010000px;}
.ws112{word-spacing:-7.388400px;}
.ws2{word-spacing:-6.576240px;}
.wsb5{word-spacing:-6.435000px;}
.ws14d{word-spacing:-6.260400px;}
.ws14f{word-spacing:-6.204000px;}
.wsb6{word-spacing:-5.985000px;}
.wsfc{word-spacing:-5.358000px;}
.wsb7{word-spacing:-4.725000px;}
.ws12a{word-spacing:-4.230000px;}
.ws15b{word-spacing:-4.004400px;}
.ws196{word-spacing:-3.960000px;}
.wsff{word-spacing:-3.948000px;}
.ws8f{word-spacing:-3.214800px;}
.wsa9{word-spacing:-3.102000px;}
.ws50{word-spacing:-3.045600px;}
.ws180{word-spacing:-2.898000px;}
.ws92{word-spacing:-2.876400px;}
.ws61{word-spacing:-2.820000px;}
.ws108{word-spacing:-2.763600px;}
.ws45{word-spacing:-2.650800px;}
.wsf7{word-spacing:-2.610000px;}
.wse4{word-spacing:-2.565000px;}
.ws65{word-spacing:-2.538000px;}
.ws42{word-spacing:-2.425200px;}
.ws34{word-spacing:-2.368800px;}
.ws162{word-spacing:-2.312400px;}
.ws77{word-spacing:-2.223000px;}
.ws7d{word-spacing:-2.052000px;}
.wse5{word-spacing:-2.025000px;}
.ws9{word-spacing:-2.012400px;}
.wsb4{word-spacing:-1.980000px;}
.ws63{word-spacing:-1.974000px;}
.ws132{word-spacing:-1.917600px;}
.wsf3{word-spacing:-1.890000px;}
.ws49{word-spacing:-1.861200px;}
.ws97{word-spacing:-1.804800px;}
.wsef{word-spacing:-1.800000px;}
.ws90{word-spacing:-1.748400px;}
.ws93{word-spacing:-1.692000px;}
.ws17a{word-spacing:-1.680000px;}
.ws17f{word-spacing:-1.638000px;}
.ws47{word-spacing:-1.635600px;}
.ws78{word-spacing:-1.596000px;}
.ws18{word-spacing:-1.579200px;}
.wsc2{word-spacing:-1.485000px;}
.ws6f{word-spacing:-1.466400px;}
.ws6c{word-spacing:-1.410000px;}
.wsd1{word-spacing:-1.395000px;}
.ws43{word-spacing:-1.353600px;}
.wsae{word-spacing:-1.344000px;}
.ws15{word-spacing:-1.297200px;}
.wsea{word-spacing:-1.260000px;}
.wsac{word-spacing:-1.240800px;}
.ws8{word-spacing:-1.238400px;}
.wsd3{word-spacing:-1.170000px;}
.ws145{word-spacing:-1.128000px;}
.ws72{word-spacing:-1.050000px;}
.wsc3{word-spacing:-1.035000px;}
.ws4c{word-spacing:-1.015200px;}
.wsd{word-spacing:-0.980400px;}
.wsd9{word-spacing:-0.945000px;}
.wsd2{word-spacing:-0.855000px;}
.ws2f{word-spacing:-0.846000px;}
.wsf1{word-spacing:-0.810000px;}
.ws174{word-spacing:-0.789600px;}
.ws98{word-spacing:-0.733200px;}
.wsa{word-spacing:-0.722400px;}
.ws1a9{word-spacing:-0.705600px;}
.ws20{word-spacing:-0.676800px;}
.wse7{word-spacing:-0.675000px;}
.wsb9{word-spacing:-0.630000px;}
.ws1ab{word-spacing:-0.604800px;}
.wse3{word-spacing:-0.540000px;}
.ws66{word-spacing:-0.507600px;}
.wsf6{word-spacing:-0.450000px;}
.ws1f{word-spacing:-0.444000px;}
.ws3c{word-spacing:-0.420000px;}
.wsf8{word-spacing:-0.403200px;}
.ws33{word-spacing:-0.394800px;}
.ws2c{word-spacing:-0.338400px;}
.ws10b{word-spacing:-0.336000px;}
.ws2a{word-spacing:-0.282000px;}
.ws7c{word-spacing:-0.270000px;}
.wsb{word-spacing:-0.258000px;}
.wsdb{word-spacing:-0.225000px;}
.ws84{word-spacing:-0.169200px;}
.ws13f{word-spacing:-0.168000px;}
.ws4f{word-spacing:-0.112800px;}
.wsc{word-spacing:-0.051600px;}
.ws6{word-spacing:0.000000px;}
.ws62{word-spacing:0.056400px;}
.ws6b{word-spacing:0.112800px;}
.ws1b{word-spacing:0.168000px;}
.ws8c{word-spacing:0.169200px;}
.wsda{word-spacing:0.225000px;}
.ws2d{word-spacing:0.225600px;}
.ws5d{word-spacing:0.294000px;}
.ws7f{word-spacing:0.338400px;}
.ws51{word-spacing:0.507600px;}
.ws10{word-spacing:0.516000px;}
.ws18f{word-spacing:0.540000px;}
.ws9d{word-spacing:0.546000px;}
.ws36{word-spacing:0.564000px;}
.ws3d{word-spacing:0.588000px;}
.ws41{word-spacing:0.676800px;}
.ws37{word-spacing:0.733200px;}
.ws87{word-spacing:0.756000px;}
.wsf4{word-spacing:0.765000px;}
.ws5b{word-spacing:0.798000px;}
.ws9e{word-spacing:0.840000px;}
.ws52{word-spacing:0.846000px;}
.ws89{word-spacing:0.882000px;}
.wsa7{word-spacing:0.958800px;}
.wsaf{word-spacing:0.966000px;}
.ws19{word-spacing:1.008000px;}
.ws8a{word-spacing:1.050000px;}
.ws5a{word-spacing:1.134000px;}
.ws31{word-spacing:1.184400px;}
.ws86{word-spacing:1.297200px;}
.ws123{word-spacing:1.302000px;}
.ws48{word-spacing:1.353600px;}
.ws30{word-spacing:1.410000px;}
.ws6a{word-spacing:1.466400px;}
.wsb3{word-spacing:1.485000px;}
.ws7e{word-spacing:1.522800px;}
.wsbd{word-spacing:1.575000px;}
.ws91{word-spacing:1.579200px;}
.ws177{word-spacing:1.596000px;}
.ws96{word-spacing:1.635600px;}
.wsad{word-spacing:1.692000px;}
.ws58{word-spacing:1.722000px;}
.wsd8{word-spacing:1.800000px;}
.ws80{word-spacing:1.804800px;}
.ws76{word-spacing:1.824000px;}
.ws110{word-spacing:1.861200px;}
.ws7b{word-spacing:1.890000px;}
.ws12{word-spacing:1.917600px;}
.ws9b{word-spacing:1.932000px;}
.wsd5{word-spacing:1.935000px;}
.ws1a{word-spacing:2.016000px;}
.ws64{word-spacing:2.030400px;}
.ws179{word-spacing:2.058000px;}
.ws14{word-spacing:2.086800px;}
.wsb0{word-spacing:2.100000px;}
.wsbc{word-spacing:2.115000px;}
.ws11{word-spacing:2.218800px;}
.ws7a{word-spacing:2.223000px;}
.ws106{word-spacing:2.312400px;}
.ws7{word-spacing:2.322000px;}
.wscd{word-spacing:2.340000px;}
.ws4b{word-spacing:2.368800px;}
.wsd4{word-spacing:2.385000px;}
.wse9{word-spacing:2.430000px;}
.ws99{word-spacing:2.436000px;}
.wsc7{word-spacing:2.475000px;}
.ws25{word-spacing:2.481600px;}
.ws9f{word-spacing:2.520000px;}
.ws88{word-spacing:2.562000px;}
.ws2e{word-spacing:2.594400px;}
.ws44{word-spacing:2.650800px;}
.ws69{word-spacing:2.707200px;}
.ws17b{word-spacing:2.730000px;}
.wsd7{word-spacing:2.745000px;}
.ws38{word-spacing:2.763600px;}
.ws6e{word-spacing:2.820000px;}
.wsc4{word-spacing:2.835000px;}
.ws9a{word-spacing:2.856000px;}
.wsa1{word-spacing:2.940000px;}
.ws94{word-spacing:2.989200px;}
.ws183{word-spacing:3.102000px;}
.ws9c{word-spacing:3.150000px;}
.ws59{word-spacing:3.234000px;}
.ws127{word-spacing:3.271200px;}
.ws67{word-spacing:3.327600px;}
.ws53{word-spacing:3.384000px;}
.ws3e{word-spacing:3.402000px;}
.wsb2{word-spacing:3.420000px;}
.ws57{word-spacing:3.444000px;}
.wsa0{word-spacing:3.486000px;}
.ws28{word-spacing:3.496800px;}
.ws79{word-spacing:3.534000px;}
.ws5e{word-spacing:3.612000px;}
.ws11b{word-spacing:3.654000px;}
.ws147{word-spacing:3.722400px;}
.wseb{word-spacing:3.780000px;}
.ws160{word-spacing:3.835200px;}
.wsc6{word-spacing:3.915000px;}
.ws83{word-spacing:3.948000px;}
.ws39{word-spacing:3.990000px;}
.ws21{word-spacing:4.004400px;}
.wsb8{word-spacing:4.005000px;}
.wsfe{word-spacing:4.060800px;}
.wsa8{word-spacing:4.117200px;}
.ws35{word-spacing:4.173600px;}
.ws1aa{word-spacing:4.183200px;}
.ws82{word-spacing:4.342800px;}
.wse{word-spacing:4.386000px;}
.ws95{word-spacing:4.399200px;}
.ws120{word-spacing:4.494000px;}
.wsc5{word-spacing:4.500000px;}
.ws16{word-spacing:4.512000px;}
.ws11f{word-spacing:4.536000px;}
.ws121{word-spacing:4.620000px;}
.ws46{word-spacing:4.624800px;}
.ws11e{word-spacing:4.662000px;}
.ws54{word-spacing:4.681200px;}
.ws68{word-spacing:4.737600px;}
.ws146{word-spacing:4.850400px;}
.ws13b{word-spacing:4.906800px;}
.wsed{word-spacing:5.175000px;}
.ws8e{word-spacing:5.188800px;}
.ws12f{word-spacing:5.245200px;}
.ws3a{word-spacing:5.250000px;}
.ws56{word-spacing:5.301600px;}
.ws4d{word-spacing:5.358000px;}
.ws71{word-spacing:5.470800px;}
.wsf5{word-spacing:5.490000px;}
.ws8d{word-spacing:5.527200px;}
.ws4a{word-spacing:5.583600px;}
.ws3b{word-spacing:5.670000px;}
.ws152{word-spacing:5.696400px;}
.wsf{word-spacing:5.830800px;}
.ws105{word-spacing:5.922000px;}
.ws13{word-spacing:5.978400px;}
.ws18b{word-spacing:5.985000px;}
.ws26{word-spacing:6.034800px;}
.wsa4{word-spacing:6.147600px;}
.ws32{word-spacing:6.260400px;}
.wsca{word-spacing:6.300000px;}
.wsa6{word-spacing:6.373200px;}
.ws17d{word-spacing:6.384000px;}
.wsaa{word-spacing:6.429600px;}
.ws118{word-spacing:6.486000px;}
.ws5c{word-spacing:6.510000px;}
.wsba{word-spacing:6.525000px;}
.wsd6{word-spacing:6.570000px;}
.ws178{word-spacing:6.594000px;}
.ws55{word-spacing:6.598800px;}
.ws4e{word-spacing:6.711600px;}
.wsdf{word-spacing:6.795000px;}
.ws81{word-spacing:6.824400px;}
.ws24{word-spacing:6.880800px;}
.ws12d{word-spacing:6.993600px;}
.ws17c{word-spacing:7.014000px;}
.ws190{word-spacing:7.020000px;}
.ws60{word-spacing:7.162800px;}
.ws13c{word-spacing:7.219200px;}
.wsa5{word-spacing:7.332000px;}
.ws17{word-spacing:7.501200px;}
.ws125{word-spacing:7.518000px;}
.ws22{word-spacing:7.557600px;}
.ws124{word-spacing:7.560000px;}
.wsab{word-spacing:7.726800px;}
.ws70{word-spacing:7.783200px;}
.wsec{word-spacing:7.875000px;}
.ws1a0{word-spacing:7.920000px;}
.ws173{word-spacing:7.952400px;}
.ws6d{word-spacing:8.008800px;}
.wse1{word-spacing:8.055000px;}
.ws141{word-spacing:8.178000px;}
.ws182{word-spacing:8.290800px;}
.ws116{word-spacing:8.403600px;}
.wsc9{word-spacing:8.460000px;}
.ws5f{word-spacing:8.629200px;}
.wsf0{word-spacing:8.640000px;}
.ws29{word-spacing:8.798400px;}
.ws15e{word-spacing:8.854800px;}
.ws27{word-spacing:8.911200px;}
.ws13a{word-spacing:8.967600px;}
.wse8{word-spacing:9.045000px;}
.ws23{word-spacing:9.306000px;}
.wsf2{word-spacing:9.315000px;}
.ws1a4{word-spacing:9.360000px;}
.ws12e{word-spacing:9.362400px;}
.ws2b{word-spacing:9.588000px;}
.ws85{word-spacing:9.644400px;}
.wsee{word-spacing:9.675000px;}
.ws186{word-spacing:9.757200px;}
.ws107{word-spacing:9.813600px;}
.wsce{word-spacing:9.900000px;}
.ws135{word-spacing:9.926400px;}
.ws154{word-spacing:10.039200px;}
.ws176{word-spacing:10.080000px;}
.ws11a{word-spacing:10.206000px;}
.ws161{word-spacing:10.208400px;}
.wscf{word-spacing:10.305000px;}
.wse6{word-spacing:10.350000px;}
.ws1a8{word-spacing:10.432800px;}
.wsdd{word-spacing:10.485000px;}
.ws144{word-spacing:10.490400px;}
.ws184{word-spacing:10.603200px;}
.ws115{word-spacing:10.659600px;}
.ws1a1{word-spacing:10.710000px;}
.ws142{word-spacing:10.885200px;}
.wsdc{word-spacing:10.935000px;}
.ws16f{word-spacing:10.998000px;}
.ws10d{word-spacing:11.167200px;}
.wsfb{word-spacing:11.280000px;}
.ws18d{word-spacing:11.700000px;}
.wse2{word-spacing:11.790000px;}
.ws14a{word-spacing:11.900400px;}
.ws114{word-spacing:12.013200px;}
.wse0{word-spacing:12.195000px;}
.ws165{word-spacing:12.295200px;}
.ws11d{word-spacing:12.558000px;}
.ws113{word-spacing:12.972000px;}
.ws18e{word-spacing:13.095000px;}
.ws199{word-spacing:13.365000px;}
.wsb1{word-spacing:13.680000px;}
.ws13d{word-spacing:13.705200px;}
.wsfa{word-spacing:13.818000px;}
.ws157{word-spacing:13.987200px;}
.ws14b{word-spacing:14.269200px;}
.ws16c{word-spacing:14.664000px;}
.ws13e{word-spacing:14.776800px;}
.ws139{word-spacing:15.058800px;}
.ws169{word-spacing:15.284400px;}
.wsbb{word-spacing:15.390000px;}
.ws193{word-spacing:15.570000px;}
.wsc8{word-spacing:15.615000px;}
.ws136{word-spacing:15.961200px;}
.ws133{word-spacing:16.074000px;}
.ws172{word-spacing:16.130400px;}
.ws101{word-spacing:16.356000px;}
.ws155{word-spacing:16.525200px;}
.ws100{word-spacing:17.032800px;}
.wsd0{word-spacing:17.190000px;}
.ws19e{word-spacing:17.235000px;}
.ws15a{word-spacing:17.766000px;}
.ws131{word-spacing:17.822400px;}
.ws164{word-spacing:17.935200px;}
.ws102{word-spacing:17.991600px;}
.wsde{word-spacing:18.135000px;}
.ws129{word-spacing:18.386400px;}
.ws130{word-spacing:18.894000px;}
.ws166{word-spacing:18.950400px;}
.ws117{word-spacing:19.006800px;}
.ws163{word-spacing:19.514400px;}
.ws122{word-spacing:19.950000px;}
.ws15f{word-spacing:20.980800px;}
.ws137{word-spacing:21.150000px;}
.ws17e{word-spacing:21.252000px;}
.ws119{word-spacing:21.488400px;}
.ws150{word-spacing:21.996000px;}
.ws156{word-spacing:22.390800px;}
.ws10e{word-spacing:22.503600px;}
.ws111{word-spacing:22.672800px;}
.ws187{word-spacing:22.680000px;}
.ws103{word-spacing:23.180400px;}
.ws109{word-spacing:23.688000px;}
.ws159{word-spacing:23.800800px;}
.ws18a{word-spacing:24.030000px;}
.ws16b{word-spacing:24.928800px;}
.ws167{word-spacing:25.267200px;}
.wsfd{word-spacing:25.380000px;}
.ws18c{word-spacing:25.605000px;}
.ws175{word-spacing:26.677200px;}
.ws16a{word-spacing:27.015600px;}
.ws148{word-spacing:27.579600px;}
.ws14c{word-spacing:28.538400px;}
.wscb{word-spacing:28.755000px;}
.ws15d{word-spacing:28.820400px;}
.ws12b{word-spacing:29.046000px;}
.ws14e{word-spacing:30.230400px;}
.wscc{word-spacing:31.455000px;}
.ws189{word-spacing:31.950000px;}
.ws16e{word-spacing:32.035200px;}
.ws10a{word-spacing:33.096000px;}
.ws143{word-spacing:35.193600px;}
.wsf9{word-spacing:35.644800px;}
.ws1a3{word-spacing:36.135000px;}
.ws171{word-spacing:37.562400px;}
.ws158{word-spacing:37.675200px;}
.ws12c{word-spacing:37.788000px;}
.ws16d{word-spacing:38.408400px;}
.ws11c{word-spacing:39.270000px;}
.ws194{word-spacing:41.805000px;}
.ws185{word-spacing:42.074400px;}
.ws168{word-spacing:42.525600px;}
.ws195{word-spacing:42.705000px;}
.ws134{word-spacing:42.920400px;}
.ws128{word-spacing:44.612400px;}
.ws151{word-spacing:44.894400px;}
.ws149{word-spacing:46.248000px;}
.ws1a7{word-spacing:47.376000px;}
.ws198{word-spacing:47.430000px;}
.ws15c{word-spacing:47.432400px;}
.ws1a5{word-spacing:48.150000px;}
.ws1a2{word-spacing:49.050000px;}
.ws104{word-spacing:50.534400px;}
.ws19a{word-spacing:54.135000px;}
.ws138{word-spacing:54.369600px;}
.ws188{word-spacing:54.540000px;}
.ws170{word-spacing:54.595200px;}
.ws197{word-spacing:59.310000px;}
.ws1c{word-spacing:65.688000px;}
.ws1a6{word-spacing:72.626400px;}
.ws19f{word-spacing:89.910000px;}
.ws191{word-spacing:99.945000px;}
.ws192{word-spacing:157.770000px;}
.ws153{word-spacing:284.715000px;}
.ws181{word-spacing:285.030000px;}
.ws126{word-spacing:287.820000px;}
.ws40{word-spacing:330.615000px;}
.ws75{word-spacing:330.930000px;}
.wsa3{word-spacing:331.830000px;}
._13{margin-left:-332.046796px;}
._a{margin-left:-330.806388px;}
._17{margin-left:-287.840745px;}
._19{margin-left:-284.707340px;}
._1a{margin-left:-26.726280px;}
._1e{margin-left:-20.500800px;}
._14{margin-left:-11.473080px;}
._1b{margin-left:-9.340080px;}
._7{margin-left:-7.684080px;}
._3{margin-left:-5.729400px;}
._4{margin-left:-3.948000px;}
._5{margin-left:-2.838000px;}
._6{margin-left:-1.621920px;}
._0{width:1.509600px;}
._1{width:3.366000px;}
._2{width:4.620000px;}
._1d{width:6.300000px;}
._f{width:7.523878px;}
._1c{width:9.055920px;}
._e{width:11.628000px;}
._10{width:12.881878px;}
._16{width:32.755052px;}
._c{width:37.628845px;}
._12{width:38.639753px;}
._11{width:40.021052px;}
._b{width:41.075753px;}
._d{width:42.125753px;}
._15{width:48.941018px;}
._18{width:58.574694px;}
._8{width:62.411753px;}
._9{width:63.415175px;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.482000px;}
.fs7{font-size:32.881200px;}
.fs8{font-size:42.000000px;}
.fs0{font-size:44.400000px;}
.fs9{font-size:45.000000px;}
.fsd{font-size:50.400000px;}
.fs5{font-size:51.600000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:56.400000px;}
.fsa{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs3{font-size:61.215000px;}
.fse{font-size:102.000000px;}
.fs2{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:65.368050px;}
.yc4{bottom:104.164050px;}
.y4a{bottom:104.170050px;}
.y15a{bottom:104.170200px;}
.y72{bottom:104.171550px;}
.y1f{bottom:104.171700px;}
.y88{bottom:104.173350px;}
.y159{bottom:118.271700px;}
.yc3{bottom:121.667550px;}
.yd2{bottom:121.671750px;}
.y177{bottom:121.673250px;}
.y1e{bottom:121.673400px;}
.y49{bottom:121.673550px;}
.y71{bottom:121.675050px;}
.y158{bottom:132.361050px;}
.yc2{bottom:135.769050px;}
.y48{bottom:135.773250px;}
.y19a{bottom:139.165950px;}
.y1d{bottom:139.172100px;}
.ya7{bottom:139.173450px;}
.y184{bottom:139.174950px;}
.yd1{bottom:139.175250px;}
.y70{bottom:139.176750px;}
.y157{bottom:149.864550px;}
.yc1{bottom:149.870550px;}
.yd0{bottom:153.273450px;}
.y141{bottom:153.274950px;}
.y47{bottom:153.275100px;}
.y199{bottom:156.669450px;}
.y6f{bottom:156.673800px;}
.y87{bottom:156.675150px;}
.y1c{bottom:156.675600px;}
.y183{bottom:156.676650px;}
.ya6{bottom:156.676950px;}
.y156{bottom:163.966050px;}
.yc0{bottom:163.972050px;}
.y12d{bottom:164.923200px;}
.y198{bottom:170.770950px;}
.ya5{bottom:170.775300px;}
.y140{bottom:170.776650px;}
.y46{bottom:170.776800px;}
.ycf{bottom:170.776950px;}
.y1b{bottom:170.777100px;}
.y182{bottom:174.175500px;}
.y6e{bottom:174.177300px;}
.y86{bottom:174.178650px;}
.y155{bottom:178.067550px;}
.ybf{bottom:178.073550px;}
.y1c8{bottom:184.119900px;}
.y197{bottom:184.872450px;}
.yce{bottom:184.876800px;}
.y1a{bottom:184.878600px;}
.y1b2{bottom:186.842400px;}
.y45{bottom:188.277000px;}
.y13f{bottom:188.278500px;}
.y6d{bottom:188.278800px;}
.y85{bottom:188.280150px;}
.y181{bottom:191.679000px;}
.y154{bottom:192.169050px;}
.ybe{bottom:192.175050px;}
.y1c7{bottom:198.373650px;}
.y196{bottom:198.973950px;}
.y1b1{bottom:201.096150px;}
.y6c{bottom:202.371000px;}
.ya4{bottom:202.380300px;}
.y12c{bottom:205.423200px;}
.y12b{bottom:205.425000px;}
.y44{bottom:205.780500px;}
.y13e{bottom:205.782000px;}
.ybd{bottom:206.265750px;}
.y153{bottom:206.270550px;}
.y1c6{bottom:212.627400px;}
.y195{bottom:213.075450px;}
.ya3{bottom:216.477000px;}
.y1b0{bottom:219.602400px;}
.y6b{bottom:219.874500px;}
.y43{bottom:219.880200px;}
.y152{bottom:220.372050px;}
.ybc{bottom:223.769250px;}
.y12a{bottom:225.673200px;}
.y19{bottom:225.678150px;}
.y194{bottom:227.176950px;}
.y1c5{bottom:231.133650px;}
.y1af{bottom:233.856150px;}
.y6a{bottom:233.976000px;}
.ya2{bottom:233.980500px;}
.y151{bottom:234.473550px;}
.y42{bottom:237.380400px;}
.y180{bottom:237.383700px;}
.ybb{bottom:237.870750px;}
.y193{bottom:241.278450px;}
.ye2{bottom:241.301550px;}
.yda{bottom:241.324050px;}
.y1c4{bottom:245.387400px;}
.y129{bottom:245.923200px;}
.y13d{bottom:245.925600px;}
.y18{bottom:245.925750px;}
.y16d{bottom:245.930400px;}
.y69{bottom:248.077500px;}
.ya1{bottom:248.082000px;}
.y150{bottom:248.573250px;}
.yba{bottom:251.972250px;}
.y1ae{bottom:252.362400px;}
.y41{bottom:254.883900px;}
.ye1{bottom:255.555300px;}
.yd9{bottom:255.577800px;}
.y192{bottom:258.771300px;}
.y68{bottom:262.179000px;}
.y1c3{bottom:263.893650px;}
.y14f{bottom:266.073450px;}
.yb9{bottom:266.073750px;}
.y17{bottom:266.175750px;}
.y16c{bottom:266.178000px;}
.y13c{bottom:266.180400px;}
.y84{bottom:266.197200px;}
.y1ad{bottom:266.616150px;}
.y40{bottom:268.983600px;}
.ye0{bottom:269.809050px;}
.yd8{bottom:269.831550px;}
.y191{bottom:272.872800px;}
.y67{bottom:276.280500px;}
.y1c2{bottom:278.143650px;}
.yb8{bottom:280.175250px;}
.y14e{bottom:283.576950px;}
.y1ac{bottom:285.122400px;}
.y128{bottom:286.423200px;}
.y16b{bottom:286.425600px;}
.y13b{bottom:286.428000px;}
.y16{bottom:286.430550px;}
.y83{bottom:286.444800px;}
.ya0{bottom:286.447200px;}
.y3f{bottom:286.487100px;}
.y190{bottom:286.974300px;}
.ydf{bottom:288.315300px;}
.yd7{bottom:288.337800px;}
.y66{bottom:290.382000px;}
.y1c1{bottom:292.393650px;}
.yb7{bottom:294.276750px;}
.y14d{bottom:297.675150px;}
.y1ab{bottom:299.376150px;}
.y18f{bottom:301.075800px;}
.yde{bottom:302.569050px;}
.yd6{bottom:302.591550px;}
.y65{bottom:304.480200px;}
.y1c0{bottom:306.531150px;}
.y16a{bottom:306.673200px;}
.y13a{bottom:306.675600px;}
.y15{bottom:306.678150px;}
.y17f{bottom:306.682800px;}
.y82{bottom:306.692400px;}
.y9f{bottom:306.694800px;}
.yb6{bottom:308.376750px;}
.y1aa{bottom:313.629900px;}
.y18e{bottom:315.177300px;}
.y14c{bottom:315.178650px;}
.ydd{bottom:321.075300px;}
.yd5{bottom:321.085950px;}
.y64{bottom:321.983700px;}
.y1bf{bottom:325.037400px;}
.yb5{bottom:325.876800px;}
.y176{bottom:326.923200px;}
.y14{bottom:326.925750px;}
.y3e{bottom:326.928000px;}
.y17e{bottom:326.930400px;}
.y169{bottom:326.932800px;}
.y81{bottom:326.940000px;}
.y9e{bottom:326.942400px;}
.y1a9{bottom:327.883650px;}
.y14b{bottom:329.278350px;}
.y18d{bottom:329.278800px;}
.ydc{bottom:335.329050px;}
.yd4{bottom:335.339700px;}
.y1be{bottom:339.291150px;}
.y1a8{bottom:342.137400px;}
.y18c{bottom:343.378500px;}
.yb4{bottom:343.380300px;}
.y14a{bottom:346.780200px;}
.y13{bottom:347.173350px;}
.y3d{bottom:347.175600px;}
.y17d{bottom:347.178000px;}
.y168{bottom:347.180400px;}
.y80{bottom:347.187600px;}
.y9d{bottom:347.190000px;}
.ydb{bottom:349.582800px;}
.yd3{bottom:349.593450px;}
.y1a7{bottom:356.391150px;}
.y1bd{bottom:357.797400px;}
.y18b{bottom:360.882000px;}
.y149{bottom:364.281900px;}
.y17c{bottom:367.425600px;}
.y3c{bottom:367.428000px;}
.y139{bottom:367.432800px;}
.y7f{bottom:367.435200px;}
.y9c{bottom:367.437600px;}
.y63{bottom:367.440000px;}
.y1bc{bottom:372.051150px;}
.y1a6{bottom:374.897400px;}
.y104{bottom:376.251750px;}
.y127{bottom:378.988800px;}
.y148{bottom:381.782100px;}
.ycd{bottom:387.673200px;}
.y3b{bottom:387.675600px;}
.y138{bottom:387.680400px;}
.y7e{bottom:387.682800px;}
.y9b{bottom:387.685200px;}
.y62{bottom:387.687600px;}
.y1a5{bottom:389.151150px;}
.y103{bottom:390.505500px;}
.y1bb{bottom:390.557400px;}
.y126{bottom:393.242550px;}
.y147{bottom:399.285600px;}
.y1ba{bottom:404.811150px;}
.y125{bottom:407.496300px;}
.y1a4{bottom:407.657400px;}
.y175{bottom:407.923200px;}
.y18a{bottom:407.925600px;}
.ycc{bottom:407.928000px;}
.y3a{bottom:407.930400px;}
.y9a{bottom:407.932800px;}
.y61{bottom:407.935200px;}
.y102{bottom:409.011750px;}
.y146{bottom:413.387100px;}
.y124{bottom:421.750050px;}
.y1a3{bottom:421.907400px;}
.y1b9{bottom:423.317400px;}
.y101{bottom:427.518000px;}
.y12{bottom:428.140350px;}
.ycb{bottom:428.175600px;}
.y39{bottom:428.178000px;}
.y1d9{bottom:428.178600px;}
.y99{bottom:428.180400px;}
.y60{bottom:428.182800px;}
.y189{bottom:428.185200px;}
.y123{bottom:436.003800px;}
.y1a2{bottom:436.157400px;}
.y1b8{bottom:437.571150px;}
.y100{bottom:441.771750px;}
.y11{bottom:448.393350px;}
.yca{bottom:448.423200px;}
.y38{bottom:448.425600px;}
.y1d8{bottom:448.426800px;}
.y98{bottom:448.428000px;}
.y5f{bottom:448.430400px;}
.y188{bottom:448.432800px;}
.y174{bottom:448.447200px;}
.y122{bottom:450.257550px;}
.y1a1{bottom:450.407400px;}
.y1b7{bottom:456.077400px;}
.yff{bottom:460.278000px;}
.y121{bottom:464.511300px;}
.y1a0{bottom:464.641350px;}
.y10{bottom:468.646350px;}
.y37{bottom:468.673200px;}
.y1d7{bottom:468.675000px;}
.y97{bottom:468.675600px;}
.y5e{bottom:468.678000px;}
.y187{bottom:468.680400px;}
.yb3{bottom:468.682800px;}
.y137{bottom:468.690000px;}
.y167{bottom:468.692400px;}
.y173{bottom:468.694800px;}
.yfe{bottom:474.531750px;}
.y1b6{bottom:474.583650px;}
.y120{bottom:478.765050px;}
.y19f{bottom:483.147600px;}
.yf{bottom:488.899350px;}
.y1d6{bottom:488.923200px;}
.y5d{bottom:488.925600px;}
.y96{bottom:488.928000px;}
.yb2{bottom:488.930400px;}
.y36{bottom:488.932800px;}
.y136{bottom:488.937600px;}
.y166{bottom:488.940000px;}
.y7d{bottom:488.942400px;}
.y11f{bottom:493.018800px;}
.yfd{bottom:493.038000px;}
.y1b5{bottom:493.089900px;}
.y19e{bottom:497.401350px;}
.yfc{bottom:507.291750px;}
.ye{bottom:509.152350px;}
.y1d5{bottom:509.173200px;}
.y5c{bottom:509.175600px;}
.yb1{bottom:509.178000px;}
.y35{bottom:509.180400px;}
.y135{bottom:509.185200px;}
.y165{bottom:509.187600px;}
.y7c{bottom:509.190000px;}
.y17b{bottom:509.197200px;}
.y11e{bottom:511.525050px;}
.y1b4{bottom:511.596150px;}
.y19d{bottom:515.907600px;}
.y11d{bottom:525.778800px;}
.yfb{bottom:525.798000px;}
.yd{bottom:529.405350px;}
.y186{bottom:529.423200px;}
.y5b{bottom:529.425600px;}
.y34{bottom:529.428000px;}
.y134{bottom:529.432800px;}
.y164{bottom:529.435200px;}
.y7b{bottom:529.437600px;}
.y17a{bottom:529.444800px;}
.y1b3{bottom:530.102400px;}
.y19c{bottom:530.161350px;}
.y11c{bottom:540.032550px;}
.yfa{bottom:540.051750px;}
.yc{bottom:549.658350px;}
.yb0{bottom:549.673200px;}
.y33{bottom:549.675600px;}
.y133{bottom:549.680400px;}
.y163{bottom:549.682800px;}
.y7a{bottom:549.685200px;}
.y179{bottom:549.692400px;}
.y5a{bottom:549.699600px;}
.y11b{bottom:554.286300px;}
.yf9{bottom:554.305500px;}
.y11a{bottom:568.540050px;}
.yb{bottom:569.911350px;}
.y19b{bottom:569.923200px;}
.y95{bottom:569.925600px;}
.y32{bottom:569.928000px;}
.y145{bottom:569.930400px;}
.y79{bottom:569.932800px;}
.y178{bottom:569.940000px;}
.y59{bottom:569.947200px;}
.yf8{bottom:572.800050px;}
.y119{bottom:587.046300px;}
.yf7{bottom:587.053800px;}
.ya{bottom:590.164350px;}
.y94{bottom:590.173200px;}
.y31{bottom:590.175600px;}
.y1d4{bottom:590.176800px;}
.y144{bottom:590.178000px;}
.y78{bottom:590.180400px;}
.yaf{bottom:590.187600px;}
.y58{bottom:590.194800px;}
.y118{bottom:601.300050px;}
.yf6{bottom:601.307550px;}
.y9{bottom:610.417350px;}
.y1d3{bottom:610.425000px;}
.y132{bottom:610.425600px;}
.y30{bottom:610.428000px;}
.yae{bottom:610.435200px;}
.y57{bottom:610.442400px;}
.y117{bottom:615.553800px;}
.yf5{bottom:619.794000px;}
.y116{bottom:629.807550px;}
.y8{bottom:630.670350px;}
.y93{bottom:630.673200px;}
.y2f{bottom:630.675600px;}
.y131{bottom:630.680400px;}
.yad{bottom:630.682800px;}
.y56{bottom:630.690000px;}
.yf4{bottom:634.047750px;}
.y115{bottom:643.945500px;}
.y92{bottom:650.923200px;}
.y7{bottom:650.923350px;}
.y77{bottom:650.925600px;}
.y130{bottom:650.928000px;}
.y2e{bottom:650.930400px;}
.y55{bottom:650.937600px;}
.y162{bottom:650.952000px;}
.yf3{bottom:652.554000px;}
.y114{bottom:662.451750px;}
.yf2{bottom:666.807750px;}
.y91{bottom:671.173200px;}
.y12f{bottom:671.175600px;}
.y2d{bottom:671.178000px;}
.y54{bottom:671.185200px;}
.y172{bottom:671.192400px;}
.y161{bottom:671.199600px;}
.y113{bottom:676.705500px;}
.yf1{bottom:681.061500px;}
.y90{bottom:691.423200px;}
.y6{bottom:691.423350px;}
.y2c{bottom:691.425600px;}
.y143{bottom:691.430400px;}
.y53{bottom:691.432800px;}
.y171{bottom:691.440000px;}
.y160{bottom:691.447200px;}
.y112{bottom:695.211750px;}
.yf0{bottom:699.555900px;}
.y111{bottom:709.465500px;}
.y185{bottom:711.673200px;}
.y2b{bottom:711.678000px;}
.y52{bottom:711.680400px;}
.yac{bottom:711.682800px;}
.y170{bottom:711.687600px;}
.y15f{bottom:711.694800px;}
.yef{bottom:713.809650px;}
.y110{bottom:723.719250px;}
.yee{bottom:728.063400px;}
.y8f{bottom:731.923200px;}
.y2a{bottom:731.925600px;}
.y51{bottom:731.928000px;}
.yab{bottom:731.930400px;}
.y16f{bottom:731.935200px;}
.y15e{bottom:731.942400px;}
.y10f{bottom:742.225500px;}
.yed{bottom:746.527350px;}
.y142{bottom:752.173200px;}
.y8e{bottom:752.175450px;}
.y50{bottom:752.175600px;}
.yaa{bottom:752.178000px;}
.y29{bottom:752.180400px;}
.y16e{bottom:752.182800px;}
.y15d{bottom:752.190000px;}
.y10e{bottom:756.479250px;}
.yec{bottom:760.781100px;}
.y10d{bottom:770.733000px;}
.y8d{bottom:772.424700px;}
.y4f{bottom:772.425600px;}
.y28{bottom:772.428000px;}
.y76{bottom:772.430400px;}
.yc9{bottom:772.435200px;}
.y15c{bottom:772.437600px;}
.yeb{bottom:775.034850px;}
.y10c{bottom:784.986750px;}
.y1d2{bottom:785.013600px;}
.y1ca{bottom:785.036100px;}
.yea{bottom:789.288600px;}
.y4{bottom:792.669600px;}
.y4e{bottom:792.673200px;}
.y8c{bottom:792.673950px;}
.y27{bottom:792.675600px;}
.y75{bottom:792.678000px;}
.yc8{bottom:792.682800px;}
.ya9{bottom:792.685200px;}
.y12e{bottom:798.671700px;}
.y10b{bottom:799.240500px;}
.y1d1{bottom:799.267350px;}
.y1c9{bottom:799.289850px;}
.y5{bottom:801.414600px;}
.ye9{bottom:803.542350px;}
.y26{bottom:812.923200px;}
.y74{bottom:812.925600px;}
.y4d{bottom:812.928000px;}
.yc7{bottom:812.930400px;}
.ya8{bottom:812.932800px;}
.y10a{bottom:813.494250px;}
.y1d0{bottom:817.773600px;}
.ye8{bottom:817.796100px;}
.y109{bottom:832.000500px;}
.y1cf{bottom:832.027350px;}
.ye7{bottom:832.049850px;}
.y73{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.y8b{bottom:833.175450px;}
.y4c{bottom:833.175600px;}
.yc6{bottom:833.178000px;}
.y25{bottom:833.180400px;}
.y108{bottom:846.254250px;}
.ye6{bottom:846.303600px;}
.y1ce{bottom:850.533600px;}
.y8a{bottom:853.424700px;}
.yc5{bottom:853.425600px;}
.y24{bottom:853.428000px;}
.y107{bottom:860.508000px;}
.y1cd{bottom:864.787350px;}
.ye5{bottom:864.809850px;}
.y89{bottom:873.673950px;}
.y23{bottom:873.675600px;}
.y106{bottom:879.014250px;}
.y1cc{bottom:879.041100px;}
.ye4{bottom:879.063600px;}
.y105{bottom:893.268000px;}
.y1cb{bottom:893.294850px;}
.ye3{bottom:893.317350px;}
.y22{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y15b{bottom:952.845000px;}
.y4b{bottom:952.912500px;}
.y21{bottom:952.953150px;}
.y1{bottom:953.019600px;}
.h2{height:35.830800px;}
.h13{height:36.315000px;}
.h2a{height:37.245600px;}
.h27{height:37.968000px;}
.hb{height:38.346000px;}
.he{height:38.352600px;}
.hd{height:38.353200px;}
.h1e{height:38.358600px;}
.h12{height:38.359200px;}
.h17{height:38.364600px;}
.hc{height:38.365200px;}
.h16{height:38.383200px;}
.h28{height:38.389200px;}
.h26{height:38.394600px;}
.hf{height:40.537200px;}
.h22{height:40.672800px;}
.h20{height:41.085000px;}
.h7{height:41.641200px;}
.h3{height:44.247600px;}
.h29{height:44.340000px;}
.h21{height:45.561600px;}
.h1b{height:45.846000px;}
.h2b{height:46.015200px;}
.h1c{height:46.441728px;}
.h6{height:47.220000px;}
.h8{height:47.883600px;}
.h2c{height:48.164400px;}
.h1a{height:48.393000px;}
.h14{height:48.400205px;}
.h1d{height:48.409805px;}
.h19{height:48.429005px;}
.h15{height:48.438605px;}
.h1f{height:48.448205px;}
.h18{height:48.457805px;}
.h11{height:48.467405px;}
.h9{height:48.477005px;}
.h10{height:48.486605px;}
.ha{height:48.496205px;}
.h25{height:51.493200px;}
.h5{height:55.338360px;}
.h23{height:55.875600px;}
.h24{height:75.378000px;}
.h4{height:82.635000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x10{left:87.453600px;}
.xa{left:89.295488px;}
.xf{left:92.055150px;}
.x4{left:93.543300px;}
.x7{left:97.795350px;}
.x3{left:99.921270px;}
.x9{left:106.299150px;}
.x8{left:119.059695px;}
.x5{left:128.573400px;}
.xe{left:145.215750px;}
.x6{left:188.012700px;}
.xc{left:359.289187px;}
.xb{left:372.045900px;}
.xd{left:455.796450px;}
.x2{left:498.390900px;}
@media print{
.v2{vertical-align:-16.694400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.668800pt;}
.ls4{letter-spacing:-2.016000pt;}
.lsb{letter-spacing:-2.000000pt;}
.ls15{letter-spacing:-1.082667pt;}
.lsa{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.800000pt;}
.ls9{letter-spacing:-0.522667pt;}
.ls1c{letter-spacing:-0.224000pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls3{letter-spacing:-0.149333pt;}
.ls14{letter-spacing:-0.100267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000333pt;}
.ls8{letter-spacing:0.197333pt;}
.ls1b{letter-spacing:1.400000pt;}
.lsc{letter-spacing:1.880000pt;}
.ls11{letter-spacing:3.098667pt;}
.ls17{letter-spacing:8.474667pt;}
.ls18{letter-spacing:8.512000pt;}
.ls1a{letter-spacing:8.810667pt;}
.ls10{letter-spacing:8.922667pt;}
.ls16{letter-spacing:10.640000pt;}
.ls13{letter-spacing:11.013333pt;}
.lsf{letter-spacing:29.269333pt;}
.ls12{letter-spacing:34.757333pt;}
.ls7{letter-spacing:36.367285pt;}
.ls19{letter-spacing:36.843333pt;}
.ls6{letter-spacing:56.377732pt;}
.ls0{letter-spacing:1875.668027pt;}
.lse{letter-spacing:1917.087222pt;}
.ws4{word-spacing:-37.333333pt;}
.ws1d{word-spacing:-14.839467pt;}
.ws73{word-spacing:-14.208000pt;}
.ws10c{word-spacing:-12.533333pt;}
.wsbf{word-spacing:-11.880000pt;}
.ws19c{word-spacing:-11.400000pt;}
.ws19d{word-spacing:-11.200000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws10f{word-spacing:-10.026667pt;}
.wsa2{word-spacing:-10.000000pt;}
.ws74{word-spacing:-9.333333pt;}
.wsc0{word-spacing:-9.200000pt;}
.ws5{word-spacing:-9.184000pt;}
.wsc1{word-spacing:-8.960000pt;}
.ws8b{word-spacing:-8.437333pt;}
.ws140{word-spacing:-8.250667pt;}
.wsbe{word-spacing:-8.000000pt;}
.ws3f{word-spacing:-7.893333pt;}
.ws0{word-spacing:-7.696000pt;}
.ws3{word-spacing:-7.466667pt;}
.ws1e{word-spacing:-7.317333pt;}
.ws19b{word-spacing:-7.120000pt;}
.ws112{word-spacing:-6.567467pt;}
.ws2{word-spacing:-5.845547pt;}
.wsb5{word-spacing:-5.720000pt;}
.ws14d{word-spacing:-5.564800pt;}
.ws14f{word-spacing:-5.514667pt;}
.wsb6{word-spacing:-5.320000pt;}
.wsfc{word-spacing:-4.762667pt;}
.wsb7{word-spacing:-4.200000pt;}
.ws12a{word-spacing:-3.760000pt;}
.ws15b{word-spacing:-3.559467pt;}
.ws196{word-spacing:-3.520000pt;}
.wsff{word-spacing:-3.509333pt;}
.ws8f{word-spacing:-2.857600pt;}
.wsa9{word-spacing:-2.757333pt;}
.ws50{word-spacing:-2.707200pt;}
.ws180{word-spacing:-2.576000pt;}
.ws92{word-spacing:-2.556800pt;}
.ws61{word-spacing:-2.506667pt;}
.ws108{word-spacing:-2.456533pt;}
.ws45{word-spacing:-2.356267pt;}
.wsf7{word-spacing:-2.320000pt;}
.wse4{word-spacing:-2.280000pt;}
.ws65{word-spacing:-2.256000pt;}
.ws42{word-spacing:-2.155733pt;}
.ws34{word-spacing:-2.105600pt;}
.ws162{word-spacing:-2.055467pt;}
.ws77{word-spacing:-1.976000pt;}
.ws7d{word-spacing:-1.824000pt;}
.wse5{word-spacing:-1.800000pt;}
.ws9{word-spacing:-1.788800pt;}
.wsb4{word-spacing:-1.760000pt;}
.ws63{word-spacing:-1.754667pt;}
.ws132{word-spacing:-1.704533pt;}
.wsf3{word-spacing:-1.680000pt;}
.ws49{word-spacing:-1.654400pt;}
.ws97{word-spacing:-1.604267pt;}
.wsef{word-spacing:-1.600000pt;}
.ws90{word-spacing:-1.554133pt;}
.ws93{word-spacing:-1.504000pt;}
.ws17a{word-spacing:-1.493333pt;}
.ws17f{word-spacing:-1.456000pt;}
.ws47{word-spacing:-1.453867pt;}
.ws78{word-spacing:-1.418667pt;}
.ws18{word-spacing:-1.403733pt;}
.wsc2{word-spacing:-1.320000pt;}
.ws6f{word-spacing:-1.303467pt;}
.ws6c{word-spacing:-1.253333pt;}
.wsd1{word-spacing:-1.240000pt;}
.ws43{word-spacing:-1.203200pt;}
.wsae{word-spacing:-1.194667pt;}
.ws15{word-spacing:-1.153067pt;}
.wsea{word-spacing:-1.120000pt;}
.wsac{word-spacing:-1.102933pt;}
.ws8{word-spacing:-1.100800pt;}
.wsd3{word-spacing:-1.040000pt;}
.ws145{word-spacing:-1.002667pt;}
.ws72{word-spacing:-0.933333pt;}
.wsc3{word-spacing:-0.920000pt;}
.ws4c{word-spacing:-0.902400pt;}
.wsd{word-spacing:-0.871467pt;}
.wsd9{word-spacing:-0.840000pt;}
.wsd2{word-spacing:-0.760000pt;}
.ws2f{word-spacing:-0.752000pt;}
.wsf1{word-spacing:-0.720000pt;}
.ws174{word-spacing:-0.701867pt;}
.ws98{word-spacing:-0.651733pt;}
.wsa{word-spacing:-0.642133pt;}
.ws1a9{word-spacing:-0.627200pt;}
.ws20{word-spacing:-0.601600pt;}
.wse7{word-spacing:-0.600000pt;}
.wsb9{word-spacing:-0.560000pt;}
.ws1ab{word-spacing:-0.537600pt;}
.wse3{word-spacing:-0.480000pt;}
.ws66{word-spacing:-0.451200pt;}
.wsf6{word-spacing:-0.400000pt;}
.ws1f{word-spacing:-0.394667pt;}
.ws3c{word-spacing:-0.373333pt;}
.wsf8{word-spacing:-0.358400pt;}
.ws33{word-spacing:-0.350933pt;}
.ws2c{word-spacing:-0.300800pt;}
.ws10b{word-spacing:-0.298667pt;}
.ws2a{word-spacing:-0.250667pt;}
.ws7c{word-spacing:-0.240000pt;}
.wsb{word-spacing:-0.229333pt;}
.wsdb{word-spacing:-0.200000pt;}
.ws84{word-spacing:-0.150400pt;}
.ws13f{word-spacing:-0.149333pt;}
.ws4f{word-spacing:-0.100267pt;}
.wsc{word-spacing:-0.045867pt;}
.ws6{word-spacing:0.000000pt;}
.ws62{word-spacing:0.050133pt;}
.ws6b{word-spacing:0.100267pt;}
.ws1b{word-spacing:0.149333pt;}
.ws8c{word-spacing:0.150400pt;}
.wsda{word-spacing:0.200000pt;}
.ws2d{word-spacing:0.200533pt;}
.ws5d{word-spacing:0.261333pt;}
.ws7f{word-spacing:0.300800pt;}
.ws51{word-spacing:0.451200pt;}
.ws10{word-spacing:0.458667pt;}
.ws18f{word-spacing:0.480000pt;}
.ws9d{word-spacing:0.485333pt;}
.ws36{word-spacing:0.501333pt;}
.ws3d{word-spacing:0.522667pt;}
.ws41{word-spacing:0.601600pt;}
.ws37{word-spacing:0.651733pt;}
.ws87{word-spacing:0.672000pt;}
.wsf4{word-spacing:0.680000pt;}
.ws5b{word-spacing:0.709333pt;}
.ws9e{word-spacing:0.746667pt;}
.ws52{word-spacing:0.752000pt;}
.ws89{word-spacing:0.784000pt;}
.wsa7{word-spacing:0.852267pt;}
.wsaf{word-spacing:0.858667pt;}
.ws19{word-spacing:0.896000pt;}
.ws8a{word-spacing:0.933333pt;}
.ws5a{word-spacing:1.008000pt;}
.ws31{word-spacing:1.052800pt;}
.ws86{word-spacing:1.153067pt;}
.ws123{word-spacing:1.157333pt;}
.ws48{word-spacing:1.203200pt;}
.ws30{word-spacing:1.253333pt;}
.ws6a{word-spacing:1.303467pt;}
.wsb3{word-spacing:1.320000pt;}
.ws7e{word-spacing:1.353600pt;}
.wsbd{word-spacing:1.400000pt;}
.ws91{word-spacing:1.403733pt;}
.ws177{word-spacing:1.418667pt;}
.ws96{word-spacing:1.453867pt;}
.wsad{word-spacing:1.504000pt;}
.ws58{word-spacing:1.530667pt;}
.wsd8{word-spacing:1.600000pt;}
.ws80{word-spacing:1.604267pt;}
.ws76{word-spacing:1.621333pt;}
.ws110{word-spacing:1.654400pt;}
.ws7b{word-spacing:1.680000pt;}
.ws12{word-spacing:1.704533pt;}
.ws9b{word-spacing:1.717333pt;}
.wsd5{word-spacing:1.720000pt;}
.ws1a{word-spacing:1.792000pt;}
.ws64{word-spacing:1.804800pt;}
.ws179{word-spacing:1.829333pt;}
.ws14{word-spacing:1.854933pt;}
.wsb0{word-spacing:1.866667pt;}
.wsbc{word-spacing:1.880000pt;}
.ws11{word-spacing:1.972267pt;}
.ws7a{word-spacing:1.976000pt;}
.ws106{word-spacing:2.055467pt;}
.ws7{word-spacing:2.064000pt;}
.wscd{word-spacing:2.080000pt;}
.ws4b{word-spacing:2.105600pt;}
.wsd4{word-spacing:2.120000pt;}
.wse9{word-spacing:2.160000pt;}
.ws99{word-spacing:2.165333pt;}
.wsc7{word-spacing:2.200000pt;}
.ws25{word-spacing:2.205867pt;}
.ws9f{word-spacing:2.240000pt;}
.ws88{word-spacing:2.277333pt;}
.ws2e{word-spacing:2.306133pt;}
.ws44{word-spacing:2.356267pt;}
.ws69{word-spacing:2.406400pt;}
.ws17b{word-spacing:2.426667pt;}
.wsd7{word-spacing:2.440000pt;}
.ws38{word-spacing:2.456533pt;}
.ws6e{word-spacing:2.506667pt;}
.wsc4{word-spacing:2.520000pt;}
.ws9a{word-spacing:2.538667pt;}
.wsa1{word-spacing:2.613333pt;}
.ws94{word-spacing:2.657067pt;}
.ws183{word-spacing:2.757333pt;}
.ws9c{word-spacing:2.800000pt;}
.ws59{word-spacing:2.874667pt;}
.ws127{word-spacing:2.907733pt;}
.ws67{word-spacing:2.957867pt;}
.ws53{word-spacing:3.008000pt;}
.ws3e{word-spacing:3.024000pt;}
.wsb2{word-spacing:3.040000pt;}
.ws57{word-spacing:3.061333pt;}
.wsa0{word-spacing:3.098667pt;}
.ws28{word-spacing:3.108267pt;}
.ws79{word-spacing:3.141333pt;}
.ws5e{word-spacing:3.210667pt;}
.ws11b{word-spacing:3.248000pt;}
.ws147{word-spacing:3.308800pt;}
.wseb{word-spacing:3.360000pt;}
.ws160{word-spacing:3.409067pt;}
.wsc6{word-spacing:3.480000pt;}
.ws83{word-spacing:3.509333pt;}
.ws39{word-spacing:3.546667pt;}
.ws21{word-spacing:3.559467pt;}
.wsb8{word-spacing:3.560000pt;}
.wsfe{word-spacing:3.609600pt;}
.wsa8{word-spacing:3.659733pt;}
.ws35{word-spacing:3.709867pt;}
.ws1aa{word-spacing:3.718400pt;}
.ws82{word-spacing:3.860267pt;}
.wse{word-spacing:3.898667pt;}
.ws95{word-spacing:3.910400pt;}
.ws120{word-spacing:3.994667pt;}
.wsc5{word-spacing:4.000000pt;}
.ws16{word-spacing:4.010667pt;}
.ws11f{word-spacing:4.032000pt;}
.ws121{word-spacing:4.106667pt;}
.ws46{word-spacing:4.110933pt;}
.ws11e{word-spacing:4.144000pt;}
.ws54{word-spacing:4.161067pt;}
.ws68{word-spacing:4.211200pt;}
.ws146{word-spacing:4.311467pt;}
.ws13b{word-spacing:4.361600pt;}
.wsed{word-spacing:4.600000pt;}
.ws8e{word-spacing:4.612267pt;}
.ws12f{word-spacing:4.662400pt;}
.ws3a{word-spacing:4.666667pt;}
.ws56{word-spacing:4.712533pt;}
.ws4d{word-spacing:4.762667pt;}
.ws71{word-spacing:4.862933pt;}
.wsf5{word-spacing:4.880000pt;}
.ws8d{word-spacing:4.913067pt;}
.ws4a{word-spacing:4.963200pt;}
.ws3b{word-spacing:5.040000pt;}
.ws152{word-spacing:5.063467pt;}
.wsf{word-spacing:5.182933pt;}
.ws105{word-spacing:5.264000pt;}
.ws13{word-spacing:5.314133pt;}
.ws18b{word-spacing:5.320000pt;}
.ws26{word-spacing:5.364267pt;}
.wsa4{word-spacing:5.464533pt;}
.ws32{word-spacing:5.564800pt;}
.wsca{word-spacing:5.600000pt;}
.wsa6{word-spacing:5.665067pt;}
.ws17d{word-spacing:5.674667pt;}
.wsaa{word-spacing:5.715200pt;}
.ws118{word-spacing:5.765333pt;}
.ws5c{word-spacing:5.786667pt;}
.wsba{word-spacing:5.800000pt;}
.wsd6{word-spacing:5.840000pt;}
.ws178{word-spacing:5.861333pt;}
.ws55{word-spacing:5.865600pt;}
.ws4e{word-spacing:5.965867pt;}
.wsdf{word-spacing:6.040000pt;}
.ws81{word-spacing:6.066133pt;}
.ws24{word-spacing:6.116267pt;}
.ws12d{word-spacing:6.216533pt;}
.ws17c{word-spacing:6.234667pt;}
.ws190{word-spacing:6.240000pt;}
.ws60{word-spacing:6.366933pt;}
.ws13c{word-spacing:6.417067pt;}
.wsa5{word-spacing:6.517333pt;}
.ws17{word-spacing:6.667733pt;}
.ws125{word-spacing:6.682667pt;}
.ws22{word-spacing:6.717867pt;}
.ws124{word-spacing:6.720000pt;}
.wsab{word-spacing:6.868267pt;}
.ws70{word-spacing:6.918400pt;}
.wsec{word-spacing:7.000000pt;}
.ws1a0{word-spacing:7.040000pt;}
.ws173{word-spacing:7.068800pt;}
.ws6d{word-spacing:7.118933pt;}
.wse1{word-spacing:7.160000pt;}
.ws141{word-spacing:7.269333pt;}
.ws182{word-spacing:7.369600pt;}
.ws116{word-spacing:7.469867pt;}
.wsc9{word-spacing:7.520000pt;}
.ws5f{word-spacing:7.670400pt;}
.wsf0{word-spacing:7.680000pt;}
.ws29{word-spacing:7.820800pt;}
.ws15e{word-spacing:7.870933pt;}
.ws27{word-spacing:7.921067pt;}
.ws13a{word-spacing:7.971200pt;}
.wse8{word-spacing:8.040000pt;}
.ws23{word-spacing:8.272000pt;}
.wsf2{word-spacing:8.280000pt;}
.ws1a4{word-spacing:8.320000pt;}
.ws12e{word-spacing:8.322133pt;}
.ws2b{word-spacing:8.522667pt;}
.ws85{word-spacing:8.572800pt;}
.wsee{word-spacing:8.600000pt;}
.ws186{word-spacing:8.673067pt;}
.ws107{word-spacing:8.723200pt;}
.wsce{word-spacing:8.800000pt;}
.ws135{word-spacing:8.823467pt;}
.ws154{word-spacing:8.923733pt;}
.ws176{word-spacing:8.960000pt;}
.ws11a{word-spacing:9.072000pt;}
.ws161{word-spacing:9.074133pt;}
.wscf{word-spacing:9.160000pt;}
.wse6{word-spacing:9.200000pt;}
.ws1a8{word-spacing:9.273600pt;}
.wsdd{word-spacing:9.320000pt;}
.ws144{word-spacing:9.324800pt;}
.ws184{word-spacing:9.425067pt;}
.ws115{word-spacing:9.475200pt;}
.ws1a1{word-spacing:9.520000pt;}
.ws142{word-spacing:9.675733pt;}
.wsdc{word-spacing:9.720000pt;}
.ws16f{word-spacing:9.776000pt;}
.ws10d{word-spacing:9.926400pt;}
.wsfb{word-spacing:10.026667pt;}
.ws18d{word-spacing:10.400000pt;}
.wse2{word-spacing:10.480000pt;}
.ws14a{word-spacing:10.578133pt;}
.ws114{word-spacing:10.678400pt;}
.wse0{word-spacing:10.840000pt;}
.ws165{word-spacing:10.929067pt;}
.ws11d{word-spacing:11.162667pt;}
.ws113{word-spacing:11.530667pt;}
.ws18e{word-spacing:11.640000pt;}
.ws199{word-spacing:11.880000pt;}
.wsb1{word-spacing:12.160000pt;}
.ws13d{word-spacing:12.182400pt;}
.wsfa{word-spacing:12.282667pt;}
.ws157{word-spacing:12.433067pt;}
.ws14b{word-spacing:12.683733pt;}
.ws16c{word-spacing:13.034667pt;}
.ws13e{word-spacing:13.134933pt;}
.ws139{word-spacing:13.385600pt;}
.ws169{word-spacing:13.586133pt;}
.wsbb{word-spacing:13.680000pt;}
.ws193{word-spacing:13.840000pt;}
.wsc8{word-spacing:13.880000pt;}
.ws136{word-spacing:14.187733pt;}
.ws133{word-spacing:14.288000pt;}
.ws172{word-spacing:14.338133pt;}
.ws101{word-spacing:14.538667pt;}
.ws155{word-spacing:14.689067pt;}
.ws100{word-spacing:15.140267pt;}
.wsd0{word-spacing:15.280000pt;}
.ws19e{word-spacing:15.320000pt;}
.ws15a{word-spacing:15.792000pt;}
.ws131{word-spacing:15.842133pt;}
.ws164{word-spacing:15.942400pt;}
.ws102{word-spacing:15.992533pt;}
.wsde{word-spacing:16.120000pt;}
.ws129{word-spacing:16.343467pt;}
.ws130{word-spacing:16.794667pt;}
.ws166{word-spacing:16.844800pt;}
.ws117{word-spacing:16.894933pt;}
.ws163{word-spacing:17.346133pt;}
.ws122{word-spacing:17.733333pt;}
.ws15f{word-spacing:18.649600pt;}
.ws137{word-spacing:18.800000pt;}
.ws17e{word-spacing:18.890667pt;}
.ws119{word-spacing:19.100800pt;}
.ws150{word-spacing:19.552000pt;}
.ws156{word-spacing:19.902933pt;}
.ws10e{word-spacing:20.003200pt;}
.ws111{word-spacing:20.153600pt;}
.ws187{word-spacing:20.160000pt;}
.ws103{word-spacing:20.604800pt;}
.ws109{word-spacing:21.056000pt;}
.ws159{word-spacing:21.156267pt;}
.ws18a{word-spacing:21.360000pt;}
.ws16b{word-spacing:22.158933pt;}
.ws167{word-spacing:22.459733pt;}
.wsfd{word-spacing:22.560000pt;}
.ws18c{word-spacing:22.760000pt;}
.ws175{word-spacing:23.713067pt;}
.ws16a{word-spacing:24.013867pt;}
.ws148{word-spacing:24.515200pt;}
.ws14c{word-spacing:25.367467pt;}
.wscb{word-spacing:25.560000pt;}
.ws15d{word-spacing:25.618133pt;}
.ws12b{word-spacing:25.818667pt;}
.ws14e{word-spacing:26.871467pt;}
.wscc{word-spacing:27.960000pt;}
.ws189{word-spacing:28.400000pt;}
.ws16e{word-spacing:28.475733pt;}
.ws10a{word-spacing:29.418667pt;}
.ws143{word-spacing:31.283200pt;}
.wsf9{word-spacing:31.684267pt;}
.ws1a3{word-spacing:32.120000pt;}
.ws171{word-spacing:33.388800pt;}
.ws158{word-spacing:33.489067pt;}
.ws12c{word-spacing:33.589333pt;}
.ws16d{word-spacing:34.140800pt;}
.ws11c{word-spacing:34.906667pt;}
.ws194{word-spacing:37.160000pt;}
.ws185{word-spacing:37.399467pt;}
.ws168{word-spacing:37.800533pt;}
.ws195{word-spacing:37.960000pt;}
.ws134{word-spacing:38.151467pt;}
.ws128{word-spacing:39.655467pt;}
.ws151{word-spacing:39.906133pt;}
.ws149{word-spacing:41.109333pt;}
.ws1a7{word-spacing:42.112000pt;}
.ws198{word-spacing:42.160000pt;}
.ws15c{word-spacing:42.162133pt;}
.ws1a5{word-spacing:42.800000pt;}
.ws1a2{word-spacing:43.600000pt;}
.ws104{word-spacing:44.919467pt;}
.ws19a{word-spacing:48.120000pt;}
.ws138{word-spacing:48.328533pt;}
.ws188{word-spacing:48.480000pt;}
.ws170{word-spacing:48.529067pt;}
.ws197{word-spacing:52.720000pt;}
.ws1c{word-spacing:58.389333pt;}
.ws1a6{word-spacing:64.556800pt;}
.ws19f{word-spacing:79.920000pt;}
.ws191{word-spacing:88.840000pt;}
.ws192{word-spacing:140.240000pt;}
.ws153{word-spacing:253.080000pt;}
.ws181{word-spacing:253.360000pt;}
.ws126{word-spacing:255.840000pt;}
.ws40{word-spacing:293.880000pt;}
.ws75{word-spacing:294.160000pt;}
.wsa3{word-spacing:294.960000pt;}
._13{margin-left:-295.152707pt;}
._a{margin-left:-294.050122pt;}
._17{margin-left:-255.858440pt;}
._19{margin-left:-253.073191pt;}
._1a{margin-left:-23.756693pt;}
._1e{margin-left:-18.222933pt;}
._14{margin-left:-10.198293pt;}
._1b{margin-left:-8.302293pt;}
._7{margin-left:-6.830293pt;}
._3{margin-left:-5.092800pt;}
._4{margin-left:-3.509333pt;}
._5{margin-left:-2.522667pt;}
._6{margin-left:-1.441707pt;}
._0{width:1.341867pt;}
._1{width:2.992000pt;}
._2{width:4.106667pt;}
._1d{width:5.600000pt;}
._f{width:6.687891pt;}
._1c{width:8.049707pt;}
._e{width:10.336000pt;}
._10{width:11.450558pt;}
._16{width:29.115601pt;}
._c{width:33.447863pt;}
._12{width:34.346447pt;}
._11{width:35.574268pt;}
._b{width:36.511780pt;}
._d{width:37.445113pt;}
._15{width:43.503127pt;}
._18{width:52.066395pt;}
._8{width:55.477113pt;}
._9{width:56.369045pt;}
.fsc{font-size:27.984000pt;}
.fs7{font-size:29.227733pt;}
.fs8{font-size:37.333333pt;}
.fs0{font-size:39.466667pt;}
.fs9{font-size:40.000000pt;}
.fsd{font-size:44.800000pt;}
.fs5{font-size:45.866667pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:50.133333pt;}
.fsa{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs3{font-size:54.413333pt;}
.fse{font-size:90.666667pt;}
.fs2{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:58.104933pt;}
.yc4{bottom:92.590267pt;}
.y4a{bottom:92.595600pt;}
.y15a{bottom:92.595733pt;}
.y72{bottom:92.596933pt;}
.y1f{bottom:92.597067pt;}
.y88{bottom:92.598533pt;}
.y159{bottom:105.130400pt;}
.yc3{bottom:108.148933pt;}
.yd2{bottom:108.152667pt;}
.y177{bottom:108.154000pt;}
.y1e{bottom:108.154133pt;}
.y49{bottom:108.154267pt;}
.y71{bottom:108.155600pt;}
.y158{bottom:117.654267pt;}
.yc2{bottom:120.683600pt;}
.y48{bottom:120.687333pt;}
.y19a{bottom:123.703067pt;}
.y1d{bottom:123.708533pt;}
.ya7{bottom:123.709733pt;}
.y184{bottom:123.711067pt;}
.yd1{bottom:123.711333pt;}
.y70{bottom:123.712667pt;}
.y157{bottom:133.212933pt;}
.yc1{bottom:133.218267pt;}
.yd0{bottom:136.243067pt;}
.y141{bottom:136.244400pt;}
.y47{bottom:136.244533pt;}
.y199{bottom:139.261733pt;}
.y6f{bottom:139.265600pt;}
.y87{bottom:139.266800pt;}
.y1c{bottom:139.267200pt;}
.y183{bottom:139.268133pt;}
.ya6{bottom:139.268400pt;}
.y156{bottom:145.747600pt;}
.yc0{bottom:145.752933pt;}
.y12d{bottom:146.598400pt;}
.y198{bottom:151.796400pt;}
.ya5{bottom:151.800267pt;}
.y140{bottom:151.801467pt;}
.y46{bottom:151.801600pt;}
.ycf{bottom:151.801733pt;}
.y1b{bottom:151.801867pt;}
.y182{bottom:154.822667pt;}
.y6e{bottom:154.824267pt;}
.y86{bottom:154.825467pt;}
.y155{bottom:158.282267pt;}
.ybf{bottom:158.287600pt;}
.y1c8{bottom:163.662133pt;}
.y197{bottom:164.331067pt;}
.yce{bottom:164.334933pt;}
.y1a{bottom:164.336533pt;}
.y1b2{bottom:166.082133pt;}
.y45{bottom:167.357333pt;}
.y13f{bottom:167.358667pt;}
.y6d{bottom:167.358933pt;}
.y85{bottom:167.360133pt;}
.y181{bottom:170.381333pt;}
.y154{bottom:170.816933pt;}
.ybe{bottom:170.822267pt;}
.y1c7{bottom:176.332133pt;}
.y196{bottom:176.865733pt;}
.y1b1{bottom:178.752133pt;}
.y6c{bottom:179.885333pt;}
.ya4{bottom:179.893600pt;}
.y12c{bottom:182.598400pt;}
.y12b{bottom:182.600000pt;}
.y44{bottom:182.916000pt;}
.y13e{bottom:182.917333pt;}
.ybd{bottom:183.347333pt;}
.y153{bottom:183.351600pt;}
.y1c6{bottom:189.002133pt;}
.y195{bottom:189.400400pt;}
.ya3{bottom:192.424000pt;}
.y1b0{bottom:195.202133pt;}
.y6b{bottom:195.444000pt;}
.y43{bottom:195.449067pt;}
.y152{bottom:195.886267pt;}
.ybc{bottom:198.906000pt;}
.y12a{bottom:200.598400pt;}
.y19{bottom:200.602800pt;}
.y194{bottom:201.935067pt;}
.y1c5{bottom:205.452133pt;}
.y1af{bottom:207.872133pt;}
.y6a{bottom:207.978667pt;}
.ya2{bottom:207.982667pt;}
.y151{bottom:208.420933pt;}
.y42{bottom:211.004800pt;}
.y180{bottom:211.007733pt;}
.ybb{bottom:211.440667pt;}
.y193{bottom:214.469733pt;}
.ye2{bottom:214.490267pt;}
.yda{bottom:214.510267pt;}
.y1c4{bottom:218.122133pt;}
.y129{bottom:218.598400pt;}
.y13d{bottom:218.600533pt;}
.y18{bottom:218.600667pt;}
.y16d{bottom:218.604800pt;}
.y69{bottom:220.513333pt;}
.ya1{bottom:220.517333pt;}
.y150{bottom:220.954000pt;}
.yba{bottom:223.975333pt;}
.y1ae{bottom:224.322133pt;}
.y41{bottom:226.563467pt;}
.ye1{bottom:227.160267pt;}
.yd9{bottom:227.180267pt;}
.y192{bottom:230.018933pt;}
.y68{bottom:233.048000pt;}
.y1c3{bottom:234.572133pt;}
.y14f{bottom:236.509733pt;}
.yb9{bottom:236.510000pt;}
.y17{bottom:236.600667pt;}
.y16c{bottom:236.602667pt;}
.y13c{bottom:236.604800pt;}
.y84{bottom:236.619733pt;}
.y1ad{bottom:236.992133pt;}
.y40{bottom:239.096533pt;}
.ye0{bottom:239.830267pt;}
.yd8{bottom:239.850267pt;}
.y191{bottom:242.553600pt;}
.y67{bottom:245.582667pt;}
.y1c2{bottom:247.238800pt;}
.yb8{bottom:249.044667pt;}
.y14e{bottom:252.068400pt;}
.y1ac{bottom:253.442133pt;}
.y128{bottom:254.598400pt;}
.y16b{bottom:254.600533pt;}
.y13b{bottom:254.602667pt;}
.y16{bottom:254.604933pt;}
.y83{bottom:254.617600pt;}
.ya0{bottom:254.619733pt;}
.y3f{bottom:254.655200pt;}
.y190{bottom:255.088267pt;}
.ydf{bottom:256.280267pt;}
.yd7{bottom:256.300267pt;}
.y66{bottom:258.117333pt;}
.y1c1{bottom:259.905467pt;}
.yb7{bottom:261.579333pt;}
.y14d{bottom:264.600133pt;}
.y1ab{bottom:266.112133pt;}
.y18f{bottom:267.622933pt;}
.yde{bottom:268.950267pt;}
.yd6{bottom:268.970267pt;}
.y65{bottom:270.649067pt;}
.y1c0{bottom:272.472133pt;}
.y16a{bottom:272.598400pt;}
.y13a{bottom:272.600533pt;}
.y15{bottom:272.602800pt;}
.y17f{bottom:272.606933pt;}
.y82{bottom:272.615467pt;}
.y9f{bottom:272.617600pt;}
.yb6{bottom:274.112667pt;}
.y1aa{bottom:278.782133pt;}
.y18e{bottom:280.157600pt;}
.y14c{bottom:280.158800pt;}
.ydd{bottom:285.400267pt;}
.yd5{bottom:285.409733pt;}
.y64{bottom:286.207733pt;}
.y1bf{bottom:288.922133pt;}
.yb5{bottom:289.668267pt;}
.y176{bottom:290.598400pt;}
.y14{bottom:290.600667pt;}
.y3e{bottom:290.602667pt;}
.y17e{bottom:290.604800pt;}
.y169{bottom:290.606933pt;}
.y81{bottom:290.613333pt;}
.y9e{bottom:290.615467pt;}
.y1a9{bottom:291.452133pt;}
.y14b{bottom:292.691867pt;}
.y18d{bottom:292.692267pt;}
.ydc{bottom:298.070267pt;}
.yd4{bottom:298.079733pt;}
.y1be{bottom:301.592133pt;}
.y1a8{bottom:304.122133pt;}
.y18c{bottom:305.225333pt;}
.yb4{bottom:305.226933pt;}
.y14a{bottom:308.249067pt;}
.y13{bottom:308.598533pt;}
.y3d{bottom:308.600533pt;}
.y17d{bottom:308.602667pt;}
.y168{bottom:308.604800pt;}
.y80{bottom:308.611200pt;}
.y9d{bottom:308.613333pt;}
.ydb{bottom:310.740267pt;}
.yd3{bottom:310.749733pt;}
.y1a7{bottom:316.792133pt;}
.y1bd{bottom:318.042133pt;}
.y18b{bottom:320.784000pt;}
.y149{bottom:323.806133pt;}
.y17c{bottom:326.600533pt;}
.y3c{bottom:326.602667pt;}
.y139{bottom:326.606933pt;}
.y7f{bottom:326.609067pt;}
.y9c{bottom:326.611200pt;}
.y63{bottom:326.613333pt;}
.y1bc{bottom:330.712133pt;}
.y1a6{bottom:333.242133pt;}
.y104{bottom:334.446000pt;}
.y127{bottom:336.878933pt;}
.y148{bottom:339.361867pt;}
.ycd{bottom:344.598400pt;}
.y3b{bottom:344.600533pt;}
.y138{bottom:344.604800pt;}
.y7e{bottom:344.606933pt;}
.y9b{bottom:344.609067pt;}
.y62{bottom:344.611200pt;}
.y1a5{bottom:345.912133pt;}
.y103{bottom:347.116000pt;}
.y1bb{bottom:347.162133pt;}
.y126{bottom:349.548933pt;}
.y147{bottom:354.920533pt;}
.y1ba{bottom:359.832133pt;}
.y125{bottom:362.218933pt;}
.y1a4{bottom:362.362133pt;}
.y175{bottom:362.598400pt;}
.y18a{bottom:362.600533pt;}
.ycc{bottom:362.602667pt;}
.y3a{bottom:362.604800pt;}
.y9a{bottom:362.606933pt;}
.y61{bottom:362.609067pt;}
.y102{bottom:363.566000pt;}
.y146{bottom:367.455200pt;}
.y124{bottom:374.888933pt;}
.y1a3{bottom:375.028800pt;}
.y1b9{bottom:376.282133pt;}
.y101{bottom:380.016000pt;}
.y12{bottom:380.569200pt;}
.ycb{bottom:380.600533pt;}
.y39{bottom:380.602667pt;}
.y1d9{bottom:380.603200pt;}
.y99{bottom:380.604800pt;}
.y60{bottom:380.606933pt;}
.y189{bottom:380.609067pt;}
.y123{bottom:387.558933pt;}
.y1a2{bottom:387.695467pt;}
.y1b8{bottom:388.952133pt;}
.y100{bottom:392.686000pt;}
.y11{bottom:398.571867pt;}
.yca{bottom:398.598400pt;}
.y38{bottom:398.600533pt;}
.y1d8{bottom:398.601600pt;}
.y98{bottom:398.602667pt;}
.y5f{bottom:398.604800pt;}
.y188{bottom:398.606933pt;}
.y174{bottom:398.619733pt;}
.y122{bottom:400.228933pt;}
.y1a1{bottom:400.362133pt;}
.y1b7{bottom:405.402133pt;}
.yff{bottom:409.136000pt;}
.y121{bottom:412.898933pt;}
.y1a0{bottom:413.014533pt;}
.y10{bottom:416.574533pt;}
.y37{bottom:416.598400pt;}
.y1d7{bottom:416.600000pt;}
.y97{bottom:416.600533pt;}
.y5e{bottom:416.602667pt;}
.y187{bottom:416.604800pt;}
.yb3{bottom:416.606933pt;}
.y137{bottom:416.613333pt;}
.y167{bottom:416.615467pt;}
.y173{bottom:416.617600pt;}
.yfe{bottom:421.806000pt;}
.y1b6{bottom:421.852133pt;}
.y120{bottom:425.568933pt;}
.y19f{bottom:429.464533pt;}
.yf{bottom:434.577200pt;}
.y1d6{bottom:434.598400pt;}
.y5d{bottom:434.600533pt;}
.y96{bottom:434.602667pt;}
.yb2{bottom:434.604800pt;}
.y36{bottom:434.606933pt;}
.y136{bottom:434.611200pt;}
.y166{bottom:434.613333pt;}
.y7d{bottom:434.615467pt;}
.y11f{bottom:438.238933pt;}
.yfd{bottom:438.256000pt;}
.y1b5{bottom:438.302133pt;}
.y19e{bottom:442.134533pt;}
.yfc{bottom:450.926000pt;}
.ye{bottom:452.579867pt;}
.y1d5{bottom:452.598400pt;}
.y5c{bottom:452.600533pt;}
.yb1{bottom:452.602667pt;}
.y35{bottom:452.604800pt;}
.y135{bottom:452.609067pt;}
.y165{bottom:452.611200pt;}
.y7c{bottom:452.613333pt;}
.y17b{bottom:452.619733pt;}
.y11e{bottom:454.688933pt;}
.y1b4{bottom:454.752133pt;}
.y19d{bottom:458.584533pt;}
.y11d{bottom:467.358933pt;}
.yfb{bottom:467.376000pt;}
.yd{bottom:470.582533pt;}
.y186{bottom:470.598400pt;}
.y5b{bottom:470.600533pt;}
.y34{bottom:470.602667pt;}
.y134{bottom:470.606933pt;}
.y164{bottom:470.609067pt;}
.y7b{bottom:470.611200pt;}
.y17a{bottom:470.617600pt;}
.y1b3{bottom:471.202133pt;}
.y19c{bottom:471.254533pt;}
.y11c{bottom:480.028933pt;}
.yfa{bottom:480.046000pt;}
.yc{bottom:488.585200pt;}
.yb0{bottom:488.598400pt;}
.y33{bottom:488.600533pt;}
.y133{bottom:488.604800pt;}
.y163{bottom:488.606933pt;}
.y7a{bottom:488.609067pt;}
.y179{bottom:488.615467pt;}
.y5a{bottom:488.621867pt;}
.y11b{bottom:492.698933pt;}
.yf9{bottom:492.716000pt;}
.y11a{bottom:505.368933pt;}
.yb{bottom:506.587867pt;}
.y19b{bottom:506.598400pt;}
.y95{bottom:506.600533pt;}
.y32{bottom:506.602667pt;}
.y145{bottom:506.604800pt;}
.y79{bottom:506.606933pt;}
.y178{bottom:506.613333pt;}
.y59{bottom:506.619733pt;}
.yf8{bottom:509.155600pt;}
.y119{bottom:521.818933pt;}
.yf7{bottom:521.825600pt;}
.ya{bottom:524.590533pt;}
.y94{bottom:524.598400pt;}
.y31{bottom:524.600533pt;}
.y1d4{bottom:524.601600pt;}
.y144{bottom:524.602667pt;}
.y78{bottom:524.604800pt;}
.yaf{bottom:524.611200pt;}
.y58{bottom:524.617600pt;}
.y118{bottom:534.488933pt;}
.yf6{bottom:534.495600pt;}
.y9{bottom:542.593200pt;}
.y1d3{bottom:542.600000pt;}
.y132{bottom:542.600533pt;}
.y30{bottom:542.602667pt;}
.yae{bottom:542.609067pt;}
.y57{bottom:542.615467pt;}
.y117{bottom:547.158933pt;}
.yf5{bottom:550.928000pt;}
.y116{bottom:559.828933pt;}
.y8{bottom:560.595867pt;}
.y93{bottom:560.598400pt;}
.y2f{bottom:560.600533pt;}
.y131{bottom:560.604800pt;}
.yad{bottom:560.606933pt;}
.y56{bottom:560.613333pt;}
.yf4{bottom:563.598000pt;}
.y115{bottom:572.396000pt;}
.y92{bottom:578.598400pt;}
.y7{bottom:578.598533pt;}
.y77{bottom:578.600533pt;}
.y130{bottom:578.602667pt;}
.y2e{bottom:578.604800pt;}
.y55{bottom:578.611200pt;}
.y162{bottom:578.624000pt;}
.yf3{bottom:580.048000pt;}
.y114{bottom:588.846000pt;}
.yf2{bottom:592.718000pt;}
.y91{bottom:596.598400pt;}
.y12f{bottom:596.600533pt;}
.y2d{bottom:596.602667pt;}
.y54{bottom:596.609067pt;}
.y172{bottom:596.615467pt;}
.y161{bottom:596.621867pt;}
.y113{bottom:601.516000pt;}
.yf1{bottom:605.388000pt;}
.y90{bottom:614.598400pt;}
.y6{bottom:614.598533pt;}
.y2c{bottom:614.600533pt;}
.y143{bottom:614.604800pt;}
.y53{bottom:614.606933pt;}
.y171{bottom:614.613333pt;}
.y160{bottom:614.619733pt;}
.y112{bottom:617.966000pt;}
.yf0{bottom:621.827467pt;}
.y111{bottom:630.636000pt;}
.y185{bottom:632.598400pt;}
.y2b{bottom:632.602667pt;}
.y52{bottom:632.604800pt;}
.yac{bottom:632.606933pt;}
.y170{bottom:632.611200pt;}
.y15f{bottom:632.617600pt;}
.yef{bottom:634.497467pt;}
.y110{bottom:643.306000pt;}
.yee{bottom:647.167467pt;}
.y8f{bottom:650.598400pt;}
.y2a{bottom:650.600533pt;}
.y51{bottom:650.602667pt;}
.yab{bottom:650.604800pt;}
.y16f{bottom:650.609067pt;}
.y15e{bottom:650.615467pt;}
.y10f{bottom:659.756000pt;}
.yed{bottom:663.579867pt;}
.y142{bottom:668.598400pt;}
.y8e{bottom:668.600400pt;}
.y50{bottom:668.600533pt;}
.yaa{bottom:668.602667pt;}
.y29{bottom:668.604800pt;}
.y16e{bottom:668.606933pt;}
.y15d{bottom:668.613333pt;}
.y10e{bottom:672.426000pt;}
.yec{bottom:676.249867pt;}
.y10d{bottom:685.096000pt;}
.y8d{bottom:686.599733pt;}
.y4f{bottom:686.600533pt;}
.y28{bottom:686.602667pt;}
.y76{bottom:686.604800pt;}
.yc9{bottom:686.609067pt;}
.y15c{bottom:686.611200pt;}
.yeb{bottom:688.919867pt;}
.y10c{bottom:697.766000pt;}
.y1d2{bottom:697.789867pt;}
.y1ca{bottom:697.809867pt;}
.yea{bottom:701.589867pt;}
.y4{bottom:704.595200pt;}
.y4e{bottom:704.598400pt;}
.y8c{bottom:704.599067pt;}
.y27{bottom:704.600533pt;}
.y75{bottom:704.602667pt;}
.yc8{bottom:704.606933pt;}
.ya9{bottom:704.609067pt;}
.y12e{bottom:709.930400pt;}
.y10b{bottom:710.436000pt;}
.y1d1{bottom:710.459867pt;}
.y1c9{bottom:710.479867pt;}
.y5{bottom:712.368533pt;}
.ye9{bottom:714.259867pt;}
.y26{bottom:722.598400pt;}
.y74{bottom:722.600533pt;}
.y4d{bottom:722.602667pt;}
.yc7{bottom:722.604800pt;}
.ya8{bottom:722.606933pt;}
.y10a{bottom:723.106000pt;}
.y1d0{bottom:726.909867pt;}
.ye8{bottom:726.929867pt;}
.y109{bottom:739.556000pt;}
.y1cf{bottom:739.579867pt;}
.ye7{bottom:739.599867pt;}
.y73{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.y8b{bottom:740.600400pt;}
.y4c{bottom:740.600533pt;}
.yc6{bottom:740.602667pt;}
.y25{bottom:740.604800pt;}
.y108{bottom:752.226000pt;}
.ye6{bottom:752.269867pt;}
.y1ce{bottom:756.029867pt;}
.y8a{bottom:758.599733pt;}
.yc5{bottom:758.600533pt;}
.y24{bottom:758.602667pt;}
.y107{bottom:764.896000pt;}
.y1cd{bottom:768.699867pt;}
.ye5{bottom:768.719867pt;}
.y89{bottom:776.599067pt;}
.y23{bottom:776.600533pt;}
.y106{bottom:781.346000pt;}
.y1cc{bottom:781.369867pt;}
.ye4{bottom:781.389867pt;}
.y105{bottom:794.016000pt;}
.y1cb{bottom:794.039867pt;}
.ye3{bottom:794.059867pt;}
.y22{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y15b{bottom:846.973333pt;}
.y4b{bottom:847.033333pt;}
.y21{bottom:847.069467pt;}
.y1{bottom:847.128533pt;}
.h2{height:31.849600pt;}
.h13{height:32.280000pt;}
.h2a{height:33.107200pt;}
.h27{height:33.749333pt;}
.hb{height:34.085333pt;}
.he{height:34.091200pt;}
.hd{height:34.091733pt;}
.h1e{height:34.096533pt;}
.h12{height:34.097067pt;}
.h17{height:34.101867pt;}
.hc{height:34.102400pt;}
.h16{height:34.118400pt;}
.h28{height:34.123733pt;}
.h26{height:34.128533pt;}
.hf{height:36.033067pt;}
.h22{height:36.153600pt;}
.h20{height:36.520000pt;}
.h7{height:37.014400pt;}
.h3{height:39.331200pt;}
.h29{height:39.413333pt;}
.h21{height:40.499200pt;}
.h1b{height:40.752000pt;}
.h2b{height:40.902400pt;}
.h1c{height:41.281536pt;}
.h6{height:41.973333pt;}
.h8{height:42.563200pt;}
.h2c{height:42.812800pt;}
.h1a{height:43.016000pt;}
.h14{height:43.022404pt;}
.h1d{height:43.030938pt;}
.h19{height:43.048004pt;}
.h15{height:43.056538pt;}
.h1f{height:43.065071pt;}
.h18{height:43.073604pt;}
.h11{height:43.082138pt;}
.h9{height:43.090671pt;}
.h10{height:43.099204pt;}
.ha{height:43.107738pt;}
.h25{height:45.771733pt;}
.h5{height:49.189653pt;}
.h23{height:49.667200pt;}
.h24{height:67.002667pt;}
.h4{height:73.453333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x10{left:77.736533pt;}
.xa{left:79.373767pt;}
.xf{left:81.826800pt;}
.x4{left:83.149600pt;}
.x7{left:86.929200pt;}
.x3{left:88.818907pt;}
.x9{left:94.488133pt;}
.x8{left:105.830840pt;}
.x5{left:114.287467pt;}
.xe{left:129.080667pt;}
.x6{left:167.122400pt;}
.xc{left:319.368167pt;}
.xb{left:330.707467pt;}
.xd{left:405.152400pt;}
.x2{left:443.014133pt;}
}




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