
    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_5ce2893a682b353ff13d4bfb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dc0b554a4b0cfaad4e1acad0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ea47efdc20bbca51fbda00e2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c34ae71926bc8cbe1f99a469.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.043000;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_b4b234a64e9c2c22a86bb3e2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37c50fc4068f999866bca9cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.696000;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_46408befa8c134174f7c74c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.665000;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_171e05e2aad12c79d135b307.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.110000;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_6c4776206af671a59fd7e990.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.877000;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_0be99b10a77b14af5d2a4827.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.468000;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_4fb156bf03fb94d48ad9a618.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ef1a5a472c07e291f674756a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946000;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_86f56e417bfc5c676487feba.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_207229188979051e22fd4b78.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.463000;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_64aca9d8c61e1831608befed.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_85a2e6d515912eb6a6ccb1e0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.279000;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_2e52115027866e06891ab68e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,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:-19.391758px;}
.v0{vertical-align:0.000000px;}
.ls2f{letter-spacing:-0.826500px;}
.ls3c{letter-spacing:-0.825590px;}
.ls3e{letter-spacing:-0.811190px;}
.ls3d{letter-spacing:-0.806390px;}
.ls30{letter-spacing:-0.752400px;}
.ls31{letter-spacing:-0.729600px;}
.ls32{letter-spacing:-0.712500px;}
.ls3a{letter-spacing:-0.667192px;}
.ls6{letter-spacing:-0.018900px;}
.ls0{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.047999px;}
.ls2{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.057000px;}
.ls37{letter-spacing:0.062700px;}
.ls9{letter-spacing:0.143998px;}
.ls18{letter-spacing:0.171000px;}
.ls15{letter-spacing:0.228000px;}
.ls19{letter-spacing:0.285000px;}
.ls7{letter-spacing:0.342000px;}
.ls2c{letter-spacing:0.592800px;}
.ls14{letter-spacing:0.809989px;}
.ls23{letter-spacing:0.843600px;}
.ls1d{letter-spacing:0.866400px;}
.ls27{letter-spacing:0.872100px;}
.ls29{letter-spacing:0.900600px;}
.ls21{letter-spacing:0.906300px;}
.ls24{letter-spacing:0.912000px;}
.ls1f{letter-spacing:0.917700px;}
.ls22{letter-spacing:0.923400px;}
.ls28{letter-spacing:0.929100px;}
.ls20{letter-spacing:0.934800px;}
.ls25{letter-spacing:0.951900px;}
.ls2a{letter-spacing:0.980400px;}
.ls26{letter-spacing:1.083000px;}
.lsb{letter-spacing:1.124985px;}
.ls13{letter-spacing:9.311884px;}
.ls12{letter-spacing:9.599880px;}
.ls39{letter-spacing:10.953463px;}
.ls8{letter-spacing:11.172000px;}
.ls16{letter-spacing:11.457000px;}
.ls3{letter-spacing:11.934000px;}
.ls1a{letter-spacing:12.654000px;}
.ls33{letter-spacing:14.447819px;}
.ls38{letter-spacing:14.687816px;}
.ls1{letter-spacing:14.958000px;}
.ls17{letter-spacing:15.675000px;}
.ls2d{letter-spacing:16.017000px;}
.ls4{letter-spacing:16.986000px;}
.ls1e{letter-spacing:17.100000px;}
.ls2e{letter-spacing:18.000180px;}
.ls1c{letter-spacing:22.173000px;}
.ls5{letter-spacing:23.883000px;}
.ls3b{letter-spacing:23.922901px;}
.ls1b{letter-spacing:28.614000px;}
.ls2b{letter-spacing:34.011900px;}
.ls10{letter-spacing:132.430345px;}
.ls34{letter-spacing:132.478344px;}
.ls11{letter-spacing:133.774328px;}
.lse{letter-spacing:137.518281px;}
.lsf{letter-spacing:138.862264px;}
.lsd{letter-spacing:151.822102px;}
.lsa{letter-spacing:156.653706px;}
.ls36{letter-spacing:332.827840px;}
.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;}
}
.ws153{word-spacing:-34.068900px;}
.ws232{word-spacing:-23.970900px;}
.ws0{word-spacing:-13.986000px;}
.ws228{word-spacing:-11.001462px;}
.ws152{word-spacing:-0.923400px;}
.ws1f1{word-spacing:-0.063001px;}
.ws2d{word-spacing:-0.057000px;}
.ws1a{word-spacing:-0.054000px;}
.wsdf{word-spacing:-0.047999px;}
.ws11{word-spacing:-0.044999px;}
.ws65{word-spacing:-0.041999px;}
.ws1{word-spacing:0.000000px;}
.ws231{word-spacing:0.619192px;}
.ws1cc{word-spacing:8.980688px;}
.ws110{word-spacing:9.220685px;}
.ws16b{word-spacing:9.244684px;}
.wseb{word-spacing:9.247377px;}
.ws166{word-spacing:9.321483px;}
.ws1cf{word-spacing:9.340683px;}
.ws1c1{word-spacing:9.369483px;}
.ws1d9{word-spacing:9.455882px;}
.ws1c0{word-spacing:9.494281px;}
.ws112{word-spacing:9.585480px;}
.ws1f7{word-spacing:9.628680px;}
.ws1d8{word-spacing:9.748678px;}
.ws22e{word-spacing:9.791878px;}
.ws207{word-spacing:9.854277px;}
.ws115{word-spacing:9.931368px;}
.ws22d{word-spacing:9.964675px;}
.ws20b{word-spacing:10.199873px;}
.ws20d{word-spacing:10.439870px;}
.ws21b{word-spacing:10.454269px;}
.ws239{word-spacing:10.502269px;}
.ws20e{word-spacing:10.531068px;}
.ws1ef{word-spacing:10.535868px;}
.ws21c{word-spacing:10.761465px;}
.wsd7{word-spacing:10.775865px;}
.ws206{word-spacing:10.780665px;}
.ws227{word-spacing:10.828665px;}
.wsd8{word-spacing:10.905464px;}
.ws1fb{word-spacing:11.039862px;}
.ws202{word-spacing:11.049462px;}
.ws203{word-spacing:11.155061px;}
.ws1b9{word-spacing:11.174260px;}
.wsf6{word-spacing:11.382900px;}
.ws209{word-spacing:11.414257px;}
.ws20a{word-spacing:11.443057px;}
.ws1fa{word-spacing:11.529456px;}
.ws236{word-spacing:11.553456px;}
.ws189{word-spacing:11.690700px;}
.ws1f9{word-spacing:11.817452px;}
.ws19{word-spacing:11.896200px;}
.ws66{word-spacing:12.028628px;}
.wsb0{word-spacing:12.049800px;}
.ws74{word-spacing:12.198000px;}
.ws64{word-spacing:12.314224px;}
.ws49{word-spacing:12.380400px;}
.ws32{word-spacing:12.386100px;}
.ws237{word-spacing:12.388645px;}
.ws67{word-spacing:12.532621px;}
.ws31{word-spacing:12.545700px;}
.ws80{word-spacing:12.551400px;}
.wse4{word-spacing:12.566243px;}
.ws211{word-spacing:12.585443px;}
.ws234{word-spacing:12.638242px;}
.ws63{word-spacing:12.658619px;}
.wsba{word-spacing:12.699600px;}
.ws210{word-spacing:12.705441px;}
.ws13e{word-spacing:12.768000px;}
.ws58{word-spacing:12.779400px;}
.ws57{word-spacing:12.790800px;}
.ws170{word-spacing:12.813600px;}
.ws235{word-spacing:12.820640px;}
.wsb7{word-spacing:12.830700px;}
.ws17f{word-spacing:12.864900px;}
.ws238{word-spacing:12.883039px;}
.wse5{word-spacing:12.907039px;}
.ws13f{word-spacing:12.996000px;}
.wsfe{word-spacing:12.998238px;}
.ws1a8{word-spacing:13.001700px;}
.wsfd{word-spacing:13.147036px;}
.ws76{word-spacing:13.184100px;}
.wsff{word-spacing:13.286234px;}
.ws15c{word-spacing:13.349400px;}
.ws1fc{word-spacing:13.372633px;}
.ws22a{word-spacing:13.401432px;}
.ws6a{word-spacing:13.454821px;}
.ws25{word-spacing:13.497431px;}
.ws1c{word-spacing:13.516200px;}
.ws20{word-spacing:13.591800px;}
.ws146{word-spacing:13.628700px;}
.ws1b5{word-spacing:13.675029px;}
.ws161{word-spacing:13.689429px;}
.ws71{word-spacing:13.697100px;}
.ws1d0{word-spacing:13.713429px;}
.ws3d{word-spacing:13.748400px;}
.ws23{word-spacing:13.751817px;}
.ws22b{word-spacing:13.761428px;}
.ws111{word-spacing:13.775828px;}
.ws114{word-spacing:13.785428px;}
.ws1cb{word-spacing:13.790228px;}
.ws1f8{word-spacing:13.804627px;}
.ws4c{word-spacing:13.816800px;}
.wsea{word-spacing:13.819027px;}
.ws4{word-spacing:13.834932px;}
.ws160{word-spacing:13.838227px;}
.ws1ce{word-spacing:13.847827px;}
.ws92{word-spacing:13.856700px;}
.wsda{word-spacing:13.862227px;}
.ws168{word-spacing:13.867027px;}
.ws28{word-spacing:13.871827px;}
.ws3e{word-spacing:13.885200px;}
.ws1b7{word-spacing:13.886226px;}
.ws26{word-spacing:13.891026px;}
.ws8{word-spacing:13.897932px;}
.ws1d3{word-spacing:13.905426px;}
.wse3{word-spacing:13.910226px;}
.ws1c3{word-spacing:13.913700px;}
.ws113{word-spacing:13.915026px;}
.ws1b8{word-spacing:13.919826px;}
.ws10e{word-spacing:13.939026px;}
.ws91{word-spacing:13.953600px;}
.ws88{word-spacing:13.965000px;}
.ws6{word-spacing:13.967233px;}
.ws100{word-spacing:13.967825px;}
.wsa9{word-spacing:13.976400px;}
.ws24{word-spacing:13.991825px;}
.ws101{word-spacing:14.001425px;}
.ws162{word-spacing:14.011025px;}
.ws167{word-spacing:14.020625px;}
.ws27{word-spacing:14.025425px;}
.wsd9{word-spacing:14.030225px;}
.ws1b2{word-spacing:14.035025px;}
.wsdb{word-spacing:14.049424px;}
.ws1aa{word-spacing:14.061900px;}
.ws1bd{word-spacing:14.063824px;}
.ws205{word-spacing:14.068624px;}
.ws5{word-spacing:14.074334px;}
.ws107{word-spacing:14.083024px;}
.wsdc{word-spacing:14.092624px;}
.ws10c{word-spacing:14.107024px;}
.ws1bc{word-spacing:14.111824px;}
.wsdd{word-spacing:14.116624px;}
.ws1b4{word-spacing:14.131023px;}
.ws1b6{word-spacing:14.135823px;}
.ws2f{word-spacing:14.141700px;}
.ws7{word-spacing:14.149935px;}
.ws1b3{word-spacing:14.150223px;}
.ws1c9{word-spacing:14.155023px;}
.wse2{word-spacing:14.164623px;}
.ws22c{word-spacing:14.169423px;}
.ws1b1{word-spacing:14.174223px;}
.ws1af{word-spacing:14.179023px;}
.wse1{word-spacing:14.188623px;}
.ws1d4{word-spacing:14.227022px;}
.ws69{word-spacing:14.241422px;}
.ws1c2{word-spacing:14.251022px;}
.wsde{word-spacing:14.255822px;}
.wse0{word-spacing:14.265422px;}
.ws1f0{word-spacing:14.270222px;}
.ws163{word-spacing:14.275022px;}
.ws20c{word-spacing:14.279821px;}
.ws144{word-spacing:14.284200px;}
.wse6{word-spacing:14.303821px;}
.ws1b0{word-spacing:14.308621px;}
.ws226{word-spacing:14.313421px;}
.ws9{word-spacing:14.313736px;}
.ws1d7{word-spacing:14.337421px;}
.ws208{word-spacing:14.342221px;}
.ws23a{word-spacing:14.347021px;}
.ws4d{word-spacing:14.432400px;}
.wsb1{word-spacing:14.443800px;}
.ws77{word-spacing:14.489400px;}
.wsfb{word-spacing:14.495100px;}
.ws194{word-spacing:14.526145px;}
.ws60{word-spacing:14.626200px;}
.ws1da{word-spacing:14.660400px;}
.wsbd{word-spacing:14.706000px;}
.wsbc{word-spacing:14.728800px;}
.ws17d{word-spacing:14.751600px;}
.ws3c{word-spacing:14.831400px;}
.ws14b{word-spacing:14.848500px;}
.ws123{word-spacing:14.882700px;}
.ws5b{word-spacing:14.934000px;}
.ws1f2{word-spacing:14.942213px;}
.ws218{word-spacing:15.028612px;}
.ws122{word-spacing:15.036600px;}
.ws1df{word-spacing:15.042300px;}
.ws1a0{word-spacing:15.116400px;}
.wsbb{word-spacing:15.139200px;}
.ws225{word-spacing:15.143811px;}
.wsa0{word-spacing:15.162000px;}
.ws1ec{word-spacing:15.163010px;}
.ws1fd{word-spacing:15.167810px;}
.ws217{word-spacing:15.206210px;}
.ws18{word-spacing:15.228000px;}
.ws14a{word-spacing:15.230400px;}
.wsa2{word-spacing:15.247500px;}
.wsf0{word-spacing:15.276000px;}
.ws11d{word-spacing:15.293100px;}
.ws1ed{word-spacing:15.326208px;}
.wsa1{word-spacing:15.412800px;}
.wsa8{word-spacing:15.435600px;}
.ws1f3{word-spacing:15.460607px;}
.ws21a{word-spacing:15.667004px;}
.ws17e{word-spacing:15.806100px;}
.wsc{word-spacing:15.876000px;}
.wsd{word-spacing:15.919200px;}
.ws33{word-spacing:15.931500px;}
.ws10{word-spacing:15.946200px;}
.ws22f{word-spacing:15.959801px;}
.ws13d{word-spacing:15.960000px;}
.ws1fe{word-spacing:15.969400px;}
.wsb{word-spacing:15.989400px;}
.ws13c{word-spacing:15.994200px;}
.wsf{word-spacing:16.021800px;}
.ws200{word-spacing:16.079799px;}
.ws94{word-spacing:16.102500px;}
.wse{word-spacing:16.108200px;}
.ws15e{word-spacing:16.125300px;}
.ws30{word-spacing:16.148100px;}
.ws1ff{word-spacing:16.161398px;}
.ws221{word-spacing:16.223797px;}
.ws21{word-spacing:16.248600px;}
.ws1ad{word-spacing:16.267800px;}
.ws118{word-spacing:16.313400px;}
.ws178{word-spacing:16.438800px;}
.ws220{word-spacing:16.497394px;}
.ws1de{word-spacing:16.518600px;}
.ws35{word-spacing:16.541400px;}
.ws180{word-spacing:16.683900px;}
.ws145{word-spacing:16.780800px;}
.ws1a9{word-spacing:16.872000px;}
.wsb9{word-spacing:16.883400px;}
.ws187{word-spacing:16.889100px;}
.ws14c{word-spacing:16.894800px;}
.ws181{word-spacing:16.917600px;}
.ws229{word-spacing:16.929388px;}
.ws193{word-spacing:16.946100px;}
.ws1ab{word-spacing:16.951800px;}
.ws52{word-spacing:16.963200px;}
.ws4a{word-spacing:16.997400px;}
.wsab{word-spacing:17.025900px;}
.wsaa{word-spacing:17.037300px;}
.ws50{word-spacing:17.043000px;}
.ws137{word-spacing:17.048700px;}
.wsc1{word-spacing:17.060100px;}
.ws7f{word-spacing:17.082900px;}
.ws87{word-spacing:17.088600px;}
.ws6c{word-spacing:17.105700px;}
.ws17a{word-spacing:17.151300px;}
.ws1ac{word-spacing:17.168400px;}
.ws12e{word-spacing:17.202600px;}
.ws127{word-spacing:17.214000px;}
.ws1a4{word-spacing:17.219700px;}
.wsf4{word-spacing:17.225400px;}
.ws3a{word-spacing:17.242500px;}
.ws188{word-spacing:17.259600px;}
.ws223{word-spacing:17.303784px;}
.wsc2{word-spacing:17.322300px;}
.ws179{word-spacing:17.333700px;}
.wsfa{word-spacing:17.339400px;}
.ws1a3{word-spacing:17.379300px;}
.ws16d{word-spacing:17.394983px;}
.ws4b{word-spacing:17.436300px;}
.wsc3{word-spacing:17.453400px;}
.ws16f{word-spacing:17.470500px;}
.ws117{word-spacing:17.538900px;}
.ws159{word-spacing:17.584500px;}
.ws12c{word-spacing:17.595900px;}
.ws1a5{word-spacing:17.601600px;}
.ws128{word-spacing:17.624400px;}
.ws12a{word-spacing:17.630100px;}
.ws134{word-spacing:17.647200px;}
.wse7{word-spacing:17.673379px;}
.ws116{word-spacing:17.721300px;}
.ws129{word-spacing:17.761200px;}
.ws6d{word-spacing:17.796178px;}
.ws195{word-spacing:17.802178px;}
.ws176{word-spacing:17.818200px;}
.ws3b{word-spacing:17.829600px;}
.ws18d{word-spacing:17.846700px;}
.ws18f{word-spacing:17.880900px;}
.ws177{word-spacing:17.972100px;}
.ws73{word-spacing:17.994900px;}
.wsb6{word-spacing:18.000600px;}
.ws1a7{word-spacing:18.012180px;}
.ws4f{word-spacing:18.017700px;}
.ws38{word-spacing:18.040500px;}
.ws132{word-spacing:18.046200px;}
.ws12b{word-spacing:18.063300px;}
.ws5a{word-spacing:18.084181px;}
.ws5e{word-spacing:18.108900px;}
.ws54{word-spacing:18.138181px;}
.ws12f{word-spacing:18.143100px;}
.wsed{word-spacing:18.165900px;}
.ws20f{word-spacing:18.220572px;}
.ws75{word-spacing:18.257100px;}
.ws1a2{word-spacing:18.325500px;}
.ws21e{word-spacing:18.326171px;}
.ws19a{word-spacing:18.342600px;}
.ws2c{word-spacing:18.382500px;}
.ws2e{word-spacing:18.416700px;}
.ws7a{word-spacing:18.445200px;}
.ws16e{word-spacing:18.455769px;}
.ws2{word-spacing:18.463200px;}
.wsef{word-spacing:18.465476px;}
.ws61{word-spacing:18.473700px;}
.ws1a1{word-spacing:18.479400px;}
.ws29{word-spacing:18.503276px;}
.ws5c{word-spacing:18.507900px;}
.wsa{word-spacing:18.522176px;}
.ws19b{word-spacing:18.564900px;}
.ws12d{word-spacing:18.570600px;}
.ws53{word-spacing:18.610377px;}
.ws1d{word-spacing:18.613800px;}
.ws1e{word-spacing:18.630000px;}
.ws175{word-spacing:18.650400px;}
.wsae{word-spacing:18.673200px;}
.wsaf{word-spacing:18.724500px;}
.ws1eb{word-spacing:18.730078px;}
.ws36{word-spacing:18.741600px;}
.ws21d{word-spacing:18.760532px;}
.ws93{word-spacing:18.770100px;}
.ws14f{word-spacing:18.781500px;}
.ws37{word-spacing:18.901200px;}
.ws130{word-spacing:18.924000px;}
.ws141{word-spacing:18.929700px;}
.ws131{word-spacing:19.015200px;}
.ws212{word-spacing:19.031762px;}
.ws1e0{word-spacing:19.038000px;}
.ws56{word-spacing:19.066500px;}
.ws18a{word-spacing:19.072200px;}
.ws11b{word-spacing:19.083600px;}
.ws11c{word-spacing:19.123500px;}
.ws15d{word-spacing:19.237500px;}
.wse9{word-spacing:19.257359px;}
.wsf5{word-spacing:19.266000px;}
.ws213{word-spacing:19.348558px;}
.wse8{word-spacing:19.410957px;}
.ws16a{word-spacing:19.458957px;}
.ws1e7{word-spacing:19.482600px;}
.wsd6{word-spacing:19.494000px;}
.ws2b{word-spacing:19.516800px;}
.ws192{word-spacing:19.533900px;}
.ws15{word-spacing:19.537200px;}
.wsa3{word-spacing:19.590900px;}
.ws12{word-spacing:19.634400px;}
.ws124{word-spacing:19.642200px;}
.ws22{word-spacing:19.661400px;}
.ws169{word-spacing:19.698954px;}
.ws14{word-spacing:19.715400px;}
.ws41{word-spacing:19.744800px;}
.ws216{word-spacing:19.751753px;}
.ws215{word-spacing:19.770953px;}
.wsf9{word-spacing:19.830300px;}
.ws99{word-spacing:19.864500px;}
.ws9a{word-spacing:19.910100px;}
.ws222{word-spacing:19.948551px;}
.ws119{word-spacing:19.955700px;}
.wsac{word-spacing:20.001300px;}
.ws43{word-spacing:20.058300px;}
.ws2a{word-spacing:20.212200px;}
.ws59{word-spacing:20.274900px;}
.ws9c{word-spacing:20.286300px;}
.ws48{word-spacing:20.320500px;}
.ws9b{word-spacing:20.349000px;}
.ws34{word-spacing:20.354700px;}
.wsc4{word-spacing:20.360400px;}
.ws204{word-spacing:20.399745px;}
.ws79{word-spacing:20.423100px;}
.wsd3{word-spacing:20.440200px;}
.wsd0{word-spacing:20.537100px;}
.wsa5{word-spacing:20.599800px;}
.ws6b{word-spacing:20.611200px;}
.ws6f{word-spacing:20.639700px;}
.ws70{word-spacing:20.696700px;}
.ws224{word-spacing:20.711741px;}
.ws147{word-spacing:20.827800px;}
.wsfc{word-spacing:20.890500px;}
.ws1ee{word-spacing:20.903739px;}
.wsb3{word-spacing:20.941800px;}
.wsd1{word-spacing:20.953200px;}
.ws156{word-spacing:21.044400px;}
.ws143{word-spacing:21.243900px;}
.ws1e6{word-spacing:21.249600px;}
.ws157{word-spacing:21.255300px;}
.ws1e8{word-spacing:21.306600px;}
.ws8a{word-spacing:21.312300px;}
.ws17b{word-spacing:21.557400px;}
.ws125{word-spacing:21.660000px;}
.ws171{word-spacing:21.711300px;}
.ws191{word-spacing:21.768300px;}
.ws85{word-spacing:21.848100px;}
.ws149{word-spacing:21.899400px;}
.ws19f{word-spacing:21.910800px;}
.ws148{word-spacing:21.990600px;}
.wsf1{word-spacing:22.053300px;}
.ws185{word-spacing:22.070400px;}
.ws13{word-spacing:22.096800px;}
.ws1c5{word-spacing:22.127400px;}
.wsd2{word-spacing:22.252800px;}
.wsf3{word-spacing:22.269900px;}
.ws9f{word-spacing:22.304100px;}
.ws96{word-spacing:22.326900px;}
.ws21f{word-spacing:22.334121px;}
.ws136{word-spacing:22.389600px;}
.wsec{word-spacing:22.401000px;}
.ws182{word-spacing:22.463700px;}
.wsf2{word-spacing:22.554900px;}
.wsa6{word-spacing:22.651800px;}
.ws89{word-spacing:22.680300px;}
.ws158{word-spacing:22.703100px;}
.ws1e2{word-spacing:22.760100px;}
.ws19d{word-spacing:22.771500px;}
.ws5d{word-spacing:22.777200px;}
.ws1e1{word-spacing:22.800000px;}
.ws214{word-spacing:22.814115px;}
.wsf8{word-spacing:22.822800px;}
.wsb8{word-spacing:22.874100px;}
.ws83{word-spacing:22.948200px;}
.ws1e3{word-spacing:23.102100px;}
.ws196{word-spacing:23.119200px;}
.ws1c4{word-spacing:23.244600px;}
.ws184{word-spacing:23.324400px;}
.ws7b{word-spacing:23.335800px;}
.ws7c{word-spacing:23.381400px;}
.ws11e{word-spacing:23.455500px;}
.ws135{word-spacing:23.586600px;}
.ws40{word-spacing:23.723400px;}
.ws44{word-spacing:23.797500px;}
.ws72{word-spacing:23.803200px;}
.ws3f{word-spacing:23.843100px;}
.ws18b{word-spacing:23.871600px;}
.ws42{word-spacing:23.917200px;}
.ws45{word-spacing:23.951400px;}
.ws1e4{word-spacing:24.042600px;}
.ws8d{word-spacing:24.059700px;}
.ws18c{word-spacing:24.088200px;}
.wsb5{word-spacing:24.122400px;}
.ws230{word-spacing:24.172498px;}
.ws233{word-spacing:24.206097px;}
.wsce{word-spacing:24.282000px;}
.wsb2{word-spacing:24.293400px;}
.ws8c{word-spacing:24.367500px;}
.wscd{word-spacing:24.390300px;}
.ws47{word-spacing:24.430200px;}
.ws183{word-spacing:24.453000px;}
.ws46{word-spacing:24.521400px;}
.ws8b{word-spacing:24.595500px;}
.wsf7{word-spacing:24.692400px;}
.wsb4{word-spacing:24.909000px;}
.ws3{word-spacing:24.914400px;}
.ws219{word-spacing:25.050887px;}
.ws82{word-spacing:25.245300px;}
.ws9e{word-spacing:25.359300px;}
.ws1f{word-spacing:25.434000px;}
.wsa7{word-spacing:25.450500px;}
.ws173{word-spacing:25.467600px;}
.ws190{word-spacing:25.689900px;}
.wsc9{word-spacing:25.718400px;}
.ws11a{word-spacing:25.832400px;}
.ws174{word-spacing:25.883700px;}
.ws8e{word-spacing:26.043300px;}
.ws18e{word-spacing:26.054700px;}
.ws14e{word-spacing:26.094600px;}
.ws186{word-spacing:26.151600px;}
.ws1ae{word-spacing:26.448000px;}
.wsa4{word-spacing:26.493600px;}
.wsc0{word-spacing:26.579100px;}
.ws98{word-spacing:26.755800px;}
.ws51{word-spacing:26.841300px;}
.ws95{word-spacing:26.983800px;}
.ws78{word-spacing:27.673500px;}
.ws15a{word-spacing:27.753300px;}
.ws97{word-spacing:28.083900px;}
.ws121{word-spacing:28.140900px;}
.ws6e{word-spacing:28.180800px;}
.ws11f{word-spacing:28.283400px;}
.ws120{word-spacing:28.340400px;}
.ws140{word-spacing:28.374600px;}
.wscb{word-spacing:28.585500px;}
.ws1e5{word-spacing:28.596900px;}
.wsd4{word-spacing:28.602600px;}
.ws8f{word-spacing:28.653900px;}
.ws68{word-spacing:28.684441px;}
.wsad{word-spacing:28.881900px;}
.ws1c6{word-spacing:28.978800px;}
.ws1c7{word-spacing:29.166900px;}
.ws126{word-spacing:29.189700px;}
.wscf{word-spacing:29.303700px;}
.ws17c{word-spacing:29.377800px;}
.ws81{word-spacing:29.583000px;}
.ws55{word-spacing:29.759700px;}
.ws19e{word-spacing:29.839500px;}
.wsee{word-spacing:29.902200px;}
.ws133{word-spacing:29.942100px;}
.ws1db{word-spacing:30.078900px;}
.ws1a6{word-spacing:30.153000px;}
.ws84{word-spacing:30.289800px;}
.wsc5{word-spacing:30.432300px;}
.ws14d{word-spacing:30.802800px;}
.ws7d{word-spacing:30.819900px;}
.ws16{word-spacing:31.239000px;}
.ws1dc{word-spacing:31.669200px;}
.ws151{word-spacing:31.885800px;}
.ws1b{word-spacing:31.946400px;}
.ws201{word-spacing:31.967600px;}
.wsbe{word-spacing:32.022600px;}
.ws1dd{word-spacing:32.039700px;}
.ws150{word-spacing:32.102400px;}
.wsbf{word-spacing:32.193600px;}
.ws1ea{word-spacing:32.518500px;}
.ws1e9{word-spacing:32.558400px;}
.ws139{word-spacing:32.786400px;}
.wsc8{word-spacing:32.860500px;}
.ws19c{word-spacing:32.980200px;}
.ws7e{word-spacing:33.196800px;}
.ws142{word-spacing:33.920700px;}
.ws16c{word-spacing:34.151573px;}
.ws9d{word-spacing:34.604700px;}
.ws1f5{word-spacing:35.001162px;}
.ws1f4{word-spacing:35.173960px;}
.ws155{word-spacing:35.191800px;}
.ws198{word-spacing:35.317200px;}
.ws1f6{word-spacing:35.399557px;}
.ws154{word-spacing:35.402700px;}
.ws197{word-spacing:35.824500px;}
.ws13a{word-spacing:36.337500px;}
.ws13b{word-spacing:36.411600px;}
.ws86{word-spacing:36.417300px;}
.ws62{word-spacing:36.508500px;}
.ws15b{word-spacing:37.038600px;}
.ws17{word-spacing:37.324800px;}
.ws90{word-spacing:37.374900px;}
.ws138{word-spacing:37.870800px;}
.ws172{word-spacing:39.455400px;}
.ws199{word-spacing:39.489600px;}
.wsc7{word-spacing:39.677700px;}
.wsc6{word-spacing:39.888600px;}
.ws15f{word-spacing:41.855100px;}
.wsca{word-spacing:42.145800px;}
.wsd5{word-spacing:42.721500px;}
.ws4e{word-spacing:42.738600px;}
.wscc{word-spacing:43.399800px;}
.ws39{word-spacing:44.363100px;}
.ws1c8{word-spacing:45.126900px;}
.ws5f{word-spacing:46.375200px;}
.ws108{word-spacing:78.147823px;}
.ws109{word-spacing:78.162223px;}
.ws10a{word-spacing:78.191023px;}
.ws10d{word-spacing:78.205422px;}
.ws10f{word-spacing:78.215022px;}
.ws10b{word-spacing:78.512619px;}
.ws1d5{word-spacing:82.942963px;}
.ws1cd{word-spacing:82.952563px;}
.ws1d2{word-spacing:85.342933px;}
.ws103{word-spacing:111.589005px;}
.ws102{word-spacing:111.593805px;}
.ws104{word-spacing:122.811265px;}
.ws105{word-spacing:122.844864px;}
.ws106{word-spacing:149.234935px;}
.ws1be{word-spacing:149.623730px;}
.ws1bb{word-spacing:149.638130px;}
.ws1bf{word-spacing:149.935726px;}
.ws1ba{word-spacing:180.112949px;}
.ws1ca{word-spacing:182.085724px;}
.ws1d1{word-spacing:259.628755px;}
.ws164{word-spacing:294.869914px;}
.ws165{word-spacing:304.733791px;}
.ws1d6{word-spacing:1075.378558px;}
._2c{margin-left:-33.137014px;}
._63{margin-left:-24.833349px;}
._62{margin-left:-11.515458px;}
._4{margin-left:-4.968000px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._2{margin-left:-1.080000px;}
._c{width:1.484914px;}
._23{width:3.930086px;}
._32{width:8.725862px;}
._2e{width:10.277100px;}
._1b{width:11.439900px;}
._d{width:13.645800px;}
._8{width:14.995800px;}
._11{width:16.136700px;}
._6{width:17.377200px;}
._f{width:19.188986px;}
._5{width:20.242093px;}
._e{width:21.540300px;}
._17{width:22.668900px;}
._12{width:23.940000px;}
._b{width:25.768800px;}
._18{width:27.496800px;}
._15{width:28.916100px;}
._7{width:30.256200px;}
._a{width:31.887000px;}
._9{width:33.004800px;}
._16{width:34.502100px;}
._1a{width:35.716200px;}
._2d{width:37.175400px;}
._19{width:38.435100px;}
._1c{width:40.985786px;}
._1d{width:43.605000px;}
._10{width:45.693986px;}
._13{width:47.748900px;}
._53{width:65.135186px;}
._61{width:79.626205px;}
._14{width:88.750987px;}
._2b{width:100.544343px;}
._2a{width:107.998650px;}
._57{width:123.862881px;}
._5e{width:133.183935px;}
._59{width:145.702179px;}
._4c{width:149.686129px;}
._43{width:150.809315px;}
._27{width:153.367683px;}
._26{width:156.770840px;}
._29{width:159.487606px;}
._28{width:165.953126px;}
._3e{width:169.687479px;}
._44{width:172.461844px;}
._1e{width:186.448869px;}
._40{width:195.203960px;}
._49{width:208.024600px;}
._3f{width:231.505906px;}
._47{width:240.011400px;}
._3a{width:246.467820px;}
._1f{width:250.048074px;}
._4d{width:254.296021px;}
._21{width:260.910339px;}
._56{width:269.127836px;}
._51{width:276.745341px;}
._5b{width:279.990100px;}
._4a{width:284.199647px;}
._39{width:303.956200px;}
._33{width:305.358640px;}
._54{width:328.383095px;}
._60{width:334.397849px;}
._45{width:338.131773px;}
._4e{width:348.634042px;}
._58{width:354.618780px;}
._20{width:356.529943px;}
._46{width:360.936288px;}
._4b{width:369.960175px;}
._48{width:371.083361px;}
._25{width:381.667229px;}
._34{width:385.070387px;}
._24{width:388.996737px;}
._3b{width:407.519706px;}
._42{width:408.902089px;}
._4f{width:419.764353px;}
._22{width:441.181685px;}
._30{width:464.398995px;}
._37{width:506.327330px;}
._5d{width:513.771178px;}
._38{width:519.444707px;}
._3c{width:529.591422px;}
._50{width:617.022687px;}
._3d{width:711.178740px;}
._36{width:721.670979px;}
._2f{width:732.581243px;}
._35{width:751.574605px;}
._52{width:754.872164px;}
._5c{width:768.892789px;}
._31{width:784.598192px;}
._41{width:842.648667px;}
._55{width:910.611017px;}
._5f{width:945.516181px;}
._5a{width:1009.168185px;}
._3{width:1201.794000px;}
.fc2{color:rgb(0,0,132);}
.fc1{color:rgb(40,39,129);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:31.995000px;}
.fs9{font-size:35.995200px;}
.fsf{font-size:37.995600px;}
.fs8{font-size:41.995800px;}
.fse{font-size:41.999400px;}
.fsa{font-size:44.999400px;}
.fsb{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsd{font-size:60.000600px;}
.fs7{font-size:63.000600px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:27.928500px;}
.y6c{bottom:45.411494px;}
.y171{bottom:57.050175px;}
.y11f{bottom:57.061500px;}
.y145{bottom:57.070200px;}
.yd2{bottom:57.079500px;}
.y1bd{bottom:57.151050px;}
.y185{bottom:57.189000px;}
.y6b{bottom:57.486321px;}
.ye6{bottom:58.583306px;}
.y2{bottom:67.597501px;}
.y6a{bottom:69.477150px;}
.y170{bottom:70.574006px;}
.ye5{bottom:72.107137px;}
.y144{bottom:75.096450px;}
.yd1{bottom:75.105750px;}
.y1bc{bottom:75.177300px;}
.y184{bottom:75.215250px;}
.y16f{bottom:84.013838px;}
.y1{bottom:84.097501px;}
.y6d{bottom:85.549650px;}
.ye4{bottom:85.630968px;}
.y143{bottom:93.037200px;}
.yd0{bottom:93.046500px;}
.y1bb{bottom:93.118050px;}
.y183{bottom:93.156000px;}
.y16e{bottom:97.537669px;}
.ye3{bottom:99.070800px;}
.ye2{bottom:104.428350px;}
.y16d{bottom:111.061500px;}
.y142{bottom:111.063450px;}
.ycf{bottom:111.072750px;}
.y182{bottom:111.182250px;}
.ye1{bottom:117.083757px;}
.y69{bottom:128.763150px;}
.y141{bottom:129.089700px;}
.yce{bottom:129.099000px;}
.y181{bottom:129.208500px;}
.y52{bottom:129.230700px;}
.ye0{bottom:130.607587px;}
.y1d6{bottom:142.863619px;}
.ydf{bottom:144.131418px;}
.y68{bottom:146.789400px;}
.ycd{bottom:147.039750px;}
.y180{bottom:147.149250px;}
.y51{bottom:147.256950px;}
.y140{bottom:153.411000px;}
.y1d5{bottom:156.387450px;}
.yde{bottom:157.571250px;}
.y67{bottom:164.815650px;}
.ycc{bottom:165.066000px;}
.y17f{bottom:165.175500px;}
.y50{bottom:165.283200px;}
.ydd{bottom:171.095081px;}
.y66{bottom:182.756400px;}
.ycb{bottom:183.092250px;}
.y17e{bottom:183.201750px;}
.y4f{bottom:183.223950px;}
.ydc{bottom:184.618912px;}
.ydb{bottom:198.142743px;}
.y65{bottom:200.782650px;}
.yca{bottom:201.033000px;}
.y13f{bottom:201.041850px;}
.yc8{bottom:201.064200px;}
.y17d{bottom:201.142500px;}
.y4e{bottom:201.250200px;}
.yc9{bottom:207.411000px;}
.yda{bottom:211.582575px;}
.y64{bottom:218.808900px;}
.y13e{bottom:219.068100px;}
.yc7{bottom:219.090450px;}
.y17c{bottom:219.168750px;}
.y4d{bottom:219.276450px;}
.y1a3{bottom:228.075600px;}
.yd8{bottom:229.606350px;}
.y63{bottom:236.749650px;}
.y13d{bottom:237.094350px;}
.yc6{bottom:237.116700px;}
.y17b{bottom:237.195000px;}
.y4c{bottom:237.217200px;}
.yd9{bottom:243.130181px;}
.y13c{bottom:255.035100px;}
.yc5{bottom:255.057450px;}
.y17a{bottom:255.135750px;}
.y4b{bottom:255.243450px;}
.yd6{bottom:261.401517px;}
.y62{bottom:263.792100px;}
.yd7{bottom:266.768400px;}
.y1a2{bottom:271.051950px;}
.y13b{bottom:273.061350px;}
.yc4{bottom:273.083700px;}
.y179{bottom:273.162000px;}
.y4a{bottom:273.269700px;}
.yd5{bottom:274.925348px;}
.y1fd{bottom:277.178625px;}
.y235{bottom:277.659824px;}
.y1a1{bottom:289.078200px;}
.yc3{bottom:291.109950px;}
.y178{bottom:291.188250px;}
.y49{bottom:291.210450px;}
.y1fc{bottom:292.142438px;}
.y234{bottom:292.623637px;}
.yd4{bottom:293.213119px;}
.y13a{bottom:300.018750px;}
.yd3{bottom:306.736950px;}
.y1a0{bottom:307.018950px;}
.y1fb{bottom:307.190250px;}
.y233{bottom:307.671449px;}
.y61{bottom:308.958900px;}
.yc2{bottom:309.050700px;}
.y177{bottom:309.129000px;}
.y48{bottom:309.236700px;}
.y16{bottom:313.327501px;}
.y1fa{bottom:322.154062px;}
.y232{bottom:322.635262px;}
.y19f{bottom:325.045200px;}
.y60{bottom:326.985150px;}
.yc1{bottom:327.076950px;}
.y176{bottom:327.155250px;}
.y47{bottom:327.262950px;}
.y1f9{bottom:337.117875px;}
.y231{bottom:337.599075px;}
.y19e{bottom:343.071450px;}
.y5f{bottom:345.011400px;}
.yc0{bottom:345.103200px;}
.y175{bottom:345.181500px;}
.y46{bottom:345.203700px;}
.y139{bottom:349.992900px;}
.y1f8{bottom:352.165687px;}
.y230{bottom:352.646886px;}
.y97{bottom:358.519650px;}
.y19d{bottom:361.012200px;}
.y5e{bottom:362.952150px;}
.ybf{bottom:363.043950px;}
.y174{bottom:363.122250px;}
.y45{bottom:363.229950px;}
.y1f7{bottom:367.129500px;}
.y22f{bottom:367.610699px;}
.y138{bottom:368.019150px;}
.y96{bottom:376.545900px;}
.y15{bottom:377.677501px;}
.y19c{bottom:379.038450px;}
.y5d{bottom:380.978400px;}
.ybe{bottom:381.070200px;}
.y173{bottom:381.148500px;}
.y44{bottom:381.256200px;}
.y1f6{bottom:382.093313px;}
.y22e{bottom:382.658511px;}
.y137{bottom:386.045400px;}
.y95{bottom:394.572150px;}
.y19b{bottom:397.064700px;}
.y1f5{bottom:397.141125px;}
.y22d{bottom:397.622324px;}
.y5c{bottom:399.004650px;}
.ybd{bottom:399.096450px;}
.y172{bottom:399.174750px;}
.y43{bottom:399.196950px;}
.y136{bottom:403.986150px;}
.y1f4{bottom:412.104938px;}
.y94{bottom:412.512900px;}
.y22c{bottom:412.586137px;}
.y19a{bottom:415.005450px;}
.ybc{bottom:417.037200px;}
.y42{bottom:417.223200px;}
.y135{bottom:422.012400px;}
.y5b{bottom:425.962050px;}
.y1f3{bottom:427.152750px;}
.y22b{bottom:427.633949px;}
.y93{bottom:430.539150px;}
.y199{bottom:433.031700px;}
.ybb{bottom:435.063450px;}
.y41{bottom:435.249450px;}
.y134{bottom:440.038650px;}
.y22a{bottom:442.597762px;}
.y1ba{bottom:443.647669px;}
.y14{bottom:444.958500px;}
.y92{bottom:448.565400px;}
.y198{bottom:451.057950px;}
.y1f2{bottom:451.133700px;}
.y5a{bottom:453.004650px;}
.yba{bottom:453.089700px;}
.y40{bottom:453.190200px;}
.y1b9{bottom:457.171500px;}
.y229{bottom:457.645574px;}
.y133{bottom:457.979400px;}
.y91{bottom:466.506150px;}
.y197{bottom:468.998700px;}
.y3f{bottom:471.216450px;}
.y228{bottom:472.609387px;}
.y132{bottom:476.005650px;}
.yb9{bottom:480.047100px;}
.y90{bottom:484.532400px;}
.y196{bottom:487.024950px;}
.y227{bottom:487.573200px;}
.y3e{bottom:489.242700px;}
.y131{bottom:494.031900px;}
.y1f1{bottom:496.987687px;}
.y59{bottom:498.305700px;}
.y8f{bottom:502.473150px;}
.y226{bottom:502.621012px;}
.y195{bottom:505.051200px;}
.y13{bottom:506.377501px;}
.y3d{bottom:507.183450px;}
.y130{bottom:511.972650px;}
.y1f0{bottom:512.035499px;}
.y58{bottom:516.246450px;}
.y225{bottom:517.584825px;}
.y8e{bottom:520.499400px;}
.y194{bottom:522.991950px;}
.yb8{bottom:525.173400px;}
.y3c{bottom:525.209700px;}
.y1ef{bottom:526.999312px;}
.y157{bottom:529.980750px;}
.y12f{bottom:529.998900px;}
.y224{bottom:532.548638px;}
.y57{bottom:534.272700px;}
.y8d{bottom:538.525650px;}
.y1ee{bottom:541.963125px;}
.yb7{bottom:543.199650px;}
.y3b{bottom:543.235950px;}
.y223{bottom:547.596450px;}
.y156{bottom:548.007000px;}
.y12e{bottom:548.025150px;}
.y193{bottom:550.037671px;}
.y56{bottom:552.298950px;}
.y8c{bottom:556.466400px;}
.y1ed{bottom:557.010937px;}
.y3a{bottom:561.176700px;}
.yb6{bottom:561.225900px;}
.y222{bottom:562.560262px;}
.y155{bottom:565.947750px;}
.y12d{bottom:565.965900px;}
.y192{bottom:567.977850px;}
.y55{bottom:570.239700px;}
.y1ec{bottom:571.974750px;}
.y12{bottom:573.658500px;}
.y8b{bottom:574.492650px;}
.y221{bottom:577.608074px;}
.yb5{bottom:579.166650px;}
.y39{bottom:579.202950px;}
.y154{bottom:583.974000px;}
.y12c{bottom:583.992150px;}
.y54{bottom:588.265950px;}
.y8a{bottom:592.518900px;}
.y220{bottom:592.571887px;}
.y1eb{bottom:595.955850px;}
.yb4{bottom:597.192900px;}
.y153{bottom:602.000250px;}
.y12b{bottom:602.018400px;}
.y38{bottom:606.245550px;}
.y53{bottom:606.292200px;}
.y21f{bottom:607.535700px;}
.y11{bottom:608.008501px;}
.y89{bottom:610.459650px;}
.yb3{bottom:615.219150px;}
.y191{bottom:618.553500px;}
.y152{bottom:619.941000px;}
.y12a{bottom:619.959150px;}
.y21e{bottom:622.583512px;}
.y10{bottom:623.008501px;}
.y88{bottom:628.485900px;}
.yb2{bottom:633.159900px;}
.y190{bottom:636.494250px;}
.y21d{bottom:637.547325px;}
.y151{bottom:637.967250px;}
.y129{bottom:637.985400px;}
.yf{bottom:638.008500px;}
.y1ea{bottom:641.877000px;}
.y87{bottom:646.512150px;}
.yf1{bottom:649.280100px;}
.yfd{bottom:649.308600px;}
.yb1{bottom:651.186150px;}
.y21c{bottom:652.725930px;}
.y18f{bottom:654.520500px;}
.y150{bottom:655.993500px;}
.y128{bottom:656.011650px;}
.y14e{bottom:656.011950px;}
.y14f{bottom:662.286450px;}
.y86{bottom:664.452900px;}
.y1e9{bottom:665.858100px;}
.yf0{bottom:667.220850px;}
.yfc{bottom:667.249350px;}
.y21b{bottom:667.689743px;}
.y31{bottom:669.159900px;}
.yb0{bottom:669.212400px;}
.y18e{bottom:672.546750px;}
.y127{bottom:673.952400px;}
.y14d{bottom:673.952700px;}
.y85{bottom:682.479150px;}
.y21a{bottom:682.653556px;}
.y30{bottom:684.212400px;}
.yef{bottom:685.247100px;}
.yfb{bottom:685.275600px;}
.yaf{bottom:687.153150px;}
.y18d{bottom:690.487500px;}
.y126{bottom:691.978650px;}
.y14c{bottom:691.978950px;}
.y219{bottom:697.701368px;}
.y2f{bottom:699.183900px;}
.y84{bottom:700.505400px;}
.yfa{bottom:703.301850px;}
.yae{bottom:705.179400px;}
.y18c{bottom:708.513750px;}
.y125{bottom:710.004900px;}
.y14b{bottom:710.005200px;}
.y1e8{bottom:710.190600px;}
.yee{bottom:712.202820px;}
.y218{bottom:712.665181px;}
.y2e{bottom:714.236400px;}
.y83{bottom:718.446150px;}
.ye{bottom:719.795995px;}
.yf9{bottom:721.242600px;}
.yad{bottom:723.205650px;}
.y18b{bottom:726.540000px;}
.y217{bottom:727.712993px;}
.y124{bottom:727.945650px;}
.y14a{bottom:727.945950px;}
.y1e7{bottom:728.216850px;}
.y2d{bottom:729.207900px;}
.yed{bottom:730.233000px;}
.y82{bottom:736.472400px;}
.yf8{bottom:739.268850px;}
.yac{bottom:741.146400px;}
.y216{bottom:742.676806px;}
.y2a{bottom:744.163950px;}
.y2c{bottom:744.179400px;}
.y18a{bottom:744.480750px;}
.y123{bottom:745.971900px;}
.y149{bottom:745.972200px;}
.y1e6{bottom:746.243100px;}
.y2b{bottom:750.217200px;}
.yd{bottom:750.651005px;}
.y81{bottom:754.498650px;}
.y37{bottom:755.569538px;}
.yec{bottom:757.275450px;}
.yf7{bottom:757.295100px;}
.y215{bottom:757.640619px;}
.yab{bottom:759.172650px;}
.y29{bottom:759.216450px;}
.y189{bottom:762.507000px;}
.y122{bottom:763.998150px;}
.y148{bottom:763.998450px;}
.y1e5{bottom:764.183850px;}
.y36{bottom:769.093369px;}
.yc{bottom:769.505994px;}
.y80{bottom:772.439400px;}
.y214{bottom:772.688431px;}
.y28{bottom:774.187950px;}
.yf6{bottom:775.235850px;}
.yaa{bottom:777.198900px;}
.y188{bottom:780.533250px;}
.y121{bottom:781.938900px;}
.y147{bottom:781.939200px;}
.y1e4{bottom:782.210100px;}
.y35{bottom:782.617200px;}
.y213{bottom:787.652244px;}
.yb{bottom:788.361005px;}
.y27{bottom:789.159450px;}
.y7f{bottom:790.465650px;}
.yeb{bottom:793.253850px;}
.yf5{bottom:793.262100px;}
.ya9{bottom:795.139650px;}
.y34{bottom:795.202950px;}
.y187{bottom:798.474000px;}
.y120{bottom:799.965150px;}
.y146{bottom:799.965450px;}
.y1e3{bottom:800.236350px;}
.y212{bottom:802.700056px;}
.y26{bottom:804.211950px;}
.ya{bottom:807.215993px;}
.y7e{bottom:808.491900px;}
.yea{bottom:811.280100px;}
.yf4{bottom:811.288350px;}
.ya8{bottom:813.165900px;}
.y186{bottom:816.500250px;}
.y211{bottom:817.663869px;}
.y1e2{bottom:818.177100px;}
.y25{bottom:819.183450px;}
.y33{bottom:822.241968px;}
.y7d{bottom:826.432650px;}
.ye9{bottom:829.220850px;}
.yf3{bottom:829.229100px;}
.ya7{bottom:831.192150px;}
.y210{bottom:832.627682px;}
.y24{bottom:834.235950px;}
.y32{bottom:835.681800px;}
.y1e1{bottom:836.203350px;}
.y7c{bottom:844.458900px;}
.y16c{bottom:845.546250px;}
.ye8{bottom:847.247100px;}
.yf2{bottom:847.255350px;}
.y20f{bottom:847.675493px;}
.y23{bottom:848.267550px;}
.ya6{bottom:849.132900px;}
.y16b{bottom:850.903800px;}
.y1e0{bottom:854.229600px;}
.y9{bottom:860.115002px;}
.y7b{bottom:862.485150px;}
.y20e{bottom:862.639306px;}
.y16a{bottom:863.536407px;}
.ya5{bottom:867.159150px;}
.y1df{bottom:872.170350px;}
.y1b8{bottom:872.195877px;}
.y169{bottom:876.976239px;}
.y20d{bottom:877.603119px;}
.y7a{bottom:880.425900px;}
.y8{bottom:881.115002px;}
.y11e{bottom:881.262750px;}
.ya4{bottom:885.185400px;}
.y1b7{bottom:885.719708px;}
.y11d{bottom:886.620300px;}
.y1de{bottom:890.196600px;}
.y168{bottom:890.500070px;}
.y22{bottom:891.803100px;}
.y20c{bottom:892.650931px;}
.y11c{bottom:894.784050px;}
.y79{bottom:898.452150px;}
.y1b6{bottom:899.243539px;}
.y1d4{bottom:899.546250px;}
.y11b{bottom:900.056550px;}
.ya3{bottom:903.126150px;}
.y167{bottom:904.023901px;}
.y1d3{bottom:904.903800px;}
.y1f{bottom:906.774000px;}
.y21{bottom:906.774600px;}
.y20b{bottom:907.614744px;}
.y1dd{bottom:908.222850px;}
.y1b5{bottom:912.683371px;}
.y118{bottom:912.724819px;}
.y11a{bottom:912.727350px;}
.y20{bottom:912.812400px;}
.y1d2{bottom:913.067550px;}
.y78{bottom:916.478400px;}
.y166{bottom:917.547732px;}
.y119{bottom:918.084900px;}
.y1d1{bottom:918.424950px;}
.ya2{bottom:921.152400px;}
.y1e{bottom:921.826500px;}
.y20a{bottom:922.662556px;}
.y1dc{bottom:926.163600px;}
.y1b4{bottom:926.207202px;}
.y115{bottom:926.243438px;}
.y117{bottom:926.248650px;}
.y1d0{bottom:926.588700px;}
.y1d{bottom:927.779250px;}
.y165{bottom:930.987564px;}
.y116{bottom:931.606050px;}
.y1cf{bottom:931.861200px;}
.y77{bottom:934.419150px;}
.y209{bottom:937.626369px;}
.y7{bottom:938.779498px;}
.ya1{bottom:939.178650px;}
.y1b3{bottom:939.731033px;}
.y114{bottom:939.767269px;}
.y164{bottom:944.511395px;}
.y1ce{bottom:944.529469px;}
.y1b{bottom:948.778478px;}
.y76{bottom:952.445400px;}
.y208{bottom:952.590182px;}
.y1db{bottom:953.206050px;}
.y1b2{bottom:953.254864px;}
.y111{bottom:953.287518px;}
.y113{bottom:953.291100px;}
.y1c{bottom:955.842300px;}
.ya0{bottom:957.119400px;}
.y163{bottom:958.035226px;}
.y1cb{bottom:958.047037px;}
.y1cd{bottom:958.053300px;}
.y112{bottom:958.563600px;}
.y1cc{bottom:963.410850px;}
.y1b1{bottom:966.694696px;}
.y10e{bottom:966.722138px;}
.y110{bottom:966.727350px;}
.y19{bottom:966.812400px;}
.y207{bottom:967.637994px;}
.y6{bottom:970.279498px;}
.y75{bottom:970.471650px;}
.y162{bottom:971.559057px;}
.y1ca{bottom:971.570868px;}
.y10f{bottom:972.084750px;}
.y1a{bottom:973.785600px;}
.y9f{bottom:975.145650px;}
.y1b0{bottom:980.218527px;}
.y10d{bottom:980.245969px;}
.y206{bottom:982.601807px;}
.y1c7{bottom:984.996844px;}
.y161{bottom:984.998889px;}
.y1c9{bottom:985.010700px;}
.y74{bottom:988.412400px;}
.y1c8{bottom:990.368250px;}
.y1da{bottom:993.103050px;}
.y9e{bottom:993.171900px;}
.y1af{bottom:993.742358px;}
.y10a{bottom:993.767269px;}
.y10c{bottom:993.769800px;}
.y18{bottom:996.065100px;}
.y205{bottom:997.649619px;}
.y1c6{bottom:998.520675px;}
.y160{bottom:998.522719px;}
.y10b{bottom:999.042300px;}
.y109{bottom:1007.291100px;}
.y107{bottom:1007.292869px;}
.y1d9{bottom:1011.043800px;}
.y9d{bottom:1011.112650px;}
.y1ae{bottom:1011.682134px;}
.y1a9{bottom:1011.694133px;}
.y1a4{bottom:1011.706133px;}
.y1c5{bottom:1012.044506px;}
.y15f{bottom:1012.046550px;}
.y108{bottom:1012.563600px;}
.y204{bottom:1012.613432px;}
.y73{bottom:1015.455000px;}
.y17{bottom:1020.047100px;}
.y106{bottom:1020.732701px;}
.y1a5{bottom:1025.229964px;}
.y1c4{bottom:1025.568337px;}
.y15e{bottom:1025.570381px;}
.y203{bottom:1027.577245px;}
.y1d8{bottom:1029.070050px;}
.y9c{bottom:1029.138900px;}
.y1ad{bottom:1030.053904px;}
.y1a8{bottom:1030.065904px;}
.y5{bottom:1035.546001px;}
.y105{bottom:1038.756476px;}
.y1c3{bottom:1039.008169px;}
.y15d{bottom:1039.010213px;}
.y202{bottom:1042.625057px;}
.y1ac{bottom:1043.493736px;}
.y1a7{bottom:1043.505736px;}
.y1d7{bottom:1047.096300px;}
.y9b{bottom:1047.165150px;}
.y1c0{bottom:1052.529469px;}
.y1c2{bottom:1052.532000px;}
.y15c{bottom:1052.534044px;}
.y1ab{bottom:1057.017567px;}
.y1a6{bottom:1057.029567px;}
.y103{bottom:1057.044247px;}
.y201{bottom:1057.588869px;}
.y1c1{bottom:1057.889400px;}
.y72{bottom:1065.037050px;}
.y9a{bottom:1065.105900px;}
.y1bf{bottom:1066.053300px;}
.y15b{bottom:1066.057875px;}
.y1aa{bottom:1070.541398px;}
.y104{bottom:1070.568078px;}
.y1be{bottom:1071.410700px;}
.y200{bottom:1072.636681px;}
.y71{bottom:1083.063300px;}
.y99{bottom:1083.132150px;}
.y158{bottom:1084.077229px;}
.y15a{bottom:1084.081650px;}
.y1ff{bottom:1087.600494px;}
.y100{bottom:1088.841169px;}
.y102{bottom:1088.843850px;}
.y159{bottom:1089.354150px;}
.y6f{bottom:1091.563980px;}
.y101{bottom:1094.201250px;}
.y70{bottom:1101.089550px;}
.y98{bottom:1101.158400px;}
.yfe{bottom:1102.365000px;}
.y1fe{bottom:1102.564307px;}
.y6e{bottom:1105.086300px;}
.yff{bottom:1107.722700px;}
.ye7{bottom:1141.057950px;}
.y4{bottom:1165.122003px;}
.h19{height:22.876425px;}
.hd{height:25.736568px;}
.h11{height:29.588054px;}
.h16{height:30.029571px;}
.hf{height:30.824589px;}
.h18{height:31.232383px;}
.h17{height:32.174571px;}
.h12{height:34.319571px;}
.hc{height:34.520548px;}
.h4{height:36.726562px;}
.h1a{height:36.989507px;}
.he{height:38.610000px;}
.h1b{height:39.455507px;}
.h2{height:41.317383px;}
.h15{height:43.260433px;}
.h10{height:44.388000px;}
.h13{height:45.423433px;}
.h7{height:45.908203px;}
.h14{height:46.854000px;}
.hb{height:51.786493px;}
.h6{height:55.089844px;}
.ha{height:60.564000px;}
.h3{height:68.862305px;}
.h5{height:82.634766px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w2{width:914.173500px;}
.w3{width:914.250000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x3{left:36.600000px;}
.x7{left:72.028350px;}
.x14{left:76.450350px;}
.x27{left:81.040237px;}
.x64{left:87.004163px;}
.x1b{left:89.971650px;}
.x33{left:124.153230px;}
.x62{left:126.198450px;}
.x63{left:130.450350px;}
.x2d{left:134.277150px;}
.x2e{left:138.529050px;}
.x5{left:145.650000px;}
.x2f{left:146.772947px;}
.x13{left:169.228350px;}
.x8{left:185.385750px;}
.x4{left:191.880000px;}
.x6{left:197.700000px;}
.x2b{left:200.607900px;}
.x2c{left:208.176300px;}
.x28{left:212.678592px;}
.x23{left:222.542469px;}
.x34{left:227.565300px;}
.x3f{left:233.178000px;}
.x2{left:237.559511px;}
.x26{left:241.250235px;}
.x4d{left:252.398095px;}
.x56{left:255.962051px;}
.x24{left:260.473994px;}
.x30{left:288.539175px;}
.x1{left:293.590494px;}
.x9{left:298.658250px;}
.xa{left:305.291250px;}
.x17{left:317.707050px;}
.x18{left:321.703800px;}
.x35{left:333.184200px;}
.x29{left:337.105036px;}
.x2a{left:346.128924px;}
.x1c{left:353.083350px;}
.x1d{left:366.264450px;}
.x36{left:373.237650px;}
.x40{left:378.850350px;}
.x55{left:394.752316px;}
.x25{left:396.368400px;}
.x15{left:402.236100px;}
.x4f{left:403.260210px;}
.x50{left:406.152173px;}
.x16{left:407.423550px;}
.x4e{left:414.480069px;}
.x46{left:422.985750px;}
.x31{left:427.485438px;}
.x47{left:436.166850px;}
.x48{left:442.629750px;}
.x20{left:466.140600px;}
.x32{left:468.560925px;}
.x43{left:473.244000px;}
.x37{left:478.771500px;}
.xb{left:481.407750px;}
.x1f{left:484.166850px;}
.xc{left:488.040900px;}
.x57{left:490.081800px;}
.x58{left:510.406200px;}
.x38{left:519.505350px;}
.x3d{left:525.118050px;}
.x51{left:528.094649px;}
.x44{left:530.730600px;}
.x21{left:535.833000px;}
.x22{left:541.275450px;}
.xd{left:570.188850px;}
.x5e{left:571.972508px;}
.xe{left:575.461200px;}
.x49{left:583.965300px;}
.x45{left:596.380950px;}
.x5d{left:626.059650px;}
.x39{left:630.736800px;}
.x59{left:633.032850px;}
.x61{left:635.839200px;}
.x60{left:638.220300px;}
.x4a{left:661.436100px;}
.x3a{left:668.069250px;}
.x3e{left:673.681800px;}
.x41{left:679.294350px;}
.x5f{left:683.199118px;}
.x4b{left:687.033000px;}
.x53{left:689.672629px;}
.x5a{left:695.706900px;}
.x52{left:696.812540px;}
.x5c{left:702.425100px;}
.x1e{left:707.187300px;}
.xf{left:717.051750px;}
.x10{left:722.749350px;}
.x19{left:725.470800px;}
.x1a{left:730.658100px;}
.x54{left:738.992013px;}
.x4c{left:752.513250px;}
.x5b{left:759.486450px;}
.x3b{left:779.300700px;}
.x11{left:805.407750px;}
.x12{left:815.612400px;}
.x3c{left:817.398150px;}
.x42{left:823.010850px;}
@media print{
.v1{vertical-align:-17.237118pt;}
.v0{vertical-align:0.000000pt;}
.ls2f{letter-spacing:-0.734667pt;}
.ls3c{letter-spacing:-0.733857pt;}
.ls3e{letter-spacing:-0.721058pt;}
.ls3d{letter-spacing:-0.716791pt;}
.ls30{letter-spacing:-0.668800pt;}
.ls31{letter-spacing:-0.648533pt;}
.ls32{letter-spacing:-0.633333pt;}
.ls3a{letter-spacing:-0.593059pt;}
.ls6{letter-spacing:-0.016800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.042666pt;}
.ls2{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.050667pt;}
.ls37{letter-spacing:0.055733pt;}
.ls9{letter-spacing:0.127998pt;}
.ls18{letter-spacing:0.152000pt;}
.ls15{letter-spacing:0.202667pt;}
.ls19{letter-spacing:0.253333pt;}
.ls7{letter-spacing:0.304000pt;}
.ls2c{letter-spacing:0.526933pt;}
.ls14{letter-spacing:0.719990pt;}
.ls23{letter-spacing:0.749867pt;}
.ls1d{letter-spacing:0.770133pt;}
.ls27{letter-spacing:0.775200pt;}
.ls29{letter-spacing:0.800533pt;}
.ls21{letter-spacing:0.805600pt;}
.ls24{letter-spacing:0.810667pt;}
.ls1f{letter-spacing:0.815733pt;}
.ls22{letter-spacing:0.820800pt;}
.ls28{letter-spacing:0.825867pt;}
.ls20{letter-spacing:0.830933pt;}
.ls25{letter-spacing:0.846133pt;}
.ls2a{letter-spacing:0.871467pt;}
.ls26{letter-spacing:0.962667pt;}
.lsb{letter-spacing:0.999987pt;}
.ls13{letter-spacing:8.277230pt;}
.ls12{letter-spacing:8.533227pt;}
.ls39{letter-spacing:9.736412pt;}
.ls8{letter-spacing:9.930667pt;}
.ls16{letter-spacing:10.184000pt;}
.ls3{letter-spacing:10.608000pt;}
.ls1a{letter-spacing:11.248000pt;}
.ls33{letter-spacing:12.842506pt;}
.ls38{letter-spacing:13.055837pt;}
.ls1{letter-spacing:13.296000pt;}
.ls17{letter-spacing:13.933333pt;}
.ls2d{letter-spacing:14.237333pt;}
.ls4{letter-spacing:15.098667pt;}
.ls1e{letter-spacing:15.200000pt;}
.ls2e{letter-spacing:16.000160pt;}
.ls1c{letter-spacing:19.709333pt;}
.ls5{letter-spacing:21.229333pt;}
.ls3b{letter-spacing:21.264801pt;}
.ls1b{letter-spacing:25.434667pt;}
.ls2b{letter-spacing:30.232800pt;}
.ls10{letter-spacing:117.715862pt;}
.ls34{letter-spacing:117.758528pt;}
.ls11{letter-spacing:118.910514pt;}
.lse{letter-spacing:122.238472pt;}
.lsf{letter-spacing:123.433124pt;}
.lsd{letter-spacing:134.952980pt;}
.lsa{letter-spacing:139.247739pt;}
.ls36{letter-spacing:295.846969pt;}
.ws153{word-spacing:-30.283467pt;}
.ws232{word-spacing:-21.307467pt;}
.ws0{word-spacing:-12.432000pt;}
.ws228{word-spacing:-9.779078pt;}
.ws152{word-spacing:-0.820800pt;}
.ws1f1{word-spacing:-0.056001pt;}
.ws2d{word-spacing:-0.050667pt;}
.ws1a{word-spacing:-0.048000pt;}
.wsdf{word-spacing:-0.042666pt;}
.ws11{word-spacing:-0.039999pt;}
.ws65{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws231{word-spacing:0.550393pt;}
.ws1cc{word-spacing:7.982834pt;}
.ws110{word-spacing:8.196164pt;}
.ws16b{word-spacing:8.217497pt;}
.wseb{word-spacing:8.219890pt;}
.ws166{word-spacing:8.285763pt;}
.ws1cf{word-spacing:8.302830pt;}
.ws1c1{word-spacing:8.328429pt;}
.ws1d9{word-spacing:8.405228pt;}
.ws1c0{word-spacing:8.439361pt;}
.ws112{word-spacing:8.520427pt;}
.ws1f7{word-spacing:8.558826pt;}
.ws1d8{word-spacing:8.665492pt;}
.ws22e{word-spacing:8.703891pt;}
.ws207{word-spacing:8.759357pt;}
.ws115{word-spacing:8.827882pt;}
.ws22d{word-spacing:8.857489pt;}
.ws20b{word-spacing:9.066553pt;}
.ws20d{word-spacing:9.279884pt;}
.ws21b{word-spacing:9.292684pt;}
.ws239{word-spacing:9.335350pt;}
.ws20e{word-spacing:9.360950pt;}
.ws1ef{word-spacing:9.365216pt;}
.ws21c{word-spacing:9.565747pt;}
.wsd7{word-spacing:9.578547pt;}
.ws206{word-spacing:9.582814pt;}
.ws227{word-spacing:9.625480pt;}
.wsd8{word-spacing:9.693745pt;}
.ws1fb{word-spacing:9.813211pt;}
.ws202{word-spacing:9.821744pt;}
.ws203{word-spacing:9.915609pt;}
.ws1b9{word-spacing:9.932676pt;}
.wsf6{word-spacing:10.118133pt;}
.ws209{word-spacing:10.146007pt;}
.ws20a{word-spacing:10.171606pt;}
.ws1fa{word-spacing:10.248405pt;}
.ws236{word-spacing:10.269738pt;}
.ws189{word-spacing:10.391733pt;}
.ws1f9{word-spacing:10.504402pt;}
.ws19{word-spacing:10.574400pt;}
.ws66{word-spacing:10.692114pt;}
.wsb0{word-spacing:10.710933pt;}
.ws74{word-spacing:10.842667pt;}
.ws64{word-spacing:10.945977pt;}
.ws49{word-spacing:11.004800pt;}
.ws32{word-spacing:11.009867pt;}
.ws237{word-spacing:11.012129pt;}
.ws67{word-spacing:11.140108pt;}
.ws31{word-spacing:11.151733pt;}
.ws80{word-spacing:11.156800pt;}
.wse4{word-spacing:11.169994pt;}
.ws211{word-spacing:11.187060pt;}
.ws234{word-spacing:11.233993pt;}
.ws63{word-spacing:11.252106pt;}
.wsba{word-spacing:11.288533pt;}
.ws210{word-spacing:11.293725pt;}
.ws13e{word-spacing:11.349333pt;}
.ws58{word-spacing:11.359467pt;}
.ws57{word-spacing:11.369600pt;}
.ws170{word-spacing:11.389867pt;}
.ws235{word-spacing:11.396124pt;}
.wsb7{word-spacing:11.405067pt;}
.ws17f{word-spacing:11.435467pt;}
.ws238{word-spacing:11.451590pt;}
.wse5{word-spacing:11.472923pt;}
.ws13f{word-spacing:11.552000pt;}
.wsfe{word-spacing:11.553989pt;}
.ws1a8{word-spacing:11.557067pt;}
.wsfd{word-spacing:11.686254pt;}
.ws76{word-spacing:11.719200pt;}
.wsff{word-spacing:11.809986pt;}
.ws15c{word-spacing:11.866133pt;}
.ws1fc{word-spacing:11.886785pt;}
.ws22a{word-spacing:11.912384pt;}
.ws6a{word-spacing:11.959841pt;}
.ws25{word-spacing:11.997717pt;}
.ws1c{word-spacing:12.014400pt;}
.ws20{word-spacing:12.081600pt;}
.ws146{word-spacing:12.114400pt;}
.ws1b5{word-spacing:12.155581pt;}
.ws161{word-spacing:12.168381pt;}
.ws71{word-spacing:12.175200pt;}
.ws1d0{word-spacing:12.189714pt;}
.ws3d{word-spacing:12.220800pt;}
.ws23{word-spacing:12.223837pt;}
.ws22b{word-spacing:12.232380pt;}
.ws111{word-spacing:12.245180pt;}
.ws114{word-spacing:12.253713pt;}
.ws1cb{word-spacing:12.257980pt;}
.ws1f8{word-spacing:12.270780pt;}
.ws4c{word-spacing:12.281600pt;}
.wsea{word-spacing:12.283580pt;}
.ws4{word-spacing:12.297717pt;}
.ws160{word-spacing:12.300646pt;}
.ws1ce{word-spacing:12.309179pt;}
.ws92{word-spacing:12.317067pt;}
.wsda{word-spacing:12.321979pt;}
.ws168{word-spacing:12.326246pt;}
.ws28{word-spacing:12.330513pt;}
.ws3e{word-spacing:12.342400pt;}
.ws1b7{word-spacing:12.343312pt;}
.ws26{word-spacing:12.347579pt;}
.ws8{word-spacing:12.353718pt;}
.ws1d3{word-spacing:12.360379pt;}
.wse3{word-spacing:12.364645pt;}
.ws1c3{word-spacing:12.367733pt;}
.ws113{word-spacing:12.368912pt;}
.ws1b8{word-spacing:12.373179pt;}
.ws10e{word-spacing:12.390245pt;}
.ws91{word-spacing:12.403200pt;}
.ws88{word-spacing:12.413333pt;}
.ws6{word-spacing:12.415318pt;}
.ws100{word-spacing:12.415845pt;}
.wsa9{word-spacing:12.423467pt;}
.ws24{word-spacing:12.437178pt;}
.ws101{word-spacing:12.445711pt;}
.ws162{word-spacing:12.454244pt;}
.ws167{word-spacing:12.462778pt;}
.ws27{word-spacing:12.467044pt;}
.wsd9{word-spacing:12.471311pt;}
.ws1b2{word-spacing:12.475577pt;}
.wsdb{word-spacing:12.488377pt;}
.ws1aa{word-spacing:12.499467pt;}
.ws1bd{word-spacing:12.501177pt;}
.ws205{word-spacing:12.505444pt;}
.ws5{word-spacing:12.510519pt;}
.ws107{word-spacing:12.518244pt;}
.wsdc{word-spacing:12.526777pt;}
.ws10c{word-spacing:12.539577pt;}
.ws1bc{word-spacing:12.543843pt;}
.wsdd{word-spacing:12.548110pt;}
.ws1b4{word-spacing:12.560910pt;}
.ws1b6{word-spacing:12.565176pt;}
.ws2f{word-spacing:12.570400pt;}
.ws7{word-spacing:12.577720pt;}
.ws1b3{word-spacing:12.577976pt;}
.ws1c9{word-spacing:12.582243pt;}
.wse2{word-spacing:12.590776pt;}
.ws22c{word-spacing:12.595043pt;}
.ws1b1{word-spacing:12.599309pt;}
.ws1af{word-spacing:12.603576pt;}
.wse1{word-spacing:12.612109pt;}
.ws1d4{word-spacing:12.646242pt;}
.ws69{word-spacing:12.659042pt;}
.ws1c2{word-spacing:12.667575pt;}
.wsde{word-spacing:12.671842pt;}
.wse0{word-spacing:12.680375pt;}
.ws1f0{word-spacing:12.684641pt;}
.ws163{word-spacing:12.688908pt;}
.ws20c{word-spacing:12.693175pt;}
.ws144{word-spacing:12.697067pt;}
.wse6{word-spacing:12.714508pt;}
.ws1b0{word-spacing:12.718774pt;}
.ws226{word-spacing:12.723041pt;}
.ws9{word-spacing:12.723321pt;}
.ws1d7{word-spacing:12.744374pt;}
.ws208{word-spacing:12.748641pt;}
.ws23a{word-spacing:12.752907pt;}
.ws4d{word-spacing:12.828800pt;}
.wsb1{word-spacing:12.838933pt;}
.ws77{word-spacing:12.879467pt;}
.wsfb{word-spacing:12.884533pt;}
.ws194{word-spacing:12.912129pt;}
.ws60{word-spacing:13.001067pt;}
.ws1da{word-spacing:13.031467pt;}
.wsbd{word-spacing:13.072000pt;}
.wsbc{word-spacing:13.092267pt;}
.ws17d{word-spacing:13.112533pt;}
.ws3c{word-spacing:13.183467pt;}
.ws14b{word-spacing:13.198667pt;}
.ws123{word-spacing:13.229067pt;}
.ws5b{word-spacing:13.274667pt;}
.ws1f2{word-spacing:13.281967pt;}
.ws218{word-spacing:13.358766pt;}
.ws122{word-spacing:13.365867pt;}
.ws1df{word-spacing:13.370933pt;}
.ws1a0{word-spacing:13.436800pt;}
.wsbb{word-spacing:13.457067pt;}
.ws225{word-spacing:13.461165pt;}
.wsa0{word-spacing:13.477333pt;}
.ws1ec{word-spacing:13.478232pt;}
.ws1fd{word-spacing:13.482498pt;}
.ws217{word-spacing:13.516631pt;}
.ws18{word-spacing:13.536000pt;}
.ws14a{word-spacing:13.538133pt;}
.wsa2{word-spacing:13.553333pt;}
.wsf0{word-spacing:13.578667pt;}
.ws11d{word-spacing:13.593867pt;}
.ws1ed{word-spacing:13.623296pt;}
.wsa1{word-spacing:13.700267pt;}
.wsa8{word-spacing:13.720533pt;}
.ws1f3{word-spacing:13.742762pt;}
.ws21a{word-spacing:13.926226pt;}
.ws17e{word-spacing:14.049867pt;}
.wsc{word-spacing:14.112000pt;}
.wsd{word-spacing:14.150400pt;}
.ws33{word-spacing:14.161333pt;}
.ws10{word-spacing:14.174400pt;}
.ws22f{word-spacing:14.186489pt;}
.ws13d{word-spacing:14.186667pt;}
.ws1fe{word-spacing:14.195023pt;}
.wsb{word-spacing:14.212800pt;}
.ws13c{word-spacing:14.217067pt;}
.wsf{word-spacing:14.241600pt;}
.ws200{word-spacing:14.293155pt;}
.ws94{word-spacing:14.313333pt;}
.wse{word-spacing:14.318400pt;}
.ws15e{word-spacing:14.333600pt;}
.ws30{word-spacing:14.353867pt;}
.ws1ff{word-spacing:14.365687pt;}
.ws221{word-spacing:14.421153pt;}
.ws21{word-spacing:14.443200pt;}
.ws1ad{word-spacing:14.460267pt;}
.ws118{word-spacing:14.500800pt;}
.ws178{word-spacing:14.612267pt;}
.ws220{word-spacing:14.664350pt;}
.ws1de{word-spacing:14.683200pt;}
.ws35{word-spacing:14.703467pt;}
.ws180{word-spacing:14.830133pt;}
.ws145{word-spacing:14.916267pt;}
.ws1a9{word-spacing:14.997333pt;}
.wsb9{word-spacing:15.007467pt;}
.ws187{word-spacing:15.012533pt;}
.ws14c{word-spacing:15.017600pt;}
.ws181{word-spacing:15.037867pt;}
.ws229{word-spacing:15.048345pt;}
.ws193{word-spacing:15.063200pt;}
.ws1ab{word-spacing:15.068267pt;}
.ws52{word-spacing:15.078400pt;}
.ws4a{word-spacing:15.108800pt;}
.wsab{word-spacing:15.134133pt;}
.wsaa{word-spacing:15.144267pt;}
.ws50{word-spacing:15.149333pt;}
.ws137{word-spacing:15.154400pt;}
.wsc1{word-spacing:15.164533pt;}
.ws7f{word-spacing:15.184800pt;}
.ws87{word-spacing:15.189867pt;}
.ws6c{word-spacing:15.205067pt;}
.ws17a{word-spacing:15.245600pt;}
.ws1ac{word-spacing:15.260800pt;}
.ws12e{word-spacing:15.291200pt;}
.ws127{word-spacing:15.301333pt;}
.ws1a4{word-spacing:15.306400pt;}
.wsf4{word-spacing:15.311467pt;}
.ws3a{word-spacing:15.326667pt;}
.ws188{word-spacing:15.341867pt;}
.ws223{word-spacing:15.381141pt;}
.wsc2{word-spacing:15.397600pt;}
.ws179{word-spacing:15.407733pt;}
.wsfa{word-spacing:15.412800pt;}
.ws1a3{word-spacing:15.448267pt;}
.ws16d{word-spacing:15.462207pt;}
.ws4b{word-spacing:15.498933pt;}
.wsc3{word-spacing:15.514133pt;}
.ws16f{word-spacing:15.529333pt;}
.ws117{word-spacing:15.590133pt;}
.ws159{word-spacing:15.630667pt;}
.ws12c{word-spacing:15.640800pt;}
.ws1a5{word-spacing:15.645867pt;}
.ws128{word-spacing:15.666133pt;}
.ws12a{word-spacing:15.671200pt;}
.ws134{word-spacing:15.686400pt;}
.wse7{word-spacing:15.709670pt;}
.ws116{word-spacing:15.752267pt;}
.ws129{word-spacing:15.787733pt;}
.ws6d{word-spacing:15.818825pt;}
.ws195{word-spacing:15.824158pt;}
.ws176{word-spacing:15.838400pt;}
.ws3b{word-spacing:15.848533pt;}
.ws18d{word-spacing:15.863733pt;}
.ws18f{word-spacing:15.894133pt;}
.ws177{word-spacing:15.975200pt;}
.ws73{word-spacing:15.995467pt;}
.wsb6{word-spacing:16.000533pt;}
.ws1a7{word-spacing:16.010827pt;}
.ws4f{word-spacing:16.015733pt;}
.ws38{word-spacing:16.036000pt;}
.ws132{word-spacing:16.041067pt;}
.ws12b{word-spacing:16.056267pt;}
.ws5a{word-spacing:16.074827pt;}
.ws5e{word-spacing:16.096800pt;}
.ws54{word-spacing:16.122828pt;}
.ws12f{word-spacing:16.127200pt;}
.wsed{word-spacing:16.147467pt;}
.ws20f{word-spacing:16.196064pt;}
.ws75{word-spacing:16.228533pt;}
.ws1a2{word-spacing:16.289333pt;}
.ws21e{word-spacing:16.289930pt;}
.ws19a{word-spacing:16.304533pt;}
.ws2c{word-spacing:16.340000pt;}
.ws2e{word-spacing:16.370400pt;}
.ws7a{word-spacing:16.395733pt;}
.ws16e{word-spacing:16.405128pt;}
.ws2{word-spacing:16.411733pt;}
.wsef{word-spacing:16.413756pt;}
.ws61{word-spacing:16.421067pt;}
.ws1a1{word-spacing:16.426133pt;}
.ws29{word-spacing:16.447357pt;}
.ws5c{word-spacing:16.451467pt;}
.wsa{word-spacing:16.464157pt;}
.ws19b{word-spacing:16.502133pt;}
.ws12d{word-spacing:16.507200pt;}
.ws53{word-spacing:16.542558pt;}
.ws1d{word-spacing:16.545600pt;}
.ws1e{word-spacing:16.560000pt;}
.ws175{word-spacing:16.578133pt;}
.wsae{word-spacing:16.598400pt;}
.wsaf{word-spacing:16.644000pt;}
.ws1eb{word-spacing:16.648959pt;}
.ws36{word-spacing:16.659200pt;}
.ws21d{word-spacing:16.676029pt;}
.ws93{word-spacing:16.684533pt;}
.ws14f{word-spacing:16.694667pt;}
.ws37{word-spacing:16.801067pt;}
.ws130{word-spacing:16.821333pt;}
.ws141{word-spacing:16.826400pt;}
.ws131{word-spacing:16.902400pt;}
.ws212{word-spacing:16.917122pt;}
.ws1e0{word-spacing:16.922667pt;}
.ws56{word-spacing:16.948000pt;}
.ws18a{word-spacing:16.953067pt;}
.ws11b{word-spacing:16.963200pt;}
.ws11c{word-spacing:16.998667pt;}
.ws15d{word-spacing:17.100000pt;}
.wse9{word-spacing:17.117653pt;}
.wsf5{word-spacing:17.125333pt;}
.ws213{word-spacing:17.198718pt;}
.wse8{word-spacing:17.254184pt;}
.ws16a{word-spacing:17.296850pt;}
.ws1e7{word-spacing:17.317867pt;}
.wsd6{word-spacing:17.328000pt;}
.ws2b{word-spacing:17.348267pt;}
.ws192{word-spacing:17.363467pt;}
.ws15{word-spacing:17.366400pt;}
.wsa3{word-spacing:17.414133pt;}
.ws12{word-spacing:17.452800pt;}
.ws124{word-spacing:17.459733pt;}
.ws22{word-spacing:17.476800pt;}
.ws169{word-spacing:17.510181pt;}
.ws14{word-spacing:17.524800pt;}
.ws41{word-spacing:17.550933pt;}
.ws216{word-spacing:17.557114pt;}
.ws215{word-spacing:17.574180pt;}
.wsf9{word-spacing:17.626933pt;}
.ws99{word-spacing:17.657333pt;}
.ws9a{word-spacing:17.697867pt;}
.ws222{word-spacing:17.732045pt;}
.ws119{word-spacing:17.738400pt;}
.wsac{word-spacing:17.778933pt;}
.ws43{word-spacing:17.829600pt;}
.ws2a{word-spacing:17.966400pt;}
.ws59{word-spacing:18.022133pt;}
.ws9c{word-spacing:18.032267pt;}
.ws48{word-spacing:18.062667pt;}
.ws9b{word-spacing:18.088000pt;}
.ws34{word-spacing:18.093067pt;}
.wsc4{word-spacing:18.098133pt;}
.ws204{word-spacing:18.133107pt;}
.ws79{word-spacing:18.153867pt;}
.wsd3{word-spacing:18.169067pt;}
.wsd0{word-spacing:18.255200pt;}
.wsa5{word-spacing:18.310933pt;}
.ws6b{word-spacing:18.321067pt;}
.ws6f{word-spacing:18.346400pt;}
.ws70{word-spacing:18.397067pt;}
.ws224{word-spacing:18.410437pt;}
.ws147{word-spacing:18.513600pt;}
.wsfc{word-spacing:18.569333pt;}
.ws1ee{word-spacing:18.581101pt;}
.wsb3{word-spacing:18.614933pt;}
.wsd1{word-spacing:18.625067pt;}
.ws156{word-spacing:18.706133pt;}
.ws143{word-spacing:18.883467pt;}
.ws1e6{word-spacing:18.888533pt;}
.ws157{word-spacing:18.893600pt;}
.ws1e8{word-spacing:18.939200pt;}
.ws8a{word-spacing:18.944267pt;}
.ws17b{word-spacing:19.162133pt;}
.ws125{word-spacing:19.253333pt;}
.ws171{word-spacing:19.298933pt;}
.ws191{word-spacing:19.349600pt;}
.ws85{word-spacing:19.420533pt;}
.ws149{word-spacing:19.466133pt;}
.ws19f{word-spacing:19.476267pt;}
.ws148{word-spacing:19.547200pt;}
.wsf1{word-spacing:19.602933pt;}
.ws185{word-spacing:19.618133pt;}
.ws13{word-spacing:19.641600pt;}
.ws1c5{word-spacing:19.668800pt;}
.wsd2{word-spacing:19.780267pt;}
.wsf3{word-spacing:19.795467pt;}
.ws9f{word-spacing:19.825867pt;}
.ws96{word-spacing:19.846133pt;}
.ws21f{word-spacing:19.852552pt;}
.ws136{word-spacing:19.901867pt;}
.wsec{word-spacing:19.912000pt;}
.ws182{word-spacing:19.967733pt;}
.wsf2{word-spacing:20.048800pt;}
.wsa6{word-spacing:20.134933pt;}
.ws89{word-spacing:20.160267pt;}
.ws158{word-spacing:20.180533pt;}
.ws1e2{word-spacing:20.231200pt;}
.ws19d{word-spacing:20.241333pt;}
.ws5d{word-spacing:20.246400pt;}
.ws1e1{word-spacing:20.266667pt;}
.ws214{word-spacing:20.279213pt;}
.wsf8{word-spacing:20.286933pt;}
.wsb8{word-spacing:20.332533pt;}
.ws83{word-spacing:20.398400pt;}
.ws1e3{word-spacing:20.535200pt;}
.ws196{word-spacing:20.550400pt;}
.ws1c4{word-spacing:20.661867pt;}
.ws184{word-spacing:20.732800pt;}
.ws7b{word-spacing:20.742933pt;}
.ws7c{word-spacing:20.783467pt;}
.ws11e{word-spacing:20.849333pt;}
.ws135{word-spacing:20.965867pt;}
.ws40{word-spacing:21.087467pt;}
.ws44{word-spacing:21.153333pt;}
.ws72{word-spacing:21.158400pt;}
.ws3f{word-spacing:21.193867pt;}
.ws18b{word-spacing:21.219200pt;}
.ws42{word-spacing:21.259733pt;}
.ws45{word-spacing:21.290133pt;}
.ws1e4{word-spacing:21.371200pt;}
.ws8d{word-spacing:21.386400pt;}
.ws18c{word-spacing:21.411733pt;}
.wsb5{word-spacing:21.442133pt;}
.ws230{word-spacing:21.486665pt;}
.ws233{word-spacing:21.516531pt;}
.wsce{word-spacing:21.584000pt;}
.wsb2{word-spacing:21.594133pt;}
.ws8c{word-spacing:21.660000pt;}
.wscd{word-spacing:21.680267pt;}
.ws47{word-spacing:21.715733pt;}
.ws183{word-spacing:21.736000pt;}
.ws46{word-spacing:21.796800pt;}
.ws8b{word-spacing:21.862667pt;}
.wsf7{word-spacing:21.948800pt;}
.wsb4{word-spacing:22.141333pt;}
.ws3{word-spacing:22.146133pt;}
.ws219{word-spacing:22.267455pt;}
.ws82{word-spacing:22.440267pt;}
.ws9e{word-spacing:22.541600pt;}
.ws1f{word-spacing:22.608000pt;}
.wsa7{word-spacing:22.622667pt;}
.ws173{word-spacing:22.637867pt;}
.ws190{word-spacing:22.835467pt;}
.wsc9{word-spacing:22.860800pt;}
.ws11a{word-spacing:22.962133pt;}
.ws174{word-spacing:23.007733pt;}
.ws8e{word-spacing:23.149600pt;}
.ws18e{word-spacing:23.159733pt;}
.ws14e{word-spacing:23.195200pt;}
.ws186{word-spacing:23.245867pt;}
.ws1ae{word-spacing:23.509333pt;}
.wsa4{word-spacing:23.549867pt;}
.wsc0{word-spacing:23.625867pt;}
.ws98{word-spacing:23.782933pt;}
.ws51{word-spacing:23.858933pt;}
.ws95{word-spacing:23.985600pt;}
.ws78{word-spacing:24.598667pt;}
.ws15a{word-spacing:24.669600pt;}
.ws97{word-spacing:24.963467pt;}
.ws121{word-spacing:25.014133pt;}
.ws6e{word-spacing:25.049600pt;}
.ws11f{word-spacing:25.140800pt;}
.ws120{word-spacing:25.191467pt;}
.ws140{word-spacing:25.221867pt;}
.wscb{word-spacing:25.409333pt;}
.ws1e5{word-spacing:25.419467pt;}
.wsd4{word-spacing:25.424533pt;}
.ws8f{word-spacing:25.470133pt;}
.ws68{word-spacing:25.497281pt;}
.wsad{word-spacing:25.672800pt;}
.ws1c6{word-spacing:25.758933pt;}
.ws1c7{word-spacing:25.926133pt;}
.ws126{word-spacing:25.946400pt;}
.wscf{word-spacing:26.047733pt;}
.ws17c{word-spacing:26.113600pt;}
.ws81{word-spacing:26.296000pt;}
.ws55{word-spacing:26.453067pt;}
.ws19e{word-spacing:26.524000pt;}
.wsee{word-spacing:26.579733pt;}
.ws133{word-spacing:26.615200pt;}
.ws1db{word-spacing:26.736800pt;}
.ws1a6{word-spacing:26.802667pt;}
.ws84{word-spacing:26.924267pt;}
.wsc5{word-spacing:27.050933pt;}
.ws14d{word-spacing:27.380267pt;}
.ws7d{word-spacing:27.395467pt;}
.ws16{word-spacing:27.768000pt;}
.ws1dc{word-spacing:28.150400pt;}
.ws151{word-spacing:28.342933pt;}
.ws1b{word-spacing:28.396800pt;}
.ws201{word-spacing:28.415645pt;}
.wsbe{word-spacing:28.464533pt;}
.ws1dd{word-spacing:28.479733pt;}
.ws150{word-spacing:28.535467pt;}
.wsbf{word-spacing:28.616533pt;}
.ws1ea{word-spacing:28.905333pt;}
.ws1e9{word-spacing:28.940800pt;}
.ws139{word-spacing:29.143467pt;}
.wsc8{word-spacing:29.209333pt;}
.ws19c{word-spacing:29.315733pt;}
.ws7e{word-spacing:29.508267pt;}
.ws142{word-spacing:30.151733pt;}
.ws16c{word-spacing:30.356954pt;}
.ws9d{word-spacing:30.759733pt;}
.ws1f5{word-spacing:31.112144pt;}
.ws1f4{word-spacing:31.265743pt;}
.ws155{word-spacing:31.281600pt;}
.ws198{word-spacing:31.393067pt;}
.ws1f6{word-spacing:31.466273pt;}
.ws154{word-spacing:31.469067pt;}
.ws197{word-spacing:31.844000pt;}
.ws13a{word-spacing:32.300000pt;}
.ws13b{word-spacing:32.365867pt;}
.ws86{word-spacing:32.370933pt;}
.ws62{word-spacing:32.452000pt;}
.ws15b{word-spacing:32.923200pt;}
.ws17{word-spacing:33.177600pt;}
.ws90{word-spacing:33.222133pt;}
.ws138{word-spacing:33.662933pt;}
.ws172{word-spacing:35.071467pt;}
.ws199{word-spacing:35.101867pt;}
.wsc7{word-spacing:35.269067pt;}
.wsc6{word-spacing:35.456533pt;}
.ws15f{word-spacing:37.204533pt;}
.wsca{word-spacing:37.462933pt;}
.wsd5{word-spacing:37.974667pt;}
.ws4e{word-spacing:37.989867pt;}
.wscc{word-spacing:38.577600pt;}
.ws39{word-spacing:39.433867pt;}
.ws1c8{word-spacing:40.112800pt;}
.ws5f{word-spacing:41.222400pt;}
.ws108{word-spacing:69.464732pt;}
.ws109{word-spacing:69.477532pt;}
.ws10a{word-spacing:69.503131pt;}
.ws10d{word-spacing:69.515931pt;}
.ws10f{word-spacing:69.524464pt;}
.ws10b{word-spacing:69.788994pt;}
.ws1d5{word-spacing:73.727078pt;}
.ws1cd{word-spacing:73.735612pt;}
.ws1d2{word-spacing:75.860385pt;}
.ws103{word-spacing:99.190227pt;}
.ws102{word-spacing:99.194493pt;}
.ws104{word-spacing:109.165569pt;}
.ws105{word-spacing:109.195435pt;}
.ws106{word-spacing:132.653275pt;}
.ws1be{word-spacing:132.998871pt;}
.ws1bb{word-spacing:133.011671pt;}
.ws1bf{word-spacing:133.276201pt;}
.ws1ba{word-spacing:160.100399pt;}
.ws1ca{word-spacing:161.853977pt;}
.ws1d1{word-spacing:230.781115pt;}
.ws164{word-spacing:262.106590pt;}
.ws165{word-spacing:270.874481pt;}
.ws1d6{word-spacing:955.892051pt;}
._2c{margin-left:-29.455124pt;}
._63{margin-left:-22.074088pt;}
._62{margin-left:-10.235962pt;}
._4{margin-left:-4.416000pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._2{margin-left:-0.960000pt;}
._c{width:1.319924pt;}
._23{width:3.493409pt;}
._32{width:7.756322pt;}
._2e{width:9.135200pt;}
._1b{width:10.168800pt;}
._d{width:12.129600pt;}
._8{width:13.329600pt;}
._11{width:14.343733pt;}
._6{width:15.446400pt;}
._f{width:17.056876pt;}
._5{width:17.992971pt;}
._e{width:19.146933pt;}
._17{width:20.150133pt;}
._12{width:21.280000pt;}
._b{width:22.905600pt;}
._18{width:24.441600pt;}
._15{width:25.703200pt;}
._7{width:26.894400pt;}
._a{width:28.344000pt;}
._9{width:29.337600pt;}
._16{width:30.668533pt;}
._1a{width:31.747733pt;}
._2d{width:33.044800pt;}
._19{width:34.164533pt;}
._1c{width:36.431809pt;}
._1d{width:38.760000pt;}
._10{width:40.616876pt;}
._13{width:42.443467pt;}
._53{width:57.897943pt;}
._61{width:70.778849pt;}
._14{width:78.889766pt;}
._2b{width:89.372749pt;}
._2a{width:95.998800pt;}
._57{width:110.100339pt;}
._5e{width:118.385720pt;}
._59{width:129.513048pt;}
._4c{width:133.054337pt;}
._43{width:134.052724pt;}
._27{width:136.326829pt;}
._26{width:139.351858pt;}
._29{width:141.766761pt;}
._28{width:147.513889pt;}
._3e{width:150.833315pt;}
._44{width:153.299417pt;}
._1e{width:165.732328pt;}
._40{width:173.514631pt;}
._49{width:184.910755pt;}
._3f{width:205.783028pt;}
._47{width:213.343467pt;}
._3a{width:219.082507pt;}
._1f{width:222.264955pt;}
._4d{width:226.040908pt;}
._21{width:231.920301pt;}
._56{width:239.224743pt;}
._51{width:245.995858pt;}
._5b{width:248.880089pt;}
._4a{width:252.621909pt;}
._39{width:270.183289pt;}
._33{width:271.429902pt;}
._54{width:291.896085pt;}
._60{width:297.242533pt;}
._45{width:300.561576pt;}
._4e{width:309.896926pt;}
._58{width:315.216693pt;}
._20{width:316.915505pt;}
._46{width:320.832256pt;}
._4b{width:328.853489pt;}
._48{width:329.851877pt;}
._25{width:339.259759pt;}
._34{width:342.284788pt;}
._24{width:345.774878pt;}
._3b{width:362.239739pt;}
._42{width:363.468523pt;}
._4f{width:373.123869pt;}
._22{width:392.161498pt;}
._30{width:412.799107pt;}
._37{width:450.068737pt;}
._5d{width:456.685491pt;}
._38{width:461.728628pt;}
._3c{width:470.747931pt;}
._50{width:548.464611pt;}
._3d{width:632.158880pt;}
._36{width:641.485315pt;}
._2f{width:651.183327pt;}
._35{width:668.066316pt;}
._52{width:670.997479pt;}
._5c{width:683.460257pt;}
._31{width:697.420615pt;}
._41{width:749.021037pt;}
._55{width:809.432015pt;}
._5f{width:840.458827pt;}
._5a{width:897.038387pt;}
._3{width:1068.261333pt;}
.fs10{font-size:28.440000pt;}
.fs9{font-size:31.995733pt;}
.fsf{font-size:33.773867pt;}
.fs8{font-size:37.329600pt;}
.fse{font-size:37.332800pt;}
.fsa{font-size:39.999467pt;}
.fsb{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsd{font-size:53.333867pt;}
.fs7{font-size:56.000533pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:24.825333pt;}
.y6c{bottom:40.365772pt;}
.y171{bottom:50.711267pt;}
.y11f{bottom:50.721333pt;}
.y145{bottom:50.729067pt;}
.yd2{bottom:50.737333pt;}
.y1bd{bottom:50.800933pt;}
.y185{bottom:50.834667pt;}
.y6b{bottom:51.098952pt;}
.ye6{bottom:52.074050pt;}
.y2{bottom:60.086668pt;}
.y6a{bottom:61.757467pt;}
.y170{bottom:62.732450pt;}
.ye5{bottom:64.095233pt;}
.y144{bottom:66.752400pt;}
.yd1{bottom:66.760667pt;}
.y1bc{bottom:66.824267pt;}
.y184{bottom:66.858000pt;}
.y16f{bottom:74.678967pt;}
.y1{bottom:74.753335pt;}
.y6d{bottom:76.044133pt;}
.ye4{bottom:76.116416pt;}
.y143{bottom:82.699733pt;}
.yd0{bottom:82.708000pt;}
.y1bb{bottom:82.771600pt;}
.y183{bottom:82.805333pt;}
.y16e{bottom:86.700150pt;}
.ye3{bottom:88.062933pt;}
.ye2{bottom:92.825200pt;}
.y16d{bottom:98.721333pt;}
.y142{bottom:98.723067pt;}
.ycf{bottom:98.731333pt;}
.y182{bottom:98.828667pt;}
.ye1{bottom:104.074450pt;}
.y69{bottom:114.456133pt;}
.y141{bottom:114.746400pt;}
.yce{bottom:114.754667pt;}
.y181{bottom:114.852000pt;}
.y52{bottom:114.871733pt;}
.ye0{bottom:116.095633pt;}
.y1d6{bottom:126.989884pt;}
.ydf{bottom:128.116816pt;}
.y68{bottom:130.479467pt;}
.ycd{bottom:130.702000pt;}
.y180{bottom:130.799333pt;}
.y51{bottom:130.895067pt;}
.y140{bottom:136.365333pt;}
.y1d5{bottom:139.011067pt;}
.yde{bottom:140.063334pt;}
.y67{bottom:146.502800pt;}
.ycc{bottom:146.725333pt;}
.y17f{bottom:146.822667pt;}
.y50{bottom:146.918400pt;}
.ydd{bottom:152.084517pt;}
.y66{bottom:162.450133pt;}
.ycb{bottom:162.748667pt;}
.y17e{bottom:162.846000pt;}
.y4f{bottom:162.865733pt;}
.ydc{bottom:164.105700pt;}
.ydb{bottom:176.126883pt;}
.y65{bottom:178.473467pt;}
.yca{bottom:178.696000pt;}
.y13f{bottom:178.703867pt;}
.yc8{bottom:178.723733pt;}
.y17d{bottom:178.793333pt;}
.y4e{bottom:178.889067pt;}
.yc9{bottom:184.365333pt;}
.yda{bottom:188.073400pt;}
.y64{bottom:194.496800pt;}
.y13e{bottom:194.727200pt;}
.yc7{bottom:194.747067pt;}
.y17c{bottom:194.816667pt;}
.y4d{bottom:194.912400pt;}
.y1a3{bottom:202.733867pt;}
.yd8{bottom:204.094533pt;}
.y63{bottom:210.444133pt;}
.y13d{bottom:210.750533pt;}
.yc6{bottom:210.770400pt;}
.y17b{bottom:210.840000pt;}
.y4c{bottom:210.859733pt;}
.yd9{bottom:216.115716pt;}
.y13c{bottom:226.697867pt;}
.yc5{bottom:226.717733pt;}
.y17a{bottom:226.787333pt;}
.y4b{bottom:226.883067pt;}
.yd6{bottom:232.356904pt;}
.y62{bottom:234.481867pt;}
.yd7{bottom:237.127467pt;}
.y1a2{bottom:240.935067pt;}
.y13b{bottom:242.721200pt;}
.yc4{bottom:242.741067pt;}
.y179{bottom:242.810667pt;}
.y4a{bottom:242.906400pt;}
.yd5{bottom:244.378087pt;}
.y1fd{bottom:246.381000pt;}
.y235{bottom:246.808732pt;}
.y1a1{bottom:256.958400pt;}
.yc3{bottom:258.764400pt;}
.y178{bottom:258.834000pt;}
.y49{bottom:258.853733pt;}
.y1fc{bottom:259.682167pt;}
.y234{bottom:260.109899pt;}
.yd4{bottom:260.633884pt;}
.y13a{bottom:266.683333pt;}
.yd3{bottom:272.655067pt;}
.y1a0{bottom:272.905733pt;}
.y1fb{bottom:273.058000pt;}
.y233{bottom:273.485732pt;}
.y61{bottom:274.630133pt;}
.yc2{bottom:274.711733pt;}
.y177{bottom:274.781333pt;}
.y48{bottom:274.877067pt;}
.y16{bottom:278.513334pt;}
.y1fa{bottom:286.359167pt;}
.y232{bottom:286.786899pt;}
.y19f{bottom:288.929067pt;}
.y60{bottom:290.653467pt;}
.yc1{bottom:290.735067pt;}
.y176{bottom:290.804667pt;}
.y47{bottom:290.900400pt;}
.y1f9{bottom:299.660334pt;}
.y231{bottom:300.088066pt;}
.y19e{bottom:304.952400pt;}
.y5f{bottom:306.676800pt;}
.yc0{bottom:306.758400pt;}
.y175{bottom:306.828000pt;}
.y46{bottom:306.847733pt;}
.y139{bottom:311.104800pt;}
.y1f8{bottom:313.036167pt;}
.y230{bottom:313.463899pt;}
.y97{bottom:318.684133pt;}
.y19d{bottom:320.899733pt;}
.y5e{bottom:322.624133pt;}
.ybf{bottom:322.705733pt;}
.y174{bottom:322.775333pt;}
.y45{bottom:322.871067pt;}
.y1f7{bottom:326.337334pt;}
.y22f{bottom:326.765066pt;}
.y138{bottom:327.128133pt;}
.y96{bottom:334.707467pt;}
.y15{bottom:335.713334pt;}
.y19c{bottom:336.923067pt;}
.y5d{bottom:338.647467pt;}
.ybe{bottom:338.729067pt;}
.y173{bottom:338.798667pt;}
.y44{bottom:338.894400pt;}
.y1f6{bottom:339.638501pt;}
.y22e{bottom:340.140899pt;}
.y137{bottom:343.151467pt;}
.y95{bottom:350.730800pt;}
.y19b{bottom:352.946400pt;}
.y1f5{bottom:353.014333pt;}
.y22d{bottom:353.442066pt;}
.y5c{bottom:354.670800pt;}
.ybd{bottom:354.752400pt;}
.y172{bottom:354.822000pt;}
.y43{bottom:354.841733pt;}
.y136{bottom:359.098800pt;}
.y1f4{bottom:366.315501pt;}
.y94{bottom:366.678133pt;}
.y22c{bottom:366.743233pt;}
.y19a{bottom:368.893733pt;}
.ybc{bottom:370.699733pt;}
.y42{bottom:370.865067pt;}
.y135{bottom:375.122133pt;}
.y5b{bottom:378.632933pt;}
.y1f3{bottom:379.691333pt;}
.y22b{bottom:380.119066pt;}
.y93{bottom:382.701467pt;}
.y199{bottom:384.917067pt;}
.ybb{bottom:386.723067pt;}
.y41{bottom:386.888400pt;}
.y134{bottom:391.145467pt;}
.y22a{bottom:393.420233pt;}
.y1ba{bottom:394.353484pt;}
.y14{bottom:395.518667pt;}
.y92{bottom:398.724800pt;}
.y198{bottom:400.940400pt;}
.y1f2{bottom:401.007733pt;}
.y5a{bottom:402.670800pt;}
.yba{bottom:402.746400pt;}
.y40{bottom:402.835733pt;}
.y1b9{bottom:406.374667pt;}
.y229{bottom:406.796066pt;}
.y133{bottom:407.092800pt;}
.y91{bottom:414.672133pt;}
.y197{bottom:416.887733pt;}
.y3f{bottom:418.859067pt;}
.y228{bottom:420.097233pt;}
.y132{bottom:423.116133pt;}
.yb9{bottom:426.708533pt;}
.y90{bottom:430.695467pt;}
.y196{bottom:432.911067pt;}
.y227{bottom:433.398400pt;}
.y3e{bottom:434.882400pt;}
.y131{bottom:439.139467pt;}
.y1f1{bottom:441.766833pt;}
.y59{bottom:442.938400pt;}
.y8f{bottom:446.642800pt;}
.y226{bottom:446.774233pt;}
.y195{bottom:448.934400pt;}
.y13{bottom:450.113334pt;}
.y3d{bottom:450.829733pt;}
.y130{bottom:455.086800pt;}
.y1f0{bottom:455.142666pt;}
.y58{bottom:458.885733pt;}
.y225{bottom:460.075400pt;}
.y8e{bottom:462.666133pt;}
.y194{bottom:464.881733pt;}
.yb8{bottom:466.820800pt;}
.y3c{bottom:466.853067pt;}
.y1ef{bottom:468.443833pt;}
.y157{bottom:471.094000pt;}
.y12f{bottom:471.110133pt;}
.y224{bottom:473.376567pt;}
.y57{bottom:474.909067pt;}
.y8d{bottom:478.689467pt;}
.y1ee{bottom:481.745000pt;}
.yb7{bottom:482.844133pt;}
.y3b{bottom:482.876400pt;}
.y223{bottom:486.752400pt;}
.y156{bottom:487.117333pt;}
.y12e{bottom:487.133467pt;}
.y193{bottom:488.922374pt;}
.y56{bottom:490.932400pt;}
.y8c{bottom:494.636800pt;}
.y1ed{bottom:495.120833pt;}
.y3a{bottom:498.823733pt;}
.yb6{bottom:498.867467pt;}
.y222{bottom:500.053567pt;}
.y155{bottom:503.064667pt;}
.y12d{bottom:503.080800pt;}
.y192{bottom:504.869200pt;}
.y55{bottom:506.879733pt;}
.y1ec{bottom:508.422000pt;}
.y12{bottom:509.918667pt;}
.y8b{bottom:510.660133pt;}
.y221{bottom:513.429399pt;}
.yb5{bottom:514.814800pt;}
.y39{bottom:514.847067pt;}
.y154{bottom:519.088000pt;}
.y12c{bottom:519.104133pt;}
.y54{bottom:522.903067pt;}
.y8a{bottom:526.683467pt;}
.y220{bottom:526.730567pt;}
.y1eb{bottom:529.738533pt;}
.yb4{bottom:530.838133pt;}
.y153{bottom:535.111333pt;}
.y12b{bottom:535.127467pt;}
.y38{bottom:538.884933pt;}
.y53{bottom:538.926400pt;}
.y21f{bottom:540.031734pt;}
.y11{bottom:540.452001pt;}
.y89{bottom:542.630800pt;}
.yb3{bottom:546.861467pt;}
.y191{bottom:549.825333pt;}
.y152{bottom:551.058667pt;}
.y12a{bottom:551.074800pt;}
.y21e{bottom:553.407566pt;}
.y10{bottom:553.785335pt;}
.y88{bottom:558.654133pt;}
.yb2{bottom:562.808800pt;}
.y190{bottom:565.772667pt;}
.y21d{bottom:566.708733pt;}
.y151{bottom:567.082000pt;}
.y129{bottom:567.098133pt;}
.yf{bottom:567.118667pt;}
.y1ea{bottom:570.557333pt;}
.y87{bottom:574.677467pt;}
.yf1{bottom:577.137867pt;}
.yfd{bottom:577.163200pt;}
.yb1{bottom:578.832133pt;}
.y21c{bottom:580.200827pt;}
.y18f{bottom:581.796000pt;}
.y150{bottom:583.105333pt;}
.y128{bottom:583.121467pt;}
.y14e{bottom:583.121733pt;}
.y14f{bottom:588.699067pt;}
.y86{bottom:590.624800pt;}
.y1e9{bottom:591.873867pt;}
.yf0{bottom:593.085200pt;}
.yfc{bottom:593.110533pt;}
.y21b{bottom:593.501994pt;}
.y31{bottom:594.808800pt;}
.yb0{bottom:594.855467pt;}
.y18e{bottom:597.819333pt;}
.y127{bottom:599.068800pt;}
.y14d{bottom:599.069067pt;}
.y85{bottom:606.648133pt;}
.y21a{bottom:606.803161pt;}
.y30{bottom:608.188800pt;}
.yef{bottom:609.108533pt;}
.yfb{bottom:609.133867pt;}
.yaf{bottom:610.802800pt;}
.y18d{bottom:613.766667pt;}
.y126{bottom:615.092133pt;}
.y14c{bottom:615.092400pt;}
.y219{bottom:620.178994pt;}
.y2f{bottom:621.496800pt;}
.y84{bottom:622.671467pt;}
.yfa{bottom:625.157200pt;}
.yae{bottom:626.826133pt;}
.y18c{bottom:629.790000pt;}
.y125{bottom:631.115467pt;}
.y14b{bottom:631.115733pt;}
.y1e8{bottom:631.280533pt;}
.yee{bottom:633.069173pt;}
.y218{bottom:633.480161pt;}
.y2e{bottom:634.876800pt;}
.y83{bottom:638.618800pt;}
.ye{bottom:639.818662pt;}
.yf9{bottom:641.104533pt;}
.yad{bottom:642.849467pt;}
.y18b{bottom:645.813333pt;}
.y217{bottom:646.855994pt;}
.y124{bottom:647.062800pt;}
.y14a{bottom:647.063067pt;}
.y1e7{bottom:647.303867pt;}
.y2d{bottom:648.184800pt;}
.yed{bottom:649.096000pt;}
.y82{bottom:654.642133pt;}
.yf8{bottom:657.127867pt;}
.yac{bottom:658.796800pt;}
.y216{bottom:660.157161pt;}
.y2a{bottom:661.479067pt;}
.y2c{bottom:661.492800pt;}
.y18a{bottom:661.760667pt;}
.y123{bottom:663.086133pt;}
.y149{bottom:663.086400pt;}
.y1e6{bottom:663.327200pt;}
.y2b{bottom:666.859733pt;}
.yd{bottom:667.245338pt;}
.y81{bottom:670.665467pt;}
.y37{bottom:671.617367pt;}
.yec{bottom:673.133733pt;}
.yf7{bottom:673.151200pt;}
.y215{bottom:673.458328pt;}
.yab{bottom:674.820133pt;}
.y29{bottom:674.859067pt;}
.y189{bottom:677.784000pt;}
.y122{bottom:679.109467pt;}
.y148{bottom:679.109733pt;}
.y1e5{bottom:679.274533pt;}
.y36{bottom:683.638550pt;}
.yc{bottom:684.005328pt;}
.y80{bottom:686.612800pt;}
.y214{bottom:686.834161pt;}
.y28{bottom:688.167067pt;}
.yf6{bottom:689.098533pt;}
.yaa{bottom:690.843467pt;}
.y188{bottom:693.807333pt;}
.y121{bottom:695.056800pt;}
.y147{bottom:695.057067pt;}
.y1e4{bottom:695.297867pt;}
.y35{bottom:695.659733pt;}
.y213{bottom:700.135328pt;}
.yb{bottom:700.765337pt;}
.y27{bottom:701.475067pt;}
.y7f{bottom:702.636133pt;}
.yeb{bottom:705.114533pt;}
.yf5{bottom:705.121867pt;}
.ya9{bottom:706.790800pt;}
.y34{bottom:706.847067pt;}
.y187{bottom:709.754667pt;}
.y120{bottom:711.080133pt;}
.y146{bottom:711.080400pt;}
.y1e3{bottom:711.321200pt;}
.y212{bottom:713.511161pt;}
.y26{bottom:714.855067pt;}
.ya{bottom:717.525327pt;}
.y7e{bottom:718.659467pt;}
.yea{bottom:721.137867pt;}
.yf4{bottom:721.145200pt;}
.ya8{bottom:722.814133pt;}
.y186{bottom:725.778000pt;}
.y211{bottom:726.812328pt;}
.y1e2{bottom:727.268533pt;}
.y25{bottom:728.163067pt;}
.y33{bottom:730.881749pt;}
.y7d{bottom:734.606800pt;}
.ye9{bottom:737.085200pt;}
.yf3{bottom:737.092533pt;}
.ya7{bottom:738.837467pt;}
.y210{bottom:740.113495pt;}
.y24{bottom:741.543067pt;}
.y32{bottom:742.828267pt;}
.y1e1{bottom:743.291867pt;}
.y7c{bottom:750.630133pt;}
.y16c{bottom:751.596667pt;}
.ye8{bottom:753.108533pt;}
.yf2{bottom:753.115867pt;}
.y20f{bottom:753.489327pt;}
.y23{bottom:754.015600pt;}
.ya6{bottom:754.784800pt;}
.y16b{bottom:756.358933pt;}
.y1e0{bottom:759.315200pt;}
.y9{bottom:764.546669pt;}
.y7b{bottom:766.653467pt;}
.y20e{bottom:766.790495pt;}
.y16a{bottom:767.587917pt;}
.ya5{bottom:770.808133pt;}
.y1df{bottom:775.262533pt;}
.y1b8{bottom:775.285224pt;}
.y169{bottom:779.534435pt;}
.y20d{bottom:780.091662pt;}
.y7a{bottom:782.600800pt;}
.y8{bottom:783.213335pt;}
.y11e{bottom:783.344667pt;}
.ya4{bottom:786.831467pt;}
.y1b7{bottom:787.306407pt;}
.y11d{bottom:788.106933pt;}
.y1de{bottom:791.285867pt;}
.y168{bottom:791.555618pt;}
.y22{bottom:792.713867pt;}
.y20c{bottom:793.467494pt;}
.y11c{bottom:795.363600pt;}
.y79{bottom:798.624133pt;}
.y1b6{bottom:799.327590pt;}
.y1d4{bottom:799.596667pt;}
.y11b{bottom:800.050267pt;}
.ya3{bottom:802.778800pt;}
.y167{bottom:803.576801pt;}
.y1d3{bottom:804.358933pt;}
.y1f{bottom:806.021333pt;}
.y21{bottom:806.021867pt;}
.y20b{bottom:806.768661pt;}
.y1dd{bottom:807.309200pt;}
.y1b5{bottom:811.274108pt;}
.y118{bottom:811.310950pt;}
.y11a{bottom:811.313200pt;}
.y20{bottom:811.388800pt;}
.y1d2{bottom:811.615600pt;}
.y78{bottom:814.647467pt;}
.y166{bottom:815.597984pt;}
.y119{bottom:816.075467pt;}
.y1d1{bottom:816.377733pt;}
.ya2{bottom:818.802133pt;}
.y1e{bottom:819.401333pt;}
.y20a{bottom:820.144494pt;}
.y1dc{bottom:823.256533pt;}
.y1b4{bottom:823.295291pt;}
.y115{bottom:823.327501pt;}
.y117{bottom:823.332133pt;}
.y1d0{bottom:823.634400pt;}
.y1d{bottom:824.692667pt;}
.y165{bottom:827.544501pt;}
.y116{bottom:828.094267pt;}
.y1cf{bottom:828.321067pt;}
.y77{bottom:830.594800pt;}
.y209{bottom:833.445661pt;}
.y7{bottom:834.470665pt;}
.ya1{bottom:834.825467pt;}
.y1b3{bottom:835.316474pt;}
.y114{bottom:835.348684pt;}
.y164{bottom:839.565684pt;}
.y1ce{bottom:839.581750pt;}
.y1b{bottom:843.358647pt;}
.y76{bottom:846.618133pt;}
.y208{bottom:846.746828pt;}
.y1db{bottom:847.294267pt;}
.y1b2{bottom:847.337657pt;}
.y111{bottom:847.366683pt;}
.y113{bottom:847.369867pt;}
.y1c{bottom:849.637600pt;}
.ya0{bottom:850.772800pt;}
.y163{bottom:851.586867pt;}
.y1cb{bottom:851.597366pt;}
.y1cd{bottom:851.602933pt;}
.y112{bottom:852.056533pt;}
.y1cc{bottom:856.365200pt;}
.y1b1{bottom:859.284174pt;}
.y10e{bottom:859.308567pt;}
.y110{bottom:859.313200pt;}
.y19{bottom:859.388800pt;}
.y207{bottom:860.122661pt;}
.y6{bottom:862.470665pt;}
.y75{bottom:862.641467pt;}
.y162{bottom:863.608050pt;}
.y1ca{bottom:863.618549pt;}
.y10f{bottom:864.075333pt;}
.y1a{bottom:865.587200pt;}
.y9f{bottom:866.796133pt;}
.y1b0{bottom:871.305357pt;}
.y10d{bottom:871.329750pt;}
.y206{bottom:873.423828pt;}
.y1c7{bottom:875.552750pt;}
.y161{bottom:875.554568pt;}
.y1c9{bottom:875.565067pt;}
.y74{bottom:878.588800pt;}
.y1c8{bottom:880.327333pt;}
.y1da{bottom:882.758267pt;}
.y9e{bottom:882.819467pt;}
.y1af{bottom:883.326540pt;}
.y10a{bottom:883.348684pt;}
.y10c{bottom:883.350933pt;}
.y18{bottom:885.391200pt;}
.y205{bottom:886.799661pt;}
.y1c6{bottom:887.573933pt;}
.y160{bottom:887.575751pt;}
.y10b{bottom:888.037600pt;}
.y109{bottom:895.369867pt;}
.y107{bottom:895.371439pt;}
.y1d9{bottom:898.705600pt;}
.y9d{bottom:898.766800pt;}
.y1ae{bottom:899.273008pt;}
.y1a9{bottom:899.283674pt;}
.y1a4{bottom:899.294341pt;}
.y1c5{bottom:899.595117pt;}
.y15f{bottom:899.596934pt;}
.y108{bottom:900.056533pt;}
.y204{bottom:900.100828pt;}
.y73{bottom:902.626667pt;}
.y17{bottom:906.708533pt;}
.y106{bottom:907.317957pt;}
.y1a5{bottom:911.315524pt;}
.y1c4{bottom:911.616300pt;}
.y15e{bottom:911.618117pt;}
.y203{bottom:913.401995pt;}
.y1d8{bottom:914.728933pt;}
.y9c{bottom:914.790133pt;}
.y1ad{bottom:915.603470pt;}
.y1a8{bottom:915.614137pt;}
.y5{bottom:920.485335pt;}
.y105{bottom:923.339090pt;}
.y1c3{bottom:923.562817pt;}
.y15d{bottom:923.564634pt;}
.y202{bottom:926.777828pt;}
.y1ac{bottom:927.549987pt;}
.y1a7{bottom:927.560654pt;}
.y1d7{bottom:930.752267pt;}
.y9b{bottom:930.813467pt;}
.y1c0{bottom:935.581750pt;}
.y1c2{bottom:935.584000pt;}
.y15c{bottom:935.585817pt;}
.y1ab{bottom:939.571171pt;}
.y1a6{bottom:939.581837pt;}
.y103{bottom:939.594887pt;}
.y201{bottom:940.078995pt;}
.y1c1{bottom:940.346133pt;}
.y72{bottom:946.699600pt;}
.y9a{bottom:946.760800pt;}
.y1bf{bottom:947.602933pt;}
.y15b{bottom:947.607000pt;}
.y1aa{bottom:951.592354pt;}
.y104{bottom:951.616070pt;}
.y1be{bottom:952.365067pt;}
.y200{bottom:953.454828pt;}
.y71{bottom:962.722933pt;}
.y99{bottom:962.784133pt;}
.y158{bottom:963.624203pt;}
.y15a{bottom:963.628133pt;}
.y1ff{bottom:966.755995pt;}
.y100{bottom:967.858817pt;}
.y102{bottom:967.861200pt;}
.y159{bottom:968.314800pt;}
.y6f{bottom:970.279094pt;}
.y101{bottom:972.623333pt;}
.y70{bottom:978.746267pt;}
.y98{bottom:978.807467pt;}
.yfe{bottom:979.880000pt;}
.y1fe{bottom:980.057162pt;}
.y6e{bottom:982.298933pt;}
.yff{bottom:984.642400pt;}
.ye7{bottom:1014.273733pt;}
.y4{bottom:1035.664002pt;}
.h19{height:20.334600pt;}
.hd{height:22.876949pt;}
.h11{height:26.300493pt;}
.h16{height:26.692952pt;}
.hf{height:27.399635pt;}
.h18{height:27.762118pt;}
.h17{height:28.599619pt;}
.h12{height:30.506285pt;}
.hc{height:30.684931pt;}
.h4{height:32.645833pt;}
.h1a{height:32.879562pt;}
.he{height:34.320000pt;}
.h1b{height:35.071562pt;}
.h2{height:36.726562pt;}
.h15{height:38.453718pt;}
.h10{height:39.456000pt;}
.h13{height:40.376385pt;}
.h7{height:40.807292pt;}
.h14{height:41.648000pt;}
.hb{height:46.032438pt;}
.h6{height:48.968750pt;}
.ha{height:53.834667pt;}
.h3{height:61.210938pt;}
.h5{height:73.453125pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w2{width:812.598667pt;}
.w3{width:812.666667pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x3{left:32.533333pt;}
.x7{left:64.025200pt;}
.x14{left:67.955867pt;}
.x27{left:72.035767pt;}
.x64{left:77.337034pt;}
.x1b{left:79.974800pt;}
.x33{left:110.358426pt;}
.x62{left:112.176400pt;}
.x63{left:115.955867pt;}
.x2d{left:119.357467pt;}
.x2e{left:123.136933pt;}
.x5{left:129.466667pt;}
.x2f{left:130.464842pt;}
.x13{left:150.425200pt;}
.x8{left:164.787333pt;}
.x4{left:170.560000pt;}
.x6{left:175.733333pt;}
.x2b{left:178.318133pt;}
.x2c{left:185.045600pt;}
.x28{left:189.047637pt;}
.x23{left:197.815528pt;}
.x34{left:202.280267pt;}
.x3f{left:207.269333pt;}
.x2{left:211.164010pt;}
.x26{left:214.444653pt;}
.x4d{left:224.353863pt;}
.x56{left:227.521823pt;}
.x24{left:231.532439pt;}
.x30{left:256.479267pt;}
.x1{left:260.969328pt;}
.x9{left:265.474000pt;}
.xa{left:271.370000pt;}
.x17{left:282.406267pt;}
.x18{left:285.958933pt;}
.x35{left:296.163733pt;}
.x29{left:299.648921pt;}
.x2a{left:307.670154pt;}
.x1c{left:313.851867pt;}
.x1d{left:325.568400pt;}
.x36{left:331.766800pt;}
.x40{left:336.755867pt;}
.x55{left:350.890947pt;}
.x25{left:352.327467pt;}
.x15{left:357.543200pt;}
.x4f{left:358.453520pt;}
.x50{left:361.024154pt;}
.x16{left:362.154267pt;}
.x4e{left:368.426728pt;}
.x46{left:375.987333pt;}
.x31{left:379.987056pt;}
.x47{left:387.703867pt;}
.x48{left:393.448667pt;}
.x20{left:414.347200pt;}
.x32{left:416.498600pt;}
.x43{left:420.661333pt;}
.x37{left:425.574667pt;}
.xb{left:427.918000pt;}
.x1f{left:430.370533pt;}
.xc{left:433.814133pt;}
.x57{left:435.628267pt;}
.x58{left:453.694400pt;}
.x38{left:461.782533pt;}
.x3d{left:466.771600pt;}
.x51{left:469.417466pt;}
.x44{left:471.760533pt;}
.x21{left:476.296000pt;}
.x22{left:481.133733pt;}
.xd{left:506.834533pt;}
.x5e{left:508.420007pt;}
.xe{left:511.521067pt;}
.x49{left:519.080267pt;}
.x45{left:530.116400pt;}
.x5d{left:556.497467pt;}
.x39{left:560.654933pt;}
.x59{left:562.695867pt;}
.x61{left:565.190400pt;}
.x60{left:567.306933pt;}
.x4a{left:587.943200pt;}
.x3a{left:593.839333pt;}
.x3e{left:598.828267pt;}
.x41{left:603.817200pt;}
.x5f{left:607.288105pt;}
.x4b{left:610.696000pt;}
.x53{left:613.042337pt;}
.x5a{left:618.406133pt;}
.x52{left:619.388925pt;}
.x5c{left:624.377867pt;}
.x1e{left:628.610933pt;}
.xf{left:637.379333pt;}
.x10{left:642.443867pt;}
.x19{left:644.862933pt;}
.x1a{left:649.473867pt;}
.x54{left:656.881789pt;}
.x4c{left:668.900667pt;}
.x5b{left:675.099067pt;}
.x3b{left:692.711733pt;}
.x11{left:715.918000pt;}
.x12{left:724.988800pt;}
.x3c{left:726.576133pt;}
.x42{left:731.565200pt;}
}




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