
    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_31aa050fd00f0b3610d70bad.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_bc7064fb4de4c6cd648cd99e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.703000;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_d0549a183ac3a8d3705e8480.woff')format("woff");}.ff3{font-family:ff3;line-height:0.498000;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_f8eb23ab399736341b21a566.woff')format("woff");}.ff4{font-family:ff4;line-height:0.984333;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_99e2e4bd89e0bde91e78dbaf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.127000;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_568792b0d4790fe0bb34c33a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_31806f1d6a48c90a65e3898a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.160000;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_9ae230a1c75fc23c12db6ed2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916000;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_4b6c8140781c9d5882b1c3a5.woff')format("woff");}.ff9{font-family:ff9;line-height:1.152000;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_2465d7ff8b3ef75ed8638bf5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.142000;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_663f0bb1b753d10edd45b13d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.146000;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_35ef5bb00d3b1772428d24dd.woff')format("woff");}.ffc{font-family:ffc;line-height:1.146000;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_38d33301a75bc408ee80f86b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.968000;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_35ef5bb00d3b1772428d24dd.woff')format("woff");}.ffe{font-family:ffe;line-height:1.146000;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_61235dee4ff8cb7ffd63b76e.woff')format("woff");}.fff{font-family:fff;line-height:1.001000;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_35ef5bb00d3b1772428d24dd.woff')format("woff");}.ff10{font-family:ff10;line-height:1.146000;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_baca944b6e3128915acb4b4c.woff')format("woff");}.ff11{font-family:ff11;line-height:0.676270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8b18c38d92f291635ae026ae.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4dc212761efc246a1ad8a345.woff')format("woff");}.ff13{font-family:ff13;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_395ae926d20e203036e1a1ac.woff')format("woff");}.ff14{font-family:ff14;line-height:0.936127;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:ff15;src:url('chunks/assets/font_a7fa55961a5f40452206f45f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.891113;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:ff16;src:url('chunks/assets/font_663037c89faf2b4b79b16c13.woff')format("woff");}.ff16{font-family:ff16;line-height:0.973000;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:ff17;src:url('chunks/assets/font_5929de151d16d261eabc3fab.woff')format("woff");}.ff17{font-family:ff17;line-height:0.929199;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;}
.m1{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294118,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v5{vertical-align:-13.200000px;}
.v11{vertical-align:-12.000000px;}
.v3{vertical-align:-9.000000px;}
.v1{vertical-align:-6.000000px;}
.v10{vertical-align:-4.157400px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.432200px;}
.v2{vertical-align:9.000000px;}
.v6{vertical-align:13.200000px;}
.v9{vertical-align:19.980000px;}
.v7{vertical-align:22.317047px;}
.vc{vertical-align:25.980000px;}
.vd{vertical-align:27.480000px;}
.vb{vertical-align:33.750000px;}
.va{vertical-align:36.000000px;}
.ve{vertical-align:43.980000px;}
.vf{vertical-align:46.230000px;}
.v4{vertical-align:156.000000px;}
.ls11{letter-spacing:-0.792000px;}
.ls14{letter-spacing:-0.660000px;}
.ls1c{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.330000px;}
.ls18{letter-spacing:-0.192390px;}
.ls6{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000600px;}
.ls19{letter-spacing:0.003000px;}
.ls1a{letter-spacing:0.003600px;}
.ls5{letter-spacing:0.330000px;}
.ls21{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.480000px;}
.ls22{letter-spacing:0.535500px;}
.ls0{letter-spacing:0.570000px;}
.ls12{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.750000px;}
.ls9{letter-spacing:0.765000px;}
.ls29{letter-spacing:0.767400px;}
.ls24{letter-spacing:0.840000px;}
.ls28{letter-spacing:0.892500px;}
.ls8{letter-spacing:0.900000px;}
.ls26{letter-spacing:1.260000px;}
.ls2b{letter-spacing:1.380000px;}
.ls4{letter-spacing:1.440000px;}
.ls1b{letter-spacing:1.523141px;}
.lsb{letter-spacing:1.680000px;}
.ls25{letter-spacing:2.040000px;}
.lsd{letter-spacing:2.409600px;}
.lsf{letter-spacing:2.681400px;}
.ls10{letter-spacing:2.712000px;}
.lse{letter-spacing:2.794800px;}
.ls7{letter-spacing:3.402000px;}
.ls16{letter-spacing:4.199400px;}
.ls1d{letter-spacing:4.869000px;}
.ls17{letter-spacing:6.815400px;}
.ls2{letter-spacing:7.125000px;}
.ls1{letter-spacing:8.098800px;}
.ls15{letter-spacing:8.124000px;}
.lsc{letter-spacing:8.718000px;}
.ls3{letter-spacing:8.820000px;}
.ls23{letter-spacing:19.681800px;}
.ls20{letter-spacing:121.893000px;}
.ls1f{letter-spacing:163.932600px;}
.ls1e{letter-spacing:826.044600px;}
.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;}
}
.ws23{word-spacing:-62.005574px;}
.ws0{word-spacing:-32.262000px;}
.ws22{word-spacing:-21.504000px;}
.ws184{word-spacing:-17.040000px;}
.wsb3{word-spacing:-16.848000px;}
.ws6c{word-spacing:-16.830000px;}
.ws102{word-spacing:-16.754540px;}
.ws24{word-spacing:-16.500000px;}
.ws151{word-spacing:-16.440000px;}
.ws1ce{word-spacing:-16.380000px;}
.ws185{word-spacing:-16.260000px;}
.ws6{word-spacing:-16.170000px;}
.ws183{word-spacing:-15.900000px;}
.ws182{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.750000px;}
.ws6b{word-spacing:-15.708000px;}
.ws186{word-spacing:-15.480000px;}
.ws150{word-spacing:-15.420000px;}
.ws105{word-spacing:-15.000000px;}
.ws11e{word-spacing:-14.700000px;}
.ws104{word-spacing:-14.400000px;}
.ws4{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.230000px;}
.ws1c9{word-spacing:-10.500000px;}
.wsde{word-spacing:-9.619500px;}
.wsdf{word-spacing:-9.427110px;}
.ws2{word-spacing:-8.904000px;}
.ws14f{word-spacing:-8.745000px;}
.ws1d0{word-spacing:-7.740000px;}
.ws1{word-spacing:-7.200000px;}
.ws1ca{word-spacing:-4.980000px;}
.ws1be{word-spacing:-4.740000px;}
.wsb4{word-spacing:-3.960000px;}
.wse7{word-spacing:-3.762000px;}
.ws1ad{word-spacing:-3.540000px;}
.ws9{word-spacing:-3.402000px;}
.ws98{word-spacing:-3.366000px;}
.wsa9{word-spacing:-3.300000px;}
.ws7c{word-spacing:-3.234000px;}
.ws8c{word-spacing:-3.168000px;}
.wsfe{word-spacing:-3.102000px;}
.ws4a{word-spacing:-3.087000px;}
.wsa2{word-spacing:-3.036000px;}
.ws87{word-spacing:-2.970000px;}
.ws18{word-spacing:-2.961000px;}
.ws17f{word-spacing:-2.940000px;}
.wsf0{word-spacing:-2.904000px;}
.ws90{word-spacing:-2.838000px;}
.ws8b{word-spacing:-2.772000px;}
.ws16{word-spacing:-2.646000px;}
.ws65{word-spacing:-2.640000px;}
.ws33{word-spacing:-2.583000px;}
.ws130{word-spacing:-2.574000px;}
.wsb{word-spacing:-2.520000px;}
.wsa4{word-spacing:-2.508000px;}
.ws18c{word-spacing:-2.460000px;}
.wsb8{word-spacing:-2.442000px;}
.ws2e{word-spacing:-2.394000px;}
.wsd9{word-spacing:-2.376000px;}
.ws2c{word-spacing:-2.331000px;}
.wsd1{word-spacing:-2.310000px;}
.ws10e{word-spacing:-2.244000px;}
.wsed{word-spacing:-2.178000px;}
.wsae{word-spacing:-2.112000px;}
.ws17d{word-spacing:-2.100000px;}
.ws45{word-spacing:-2.079000px;}
.wsbc{word-spacing:-2.046000px;}
.ws19e{word-spacing:-2.040000px;}
.ws17{word-spacing:-2.016000px;}
.wsf5{word-spacing:-1.980000px;}
.wsa{word-spacing:-1.944000px;}
.ws1a4{word-spacing:-1.860000px;}
.wsf8{word-spacing:-1.782000px;}
.ws11{word-spacing:-1.764000px;}
.ws1ab{word-spacing:-1.740000px;}
.ws75{word-spacing:-1.716000px;}
.ws1db{word-spacing:-1.680000px;}
.wsec{word-spacing:-1.650000px;}
.ws30{word-spacing:-1.638000px;}
.ws5{word-spacing:-1.584000px;}
.ws110{word-spacing:-1.523141px;}
.ws51{word-spacing:-1.518000px;}
.ws1bd{word-spacing:-1.500000px;}
.ws94{word-spacing:-1.452000px;}
.ws199{word-spacing:-1.440000px;}
.ws79{word-spacing:-1.386000px;}
.wsd2{word-spacing:-1.320000px;}
.ws1d2{word-spacing:-1.260000px;}
.wsd3{word-spacing:-1.254000px;}
.ws1d9{word-spacing:-1.200000px;}
.wsf1{word-spacing:-1.122000px;}
.wsc4{word-spacing:-1.056000px;}
.wsaa{word-spacing:-0.990000px;}
.wsd8{word-spacing:-0.924000px;}
.ws113{word-spacing:-0.900000px;}
.ws187{word-spacing:-0.892500px;}
.ws1f{word-spacing:-0.882000px;}
.ws78{word-spacing:-0.858000px;}
.ws191{word-spacing:-0.840000px;}
.wsdd{word-spacing:-0.792000px;}
.ws1df{word-spacing:-0.780000px;}
.wsb9{word-spacing:-0.726000px;}
.wscb{word-spacing:-0.720000px;}
.ws6a{word-spacing:-0.660000px;}
.wsf2{word-spacing:-0.654126px;}
.ws111{word-spacing:-0.600000px;}
.ws64{word-spacing:-0.594000px;}
.ws47{word-spacing:-0.567000px;}
.ws152{word-spacing:-0.535500px;}
.wsff{word-spacing:-0.528000px;}
.ws5e{word-spacing:-0.462000px;}
.wsbf{word-spacing:-0.396000px;}
.ws165{word-spacing:-0.360000px;}
.ws4d{word-spacing:-0.330000px;}
.ws1c4{word-spacing:-0.300000px;}
.wsad{word-spacing:-0.264000px;}
.ws9a{word-spacing:-0.198000px;}
.ws4b{word-spacing:-0.189000px;}
.ws18b{word-spacing:-0.180000px;}
.wsc9{word-spacing:-0.132000px;}
.ws1cd{word-spacing:-0.120000px;}
.ws7a{word-spacing:-0.066000px;}
.ws163{word-spacing:-0.060000px;}
.ws8{word-spacing:0.000000px;}
.ws192{word-spacing:0.060000px;}
.wsf6{word-spacing:0.066000px;}
.ws9c{word-spacing:0.132000px;}
.wsef{word-spacing:0.192390px;}
.wsee{word-spacing:0.198000px;}
.ws1a0{word-spacing:0.240000px;}
.wsa3{word-spacing:0.264000px;}
.ws1ac{word-spacing:0.300000px;}
.ws1b{word-spacing:0.315000px;}
.wsaf{word-spacing:0.330000px;}
.wsf3{word-spacing:0.396000px;}
.ws1a{word-spacing:0.441000px;}
.wsf4{word-spacing:0.462000px;}
.wsbe{word-spacing:0.528000px;}
.ws195{word-spacing:0.540000px;}
.ws13f{word-spacing:0.594000px;}
.ws112{word-spacing:0.600000px;}
.wsc{word-spacing:0.630000px;}
.wscc{word-spacing:0.660000px;}
.ws18f{word-spacing:0.720000px;}
.ws5a{word-spacing:0.726000px;}
.ws1da{word-spacing:0.780000px;}
.ws12f{word-spacing:0.792000px;}
.ws4c{word-spacing:0.819000px;}
.wsca{word-spacing:0.858000px;}
.ws146{word-spacing:0.924000px;}
.ws21{word-spacing:0.945000px;}
.ws170{word-spacing:0.960000px;}
.ws9d{word-spacing:0.990000px;}
.ws15c{word-spacing:1.020000px;}
.ws35{word-spacing:1.071000px;}
.ws99{word-spacing:1.122000px;}
.ws72{word-spacing:1.188000px;}
.ws41{word-spacing:1.197000px;}
.ws196{word-spacing:1.200000px;}
.ws6f{word-spacing:1.254000px;}
.ws32{word-spacing:1.260000px;}
.wsf9{word-spacing:1.320000px;}
.ws31{word-spacing:1.323000px;}
.wse6{word-spacing:1.386000px;}
.wscd{word-spacing:1.452000px;}
.ws1de{word-spacing:1.500000px;}
.ws28{word-spacing:1.512000px;}
.ws89{word-spacing:1.518000px;}
.ws82{word-spacing:1.584000px;}
.ws10b{word-spacing:1.650000px;}
.ws49{word-spacing:1.701000px;}
.wsc5{word-spacing:1.716000px;}
.ws159{word-spacing:1.740000px;}
.ws1d{word-spacing:1.764000px;}
.ws80{word-spacing:1.782000px;}
.ws1a2{word-spacing:1.800000px;}
.ws95{word-spacing:1.848000px;}
.ws4f{word-spacing:1.914000px;}
.ws16d{word-spacing:1.920000px;}
.wsd5{word-spacing:1.980000px;}
.ws13e{word-spacing:2.046000px;}
.wsce{word-spacing:2.112000px;}
.ws2f{word-spacing:2.142000px;}
.ws8d{word-spacing:2.178000px;}
.ws1a7{word-spacing:2.220000px;}
.wsac{word-spacing:2.244000px;}
.ws37{word-spacing:2.268000px;}
.ws1dd{word-spacing:2.280000px;}
.ws91{word-spacing:2.310000px;}
.ws52{word-spacing:2.376000px;}
.ws7f{word-spacing:2.442000px;}
.ws190{word-spacing:2.460000px;}
.ws148{word-spacing:2.508000px;}
.ws172{word-spacing:2.520000px;}
.ws149{word-spacing:2.574000px;}
.ws1bf{word-spacing:2.580000px;}
.wsa0{word-spacing:2.640000px;}
.ws171{word-spacing:2.700000px;}
.wsa1{word-spacing:2.706000px;}
.ws2d{word-spacing:2.709000px;}
.ws67{word-spacing:2.772000px;}
.wsdc{word-spacing:2.838000px;}
.ws157{word-spacing:2.880000px;}
.wsd0{word-spacing:2.904000px;}
.ws6d{word-spacing:2.970000px;}
.wsbd{word-spacing:3.036000px;}
.ws14d{word-spacing:3.102000px;}
.wse8{word-spacing:3.168000px;}
.ws10{word-spacing:3.213000px;}
.ws9b{word-spacing:3.234000px;}
.wsfd{word-spacing:3.300000px;}
.wscf{word-spacing:3.366000px;}
.wsa5{word-spacing:3.432000px;}
.wsbb{word-spacing:3.498000px;}
.ws1aa{word-spacing:3.540000px;}
.ws5f{word-spacing:3.564000px;}
.ws156{word-spacing:3.600000px;}
.ws19{word-spacing:3.654000px;}
.ws193{word-spacing:3.660000px;}
.ws101{word-spacing:3.696000px;}
.ws2a{word-spacing:3.717000px;}
.wsc2{word-spacing:3.762000px;}
.ws18a{word-spacing:3.780000px;}
.ws81{word-spacing:3.828000px;}
.ws10c{word-spacing:3.894000px;}
.ws27{word-spacing:3.906000px;}
.ws86{word-spacing:3.960000px;}
.ws16e{word-spacing:4.020000px;}
.ws71{word-spacing:4.026000px;}
.ws34{word-spacing:4.032000px;}
.ws1dc{word-spacing:4.080000px;}
.ws7d{word-spacing:4.092000px;}
.ws39{word-spacing:4.095000px;}
.ws20{word-spacing:4.158000px;}
.wsfb{word-spacing:4.224000px;}
.ws158{word-spacing:4.260000px;}
.ws14c{word-spacing:4.290000px;}
.ws1e0{word-spacing:4.320000px;}
.ws3f{word-spacing:4.347000px;}
.ws10f{word-spacing:4.356000px;}
.ws18d{word-spacing:4.380000px;}
.ws5b{word-spacing:4.422000px;}
.ws12{word-spacing:4.473000px;}
.wsa7{word-spacing:4.488000px;}
.ws9f{word-spacing:4.554000px;}
.ws54{word-spacing:4.620000px;}
.ws3c{word-spacing:4.662000px;}
.ws1a8{word-spacing:4.680000px;}
.ws14a{word-spacing:4.686000px;}
.ws12e{word-spacing:4.752000px;}
.ws1e{word-spacing:4.788000px;}
.ws18e{word-spacing:4.800000px;}
.ws6e{word-spacing:4.818000px;}
.ws29{word-spacing:4.851000px;}
.ws83{word-spacing:4.884000px;}
.wse{word-spacing:4.914000px;}
.ws88{word-spacing:4.950000px;}
.ws1b9{word-spacing:4.980000px;}
.ws73{word-spacing:5.016000px;}
.ws56{word-spacing:5.082000px;}
.ws58{word-spacing:5.148000px;}
.ws66{word-spacing:5.214000px;}
.ws19d{word-spacing:5.220000px;}
.ws14b{word-spacing:5.280000px;}
.ws177{word-spacing:5.340000px;}
.ws10a{word-spacing:5.346000px;}
.ws7e{word-spacing:5.412000px;}
.ws198{word-spacing:5.460000px;}
.ws69{word-spacing:5.478000px;}
.ws85{word-spacing:5.544000px;}
.ws181{word-spacing:5.580000px;}
.ws1c{word-spacing:5.607000px;}
.ws74{word-spacing:5.610000px;}
.ws3a{word-spacing:5.670000px;}
.wsb2{word-spacing:5.676000px;}
.wsa8{word-spacing:5.742000px;}
.ws162{word-spacing:5.760000px;}
.ws10d{word-spacing:5.808000px;}
.ws2b{word-spacing:5.859000px;}
.ws93{word-spacing:5.874000px;}
.ws107{word-spacing:5.940000px;}
.ws5d{word-spacing:6.006000px;}
.ws42{word-spacing:6.048000px;}
.ws17e{word-spacing:6.060000px;}
.wsc6{word-spacing:6.072000px;}
.ws164{word-spacing:6.120000px;}
.ws97{word-spacing:6.138000px;}
.wsd{word-spacing:6.174000px;}
.ws53{word-spacing:6.204000px;}
.ws3e{word-spacing:6.237000px;}
.wsa6{word-spacing:6.270000px;}
.ws174{word-spacing:6.300000px;}
.ws50{word-spacing:6.336000px;}
.ws19b{word-spacing:6.360000px;}
.wsc8{word-spacing:6.402000px;}
.ws109{word-spacing:6.468000px;}
.wseb{word-spacing:6.534000px;}
.ws1cf{word-spacing:6.540000px;}
.wsf{word-spacing:6.552000px;}
.wsb6{word-spacing:6.600000px;}
.ws57{word-spacing:6.666000px;}
.ws100{word-spacing:6.732000px;}
.wsfc{word-spacing:6.798000px;}
.ws38{word-spacing:6.804000px;}
.ws55{word-spacing:6.864000px;}
.ws1a6{word-spacing:6.900000px;}
.wsd4{word-spacing:6.930000px;}
.ws59{word-spacing:6.996000px;}
.ws16a{word-spacing:7.020000px;}
.ws26{word-spacing:7.056000px;}
.ws12d{word-spacing:7.062000px;}
.ws9e{word-spacing:7.128000px;}
.ws1d7{word-spacing:7.140000px;}
.wsb0{word-spacing:7.194000px;}
.ws68{word-spacing:7.260000px;}
.ws19a{word-spacing:7.320000px;}
.ws36{word-spacing:7.371000px;}
.ws15b{word-spacing:7.380000px;}
.ws76{word-spacing:7.392000px;}
.ws161{word-spacing:7.440000px;}
.wsab{word-spacing:7.524000px;}
.ws108{word-spacing:7.590000px;}
.wsba{word-spacing:7.722000px;}
.ws92{word-spacing:7.854000px;}
.ws1b2{word-spacing:7.860000px;}
.ws1c0{word-spacing:7.920000px;}
.ws1b8{word-spacing:7.980000px;}
.ws96{word-spacing:7.986000px;}
.ws1a9{word-spacing:8.040000px;}
.wse0{word-spacing:8.052000px;}
.ws194{word-spacing:8.100000px;}
.ws70{word-spacing:8.118000px;}
.ws14{word-spacing:8.127000px;}
.ws1c7{word-spacing:8.160000px;}
.ws61{word-spacing:8.184000px;}
.ws46{word-spacing:8.190000px;}
.ws15e{word-spacing:8.220000px;}
.wsd7{word-spacing:8.250000px;}
.ws44{word-spacing:8.316000px;}
.ws4e{word-spacing:8.382000px;}
.ws180{word-spacing:8.400000px;}
.wsc0{word-spacing:8.448000px;}
.ws1c6{word-spacing:8.460000px;}
.ws62{word-spacing:8.514000px;}
.ws1d6{word-spacing:8.520000px;}
.ws77{word-spacing:8.580000px;}
.ws176{word-spacing:8.700000px;}
.ws7b{word-spacing:8.712000px;}
.ws1cb{word-spacing:8.760000px;}
.wsb1{word-spacing:8.778000px;}
.ws1a3{word-spacing:8.820000px;}
.wsc3{word-spacing:8.844000px;}
.ws142{word-spacing:8.910000px;}
.ws15{word-spacing:8.946000px;}
.wse9{word-spacing:8.976000px;}
.ws1ba{word-spacing:9.000000px;}
.wsc7{word-spacing:9.042000px;}
.ws179{word-spacing:9.060000px;}
.ws40{word-spacing:9.135000px;}
.ws60{word-spacing:9.174000px;}
.wsea{word-spacing:9.240000px;}
.ws13{word-spacing:9.261000px;}
.ws1a1{word-spacing:9.300000px;}
.ws8e{word-spacing:9.306000px;}
.ws63{word-spacing:9.372000px;}
.wse2{word-spacing:9.438000px;}
.ws8f{word-spacing:9.504000px;}
.ws1b5{word-spacing:9.540000px;}
.ws1af{word-spacing:9.600000px;}
.ws3d{word-spacing:9.639000px;}
.wsfa{word-spacing:9.702000px;}
.ws1b7{word-spacing:9.720000px;}
.wse3{word-spacing:9.834000px;}
.wsb7{word-spacing:9.966000px;}
.ws167{word-spacing:10.020000px;}
.wsb5{word-spacing:10.098000px;}
.ws1b6{word-spacing:10.320000px;}
.ws166{word-spacing:10.440000px;}
.ws15a{word-spacing:10.500000px;}
.ws16f{word-spacing:10.740000px;}
.wse1{word-spacing:10.758000px;}
.ws14e{word-spacing:10.824000px;}
.ws147{word-spacing:10.890000px;}
.ws48{word-spacing:10.899000px;}
.ws19c{word-spacing:11.040000px;}
.wsd6{word-spacing:11.088000px;}
.ws1b3{word-spacing:11.100000px;}
.ws153{word-spacing:11.154000px;}
.wse4{word-spacing:11.220000px;}
.ws15f{word-spacing:11.280000px;}
.ws8a{word-spacing:11.352000px;}
.ws15d{word-spacing:11.460000px;}
.wse5{word-spacing:11.484000px;}
.ws84{word-spacing:11.616000px;}
.ws1c3{word-spacing:11.640000px;}
.wsc1{word-spacing:11.682000px;}
.ws19f{word-spacing:11.700000px;}
.ws155{word-spacing:11.748000px;}
.ws1d1{word-spacing:11.820000px;}
.ws5c{word-spacing:11.880000px;}
.ws3b{word-spacing:12.096000px;}
.ws43{word-spacing:12.285000px;}
.ws154{word-spacing:12.540000px;}
.ws1c5{word-spacing:12.660000px;}
.ws1c1{word-spacing:12.840000px;}
.ws175{word-spacing:12.900000px;}
.ws25{word-spacing:12.915000px;}
.ws17b{word-spacing:13.440000px;}
.ws178{word-spacing:13.560000px;}
.ws17a{word-spacing:13.800000px;}
.ws16b{word-spacing:13.860000px;}
.ws143{word-spacing:14.256000px;}
.ws1d4{word-spacing:14.340000px;}
.wsf7{word-spacing:14.388000px;}
.ws168{word-spacing:14.580000px;}
.ws1d8{word-spacing:14.820000px;}
.ws1d5{word-spacing:14.880000px;}
.ws144{word-spacing:15.180000px;}
.ws140{word-spacing:15.312000px;}
.ws1b4{word-spacing:15.900000px;}
.ws1bb{word-spacing:15.960000px;}
.ws1e1{word-spacing:16.200000px;}
.ws17c{word-spacing:16.380000px;}
.ws197{word-spacing:17.520000px;}
.ws173{word-spacing:17.760000px;}
.wsda{word-spacing:17.886000px;}
.ws1c8{word-spacing:18.180000px;}
.wsdb{word-spacing:18.216000px;}
.ws1a5{word-spacing:18.840000px;}
.ws1d3{word-spacing:19.140000px;}
.ws1ae{word-spacing:19.320000px;}
.ws189{word-spacing:19.680000px;}
.ws1c2{word-spacing:20.700000px;}
.ws1bc{word-spacing:20.940000px;}
.ws1b0{word-spacing:22.500000px;}
.ws141{word-spacing:23.496000px;}
.ws188{word-spacing:26.340000px;}
.ws1b1{word-spacing:29.880000px;}
.ws124{word-spacing:32.634000px;}
.ws12a{word-spacing:33.241800px;}
.ws1cc{word-spacing:33.660000px;}
.ws160{word-spacing:35.220000px;}
.ws122{word-spacing:36.036000px;}
.ws16c{word-spacing:37.200000px;}
.ws169{word-spacing:39.120000px;}
.ws126{word-spacing:42.838800px;}
.ws135{word-spacing:43.263600px;}
.ws13b{word-spacing:43.328400px;}
.ws12b{word-spacing:46.641600px;}
.ws139{word-spacing:47.515800px;}
.ws11c{word-spacing:47.580600px;}
.ws116{word-spacing:51.768000px;}
.ws133{word-spacing:52.660800px;}
.ws11a{word-spacing:53.894400px;}
.ws120{word-spacing:54.194400px;}
.ws128{word-spacing:59.846400px;}
.ws114{word-spacing:60.271800px;}
.ws118{word-spacing:62.398200px;}
.ws13c{word-spacing:62.817000px;}
.ws137{word-spacing:63.630600px;}
.ws132{word-spacing:85.252200px;}
.ws11d{word-spacing:92.834400px;}
.ws134{word-spacing:99.159600px;}
.ws125{word-spacing:102.986400px;}
.ws138{word-spacing:103.411800px;}
.ws119{word-spacing:107.663400px;}
.ws136{word-spacing:111.022800px;}
.ws129{word-spacing:115.491000px;}
.ws127{word-spacing:116.167800px;}
.ws13a{word-spacing:116.666400px;}
.ws123{word-spacing:119.994000px;}
.ws115{word-spacing:120.420000px;}
.ws11b{word-spacing:123.043800px;}
.ws117{word-spacing:126.797400px;}
.ws106{word-spacing:167.126400px;}
.ws12c{word-spacing:364.252200px;}
.ws13d{word-spacing:391.648800px;}
.ws121{word-spacing:414.256800px;}
.ws145{word-spacing:498.085800px;}
.ws131{word-spacing:564.543000px;}
.ws103{word-spacing:566.607600px;}
.ws11f{word-spacing:1443.241800px;}
._f{margin-left:-24.853800px;}
._d{margin-left:-23.223000px;}
._93{margin-left:-19.248000px;}
._a{margin-left:-16.500000px;}
._c{margin-left:-14.388000px;}
._6{margin-left:-12.000000px;}
._96{margin-left:-10.200000px;}
._0{margin-left:-9.120000px;}
._7{margin-left:-7.560000px;}
._4{margin-left:-5.958000px;}
._5{margin-left:-4.422600px;}
._3{margin-left:-3.361500px;}
._2{margin-left:-1.710000px;}
._b{width:1.024200px;}
._1{width:2.052000px;}
._9{width:3.413400px;}
._8{width:5.421600px;}
._9d{width:7.280400px;}
._e{width:8.812800px;}
._9c{width:11.505600px;}
._99{width:13.307400px;}
._98{width:16.007400px;}
._9e{width:18.184800px;}
._94{width:19.318200px;}
._9a{width:20.334600px;}
._9b{width:21.457800px;}
._95{width:26.291400px;}
._97{width:29.458200px;}
._92{width:34.798800px;}
._89{width:52.782000px;}
._65{width:55.352400px;}
._68{width:58.011600px;}
._86{width:60.331800px;}
._67{width:62.155200px;}
._87{width:63.199200px;}
._44{width:64.588200px;}
._49{width:66.950400px;}
._4b{width:69.194400px;}
._66{width:71.149800px;}
._46{width:73.329000px;}
._64{width:74.976000px;}
._6b{width:76.975200px;}
._11{width:82.215000px;}
._4e{width:83.784000px;}
._47{width:85.965600px;}
._6c{width:87.348600px;}
._18{width:88.931400px;}
._45{width:90.708600px;}
._4a{width:92.716800px;}
._4d{width:96.108600px;}
._56{width:97.458000px;}
._43{width:99.213000px;}
._48{width:101.338800px;}
._70{width:102.491400px;}
._6e{width:104.187600px;}
._54{width:105.708600px;}
._51{width:107.086800px;}
._8c{width:108.770400px;}
._6d{width:109.914600px;}
._52{width:110.991000px;}
._71{width:111.994800px;}
._69{width:113.415000px;}
._33{width:115.449000px;}
._50{width:117.369000px;}
._8b{width:118.414800px;}
._55{width:121.117800px;}
._30{width:127.650600px;}
._61{width:130.807200px;}
._2f{width:135.057600px;}
._29{width:140.049000px;}
._62{width:141.696000px;}
._84{width:144.814800px;}
._2a{width:146.877600px;}
._3a{width:149.845200px;}
._1a{width:152.155800px;}
._2e{width:154.286400px;}
._41{width:156.577800px;}
._27{width:158.486400px;}
._40{width:160.830000px;}
._3b{width:163.978200px;}
._28{width:166.108200px;}
._20{width:167.125800px;}
._2b{width:170.610600px;}
._32{width:173.486400px;}
._38{width:180.985200px;}
._23{width:182.125800px;}
._2d{width:187.526400px;}
._21{width:189.625800px;}
._1e{width:194.254800px;}
._24{width:197.125800px;}
._25{width:204.625800px;}
._1d{width:206.910000px;}
._35{width:212.127000px;}
._1b{width:213.385800px;}
._1c{width:224.472600px;}
._80{width:238.306200px;}
._17{width:240.371400px;}
._7c{width:247.108200px;}
._12{width:254.573400px;}
._7e{width:262.108200px;}
._5d{width:289.231200px;}
._81{width:297.352200px;}
._5e{width:320.066400px;}
._2c{width:324.759000px;}
._5f{width:331.647600px;}
._26{width:334.779000px;}
._16{width:336.920400px;}
._3c{width:338.979000px;}
._7f{width:341.746200px;}
._13{width:343.811400px;}
._7d{width:345.928800px;}
._82{width:347.236800px;}
._3e{width:350.255400px;}
._42{width:364.906800px;}
._3d{width:371.515800px;}
._3f{width:377.616000px;}
._14{width:379.811400px;}
._8e{width:410.480400px;}
._77{width:412.842600px;}
._76{width:421.771200px;}
._1f{width:428.199000px;}
._79{width:429.652200px;}
._5a{width:432.402000px;}
._7a{width:434.202600px;}
._59{width:447.283200px;}
._91{width:450.742800px;}
._58{width:453.661800px;}
._85{width:466.321200px;}
._90{width:470.248800px;}
._31{width:476.439000px;}
._83{width:479.030400px;}
._63{width:481.352400px;}
._22{width:488.619600px;}
._60{width:494.061000px;}
._5c{width:507.283200px;}
._34{width:530.439600px;}
._75{width:545.702400px;}
._19{width:585.699600px;}
._8a{width:669.780000px;}
._72{width:675.333600px;}
._37{width:691.059000px;}
._4f{width:699.198600px;}
._7b{width:715.076100px;}
._39{width:721.689600px;}
._4c{width:744.798600px;}
._5b{width:753.108600px;}
._6f{width:793.353600px;}
._88{width:799.200000px;}
._8f{width:807.510000px;}
._36{width:825.879000px;}
._78{width:828.063600px;}
._6a{width:829.353600px;}
._53{width:899.658600px;}
._15{width:909.791700px;}
._10{width:924.191700px;}
._73{width:1234.165800px;}
._74{width:2199.728400px;}
._57{width:2202.763800px;}
._8d{width:2217.111000px;}
.fc3{color:rgb(81,83,67);}
.fc1{color:rgb(69,192,206);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:30.600000px;}
.fs15{font-size:34.980000px;}
.fsc{font-size:35.700000px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs11{font-size:38.478000px;}
.fs13{font-size:39.071601px;}
.fs6{font-size:54.000000px;}
.fs10{font-size:60.000000px;}
.fs14{font-size:60.925628px;}
.fs9{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs12{font-size:67.018160px;}
.fsf{font-size:72.000000px;}
.fs3{font-size:75.000000px;}
.fs2{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fsd{font-size:96.000000px;}
.fs0{font-size:114.000000px;}
.fs7{font-size:144.000000px;}
.fse{font-size:276.810600px;}
.fs1{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:38.130300px;}
.yb3{bottom:38.130450px;}
.y38{bottom:38.200500px;}
.yb2{bottom:38.200650px;}
.y10a{bottom:72.307200px;}
.y1b3{bottom:91.172400px;}
.y8c{bottom:91.807050px;}
.yef{bottom:91.807200px;}
.y15a{bottom:100.455750px;}
.y13a{bottom:101.340150px;}
.y176{bottom:104.603100px;}
.y1b2{bottom:109.172400px;}
.y8b{bottom:111.307050px;}
.ye7{bottom:111.307200px;}
.y109{bottom:113.590950px;}
.y175{bottom:122.603100px;}
.y1b1{bottom:127.172400px;}
.y159{bottom:129.657000px;}
.y139{bottom:130.353900px;}
.y8a{bottom:130.807050px;}
.ye6{bottom:130.807200px;}
.y108{bottom:131.590950px;}
.y174{bottom:140.603100px;}
.y1b0{bottom:145.172400px;}
.y107{bottom:149.590950px;}
.y89{bottom:150.307050px;}
.ye5{bottom:150.307200px;}
.y173{bottom:158.603100px;}
.y158{bottom:159.420900px;}
.y138{bottom:160.117650px;}
.y1af{bottom:163.172400px;}
.y88{bottom:169.807050px;}
.ye4{bottom:169.807200px;}
.y36{bottom:170.055150px;}
.y172{bottom:176.603100px;}
.y106{bottom:177.465000px;}
.y1ae{bottom:181.172400px;}
.y157{bottom:187.179600px;}
.y35{bottom:187.305150px;}
.y137{bottom:187.969500px;}
.y87{bottom:189.307050px;}
.ye3{bottom:189.307200px;}
.y1ad{bottom:199.172400px;}
.y105{bottom:200.850900px;}
.y156{bottom:205.179600px;}
.y136{bottom:205.969500px;}
.y34{bottom:208.807050px;}
.ye2{bottom:208.807200px;}
.y171{bottom:214.207050px;}
.y1ac{bottom:217.172400px;}
.y104{bottom:224.236650px;}
.y86{bottom:228.307050px;}
.yee{bottom:228.307200px;}
.y155{bottom:232.938450px;}
.y135{bottom:233.821200px;}
.y1ab{bottom:235.172400px;}
.y103{bottom:247.622550px;}
.y85{bottom:247.807050px;}
.ye1{bottom:247.807200px;}
.y1aa{bottom:253.172400px;}
.y33{bottom:254.055150px;}
.y154{bottom:262.702200px;}
.y134{bottom:263.584950px;}
.y84{bottom:267.307050px;}
.ye0{bottom:267.307200px;}
.y102{bottom:271.008300px;}
.y1a9{bottom:271.172400px;}
.y32{bottom:271.305150px;}
.yed{bottom:272.707350px;}
.y83{bottom:286.807050px;}
.ydf{bottom:286.807200px;}
.y31{bottom:288.555150px;}
.y1a8{bottom:289.172400px;}
.y153{bottom:292.465950px;}
.y133{bottom:293.348700px;}
.y101{bottom:294.394200px;}
.y30{bottom:305.805150px;}
.y82{bottom:306.307050px;}
.yde{bottom:306.307200px;}
.y1a7{bottom:307.172400px;}
.y170{bottom:311.707050px;}
.y100{bottom:317.779950px;}
.y152{bottom:322.229700px;}
.y2f{bottom:323.055150px;}
.y132{bottom:323.112600px;}
.y1a6{bottom:325.172400px;}
.y81{bottom:325.807050px;}
.ydd{bottom:325.807200px;}
.y2e{bottom:340.305150px;}
.yff{bottom:341.165850px;}
.y1a5{bottom:343.172400px;}
.y7f{bottom:345.307050px;}
.ydc{bottom:345.307200px;}
.y151{bottom:351.993450px;}
.y131{bottom:352.876350px;}
.y2d{bottom:357.555150px;}
.y1a4{bottom:361.172400px;}
.yfe{bottom:364.551600px;}
.y80{bottom:364.807050px;}
.ydb{bottom:364.807200px;}
.y2c{bottom:374.805150px;}
.y1a3{bottom:379.172400px;}
.y150{bottom:381.757200px;}
.y130{bottom:382.640100px;}
.y8d{bottom:384.307050px;}
.yda{bottom:384.307200px;}
.yfd{bottom:387.937500px;}
.y2b{bottom:392.055150px;}
.y1a2{bottom:397.172400px;}
.yb1{bottom:403.807050px;}
.yd9{bottom:403.807200px;}
.yf1{bottom:409.207050px;}
.y2a{bottom:409.305150px;}
.yfc{bottom:411.323250px;}
.y14f{bottom:411.521100px;}
.y12f{bottom:412.403850px;}
.y1a1{bottom:415.172400px;}
.y7e{bottom:415.807050px;}
.yb0{bottom:423.307050px;}
.yd8{bottom:423.307200px;}
.y29{bottom:426.555150px;}
.y16f{bottom:428.707050px;}
.y1a0{bottom:433.172400px;}
.yfb{bottom:434.709150px;}
.y14e{bottom:441.284850px;}
.y12e{bottom:442.167600px;}
.yaf{bottom:442.807050px;}
.yd7{bottom:442.807200px;}
.y28{bottom:443.805150px;}
.y19f{bottom:451.172400px;}
.yfa{bottom:458.094900px;}
.y27{bottom:461.055150px;}
.yae{bottom:462.307050px;}
.yd6{bottom:462.307200px;}
.y19e{bottom:469.172400px;}
.y14d{bottom:471.048600px;}
.y12d{bottom:471.744000px;}
.y26{bottom:478.305150px;}
.yf9{bottom:481.480800px;}
.yad{bottom:481.807050px;}
.yd5{bottom:481.807200px;}
.y19d{bottom:487.172400px;}
.yf2{bottom:487.207050px;}
.y25{bottom:495.555150px;}
.y14c{bottom:500.812350px;}
.yac{bottom:501.307050px;}
.yd4{bottom:501.307200px;}
.y5c{bottom:501.555150px;}
.y12c{bottom:501.882750px;}
.yf8{bottom:503.616000px;}
.y19c{bottom:505.172400px;}
.y24{bottom:512.805150px;}
.y5b{bottom:518.805150px;}
.yab{bottom:520.807050px;}
.yd3{bottom:520.807200px;}
.y7d{bottom:521.055150px;}
.y19b{bottom:523.172400px;}
.yf6{bottom:525.063450px;}
.y23{bottom:530.055150px;}
.yf7{bottom:530.058450px;}
.y7c{bottom:538.305150px;}
.y5a{bottom:540.307050px;}
.yd2{bottom:540.307200px;}
.y19a{bottom:541.172400px;}
.y14b{bottom:545.623500px;}
.y12b{bottom:546.225750px;}
.y22{bottom:547.305150px;}
.yf5{bottom:548.864100px;}
.y199{bottom:559.172400px;}
.y7b{bottom:559.807050px;}
.yd1{bottom:559.807200px;}
.y21{bottom:564.555150px;}
.y198{bottom:577.172400px;}
.y59{bottom:577.305150px;}
.yaa{bottom:579.307050px;}
.yd0{bottom:579.307200px;}
.y20{bottom:581.805150px;}
.y15{bottom:587.519850px;}
.yf4{bottom:589.702200px;}
.y7a{bottom:592.305150px;}
.y58{bottom:594.555150px;}
.y197{bottom:595.172400px;}
.ya9{bottom:598.807050px;}
.ycf{bottom:598.807200px;}
.y1f{bottom:599.055150px;}
.y14{bottom:602.519850px;}
.y12a{bottom:604.209150px;}
.y79{bottom:609.555150px;}
.yf3{bottom:610.702200px;}
.y57{bottom:611.805150px;}
.y196{bottom:613.172400px;}
.y1e{bottom:616.305150px;}
.ya8{bottom:618.307050px;}
.yce{bottom:618.307200px;}
.y13{bottom:626.519850px;}
.y78{bottom:626.805150px;}
.y56{bottom:629.055150px;}
.y195{bottom:631.172400px;}
.y129{bottom:633.222900px;}
.y1d{bottom:637.807050px;}
.ycd{bottom:637.807200px;}
.y77{bottom:644.055150px;}
.y55{bottom:646.305150px;}
.y194{bottom:649.172400px;}
.y12{bottom:650.519850px;}
.ya7{bottom:657.307050px;}
.ycc{bottom:657.307200px;}
.y76{bottom:661.305150px;}
.y128{bottom:662.986650px;}
.y54{bottom:663.555150px;}
.y11{bottom:665.519850px;}
.y193{bottom:667.172400px;}
.ya6{bottom:676.807050px;}
.ycb{bottom:676.807200px;}
.y75{bottom:678.555150px;}
.y10{bottom:680.519850px;}
.y53{bottom:680.805150px;}
.y192{bottom:685.172400px;}
.y127{bottom:689.827200px;}
.y74{bottom:695.805150px;}
.ya5{bottom:696.307050px;}
.yca{bottom:696.307200px;}
.y52{bottom:698.055150px;}
.y191{bottom:703.172400px;}
.yf{bottom:704.519850px;}
.y126{bottom:707.827200px;}
.y14a{bottom:711.183300px;}
.y73{bottom:713.055150px;}
.y51{bottom:715.305150px;}
.ya4{bottom:715.807050px;}
.yc9{bottom:715.807200px;}
.ye{bottom:719.519850px;}
.y1c{bottom:719.967750px;}
.y190{bottom:721.172400px;}
.y149{bottom:729.183300px;}
.y72{bottom:730.305150px;}
.y50{bottom:732.555150px;}
.y125{bottom:734.667750px;}
.ya3{bottom:735.307050px;}
.yc8{bottom:735.307200px;}
.y18f{bottom:739.172400px;}
.y1b{bottom:743.967750px;}
.y16e{bottom:747.307050px;}
.y71{bottom:747.555150px;}
.y4f{bottom:749.805150px;}
.ya2{bottom:754.807050px;}
.yc7{bottom:754.807200px;}
.y18e{bottom:757.172400px;}
.y148{bottom:758.551350px;}
.y124{bottom:760.504350px;}
.y70{bottom:764.805150px;}
.y15b{bottom:766.807050px;}
.y4e{bottom:767.055150px;}
.ya1{bottom:774.307050px;}
.yc6{bottom:774.307200px;}
.y18d{bottom:775.172400px;}
.y123{bottom:778.504350px;}
.y6f{bottom:782.055150px;}
.y4d{bottom:784.305150px;}
.y1a{bottom:784.975500px;}
.y147{bottom:788.314950px;}
.y18c{bottom:793.172400px;}
.ya0{bottom:793.807050px;}
.yc5{bottom:793.807200px;}
.y6e{bottom:799.305150px;}
.y4c{bottom:801.555150px;}
.y122{bottom:804.341100px;}
.yd{bottom:809.519850px;}
.y18b{bottom:811.172400px;}
.y9f{bottom:813.307050px;}
.yc4{bottom:813.307200px;}
.y6d{bottom:816.555150px;}
.y146{bottom:818.078850px;}
.yec{bottom:818.707200px;}
.y4b{bottom:818.805150px;}
.y118{bottom:820.906200px;}
.y19{bottom:823.975500px;}
.yc{bottom:824.519850px;}
.y18a{bottom:829.172400px;}
.y121{bottom:830.201250px;}
.y9e{bottom:832.807050px;}
.yc3{bottom:832.807200px;}
.y6c{bottom:833.805150px;}
.y4a{bottom:836.055150px;}
.yb{bottom:839.519850px;}
.y189{bottom:847.172400px;}
.y145{bottom:847.842600px;}
.y120{bottom:848.201250px;}
.y117{bottom:849.107850px;}
.y6b{bottom:851.055150px;}
.y9d{bottom:852.307050px;}
.yc2{bottom:852.307200px;}
.y49{bottom:853.305150px;}
.ya{bottom:854.519850px;}
.y18{bottom:862.975500px;}
.y165{bottom:864.884550px;}
.y188{bottom:865.172400px;}
.y6a{bottom:868.305150px;}
.y48{bottom:870.555150px;}
.y9c{bottom:871.807050px;}
.yeb{bottom:871.807200px;}
.y11f{bottom:874.061400px;}
.y116{bottom:874.619700px;}
.y144{bottom:877.606350px;}
.y187{bottom:883.172400px;}
.y9{bottom:884.519850px;}
.y69{bottom:885.555150px;}
.y47{bottom:887.805150px;}
.y163{bottom:887.925150px;}
.y9b{bottom:891.307050px;}
.yc1{bottom:891.307200px;}
.y8{bottom:899.519850px;}
.y115{bottom:900.131400px;}
.y186{bottom:901.172400px;}
.y17{bottom:901.975500px;}
.y68{bottom:902.805150px;}
.y11e{bottom:903.825300px;}
.y46{bottom:905.055150px;}
.y143{bottom:907.370250px;}
.y9a{bottom:910.807050px;}
.yc0{bottom:910.807200px;}
.y164{bottom:913.005450px;}
.y7{bottom:914.519850px;}
.y185{bottom:919.172400px;}
.y67{bottom:920.055150px;}
.y45{bottom:922.305150px;}
.y114{bottom:925.643250px;}
.y99{bottom:930.307050px;}
.yea{bottom:930.307200px;}
.y11d{bottom:933.589050px;}
.y142{bottom:937.133850px;}
.y184{bottom:937.172400px;}
.y66{bottom:937.305150px;}
.y15d{bottom:937.838100px;}
.y162{bottom:938.003850px;}
.y44{bottom:939.555150px;}
.y16{bottom:940.975500px;}
.y6{bottom:944.519850px;}
.y98{bottom:949.807050px;}
.ybf{bottom:949.807200px;}
.y113{bottom:951.155100px;}
.y65{bottom:954.555150px;}
.y183{bottom:955.172400px;}
.y43{bottom:956.805150px;}
.y15f{bottom:961.126500px;}
.y11c{bottom:963.352800px;}
.y141{bottom:966.897600px;}
.y97{bottom:969.307050px;}
.ybe{bottom:969.307200px;}
.y64{bottom:971.805150px;}
.y182{bottom:973.172400px;}
.y42{bottom:974.055150px;}
.y112{bottom:976.666950px;}
.y161{bottom:982.555200px;}
.yf0{bottom:985.507050px;}
.y96{bottom:988.807050px;}
.ybd{bottom:988.807200px;}
.y63{bottom:989.055150px;}
.y181{bottom:991.172400px;}
.y41{bottom:991.305150px;}
.y11b{bottom:992.929050px;}
.y140{bottom:996.661500px;}
.y111{bottom:1002.178650px;}
.y62{bottom:1006.305150px;}
.y95{bottom:1008.307050px;}
.ybc{bottom:1008.307200px;}
.y40{bottom:1008.555150px;}
.y180{bottom:1009.172400px;}
.y5{bottom:1011.490200px;}
.y16b{bottom:1013.405100px;}
.y168{bottom:1015.356750px;}
.y11a{bottom:1023.067800px;}
.y3f{bottom:1025.805150px;}
.y13f{bottom:1026.425250px;}
.y17f{bottom:1027.172400px;}
.y110{bottom:1027.690500px;}
.y61{bottom:1027.807050px;}
.ybb{bottom:1027.807200px;}
.y4{bottom:1030.250250px;}
.y15e{bottom:1031.124600px;}
.y16a{bottom:1031.405100px;}
.y167{bottom:1033.356750px;}
.y160{bottom:1043.122050px;}
.y17e{bottom:1045.172400px;}
.y3e{bottom:1047.307050px;}
.yba{bottom:1047.307200px;}
.y169{bottom:1049.405100px;}
.y166{bottom:1051.356750px;}
.y10f{bottom:1053.202350px;}
.y13e{bottom:1056.389700px;}
.y17d{bottom:1063.172400px;}
.y13d{bottom:1064.452200px;}
.y119{bottom:1064.936400px;}
.y94{bottom:1066.807050px;}
.yb9{bottom:1066.807200px;}
.y3{bottom:1076.523150px;}
.y10e{bottom:1078.714200px;}
.y17c{bottom:1081.172400px;}
.y60{bottom:1082.159550px;}
.y3d{bottom:1083.919350px;}
.y15c{bottom:1086.019350px;}
.y93{bottom:1086.307050px;}
.yb8{bottom:1086.307200px;}
.y17b{bottom:1099.172400px;}
.y10d{bottom:1104.225900px;}
.y92{bottom:1105.807050px;}
.yb7{bottom:1105.807200px;}
.y5f{bottom:1109.159550px;}
.y3c{bottom:1110.919350px;}
.y13c{bottom:1115.452200px;}
.y17a{bottom:1117.172400px;}
.y2{bottom:1121.027100px;}
.ye9{bottom:1124.303250px;}
.y91{bottom:1125.307050px;}
.yb6{bottom:1125.307200px;}
.y10c{bottom:1129.362750px;}
.y16d{bottom:1130.259900px;}
.y179{bottom:1135.172400px;}
.y5e{bottom:1136.159550px;}
.y13b{bottom:1136.452200px;}
.y3b{bottom:1137.919350px;}
.y90{bottom:1144.807050px;}
.yb5{bottom:1144.807200px;}
.y16c{bottom:1151.259900px;}
.y178{bottom:1153.172400px;}
.ye8{bottom:1156.807200px;}
.y10b{bottom:1159.259250px;}
.y5d{bottom:1163.159550px;}
.y8f{bottom:1164.307050px;}
.yb4{bottom:1164.307200px;}
.y3a{bottom:1164.919350px;}
.y177{bottom:1171.172400px;}
.y1{bottom:1204.220700px;}
.y37{bottom:1230.771450px;}
.y8e{bottom:1231.621800px;}
.he{height:28.947600px;}
.h1a{height:30.537540px;}
.hf{height:33.772200px;}
.hd{height:34.056000px;}
.h6{height:38.628000px;}
.h8{height:41.040000px;}
.h1d{height:42.900000px;}
.h25{height:42.920000px;}
.h17{height:45.120000px;}
.h26{height:45.600000px;}
.h7{height:46.332000px;}
.h1c{height:46.533117px;}
.h1b{height:51.480000px;}
.h18{height:52.380000px;}
.h20{height:52.502360px;}
.h19{height:53.188073px;}
.h21{height:53.730000px;}
.hc{height:54.054000px;}
.h13{height:56.628000px;}
.h16{height:57.501581px;}
.hb{height:57.618000px;}
.h5{height:57.708000px;}
.h4{height:60.525000px;}
.h14{height:68.400000px;}
.h15{height:69.828000px;}
.h22{height:73.992840px;}
.h24{height:73.993440px;}
.h23{height:76.242840px;}
.ha{height:79.800000px;}
.h11{height:80.136000px;}
.h1f{height:86.130000px;}
.h1e{height:87.480000px;}
.h2{height:89.604000px;}
.h10{height:91.776000px;}
.h9{height:137.664000px;}
.h12{height:262.970070px;}
.h3{height:311.256000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:18.496050px;}
.x34{left:19.558950px;}
.x29{left:22.322850px;}
.x30{left:26.737050px;}
.x31{left:33.524400px;}
.x2f{left:47.354100px;}
.x9{left:72.309750px;}
.x6{left:76.535400px;}
.x1b{left:78.635400px;}
.x22{left:80.810550px;}
.x11{left:87.095400px;}
.x4{left:89.291400px;}
.x12{left:91.987500px;}
.xe{left:93.543300px;}
.x13{left:101.168700px;}
.xa{left:107.395050px;}
.x7{left:119.055150px;}
.x14{left:127.114650px;}
.x2b{left:150.900900px;}
.x1c{left:174.120450px;}
.x1d{left:182.515500px;}
.x32{left:205.184700px;}
.x33{left:208.919700px;}
.xd{left:248.132400px;}
.x23{left:256.607850px;}
.x27{left:275.276850px;}
.x24{left:284.407950px;}
.x2{left:338.031600px;}
.x1{left:344.834700px;}
.x2c{left:347.129250px;}
.x2d{left:351.487500px;}
.x2e{left:364.712100px;}
.x2a{left:368.760000px;}
.x5{left:380.976300px;}
.x3{left:382.039350px;}
.x8{left:457.086600px;}
.x25{left:458.211600px;}
.x15{left:465.186600px;}
.x10{left:467.646600px;}
.xf{left:474.094500px;}
.x20{left:512.101200px;}
.x21{left:520.496250px;}
.x1e{left:535.040700px;}
.x1f{left:543.435750px;}
.xc{left:581.494050px;}
.x16{left:678.151950px;}
.x26{left:705.589500px;}
.x17{left:737.872950px;}
.x18{left:748.207650px;}
.x19{left:778.106700px;}
.x1a{left:799.016400px;}
.x35{left:808.266600px;}
.xb{left:811.290750px;}
@media print{
.v5{vertical-align:-11.733333pt;}
.v11{vertical-align:-10.666667pt;}
.v3{vertical-align:-8.000000pt;}
.v1{vertical-align:-5.333333pt;}
.v10{vertical-align:-3.695467pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.273067pt;}
.v2{vertical-align:8.000000pt;}
.v6{vertical-align:11.733333pt;}
.v9{vertical-align:17.760000pt;}
.v7{vertical-align:19.837375pt;}
.vc{vertical-align:23.093333pt;}
.vd{vertical-align:24.426667pt;}
.vb{vertical-align:30.000000pt;}
.va{vertical-align:32.000000pt;}
.ve{vertical-align:39.093333pt;}
.vf{vertical-align:41.093333pt;}
.v4{vertical-align:138.666667pt;}
.ls11{letter-spacing:-0.704000pt;}
.ls14{letter-spacing:-0.586667pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.293333pt;}
.ls18{letter-spacing:-0.171013pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000533pt;}
.ls19{letter-spacing:0.002667pt;}
.ls1a{letter-spacing:0.003200pt;}
.ls5{letter-spacing:0.293333pt;}
.ls21{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.426667pt;}
.ls22{letter-spacing:0.476000pt;}
.ls0{letter-spacing:0.506667pt;}
.ls12{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.666667pt;}
.ls9{letter-spacing:0.680000pt;}
.ls29{letter-spacing:0.682133pt;}
.ls24{letter-spacing:0.746667pt;}
.ls28{letter-spacing:0.793333pt;}
.ls8{letter-spacing:0.800000pt;}
.ls26{letter-spacing:1.120000pt;}
.ls2b{letter-spacing:1.226667pt;}
.ls4{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:1.353903pt;}
.lsb{letter-spacing:1.493333pt;}
.ls25{letter-spacing:1.813333pt;}
.lsd{letter-spacing:2.141867pt;}
.lsf{letter-spacing:2.383467pt;}
.ls10{letter-spacing:2.410667pt;}
.lse{letter-spacing:2.484267pt;}
.ls7{letter-spacing:3.024000pt;}
.ls16{letter-spacing:3.732800pt;}
.ls1d{letter-spacing:4.328000pt;}
.ls17{letter-spacing:6.058133pt;}
.ls2{letter-spacing:6.333333pt;}
.ls1{letter-spacing:7.198933pt;}
.ls15{letter-spacing:7.221333pt;}
.lsc{letter-spacing:7.749333pt;}
.ls3{letter-spacing:7.840000pt;}
.ls23{letter-spacing:17.494933pt;}
.ls20{letter-spacing:108.349333pt;}
.ls1f{letter-spacing:145.717867pt;}
.ls1e{letter-spacing:734.261867pt;}
.ws23{word-spacing:-55.116066pt;}
.ws0{word-spacing:-28.677333pt;}
.ws22{word-spacing:-19.114667pt;}
.ws184{word-spacing:-15.146667pt;}
.wsb3{word-spacing:-14.976000pt;}
.ws6c{word-spacing:-14.960000pt;}
.ws102{word-spacing:-14.892924pt;}
.ws24{word-spacing:-14.666667pt;}
.ws151{word-spacing:-14.613333pt;}
.ws1ce{word-spacing:-14.560000pt;}
.ws185{word-spacing:-14.453333pt;}
.ws6{word-spacing:-14.373333pt;}
.ws183{word-spacing:-14.133333pt;}
.ws182{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.000000pt;}
.ws6b{word-spacing:-13.962667pt;}
.ws186{word-spacing:-13.760000pt;}
.ws150{word-spacing:-13.706667pt;}
.ws105{word-spacing:-13.333333pt;}
.ws11e{word-spacing:-13.066667pt;}
.ws104{word-spacing:-12.800000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.760000pt;}
.ws1c9{word-spacing:-9.333333pt;}
.wsde{word-spacing:-8.550667pt;}
.wsdf{word-spacing:-8.379653pt;}
.ws2{word-spacing:-7.914667pt;}
.ws14f{word-spacing:-7.773333pt;}
.ws1d0{word-spacing:-6.880000pt;}
.ws1{word-spacing:-6.400000pt;}
.ws1ca{word-spacing:-4.426667pt;}
.ws1be{word-spacing:-4.213333pt;}
.wsb4{word-spacing:-3.520000pt;}
.wse7{word-spacing:-3.344000pt;}
.ws1ad{word-spacing:-3.146667pt;}
.ws9{word-spacing:-3.024000pt;}
.ws98{word-spacing:-2.992000pt;}
.wsa9{word-spacing:-2.933333pt;}
.ws7c{word-spacing:-2.874667pt;}
.ws8c{word-spacing:-2.816000pt;}
.wsfe{word-spacing:-2.757333pt;}
.ws4a{word-spacing:-2.744000pt;}
.wsa2{word-spacing:-2.698667pt;}
.ws87{word-spacing:-2.640000pt;}
.ws18{word-spacing:-2.632000pt;}
.ws17f{word-spacing:-2.613333pt;}
.wsf0{word-spacing:-2.581333pt;}
.ws90{word-spacing:-2.522667pt;}
.ws8b{word-spacing:-2.464000pt;}
.ws16{word-spacing:-2.352000pt;}
.ws65{word-spacing:-2.346667pt;}
.ws33{word-spacing:-2.296000pt;}
.ws130{word-spacing:-2.288000pt;}
.wsb{word-spacing:-2.240000pt;}
.wsa4{word-spacing:-2.229333pt;}
.ws18c{word-spacing:-2.186667pt;}
.wsb8{word-spacing:-2.170667pt;}
.ws2e{word-spacing:-2.128000pt;}
.wsd9{word-spacing:-2.112000pt;}
.ws2c{word-spacing:-2.072000pt;}
.wsd1{word-spacing:-2.053333pt;}
.ws10e{word-spacing:-1.994667pt;}
.wsed{word-spacing:-1.936000pt;}
.wsae{word-spacing:-1.877333pt;}
.ws17d{word-spacing:-1.866667pt;}
.ws45{word-spacing:-1.848000pt;}
.wsbc{word-spacing:-1.818667pt;}
.ws19e{word-spacing:-1.813333pt;}
.ws17{word-spacing:-1.792000pt;}
.wsf5{word-spacing:-1.760000pt;}
.wsa{word-spacing:-1.728000pt;}
.ws1a4{word-spacing:-1.653333pt;}
.wsf8{word-spacing:-1.584000pt;}
.ws11{word-spacing:-1.568000pt;}
.ws1ab{word-spacing:-1.546667pt;}
.ws75{word-spacing:-1.525333pt;}
.ws1db{word-spacing:-1.493333pt;}
.wsec{word-spacing:-1.466667pt;}
.ws30{word-spacing:-1.456000pt;}
.ws5{word-spacing:-1.408000pt;}
.ws110{word-spacing:-1.353903pt;}
.ws51{word-spacing:-1.349333pt;}
.ws1bd{word-spacing:-1.333333pt;}
.ws94{word-spacing:-1.290667pt;}
.ws199{word-spacing:-1.280000pt;}
.ws79{word-spacing:-1.232000pt;}
.wsd2{word-spacing:-1.173333pt;}
.ws1d2{word-spacing:-1.120000pt;}
.wsd3{word-spacing:-1.114667pt;}
.ws1d9{word-spacing:-1.066667pt;}
.wsf1{word-spacing:-0.997333pt;}
.wsc4{word-spacing:-0.938667pt;}
.wsaa{word-spacing:-0.880000pt;}
.wsd8{word-spacing:-0.821333pt;}
.ws113{word-spacing:-0.800000pt;}
.ws187{word-spacing:-0.793333pt;}
.ws1f{word-spacing:-0.784000pt;}
.ws78{word-spacing:-0.762667pt;}
.ws191{word-spacing:-0.746667pt;}
.wsdd{word-spacing:-0.704000pt;}
.ws1df{word-spacing:-0.693333pt;}
.wsb9{word-spacing:-0.645333pt;}
.wscb{word-spacing:-0.640000pt;}
.ws6a{word-spacing:-0.586667pt;}
.wsf2{word-spacing:-0.581445pt;}
.ws111{word-spacing:-0.533333pt;}
.ws64{word-spacing:-0.528000pt;}
.ws47{word-spacing:-0.504000pt;}
.ws152{word-spacing:-0.476000pt;}
.wsff{word-spacing:-0.469333pt;}
.ws5e{word-spacing:-0.410667pt;}
.wsbf{word-spacing:-0.352000pt;}
.ws165{word-spacing:-0.320000pt;}
.ws4d{word-spacing:-0.293333pt;}
.ws1c4{word-spacing:-0.266667pt;}
.wsad{word-spacing:-0.234667pt;}
.ws9a{word-spacing:-0.176000pt;}
.ws4b{word-spacing:-0.168000pt;}
.ws18b{word-spacing:-0.160000pt;}
.wsc9{word-spacing:-0.117333pt;}
.ws1cd{word-spacing:-0.106667pt;}
.ws7a{word-spacing:-0.058667pt;}
.ws163{word-spacing:-0.053333pt;}
.ws8{word-spacing:0.000000pt;}
.ws192{word-spacing:0.053333pt;}
.wsf6{word-spacing:0.058667pt;}
.ws9c{word-spacing:0.117333pt;}
.wsef{word-spacing:0.171013pt;}
.wsee{word-spacing:0.176000pt;}
.ws1a0{word-spacing:0.213333pt;}
.wsa3{word-spacing:0.234667pt;}
.ws1ac{word-spacing:0.266667pt;}
.ws1b{word-spacing:0.280000pt;}
.wsaf{word-spacing:0.293333pt;}
.wsf3{word-spacing:0.352000pt;}
.ws1a{word-spacing:0.392000pt;}
.wsf4{word-spacing:0.410667pt;}
.wsbe{word-spacing:0.469333pt;}
.ws195{word-spacing:0.480000pt;}
.ws13f{word-spacing:0.528000pt;}
.ws112{word-spacing:0.533333pt;}
.wsc{word-spacing:0.560000pt;}
.wscc{word-spacing:0.586667pt;}
.ws18f{word-spacing:0.640000pt;}
.ws5a{word-spacing:0.645333pt;}
.ws1da{word-spacing:0.693333pt;}
.ws12f{word-spacing:0.704000pt;}
.ws4c{word-spacing:0.728000pt;}
.wsca{word-spacing:0.762667pt;}
.ws146{word-spacing:0.821333pt;}
.ws21{word-spacing:0.840000pt;}
.ws170{word-spacing:0.853333pt;}
.ws9d{word-spacing:0.880000pt;}
.ws15c{word-spacing:0.906667pt;}
.ws35{word-spacing:0.952000pt;}
.ws99{word-spacing:0.997333pt;}
.ws72{word-spacing:1.056000pt;}
.ws41{word-spacing:1.064000pt;}
.ws196{word-spacing:1.066667pt;}
.ws6f{word-spacing:1.114667pt;}
.ws32{word-spacing:1.120000pt;}
.wsf9{word-spacing:1.173333pt;}
.ws31{word-spacing:1.176000pt;}
.wse6{word-spacing:1.232000pt;}
.wscd{word-spacing:1.290667pt;}
.ws1de{word-spacing:1.333333pt;}
.ws28{word-spacing:1.344000pt;}
.ws89{word-spacing:1.349333pt;}
.ws82{word-spacing:1.408000pt;}
.ws10b{word-spacing:1.466667pt;}
.ws49{word-spacing:1.512000pt;}
.wsc5{word-spacing:1.525333pt;}
.ws159{word-spacing:1.546667pt;}
.ws1d{word-spacing:1.568000pt;}
.ws80{word-spacing:1.584000pt;}
.ws1a2{word-spacing:1.600000pt;}
.ws95{word-spacing:1.642667pt;}
.ws4f{word-spacing:1.701333pt;}
.ws16d{word-spacing:1.706667pt;}
.wsd5{word-spacing:1.760000pt;}
.ws13e{word-spacing:1.818667pt;}
.wsce{word-spacing:1.877333pt;}
.ws2f{word-spacing:1.904000pt;}
.ws8d{word-spacing:1.936000pt;}
.ws1a7{word-spacing:1.973333pt;}
.wsac{word-spacing:1.994667pt;}
.ws37{word-spacing:2.016000pt;}
.ws1dd{word-spacing:2.026667pt;}
.ws91{word-spacing:2.053333pt;}
.ws52{word-spacing:2.112000pt;}
.ws7f{word-spacing:2.170667pt;}
.ws190{word-spacing:2.186667pt;}
.ws148{word-spacing:2.229333pt;}
.ws172{word-spacing:2.240000pt;}
.ws149{word-spacing:2.288000pt;}
.ws1bf{word-spacing:2.293333pt;}
.wsa0{word-spacing:2.346667pt;}
.ws171{word-spacing:2.400000pt;}
.wsa1{word-spacing:2.405333pt;}
.ws2d{word-spacing:2.408000pt;}
.ws67{word-spacing:2.464000pt;}
.wsdc{word-spacing:2.522667pt;}
.ws157{word-spacing:2.560000pt;}
.wsd0{word-spacing:2.581333pt;}
.ws6d{word-spacing:2.640000pt;}
.wsbd{word-spacing:2.698667pt;}
.ws14d{word-spacing:2.757333pt;}
.wse8{word-spacing:2.816000pt;}
.ws10{word-spacing:2.856000pt;}
.ws9b{word-spacing:2.874667pt;}
.wsfd{word-spacing:2.933333pt;}
.wscf{word-spacing:2.992000pt;}
.wsa5{word-spacing:3.050667pt;}
.wsbb{word-spacing:3.109333pt;}
.ws1aa{word-spacing:3.146667pt;}
.ws5f{word-spacing:3.168000pt;}
.ws156{word-spacing:3.200000pt;}
.ws19{word-spacing:3.248000pt;}
.ws193{word-spacing:3.253333pt;}
.ws101{word-spacing:3.285333pt;}
.ws2a{word-spacing:3.304000pt;}
.wsc2{word-spacing:3.344000pt;}
.ws18a{word-spacing:3.360000pt;}
.ws81{word-spacing:3.402667pt;}
.ws10c{word-spacing:3.461333pt;}
.ws27{word-spacing:3.472000pt;}
.ws86{word-spacing:3.520000pt;}
.ws16e{word-spacing:3.573333pt;}
.ws71{word-spacing:3.578667pt;}
.ws34{word-spacing:3.584000pt;}
.ws1dc{word-spacing:3.626667pt;}
.ws7d{word-spacing:3.637333pt;}
.ws39{word-spacing:3.640000pt;}
.ws20{word-spacing:3.696000pt;}
.wsfb{word-spacing:3.754667pt;}
.ws158{word-spacing:3.786667pt;}
.ws14c{word-spacing:3.813333pt;}
.ws1e0{word-spacing:3.840000pt;}
.ws3f{word-spacing:3.864000pt;}
.ws10f{word-spacing:3.872000pt;}
.ws18d{word-spacing:3.893333pt;}
.ws5b{word-spacing:3.930667pt;}
.ws12{word-spacing:3.976000pt;}
.wsa7{word-spacing:3.989333pt;}
.ws9f{word-spacing:4.048000pt;}
.ws54{word-spacing:4.106667pt;}
.ws3c{word-spacing:4.144000pt;}
.ws1a8{word-spacing:4.160000pt;}
.ws14a{word-spacing:4.165333pt;}
.ws12e{word-spacing:4.224000pt;}
.ws1e{word-spacing:4.256000pt;}
.ws18e{word-spacing:4.266667pt;}
.ws6e{word-spacing:4.282667pt;}
.ws29{word-spacing:4.312000pt;}
.ws83{word-spacing:4.341333pt;}
.wse{word-spacing:4.368000pt;}
.ws88{word-spacing:4.400000pt;}
.ws1b9{word-spacing:4.426667pt;}
.ws73{word-spacing:4.458667pt;}
.ws56{word-spacing:4.517333pt;}
.ws58{word-spacing:4.576000pt;}
.ws66{word-spacing:4.634667pt;}
.ws19d{word-spacing:4.640000pt;}
.ws14b{word-spacing:4.693333pt;}
.ws177{word-spacing:4.746667pt;}
.ws10a{word-spacing:4.752000pt;}
.ws7e{word-spacing:4.810667pt;}
.ws198{word-spacing:4.853333pt;}
.ws69{word-spacing:4.869333pt;}
.ws85{word-spacing:4.928000pt;}
.ws181{word-spacing:4.960000pt;}
.ws1c{word-spacing:4.984000pt;}
.ws74{word-spacing:4.986667pt;}
.ws3a{word-spacing:5.040000pt;}
.wsb2{word-spacing:5.045333pt;}
.wsa8{word-spacing:5.104000pt;}
.ws162{word-spacing:5.120000pt;}
.ws10d{word-spacing:5.162667pt;}
.ws2b{word-spacing:5.208000pt;}
.ws93{word-spacing:5.221333pt;}
.ws107{word-spacing:5.280000pt;}
.ws5d{word-spacing:5.338667pt;}
.ws42{word-spacing:5.376000pt;}
.ws17e{word-spacing:5.386667pt;}
.wsc6{word-spacing:5.397333pt;}
.ws164{word-spacing:5.440000pt;}
.ws97{word-spacing:5.456000pt;}
.wsd{word-spacing:5.488000pt;}
.ws53{word-spacing:5.514667pt;}
.ws3e{word-spacing:5.544000pt;}
.wsa6{word-spacing:5.573333pt;}
.ws174{word-spacing:5.600000pt;}
.ws50{word-spacing:5.632000pt;}
.ws19b{word-spacing:5.653333pt;}
.wsc8{word-spacing:5.690667pt;}
.ws109{word-spacing:5.749333pt;}
.wseb{word-spacing:5.808000pt;}
.ws1cf{word-spacing:5.813333pt;}
.wsf{word-spacing:5.824000pt;}
.wsb6{word-spacing:5.866667pt;}
.ws57{word-spacing:5.925333pt;}
.ws100{word-spacing:5.984000pt;}
.wsfc{word-spacing:6.042667pt;}
.ws38{word-spacing:6.048000pt;}
.ws55{word-spacing:6.101333pt;}
.ws1a6{word-spacing:6.133333pt;}
.wsd4{word-spacing:6.160000pt;}
.ws59{word-spacing:6.218667pt;}
.ws16a{word-spacing:6.240000pt;}
.ws26{word-spacing:6.272000pt;}
.ws12d{word-spacing:6.277333pt;}
.ws9e{word-spacing:6.336000pt;}
.ws1d7{word-spacing:6.346667pt;}
.wsb0{word-spacing:6.394667pt;}
.ws68{word-spacing:6.453333pt;}
.ws19a{word-spacing:6.506667pt;}
.ws36{word-spacing:6.552000pt;}
.ws15b{word-spacing:6.560000pt;}
.ws76{word-spacing:6.570667pt;}
.ws161{word-spacing:6.613333pt;}
.wsab{word-spacing:6.688000pt;}
.ws108{word-spacing:6.746667pt;}
.wsba{word-spacing:6.864000pt;}
.ws92{word-spacing:6.981333pt;}
.ws1b2{word-spacing:6.986667pt;}
.ws1c0{word-spacing:7.040000pt;}
.ws1b8{word-spacing:7.093333pt;}
.ws96{word-spacing:7.098667pt;}
.ws1a9{word-spacing:7.146667pt;}
.wse0{word-spacing:7.157333pt;}
.ws194{word-spacing:7.200000pt;}
.ws70{word-spacing:7.216000pt;}
.ws14{word-spacing:7.224000pt;}
.ws1c7{word-spacing:7.253333pt;}
.ws61{word-spacing:7.274667pt;}
.ws46{word-spacing:7.280000pt;}
.ws15e{word-spacing:7.306667pt;}
.wsd7{word-spacing:7.333333pt;}
.ws44{word-spacing:7.392000pt;}
.ws4e{word-spacing:7.450667pt;}
.ws180{word-spacing:7.466667pt;}
.wsc0{word-spacing:7.509333pt;}
.ws1c6{word-spacing:7.520000pt;}
.ws62{word-spacing:7.568000pt;}
.ws1d6{word-spacing:7.573333pt;}
.ws77{word-spacing:7.626667pt;}
.ws176{word-spacing:7.733333pt;}
.ws7b{word-spacing:7.744000pt;}
.ws1cb{word-spacing:7.786667pt;}
.wsb1{word-spacing:7.802667pt;}
.ws1a3{word-spacing:7.840000pt;}
.wsc3{word-spacing:7.861333pt;}
.ws142{word-spacing:7.920000pt;}
.ws15{word-spacing:7.952000pt;}
.wse9{word-spacing:7.978667pt;}
.ws1ba{word-spacing:8.000000pt;}
.wsc7{word-spacing:8.037333pt;}
.ws179{word-spacing:8.053333pt;}
.ws40{word-spacing:8.120000pt;}
.ws60{word-spacing:8.154667pt;}
.wsea{word-spacing:8.213333pt;}
.ws13{word-spacing:8.232000pt;}
.ws1a1{word-spacing:8.266667pt;}
.ws8e{word-spacing:8.272000pt;}
.ws63{word-spacing:8.330667pt;}
.wse2{word-spacing:8.389333pt;}
.ws8f{word-spacing:8.448000pt;}
.ws1b5{word-spacing:8.480000pt;}
.ws1af{word-spacing:8.533333pt;}
.ws3d{word-spacing:8.568000pt;}
.wsfa{word-spacing:8.624000pt;}
.ws1b7{word-spacing:8.640000pt;}
.wse3{word-spacing:8.741333pt;}
.wsb7{word-spacing:8.858667pt;}
.ws167{word-spacing:8.906667pt;}
.wsb5{word-spacing:8.976000pt;}
.ws1b6{word-spacing:9.173333pt;}
.ws166{word-spacing:9.280000pt;}
.ws15a{word-spacing:9.333333pt;}
.ws16f{word-spacing:9.546667pt;}
.wse1{word-spacing:9.562667pt;}
.ws14e{word-spacing:9.621333pt;}
.ws147{word-spacing:9.680000pt;}
.ws48{word-spacing:9.688000pt;}
.ws19c{word-spacing:9.813333pt;}
.wsd6{word-spacing:9.856000pt;}
.ws1b3{word-spacing:9.866667pt;}
.ws153{word-spacing:9.914667pt;}
.wse4{word-spacing:9.973333pt;}
.ws15f{word-spacing:10.026667pt;}
.ws8a{word-spacing:10.090667pt;}
.ws15d{word-spacing:10.186667pt;}
.wse5{word-spacing:10.208000pt;}
.ws84{word-spacing:10.325333pt;}
.ws1c3{word-spacing:10.346667pt;}
.wsc1{word-spacing:10.384000pt;}
.ws19f{word-spacing:10.400000pt;}
.ws155{word-spacing:10.442667pt;}
.ws1d1{word-spacing:10.506667pt;}
.ws5c{word-spacing:10.560000pt;}
.ws3b{word-spacing:10.752000pt;}
.ws43{word-spacing:10.920000pt;}
.ws154{word-spacing:11.146667pt;}
.ws1c5{word-spacing:11.253333pt;}
.ws1c1{word-spacing:11.413333pt;}
.ws175{word-spacing:11.466667pt;}
.ws25{word-spacing:11.480000pt;}
.ws17b{word-spacing:11.946667pt;}
.ws178{word-spacing:12.053333pt;}
.ws17a{word-spacing:12.266667pt;}
.ws16b{word-spacing:12.320000pt;}
.ws143{word-spacing:12.672000pt;}
.ws1d4{word-spacing:12.746667pt;}
.wsf7{word-spacing:12.789333pt;}
.ws168{word-spacing:12.960000pt;}
.ws1d8{word-spacing:13.173333pt;}
.ws1d5{word-spacing:13.226667pt;}
.ws144{word-spacing:13.493333pt;}
.ws140{word-spacing:13.610667pt;}
.ws1b4{word-spacing:14.133333pt;}
.ws1bb{word-spacing:14.186667pt;}
.ws1e1{word-spacing:14.400000pt;}
.ws17c{word-spacing:14.560000pt;}
.ws197{word-spacing:15.573333pt;}
.ws173{word-spacing:15.786667pt;}
.wsda{word-spacing:15.898667pt;}
.ws1c8{word-spacing:16.160000pt;}
.wsdb{word-spacing:16.192000pt;}
.ws1a5{word-spacing:16.746667pt;}
.ws1d3{word-spacing:17.013333pt;}
.ws1ae{word-spacing:17.173333pt;}
.ws189{word-spacing:17.493333pt;}
.ws1c2{word-spacing:18.400000pt;}
.ws1bc{word-spacing:18.613333pt;}
.ws1b0{word-spacing:20.000000pt;}
.ws141{word-spacing:20.885333pt;}
.ws188{word-spacing:23.413333pt;}
.ws1b1{word-spacing:26.560000pt;}
.ws124{word-spacing:29.008000pt;}
.ws12a{word-spacing:29.548267pt;}
.ws1cc{word-spacing:29.920000pt;}
.ws160{word-spacing:31.306667pt;}
.ws122{word-spacing:32.032000pt;}
.ws16c{word-spacing:33.066667pt;}
.ws169{word-spacing:34.773333pt;}
.ws126{word-spacing:38.078933pt;}
.ws135{word-spacing:38.456533pt;}
.ws13b{word-spacing:38.514133pt;}
.ws12b{word-spacing:41.459200pt;}
.ws139{word-spacing:42.236267pt;}
.ws11c{word-spacing:42.293867pt;}
.ws116{word-spacing:46.016000pt;}
.ws133{word-spacing:46.809600pt;}
.ws11a{word-spacing:47.906133pt;}
.ws120{word-spacing:48.172800pt;}
.ws128{word-spacing:53.196800pt;}
.ws114{word-spacing:53.574933pt;}
.ws118{word-spacing:55.465067pt;}
.ws13c{word-spacing:55.837333pt;}
.ws137{word-spacing:56.560533pt;}
.ws132{word-spacing:75.779733pt;}
.ws11d{word-spacing:82.519467pt;}
.ws134{word-spacing:88.141867pt;}
.ws125{word-spacing:91.543467pt;}
.ws138{word-spacing:91.921600pt;}
.ws119{word-spacing:95.700800pt;}
.ws136{word-spacing:98.686933pt;}
.ws129{word-spacing:102.658667pt;}
.ws127{word-spacing:103.260267pt;}
.ws13a{word-spacing:103.703467pt;}
.ws123{word-spacing:106.661333pt;}
.ws115{word-spacing:107.040000pt;}
.ws11b{word-spacing:109.372267pt;}
.ws117{word-spacing:112.708800pt;}
.ws106{word-spacing:148.556800pt;}
.ws12c{word-spacing:323.779733pt;}
.ws13d{word-spacing:348.132267pt;}
.ws121{word-spacing:368.228267pt;}
.ws145{word-spacing:442.742933pt;}
.ws131{word-spacing:501.816000pt;}
.ws103{word-spacing:503.651200pt;}
.ws11f{word-spacing:1282.881600pt;}
._f{margin-left:-22.092267pt;}
._d{margin-left:-20.642667pt;}
._93{margin-left:-17.109333pt;}
._a{margin-left:-14.666667pt;}
._c{margin-left:-12.789333pt;}
._6{margin-left:-10.666667pt;}
._96{margin-left:-9.066667pt;}
._0{margin-left:-8.106667pt;}
._7{margin-left:-6.720000pt;}
._4{margin-left:-5.296000pt;}
._5{margin-left:-3.931200pt;}
._3{margin-left:-2.988000pt;}
._2{margin-left:-1.520000pt;}
._b{width:0.910400pt;}
._1{width:1.824000pt;}
._9{width:3.034133pt;}
._8{width:4.819200pt;}
._9d{width:6.471467pt;}
._e{width:7.833600pt;}
._9c{width:10.227200pt;}
._99{width:11.828800pt;}
._98{width:14.228800pt;}
._9e{width:16.164267pt;}
._94{width:17.171733pt;}
._9a{width:18.075200pt;}
._9b{width:19.073600pt;}
._95{width:23.370133pt;}
._97{width:26.185067pt;}
._92{width:30.932267pt;}
._89{width:46.917333pt;}
._65{width:49.202133pt;}
._68{width:51.565867pt;}
._86{width:53.628267pt;}
._67{width:55.249067pt;}
._87{width:56.177067pt;}
._44{width:57.411733pt;}
._49{width:59.511467pt;}
._4b{width:61.506133pt;}
._66{width:63.244267pt;}
._46{width:65.181333pt;}
._64{width:66.645333pt;}
._6b{width:68.422400pt;}
._11{width:73.080000pt;}
._4e{width:74.474667pt;}
._47{width:76.413867pt;}
._6c{width:77.643200pt;}
._18{width:79.050133pt;}
._45{width:80.629867pt;}
._4a{width:82.414933pt;}
._4d{width:85.429867pt;}
._56{width:86.629333pt;}
._43{width:88.189333pt;}
._48{width:90.078933pt;}
._70{width:91.103467pt;}
._6e{width:92.611200pt;}
._54{width:93.963200pt;}
._51{width:95.188267pt;}
._8c{width:96.684800pt;}
._6d{width:97.701867pt;}
._52{width:98.658667pt;}
._71{width:99.550933pt;}
._69{width:100.813333pt;}
._33{width:102.621333pt;}
._50{width:104.328000pt;}
._8b{width:105.257600pt;}
._55{width:107.660267pt;}
._30{width:113.467200pt;}
._61{width:116.273067pt;}
._2f{width:120.051200pt;}
._29{width:124.488000pt;}
._62{width:125.952000pt;}
._84{width:128.724267pt;}
._2a{width:130.557867pt;}
._3a{width:133.195733pt;}
._1a{width:135.249600pt;}
._2e{width:137.143467pt;}
._41{width:139.180267pt;}
._27{width:140.876800pt;}
._40{width:142.960000pt;}
._3b{width:145.758400pt;}
._28{width:147.651733pt;}
._20{width:148.556267pt;}
._2b{width:151.653867pt;}
._32{width:154.210133pt;}
._38{width:160.875733pt;}
._23{width:161.889600pt;}
._2d{width:166.690133pt;}
._21{width:168.556267pt;}
._1e{width:172.670933pt;}
._24{width:175.222933pt;}
._25{width:181.889600pt;}
._1d{width:183.920000pt;}
._35{width:188.557333pt;}
._1b{width:189.676267pt;}
._1c{width:199.531200pt;}
._80{width:211.827733pt;}
._17{width:213.663467pt;}
._7c{width:219.651733pt;}
._12{width:226.287467pt;}
._7e{width:232.985067pt;}
._5d{width:257.094400pt;}
._81{width:264.313067pt;}
._5e{width:284.503467pt;}
._2c{width:288.674667pt;}
._5f{width:294.797867pt;}
._26{width:297.581333pt;}
._16{width:299.484800pt;}
._3c{width:301.314667pt;}
._7f{width:303.774400pt;}
._13{width:305.610133pt;}
._7d{width:307.492267pt;}
._82{width:308.654933pt;}
._3e{width:311.338133pt;}
._42{width:324.361600pt;}
._3d{width:330.236267pt;}
._3f{width:335.658667pt;}
._14{width:337.610133pt;}
._8e{width:364.871467pt;}
._77{width:366.971200pt;}
._76{width:374.907733pt;}
._1f{width:380.621333pt;}
._79{width:381.913067pt;}
._5a{width:384.357333pt;}
._7a{width:385.957867pt;}
._59{width:397.585067pt;}
._91{width:400.660267pt;}
._58{width:403.254933pt;}
._85{width:414.507733pt;}
._90{width:417.998933pt;}
._31{width:423.501333pt;}
._83{width:425.804800pt;}
._63{width:427.868800pt;}
._22{width:434.328533pt;}
._60{width:439.165333pt;}
._5c{width:450.918400pt;}
._34{width:471.501867pt;}
._75{width:485.068800pt;}
._19{width:520.621867pt;}
._8a{width:595.360000pt;}
._72{width:600.296533pt;}
._37{width:614.274667pt;}
._4f{width:621.509867pt;}
._7b{width:635.623200pt;}
._39{width:641.501867pt;}
._4c{width:662.043200pt;}
._5b{width:669.429867pt;}
._6f{width:705.203200pt;}
._88{width:710.400000pt;}
._8f{width:717.786667pt;}
._36{width:734.114667pt;}
._78{width:736.056533pt;}
._6a{width:737.203200pt;}
._53{width:799.696533pt;}
._15{width:808.703733pt;}
._10{width:821.503733pt;}
._73{width:1097.036267pt;}
._74{width:1955.314133pt;}
._57{width:1958.012267pt;}
._8d{width:1970.765333pt;}
.fsb{font-size:27.200000pt;}
.fs15{font-size:31.093333pt;}
.fsc{font-size:31.733333pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs11{font-size:34.202667pt;}
.fs13{font-size:34.730312pt;}
.fs6{font-size:48.000000pt;}
.fs10{font-size:53.333333pt;}
.fs14{font-size:54.156114pt;}
.fs9{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs12{font-size:59.571698pt;}
.fsf{font-size:64.000000pt;}
.fs3{font-size:66.666667pt;}
.fs2{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fsd{font-size:85.333333pt;}
.fs0{font-size:101.333333pt;}
.fs7{font-size:128.000000pt;}
.fse{font-size:246.053867pt;}
.fs1{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:33.893600pt;}
.yb3{bottom:33.893733pt;}
.y38{bottom:33.956000pt;}
.yb2{bottom:33.956133pt;}
.y10a{bottom:64.273067pt;}
.y1b3{bottom:81.042133pt;}
.y8c{bottom:81.606267pt;}
.yef{bottom:81.606400pt;}
.y15a{bottom:89.294000pt;}
.y13a{bottom:90.080133pt;}
.y176{bottom:92.980533pt;}
.y1b2{bottom:97.042133pt;}
.y8b{bottom:98.939600pt;}
.ye7{bottom:98.939733pt;}
.y109{bottom:100.969733pt;}
.y175{bottom:108.980533pt;}
.y1b1{bottom:113.042133pt;}
.y159{bottom:115.250667pt;}
.y139{bottom:115.870133pt;}
.y8a{bottom:116.272933pt;}
.ye6{bottom:116.273067pt;}
.y108{bottom:116.969733pt;}
.y174{bottom:124.980533pt;}
.y1b0{bottom:129.042133pt;}
.y107{bottom:132.969733pt;}
.y89{bottom:133.606267pt;}
.ye5{bottom:133.606400pt;}
.y173{bottom:140.980533pt;}
.y158{bottom:141.707467pt;}
.y138{bottom:142.326800pt;}
.y1af{bottom:145.042133pt;}
.y88{bottom:150.939600pt;}
.ye4{bottom:150.939733pt;}
.y36{bottom:151.160133pt;}
.y172{bottom:156.980533pt;}
.y106{bottom:157.746667pt;}
.y1ae{bottom:161.042133pt;}
.y157{bottom:166.381867pt;}
.y35{bottom:166.493467pt;}
.y137{bottom:167.084000pt;}
.y87{bottom:168.272933pt;}
.ye3{bottom:168.273067pt;}
.y1ad{bottom:177.042133pt;}
.y105{bottom:178.534133pt;}
.y156{bottom:182.381867pt;}
.y136{bottom:183.084000pt;}
.y34{bottom:185.606267pt;}
.ye2{bottom:185.606400pt;}
.y171{bottom:190.406267pt;}
.y1ac{bottom:193.042133pt;}
.y104{bottom:199.321467pt;}
.y86{bottom:202.939600pt;}
.yee{bottom:202.939733pt;}
.y155{bottom:207.056400pt;}
.y135{bottom:207.841067pt;}
.y1ab{bottom:209.042133pt;}
.y103{bottom:220.108933pt;}
.y85{bottom:220.272933pt;}
.ye1{bottom:220.273067pt;}
.y1aa{bottom:225.042133pt;}
.y33{bottom:225.826800pt;}
.y154{bottom:233.513067pt;}
.y134{bottom:234.297733pt;}
.y84{bottom:237.606267pt;}
.ye0{bottom:237.606400pt;}
.y102{bottom:240.896267pt;}
.y1a9{bottom:241.042133pt;}
.y32{bottom:241.160133pt;}
.yed{bottom:242.406533pt;}
.y83{bottom:254.939600pt;}
.ydf{bottom:254.939733pt;}
.y31{bottom:256.493467pt;}
.y1a8{bottom:257.042133pt;}
.y153{bottom:259.969733pt;}
.y133{bottom:260.754400pt;}
.y101{bottom:261.683733pt;}
.y30{bottom:271.826800pt;}
.y82{bottom:272.272933pt;}
.yde{bottom:272.273067pt;}
.y1a7{bottom:273.042133pt;}
.y170{bottom:277.072933pt;}
.y100{bottom:282.471067pt;}
.y152{bottom:286.426400pt;}
.y2f{bottom:287.160133pt;}
.y132{bottom:287.211200pt;}
.y1a6{bottom:289.042133pt;}
.y81{bottom:289.606267pt;}
.ydd{bottom:289.606400pt;}
.y2e{bottom:302.493467pt;}
.yff{bottom:303.258533pt;}
.y1a5{bottom:305.042133pt;}
.y7f{bottom:306.939600pt;}
.ydc{bottom:306.939733pt;}
.y151{bottom:312.883067pt;}
.y131{bottom:313.667867pt;}
.y2d{bottom:317.826800pt;}
.y1a4{bottom:321.042133pt;}
.yfe{bottom:324.045867pt;}
.y80{bottom:324.272933pt;}
.ydb{bottom:324.273067pt;}
.y2c{bottom:333.160133pt;}
.y1a3{bottom:337.042133pt;}
.y150{bottom:339.339733pt;}
.y130{bottom:340.124533pt;}
.y8d{bottom:341.606267pt;}
.yda{bottom:341.606400pt;}
.yfd{bottom:344.833333pt;}
.y2b{bottom:348.493467pt;}
.y1a2{bottom:353.042133pt;}
.yb1{bottom:358.939600pt;}
.yd9{bottom:358.939733pt;}
.yf1{bottom:363.739600pt;}
.y2a{bottom:363.826800pt;}
.yfc{bottom:365.620667pt;}
.y14f{bottom:365.796533pt;}
.y12f{bottom:366.581200pt;}
.y1a1{bottom:369.042133pt;}
.y7e{bottom:369.606267pt;}
.yb0{bottom:376.272933pt;}
.yd8{bottom:376.273067pt;}
.y29{bottom:379.160133pt;}
.y16f{bottom:381.072933pt;}
.y1a0{bottom:385.042133pt;}
.yfb{bottom:386.408133pt;}
.y14e{bottom:392.253200pt;}
.y12e{bottom:393.037867pt;}
.yaf{bottom:393.606267pt;}
.yd7{bottom:393.606400pt;}
.y28{bottom:394.493467pt;}
.y19f{bottom:401.042133pt;}
.yfa{bottom:407.195467pt;}
.y27{bottom:409.826800pt;}
.yae{bottom:410.939600pt;}
.yd6{bottom:410.939733pt;}
.y19e{bottom:417.042133pt;}
.y14d{bottom:418.709867pt;}
.y12d{bottom:419.328000pt;}
.y26{bottom:425.160133pt;}
.yf9{bottom:427.982933pt;}
.yad{bottom:428.272933pt;}
.yd5{bottom:428.273067pt;}
.y19d{bottom:433.042133pt;}
.yf2{bottom:433.072933pt;}
.y25{bottom:440.493467pt;}
.y14c{bottom:445.166533pt;}
.yac{bottom:445.606267pt;}
.yd4{bottom:445.606400pt;}
.y5c{bottom:445.826800pt;}
.y12c{bottom:446.118000pt;}
.yf8{bottom:447.658667pt;}
.y19c{bottom:449.042133pt;}
.y24{bottom:455.826800pt;}
.y5b{bottom:461.160133pt;}
.yab{bottom:462.939600pt;}
.yd3{bottom:462.939733pt;}
.y7d{bottom:463.160133pt;}
.y19b{bottom:465.042133pt;}
.yf6{bottom:466.723067pt;}
.y23{bottom:471.160133pt;}
.yf7{bottom:471.163067pt;}
.y7c{bottom:478.493467pt;}
.y5a{bottom:480.272933pt;}
.yd2{bottom:480.273067pt;}
.y19a{bottom:481.042133pt;}
.y14b{bottom:484.998667pt;}
.y12b{bottom:485.534000pt;}
.y22{bottom:486.493467pt;}
.yf5{bottom:487.879200pt;}
.y199{bottom:497.042133pt;}
.y7b{bottom:497.606267pt;}
.yd1{bottom:497.606400pt;}
.y21{bottom:501.826800pt;}
.y198{bottom:513.042133pt;}
.y59{bottom:513.160133pt;}
.yaa{bottom:514.939600pt;}
.yd0{bottom:514.939733pt;}
.y20{bottom:517.160133pt;}
.y15{bottom:522.239867pt;}
.yf4{bottom:524.179733pt;}
.y7a{bottom:526.493467pt;}
.y58{bottom:528.493467pt;}
.y197{bottom:529.042133pt;}
.ya9{bottom:532.272933pt;}
.ycf{bottom:532.273067pt;}
.y1f{bottom:532.493467pt;}
.y14{bottom:535.573200pt;}
.y12a{bottom:537.074800pt;}
.y79{bottom:541.826800pt;}
.yf3{bottom:542.846400pt;}
.y57{bottom:543.826800pt;}
.y196{bottom:545.042133pt;}
.y1e{bottom:547.826800pt;}
.ya8{bottom:549.606267pt;}
.yce{bottom:549.606400pt;}
.y13{bottom:556.906533pt;}
.y78{bottom:557.160133pt;}
.y56{bottom:559.160133pt;}
.y195{bottom:561.042133pt;}
.y129{bottom:562.864800pt;}
.y1d{bottom:566.939600pt;}
.ycd{bottom:566.939733pt;}
.y77{bottom:572.493467pt;}
.y55{bottom:574.493467pt;}
.y194{bottom:577.042133pt;}
.y12{bottom:578.239867pt;}
.ya7{bottom:584.272933pt;}
.ycc{bottom:584.273067pt;}
.y76{bottom:587.826800pt;}
.y128{bottom:589.321467pt;}
.y54{bottom:589.826800pt;}
.y11{bottom:591.573200pt;}
.y193{bottom:593.042133pt;}
.ya6{bottom:601.606267pt;}
.ycb{bottom:601.606400pt;}
.y75{bottom:603.160133pt;}
.y10{bottom:604.906533pt;}
.y53{bottom:605.160133pt;}
.y192{bottom:609.042133pt;}
.y127{bottom:613.179733pt;}
.y74{bottom:618.493467pt;}
.ya5{bottom:618.939600pt;}
.yca{bottom:618.939733pt;}
.y52{bottom:620.493467pt;}
.y191{bottom:625.042133pt;}
.yf{bottom:626.239867pt;}
.y126{bottom:629.179733pt;}
.y14a{bottom:632.162933pt;}
.y73{bottom:633.826800pt;}
.y51{bottom:635.826800pt;}
.ya4{bottom:636.272933pt;}
.yc9{bottom:636.273067pt;}
.ye{bottom:639.573200pt;}
.y1c{bottom:639.971333pt;}
.y190{bottom:641.042133pt;}
.y149{bottom:648.162933pt;}
.y72{bottom:649.160133pt;}
.y50{bottom:651.160133pt;}
.y125{bottom:653.038000pt;}
.ya3{bottom:653.606267pt;}
.yc8{bottom:653.606400pt;}
.y18f{bottom:657.042133pt;}
.y1b{bottom:661.304667pt;}
.y16e{bottom:664.272933pt;}
.y71{bottom:664.493467pt;}
.y4f{bottom:666.493467pt;}
.ya2{bottom:670.939600pt;}
.yc7{bottom:670.939733pt;}
.y18e{bottom:673.042133pt;}
.y148{bottom:674.267867pt;}
.y124{bottom:676.003867pt;}
.y70{bottom:679.826800pt;}
.y15b{bottom:681.606267pt;}
.y4e{bottom:681.826800pt;}
.ya1{bottom:688.272933pt;}
.yc6{bottom:688.273067pt;}
.y18d{bottom:689.042133pt;}
.y123{bottom:692.003867pt;}
.y6f{bottom:695.160133pt;}
.y4d{bottom:697.160133pt;}
.y1a{bottom:697.756000pt;}
.y147{bottom:700.724400pt;}
.y18c{bottom:705.042133pt;}
.ya0{bottom:705.606267pt;}
.yc5{bottom:705.606400pt;}
.y6e{bottom:710.493467pt;}
.y4c{bottom:712.493467pt;}
.y122{bottom:714.969867pt;}
.yd{bottom:719.573200pt;}
.y18b{bottom:721.042133pt;}
.y9f{bottom:722.939600pt;}
.yc4{bottom:722.939733pt;}
.y6d{bottom:725.826800pt;}
.y146{bottom:727.181200pt;}
.yec{bottom:727.739733pt;}
.y4b{bottom:727.826800pt;}
.y118{bottom:729.694400pt;}
.y19{bottom:732.422667pt;}
.yc{bottom:732.906533pt;}
.y18a{bottom:737.042133pt;}
.y121{bottom:737.956667pt;}
.y9e{bottom:740.272933pt;}
.yc3{bottom:740.273067pt;}
.y6c{bottom:741.160133pt;}
.y4a{bottom:743.160133pt;}
.yb{bottom:746.239867pt;}
.y189{bottom:753.042133pt;}
.y145{bottom:753.637867pt;}
.y120{bottom:753.956667pt;}
.y117{bottom:754.762533pt;}
.y6b{bottom:756.493467pt;}
.y9d{bottom:757.606267pt;}
.yc2{bottom:757.606400pt;}
.y49{bottom:758.493467pt;}
.ya{bottom:759.573200pt;}
.y18{bottom:767.089333pt;}
.y165{bottom:768.786267pt;}
.y188{bottom:769.042133pt;}
.y6a{bottom:771.826800pt;}
.y48{bottom:773.826800pt;}
.y9c{bottom:774.939600pt;}
.yeb{bottom:774.939733pt;}
.y11f{bottom:776.943467pt;}
.y116{bottom:777.439733pt;}
.y144{bottom:780.094533pt;}
.y187{bottom:785.042133pt;}
.y9{bottom:786.239867pt;}
.y69{bottom:787.160133pt;}
.y47{bottom:789.160133pt;}
.y163{bottom:789.266800pt;}
.y9b{bottom:792.272933pt;}
.yc1{bottom:792.273067pt;}
.y8{bottom:799.573200pt;}
.y115{bottom:800.116800pt;}
.y186{bottom:801.042133pt;}
.y17{bottom:801.756000pt;}
.y68{bottom:802.493467pt;}
.y11e{bottom:803.400267pt;}
.y46{bottom:804.493467pt;}
.y143{bottom:806.551333pt;}
.y9a{bottom:809.606267pt;}
.yc0{bottom:809.606400pt;}
.y164{bottom:811.560400pt;}
.y7{bottom:812.906533pt;}
.y185{bottom:817.042133pt;}
.y67{bottom:817.826800pt;}
.y45{bottom:819.826800pt;}
.y114{bottom:822.794000pt;}
.y99{bottom:826.939600pt;}
.yea{bottom:826.939733pt;}
.y11d{bottom:829.856933pt;}
.y142{bottom:833.007867pt;}
.y184{bottom:833.042133pt;}
.y66{bottom:833.160133pt;}
.y15d{bottom:833.633867pt;}
.y162{bottom:833.781200pt;}
.y44{bottom:835.160133pt;}
.y16{bottom:836.422667pt;}
.y6{bottom:839.573200pt;}
.y98{bottom:844.272933pt;}
.ybf{bottom:844.273067pt;}
.y113{bottom:845.471200pt;}
.y65{bottom:848.493467pt;}
.y183{bottom:849.042133pt;}
.y43{bottom:850.493467pt;}
.y15f{bottom:854.334667pt;}
.y11c{bottom:856.313600pt;}
.y141{bottom:859.464533pt;}
.y97{bottom:861.606267pt;}
.ybe{bottom:861.606400pt;}
.y64{bottom:863.826800pt;}
.y182{bottom:865.042133pt;}
.y42{bottom:865.826800pt;}
.y112{bottom:868.148400pt;}
.y161{bottom:873.382400pt;}
.yf0{bottom:876.006267pt;}
.y96{bottom:878.939600pt;}
.ybd{bottom:878.939733pt;}
.y63{bottom:879.160133pt;}
.y181{bottom:881.042133pt;}
.y41{bottom:881.160133pt;}
.y11b{bottom:882.603600pt;}
.y140{bottom:885.921333pt;}
.y111{bottom:890.825467pt;}
.y62{bottom:894.493467pt;}
.y95{bottom:896.272933pt;}
.ybc{bottom:896.273067pt;}
.y40{bottom:896.493467pt;}
.y180{bottom:897.042133pt;}
.y5{bottom:899.102400pt;}
.y16b{bottom:900.804533pt;}
.y168{bottom:902.539333pt;}
.y11a{bottom:909.393600pt;}
.y3f{bottom:911.826800pt;}
.y13f{bottom:912.378000pt;}
.y17f{bottom:913.042133pt;}
.y110{bottom:913.502667pt;}
.y61{bottom:913.606267pt;}
.ybb{bottom:913.606400pt;}
.y4{bottom:915.778000pt;}
.y15e{bottom:916.555200pt;}
.y16a{bottom:916.804533pt;}
.y167{bottom:918.539333pt;}
.y160{bottom:927.219600pt;}
.y17e{bottom:929.042133pt;}
.y3e{bottom:930.939600pt;}
.yba{bottom:930.939733pt;}
.y169{bottom:932.804533pt;}
.y166{bottom:934.539333pt;}
.y10f{bottom:936.179867pt;}
.y13e{bottom:939.013067pt;}
.y17d{bottom:945.042133pt;}
.y13d{bottom:946.179733pt;}
.y119{bottom:946.610133pt;}
.y94{bottom:948.272933pt;}
.yb9{bottom:948.273067pt;}
.y3{bottom:956.909467pt;}
.y10e{bottom:958.857067pt;}
.y17c{bottom:961.042133pt;}
.y60{bottom:961.919600pt;}
.y3d{bottom:963.483867pt;}
.y15c{bottom:965.350533pt;}
.y93{bottom:965.606267pt;}
.yb8{bottom:965.606400pt;}
.y17b{bottom:977.042133pt;}
.y10d{bottom:981.534133pt;}
.y92{bottom:982.939600pt;}
.yb7{bottom:982.939733pt;}
.y5f{bottom:985.919600pt;}
.y3c{bottom:987.483867pt;}
.y13c{bottom:991.513067pt;}
.y17a{bottom:993.042133pt;}
.y2{bottom:996.468533pt;}
.ye9{bottom:999.380667pt;}
.y91{bottom:1000.272933pt;}
.yb6{bottom:1000.273067pt;}
.y10c{bottom:1003.878000pt;}
.y16d{bottom:1004.675467pt;}
.y179{bottom:1009.042133pt;}
.y5e{bottom:1009.919600pt;}
.y13b{bottom:1010.179733pt;}
.y3b{bottom:1011.483867pt;}
.y90{bottom:1017.606267pt;}
.yb5{bottom:1017.606400pt;}
.y16c{bottom:1023.342133pt;}
.y178{bottom:1025.042133pt;}
.ye8{bottom:1028.273067pt;}
.y10b{bottom:1030.452667pt;}
.y5d{bottom:1033.919600pt;}
.y8f{bottom:1034.939600pt;}
.yb4{bottom:1034.939733pt;}
.y3a{bottom:1035.483867pt;}
.y177{bottom:1041.042133pt;}
.y1{bottom:1070.418400pt;}
.y37{bottom:1094.019067pt;}
.y8e{bottom:1094.774933pt;}
.he{height:25.731200pt;}
.h1a{height:27.144480pt;}
.hf{height:30.019733pt;}
.hd{height:30.272000pt;}
.h6{height:34.336000pt;}
.h8{height:36.480000pt;}
.h1d{height:38.133333pt;}
.h25{height:38.151111pt;}
.h17{height:40.106667pt;}
.h26{height:40.533333pt;}
.h7{height:41.184000pt;}
.h1c{height:41.362770pt;}
.h1b{height:45.760000pt;}
.h18{height:46.560000pt;}
.h20{height:46.668764pt;}
.h19{height:47.278287pt;}
.h21{height:47.760000pt;}
.hc{height:48.048000pt;}
.h13{height:50.336000pt;}
.h16{height:51.112516pt;}
.hb{height:51.216000pt;}
.h5{height:51.296000pt;}
.h4{height:53.800000pt;}
.h14{height:60.800000pt;}
.h15{height:62.069333pt;}
.h22{height:65.771413pt;}
.h24{height:65.771947pt;}
.h23{height:67.771413pt;}
.ha{height:70.933333pt;}
.h11{height:71.232000pt;}
.h1f{height:76.560000pt;}
.h1e{height:77.760000pt;}
.h2{height:79.648000pt;}
.h10{height:81.578667pt;}
.h9{height:122.368000pt;}
.h12{height:233.751173pt;}
.h3{height:276.672000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:16.440933pt;}
.x34{left:17.385733pt;}
.x29{left:19.842533pt;}
.x30{left:23.766267pt;}
.x31{left:29.799467pt;}
.x2f{left:42.092533pt;}
.x9{left:64.275333pt;}
.x6{left:68.031467pt;}
.x1b{left:69.898133pt;}
.x22{left:71.831600pt;}
.x11{left:77.418133pt;}
.x4{left:79.370133pt;}
.x12{left:81.766667pt;}
.xe{left:83.149600pt;}
.x13{left:89.927733pt;}
.xa{left:95.462267pt;}
.x7{left:105.826800pt;}
.x14{left:112.990800pt;}
.x2b{left:134.134133pt;}
.x1c{left:154.773733pt;}
.x1d{left:162.236000pt;}
.x32{left:182.386400pt;}
.x33{left:185.706400pt;}
.xd{left:220.562133pt;}
.x23{left:228.095867pt;}
.x27{left:244.690533pt;}
.x24{left:252.807067pt;}
.x2{left:300.472533pt;}
.x1{left:306.519733pt;}
.x2c{left:308.559333pt;}
.x2d{left:312.433333pt;}
.x2e{left:324.188533pt;}
.x2a{left:327.786667pt;}
.x5{left:338.645600pt;}
.x3{left:339.590533pt;}
.x8{left:406.299200pt;}
.x25{left:407.299200pt;}
.x15{left:413.499200pt;}
.x10{left:415.685867pt;}
.xf{left:421.417333pt;}
.x20{left:455.201067pt;}
.x21{left:462.663333pt;}
.x1e{left:475.591733pt;}
.x1f{left:483.054000pt;}
.xc{left:516.883600pt;}
.x16{left:602.801733pt;}
.x26{left:627.190667pt;}
.x17{left:655.887067pt;}
.x18{left:665.073467pt;}
.x19{left:691.650400pt;}
.x1a{left:710.236800pt;}
.x35{left:718.459200pt;}
.xb{left:721.147333pt;}
}




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