
    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_57a152617629fd1c11d04fa9.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_67f5312a022b873f012c2800.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_88ed98d50924bbd448714eb0.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_46f076bb3441afb7fa2cebaa.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_de24560cad25f089b4a37d22.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_0dd0a26790e5b9d06c5e87b7.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_1ed27a0053b4302d19038ec1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7cde82c2ac11d96960f040f3.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_6601c84265d562f8f28e9670.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_697098c2abae0bfae6dda1b9.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a6a3da8a5bf7809c96bc15fb.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_278a4f6714ff12c4b8f9a11c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.932000;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_cc21b70b6e7c76d20a610520.woff2')format("woff");}.fff{font-family:fff;line-height:0.956543;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_5921a83af34c64f630087b6b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_dc8574353d59edc113879373.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;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_2e7654465aacd60c2645a942.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_c06e4f2ab375f6e9e7fd206e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-15.600600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.840000px;}
.v2{vertical-align:19.800000px;}
.ls16{letter-spacing:-31.560000px;}
.ls17{letter-spacing:-1.200000px;}
.ls1a{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.768000px;}
.ls9{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.381559px;}
.ls18{letter-spacing:-0.336000px;}
.ls19{letter-spacing:-0.192000px;}
.ls12{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.138749px;}
.ls11{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.450000px;}
.lsa{letter-spacing:0.450934px;}
.ls4{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls6{letter-spacing:13.314600px;}
.ls22{letter-spacing:13.899600px;}
.ls7{letter-spacing:73.180200px;}
.lse{letter-spacing:81.155428px;}
.ls13{letter-spacing:84.660000px;}
.lsf{letter-spacing:91.400772px;}
.ls14{letter-spacing:197.267283px;}
.lsd{letter-spacing:198.060000px;}
.lsb{letter-spacing:698.880000px;}
.ls20{letter-spacing:855.867000px;}
.ls21{letter-spacing:862.655400px;}
.ls1c{letter-spacing:1468.239000px;}
.ls1d{letter-spacing:1475.027400px;}
.ls1e{letter-spacing:1564.308000px;}
.ls1f{letter-spacing:1571.096400px;}
.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;}
}
.ws7b{word-spacing:-220.188000px;}
.ws83{word-spacing:-215.624014px;}
.ws82{word-spacing:-61.434000px;}
.ws87{word-spacing:-60.000000px;}
.ws3{word-spacing:-18.228000px;}
.ws1{word-spacing:-13.986000px;}
.ws39{word-spacing:-13.332000px;}
.ws6{word-spacing:-12.720000px;}
.ws7{word-spacing:-12.120000px;}
.ws14f{word-spacing:-11.448000px;}
.wsf9{word-spacing:-10.920000px;}
.wsb{word-spacing:-10.176000px;}
.ws78{word-spacing:-9.828000px;}
.wsa{word-spacing:-9.810000px;}
.ws8{word-spacing:-9.696000px;}
.wse1{word-spacing:-9.408000px;}
.ws4{word-spacing:-9.360000px;}
.ws2{word-spacing:-8.820000px;}
.wsbb{word-spacing:-8.736000px;}
.wsda{word-spacing:-8.268000px;}
.ws9{word-spacing:-8.232000px;}
.wse0{word-spacing:-7.536000px;}
.ws88{word-spacing:-7.098000px;}
.wsf5{word-spacing:-2.736000px;}
.ws5{word-spacing:-2.666400px;}
.wsfa{word-spacing:-2.324700px;}
.ws61{word-spacing:-0.450000px;}
.ws0{word-spacing:0.000000px;}
.ws80{word-spacing:0.060000px;}
.ws169{word-spacing:3.078000px;}
.wsf1{word-spacing:3.420000px;}
.ws168{word-spacing:3.618000px;}
.ws18{word-spacing:4.914000px;}
.ws41{word-spacing:4.920000px;}
.wsf6{word-spacing:5.568000px;}
.ws153{word-spacing:5.616000px;}
.ws14c{word-spacing:5.664000px;}
.ws17{word-spacing:5.724000px;}
.ws145{word-spacing:5.760000px;}
.ws124{word-spacing:5.820000px;}
.ws163{word-spacing:5.832000px;}
.ws2a{word-spacing:5.880000px;}
.ws157{word-spacing:5.886000px;}
.ws93{word-spacing:6.120000px;}
.ws38{word-spacing:6.192000px;}
.ws14d{word-spacing:6.288000px;}
.ws8a{word-spacing:6.360000px;}
.ws173{word-spacing:6.372000px;}
.wsad{word-spacing:6.420000px;}
.ws4d{word-spacing:6.480000px;}
.ws154{word-spacing:6.534000px;}
.wsa5{word-spacing:6.540000px;}
.ws32{word-spacing:6.594000px;}
.wsd{word-spacing:6.615000px;}
.ws37{word-spacing:6.660000px;}
.ws151{word-spacing:6.696000px;}
.ws7c{word-spacing:6.763976px;}
.ws99{word-spacing:6.840000px;}
.ws65{word-spacing:6.900000px;}
.ws15{word-spacing:6.912000px;}
.ws108{word-spacing:6.960000px;}
.wsf4{word-spacing:7.008000px;}
.wse{word-spacing:7.065000px;}
.ws175{word-spacing:7.074000px;}
.ws103{word-spacing:7.080000px;}
.ws71{word-spacing:7.140000px;}
.ws31{word-spacing:7.200000px;}
.ws101{word-spacing:7.260000px;}
.ws14e{word-spacing:7.296000px;}
.ws147{word-spacing:7.380000px;}
.ws16a{word-spacing:7.398000px;}
.ws3b{word-spacing:7.440000px;}
.ws1d{word-spacing:7.452000px;}
.wsd8{word-spacing:7.488000px;}
.ws4e{word-spacing:7.500000px;}
.ws34{word-spacing:7.536000px;}
.ws43{word-spacing:7.560000px;}
.wscf{word-spacing:7.620000px;}
.wsfe{word-spacing:7.680000px;}
.ws9e{word-spacing:7.740000px;}
.ws152{word-spacing:7.776000px;}
.ws10a{word-spacing:7.800000px;}
.wsf7{word-spacing:7.824000px;}
.ws58{word-spacing:7.860000px;}
.ws14{word-spacing:7.884000px;}
.ws9c{word-spacing:7.920000px;}
.ws69{word-spacing:7.980000px;}
.ws156{word-spacing:7.992000px;}
.ws12a{word-spacing:8.016000px;}
.wsf0{word-spacing:8.040000px;}
.wsff{word-spacing:8.100000px;}
.wsd9{word-spacing:8.112000px;}
.ws166{word-spacing:8.154000px;}
.ws25{word-spacing:8.160000px;}
.ws105{word-spacing:8.220000px;}
.ws174{word-spacing:8.262000px;}
.ws148{word-spacing:8.340000px;}
.wscc{word-spacing:8.400000px;}
.ws12{word-spacing:8.424000px;}
.ws100{word-spacing:8.460000px;}
.ws11{word-spacing:8.478000px;}
.ws36{word-spacing:8.484000px;}
.ws6e{word-spacing:8.520000px;}
.ws125{word-spacing:8.580000px;}
.ws155{word-spacing:8.586000px;}
.ws3a{word-spacing:8.640000px;}
.ws1c{word-spacing:8.694000px;}
.ws2d{word-spacing:8.700000px;}
.ws2e{word-spacing:8.760000px;}
.wsd6{word-spacing:8.778000px;}
.ws1f{word-spacing:8.820000px;}
.ws3e{word-spacing:8.880000px;}
.ws63{word-spacing:8.940000px;}
.wsd7{word-spacing:8.949000px;}
.ws97{word-spacing:9.000000px;}
.ws21{word-spacing:9.060000px;}
.ws5c{word-spacing:9.120000px;}
.ws1e{word-spacing:9.180000px;}
.ws92{word-spacing:9.198000px;}
.ws15c{word-spacing:9.234000px;}
.ws5f{word-spacing:9.240000px;}
.ws67{word-spacing:9.261000px;}
.wsf8{word-spacing:9.408000px;}
.ws30{word-spacing:9.420000px;}
.ws165{word-spacing:9.504000px;}
.ws45{word-spacing:9.540000px;}
.wsc{word-spacing:9.600000px;}
.ws158{word-spacing:9.612000px;}
.ws22{word-spacing:9.660000px;}
.ws164{word-spacing:9.666000px;}
.ws127{word-spacing:9.747000px;}
.ws150{word-spacing:9.828000px;}
.ws8f{word-spacing:9.840000px;}
.wsd2{word-spacing:9.900000px;}
.ws104{word-spacing:9.960000px;}
.ws128{word-spacing:9.975000px;}
.ws15e{word-spacing:10.044000px;}
.ws96{word-spacing:10.080000px;}
.ws167{word-spacing:10.098000px;}
.ws51{word-spacing:10.140000px;}
.ws178{word-spacing:10.152000px;}
.ws24{word-spacing:10.200000px;}
.wsa6{word-spacing:10.260000px;}
.ws27{word-spacing:10.320000px;}
.wsfd{word-spacing:10.380000px;}
.ws9a{word-spacing:10.440000px;}
.ws8d{word-spacing:10.500000px;}
.ws4b{word-spacing:10.560000px;}
.ws1b{word-spacing:10.584000px;}
.ws91{word-spacing:10.620000px;}
.ws16b{word-spacing:10.638000px;}
.ws26{word-spacing:10.680000px;}
.ws56{word-spacing:10.692000px;}
.ws10{word-spacing:10.710000px;}
.ws10c{word-spacing:10.740000px;}
.ws15b{word-spacing:10.746000px;}
.ws14b{word-spacing:10.800000px;}
.wsfc{word-spacing:10.860000px;}
.ws177{word-spacing:11.016000px;}
.wscd{word-spacing:11.100000px;}
.ws64{word-spacing:11.160000px;}
.ws59{word-spacing:11.220000px;}
.ws75{word-spacing:11.280000px;}
.ws35{word-spacing:11.298000px;}
.ws3d{word-spacing:11.400000px;}
.ws16c{word-spacing:11.448000px;}
.ws2c{word-spacing:11.460000px;}
.ws4c{word-spacing:11.520000px;}
.ws46{word-spacing:11.580000px;}
.ws74{word-spacing:11.700000px;}
.ws15d{word-spacing:11.718000px;}
.ws14a{word-spacing:11.820000px;}
.ws9d{word-spacing:11.880000px;}
.ws16f{word-spacing:11.934000px;}
.ws8b{word-spacing:12.000000px;}
.ws172{word-spacing:12.042000px;}
.ws28{word-spacing:12.060000px;}
.ws160{word-spacing:12.096000px;}
.wsa8{word-spacing:12.180000px;}
.ws44{word-spacing:12.240000px;}
.ws8c{word-spacing:12.300000px;}
.ws162{word-spacing:12.366000px;}
.ws10b{word-spacing:12.420000px;}
.ws161{word-spacing:12.474000px;}
.ws4a{word-spacing:12.480000px;}
.ws15a{word-spacing:12.528000px;}
.ws126{word-spacing:12.540000px;}
.ws13{word-spacing:12.582000px;}
.wsf2{word-spacing:12.660000px;}
.ws3f{word-spacing:12.720000px;}
.wsd1{word-spacing:12.780000px;}
.ws176{word-spacing:12.852000px;}
.ws159{word-spacing:12.906000px;}
.ws90{word-spacing:12.960000px;}
.wsd4{word-spacing:13.080000px;}
.wsfb{word-spacing:13.140000px;}
.ws33{word-spacing:13.200000px;}
.ws54{word-spacing:13.320000px;}
.ws171{word-spacing:13.338000px;}
.ws62{word-spacing:13.380000px;}
.ws121{word-spacing:13.440000px;}
.ws20{word-spacing:13.500000px;}
.ws5e{word-spacing:13.560000px;}
.wsa3{word-spacing:13.680000px;}
.wsab{word-spacing:13.740000px;}
.ws3c{word-spacing:13.860000px;}
.ws16e{word-spacing:13.878000px;}
.wsf{word-spacing:13.944000px;}
.ws50{word-spacing:13.980000px;}
.ws5d{word-spacing:14.040000px;}
.ws15f{word-spacing:14.094000px;}
.wsac{word-spacing:14.160000px;}
.ws29{word-spacing:14.220000px;}
.ws42{word-spacing:14.340000px;}
.ws23{word-spacing:14.460000px;}
.ws48{word-spacing:14.520000px;}
.ws5a{word-spacing:14.640000px;}
.ws57{word-spacing:14.760000px;}
.ws9f{word-spacing:14.820000px;}
.ws89{word-spacing:14.880000px;}
.wsa2{word-spacing:15.000000px;}
.ws129{word-spacing:15.024000px;}
.ws6a{word-spacing:15.060000px;}
.wsa0{word-spacing:15.120000px;}
.ws123{word-spacing:15.240000px;}
.wsce{word-spacing:15.360000px;}
.wsa7{word-spacing:15.420000px;}
.ws53{word-spacing:15.480000px;}
.ws6f{word-spacing:15.540000px;}
.ws170{word-spacing:15.552000px;}
.ws47{word-spacing:15.660000px;}
.wsaa{word-spacing:15.720000px;}
.ws122{word-spacing:15.900000px;}
.ws95{word-spacing:16.080000px;}
.wsd5{word-spacing:16.200000px;}
.wsa9{word-spacing:16.260000px;}
.ws146{word-spacing:16.380000px;}
.ws6d{word-spacing:16.440000px;}
.ws72{word-spacing:16.560000px;}
.ws106{word-spacing:16.920000px;}
.ws107{word-spacing:17.040000px;}
.ws2f{word-spacing:17.280000px;}
.wsa1{word-spacing:17.340000px;}
.wsef{word-spacing:17.400000px;}
.ws6b{word-spacing:17.520000px;}
.ws49{word-spacing:17.580000px;}
.ws102{word-spacing:17.640000px;}
.wsd3{word-spacing:17.700000px;}
.ws52{word-spacing:18.000000px;}
.ws55{word-spacing:18.060000px;}
.ws5b{word-spacing:18.180000px;}
.ws16{word-spacing:18.306000px;}
.ws68{word-spacing:18.360000px;}
.ws9b{word-spacing:18.900000px;}
.wsa4{word-spacing:18.960000px;}
.ws70{word-spacing:19.020000px;}
.ws73{word-spacing:19.200000px;}
.ws94{word-spacing:19.740000px;}
.ws19{word-spacing:19.980000px;}
.ws109{word-spacing:20.400000px;}
.ws77{word-spacing:20.520000px;}
.ws6c{word-spacing:20.700000px;}
.ws2b{word-spacing:21.180000px;}
.ws16d{word-spacing:21.546000px;}
.wsd0{word-spacing:22.260000px;}
.ws1a{word-spacing:22.410000px;}
.ws4f{word-spacing:23.220000px;}
.ws98{word-spacing:23.400000px;}
.wscb{word-spacing:23.460000px;}
.ws149{word-spacing:23.580000px;}
.wsf3{word-spacing:24.240000px;}
.ws60{word-spacing:24.660000px;}
.ws40{word-spacing:27.180000px;}
.ws76{word-spacing:27.360000px;}
.ws8e{word-spacing:28.980000px;}
.ws7d{word-spacing:32.768998px;}
.ws66{word-spacing:35.520000px;}
.wsc9{word-spacing:57.484200px;}
.ws85{word-spacing:62.580000px;}
.wsc7{word-spacing:63.484800px;}
.wsca{word-spacing:64.780800px;}
.ws79{word-spacing:65.160000px;}
.wsc5{word-spacing:74.092200px;}
.wsbe{word-spacing:78.820200px;}
.ws86{word-spacing:84.182366px;}
.ws84{word-spacing:86.731875px;}
.wsc8{word-spacing:92.092200px;}
.wsc0{word-spacing:99.364200px;}
.wsc4{word-spacing:99.387600px;}
.wsbd{word-spacing:125.045400px;}
.ws81{word-spacing:134.460000px;}
.wsc3{word-spacing:137.658000px;}
.wsbc{word-spacing:167.163600px;}
.wsbf{word-spacing:178.804800px;}
.ws7f{word-spacing:201.220447px;}
.ws7e{word-spacing:202.365125px;}
.ws7a{word-spacing:217.419370px;}
.wsc6{word-spacing:247.420800px;}
.wsc2{word-spacing:249.148800px;}
.wsae{word-spacing:293.795400px;}
.wsb4{word-spacing:301.068000px;}
.wsb6{word-spacing:302.315400px;}
.wsb0{word-spacing:303.924000px;}
.ws12e{word-spacing:335.370600px;}
.wsc1{word-spacing:337.458600px;}
.ws12d{word-spacing:344.370600px;}
.ws13d{word-spacing:363.978600px;}
.ws139{word-spacing:373.290600px;}
.ws135{word-spacing:383.274600px;}
.ws130{word-spacing:387.882000px;}
.ws132{word-spacing:391.170600px;}
.ws137{word-spacing:391.171200px;}
.ws13b{word-spacing:395.586600px;}
.wsb2{word-spacing:438.102000px;}
.wsdc{word-spacing:504.940800px;}
.wsdb{word-spacing:506.453400px;}
.wse3{word-spacing:518.971800px;}
.wse6{word-spacing:538.267800px;}
.wsb1{word-spacing:541.350000px;}
.wsde{word-spacing:541.589400px;}
.wsba{word-spacing:593.478000px;}
.wsb8{word-spacing:602.838000px;}
.wsec{word-spacing:605.468400px;}
.wsb5{word-spacing:605.814000px;}
.wsb3{word-spacing:608.262000px;}
.wsaf{word-spacing:608.502000px;}
.ws131{word-spacing:614.059200px;}
.ws13e{word-spacing:615.163200px;}
.wsb9{word-spacing:618.774000px;}
.wsb7{word-spacing:619.446000px;}
.ws13c{word-spacing:643.387800px;}
.ws138{word-spacing:675.547200px;}
.ws134{word-spacing:678.523200px;}
.ws133{word-spacing:680.971200px;}
.ws12f{word-spacing:681.211200px;}
.ws10d{word-spacing:698.591400px;}
.ws114{word-spacing:705.178800px;}
.ws13a{word-spacing:720.091200px;}
.ws136{word-spacing:720.763200px;}
.ws11c{word-spacing:724.474800px;}
.ws118{word-spacing:733.786200px;}
.wse2{word-spacing:739.471800px;}
.ws112{word-spacing:743.770800px;}
.ws11e{word-spacing:753.082200px;}
.ws11a{word-spacing:772.378200px;}
.ws10f{word-spacing:791.674200px;}
.ws143{word-spacing:815.395200px;}
.ws13f{word-spacing:822.570600px;}
.wseb{word-spacing:843.246000px;}
.wsdf{word-spacing:870.750000px;}
.wsea{word-spacing:894.270600px;}
.wse5{word-spacing:906.606600px;}
.wse4{word-spacing:909.054600px;}
.wse8{word-spacing:932.238000px;}
.wsdd{word-spacing:937.902000px;}
.ws142{word-spacing:938.509200px;}
.ws144{word-spacing:944.610600px;}
.wse9{word-spacing:948.174000px;}
.wse7{word-spacing:948.846000px;}
.ws141{word-spacing:961.309800px;}
.ws12c{word-spacing:991.021200px;}
.ws140{word-spacing:993.853800px;}
.ws12b{word-spacing:1013.053200px;}
.ws111{word-spacing:1033.609200px;}
.ws11d{word-spacing:1137.384000px;}
.ws110{word-spacing:1164.888000px;}
.ws11b{word-spacing:1188.408000px;}
.ws115{word-spacing:1200.744000px;}
.ws113{word-spacing:1203.192000px;}
.ws117{word-spacing:1226.376000px;}
.ws10e{word-spacing:1232.040000px;}
.ws119{word-spacing:1242.312000px;}
.ws116{word-spacing:1242.984000px;}
.wsee{word-spacing:1400.095800px;}
.wsed{word-spacing:1434.943200px;}
.ws120{word-spacing:1496.164800px;}
.ws11f{word-spacing:1531.012200px;}
._18{margin-left:-119.388000px;}
._5e{margin-left:-28.886429px;}
._1f{margin-left:-7.804620px;}
._a{margin-left:-5.592044px;}
._1{margin-left:-4.140000px;}
._5{margin-left:-3.101415px;}
._0{margin-left:-1.919985px;}
._4{width:1.049400px;}
._3{width:2.075971px;}
._2d{width:3.464327px;}
._b{width:4.673985px;}
._2{width:5.999927px;}
._d{width:8.090400px;}
._10{width:9.267300px;}
._7{width:11.196000px;}
._2e{width:12.272371px;}
._c{width:14.064571px;}
._e{width:15.131971px;}
._5d{width:17.315941px;}
._6{width:20.598571px;}
._52{width:24.222000px;}
._2b{width:32.700000px;}
._2c{width:34.800000px;}
._8{width:60.680985px;}
._19{width:82.212000px;}
._40{width:89.499600px;}
._3f{width:95.068800px;}
._4b{width:102.556200px;}
._25{width:103.806000px;}
._50{width:110.010000px;}
._51{width:112.155000px;}
._43{width:113.500200px;}
._4a{width:114.796200px;}
._3a{width:119.883600px;}
._24{width:123.012000px;}
._4c{width:124.294215px;}
._12{width:126.480585px;}
._f{width:131.698171px;}
._9{width:133.679400px;}
._13{width:138.121815px;}
._3c{width:139.972200px;}
._3e{width:141.066600px;}
._4e{width:144.571800px;}
._47{width:147.388200px;}
._45{width:149.853615px;}
._4f{width:159.388200px;}
._29{width:160.785578px;}
._49{width:164.413800px;}
._3b{width:166.881000px;}
._26{width:171.612000px;}
._21{width:174.270600px;}
._41{width:177.066600px;}
._44{width:183.066000px;}
._3d{width:193.612800px;}
._23{width:195.720000px;}
._1d{width:204.005829px;}
._1b{width:205.819013px;}
._28{width:208.192574px;}
._17{width:222.691824px;}
._27{width:224.391497px;}
._16{width:226.299293px;}
._22{width:233.706000px;}
._11{width:240.960000px;}
._4d{width:243.292800px;}
._39{width:245.418585px;}
._1a{width:252.612000px;}
._42{width:256.924800px;}
._2a{width:271.784618px;}
._48{width:280.300200px;}
._15{width:292.898717px;}
._46{width:296.284200px;}
._36{width:313.331400px;}
._37{width:317.531400px;}
._20{width:319.654526px;}
._14{width:325.296562px;}
._32{width:333.426000px;}
._31{width:337.307400px;}
._30{width:338.964600px;}
._33{width:340.331400px;}
._38{width:362.532000px;}
._1e{width:375.593002px;}
._1c{width:380.324686px;}
._35{width:385.180800px;}
._6a{width:396.259200px;}
._67{width:400.578600px;}
._69{width:411.828000px;}
._66{width:415.129800px;}
._68{width:416.435400px;}
._6c{width:429.035400px;}
._6d{width:440.929800px;}
._6b{width:443.970600px;}
._34{width:463.475400px;}
._58{width:550.997400px;}
._2f{width:552.077385px;}
._57{width:576.284400px;}
._56{width:586.267800px;}
._65{width:593.561385px;}
._54{width:595.731000px;}
._55{width:614.876400px;}
._59{width:699.358200px;}
._5a{width:773.242200px;}
._6e{width:807.158385px;}
._64{width:825.703829px;}
._53{width:836.685585px;}
._60{width:987.565200px;}
._61{width:1061.449200px;}
._5f{width:1124.891985px;}
._5c{width:1244.601000px;}
._63{width:1340.670600px;}
._5b{width:1395.914385px;}
._62{width:1491.983385px;}
.fc2{color:rgb(16,20,126);}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:31.200000px;}
.fsc{font-size:34.687200px;}
.fse{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsf{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:61.434844px;}
.fs1{font-size:63.000000px;}
.fsb{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;}
.ye3{bottom:26.850900px;}
.ye0{bottom:30.751050px;}
.y7{bottom:35.925007px;}
.y69{bottom:54.015600px;}
.y68{bottom:66.015600px;}
.y6{bottom:66.525004px;}
.y3b{bottom:67.597501px;}
.y67{bottom:78.015600px;}
.y3a{bottom:84.097501px;}
.yb1{bottom:85.275000px;}
.y214{bottom:85.426200px;}
.y14e{bottom:85.650000px;}
.y198{bottom:86.926200px;}
.y64{bottom:90.390600px;}
.y5{bottom:97.125005px;}
.y14d{bottom:99.150000px;}
.y66{bottom:101.265600px;}
.y213{bottom:101.926200px;}
.yb0{bottom:104.775000px;}
.y1de{bottom:105.150000px;}
.y197{bottom:106.426200px;}
.yf2{bottom:112.875750px;}
.y11c{bottom:113.176200px;}
.y65{bottom:114.765600px;}
.y14c{bottom:117.150000px;}
.y212{bottom:118.426200px;}
.yaf{bottom:124.275000px;}
.y1dd{bottom:124.650000px;}
.y196{bottom:125.926200px;}
.y14b{bottom:130.650000px;}
.yf1{bottom:132.375750px;}
.y11b{bottom:132.676200px;}
.y1a4{bottom:134.775000px;}
.y211{bottom:134.926200px;}
.y24{bottom:139.264499px;}
.yae{bottom:143.775000px;}
.y14a{bottom:144.150000px;}
.y195{bottom:145.426200px;}
.y210{bottom:151.426200px;}
.yf0{bottom:151.875750px;}
.y11a{bottom:152.176200px;}
.y149{bottom:157.650000px;}
.yad{bottom:163.275000px;}
.y1dc{bottom:163.650000px;}
.y194{bottom:164.926200px;}
.y63{bottom:166.501200px;}
.y20f{bottom:167.926200px;}
.y148{bottom:171.150000px;}
.yef{bottom:171.375750px;}
.y119{bottom:171.676200px;}
.yac{bottom:182.775000px;}
.y1db{bottom:183.150000px;}
.y193{bottom:184.426200px;}
.y147{bottom:184.650000px;}
.y1a3{bottom:185.937900px;}
.y62{bottom:186.001200px;}
.yee{bottom:190.875750px;}
.y118{bottom:191.176200px;}
.y1b{bottom:196.933500px;}
.y146{bottom:198.150000px;}
.y20e{bottom:200.926200px;}
.yab{bottom:202.275000px;}
.y1da{bottom:202.650000px;}
.y192{bottom:203.926200px;}
.y1a2{bottom:205.437900px;}
.y61{bottom:205.501200px;}
.y23{bottom:209.518500px;}
.y1a{bottom:209.533503px;}
.yed{bottom:210.375750px;}
.y117{bottom:210.676200px;}
.y145{bottom:211.650000px;}
.y20d{bottom:217.426200px;}
.yaa{bottom:221.775000px;}
.y22{bottom:222.118502px;}
.y19{bottom:222.133505px;}
.y1d9{bottom:222.150000px;}
.y191{bottom:223.426200px;}
.y1a1{bottom:224.937900px;}
.y60{bottom:225.001200px;}
.y144{bottom:225.150000px;}
.yec{bottom:229.875750px;}
.y116{bottom:230.176200px;}
.y20c{bottom:233.926200px;}
.y21{bottom:234.718504px;}
.y18{bottom:234.733496px;}
.y143{bottom:238.650000px;}
.ya9{bottom:241.275000px;}
.y1d8{bottom:241.650000px;}
.y190{bottom:242.926200px;}
.y1a0{bottom:244.437900px;}
.y5f{bottom:244.501200px;}
.y39{bottom:248.776501px;}
.y115{bottom:249.676200px;}
.y20b{bottom:250.426200px;}
.y142{bottom:256.650000px;}
.y20{bottom:259.918497px;}
.y17{bottom:259.933500px;}
.ya8{bottom:260.775000px;}
.y1d7{bottom:261.150000px;}
.y18f{bottom:262.426200px;}
.y19f{bottom:263.937900px;}
.y5e{bottom:264.001200px;}
.y20a{bottom:266.926200px;}
.y114{bottom:269.176200px;}
.y1f{bottom:272.518500px;}
.y16{bottom:272.533503px;}
.y141{bottom:275.400000px;}
.ya7{bottom:280.275000px;}
.y1d6{bottom:280.650000px;}
.yeb{bottom:280.875750px;}
.y18e{bottom:281.926200px;}
.y209{bottom:283.426200px;}
.y19e{bottom:283.437900px;}
.y5d{bottom:283.501200px;}
.y1e{bottom:285.118502px;}
.y15{bottom:285.133499px;}
.y113{bottom:299.176200px;}
.ya6{bottom:299.775000px;}
.y208{bottom:299.926200px;}
.y1d5{bottom:300.150000px;}
.yea{bottom:300.375750px;}
.y19d{bottom:302.937900px;}
.y5c{bottom:303.001200px;}
.y1d{bottom:310.318501px;}
.y14{bottom:310.333501px;}
.y18d{bottom:311.926200px;}
.y38{bottom:313.126501px;}
.y207{bottom:316.426200px;}
.yc9{bottom:319.275000px;}
.y1d4{bottom:319.650000px;}
.y140{bottom:319.762950px;}
.ye9{bottom:319.875750px;}
.y19c{bottom:322.437900px;}
.y5b{bottom:322.501200px;}
.y1c{bottom:322.918500px;}
.y13{bottom:322.933500px;}
.ya5{bottom:329.775000px;}
.y206{bottom:332.926200px;}
.y13f{bottom:333.262950px;}
.yc8{bottom:338.775000px;}
.ye8{bottom:339.375750px;}
.y19b{bottom:341.937900px;}
.y5a{bottom:342.001200px;}
.y112{bottom:344.176200px;}
.y12{bottom:348.133500px;}
.y205{bottom:349.426200px;}
.y1d3{bottom:349.650000px;}
.y13e{bottom:351.262950px;}
.yc7{bottom:358.275000px;}
.ye7{bottom:358.875750px;}
.y19a{bottom:361.437900px;}
.y59{bottom:361.501200px;}
.y111{bottom:363.676200px;}
.y13d{bottom:364.762950px;}
.y204{bottom:365.926200px;}
.y18c{bottom:370.426200px;}
.y240{bottom:374.551200px;}
.yc6{bottom:377.775000px;}
.ya4{bottom:377.926200px;}
.y13c{bottom:378.262950px;}
.y37{bottom:380.407500px;}
.y199{bottom:380.937900px;}
.y58{bottom:381.001200px;}
.y203{bottom:382.426200px;}
.y110{bottom:383.176200px;}
.y11{bottom:386.785499px;}
.y18b{bottom:389.926200px;}
.y23f{bottom:391.051200px;}
.y13b{bottom:391.762950px;}
.ydf{bottom:396.300000px;}
.yc5{bottom:397.275000px;}
.ya3{bottom:397.426200px;}
.y202{bottom:398.926200px;}
.y57{bottom:400.501200px;}
.ye6{bottom:400.647579px;}
.ye4{bottom:400.650900px;}
.y1d2{bottom:401.381850px;}
.y10f{bottom:402.676200px;}
.ye5{bottom:404.551050px;}
.y177{bottom:405.244350px;}
.y13a{bottom:405.262950px;}
.y23e{bottom:407.551200px;}
.y10{bottom:408.044999px;}
.y18a{bottom:409.426200px;}
.y201{bottom:415.426200px;}
.yde{bottom:415.801050px;}
.yc4{bottom:416.775000px;}
.ya2{bottom:416.926200px;}
.y176{bottom:418.744350px;}
.y139{bottom:418.762950px;}
.y1bf{bottom:419.350800px;}
.y56{bottom:420.001200px;}
.y1d1{bottom:420.881850px;}
.y10e{bottom:422.176200px;}
.ye1{bottom:423.150900px;}
.y23d{bottom:424.051200px;}
.ye2{bottom:427.051050px;}
.y189{bottom:428.926200px;}
.y200{bottom:431.926200px;}
.y175{bottom:432.244350px;}
.y138{bottom:432.262950px;}
.yc3{bottom:436.275000px;}
.ya1{bottom:436.426200px;}
.y55{bottom:439.501200px;}
.y1d0{bottom:440.381850px;}
.y23c{bottom:440.551200px;}
.y10d{bottom:441.676200px;}
.y36{bottom:441.826501px;}
.y174{bottom:445.744350px;}
.y137{bottom:445.762950px;}
.y188{bottom:448.426200px;}
.yc2{bottom:455.775000px;}
.ya0{bottom:455.926200px;}
.y23b{bottom:457.051200px;}
.y1ff{bottom:458.926200px;}
.y54{bottom:459.001200px;}
.y136{bottom:459.262950px;}
.y1cf{bottom:459.881850px;}
.y10c{bottom:461.176200px;}
.ydd{bottom:463.426200px;}
.y173{bottom:463.744350px;}
.y187{bottom:467.926200px;}
.y23a{bottom:473.551200px;}
.yc1{bottom:475.275000px;}
.y9f{bottom:475.426200px;}
.y172{bottom:477.244350px;}
.y135{bottom:477.262950px;}
.y53{bottom:478.501200px;}
.y1ce{bottom:479.381850px;}
.y10b{bottom:480.676200px;}
.ydc{bottom:482.926200px;}
.yf{bottom:484.864502px;}
.y186{bottom:487.426200px;}
.y239{bottom:490.051200px;}
.y171{bottom:490.744350px;}
.yc0{bottom:494.775000px;}
.y9e{bottom:494.926200px;}
.y134{bottom:496.012950px;}
.y1cd{bottom:498.881850px;}
.y10a{bottom:500.176200px;}
.ye{bottom:502.864502px;}
.y170{bottom:504.244350px;}
.y238{bottom:506.551200px;}
.y185{bottom:506.926200px;}
.y52{bottom:508.501200px;}
.y35{bottom:509.107500px;}
.y1fe{bottom:511.426200px;}
.ydb{bottom:512.926200px;}
.ybf{bottom:514.275000px;}
.y9d{bottom:514.426200px;}
.y16f{bottom:517.744350px;}
.y1cc{bottom:518.381850px;}
.y109{bottom:519.676200px;}
.yd{bottom:520.864502px;}
.y237{bottom:523.051200px;}
.y184{bottom:526.426200px;}
.y1fd{bottom:527.926200px;}
.y16e{bottom:531.244350px;}
.ybe{bottom:533.775000px;}
.y9c{bottom:533.926200px;}
.y1cb{bottom:537.881850px;}
.yc{bottom:538.864499px;}
.y108{bottom:539.176200px;}
.y236{bottom:539.551200px;}
.yda{bottom:542.926200px;}
.y34{bottom:543.457501px;}
.y16d{bottom:544.744350px;}
.y183{bottom:545.926200px;}
.ybd{bottom:553.275000px;}
.y9b{bottom:553.426200px;}
.y1fc{bottom:554.926200px;}
.y235{bottom:556.051200px;}
.y7d{bottom:556.351200px;}
.yb{bottom:556.864499px;}
.y1ca{bottom:557.381850px;}
.y16c{bottom:558.244350px;}
.y33{bottom:558.457501px;}
.y107{bottom:558.676200px;}
.y133{bottom:559.426200px;}
.y182{bottom:565.426200px;}
.y7c{bottom:569.851200px;}
.y16b{bottom:571.744350px;}
.y234{bottom:572.551200px;}
.ybc{bottom:572.775000px;}
.y9a{bottom:572.926200px;}
.y32{bottom:573.457500px;}
.y1c9{bottom:576.881850px;}
.y106{bottom:578.176200px;}
.y132{bottom:578.926200px;}
.y7b{bottom:583.351200px;}
.y181{bottom:584.926200px;}
.y16a{bottom:585.244350px;}
.y233{bottom:589.051200px;}
.ybb{bottom:592.275000px;}
.y99{bottom:592.426200px;}
.y1c8{bottom:596.381850px;}
.y105{bottom:597.676200px;}
.yd9{bottom:598.426200px;}
.y169{bottom:598.744350px;}
.y180{bottom:604.426200px;}
.y232{bottom:605.551200px;}
.y7a{bottom:606.788700px;}
.y1fb{bottom:607.426200px;}
.yba{bottom:611.775000px;}
.y98{bottom:611.926200px;}
.y168{bottom:612.244350px;}
.y1c7{bottom:615.881850px;}
.y104{bottom:617.176200px;}
.y131{bottom:617.926200px;}
.y79{bottom:620.288700px;}
.y231{bottom:622.051200px;}
.y17f{bottom:623.926200px;}
.y167{bottom:625.744350px;}
.yd8{bottom:627.676200px;}
.yb9{bottom:631.275000px;}
.y97{bottom:631.426200px;}
.y78{bottom:633.788700px;}
.y1fa{bottom:634.426200px;}
.y1c6{bottom:635.381850px;}
.y103{bottom:636.676200px;}
.y130{bottom:637.426200px;}
.y230{bottom:638.551200px;}
.y166{bottom:639.244350px;}
.y17e{bottom:643.426200px;}
.ya{bottom:645.510000px;}
.yd7{bottom:647.176200px;}
.y77{bottom:647.288700px;}
.yb8{bottom:650.775000px;}
.y96{bottom:650.926200px;}
.y165{bottom:652.744350px;}
.y31{bottom:654.817498px;}
.y1c5{bottom:654.881850px;}
.y22f{bottom:655.051200px;}
.y102{bottom:656.176200px;}
.y12f{bottom:656.926200px;}
.y76{bottom:660.788700px;}
.y17d{bottom:662.926200px;}
.y164{bottom:666.244350px;}
.yd6{bottom:666.676200px;}
.y9{bottom:666.771000px;}
.yb7{bottom:670.275000px;}
.y95{bottom:670.426200px;}
.y22e{bottom:671.551200px;}
.y1c4{bottom:674.381850px;}
.y51{bottom:675.001200px;}
.y101{bottom:675.676200px;}
.y12e{bottom:676.426200px;}
.y163{bottom:679.744350px;}
.y17c{bottom:682.426200px;}
.y75{bottom:683.551200px;}
.y30{bottom:684.817498px;}
.yd5{bottom:686.176200px;}
.y1f9{bottom:686.926200px;}
.y22d{bottom:688.051200px;}
.yb6{bottom:689.775000px;}
.y94{bottom:689.926200px;}
.y50{bottom:690.001200px;}
.y162{bottom:693.244350px;}
.y1c3{bottom:693.881850px;}
.y100{bottom:695.176200px;}
.y12d{bottom:695.926200px;}
.y74{bottom:697.051200px;}
.y17b{bottom:701.926200px;}
.y2f{bottom:702.817498px;}
.y1f8{bottom:703.426200px;}
.y22c{bottom:704.551200px;}
.y4f{bottom:705.001200px;}
.yd4{bottom:705.676200px;}
.yb5{bottom:709.275000px;}
.y93{bottom:709.426200px;}
.y73{bottom:710.551200px;}
.y161{bottom:711.244350px;}
.y1c2{bottom:713.381850px;}
.yff{bottom:714.676200px;}
.y12c{bottom:715.426200px;}
.y4e{bottom:720.001200px;}
.y2e{bottom:720.817498px;}
.y22b{bottom:721.051200px;}
.y17a{bottom:721.426200px;}
.y72{bottom:724.051200px;}
.yd3{bottom:725.176200px;}
.y8{bottom:726.298500px;}
.y92{bottom:728.926200px;}
.y160{bottom:729.994350px;}
.y1c1{bottom:732.881850px;}
.yfe{bottom:734.176200px;}
.y12b{bottom:734.926200px;}
.y4d{bottom:735.001200px;}
.y71{bottom:737.551200px;}
.y1be{bottom:738.488700px;}
.y2d{bottom:738.817498px;}
.yb4{bottom:739.275000px;}
.y179{bottom:740.926200px;}
.yd2{bottom:744.676200px;}
.y1f7{bottom:745.426200px;}
.y91{bottom:748.426200px;}
.y15f{bottom:748.744350px;}
.y4c{bottom:750.001200px;}
.y70{bottom:751.051200px;}
.y1bd{bottom:751.988700px;}
.y1c0{bottom:752.381850px;}
.y4{bottom:752.599495px;}
.yfd{bottom:753.676200px;}
.y22a{bottom:754.051200px;}
.y12a{bottom:754.426200px;}
.yd1{bottom:764.176200px;}
.y6f{bottom:764.551200px;}
.y4b{bottom:765.001200px;}
.y1bc{bottom:765.488700px;}
.y90{bottom:767.926200px;}
.yb3{bottom:769.275000px;}
.y229{bottom:770.551200px;}
.y178{bottom:770.926200px;}
.yfc{bottom:773.176200px;}
.y129{bottom:773.926200px;}
.y1bb{bottom:778.988700px;}
.y4a{bottom:780.001200px;}
.yd0{bottom:783.676200px;}
.y228{bottom:787.051200px;}
.y6e{bottom:787.313700px;}
.y8f{bottom:787.426200px;}
.y2c{bottom:791.289002px;}
.y1f2{bottom:791.363700px;}
.yfb{bottom:792.676200px;}
.y128{bottom:793.426200px;}
.y49{bottom:795.001200px;}
.y15e{bottom:795.863700px;}
.y1ba{bottom:796.988700px;}
.y6d{bottom:800.813700px;}
.ycf{bottom:803.176200px;}
.y227{bottom:803.551200px;}
.y1f1{bottom:804.863700px;}
.y8e{bottom:806.926200px;}
.y48{bottom:810.001200px;}
.y1b9{bottom:810.488700px;}
.yfa{bottom:812.176200px;}
.y2b{bottom:812.289002px;}
.y127{bottom:812.926200px;}
.y6c{bottom:814.313700px;}
.y1f6{bottom:814.426200px;}
.y15d{bottom:815.363700px;}
.y1f0{bottom:818.363700px;}
.y226{bottom:820.051200px;}
.y1b8{bottom:823.988700px;}
.y47{bottom:825.001200px;}
.y8d{bottom:826.426200px;}
.y6b{bottom:827.813700px;}
.yf9{bottom:831.676200px;}
.y126{bottom:832.426200px;}
.yce{bottom:833.176200px;}
.y15c{bottom:834.863700px;}
.y1ef{bottom:836.363700px;}
.y225{bottom:836.551200px;}
.y1b7{bottom:837.488700px;}
.y46{bottom:840.001200px;}
.y6a{bottom:841.313700px;}
.y8c{bottom:845.926200px;}
.y1ee{bottom:849.863700px;}
.y1b6{bottom:850.988700px;}
.y125{bottom:851.926200px;}
.ycd{bottom:852.676200px;}
.y224{bottom:853.051200px;}
.y15b{bottom:854.363700px;}
.y1ed{bottom:863.363700px;}
.y1b5{bottom:864.488700px;}
.y8b{bottom:865.426200px;}
.y1f5{bottom:868.426200px;}
.y223{bottom:869.551200px;}
.y124{bottom:871.426200px;}
.y15a{bottom:873.863700px;}
.yf8{bottom:875.926200px;}
.y2a{bottom:875.940000px;}
.y1ec{bottom:876.863700px;}
.y1b4{bottom:877.988700px;}
.y3{bottom:879.369000px;}
.y8a{bottom:884.926200px;}
.y222{bottom:886.051200px;}
.y45{bottom:886.876200px;}
.y1eb{bottom:890.363700px;}
.y123{bottom:890.926200px;}
.y1b3{bottom:891.488700px;}
.y159{bottom:893.363700px;}
.yf7{bottom:895.426200px;}
.y221{bottom:902.551200px;}
.y1ea{bottom:903.863700px;}
.y89{bottom:904.426200px;}
.y1b2{bottom:904.988700px;}
.y29{bottom:907.440000px;}
.y122{bottom:910.426200px;}
.ycc{bottom:911.176200px;}
.y158{bottom:912.863700px;}
.y44{bottom:913.876200px;}
.yf6{bottom:914.926200px;}
.y1e9{bottom:917.363700px;}
.y1b1{bottom:918.488700px;}
.y220{bottom:919.051200px;}
.y88{bottom:923.926200px;}
.y121{bottom:929.926200px;}
.y1e8{bottom:930.863700px;}
.y1b0{bottom:931.988700px;}
.y157{bottom:932.363700px;}
.y21f{bottom:935.551200px;}
.y28{bottom:938.940000px;}
.ycb{bottom:940.426200px;}
.y87{bottom:943.426200px;}
.y1e7{bottom:944.363700px;}
.y2{bottom:945.126001px;}
.y1af{bottom:945.488700px;}
.y120{bottom:949.426200px;}
.y156{bottom:951.863700px;}
.y21e{bottom:952.051200px;}
.y43{bottom:952.876200px;}
.y1e6{bottom:957.863700px;}
.yf5{bottom:958.426200px;}
.y1ae{bottom:958.988700px;}
.y86{bottom:962.926200px;}
.y1f4{bottom:965.926200px;}
.y1{bottom:966.726000px;}
.y21d{bottom:968.551200px;}
.y11f{bottom:968.926200px;}
.y27{bottom:970.440000px;}
.y155{bottom:971.363700px;}
.y1ad{bottom:972.488700px;}
.y42{bottom:976.876200px;}
.yf4{bottom:977.926200px;}
.y85{bottom:982.426200px;}
.y1e5{bottom:984.863700px;}
.y21c{bottom:985.051200px;}
.y1ac{bottom:985.988700px;}
.y154{bottom:990.863700px;}
.yf3{bottom:997.426200px;}
.y1e4{bottom:998.363700px;}
.y11e{bottom:998.926200px;}
.y1ab{bottom:999.488700px;}
.y41{bottom:1000.876200px;}
.y21b{bottom:1001.551200px;}
.y84{bottom:1001.926200px;}
.y1f3{bottom:1009.426200px;}
.y153{bottom:1010.363700px;}
.yca{bottom:1011.676200px;}
.y1e3{bottom:1011.863700px;}
.y1aa{bottom:1012.988700px;}
.y21a{bottom:1018.051200px;}
.y83{bottom:1021.426200px;}
.y1e2{bottom:1025.363700px;}
.y1a9{bottom:1026.488700px;}
.y11d{bottom:1028.926200px;}
.y3d{bottom:1029.511200px;}
.y152{bottom:1029.863700px;}
.y219{bottom:1034.551200px;}
.y26{bottom:1035.546001px;}
.y82{bottom:1040.926200px;}
.y1e1{bottom:1043.738700px;}
.y1a8{bottom:1044.488700px;}
.y3c{bottom:1047.511200px;}
.y151{bottom:1049.363700px;}
.y218{bottom:1051.051200px;}
.y81{bottom:1060.426200px;}
.y1e0{bottom:1062.488700px;}
.y1a7{bottom:1063.238700px;}
.y217{bottom:1067.551200px;}
.y150{bottom:1068.863700px;}
.y80{bottom:1079.926200px;}
.y1df{bottom:1081.238700px;}
.y1a6{bottom:1081.988700px;}
.y40{bottom:1083.782250px;}
.y216{bottom:1084.051200px;}
.y3f{bottom:1097.407950px;}
.y14f{bottom:1098.863700px;}
.y7f{bottom:1099.426200px;}
.y1a5{bottom:1099.988700px;}
.y215{bottom:1100.551200px;}
.y3e{bottom:1110.907950px;}
.yb2{bottom:1141.238100px;}
.y7e{bottom:1141.313100px;}
.y25{bottom:1165.122003px;}
.h26{height:24.281040px;}
.h23{height:24.627912px;}
.h28{height:25.693595px;}
.h1a{height:30.030000px;}
.h17{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1e{height:33.750000px;}
.h1c{height:34.320000px;}
.h1b{height:34.608000px;}
.h1d{height:36.000000px;}
.hb{height:36.726562px;}
.h2b{height:38.335200px;}
.h16{height:38.610000px;}
.h20{height:38.934000px;}
.h18{height:40.500000px;}
.h29{height:40.755000px;}
.hf{height:41.317383px;}
.h27{height:42.000000px;}
.h22{height:42.600000px;}
.h24{height:44.443359px;}
.h12{height:45.000000px;}
.h1f{height:45.423000px;}
.h25{height:45.506180px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h21{height:46.501500px;}
.h15{height:47.250000px;}
.h19{height:47.586000px;}
.h3{height:48.195000px;}
.h2a{height:49.050000px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:488.625000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x27{left:123.000000px;}
.xb{left:126.112500px;}
.xe{left:144.000000px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.xf{left:202.144500px;}
.x4{left:203.484001px;}
.x10{left:225.394500px;}
.x9{left:228.743990px;}
.x11{left:235.744500px;}
.x12{left:245.794500px;}
.x1a{left:253.444350px;}
.x13{left:254.644500px;}
.x1b{left:263.644350px;}
.x1d{left:272.196998px;}
.x18{left:277.444350px;}
.x8{left:293.590494px;}
.x16{left:303.694500px;}
.x24{left:357.851850px;}
.x25{left:379.011450px;}
.x23{left:381.765450px;}
.x22{left:387.750150px;}
.x1e{left:394.744500px;}
.x15{left:428.550000px;}
.x3{left:454.959000px;}
.x14{left:458.794500px;}
.x26{left:565.175550px;}
.xd{left:570.946500px;}
.x1f{left:617.644350px;}
.x20{left:626.944500px;}
.x19{left:640.444350px;}
.xc{left:650.025750px;}
.x1c{left:659.644350px;}
.x17{left:664.894350px;}
.x21{left:690.769500px;}
@media print{
.v1{vertical-align:-13.867200pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.080000pt;}
.v2{vertical-align:17.600000pt;}
.ls16{letter-spacing:-28.053333pt;}
.ls17{letter-spacing:-1.066667pt;}
.ls1a{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.682667pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.339164pt;}
.ls18{letter-spacing:-0.298667pt;}
.ls19{letter-spacing:-0.170667pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.123332pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.400000pt;}
.lsa{letter-spacing:0.400830pt;}
.ls4{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls6{letter-spacing:11.835200pt;}
.ls22{letter-spacing:12.355200pt;}
.ls7{letter-spacing:65.049067pt;}
.lse{letter-spacing:72.138158pt;}
.ls13{letter-spacing:75.253333pt;}
.lsf{letter-spacing:81.245131pt;}
.ls14{letter-spacing:175.348696pt;}
.lsd{letter-spacing:176.053333pt;}
.lsb{letter-spacing:621.226667pt;}
.ls20{letter-spacing:760.770667pt;}
.ls21{letter-spacing:766.804800pt;}
.ls1c{letter-spacing:1305.101333pt;}
.ls1d{letter-spacing:1311.135467pt;}
.ls1e{letter-spacing:1390.496000pt;}
.ls1f{letter-spacing:1396.530133pt;}
.ws7b{word-spacing:-195.722667pt;}
.ws83{word-spacing:-191.665790pt;}
.ws82{word-spacing:-54.608000pt;}
.ws87{word-spacing:-53.333333pt;}
.ws3{word-spacing:-16.202667pt;}
.ws1{word-spacing:-12.432000pt;}
.ws39{word-spacing:-11.850667pt;}
.ws6{word-spacing:-11.306667pt;}
.ws7{word-spacing:-10.773333pt;}
.ws14f{word-spacing:-10.176000pt;}
.wsf9{word-spacing:-9.706667pt;}
.wsb{word-spacing:-9.045333pt;}
.ws78{word-spacing:-8.736000pt;}
.wsa{word-spacing:-8.720000pt;}
.ws8{word-spacing:-8.618667pt;}
.wse1{word-spacing:-8.362667pt;}
.ws4{word-spacing:-8.320000pt;}
.ws2{word-spacing:-7.840000pt;}
.wsbb{word-spacing:-7.765333pt;}
.wsda{word-spacing:-7.349333pt;}
.ws9{word-spacing:-7.317333pt;}
.wse0{word-spacing:-6.698667pt;}
.ws88{word-spacing:-6.309333pt;}
.wsf5{word-spacing:-2.432000pt;}
.ws5{word-spacing:-2.370133pt;}
.wsfa{word-spacing:-2.066400pt;}
.ws61{word-spacing:-0.400000pt;}
.ws0{word-spacing:0.000000pt;}
.ws80{word-spacing:0.053333pt;}
.ws169{word-spacing:2.736000pt;}
.wsf1{word-spacing:3.040000pt;}
.ws168{word-spacing:3.216000pt;}
.ws18{word-spacing:4.368000pt;}
.ws41{word-spacing:4.373333pt;}
.wsf6{word-spacing:4.949333pt;}
.ws153{word-spacing:4.992000pt;}
.ws14c{word-spacing:5.034667pt;}
.ws17{word-spacing:5.088000pt;}
.ws145{word-spacing:5.120000pt;}
.ws124{word-spacing:5.173333pt;}
.ws163{word-spacing:5.184000pt;}
.ws2a{word-spacing:5.226667pt;}
.ws157{word-spacing:5.232000pt;}
.ws93{word-spacing:5.440000pt;}
.ws38{word-spacing:5.504000pt;}
.ws14d{word-spacing:5.589333pt;}
.ws8a{word-spacing:5.653333pt;}
.ws173{word-spacing:5.664000pt;}
.wsad{word-spacing:5.706667pt;}
.ws4d{word-spacing:5.760000pt;}
.ws154{word-spacing:5.808000pt;}
.wsa5{word-spacing:5.813333pt;}
.ws32{word-spacing:5.861333pt;}
.wsd{word-spacing:5.880000pt;}
.ws37{word-spacing:5.920000pt;}
.ws151{word-spacing:5.952000pt;}
.ws7c{word-spacing:6.012423pt;}
.ws99{word-spacing:6.080000pt;}
.ws65{word-spacing:6.133333pt;}
.ws15{word-spacing:6.144000pt;}
.ws108{word-spacing:6.186667pt;}
.wsf4{word-spacing:6.229333pt;}
.wse{word-spacing:6.280000pt;}
.ws175{word-spacing:6.288000pt;}
.ws103{word-spacing:6.293333pt;}
.ws71{word-spacing:6.346667pt;}
.ws31{word-spacing:6.400000pt;}
.ws101{word-spacing:6.453333pt;}
.ws14e{word-spacing:6.485333pt;}
.ws147{word-spacing:6.560000pt;}
.ws16a{word-spacing:6.576000pt;}
.ws3b{word-spacing:6.613333pt;}
.ws1d{word-spacing:6.624000pt;}
.wsd8{word-spacing:6.656000pt;}
.ws4e{word-spacing:6.666667pt;}
.ws34{word-spacing:6.698667pt;}
.ws43{word-spacing:6.720000pt;}
.wscf{word-spacing:6.773333pt;}
.wsfe{word-spacing:6.826667pt;}
.ws9e{word-spacing:6.880000pt;}
.ws152{word-spacing:6.912000pt;}
.ws10a{word-spacing:6.933333pt;}
.wsf7{word-spacing:6.954667pt;}
.ws58{word-spacing:6.986667pt;}
.ws14{word-spacing:7.008000pt;}
.ws9c{word-spacing:7.040000pt;}
.ws69{word-spacing:7.093333pt;}
.ws156{word-spacing:7.104000pt;}
.ws12a{word-spacing:7.125333pt;}
.wsf0{word-spacing:7.146667pt;}
.wsff{word-spacing:7.200000pt;}
.wsd9{word-spacing:7.210667pt;}
.ws166{word-spacing:7.248000pt;}
.ws25{word-spacing:7.253333pt;}
.ws105{word-spacing:7.306667pt;}
.ws174{word-spacing:7.344000pt;}
.ws148{word-spacing:7.413333pt;}
.wscc{word-spacing:7.466667pt;}
.ws12{word-spacing:7.488000pt;}
.ws100{word-spacing:7.520000pt;}
.ws11{word-spacing:7.536000pt;}
.ws36{word-spacing:7.541333pt;}
.ws6e{word-spacing:7.573333pt;}
.ws125{word-spacing:7.626667pt;}
.ws155{word-spacing:7.632000pt;}
.ws3a{word-spacing:7.680000pt;}
.ws1c{word-spacing:7.728000pt;}
.ws2d{word-spacing:7.733333pt;}
.ws2e{word-spacing:7.786667pt;}
.wsd6{word-spacing:7.802667pt;}
.ws1f{word-spacing:7.840000pt;}
.ws3e{word-spacing:7.893333pt;}
.ws63{word-spacing:7.946667pt;}
.wsd7{word-spacing:7.954667pt;}
.ws97{word-spacing:8.000000pt;}
.ws21{word-spacing:8.053333pt;}
.ws5c{word-spacing:8.106667pt;}
.ws1e{word-spacing:8.160000pt;}
.ws92{word-spacing:8.176000pt;}
.ws15c{word-spacing:8.208000pt;}
.ws5f{word-spacing:8.213333pt;}
.ws67{word-spacing:8.232000pt;}
.wsf8{word-spacing:8.362667pt;}
.ws30{word-spacing:8.373333pt;}
.ws165{word-spacing:8.448000pt;}
.ws45{word-spacing:8.480000pt;}
.wsc{word-spacing:8.533333pt;}
.ws158{word-spacing:8.544000pt;}
.ws22{word-spacing:8.586667pt;}
.ws164{word-spacing:8.592000pt;}
.ws127{word-spacing:8.664000pt;}
.ws150{word-spacing:8.736000pt;}
.ws8f{word-spacing:8.746667pt;}
.wsd2{word-spacing:8.800000pt;}
.ws104{word-spacing:8.853333pt;}
.ws128{word-spacing:8.866667pt;}
.ws15e{word-spacing:8.928000pt;}
.ws96{word-spacing:8.960000pt;}
.ws167{word-spacing:8.976000pt;}
.ws51{word-spacing:9.013333pt;}
.ws178{word-spacing:9.024000pt;}
.ws24{word-spacing:9.066667pt;}
.wsa6{word-spacing:9.120000pt;}
.ws27{word-spacing:9.173333pt;}
.wsfd{word-spacing:9.226667pt;}
.ws9a{word-spacing:9.280000pt;}
.ws8d{word-spacing:9.333333pt;}
.ws4b{word-spacing:9.386667pt;}
.ws1b{word-spacing:9.408000pt;}
.ws91{word-spacing:9.440000pt;}
.ws16b{word-spacing:9.456000pt;}
.ws26{word-spacing:9.493333pt;}
.ws56{word-spacing:9.504000pt;}
.ws10{word-spacing:9.520000pt;}
.ws10c{word-spacing:9.546667pt;}
.ws15b{word-spacing:9.552000pt;}
.ws14b{word-spacing:9.600000pt;}
.wsfc{word-spacing:9.653333pt;}
.ws177{word-spacing:9.792000pt;}
.wscd{word-spacing:9.866667pt;}
.ws64{word-spacing:9.920000pt;}
.ws59{word-spacing:9.973333pt;}
.ws75{word-spacing:10.026667pt;}
.ws35{word-spacing:10.042667pt;}
.ws3d{word-spacing:10.133333pt;}
.ws16c{word-spacing:10.176000pt;}
.ws2c{word-spacing:10.186667pt;}
.ws4c{word-spacing:10.240000pt;}
.ws46{word-spacing:10.293333pt;}
.ws74{word-spacing:10.400000pt;}
.ws15d{word-spacing:10.416000pt;}
.ws14a{word-spacing:10.506667pt;}
.ws9d{word-spacing:10.560000pt;}
.ws16f{word-spacing:10.608000pt;}
.ws8b{word-spacing:10.666667pt;}
.ws172{word-spacing:10.704000pt;}
.ws28{word-spacing:10.720000pt;}
.ws160{word-spacing:10.752000pt;}
.wsa8{word-spacing:10.826667pt;}
.ws44{word-spacing:10.880000pt;}
.ws8c{word-spacing:10.933333pt;}
.ws162{word-spacing:10.992000pt;}
.ws10b{word-spacing:11.040000pt;}
.ws161{word-spacing:11.088000pt;}
.ws4a{word-spacing:11.093333pt;}
.ws15a{word-spacing:11.136000pt;}
.ws126{word-spacing:11.146667pt;}
.ws13{word-spacing:11.184000pt;}
.wsf2{word-spacing:11.253333pt;}
.ws3f{word-spacing:11.306667pt;}
.wsd1{word-spacing:11.360000pt;}
.ws176{word-spacing:11.424000pt;}
.ws159{word-spacing:11.472000pt;}
.ws90{word-spacing:11.520000pt;}
.wsd4{word-spacing:11.626667pt;}
.wsfb{word-spacing:11.680000pt;}
.ws33{word-spacing:11.733333pt;}
.ws54{word-spacing:11.840000pt;}
.ws171{word-spacing:11.856000pt;}
.ws62{word-spacing:11.893333pt;}
.ws121{word-spacing:11.946667pt;}
.ws20{word-spacing:12.000000pt;}
.ws5e{word-spacing:12.053333pt;}
.wsa3{word-spacing:12.160000pt;}
.wsab{word-spacing:12.213333pt;}
.ws3c{word-spacing:12.320000pt;}
.ws16e{word-spacing:12.336000pt;}
.wsf{word-spacing:12.394667pt;}
.ws50{word-spacing:12.426667pt;}
.ws5d{word-spacing:12.480000pt;}
.ws15f{word-spacing:12.528000pt;}
.wsac{word-spacing:12.586667pt;}
.ws29{word-spacing:12.640000pt;}
.ws42{word-spacing:12.746667pt;}
.ws23{word-spacing:12.853333pt;}
.ws48{word-spacing:12.906667pt;}
.ws5a{word-spacing:13.013333pt;}
.ws57{word-spacing:13.120000pt;}
.ws9f{word-spacing:13.173333pt;}
.ws89{word-spacing:13.226667pt;}
.wsa2{word-spacing:13.333333pt;}
.ws129{word-spacing:13.354667pt;}
.ws6a{word-spacing:13.386667pt;}
.wsa0{word-spacing:13.440000pt;}
.ws123{word-spacing:13.546667pt;}
.wsce{word-spacing:13.653333pt;}
.wsa7{word-spacing:13.706667pt;}
.ws53{word-spacing:13.760000pt;}
.ws6f{word-spacing:13.813333pt;}
.ws170{word-spacing:13.824000pt;}
.ws47{word-spacing:13.920000pt;}
.wsaa{word-spacing:13.973333pt;}
.ws122{word-spacing:14.133333pt;}
.ws95{word-spacing:14.293333pt;}
.wsd5{word-spacing:14.400000pt;}
.wsa9{word-spacing:14.453333pt;}
.ws146{word-spacing:14.560000pt;}
.ws6d{word-spacing:14.613333pt;}
.ws72{word-spacing:14.720000pt;}
.ws106{word-spacing:15.040000pt;}
.ws107{word-spacing:15.146667pt;}
.ws2f{word-spacing:15.360000pt;}
.wsa1{word-spacing:15.413333pt;}
.wsef{word-spacing:15.466667pt;}
.ws6b{word-spacing:15.573333pt;}
.ws49{word-spacing:15.626667pt;}
.ws102{word-spacing:15.680000pt;}
.wsd3{word-spacing:15.733333pt;}
.ws52{word-spacing:16.000000pt;}
.ws55{word-spacing:16.053333pt;}
.ws5b{word-spacing:16.160000pt;}
.ws16{word-spacing:16.272000pt;}
.ws68{word-spacing:16.320000pt;}
.ws9b{word-spacing:16.800000pt;}
.wsa4{word-spacing:16.853333pt;}
.ws70{word-spacing:16.906667pt;}
.ws73{word-spacing:17.066667pt;}
.ws94{word-spacing:17.546667pt;}
.ws19{word-spacing:17.760000pt;}
.ws109{word-spacing:18.133333pt;}
.ws77{word-spacing:18.240000pt;}
.ws6c{word-spacing:18.400000pt;}
.ws2b{word-spacing:18.826667pt;}
.ws16d{word-spacing:19.152000pt;}
.wsd0{word-spacing:19.786667pt;}
.ws1a{word-spacing:19.920000pt;}
.ws4f{word-spacing:20.640000pt;}
.ws98{word-spacing:20.800000pt;}
.wscb{word-spacing:20.853333pt;}
.ws149{word-spacing:20.960000pt;}
.wsf3{word-spacing:21.546667pt;}
.ws60{word-spacing:21.920000pt;}
.ws40{word-spacing:24.160000pt;}
.ws76{word-spacing:24.320000pt;}
.ws8e{word-spacing:25.760000pt;}
.ws7d{word-spacing:29.127998pt;}
.ws66{word-spacing:31.573333pt;}
.wsc9{word-spacing:51.097067pt;}
.ws85{word-spacing:55.626667pt;}
.wsc7{word-spacing:56.430933pt;}
.wsca{word-spacing:57.582933pt;}
.ws79{word-spacing:57.920000pt;}
.wsc5{word-spacing:65.859733pt;}
.wsbe{word-spacing:70.062400pt;}
.ws86{word-spacing:74.828769pt;}
.ws84{word-spacing:77.095000pt;}
.wsc8{word-spacing:81.859733pt;}
.wsc0{word-spacing:88.323733pt;}
.wsc4{word-spacing:88.344533pt;}
.wsbd{word-spacing:111.151467pt;}
.ws81{word-spacing:119.520000pt;}
.wsc3{word-spacing:122.362667pt;}
.wsbc{word-spacing:148.589867pt;}
.wsbf{word-spacing:158.937600pt;}
.ws7f{word-spacing:178.862620pt;}
.ws7e{word-spacing:179.880111pt;}
.ws7a{word-spacing:193.261662pt;}
.wsc6{word-spacing:219.929600pt;}
.wsc2{word-spacing:221.465600pt;}
.wsae{word-spacing:261.151467pt;}
.wsb4{word-spacing:267.616000pt;}
.wsb6{word-spacing:268.724800pt;}
.wsb0{word-spacing:270.154667pt;}
.ws12e{word-spacing:298.107200pt;}
.wsc1{word-spacing:299.963200pt;}
.ws12d{word-spacing:306.107200pt;}
.ws13d{word-spacing:323.536533pt;}
.ws139{word-spacing:331.813867pt;}
.ws135{word-spacing:340.688533pt;}
.ws130{word-spacing:344.784000pt;}
.ws132{word-spacing:347.707200pt;}
.ws137{word-spacing:347.707733pt;}
.ws13b{word-spacing:351.632533pt;}
.wsb2{word-spacing:389.424000pt;}
.wsdc{word-spacing:448.836267pt;}
.wsdb{word-spacing:450.180800pt;}
.wse3{word-spacing:461.308267pt;}
.wse6{word-spacing:478.460267pt;}
.wsb1{word-spacing:481.200000pt;}
.wsde{word-spacing:481.412800pt;}
.wsba{word-spacing:527.536000pt;}
.wsb8{word-spacing:535.856000pt;}
.wsec{word-spacing:538.194133pt;}
.wsb5{word-spacing:538.501333pt;}
.wsb3{word-spacing:540.677333pt;}
.wsaf{word-spacing:540.890667pt;}
.ws131{word-spacing:545.830400pt;}
.ws13e{word-spacing:546.811733pt;}
.wsb9{word-spacing:550.021333pt;}
.wsb7{word-spacing:550.618667pt;}
.ws13c{word-spacing:571.900267pt;}
.ws138{word-spacing:600.486400pt;}
.ws134{word-spacing:603.131733pt;}
.ws133{word-spacing:605.307733pt;}
.ws12f{word-spacing:605.521067pt;}
.ws10d{word-spacing:620.970133pt;}
.ws114{word-spacing:626.825600pt;}
.ws13a{word-spacing:640.081067pt;}
.ws136{word-spacing:640.678400pt;}
.ws11c{word-spacing:643.977600pt;}
.ws118{word-spacing:652.254400pt;}
.wse2{word-spacing:657.308267pt;}
.ws112{word-spacing:661.129600pt;}
.ws11e{word-spacing:669.406400pt;}
.ws11a{word-spacing:686.558400pt;}
.ws10f{word-spacing:703.710400pt;}
.ws143{word-spacing:724.795733pt;}
.ws13f{word-spacing:731.173867pt;}
.wseb{word-spacing:749.552000pt;}
.wsdf{word-spacing:774.000000pt;}
.wsea{word-spacing:794.907200pt;}
.wse5{word-spacing:805.872533pt;}
.wse4{word-spacing:808.048533pt;}
.wse8{word-spacing:828.656000pt;}
.wsdd{word-spacing:833.690667pt;}
.ws142{word-spacing:834.230400pt;}
.ws144{word-spacing:839.653867pt;}
.wse9{word-spacing:842.821333pt;}
.wse7{word-spacing:843.418667pt;}
.ws141{word-spacing:854.497600pt;}
.ws12c{word-spacing:880.907733pt;}
.ws140{word-spacing:883.425600pt;}
.ws12b{word-spacing:900.491733pt;}
.ws111{word-spacing:918.763733pt;}
.ws11d{word-spacing:1011.008000pt;}
.ws110{word-spacing:1035.456000pt;}
.ws11b{word-spacing:1056.362667pt;}
.ws115{word-spacing:1067.328000pt;}
.ws113{word-spacing:1069.504000pt;}
.ws117{word-spacing:1090.112000pt;}
.ws10e{word-spacing:1095.146667pt;}
.ws119{word-spacing:1104.277333pt;}
.ws116{word-spacing:1104.874667pt;}
.wsee{word-spacing:1244.529600pt;}
.wsed{word-spacing:1275.505067pt;}
.ws120{word-spacing:1329.924267pt;}
.ws11f{word-spacing:1360.899733pt;}
._18{margin-left:-106.122667pt;}
._5e{margin-left:-25.676826pt;}
._1f{margin-left:-6.937440pt;}
._a{margin-left:-4.970706pt;}
._1{margin-left:-3.680000pt;}
._5{margin-left:-2.756813pt;}
._0{margin-left:-1.706654pt;}
._4{width:0.932800pt;}
._3{width:1.845307pt;}
._2d{width:3.079402pt;}
._b{width:4.154654pt;}
._2{width:5.333268pt;}
._d{width:7.191467pt;}
._10{width:8.237600pt;}
._7{width:9.952000pt;}
._2e{width:10.908774pt;}
._c{width:12.501841pt;}
._e{width:13.450641pt;}
._5d{width:15.391948pt;}
._6{width:18.309841pt;}
._52{width:21.530667pt;}
._2b{width:29.066667pt;}
._2c{width:30.933333pt;}
._8{width:53.938654pt;}
._19{width:73.077333pt;}
._40{width:79.555200pt;}
._3f{width:84.505600pt;}
._4b{width:91.161067pt;}
._25{width:92.272000pt;}
._50{width:97.786667pt;}
._51{width:99.693333pt;}
._43{width:100.889067pt;}
._4a{width:102.041067pt;}
._3a{width:106.563200pt;}
._24{width:109.344000pt;}
._4c{width:110.483746pt;}
._12{width:112.427187pt;}
._f{width:117.065041pt;}
._9{width:118.826133pt;}
._13{width:122.774946pt;}
._3c{width:124.419733pt;}
._3e{width:125.392533pt;}
._4e{width:128.508267pt;}
._47{width:131.011733pt;}
._45{width:133.203213pt;}
._4f{width:141.678400pt;}
._29{width:142.920514pt;}
._49{width:146.145600pt;}
._3b{width:148.338667pt;}
._26{width:152.544000pt;}
._21{width:154.907200pt;}
._41{width:157.392533pt;}
._44{width:162.725333pt;}
._3d{width:172.100267pt;}
._23{width:173.973333pt;}
._1d{width:181.338515pt;}
._1b{width:182.950234pt;}
._28{width:185.060066pt;}
._17{width:197.948288pt;}
._27{width:199.459108pt;}
._16{width:201.154927pt;}
._22{width:207.738667pt;}
._11{width:214.186667pt;}
._4d{width:216.260267pt;}
._39{width:218.149854pt;}
._1a{width:224.544000pt;}
._42{width:228.377600pt;}
._2a{width:241.586327pt;}
._48{width:249.155733pt;}
._15{width:260.354415pt;}
._46{width:263.363733pt;}
._36{width:278.516800pt;}
._37{width:282.250133pt;}
._20{width:284.137357pt;}
._14{width:289.152499pt;}
._32{width:296.378667pt;}
._31{width:299.828800pt;}
._30{width:301.301867pt;}
._33{width:302.516800pt;}
._38{width:322.250667pt;}
._1e{width:333.860446pt;}
._1c{width:338.066387pt;}
._35{width:342.382933pt;}
._6a{width:352.230400pt;}
._67{width:356.069867pt;}
._69{width:366.069333pt;}
._66{width:369.004267pt;}
._68{width:370.164800pt;}
._6c{width:381.364800pt;}
._6d{width:391.937600pt;}
._6b{width:394.640533pt;}
._34{width:411.978133pt;}
._58{width:489.775467pt;}
._2f{width:490.735454pt;}
._57{width:512.252800pt;}
._56{width:521.126933pt;}
._65{width:527.610120pt;}
._54{width:529.538667pt;}
._55{width:546.556800pt;}
._59{width:621.651733pt;}
._5a{width:687.326400pt;}
._6e{width:717.474120pt;}
._64{width:733.958959pt;}
._53{width:743.720520pt;}
._60{width:877.835733pt;}
._61{width:943.510400pt;}
._5f{width:999.903987pt;}
._5c{width:1106.312000pt;}
._63{width:1191.707200pt;}
._5b{width:1240.812787pt;}
._62{width:1326.207454pt;}
.fs10{font-size:27.733333pt;}
.fsc{font-size:30.833067pt;}
.fse{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsf{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:54.608750pt;}
.fs1{font-size:56.000000pt;}
.fsb{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;}
.ye3{bottom:23.867467pt;}
.ye0{bottom:27.334267pt;}
.y7{bottom:31.933340pt;}
.y69{bottom:48.013867pt;}
.y68{bottom:58.680533pt;}
.y6{bottom:59.133337pt;}
.y3b{bottom:60.086668pt;}
.y67{bottom:69.347200pt;}
.y3a{bottom:74.753335pt;}
.yb1{bottom:75.800000pt;}
.y214{bottom:75.934400pt;}
.y14e{bottom:76.133333pt;}
.y198{bottom:77.267733pt;}
.y64{bottom:80.347200pt;}
.y5{bottom:86.333337pt;}
.y14d{bottom:88.133333pt;}
.y66{bottom:90.013867pt;}
.y213{bottom:90.601067pt;}
.yb0{bottom:93.133333pt;}
.y1de{bottom:93.466667pt;}
.y197{bottom:94.601067pt;}
.yf2{bottom:100.334000pt;}
.y11c{bottom:100.601067pt;}
.y65{bottom:102.013867pt;}
.y14c{bottom:104.133333pt;}
.y212{bottom:105.267733pt;}
.yaf{bottom:110.466667pt;}
.y1dd{bottom:110.800000pt;}
.y196{bottom:111.934400pt;}
.y14b{bottom:116.133333pt;}
.yf1{bottom:117.667333pt;}
.y11b{bottom:117.934400pt;}
.y1a4{bottom:119.800000pt;}
.y211{bottom:119.934400pt;}
.y24{bottom:123.790666pt;}
.yae{bottom:127.800000pt;}
.y14a{bottom:128.133333pt;}
.y195{bottom:129.267733pt;}
.y210{bottom:134.601067pt;}
.yf0{bottom:135.000667pt;}
.y11a{bottom:135.267733pt;}
.y149{bottom:140.133333pt;}
.yad{bottom:145.133333pt;}
.y1dc{bottom:145.466667pt;}
.y194{bottom:146.601067pt;}
.y63{bottom:148.001067pt;}
.y20f{bottom:149.267733pt;}
.y148{bottom:152.133333pt;}
.yef{bottom:152.334000pt;}
.y119{bottom:152.601067pt;}
.yac{bottom:162.466667pt;}
.y1db{bottom:162.800000pt;}
.y193{bottom:163.934400pt;}
.y147{bottom:164.133333pt;}
.y1a3{bottom:165.278133pt;}
.y62{bottom:165.334400pt;}
.yee{bottom:169.667333pt;}
.y118{bottom:169.934400pt;}
.y1b{bottom:175.052000pt;}
.y146{bottom:176.133333pt;}
.y20e{bottom:178.601067pt;}
.yab{bottom:179.800000pt;}
.y1da{bottom:180.133333pt;}
.y192{bottom:181.267733pt;}
.y1a2{bottom:182.611467pt;}
.y61{bottom:182.667733pt;}
.y23{bottom:186.238666pt;}
.y1a{bottom:186.252002pt;}
.yed{bottom:187.000667pt;}
.y117{bottom:187.267733pt;}
.y145{bottom:188.133333pt;}
.y20d{bottom:193.267733pt;}
.yaa{bottom:197.133333pt;}
.y22{bottom:197.438668pt;}
.y19{bottom:197.452004pt;}
.y1d9{bottom:197.466667pt;}
.y191{bottom:198.601067pt;}
.y1a1{bottom:199.944800pt;}
.y60{bottom:200.001067pt;}
.y144{bottom:200.133333pt;}
.yec{bottom:204.334000pt;}
.y116{bottom:204.601067pt;}
.y20c{bottom:207.934400pt;}
.y21{bottom:208.638670pt;}
.y18{bottom:208.651996pt;}
.y143{bottom:212.133333pt;}
.ya9{bottom:214.466667pt;}
.y1d8{bottom:214.800000pt;}
.y190{bottom:215.934400pt;}
.y1a0{bottom:217.278133pt;}
.y5f{bottom:217.334400pt;}
.y39{bottom:221.134667pt;}
.y115{bottom:221.934400pt;}
.y20b{bottom:222.601067pt;}
.y142{bottom:228.133333pt;}
.y20{bottom:231.038664pt;}
.y17{bottom:231.052000pt;}
.ya8{bottom:231.800000pt;}
.y1d7{bottom:232.133333pt;}
.y18f{bottom:233.267733pt;}
.y19f{bottom:234.611467pt;}
.y5e{bottom:234.667733pt;}
.y20a{bottom:237.267733pt;}
.y114{bottom:239.267733pt;}
.y1f{bottom:242.238666pt;}
.y16{bottom:242.252002pt;}
.y141{bottom:244.800000pt;}
.ya7{bottom:249.133333pt;}
.y1d6{bottom:249.466667pt;}
.yeb{bottom:249.667333pt;}
.y18e{bottom:250.601067pt;}
.y209{bottom:251.934400pt;}
.y19e{bottom:251.944800pt;}
.y5d{bottom:252.001067pt;}
.y1e{bottom:253.438668pt;}
.y15{bottom:253.451999pt;}
.y113{bottom:265.934400pt;}
.ya6{bottom:266.466667pt;}
.y208{bottom:266.601067pt;}
.y1d5{bottom:266.800000pt;}
.yea{bottom:267.000667pt;}
.y19d{bottom:269.278133pt;}
.y5c{bottom:269.334400pt;}
.y1d{bottom:275.838667pt;}
.y14{bottom:275.852001pt;}
.y18d{bottom:277.267733pt;}
.y38{bottom:278.334667pt;}
.y207{bottom:281.267733pt;}
.yc9{bottom:283.800000pt;}
.y1d4{bottom:284.133333pt;}
.y140{bottom:284.233733pt;}
.ye9{bottom:284.334000pt;}
.y19c{bottom:286.611467pt;}
.y5b{bottom:286.667733pt;}
.y1c{bottom:287.038667pt;}
.y13{bottom:287.052000pt;}
.ya5{bottom:293.133333pt;}
.y206{bottom:295.934400pt;}
.y13f{bottom:296.233733pt;}
.yc8{bottom:301.133333pt;}
.ye8{bottom:301.667333pt;}
.y19b{bottom:303.944800pt;}
.y5a{bottom:304.001067pt;}
.y112{bottom:305.934400pt;}
.y12{bottom:309.452000pt;}
.y205{bottom:310.601067pt;}
.y1d3{bottom:310.800000pt;}
.y13e{bottom:312.233733pt;}
.yc7{bottom:318.466667pt;}
.ye7{bottom:319.000667pt;}
.y19a{bottom:321.278133pt;}
.y59{bottom:321.334400pt;}
.y111{bottom:323.267733pt;}
.y13d{bottom:324.233733pt;}
.y204{bottom:325.267733pt;}
.y18c{bottom:329.267733pt;}
.y240{bottom:332.934400pt;}
.yc6{bottom:335.800000pt;}
.ya4{bottom:335.934400pt;}
.y13c{bottom:336.233733pt;}
.y37{bottom:338.140000pt;}
.y199{bottom:338.611467pt;}
.y58{bottom:338.667733pt;}
.y203{bottom:339.934400pt;}
.y110{bottom:340.601067pt;}
.y11{bottom:343.809333pt;}
.y18b{bottom:346.601067pt;}
.y23f{bottom:347.601067pt;}
.y13b{bottom:348.233733pt;}
.ydf{bottom:352.266667pt;}
.yc5{bottom:353.133333pt;}
.ya3{bottom:353.267733pt;}
.y202{bottom:354.601067pt;}
.y57{bottom:356.001067pt;}
.ye6{bottom:356.131181pt;}
.ye4{bottom:356.134133pt;}
.y1d2{bottom:356.783867pt;}
.y10f{bottom:357.934400pt;}
.ye5{bottom:359.600933pt;}
.y177{bottom:360.217200pt;}
.y13a{bottom:360.233733pt;}
.y23e{bottom:362.267733pt;}
.y10{bottom:362.706666pt;}
.y18a{bottom:363.934400pt;}
.y201{bottom:369.267733pt;}
.yde{bottom:369.600933pt;}
.yc4{bottom:370.466667pt;}
.ya2{bottom:370.601067pt;}
.y176{bottom:372.217200pt;}
.y139{bottom:372.233733pt;}
.y1bf{bottom:372.756267pt;}
.y56{bottom:373.334400pt;}
.y1d1{bottom:374.117200pt;}
.y10e{bottom:375.267733pt;}
.ye1{bottom:376.134133pt;}
.y23d{bottom:376.934400pt;}
.ye2{bottom:379.600933pt;}
.y189{bottom:381.267733pt;}
.y200{bottom:383.934400pt;}
.y175{bottom:384.217200pt;}
.y138{bottom:384.233733pt;}
.yc3{bottom:387.800000pt;}
.ya1{bottom:387.934400pt;}
.y55{bottom:390.667733pt;}
.y1d0{bottom:391.450533pt;}
.y23c{bottom:391.601067pt;}
.y10d{bottom:392.601067pt;}
.y36{bottom:392.734667pt;}
.y174{bottom:396.217200pt;}
.y137{bottom:396.233733pt;}
.y188{bottom:398.601067pt;}
.yc2{bottom:405.133333pt;}
.ya0{bottom:405.267733pt;}
.y23b{bottom:406.267733pt;}
.y1ff{bottom:407.934400pt;}
.y54{bottom:408.001067pt;}
.y136{bottom:408.233733pt;}
.y1cf{bottom:408.783867pt;}
.y10c{bottom:409.934400pt;}
.ydd{bottom:411.934400pt;}
.y173{bottom:412.217200pt;}
.y187{bottom:415.934400pt;}
.y23a{bottom:420.934400pt;}
.yc1{bottom:422.466667pt;}
.y9f{bottom:422.601067pt;}
.y172{bottom:424.217200pt;}
.y135{bottom:424.233733pt;}
.y53{bottom:425.334400pt;}
.y1ce{bottom:426.117200pt;}
.y10b{bottom:427.267733pt;}
.ydc{bottom:429.267733pt;}
.yf{bottom:430.990669pt;}
.y186{bottom:433.267733pt;}
.y239{bottom:435.601067pt;}
.y171{bottom:436.217200pt;}
.yc0{bottom:439.800000pt;}
.y9e{bottom:439.934400pt;}
.y134{bottom:440.900400pt;}
.y1cd{bottom:443.450533pt;}
.y10a{bottom:444.601067pt;}
.ye{bottom:446.990669pt;}
.y170{bottom:448.217200pt;}
.y238{bottom:450.267733pt;}
.y185{bottom:450.601067pt;}
.y52{bottom:452.001067pt;}
.y35{bottom:452.540000pt;}
.y1fe{bottom:454.601067pt;}
.ydb{bottom:455.934400pt;}
.ybf{bottom:457.133333pt;}
.y9d{bottom:457.267733pt;}
.y16f{bottom:460.217200pt;}
.y1cc{bottom:460.783867pt;}
.y109{bottom:461.934400pt;}
.yd{bottom:462.990669pt;}
.y237{bottom:464.934400pt;}
.y184{bottom:467.934400pt;}
.y1fd{bottom:469.267733pt;}
.y16e{bottom:472.217200pt;}
.ybe{bottom:474.466667pt;}
.y9c{bottom:474.601067pt;}
.y1cb{bottom:478.117200pt;}
.yc{bottom:478.990666pt;}
.y108{bottom:479.267733pt;}
.y236{bottom:479.601067pt;}
.yda{bottom:482.601067pt;}
.y34{bottom:483.073335pt;}
.y16d{bottom:484.217200pt;}
.y183{bottom:485.267733pt;}
.ybd{bottom:491.800000pt;}
.y9b{bottom:491.934400pt;}
.y1fc{bottom:493.267733pt;}
.y235{bottom:494.267733pt;}
.y7d{bottom:494.534400pt;}
.yb{bottom:494.990666pt;}
.y1ca{bottom:495.450533pt;}
.y16c{bottom:496.217200pt;}
.y33{bottom:496.406668pt;}
.y107{bottom:496.601067pt;}
.y133{bottom:497.267733pt;}
.y182{bottom:502.601067pt;}
.y7c{bottom:506.534400pt;}
.y16b{bottom:508.217200pt;}
.y234{bottom:508.934400pt;}
.ybc{bottom:509.133333pt;}
.y9a{bottom:509.267733pt;}
.y32{bottom:509.740000pt;}
.y1c9{bottom:512.783867pt;}
.y106{bottom:513.934400pt;}
.y132{bottom:514.601067pt;}
.y7b{bottom:518.534400pt;}
.y181{bottom:519.934400pt;}
.y16a{bottom:520.217200pt;}
.y233{bottom:523.601067pt;}
.ybb{bottom:526.466667pt;}
.y99{bottom:526.601067pt;}
.y1c8{bottom:530.117200pt;}
.y105{bottom:531.267733pt;}
.yd9{bottom:531.934400pt;}
.y169{bottom:532.217200pt;}
.y180{bottom:537.267733pt;}
.y232{bottom:538.267733pt;}
.y7a{bottom:539.367733pt;}
.y1fb{bottom:539.934400pt;}
.yba{bottom:543.800000pt;}
.y98{bottom:543.934400pt;}
.y168{bottom:544.217200pt;}
.y1c7{bottom:547.450533pt;}
.y104{bottom:548.601067pt;}
.y131{bottom:549.267733pt;}
.y79{bottom:551.367733pt;}
.y231{bottom:552.934400pt;}
.y17f{bottom:554.601067pt;}
.y167{bottom:556.217200pt;}
.yd8{bottom:557.934400pt;}
.yb9{bottom:561.133333pt;}
.y97{bottom:561.267733pt;}
.y78{bottom:563.367733pt;}
.y1fa{bottom:563.934400pt;}
.y1c6{bottom:564.783867pt;}
.y103{bottom:565.934400pt;}
.y130{bottom:566.601067pt;}
.y230{bottom:567.601067pt;}
.y166{bottom:568.217200pt;}
.y17e{bottom:571.934400pt;}
.ya{bottom:573.786667pt;}
.yd7{bottom:575.267733pt;}
.y77{bottom:575.367733pt;}
.yb8{bottom:578.466667pt;}
.y96{bottom:578.601067pt;}
.y165{bottom:580.217200pt;}
.y31{bottom:582.059998pt;}
.y1c5{bottom:582.117200pt;}
.y22f{bottom:582.267733pt;}
.y102{bottom:583.267733pt;}
.y12f{bottom:583.934400pt;}
.y76{bottom:587.367733pt;}
.y17d{bottom:589.267733pt;}
.y164{bottom:592.217200pt;}
.yd6{bottom:592.601067pt;}
.y9{bottom:592.685334pt;}
.yb7{bottom:595.800000pt;}
.y95{bottom:595.934400pt;}
.y22e{bottom:596.934400pt;}
.y1c4{bottom:599.450533pt;}
.y51{bottom:600.001067pt;}
.y101{bottom:600.601067pt;}
.y12e{bottom:601.267733pt;}
.y163{bottom:604.217200pt;}
.y17c{bottom:606.601067pt;}
.y75{bottom:607.601067pt;}
.y30{bottom:608.726665pt;}
.yd5{bottom:609.934400pt;}
.y1f9{bottom:610.601067pt;}
.y22d{bottom:611.601067pt;}
.yb6{bottom:613.133333pt;}
.y94{bottom:613.267733pt;}
.y50{bottom:613.334400pt;}
.y162{bottom:616.217200pt;}
.y1c3{bottom:616.783867pt;}
.y100{bottom:617.934400pt;}
.y12d{bottom:618.601067pt;}
.y74{bottom:619.601067pt;}
.y17b{bottom:623.934400pt;}
.y2f{bottom:624.726665pt;}
.y1f8{bottom:625.267733pt;}
.y22c{bottom:626.267733pt;}
.y4f{bottom:626.667733pt;}
.yd4{bottom:627.267733pt;}
.yb5{bottom:630.466667pt;}
.y93{bottom:630.601067pt;}
.y73{bottom:631.601067pt;}
.y161{bottom:632.217200pt;}
.y1c2{bottom:634.117200pt;}
.yff{bottom:635.267733pt;}
.y12c{bottom:635.934400pt;}
.y4e{bottom:640.001067pt;}
.y2e{bottom:640.726665pt;}
.y22b{bottom:640.934400pt;}
.y17a{bottom:641.267733pt;}
.y72{bottom:643.601067pt;}
.yd3{bottom:644.601067pt;}
.y8{bottom:645.598667pt;}
.y92{bottom:647.934400pt;}
.y160{bottom:648.883867pt;}
.y1c1{bottom:651.450533pt;}
.yfe{bottom:652.601067pt;}
.y12b{bottom:653.267733pt;}
.y4d{bottom:653.334400pt;}
.y71{bottom:655.601067pt;}
.y1be{bottom:656.434400pt;}
.y2d{bottom:656.726665pt;}
.yb4{bottom:657.133333pt;}
.y179{bottom:658.601067pt;}
.yd2{bottom:661.934400pt;}
.y1f7{bottom:662.601067pt;}
.y91{bottom:665.267733pt;}
.y15f{bottom:665.550533pt;}
.y4c{bottom:666.667733pt;}
.y70{bottom:667.601067pt;}
.y1bd{bottom:668.434400pt;}
.y1c0{bottom:668.783867pt;}
.y4{bottom:668.977329pt;}
.yfd{bottom:669.934400pt;}
.y22a{bottom:670.267733pt;}
.y12a{bottom:670.601067pt;}
.yd1{bottom:679.267733pt;}
.y6f{bottom:679.601067pt;}
.y4b{bottom:680.001067pt;}
.y1bc{bottom:680.434400pt;}
.y90{bottom:682.601067pt;}
.yb3{bottom:683.800000pt;}
.y229{bottom:684.934400pt;}
.y178{bottom:685.267733pt;}
.yfc{bottom:687.267733pt;}
.y129{bottom:687.934400pt;}
.y1bb{bottom:692.434400pt;}
.y4a{bottom:693.334400pt;}
.yd0{bottom:696.601067pt;}
.y228{bottom:699.601067pt;}
.y6e{bottom:699.834400pt;}
.y8f{bottom:699.934400pt;}
.y2c{bottom:703.368002pt;}
.y1f2{bottom:703.434400pt;}
.yfb{bottom:704.601067pt;}
.y128{bottom:705.267733pt;}
.y49{bottom:706.667733pt;}
.y15e{bottom:707.434400pt;}
.y1ba{bottom:708.434400pt;}
.y6d{bottom:711.834400pt;}
.ycf{bottom:713.934400pt;}
.y227{bottom:714.267733pt;}
.y1f1{bottom:715.434400pt;}
.y8e{bottom:717.267733pt;}
.y48{bottom:720.001067pt;}
.y1b9{bottom:720.434400pt;}
.yfa{bottom:721.934400pt;}
.y2b{bottom:722.034669pt;}
.y127{bottom:722.601067pt;}
.y6c{bottom:723.834400pt;}
.y1f6{bottom:723.934400pt;}
.y15d{bottom:724.767733pt;}
.y1f0{bottom:727.434400pt;}
.y226{bottom:728.934400pt;}
.y1b8{bottom:732.434400pt;}
.y47{bottom:733.334400pt;}
.y8d{bottom:734.601067pt;}
.y6b{bottom:735.834400pt;}
.yf9{bottom:739.267733pt;}
.y126{bottom:739.934400pt;}
.yce{bottom:740.601067pt;}
.y15c{bottom:742.101067pt;}
.y1ef{bottom:743.434400pt;}
.y225{bottom:743.601067pt;}
.y1b7{bottom:744.434400pt;}
.y46{bottom:746.667733pt;}
.y6a{bottom:747.834400pt;}
.y8c{bottom:751.934400pt;}
.y1ee{bottom:755.434400pt;}
.y1b6{bottom:756.434400pt;}
.y125{bottom:757.267733pt;}
.ycd{bottom:757.934400pt;}
.y224{bottom:758.267733pt;}
.y15b{bottom:759.434400pt;}
.y1ed{bottom:767.434400pt;}
.y1b5{bottom:768.434400pt;}
.y8b{bottom:769.267733pt;}
.y1f5{bottom:771.934400pt;}
.y223{bottom:772.934400pt;}
.y124{bottom:774.601067pt;}
.y15a{bottom:776.767733pt;}
.yf8{bottom:778.601067pt;}
.y2a{bottom:778.613333pt;}
.y1ec{bottom:779.434400pt;}
.y1b4{bottom:780.434400pt;}
.y3{bottom:781.661334pt;}
.y8a{bottom:786.601067pt;}
.y222{bottom:787.601067pt;}
.y45{bottom:788.334400pt;}
.y1eb{bottom:791.434400pt;}
.y123{bottom:791.934400pt;}
.y1b3{bottom:792.434400pt;}
.y159{bottom:794.101067pt;}
.yf7{bottom:795.934400pt;}
.y221{bottom:802.267733pt;}
.y1ea{bottom:803.434400pt;}
.y89{bottom:803.934400pt;}
.y1b2{bottom:804.434400pt;}
.y29{bottom:806.613333pt;}
.y122{bottom:809.267733pt;}
.ycc{bottom:809.934400pt;}
.y158{bottom:811.434400pt;}
.y44{bottom:812.334400pt;}
.yf6{bottom:813.267733pt;}
.y1e9{bottom:815.434400pt;}
.y1b1{bottom:816.434400pt;}
.y220{bottom:816.934400pt;}
.y88{bottom:821.267733pt;}
.y121{bottom:826.601067pt;}
.y1e8{bottom:827.434400pt;}
.y1b0{bottom:828.434400pt;}
.y157{bottom:828.767733pt;}
.y21f{bottom:831.601067pt;}
.y28{bottom:834.613333pt;}
.ycb{bottom:835.934400pt;}
.y87{bottom:838.601067pt;}
.y1e7{bottom:839.434400pt;}
.y2{bottom:840.112001pt;}
.y1af{bottom:840.434400pt;}
.y120{bottom:843.934400pt;}
.y156{bottom:846.101067pt;}
.y21e{bottom:846.267733pt;}
.y43{bottom:847.001067pt;}
.y1e6{bottom:851.434400pt;}
.yf5{bottom:851.934400pt;}
.y1ae{bottom:852.434400pt;}
.y86{bottom:855.934400pt;}
.y1f4{bottom:858.601067pt;}
.y1{bottom:859.312000pt;}
.y21d{bottom:860.934400pt;}
.y11f{bottom:861.267733pt;}
.y27{bottom:862.613333pt;}
.y155{bottom:863.434400pt;}
.y1ad{bottom:864.434400pt;}
.y42{bottom:868.334400pt;}
.yf4{bottom:869.267733pt;}
.y85{bottom:873.267733pt;}
.y1e5{bottom:875.434400pt;}
.y21c{bottom:875.601067pt;}
.y1ac{bottom:876.434400pt;}
.y154{bottom:880.767733pt;}
.yf3{bottom:886.601067pt;}
.y1e4{bottom:887.434400pt;}
.y11e{bottom:887.934400pt;}
.y1ab{bottom:888.434400pt;}
.y41{bottom:889.667733pt;}
.y21b{bottom:890.267733pt;}
.y84{bottom:890.601067pt;}
.y1f3{bottom:897.267733pt;}
.y153{bottom:898.101067pt;}
.yca{bottom:899.267733pt;}
.y1e3{bottom:899.434400pt;}
.y1aa{bottom:900.434400pt;}
.y21a{bottom:904.934400pt;}
.y83{bottom:907.934400pt;}
.y1e2{bottom:911.434400pt;}
.y1a9{bottom:912.434400pt;}
.y11d{bottom:914.601067pt;}
.y3d{bottom:915.121067pt;}
.y152{bottom:915.434400pt;}
.y219{bottom:919.601067pt;}
.y26{bottom:920.485335pt;}
.y82{bottom:925.267733pt;}
.y1e1{bottom:927.767733pt;}
.y1a8{bottom:928.434400pt;}
.y3c{bottom:931.121067pt;}
.y151{bottom:932.767733pt;}
.y218{bottom:934.267733pt;}
.y81{bottom:942.601067pt;}
.y1e0{bottom:944.434400pt;}
.y1a7{bottom:945.101067pt;}
.y217{bottom:948.934400pt;}
.y150{bottom:950.101067pt;}
.y80{bottom:959.934400pt;}
.y1df{bottom:961.101067pt;}
.y1a6{bottom:961.767733pt;}
.y40{bottom:963.362000pt;}
.y216{bottom:963.601067pt;}
.y3f{bottom:975.473733pt;}
.y14f{bottom:976.767733pt;}
.y7f{bottom:977.267733pt;}
.y1a5{bottom:977.767733pt;}
.y215{bottom:978.267733pt;}
.y3e{bottom:987.473733pt;}
.yb2{bottom:1014.433867pt;}
.y7e{bottom:1014.500533pt;}
.y25{bottom:1035.664002pt;}
.h26{height:21.583147pt;}
.h23{height:21.891477pt;}
.h28{height:22.838751pt;}
.h1a{height:26.693333pt;}
.h17{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1e{height:30.000000pt;}
.h1c{height:30.506667pt;}
.h1b{height:30.762667pt;}
.h1d{height:32.000000pt;}
.hb{height:32.645833pt;}
.h2b{height:34.075733pt;}
.h16{height:34.320000pt;}
.h20{height:34.608000pt;}
.h18{height:36.000000pt;}
.h29{height:36.226667pt;}
.hf{height:36.726562pt;}
.h27{height:37.333333pt;}
.h22{height:37.866667pt;}
.h24{height:39.505208pt;}
.h12{height:40.000000pt;}
.h1f{height:40.376000pt;}
.h25{height:40.449938pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h21{height:41.334667pt;}
.h15{height:42.000000pt;}
.h19{height:42.298667pt;}
.h3{height:42.840000pt;}
.h2a{height:43.600000pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:434.333333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x27{left:109.333333pt;}
.xb{left:112.100000pt;}
.xe{left:128.000000pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.xf{left:179.684000pt;}
.x4{left:180.874667pt;}
.x10{left:200.350667pt;}
.x9{left:203.327991pt;}
.x11{left:209.550667pt;}
.x12{left:218.484000pt;}
.x1a{left:225.283867pt;}
.x13{left:226.350667pt;}
.x1b{left:234.350533pt;}
.x1d{left:241.952887pt;}
.x18{left:246.617200pt;}
.x8{left:260.969328pt;}
.x16{left:269.950667pt;}
.x24{left:318.090533pt;}
.x25{left:336.899067pt;}
.x23{left:339.347067pt;}
.x22{left:344.666800pt;}
.x1e{left:350.884000pt;}
.x15{left:380.933333pt;}
.x3{left:404.408000pt;}
.x14{left:407.817333pt;}
.x26{left:502.378267pt;}
.xd{left:507.508000pt;}
.x1f{left:549.017200pt;}
.x20{left:557.284000pt;}
.x19{left:569.283867pt;}
.xc{left:577.800667pt;}
.x1c{left:586.350533pt;}
.x17{left:591.017200pt;}
.x21{left:614.017333pt;}
}




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