
    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_ce0e23bee3a1be9b6ea9df93.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920000;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_0e346081a63f1ab4372ca1be.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3710f4aa1921994a13391f80.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_35b748aa1ca4483b5a9520c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2cc92eec85e4e9e8bd4b0a33.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_91ef707a50349fa6f712c3da.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_39341f30b673bf26ccb72efa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ea8aa61f91594243cd7c68a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202000;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_9bb1c2a7529470198bd812ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;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_c2bb492d0f0b84241bda1b1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.510000;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_706987c1117200ac164c0bc2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.974000;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_6b753bf469014e8055782159.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.050000;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_138dcf1dd888d5867231088a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.168000;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_bd532f909ad03ae361dcabc6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.388000;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_a9d2b96eea91bde639aa4fbe.woff2')format("woff");}.fff{font-family:fff;line-height:0.945000;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_c2959365a3131a91727fb04d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.674000;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_9b2789fe6a9be9436d028b2d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.457000;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_522000c0b461b5438ca08fdd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.264000;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_04e07f78897be5c28a1e3cad.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.279000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m7{transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-0.787912px;}
.ls2{letter-spacing:-0.164075px;}
.ls0{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.013480px;}
.ls8{letter-spacing:0.029378px;}
.ls16{letter-spacing:0.035261px;}
.ls29{letter-spacing:0.041172px;}
.ls32{letter-spacing:0.049494px;}
.ls30{letter-spacing:0.058484px;}
.ls31{letter-spacing:0.058547px;}
.ls25{letter-spacing:0.117613px;}
.ls23{letter-spacing:0.153600px;}
.ls4{letter-spacing:0.194040px;}
.lsa{letter-spacing:0.199862px;}
.ls5{letter-spacing:0.199922px;}
.lse{letter-spacing:0.246988px;}
.ls1b{letter-spacing:0.552714px;}
.ls12{letter-spacing:0.605634px;}
.ls11{letter-spacing:0.623274px;}
.ls13{letter-spacing:0.629154px;}
.lsf{letter-spacing:0.635034px;}
.ls10{letter-spacing:0.664433px;}
.lsd{letter-spacing:1.164228px;}
.lsc{letter-spacing:1.205388px;}
.lsb{letter-spacing:1.246547px;}
.ls1{letter-spacing:1.558702px;}
.ls1f{letter-spacing:10.557000px;}
.ls2f{letter-spacing:13.504277px;}
.ls2d{letter-spacing:13.621300px;}
.ls17{letter-spacing:14.097420px;}
.ls18{letter-spacing:14.193410px;}
.ls19{letter-spacing:14.260588px;}
.ls20{letter-spacing:14.279787px;}
.ls22{letter-spacing:14.299026px;}
.ls1a{letter-spacing:14.385403px;}
.ls2a{letter-spacing:17.457491px;}
.ls9{letter-spacing:17.716238px;}
.ls27{letter-spacing:17.727972px;}
.ls2c{letter-spacing:17.798531px;}
.ls1e{letter-spacing:17.980897px;}
.ls15{letter-spacing:18.063221px;}
.ls33{letter-spacing:18.515280px;}
.ls7{letter-spacing:19.156811px;}
.ls6{letter-spacing:19.838891px;}
.ls24{letter-spacing:20.450412px;}
.ls26{letter-spacing:21.467652px;}
.ls28{letter-spacing:25.277831px;}
.ls1c{letter-spacing:26.300972px;}
.ls3{letter-spacing:31.404731px;}
.ls14{letter-spacing:33.368681px;}
.ls1d{letter-spacing:45.113400px;}
.ls21{letter-spacing:1037.147046px;}
.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;}
}
.wsab{word-spacing:-26.359771px;}
.ws1ed{word-spacing:-18.577080px;}
.ws31{word-spacing:-8.434930px;}
.ws32{word-spacing:-1.789906px;}
.ws33{word-spacing:-0.061800px;}
.ws39{word-spacing:-0.058799px;}
.ws2f{word-spacing:-0.047999px;}
.ws2a{word-spacing:-0.044999px;}
.ws28{word-spacing:-0.041999px;}
.ws30{word-spacing:0.000000px;}
.ws113{word-spacing:10.443599px;}
.ws29{word-spacing:11.884342px;}
.ws27{word-spacing:12.335224px;}
.ws20{word-spacing:12.423422px;}
.ws22{word-spacing:12.503222px;}
.ws24{word-spacing:12.528421px;}
.ws21{word-spacing:12.582966px;}
.ws25{word-spacing:12.604020px;}
.ws23{word-spacing:12.671219px;}
.ws26{word-spacing:12.851816px;}
.ws1e3{word-spacing:13.139825px;}
.ws1e0{word-spacing:13.166825px;}
.ws1b4{word-spacing:13.171325px;}
.ws1d8{word-spacing:13.180324px;}
.ws1e7{word-spacing:13.189325px;}
.ws1e1{word-spacing:13.193825px;}
.ws1c7{word-spacing:13.207324px;}
.ws1eb{word-spacing:13.211824px;}
.ws1c3{word-spacing:13.216324px;}
.ws1e6{word-spacing:13.220823px;}
.ws1cb{word-spacing:13.225323px;}
.ws1e5{word-spacing:13.229824px;}
.ws1ac{word-spacing:13.234324px;}
.ws1d6{word-spacing:13.238824px;}
.ws1de{word-spacing:13.247823px;}
.ws1c6{word-spacing:13.252323px;}
.ws1d7{word-spacing:13.261324px;}
.ws1c4{word-spacing:13.265823px;}
.ws1ce{word-spacing:13.270323px;}
.ws1c9{word-spacing:13.274823px;}
.ws1ec{word-spacing:13.279323px;}
.ws1d0{word-spacing:13.283823px;}
.ws1db{word-spacing:13.288322px;}
.ws1c5{word-spacing:13.292822px;}
.ws1df{word-spacing:13.301823px;}
.ws1dd{word-spacing:13.306323px;}
.ws1cf{word-spacing:13.310822px;}
.ws1d9{word-spacing:13.315322px;}
.ws1e2{word-spacing:13.319822px;}
.ws1b6{word-spacing:13.324323px;}
.ws1e4{word-spacing:13.328823px;}
.ws1d5{word-spacing:13.333322px;}
.ws1ea{word-spacing:13.337822px;}
.ws2b{word-spacing:13.342322px;}
.ws1b2{word-spacing:13.351322px;}
.ws1ca{word-spacing:13.360321px;}
.ws1b1{word-spacing:13.364822px;}
.ws1b3{word-spacing:13.369322px;}
.ws1ee{word-spacing:13.373822px;}
.ws1be{word-spacing:13.387321px;}
.ws1b8{word-spacing:13.391822px;}
.ws1ba{word-spacing:13.400821px;}
.ws1bb{word-spacing:13.405321px;}
.ws1cc{word-spacing:13.409821px;}
.ws1af{word-spacing:13.414322px;}
.ws1e9{word-spacing:13.418822px;}
.ws1ae{word-spacing:13.432321px;}
.ws1b7{word-spacing:13.445820px;}
.ws1bd{word-spacing:13.468320px;}
.ws1d1{word-spacing:13.486321px;}
.ws1b9{word-spacing:13.504320px;}
.ws1b0{word-spacing:13.508820px;}
.ws1cd{word-spacing:13.522320px;}
.ws1d4{word-spacing:13.535819px;}
.ws2c{word-spacing:13.549320px;}
.ws1e8{word-spacing:13.567319px;}
.ws1da{word-spacing:13.576319px;}
.ws1c2{word-spacing:13.580818px;}
.ws1d3{word-spacing:13.603318px;}
.ws1c0{word-spacing:13.616819px;}
.ws1c8{word-spacing:13.625818px;}
.ws1c1{word-spacing:13.666318px;}
.ws1d2{word-spacing:13.688818px;}
.ws1b5{word-spacing:13.706818px;}
.ws1ad{word-spacing:13.733817px;}
.ws18a{word-spacing:13.799827px;}
.ws121{word-spacing:13.804628px;}
.ws1bf{word-spacing:13.814816px;}
.ws1bc{word-spacing:13.882315px;}
.ws119{word-spacing:13.895826px;}
.ws11a{word-spacing:13.900627px;}
.ws2e{word-spacing:13.929344px;}
.ws16b{word-spacing:13.929404px;}
.wsd5{word-spacing:13.929426px;}
.ws115{word-spacing:13.934239px;}
.ws120{word-spacing:13.943826px;}
.ws114{word-spacing:13.967825px;}
.wsd4{word-spacing:13.977426px;}
.ws11d{word-spacing:13.987025px;}
.ws11f{word-spacing:14.010975px;}
.ws11b{word-spacing:14.035024px;}
.ws117{word-spacing:14.039821px;}
.ws169{word-spacing:14.059024px;}
.ws11c{word-spacing:14.087824px;}
.wsd1{word-spacing:14.111824px;}
.ws118{word-spacing:14.121424px;}
.wsd3{word-spacing:14.155023px;}
.ws116{word-spacing:14.174222px;}
.wsd2{word-spacing:14.188670px;}
.wsd0{word-spacing:14.231822px;}
.ws16a{word-spacing:14.236581px;}
.ws2d{word-spacing:14.236641px;}
.ws93{word-spacing:14.251021px;}
.ws11e{word-spacing:14.462219px;}
.wsae{word-spacing:14.835089px;}
.ws132{word-spacing:15.005607px;}
.ws12f{word-spacing:15.017366px;}
.ws195{word-spacing:15.064407px;}
.wsca{word-spacing:15.293725px;}
.ws185{word-spacing:15.405443px;}
.wscf{word-spacing:15.499522px;}
.ws111{word-spacing:15.903000px;}
.ws130{word-spacing:15.975798px;}
.wscb{word-spacing:16.046356px;}
.ws110{word-spacing:16.059601px;}
.wsce{word-spacing:16.175716px;}
.ws112{word-spacing:16.178401px;}
.wscd{word-spacing:16.216874px;}
.wsf3{word-spacing:16.416658px;}
.ws79{word-spacing:16.576740px;}
.ws190{word-spacing:16.634350px;}
.ws5b{word-spacing:16.753382px;}
.ws13b{word-spacing:16.786503px;}
.ws18b{word-spacing:16.857789px;}
.ws10a{word-spacing:16.863783px;}
.ws17e{word-spacing:16.922467px;}
.wsa2{word-spacing:16.945987px;}
.wsf4{word-spacing:17.022426px;}
.ws109{word-spacing:17.057707px;}
.ws7f{word-spacing:17.063586px;}
.ws193{word-spacing:17.216464px;}
.ws192{word-spacing:17.222330px;}
.ws71{word-spacing:17.351704px;}
.ws10b{word-spacing:17.363462px;}
.ws143{word-spacing:17.404622px;}
.ws13a{word-spacing:17.439903px;}
.wsdd{word-spacing:17.445783px;}
.wsdc{word-spacing:17.451661px;}
.wsd7{word-spacing:17.463422px;}
.ws171{word-spacing:17.481061px;}
.ws64{word-spacing:17.504582px;}
.wsdb{word-spacing:17.516341px;}
.wsd9{word-spacing:17.522221px;}
.ws59{word-spacing:17.539860px;}
.ws6a{word-spacing:17.551621px;}
.ws3b{word-spacing:17.557501px;}
.wsf2{word-spacing:17.563381px;}
.ws6d{word-spacing:17.610420px;}
.ws6e{word-spacing:17.616301px;}
.ws8e{word-spacing:17.628060px;}
.ws6c{word-spacing:17.633939px;}
.wsd6{word-spacing:17.645701px;}
.ws66{word-spacing:17.651580px;}
.ws68{word-spacing:17.657459px;}
.ws4a{word-spacing:17.663339px;}
.ws11{word-spacing:17.676177px;}
.wsd8{word-spacing:17.686859px;}
.ws73{word-spacing:17.692739px;}
.ws13{word-spacing:17.694176px;}
.wsc0{word-spacing:17.698619px;}
.ws12a{word-spacing:17.704500px;}
.ws67{word-spacing:17.716259px;}
.ws65{word-spacing:17.722139px;}
.ws41{word-spacing:17.733900px;}
.ws6b{word-spacing:17.739780px;}
.ws62{word-spacing:17.745658px;}
.ws72{word-spacing:17.757419px;}
.wsf9{word-spacing:17.780938px;}
.ws1a0{word-spacing:17.786819px;}
.wse{word-spacing:17.790178px;}
.ws144{word-spacing:17.792699px;}
.ws9{word-spacing:17.802179px;}
.wse5{word-spacing:17.816218px;}
.wsb3{word-spacing:17.822099px;}
.wsf{word-spacing:17.826174px;}
.wsd{word-spacing:17.826179px;}
.wsda{word-spacing:17.845618px;}
.ws1ab{word-spacing:17.851498px;}
.ws124{word-spacing:17.857399px;}
.wsa0{word-spacing:17.869137px;}
.ws9a{word-spacing:17.880898px;}
.ws18{word-spacing:17.886179px;}
.ws55{word-spacing:17.886778px;}
.wsa{word-spacing:17.898178px;}
.ws82{word-spacing:17.904417px;}
.ws69{word-spacing:17.916178px;}
.ws16{word-spacing:17.922180px;}
.ws15{word-spacing:17.928179px;}
.ws78{word-spacing:17.951456px;}
.ws1a{word-spacing:17.976180px;}
.ws125{word-spacing:17.980860px;}
.ws17{word-spacing:17.982180px;}
.wsc{word-spacing:17.994179px;}
.wsb8{word-spacing:17.998497px;}
.wsb{word-spacing:18.006181px;}
.ws6f{word-spacing:18.039655px;}
.ws1b{word-spacing:18.042181px;}
.wsf8{word-spacing:18.045520px;}
.ws170{word-spacing:18.074935px;}
.ws1d{word-spacing:18.132182px;}
.ws49{word-spacing:18.133765px;}
.ws103{word-spacing:18.139585px;}
.ws14{word-spacing:18.144181px;}
.ws16d{word-spacing:18.151375px;}
.wsf0{word-spacing:18.157254px;}
.wsfa{word-spacing:18.163134px;}
.ws18e{word-spacing:18.192534px;}
.ws9f{word-spacing:18.198414px;}
.ws77{word-spacing:18.216054px;}
.wsec{word-spacing:18.239574px;}
.ws16f{word-spacing:18.245453px;}
.ws12{word-spacing:18.252183px;}
.ws18d{word-spacing:18.257214px;}
.ws10{word-spacing:18.264182px;}
.ws19{word-spacing:18.318187px;}
.ws152{word-spacing:18.327774px;}
.ws1c{word-spacing:18.414179px;}
.ws148{word-spacing:18.427731px;}
.ws1e{word-spacing:18.432147px;}
.ws5a{word-spacing:18.453481px;}
.ws9d{word-spacing:18.521811px;}
.ws17f{word-spacing:18.527692px;}
.ws60{word-spacing:18.557091px;}
.ws12c{word-spacing:18.568850px;}
.ws8{word-spacing:18.600160px;}
.ws1f{word-spacing:18.618186px;}
.ws50{word-spacing:18.827568px;}
.ws98{word-spacing:18.839327px;}
.ws95{word-spacing:18.845208px;}
.ws46{word-spacing:18.898127px;}
.wsad{word-spacing:18.915768px;}
.ws180{word-spacing:18.956926px;}
.ws14f{word-spacing:19.009845px;}
.wsc6{word-spacing:19.062766px;}
.ws47{word-spacing:19.086286px;}
.ws4e{word-spacing:19.098045px;}
.ws3d{word-spacing:19.145085px;}
.ws19c{word-spacing:19.168604px;}
.ws136{word-spacing:19.180365px;}
.ws4f{word-spacing:19.203885px;}
.wsfc{word-spacing:19.221523px;}
.ws18c{word-spacing:19.239164px;}
.wsf7{word-spacing:19.327363px;}
.ws10f{word-spacing:19.339122px;}
.ws107{word-spacing:19.421441px;}
.wse1{word-spacing:19.444962px;}
.wsc5{word-spacing:19.486121px;}
.ws184{word-spacing:19.492001px;}
.wsb4{word-spacing:19.521401px;}
.ws91{word-spacing:19.544920px;}
.ws1a4{word-spacing:19.603719px;}
.ws43{word-spacing:19.680160px;}
.ws19d{word-spacing:19.691918px;}
.ws4d{word-spacing:19.715438px;}
.ws44{word-spacing:19.744838px;}
.ws6{word-spacing:19.773780px;}
.ws177{word-spacing:19.774238px;}
.ws4c{word-spacing:19.785998px;}
.ws128{word-spacing:19.856558px;}
.ws7{word-spacing:19.885980px;}
.ws88{word-spacing:19.921236px;}
.ws4{word-spacing:19.958581px;}
.ws5{word-spacing:19.965181px;}
.ws127{word-spacing:19.974157px;}
.ws126{word-spacing:20.015315px;}
.wsb0{word-spacing:20.079995px;}
.ws189{word-spacing:20.085876px;}
.ws106{word-spacing:20.121155px;}
.ws42{word-spacing:20.162314px;}
.ws5c{word-spacing:20.174075px;}
.ws10e{word-spacing:20.209354px;}
.wse0{word-spacing:20.368112px;}
.ws10c{word-spacing:20.373992px;}
.ws3f{word-spacing:20.450431px;}
.ws76{word-spacing:20.597429px;}
.ws83{word-spacing:20.626829px;}
.wsba{word-spacing:20.679750px;}
.ws13e{word-spacing:20.697389px;}
.ws13f{word-spacing:20.703269px;}
.wseb{word-spacing:20.750308px;}
.wse9{word-spacing:20.844387px;}
.ws80{word-spacing:20.961986px;}
.wsea{word-spacing:21.103104px;}
.ws176{word-spacing:21.138384px;}
.wsf6{word-spacing:21.167784px;}
.ws94{word-spacing:21.261864px;}
.ws3e{word-spacing:21.308902px;}
.ws96{word-spacing:21.444142px;}
.wsff{word-spacing:21.485300px;}
.ws140{word-spacing:21.526461px;}
.ws147{word-spacing:21.555861px;}
.wsee{word-spacing:21.620540px;}
.ws19a{word-spacing:21.738139px;}
.ws105{word-spacing:21.785178px;}
.ws19e{word-spacing:21.826338px;}
.ws97{word-spacing:21.861616px;}
.ws19f{word-spacing:21.873377px;}
.ws1a8{word-spacing:21.902777px;}
.ws138{word-spacing:22.002736px;}
.wsac{word-spacing:22.032136px;}
.ws149{word-spacing:22.038015px;}
.ws14d{word-spacing:22.061535px;}
.ws70{word-spacing:22.120335px;}
.ws129{word-spacing:22.126214px;}
.ws15e{word-spacing:22.167374px;}
.ws45{word-spacing:22.202654px;}
.ws85{word-spacing:22.208534px;}
.ws7c{word-spacing:22.220294px;}
.ws84{word-spacing:22.226173px;}
.ws1a5{word-spacing:22.314372px;}
.ws181{word-spacing:22.455480px;}
.ws13d{word-spacing:22.461371px;}
.wsf5{word-spacing:22.496651px;}
.ws17d{word-spacing:22.508410px;}
.ws17c{word-spacing:22.526051px;}
.ws157{word-spacing:22.637769px;}
.ws35{word-spacing:22.667169px;}
.ws182{word-spacing:22.714183px;}
.ws142{word-spacing:22.743607px;}
.ws178{word-spacing:22.761248px;}
.ws162{word-spacing:22.778887px;}
.ws5d{word-spacing:22.978805px;}
.ws1aa{word-spacing:23.090525px;}
.wsbb{word-spacing:23.131683px;}
.ws174{word-spacing:23.243402px;}
.ws18f{word-spacing:23.261043px;}
.ws175{word-spacing:23.266923px;}
.wse2{word-spacing:23.308082px;}
.wsb9{word-spacing:23.319843px;}
.ws168{word-spacing:23.337481px;}
.ws1a9{word-spacing:23.343362px;}
.ws48{word-spacing:23.443321px;}
.ws183{word-spacing:23.478600px;}
.ws139{word-spacing:23.525641px;}
.ws3c{word-spacing:23.566799px;}
.ws134{word-spacing:23.602079px;}
.ws0{word-spacing:23.649601px;}
.ws5f{word-spacing:23.678519px;}
.wsde{word-spacing:23.825517px;}
.ws74{word-spacing:24.001916px;}
.ws153{word-spacing:24.131273px;}
.ws154{word-spacing:24.190073px;}
.ws15d{word-spacing:24.201834px;}
.ws15c{word-spacing:24.242992px;}
.ws53{word-spacing:24.248872px;}
.ws36{word-spacing:24.313552px;}
.ws15b{word-spacing:24.342952px;}
.ws196{word-spacing:24.366471px;}
.ws145{word-spacing:24.501711px;}
.wsf1{word-spacing:24.548750px;}
.ws5e{word-spacing:24.578149px;}
.wsed{word-spacing:24.619309px;}
.wsfd{word-spacing:24.825107px;}
.ws17a{word-spacing:24.842747px;}
.ws14b{word-spacing:24.883907px;}
.ws108{word-spacing:24.889785px;}
.ws158{word-spacing:24.901546px;}
.ws172{word-spacing:24.925065px;}
.ws8b{word-spacing:24.989745px;}
.ws75{word-spacing:25.013264px;}
.ws186{word-spacing:25.019145px;}
.ws12b{word-spacing:25.042664px;}
.wsc8{word-spacing:25.048544px;}
.ws198{word-spacing:25.060305px;}
.ws14a{word-spacing:25.083825px;}
.ws15f{word-spacing:25.266103px;}
.wsc9{word-spacing:25.307261px;}
.ws1a3{word-spacing:25.319022px;}
.ws161{word-spacing:25.336661px;}
.ws58{word-spacing:25.360181px;}
.wsaa{word-spacing:25.436621px;}
.ws160{word-spacing:25.477779px;}
.wsa3{word-spacing:25.477781px;}
.ws89{word-spacing:25.565979px;}
.ws146{word-spacing:25.607139px;}
.ws15a{word-spacing:25.742377px;}
.ws1a2{word-spacing:25.795297px;}
.ws10d{word-spacing:25.801176px;}
.ws14e{word-spacing:25.871736px;}
.ws104{word-spacing:25.918775px;}
.ws194{word-spacing:26.042254px;}
.ws179{word-spacing:26.112814px;}
.ws81{word-spacing:26.136333px;}
.ws122{word-spacing:26.183372px;}
.ws173{word-spacing:26.195133px;}
.ws135{word-spacing:26.277451px;}
.ws191{word-spacing:26.306851px;}
.ws86{word-spacing:26.324492px;}
.ws187{word-spacing:26.353892px;}
.ws123{word-spacing:26.442091px;}
.ws7d{word-spacing:26.583209px;}
.ws8c{word-spacing:26.694928px;}
.wse3{word-spacing:26.789007px;}
.wsa1{word-spacing:26.818407px;}
.wsfe{word-spacing:26.859565px;}
.ws56{word-spacing:27.065363px;}
.ws12d{word-spacing:27.159425px;}
.ws12e{word-spacing:27.206483px;}
.ws87{word-spacing:27.329961px;}
.ws54{word-spacing:27.388760px;}
.wsdf{word-spacing:27.400520px;}
.ws101{word-spacing:27.512239px;}
.ws17b{word-spacing:27.559279px;}
.ws57{word-spacing:27.670998px;}
.ws63{word-spacing:27.823877px;}
.ws155{word-spacing:27.853276px;}
.ws156{word-spacing:27.912076px;}
.ws90{word-spacing:27.988514px;}
.wse4{word-spacing:28.023795px;}
.ws51{word-spacing:28.111994px;}
.wsb1{word-spacing:28.370711px;}
.ws8a{word-spacing:28.453029px;}
.ws163{word-spacing:28.523590px;}
.wsc1{word-spacing:28.705868px;}
.wsc2{word-spacing:28.735267px;}
.wsb2{word-spacing:28.764667px;}
.ws16c{word-spacing:28.835225px;}
.ws13c{word-spacing:28.852866px;}
.ws9c{word-spacing:28.882266px;}
.ws92{word-spacing:29.005743px;}
.ws37{word-spacing:29.105703px;}
.ws199{word-spacing:29.176263px;}
.ws61{word-spacing:29.217421px;}
.ws16e{word-spacing:29.299740px;}
.ws19b{word-spacing:29.311501px;}
.ws159{word-spacing:29.382061px;}
.ws141{word-spacing:29.611378px;}
.ws1a1{word-spacing:29.723097px;}
.ws7e{word-spacing:30.287570px;}
.wsef{word-spacing:30.481610px;}
.ws9b{word-spacing:30.552167px;}
.wsbd{word-spacing:30.663887px;}
.wsc4{word-spacing:30.793246px;}
.ws8f{word-spacing:30.805007px;}
.ws8d{word-spacing:30.957884px;}
.ws7a{word-spacing:31.034323px;}
.ws1a6{word-spacing:31.051962px;}
.wsbe{word-spacing:31.087243px;}
.ws166{word-spacing:31.116643px;}
.wsbc{word-spacing:31.122522px;}
.ws165{word-spacing:31.281281px;}
.ws164{word-spacing:31.469439px;}
.ws38{word-spacing:31.510600px;}
.ws150{word-spacing:31.822236px;}
.ws197{word-spacing:31.933953px;}
.wsb6{word-spacing:31.986874px;}
.ws167{word-spacing:32.104472px;}
.ws99{word-spacing:32.357309px;}
.wsb7{word-spacing:32.792426px;}
.ws151{word-spacing:32.839465px;}
.ws40{word-spacing:33.127583px;}
.wsa4{word-spacing:33.380419px;}
.wsa8{word-spacing:33.498018px;}
.wsfb{word-spacing:34.227130px;}
.ws14c{word-spacing:34.415288px;}
.ws131{word-spacing:34.609326px;}
.ws3a{word-spacing:34.656368px;}
.wsa6{word-spacing:34.826886px;}
.wsa7{word-spacing:35.232600px;}
.ws34{word-spacing:35.585397px;}
.ws102{word-spacing:35.732396px;}
.wsaf{word-spacing:35.897034px;}
.ws4b{word-spacing:36.737865px;}
.ws137{word-spacing:37.120061px;}
.ws188{word-spacing:37.284698px;}
.wscc{word-spacing:37.537538px;}
.wsa9{word-spacing:39.230961px;}
.ws133{word-spacing:39.248600px;}
.wse6{word-spacing:39.524957px;}
.wsbf{word-spacing:40.024752px;}
.wsc3{word-spacing:40.401067px;}
.ws52{word-spacing:40.689185px;}
.wsc7{word-spacing:40.924382px;}
.ws100{word-spacing:41.318339px;}
.ws1a7{word-spacing:41.888694px;}
.wse7{word-spacing:42.182691px;}
.wse8{word-spacing:42.235608px;}
.ws3{word-spacing:42.782580px;}
.ws2{word-spacing:42.955378px;}
.ws1{word-spacing:43.142581px;}
.ws1dc{word-spacing:44.261409px;}
.ws9e{word-spacing:47.133598px;}
.wsa5{word-spacing:48.944621px;}
.ws7b{word-spacing:50.702722px;}
.wsb5{word-spacing:52.478464px;}
._1c{margin-left:-27.699035px;}
._1b{margin-left:-26.627989px;}
._32{margin-left:-17.903461px;}
._a{margin-left:-2.751980px;}
._9{margin-left:-1.573625px;}
._4{width:1.518017px;}
._c{width:2.871307px;}
._b{width:4.914782px;}
._0{width:8.954400px;}
._7{width:11.663235px;}
._6{width:13.553203px;}
._8{width:14.669806px;}
._20{width:16.481640px;}
._5{width:17.586178px;}
._3{width:18.978189px;}
._14{width:20.070508px;}
._13{width:21.726379px;}
._12{width:22.989579px;}
._1d{width:24.290034px;}
._e{width:25.565979px;}
._16{width:26.617501px;}
._15{width:28.582390px;}
._f{width:30.521775px;}
._10{width:32.592504px;}
._19{width:33.797902px;}
._11{width:35.926433px;}
._d{width:37.278820px;}
._21{width:38.613735px;}
._1e{width:41.140948px;}
._1f{width:42.335568px;}
._2{width:44.366579px;}
._17{width:46.186929px;}
._1a{width:48.584957px;}
._31{width:65.861121px;}
._2e{width:547.308357px;}
._2d{width:645.251108px;}
._22{width:657.255774px;}
._2f{width:724.771760px;}
._30{width:770.548758px;}
._2c{width:782.793406px;}
._24{width:812.514643px;}
._23{width:822.028143px;}
._26{width:838.179924px;}
._29{width:842.063075px;}
._28{width:861.416433px;}
._2b{width:963.266396px;}
._27{width:969.045449px;}
._2a{width:986.397252px;}
._25{width:988.202085px;}
._18{width:1057.619234px;}
._1{width:1976.208061px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(19,20,19);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:29.995200px;}
.fse{font-size:39.194400px;}
.fs6{font-size:39.996000px;}
.fs7{font-size:41.999400px;}
.fs3{font-size:43.996200px;}
.fs8{font-size:44.999400px;}
.fsb{font-size:47.999400px;}
.fsf{font-size:54.000000px;}
.fsd{font-size:55.200600px;}
.fsc{font-size:58.799400px;}
.fs5{font-size:60.000600px;}
.fs4{font-size:61.800000px;}
.fs2{font-size:66.000600px;}
.fsa{font-size:74.579400px;}
.fs0{font-size:78.000000px;}
.fs1{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y34{bottom:26.907750px;}
.y2c{bottom:89.289547px;}
.y17c{bottom:89.292360px;}
.y69{bottom:89.292915px;}
.y111{bottom:89.292975px;}
.y19e{bottom:89.293965px;}
.y1e2{bottom:89.295795px;}
.y9b{bottom:89.303820px;}
.y141{bottom:97.034280px;}
.yda{bottom:98.645550px;}
.y2b{bottom:101.280367px;}
.y19d{bottom:102.815160px;}
.y1e1{bottom:102.816990px;}
.y17b{bottom:107.320260px;}
.y68{bottom:107.320815px;}
.y110{bottom:107.320875px;}
.y9a{bottom:107.331705px;}
.y2a{bottom:113.271202px;}
.y19c{bottom:116.336355px;}
.y1e0{bottom:116.338185px;}
.y140{bottom:118.038810px;}
.y29{bottom:125.262037px;}
.y17a{bottom:125.262900px;}
.y67{bottom:125.263455px;}
.y10f{bottom:125.263515px;}
.y99{bottom:125.274345px;}
.y224{bottom:129.770205px;}
.y1df{bottom:129.775005px;}
.y28{bottom:137.337907px;}
.y13f{bottom:139.043355px;}
.y66{bottom:143.291340px;}
.y10e{bottom:143.291400px;}
.y1de{bottom:143.296200px;}
.y98{bottom:143.302245px;}
.y27{bottom:149.328742px;}
.y223{bottom:156.812550px;}
.y1dd{bottom:156.817395px;}
.y19b{bottom:157.666050px;}
.y13e{bottom:160.047885px;}
.y26{bottom:161.319562px;}
.y10d{bottom:161.319600px;}
.y97{bottom:161.330145px;}
.y1dc{bottom:170.338590px;}
.y19a{bottom:171.187245px;}
.y65{bottom:179.263350px;}
.y96{bottom:179.272770px;}
.y179{bottom:179.357595px;}
.y13d{bottom:181.052430px;}
.y1db{bottom:183.775410px;}
.y199{bottom:184.708440px;}
.y31{bottom:186.490732px;}
.y222{bottom:192.790230px;}
.y64{bottom:197.291250px;}
.y1da{bottom:197.296605px;}
.y178{bottom:197.300235px;}
.y95{bottom:197.300670px;}
.y30{bottom:199.927552px;}
.y13c{bottom:202.056960px;}
.y10c{bottom:202.736385px;}
.y221{bottom:206.311425px;}
.y1d9{bottom:210.817800px;}
.y2f{bottom:213.448747px;}
.y63{bottom:215.319600px;}
.y177{bottom:215.328120px;}
.y94{bottom:215.328570px;}
.y2e{bottom:218.466112px;}
.y220{bottom:219.832620px;}
.y10b{bottom:220.679025px;}
.y13b{bottom:223.061505px;}
.y1d8{bottom:224.338995px;}
.y198{bottom:226.122510px;}
.y2d{bottom:226.969897px;}
.y21f{bottom:233.268315px;}
.y93{bottom:233.271210px;}
.y176{bottom:233.356020px;}
.y1d7{bottom:237.774690px;}
.y10a{bottom:238.706925px;}
.y197{bottom:239.643705px;}
.y13a{bottom:244.066035px;}
.y21e{bottom:246.789510px;}
.y1d6{bottom:251.295885px;}
.y175{bottom:251.298660px;}
.y92{bottom:251.299095px;}
.y196{bottom:253.079400px;}
.y109{bottom:256.734825px;}
.y62{bottom:260.308485px;}
.y21d{bottom:260.310705px;}
.y1d5{bottom:264.817080px;}
.y139{bottom:265.070580px;}
.y195{bottom:266.600595px;}
.y174{bottom:269.326560px;}
.y91{bottom:269.326995px;}
.y21c{bottom:273.831900px;}
.y108{bottom:274.677450px;}
.y61{bottom:278.336385px;}
.y1d4{bottom:278.338275px;}
.y194{bottom:280.121790px;}
.y138{bottom:285.989910px;}
.y21b{bottom:287.268720px;}
.y90{bottom:287.269635px;}
.y173{bottom:287.354445px;}
.y1d3{bottom:291.773970px;}
.y107{bottom:292.705350px;}
.y193{bottom:293.642985px;}
.y60{bottom:296.279025px;}
.y21a{bottom:300.789915px;}
.y1d2{bottom:305.295165px;}
.y172{bottom:305.297085px;}
.y8f{bottom:305.297535px;}
.y137{bottom:306.994455px;}
.y106{bottom:310.733850px;}
.y5f{bottom:314.306910px;}
.y219{bottom:314.311110px;}
.y1d1{bottom:318.816360px;}
.y171{bottom:323.324985px;}
.y8e{bottom:323.325420px;}
.y218{bottom:327.832305px;}
.y136{bottom:327.998985px;}
.y5e{bottom:332.334810px;}
.y1d0{bottom:332.337555px;}
.y192{bottom:334.971555px;}
.y25{bottom:337.179757px;}
.y170{bottom:341.267625px;}
.y217{bottom:341.268000px;}
.y8d{bottom:341.268060px;}
.y1cf{bottom:345.773250px;}
.y191{bottom:348.492750px;}
.y135{bottom:349.003530px;}
.y5d{bottom:350.277450px;}
.y105{bottom:352.068075px;}
.y216{bottom:354.789195px;}
.y1ce{bottom:359.294445px;}
.y16f{bottom:359.295525px;}
.y8c{bottom:359.295960px;}
.y190{bottom:362.013945px;}
.y24{bottom:362.692012px;}
.y5c{bottom:368.305350px;}
.y215{bottom:368.310390px;}
.y134{bottom:370.008060px;}
.y104{bottom:370.095975px;}
.y1cd{bottom:372.815640px;}
.y18f{bottom:375.535140px;}
.y16e{bottom:377.323410px;}
.y8b{bottom:377.323860px;}
.y23{bottom:380.635192px;}
.y214{bottom:381.831585px;}
.y5b{bottom:386.333685px;}
.y1cc{bottom:386.336835px;}
.y103{bottom:388.123875px;}
.y18e{bottom:388.970835px;}
.y133{bottom:391.012605px;}
.y149{bottom:395.266050px;}
.y8a{bottom:395.266485px;}
.y213{bottom:395.267280px;}
.y14c{bottom:395.280975px;}
.y22{bottom:398.663872px;}
.y1cb{bottom:399.772530px;}
.y18d{bottom:402.492030px;}
.y5a{bottom:404.277015px;}
.y102{bottom:406.066515px;}
.y212{bottom:408.788475px;}
.y132{bottom:412.017135px;}
.y1ca{bottom:413.293725px;}
.y148{bottom:413.293950px;}
.y89{bottom:413.294385px;}
.y14b{bottom:413.308875px;}
.y21{bottom:421.198597px;}
.y211{bottom:422.309670px;}
.y101{bottom:424.094400px;}
.y1c9{bottom:426.814920px;}
.y147{bottom:431.321850px;}
.y88{bottom:431.322285px;}
.y14a{bottom:431.336775px;}
.y131{bottom:433.021665px;}
.y210{bottom:435.830865px;}
.y20{bottom:439.141777px;}
.y1c8{bottom:440.336115px;}
.y100{bottom:442.122300px;}
.y18c{bottom:443.906100px;}
.y146{bottom:449.264475px;}
.y87{bottom:449.264925px;}
.y20f{bottom:449.266560px;}
.y59{bottom:449.279400px;}
.y1c7{bottom:453.772935px;}
.y130{bottom:454.026210px;}
.y1f{bottom:457.170457px;}
.y18b{bottom:457.427295px;}
.yff{bottom:460.064940px;}
.y20e{bottom:462.787755px;}
.y145{bottom:467.292375px;}
.y86{bottom:467.292810px;}
.y1c6{bottom:467.294130px;}
.y58{bottom:467.307300px;}
.y18a{bottom:470.862990px;}
.y12f{bottom:475.030740px;}
.y20d{bottom:476.308950px;}
.yfe{bottom:478.092840px;}
.y1e{bottom:479.706682px;}
.y1c5{bottom:480.815325px;}
.y188{bottom:482.513265px;}
.y187{bottom:484.384140px;}
.y189{bottom:484.384185px;}
.y144{bottom:485.320275px;}
.y85{bottom:485.320710px;}
.y155{bottom:485.326860px;}
.y164{bottom:485.332740px;}
.y57{bottom:485.335200px;}
.y20c{bottom:489.830145px;}
.y1c4{bottom:494.336520px;}
.y12e{bottom:496.035285px;}
.yfd{bottom:496.120725px;}
.y1d{bottom:497.649862px;}
.y186{bottom:497.905335px;}
.y16d{bottom:500.881800px;}
.y143{bottom:503.262915px;}
.y84{bottom:503.263350px;}
.y20b{bottom:503.265840px;}
.y16c{bottom:503.266935px;}
.y154{bottom:503.269500px;}
.y163{bottom:503.275380px;}
.y56{bottom:503.277840px;}
.y1c3{bottom:507.772215px;}
.y1b{bottom:513.212512px;}
.yfc{bottom:514.063365px;}
.y1a{bottom:515.678002px;}
.y1c{bottom:515.678542px;}
.y20a{bottom:516.787035px;}
.y12d{bottom:517.039815px;}
.y83{bottom:521.291250px;}
.y1c2{bottom:521.293410px;}
.y16b{bottom:521.294820px;}
.y153{bottom:521.297385px;}
.y162{bottom:521.303265px;}
.y55{bottom:521.305725px;}
.yfa{bottom:529.625100px;}
.y209{bottom:530.308230px;}
.yfb{bottom:532.091265px;}
.yf9{bottom:532.091700px;}
.y19{bottom:533.706682px;}
.y1c1{bottom:534.814605px;}
.y12c{bottom:538.044360px;}
.y82{bottom:539.319585px;}
.y185{bottom:539.320140px;}
.y16a{bottom:539.322720px;}
.y152{bottom:539.325285px;}
.y161{bottom:539.331165px;}
.y54{bottom:539.333625px;}
.y208{bottom:543.829425px;}
.yf7{bottom:547.653435px;}
.y1c0{bottom:548.335800px;}
.yf8{bottom:550.119600px;}
.yf6{bottom:550.124430px;}
.y18{bottom:551.649862px;}
.y183{bottom:554.881665px;}
.y184{bottom:557.262765px;}
.yd9{bottom:557.264925px;}
.y182{bottom:557.265015px;}
.y207{bottom:557.265120px;}
.y169{bottom:557.265360px;}
.y151{bottom:557.267925px;}
.y160{bottom:557.273805px;}
.y53{bottom:557.276265px;}
.yb7{bottom:557.276865px;}
.y12b{bottom:559.048890px;}
.y1bf{bottom:561.771495px;}
.y16{bottom:567.212377px;}
.yf5{bottom:568.067070px;}
.y15{bottom:569.678347px;}
.y17{bottom:569.678542px;}
.y206{bottom:570.786315px;}
.y1be{bottom:575.292690px;}
.yd8{bottom:575.292810px;}
.y181{bottom:575.292915px;}
.y168{bottom:575.293260px;}
.y150{bottom:575.295825px;}
.y81{bottom:575.297880px;}
.y15f{bottom:575.301705px;}
.y52{bottom:575.304165px;}
.yb6{bottom:575.304765px;}
.y12a{bottom:578.777850px;}
.y205{bottom:584.307510px;}
.yf4{bottom:586.094970px;}
.y14{bottom:587.707027px;}
.y1bd{bottom:588.813885px;}
.yd7{bottom:593.320710px;}
.y180{bottom:593.320815px;}
.y167{bottom:593.321145px;}
.y14f{bottom:593.323710px;}
.y80{bottom:593.325780px;}
.y15e{bottom:593.329590px;}
.y51{bottom:593.332050px;}
.yb5{bottom:593.332650px;}
.y204{bottom:597.828705px;}
.y129{bottom:598.507485px;}
.y1bc{bottom:602.335080px;}
.y12{bottom:603.184042px;}
.yf3{bottom:604.122855px;}
.y11{bottom:605.648617px;}
.y13{bottom:605.650207px;}
.yd6{bottom:611.263350px;}
.y17f{bottom:611.263440px;}
.y166{bottom:611.263785px;}
.y203{bottom:611.264400px;}
.y14e{bottom:611.266350px;}
.y7f{bottom:611.268420px;}
.y15d{bottom:611.272230px;}
.y50{bottom:611.274690px;}
.yb4{bottom:611.275290px;}
.y128{bottom:615.004485px;}
.y1bb{bottom:615.770775px;}
.yf2{bottom:622.065495px;}
.y202{bottom:624.785595px;}
.yd4{bottom:626.825085px;}
.y10{bottom:628.184857px;}
.yd5{bottom:629.291250px;}
.y17e{bottom:629.291340px;}
.yd3{bottom:629.291685px;}
.y1ba{bottom:629.291970px;}
.y14d{bottom:629.294250px;}
.y7e{bottom:629.296320px;}
.y15c{bottom:629.300130px;}
.y4f{bottom:629.302590px;}
.yb3{bottom:629.303190px;}
.y201{bottom:638.306790px;}
.yf1{bottom:640.093395px;}
.y1b9{bottom:642.813165px;}
.yd1{bottom:644.853465px;}
.yf{bottom:646.213537px;}
.y17d{bottom:647.319240px;}
.yd2{bottom:647.319585px;}
.y127{bottom:647.322150px;}
.yd0{bottom:647.323230px;}
.y7d{bottom:647.324205px;}
.y15b{bottom:647.328030px;}
.y4e{bottom:647.330490px;}
.yb2{bottom:647.331090px;}
.y200{bottom:651.827985px;}
.y1b8{bottom:656.334360px;}
.yf0{bottom:658.121295px;}
.ye{bottom:664.156702px;}
.y1ff{bottom:665.263680px;}
.y126{bottom:665.264775px;}
.ycf{bottom:665.265870px;}
.y7c{bottom:665.266845px;}
.y15a{bottom:665.270655px;}
.y4d{bottom:665.273130px;}
.yb1{bottom:665.273730px;}
.y1b7{bottom:669.770055px;}
.yef{bottom:676.063935px;}
.y1fe{bottom:678.784875px;}
.yd{bottom:682.185397px;}
.y1b6{bottom:683.291250px;}
.y125{bottom:683.292675px;}
.yce{bottom:683.293770px;}
.y159{bottom:683.298555px;}
.y4c{bottom:683.301015px;}
.yb0{bottom:683.301615px;}
.y1fd{bottom:692.306070px;}
.y19f{bottom:692.730600px;}
.yee{bottom:694.091820px;}
.y1b5{bottom:696.812400px;}
.yc{bottom:700.214077px;}
.y124{bottom:701.320575px;}
.ycd{bottom:701.321655px;}
.y7b{bottom:701.324115px;}
.y158{bottom:701.326455px;}
.y4b{bottom:701.328915px;}
.yaf{bottom:701.329515px;}
.y1fc{bottom:705.827265px;}
.yed{bottom:712.119720px;}
.yb{bottom:718.157242px;}
.y1fb{bottom:719.262960px;}
.y123{bottom:719.263215px;}
.ycc{bottom:719.264295px;}
.y7a{bottom:719.266755px;}
.y157{bottom:719.269095px;}
.y4a{bottom:719.271555px;}
.yae{bottom:719.272155px;}
.y1fa{bottom:732.784155px;}
.y122{bottom:737.291100px;}
.ycb{bottom:737.292195px;}
.y79{bottom:737.294640px;}
.y156{bottom:737.296980px;}
.y49{bottom:737.299455px;}
.yad{bottom:737.300055px;}
.y1b4{bottom:740.268300px;}
.ya{bottom:745.199827px;}
.y1f9{bottom:746.305350px;}
.yec{bottom:748.431285px;}
.y121{bottom:755.319450px;}
.yca{bottom:755.320095px;}
.y78{bottom:755.322540px;}
.y48{bottom:755.327340px;}
.yac{bottom:755.327940px;}
.y1f8{bottom:759.831840px;}
.y1b3{bottom:767.310690px;}
.yeb{bottom:767.310915px;}
.yc8{bottom:770.881620px;}
.yc9{bottom:773.262720px;}
.y77{bottom:773.265180px;}
.y1f7{bottom:773.268660px;}
.y47{bottom:773.269980px;}
.yab{bottom:773.270580px;}
.yc7{bottom:773.282355px;}
.y165{bottom:775.643835px;}
.y1b2{bottom:780.831885px;}
.yea{bottom:785.338815px;}
.y1f6{bottom:786.789855px;}
.y76{bottom:791.293080px;}
.y120{bottom:791.296065px;}
.y46{bottom:791.297880px;}
.yaa{bottom:791.298480px;}
.yc6{bottom:791.310255px;}
.y1b1{bottom:794.267580px;}
.y1af{bottom:794.267625px;}
.y1b0{bottom:799.284945px;}
.y1f5{bottom:800.311050px;}
.y8{bottom:802.941517px;}
.ye9{bottom:803.281455px;}
.y1ae{bottom:807.788820px;}
.y75{bottom:809.320965px;}
.y11f{bottom:809.323965px;}
.y45{bottom:809.325780px;}
.ya9{bottom:809.326380px;}
.yc5{bottom:809.338155px;}
.y9{bottom:810.254857px;}
.y1ad{bottom:812.806095px;}
.y1f4{bottom:813.832245px;}
.y1ac{bottom:821.311740px;}
.ye8{bottom:821.565120px;}
.y6{bottom:823.946212px;}
.y11e{bottom:827.266605px;}
.y44{bottom:827.268405px;}
.ya8{bottom:827.269005px;}
.y1f3{bottom:827.269065px;}
.yc4{bottom:827.280795px;}
.y7{bottom:831.259627px;}
.ye7{bottom:840.784065px;}
.y1f2{bottom:840.790260px;}
.y74{bottom:845.292975px;}
.y11d{bottom:845.294505px;}
.y43{bottom:845.296305px;}
.ya7{bottom:845.296905px;}
.yc3{bottom:845.308680px;}
.y1ab{bottom:848.268630px;}
.y1f1{bottom:854.311455px;}
.ye6{bottom:859.663920px;}
.y5{bottom:859.920727px;}
.y1aa{bottom:861.789825px;}
.y73{bottom:863.320875px;}
.y11c{bottom:863.322390px;}
.y42{bottom:863.324205px;}
.ya6{bottom:863.324805px;}
.yc2{bottom:863.336580px;}
.y1f0{bottom:867.832650px;}
.y1a9{bottom:875.311020px;}
.ye5{bottom:877.691820px;}
.y11b{bottom:881.265030px;}
.y41{bottom:881.266845px;}
.ya5{bottom:881.267445px;}
.y1ef{bottom:881.269470px;}
.yc1{bottom:881.279220px;}
.y1a8{bottom:888.832215px;}
.y1ee{bottom:894.790665px;}
.ye4{bottom:895.719705px;}
.y4{bottom:898.952092px;}
.y72{bottom:899.292870px;}
.y11a{bottom:899.292930px;}
.y40{bottom:899.294730px;}
.ya4{bottom:899.295330px;}
.yc0{bottom:899.307120px;}
.y1ed{bottom:908.311860px;}
.ye3{bottom:913.662345px;}
.y71{bottom:917.320770px;}
.y119{bottom:917.320830px;}
.y3f{bottom:917.322630px;}
.ya3{bottom:917.323230px;}
.ybf{bottom:917.335005px;}
.y1a7{bottom:918.765810px;}
.y1ec{bottom:921.833055px;}
.ye2{bottom:932.031285px;}
.y1a6{bottom:932.287005px;}
.y70{bottom:935.263410px;}
.y118{bottom:935.263470px;}
.y3e{bottom:935.265270px;}
.ya2{bottom:935.265870px;}
.y1eb{bottom:935.268750px;}
.ybe{bottom:935.277645px;}
.y3{bottom:937.900657px;}
.y1ea{bottom:948.789945px;}
.ye1{bottom:950.909865px;}
.y6f{bottom:953.291295px;}
.y117{bottom:953.291355px;}
.y3d{bottom:953.293170px;}
.ya1{bottom:953.293770px;}
.ybd{bottom:953.305545px;}
.y1a5{bottom:962.306115px;}
.y1e9{bottom:962.311140px;}
.ye0{bottom:969.193545px;}
.y6e{bottom:971.319195px;}
.y116{bottom:971.319255px;}
.y3c{bottom:971.321055px;}
.ya0{bottom:971.321655px;}
.ybc{bottom:971.333445px;}
.y1a4{bottom:975.827310px;}
.y1e8{bottom:975.832335px;}
.y2{bottom:976.932007px;}
.ydf{bottom:988.072830px;}
.y6d{bottom:989.261835px;}
.y115{bottom:989.261895px;}
.y1a3{bottom:989.263005px;}
.y3b{bottom:989.263695px;}
.y9f{bottom:989.264295px;}
.y1e7{bottom:989.268030px;}
.ybb{bottom:989.276070px;}
.y1a2{bottom:1002.784200px;}
.y1e6{bottom:1002.789225px;}
.yde{bottom:1006.100730px;}
.y6c{bottom:1007.289735px;}
.y114{bottom:1007.289795px;}
.y3a{bottom:1007.291595px;}
.y9e{bottom:1007.292195px;}
.yba{bottom:1007.303970px;}
.y1a1{bottom:1016.305395px;}
.y1e5{bottom:1016.310420px;}
.ydd{bottom:1024.128615px;}
.y6b{bottom:1025.317620px;}
.y113{bottom:1025.317680px;}
.y39{bottom:1025.319495px;}
.y9d{bottom:1025.320095px;}
.yb9{bottom:1025.331870px;}
.y1e4{bottom:1029.831615px;}
.y1{bottom:1033.908330px;}
.ydc{bottom:1042.412295px;}
.y6a{bottom:1043.260260px;}
.y112{bottom:1043.260320px;}
.y38{bottom:1043.262720px;}
.y1e3{bottom:1043.267310px;}
.yb8{bottom:1043.274510px;}
.y33{bottom:1094.711992px;}
.y35{bottom:1099.245997px;}
.y37{bottom:1112.825557px;}
.y32{bottom:1121.619742px;}
.ydb{bottom:1127.787480px;}
.y1a0{bottom:1127.789985px;}
.y142{bottom:1127.791365px;}
.y36{bottom:1127.791777px;}
.y9c{bottom:1127.791815px;}
.hb{height:21.626539px;}
.h13{height:28.376746px;}
.h8{height:28.837116px;}
.h9{height:30.281567px;}
.h5{height:31.721260px;}
.ha{height:32.444567px;}
.hf{height:34.607567px;}
.h14{height:38.934000px;}
.h11{height:39.799633px;}
.hd{height:41.244000px;}
.h10{height:42.570766px;}
.h12{height:42.629565px;}
.h7{height:43.260433px;}
.h6{height:43.939800px;}
.he{height:45.695429px;}
.h4{height:47.586433px;}
.h2{height:55.458000px;}
.hc{height:57.053241px;}
.h3{height:103.824433px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:196.780500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039365px;}
.x18{left:89.036280px;}
.x1{left:91.077150px;}
.xc{left:94.818930px;}
.x1d{left:97.030020px;}
.x38{left:107.574705px;}
.x2a{left:115.058250px;}
.x1e{left:118.969545px;}
.x11{left:132.746430px;}
.x12{left:138.103980px;}
.x2d{left:151.285050px;}
.x30{left:157.833000px;}
.x2e{left:162.340200px;}
.x31{left:167.782650px;}
.x13{left:171.184230px;}
.xf{left:173.395230px;}
.x14{left:176.626830px;}
.x10{left:178.837830px;}
.x1b{left:189.659730px;}
.x3{left:222.462900px;}
.x4{left:228.075615px;}
.x15{left:244.233045px;}
.x16{left:255.033030px;}
.x17{left:266.768430px;}
.xb{left:270.340080px;}
.x36{left:296.192100px;}
.x37{left:300.273900px;}
.x2b{left:345.174750px;}
.x2c{left:350.702250px;}
.xd{left:398.324415px;}
.xe{left:403.766865px;}
.x5{left:430.384200px;}
.x6{left:453.769995px;}
.x21{left:457.088145px;}
.x1f{left:469.075875px;}
.x34{left:471.287985px;}
.x35{left:475.284900px;}
.x39{left:479.618445px;}
.x2f{left:480.985515px;}
.x20{left:491.015400px;}
.x28{left:566.021850px;}
.x29{left:576.821865px;}
.x32{left:604.119600px;}
.x19{left:609.264615px;}
.x1a{left:611.008515px;}
.x33{left:615.429750px;}
.x7{left:620.447145px;}
.x8{left:626.059695px;}
.x1c{left:657.713265px;}
.x24{left:750.047100px;}
.x25{left:755.404635px;}
.x9{left:766.714815px;}
.x22{left:770.286435px;}
.x23{left:775.814115px;}
.xa{left:777.089565px;}
.x26{left:797.754180px;}
.x27{left:803.111565px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-0.700366pt;}
.ls2{letter-spacing:-0.145844pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.011982pt;}
.ls8{letter-spacing:0.026114pt;}
.ls16{letter-spacing:0.031343pt;}
.ls29{letter-spacing:0.036597pt;}
.ls32{letter-spacing:0.043995pt;}
.ls30{letter-spacing:0.051986pt;}
.ls31{letter-spacing:0.052042pt;}
.ls25{letter-spacing:0.104545pt;}
.ls23{letter-spacing:0.136533pt;}
.ls4{letter-spacing:0.172480pt;}
.lsa{letter-spacing:0.177655pt;}
.ls5{letter-spacing:0.177709pt;}
.lse{letter-spacing:0.219545pt;}
.ls1b{letter-spacing:0.491302pt;}
.ls12{letter-spacing:0.538341pt;}
.ls11{letter-spacing:0.554021pt;}
.ls13{letter-spacing:0.559248pt;}
.lsf{letter-spacing:0.564474pt;}
.ls10{letter-spacing:0.590607pt;}
.lsd{letter-spacing:1.034869pt;}
.lsc{letter-spacing:1.071456pt;}
.lsb{letter-spacing:1.108042pt;}
.ls1{letter-spacing:1.385513pt;}
.ls1f{letter-spacing:9.384000pt;}
.ls2f{letter-spacing:12.003802pt;}
.ls2d{letter-spacing:12.107822pt;}
.ls17{letter-spacing:12.531040pt;}
.ls18{letter-spacing:12.616364pt;}
.ls19{letter-spacing:12.676078pt;}
.ls20{letter-spacing:12.693144pt;}
.ls22{letter-spacing:12.710245pt;}
.ls1a{letter-spacing:12.787025pt;}
.ls2a{letter-spacing:15.517770pt;}
.ls9{letter-spacing:15.747767pt;}
.ls27{letter-spacing:15.758197pt;}
.ls2c{letter-spacing:15.820916pt;}
.ls1e{letter-spacing:15.983020pt;}
.ls15{letter-spacing:16.056196pt;}
.ls33{letter-spacing:16.458027pt;}
.ls7{letter-spacing:17.028276pt;}
.ls6{letter-spacing:17.634570pt;}
.ls24{letter-spacing:18.178144pt;}
.ls26{letter-spacing:19.082357pt;}
.ls28{letter-spacing:22.469183pt;}
.ls1c{letter-spacing:23.378641pt;}
.ls3{letter-spacing:27.915316pt;}
.ls14{letter-spacing:29.661050pt;}
.ls1d{letter-spacing:40.100800pt;}
.ls21{letter-spacing:921.908485pt;}
.wsab{word-spacing:-23.430908pt;}
.ws1ed{word-spacing:-16.512960pt;}
.ws31{word-spacing:-7.497716pt;}
.ws32{word-spacing:-1.591027pt;}
.ws33{word-spacing:-0.054933pt;}
.ws39{word-spacing:-0.052266pt;}
.ws2f{word-spacing:-0.042666pt;}
.ws2a{word-spacing:-0.039999pt;}
.ws28{word-spacing:-0.037333pt;}
.ws30{word-spacing:0.000000pt;}
.ws113{word-spacing:9.283200pt;}
.ws29{word-spacing:10.563860pt;}
.ws27{word-spacing:10.964644pt;}
.ws20{word-spacing:11.043042pt;}
.ws22{word-spacing:11.113975pt;}
.ws24{word-spacing:11.136374pt;}
.ws21{word-spacing:11.184858pt;}
.ws25{word-spacing:11.203574pt;}
.ws23{word-spacing:11.263306pt;}
.ws26{word-spacing:11.423837pt;}
.ws1e3{word-spacing:11.679844pt;}
.ws1e0{word-spacing:11.703844pt;}
.ws1b4{word-spacing:11.707844pt;}
.ws1d8{word-spacing:11.715843pt;}
.ws1e7{word-spacing:11.723844pt;}
.ws1e1{word-spacing:11.727844pt;}
.ws1c7{word-spacing:11.739843pt;}
.ws1eb{word-spacing:11.743844pt;}
.ws1c3{word-spacing:11.747844pt;}
.ws1e6{word-spacing:11.751843pt;}
.ws1cb{word-spacing:11.755843pt;}
.ws1e5{word-spacing:11.759843pt;}
.ws1ac{word-spacing:11.763844pt;}
.ws1d6{word-spacing:11.767843pt;}
.ws1de{word-spacing:11.775843pt;}
.ws1c6{word-spacing:11.779843pt;}
.ws1d7{word-spacing:11.787843pt;}
.ws1c4{word-spacing:11.791842pt;}
.ws1ce{word-spacing:11.795842pt;}
.ws1c9{word-spacing:11.799843pt;}
.ws1ec{word-spacing:11.803843pt;}
.ws1d0{word-spacing:11.807843pt;}
.ws1db{word-spacing:11.811842pt;}
.ws1c5{word-spacing:11.815842pt;}
.ws1df{word-spacing:11.823843pt;}
.ws1dd{word-spacing:11.827843pt;}
.ws1cf{word-spacing:11.831842pt;}
.ws1d9{word-spacing:11.835842pt;}
.ws1e2{word-spacing:11.839842pt;}
.ws1b6{word-spacing:11.843842pt;}
.ws1e4{word-spacing:11.847842pt;}
.ws1d5{word-spacing:11.851842pt;}
.ws1ea{word-spacing:11.855842pt;}
.ws2b{word-spacing:11.859842pt;}
.ws1b2{word-spacing:11.867842pt;}
.ws1ca{word-spacing:11.875841pt;}
.ws1b1{word-spacing:11.879842pt;}
.ws1b3{word-spacing:11.883842pt;}
.ws1ee{word-spacing:11.887842pt;}
.ws1be{word-spacing:11.899841pt;}
.ws1b8{word-spacing:11.903842pt;}
.ws1ba{word-spacing:11.911841pt;}
.ws1bb{word-spacing:11.915841pt;}
.ws1cc{word-spacing:11.919841pt;}
.ws1af{word-spacing:11.923841pt;}
.ws1e9{word-spacing:11.927841pt;}
.ws1ae{word-spacing:11.939841pt;}
.ws1b7{word-spacing:11.951840pt;}
.ws1bd{word-spacing:11.971840pt;}
.ws1d1{word-spacing:11.987841pt;}
.ws1b9{word-spacing:12.003840pt;}
.ws1b0{word-spacing:12.007840pt;}
.ws1cd{word-spacing:12.019840pt;}
.ws1d4{word-spacing:12.031839pt;}
.ws2c{word-spacing:12.043840pt;}
.ws1e8{word-spacing:12.059839pt;}
.ws1da{word-spacing:12.067839pt;}
.ws1c2{word-spacing:12.071839pt;}
.ws1d3{word-spacing:12.091838pt;}
.ws1c0{word-spacing:12.103839pt;}
.ws1c8{word-spacing:12.111838pt;}
.ws1c1{word-spacing:12.147838pt;}
.ws1d2{word-spacing:12.167838pt;}
.ws1b5{word-spacing:12.183838pt;}
.ws1ad{word-spacing:12.207838pt;}
.ws18a{word-spacing:12.266513pt;}
.ws121{word-spacing:12.270780pt;}
.ws1bf{word-spacing:12.279836pt;}
.ws1bc{word-spacing:12.339835pt;}
.ws119{word-spacing:12.351846pt;}
.ws11a{word-spacing:12.356113pt;}
.ws2e{word-spacing:12.381639pt;}
.ws16b{word-spacing:12.381692pt;}
.wsd5{word-spacing:12.381712pt;}
.ws115{word-spacing:12.385990pt;}
.ws120{word-spacing:12.394512pt;}
.ws114{word-spacing:12.415845pt;}
.wsd4{word-spacing:12.424378pt;}
.ws11d{word-spacing:12.432911pt;}
.ws11f{word-spacing:12.454200pt;}
.ws11b{word-spacing:12.475577pt;}
.ws117{word-spacing:12.479841pt;}
.ws169{word-spacing:12.496910pt;}
.ws11c{word-spacing:12.522510pt;}
.wsd1{word-spacing:12.543843pt;}
.ws118{word-spacing:12.552377pt;}
.wsd3{word-spacing:12.582242pt;}
.ws116{word-spacing:12.599309pt;}
.wsd2{word-spacing:12.612151pt;}
.wsd0{word-spacing:12.650509pt;}
.ws16a{word-spacing:12.654739pt;}
.ws2d{word-spacing:12.654792pt;}
.ws93{word-spacing:12.667575pt;}
.ws11e{word-spacing:12.855306pt;}
.wsae{word-spacing:13.186745pt;}
.ws132{word-spacing:13.338318pt;}
.ws12f{word-spacing:13.348770pt;}
.ws195{word-spacing:13.390584pt;}
.wsca{word-spacing:13.594422pt;}
.ws185{word-spacing:13.693727pt;}
.wscf{word-spacing:13.777353pt;}
.ws111{word-spacing:14.136000pt;}
.ws130{word-spacing:14.200709pt;}
.wscb{word-spacing:14.263427pt;}
.ws110{word-spacing:14.275200pt;}
.wsce{word-spacing:14.378414pt;}
.ws112{word-spacing:14.380800pt;}
.wscd{word-spacing:14.414999pt;}
.wsf3{word-spacing:14.592585pt;}
.ws79{word-spacing:14.734880pt;}
.ws190{word-spacing:14.786089pt;}
.ws5b{word-spacing:14.891895pt;}
.ws13b{word-spacing:14.921336pt;}
.ws18b{word-spacing:14.984701pt;}
.ws10a{word-spacing:14.990030pt;}
.ws17e{word-spacing:15.042193pt;}
.wsa2{word-spacing:15.063100pt;}
.wsf4{word-spacing:15.131046pt;}
.ws109{word-spacing:15.162406pt;}
.ws7f{word-spacing:15.167632pt;}
.ws193{word-spacing:15.303523pt;}
.ws192{word-spacing:15.308738pt;}
.ws71{word-spacing:15.423736pt;}
.ws10b{word-spacing:15.434189pt;}
.ws143{word-spacing:15.470775pt;}
.ws13a{word-spacing:15.502136pt;}
.wsdd{word-spacing:15.507362pt;}
.wsdc{word-spacing:15.512588pt;}
.wsd7{word-spacing:15.523042pt;}
.ws171{word-spacing:15.538721pt;}
.ws64{word-spacing:15.559628pt;}
.wsdb{word-spacing:15.570081pt;}
.wsd9{word-spacing:15.575308pt;}
.ws59{word-spacing:15.590987pt;}
.ws6a{word-spacing:15.601441pt;}
.ws3b{word-spacing:15.606668pt;}
.wsf2{word-spacing:15.611895pt;}
.ws6d{word-spacing:15.653707pt;}
.ws6e{word-spacing:15.658934pt;}
.ws8e{word-spacing:15.669386pt;}
.ws6c{word-spacing:15.674613pt;}
.wsd6{word-spacing:15.685067pt;}
.ws66{word-spacing:15.690294pt;}
.ws68{word-spacing:15.695519pt;}
.ws4a{word-spacing:15.700746pt;}
.ws11{word-spacing:15.712158pt;}
.wsd8{word-spacing:15.721652pt;}
.ws73{word-spacing:15.726879pt;}
.ws13{word-spacing:15.728157pt;}
.wsc0{word-spacing:15.732106pt;}
.ws12a{word-spacing:15.737333pt;}
.ws67{word-spacing:15.747785pt;}
.ws65{word-spacing:15.753012pt;}
.ws41{word-spacing:15.763466pt;}
.ws6b{word-spacing:15.768693pt;}
.ws62{word-spacing:15.773919pt;}
.ws72{word-spacing:15.784372pt;}
.wsf9{word-spacing:15.805278pt;}
.ws1a0{word-spacing:15.810505pt;}
.wse{word-spacing:15.813491pt;}
.ws144{word-spacing:15.815732pt;}
.ws9{word-spacing:15.824159pt;}
.wse5{word-spacing:15.836638pt;}
.wsb3{word-spacing:15.841866pt;}
.wsf{word-spacing:15.845488pt;}
.wsd{word-spacing:15.845492pt;}
.wsda{word-spacing:15.862771pt;}
.ws1ab{word-spacing:15.867999pt;}
.ws124{word-spacing:15.873243pt;}
.wsa0{word-spacing:15.883677pt;}
.ws9a{word-spacing:15.894132pt;}
.ws18{word-spacing:15.898826pt;}
.ws55{word-spacing:15.899358pt;}
.wsa{word-spacing:15.909492pt;}
.ws82{word-spacing:15.915038pt;}
.ws69{word-spacing:15.925491pt;}
.ws16{word-spacing:15.930827pt;}
.ws15{word-spacing:15.936159pt;}
.ws78{word-spacing:15.956850pt;}
.ws1a{word-spacing:15.978827pt;}
.ws125{word-spacing:15.982987pt;}
.ws17{word-spacing:15.984160pt;}
.wsc{word-spacing:15.994826pt;}
.wsb8{word-spacing:15.998664pt;}
.wsb{word-spacing:16.005494pt;}
.ws6f{word-spacing:16.035249pt;}
.ws1b{word-spacing:16.037494pt;}
.wsf8{word-spacing:16.040462pt;}
.ws170{word-spacing:16.066609pt;}
.ws1d{word-spacing:16.117495pt;}
.ws49{word-spacing:16.118902pt;}
.ws103{word-spacing:16.124075pt;}
.ws14{word-spacing:16.128161pt;}
.ws16d{word-spacing:16.134556pt;}
.wsf0{word-spacing:16.139781pt;}
.wsfa{word-spacing:16.145008pt;}
.ws18e{word-spacing:16.171141pt;}
.ws9f{word-spacing:16.176368pt;}
.ws77{word-spacing:16.192048pt;}
.wsec{word-spacing:16.212955pt;}
.ws16f{word-spacing:16.218181pt;}
.ws12{word-spacing:16.224163pt;}
.ws18d{word-spacing:16.228634pt;}
.ws10{word-spacing:16.234828pt;}
.ws19{word-spacing:16.282833pt;}
.ws152{word-spacing:16.291354pt;}
.ws1c{word-spacing:16.368159pt;}
.ws148{word-spacing:16.380206pt;}
.ws1e{word-spacing:16.384131pt;}
.ws5a{word-spacing:16.403094pt;}
.ws9d{word-spacing:16.463832pt;}
.ws17f{word-spacing:16.469059pt;}
.ws60{word-spacing:16.495192pt;}
.ws12c{word-spacing:16.505644pt;}
.ws8{word-spacing:16.533476pt;}
.ws1f{word-spacing:16.549498pt;}
.ws50{word-spacing:16.735616pt;}
.ws98{word-spacing:16.746069pt;}
.ws95{word-spacing:16.751296pt;}
.ws46{word-spacing:16.798335pt;}
.wsad{word-spacing:16.814016pt;}
.ws180{word-spacing:16.850601pt;}
.ws14f{word-spacing:16.897640pt;}
.wsc6{word-spacing:16.944681pt;}
.ws47{word-spacing:16.965587pt;}
.ws4e{word-spacing:16.976040pt;}
.ws3d{word-spacing:17.017854pt;}
.ws19c{word-spacing:17.038759pt;}
.ws136{word-spacing:17.049213pt;}
.ws4f{word-spacing:17.070120pt;}
.wsfc{word-spacing:17.085798pt;}
.ws18c{word-spacing:17.101479pt;}
.wsf7{word-spacing:17.179879pt;}
.ws10f{word-spacing:17.190331pt;}
.ws107{word-spacing:17.263503pt;}
.wse1{word-spacing:17.284411pt;}
.wsc5{word-spacing:17.320996pt;}
.ws184{word-spacing:17.326223pt;}
.wsb4{word-spacing:17.352356pt;}
.ws91{word-spacing:17.373262pt;}
.ws1a4{word-spacing:17.425528pt;}
.ws43{word-spacing:17.493475pt;}
.ws19d{word-spacing:17.503928pt;}
.ws4d{word-spacing:17.524834pt;}
.ws44{word-spacing:17.550967pt;}
.ws6{word-spacing:17.576694pt;}
.ws177{word-spacing:17.577100pt;}
.ws4c{word-spacing:17.587554pt;}
.ws128{word-spacing:17.650274pt;}
.ws7{word-spacing:17.676427pt;}
.ws88{word-spacing:17.707765pt;}
.ws4{word-spacing:17.740961pt;}
.ws5{word-spacing:17.746828pt;}
.ws127{word-spacing:17.754806pt;}
.ws126{word-spacing:17.791391pt;}
.wsb0{word-spacing:17.848885pt;}
.ws189{word-spacing:17.854112pt;}
.ws106{word-spacing:17.885471pt;}
.ws42{word-spacing:17.922057pt;}
.ws5c{word-spacing:17.932511pt;}
.ws10e{word-spacing:17.963871pt;}
.wse0{word-spacing:18.104988pt;}
.ws10c{word-spacing:18.110215pt;}
.ws3f{word-spacing:18.178161pt;}
.ws76{word-spacing:18.308826pt;}
.ws83{word-spacing:18.334959pt;}
.wsba{word-spacing:18.382000pt;}
.ws13e{word-spacing:18.397679pt;}
.ws13f{word-spacing:18.402906pt;}
.wseb{word-spacing:18.444718pt;}
.wse9{word-spacing:18.528344pt;}
.ws80{word-spacing:18.632877pt;}
.wsea{word-spacing:18.758315pt;}
.ws176{word-spacing:18.789675pt;}
.wsf6{word-spacing:18.815808pt;}
.ws94{word-spacing:18.899434pt;}
.ws3e{word-spacing:18.941246pt;}
.ws96{word-spacing:19.061459pt;}
.wsff{word-spacing:19.098045pt;}
.ws140{word-spacing:19.134632pt;}
.ws147{word-spacing:19.160765pt;}
.wsee{word-spacing:19.218258pt;}
.ws19a{word-spacing:19.322790pt;}
.ws105{word-spacing:19.364602pt;}
.ws19e{word-spacing:19.401189pt;}
.ws97{word-spacing:19.432548pt;}
.ws19f{word-spacing:19.443002pt;}
.ws1a8{word-spacing:19.469135pt;}
.ws138{word-spacing:19.557988pt;}
.wsac{word-spacing:19.584121pt;}
.ws149{word-spacing:19.589346pt;}
.ws14d{word-spacing:19.610254pt;}
.ws70{word-spacing:19.662520pt;}
.ws129{word-spacing:19.667745pt;}
.ws15e{word-spacing:19.704332pt;}
.ws45{word-spacing:19.735692pt;}
.ws85{word-spacing:19.740919pt;}
.ws7c{word-spacing:19.751372pt;}
.ws84{word-spacing:19.756598pt;}
.ws1a5{word-spacing:19.834998pt;}
.ws181{word-spacing:19.960427pt;}
.ws13d{word-spacing:19.965663pt;}
.wsf5{word-spacing:19.997023pt;}
.ws17d{word-spacing:20.007475pt;}
.ws17c{word-spacing:20.023156pt;}
.ws157{word-spacing:20.122461pt;}
.ws35{word-spacing:20.148594pt;}
.ws182{word-spacing:20.190385pt;}
.ws142{word-spacing:20.216540pt;}
.ws178{word-spacing:20.232221pt;}
.ws162{word-spacing:20.247900pt;}
.ws5d{word-spacing:20.425604pt;}
.ws1aa{word-spacing:20.524911pt;}
.wsbb{word-spacing:20.561496pt;}
.ws174{word-spacing:20.660802pt;}
.ws18f{word-spacing:20.676483pt;}
.ws175{word-spacing:20.681709pt;}
.wse2{word-spacing:20.718295pt;}
.wsb9{word-spacing:20.728749pt;}
.ws168{word-spacing:20.744428pt;}
.ws1a9{word-spacing:20.749655pt;}
.ws48{word-spacing:20.838508pt;}
.ws183{word-spacing:20.869867pt;}
.ws139{word-spacing:20.911680pt;}
.ws3c{word-spacing:20.948266pt;}
.ws134{word-spacing:20.979625pt;}
.ws0{word-spacing:21.021867pt;}
.ws5f{word-spacing:21.047572pt;}
.wsde{word-spacing:21.178238pt;}
.ws74{word-spacing:21.335036pt;}
.ws153{word-spacing:21.450021pt;}
.ws154{word-spacing:21.502287pt;}
.ws15d{word-spacing:21.512741pt;}
.ws15c{word-spacing:21.549326pt;}
.ws53{word-spacing:21.554553pt;}
.ws36{word-spacing:21.612046pt;}
.ws15b{word-spacing:21.638179pt;}
.ws196{word-spacing:21.659085pt;}
.ws145{word-spacing:21.779298pt;}
.wsf1{word-spacing:21.821111pt;}
.ws5e{word-spacing:21.847244pt;}
.wsed{word-spacing:21.883831pt;}
.wsfd{word-spacing:22.066762pt;}
.ws17a{word-spacing:22.082441pt;}
.ws14b{word-spacing:22.119028pt;}
.ws108{word-spacing:22.124254pt;}
.ws158{word-spacing:22.134707pt;}
.ws172{word-spacing:22.155613pt;}
.ws8b{word-spacing:22.213107pt;}
.ws75{word-spacing:22.234013pt;}
.ws186{word-spacing:22.239240pt;}
.ws12b{word-spacing:22.260146pt;}
.wsc8{word-spacing:22.265373pt;}
.ws198{word-spacing:22.275827pt;}
.ws14a{word-spacing:22.296733pt;}
.ws15f{word-spacing:22.458758pt;}
.wsc9{word-spacing:22.495343pt;}
.ws1a3{word-spacing:22.505798pt;}
.ws161{word-spacing:22.521476pt;}
.ws58{word-spacing:22.542383pt;}
.wsaa{word-spacing:22.610330pt;}
.ws160{word-spacing:22.646915pt;}
.wsa3{word-spacing:22.646916pt;}
.ws89{word-spacing:22.725314pt;}
.ws146{word-spacing:22.761901pt;}
.ws15a{word-spacing:22.882113pt;}
.ws1a2{word-spacing:22.929153pt;}
.ws10d{word-spacing:22.934379pt;}
.ws14e{word-spacing:22.997099pt;}
.ws104{word-spacing:23.038911pt;}
.ws194{word-spacing:23.148670pt;}
.ws179{word-spacing:23.211390pt;}
.ws81{word-spacing:23.232296pt;}
.ws122{word-spacing:23.274109pt;}
.ws173{word-spacing:23.284562pt;}
.ws135{word-spacing:23.357734pt;}
.ws191{word-spacing:23.383868pt;}
.ws86{word-spacing:23.399548pt;}
.ws187{word-spacing:23.425681pt;}
.ws123{word-spacing:23.504081pt;}
.ws7d{word-spacing:23.629519pt;}
.ws8c{word-spacing:23.728825pt;}
.wse3{word-spacing:23.812451pt;}
.wsa1{word-spacing:23.838584pt;}
.wsfe{word-spacing:23.875169pt;}
.ws56{word-spacing:24.058101pt;}
.ws12d{word-spacing:24.141711pt;}
.ws12e{word-spacing:24.183540pt;}
.ws87{word-spacing:24.293298pt;}
.ws54{word-spacing:24.345564pt;}
.wsdf{word-spacing:24.356018pt;}
.ws101{word-spacing:24.455323pt;}
.ws17b{word-spacing:24.497137pt;}
.ws57{word-spacing:24.596443pt;}
.ws63{word-spacing:24.732335pt;}
.ws155{word-spacing:24.758468pt;}
.ws156{word-spacing:24.810734pt;}
.ws90{word-spacing:24.878679pt;}
.wse4{word-spacing:24.910040pt;}
.ws51{word-spacing:24.988439pt;}
.wsb1{word-spacing:25.218409pt;}
.ws8a{word-spacing:25.291581pt;}
.ws163{word-spacing:25.354302pt;}
.wsc1{word-spacing:25.516327pt;}
.wsc2{word-spacing:25.542460pt;}
.wsb2{word-spacing:25.568593pt;}
.ws16c{word-spacing:25.631311pt;}
.ws13c{word-spacing:25.646992pt;}
.ws9c{word-spacing:25.673125pt;}
.ws92{word-spacing:25.782883pt;}
.ws37{word-spacing:25.871736pt;}
.ws199{word-spacing:25.934456pt;}
.ws61{word-spacing:25.971041pt;}
.ws16e{word-spacing:26.044214pt;}
.ws19b{word-spacing:26.054667pt;}
.ws159{word-spacing:26.117387pt;}
.ws141{word-spacing:26.321225pt;}
.ws1a1{word-spacing:26.420530pt;}
.ws7e{word-spacing:26.922284pt;}
.wsef{word-spacing:27.094765pt;}
.ws9b{word-spacing:27.157482pt;}
.wsbd{word-spacing:27.256789pt;}
.wsc4{word-spacing:27.371775pt;}
.ws8f{word-spacing:27.382228pt;}
.ws8d{word-spacing:27.518119pt;}
.ws7a{word-spacing:27.586065pt;}
.ws1a6{word-spacing:27.601744pt;}
.wsbe{word-spacing:27.633105pt;}
.ws166{word-spacing:27.659238pt;}
.wsbc{word-spacing:27.664464pt;}
.ws165{word-spacing:27.805583pt;}
.ws164{word-spacing:27.972835pt;}
.ws38{word-spacing:28.009422pt;}
.ws150{word-spacing:28.286432pt;}
.ws197{word-spacing:28.385736pt;}
.wsb6{word-spacing:28.432777pt;}
.ws167{word-spacing:28.537309pt;}
.ws99{word-spacing:28.762053pt;}
.wsb7{word-spacing:29.148823pt;}
.ws151{word-spacing:29.190635pt;}
.ws40{word-spacing:29.446741pt;}
.wsa4{word-spacing:29.671484pt;}
.wsa8{word-spacing:29.776016pt;}
.wsfb{word-spacing:30.424115pt;}
.ws14c{word-spacing:30.591367pt;}
.ws131{word-spacing:30.763845pt;}
.ws3a{word-spacing:30.805660pt;}
.wsa6{word-spacing:30.957232pt;}
.wsa7{word-spacing:31.317867pt;}
.ws34{word-spacing:31.631464pt;}
.ws102{word-spacing:31.762130pt;}
.wsaf{word-spacing:31.908474pt;}
.ws4b{word-spacing:32.655880pt;}
.ws137{word-spacing:32.995609pt;}
.ws188{word-spacing:33.141954pt;}
.wscc{word-spacing:33.366701pt;}
.wsa9{word-spacing:34.871965pt;}
.ws133{word-spacing:34.887644pt;}
.wse6{word-spacing:35.133295pt;}
.wsbf{word-spacing:35.577557pt;}
.wsc3{word-spacing:35.912059pt;}
.ws52{word-spacing:36.168164pt;}
.wsc7{word-spacing:36.377229pt;}
.ws100{word-spacing:36.727412pt;}
.ws1a7{word-spacing:37.234394pt;}
.wse7{word-spacing:37.495725pt;}
.wse8{word-spacing:37.542763pt;}
.ws3{word-spacing:38.028960pt;}
.ws2{word-spacing:38.182558pt;}
.ws1{word-spacing:38.348961pt;}
.ws1dc{word-spacing:39.343475pt;}
.ws9e{word-spacing:41.896531pt;}
.wsa5{word-spacing:43.506329pt;}
.ws7b{word-spacing:45.069086pt;}
.wsb5{word-spacing:46.647524pt;}
._1c{margin-left:-24.621365pt;}
._1b{margin-left:-23.669323pt;}
._32{margin-left:-15.914187pt;}
._a{margin-left:-2.446204pt;}
._9{margin-left:-1.398778pt;}
._4{width:1.349348pt;}
._c{width:2.552273pt;}
._b{width:4.368696pt;}
._0{width:7.959467pt;}
._7{width:10.367320pt;}
._6{width:12.047291pt;}
._8{width:13.039827pt;}
._20{width:14.650347pt;}
._5{width:15.632158pt;}
._3{width:16.869501pt;}
._14{width:17.840451pt;}
._13{width:19.312337pt;}
._12{width:20.435182pt;}
._1d{width:21.591141pt;}
._e{width:22.725314pt;}
._16{width:23.660001pt;}
._15{width:25.406568pt;}
._f{width:27.130467pt;}
._10{width:28.971115pt;}
._19{width:30.042579pt;}
._11{width:31.934607pt;}
._d{width:33.136729pt;}
._21{width:34.323320pt;}
._1e{width:36.569731pt;}
._1f{width:37.631616pt;}
._2{width:39.436959pt;}
._17{width:41.055048pt;}
._1a{width:43.186628pt;}
._31{width:58.543219pt;}
._2e{width:486.496317pt;}
._2d{width:573.556540pt;}
._22{width:584.227354pt;}
._2f{width:644.241564pt;}
._30{width:684.932230pt;}
._2c{width:695.816361pt;}
._24{width:722.235239pt;}
._23{width:730.691682pt;}
._26{width:745.048821pt;}
._29{width:748.500511pt;}
._28{width:765.703496pt;}
._2b{width:856.236797pt;}
._27{width:861.373733pt;}
._2a{width:876.797557pt;}
._25{width:878.401853pt;}
._18{width:940.105986pt;}
._1{width:1756.629387pt;}
.fs9{font-size:26.662400pt;}
.fse{font-size:34.839467pt;}
.fs6{font-size:35.552000pt;}
.fs7{font-size:37.332800pt;}
.fs3{font-size:39.107733pt;}
.fs8{font-size:39.999467pt;}
.fsb{font-size:42.666133pt;}
.fsf{font-size:48.000000pt;}
.fsd{font-size:49.067200pt;}
.fsc{font-size:52.266133pt;}
.fs5{font-size:53.333867pt;}
.fs4{font-size:54.933333pt;}
.fs2{font-size:58.667200pt;}
.fsa{font-size:66.292800pt;}
.fs0{font-size:69.333333pt;}
.fs1{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:23.918000pt;}
.y2c{bottom:79.368486pt;}
.y17c{bottom:79.370987pt;}
.y69{bottom:79.371480pt;}
.y111{bottom:79.371533pt;}
.y19e{bottom:79.372413pt;}
.y1e2{bottom:79.374040pt;}
.y9b{bottom:79.381173pt;}
.y141{bottom:86.252693pt;}
.yda{bottom:87.684933pt;}
.y2b{bottom:90.026993pt;}
.y19d{bottom:91.391253pt;}
.y1e1{bottom:91.392880pt;}
.y17b{bottom:95.395787pt;}
.y68{bottom:95.396280pt;}
.y110{bottom:95.396333pt;}
.y9a{bottom:95.405960pt;}
.y2a{bottom:100.685513pt;}
.y19c{bottom:103.410093pt;}
.y1e0{bottom:103.411720pt;}
.y140{bottom:104.923387pt;}
.y29{bottom:111.344033pt;}
.y17a{bottom:111.344800pt;}
.y67{bottom:111.345293pt;}
.y10f{bottom:111.345347pt;}
.y99{bottom:111.354973pt;}
.y224{bottom:115.351293pt;}
.y1df{bottom:115.355560pt;}
.y28{bottom:122.078139pt;}
.y13f{bottom:123.594093pt;}
.y66{bottom:127.370080pt;}
.y10e{bottom:127.370133pt;}
.y1de{bottom:127.374400pt;}
.y98{bottom:127.379773pt;}
.y27{bottom:132.736659pt;}
.y223{bottom:139.388933pt;}
.y1dd{bottom:139.393240pt;}
.y19b{bottom:140.147600pt;}
.y13e{bottom:142.264787pt;}
.y26{bottom:143.395166pt;}
.y10d{bottom:143.395200pt;}
.y97{bottom:143.404573pt;}
.y1dc{bottom:151.412080pt;}
.y19a{bottom:152.166440pt;}
.y65{bottom:159.345200pt;}
.y96{bottom:159.353573pt;}
.y179{bottom:159.428973pt;}
.y13d{bottom:160.935493pt;}
.y1db{bottom:163.355920pt;}
.y199{bottom:164.185280pt;}
.y31{bottom:165.769539pt;}
.y222{bottom:171.369093pt;}
.y64{bottom:175.370000pt;}
.y1da{bottom:175.374760pt;}
.y178{bottom:175.377987pt;}
.y95{bottom:175.378373pt;}
.y30{bottom:177.713379pt;}
.y13c{bottom:179.606187pt;}
.y10c{bottom:180.210120pt;}
.y221{bottom:183.387933pt;}
.y1d9{bottom:187.393600pt;}
.y2f{bottom:189.732219pt;}
.y63{bottom:191.395200pt;}
.y177{bottom:191.402773pt;}
.y94{bottom:191.403173pt;}
.y2e{bottom:194.192099pt;}
.y220{bottom:195.406773pt;}
.y10b{bottom:196.159133pt;}
.y13b{bottom:198.276893pt;}
.y1d8{bottom:199.412440pt;}
.y198{bottom:200.997787pt;}
.y2d{bottom:201.751019pt;}
.y21f{bottom:207.349613pt;}
.y93{bottom:207.352187pt;}
.y176{bottom:207.427573pt;}
.y1d7{bottom:211.355280pt;}
.y10a{bottom:212.183933pt;}
.y197{bottom:213.016627pt;}
.y13a{bottom:216.947587pt;}
.y21e{bottom:219.368453pt;}
.y1d6{bottom:223.374120pt;}
.y175{bottom:223.376587pt;}
.y92{bottom:223.376973pt;}
.y196{bottom:224.959467pt;}
.y109{bottom:228.208733pt;}
.y62{bottom:231.385320pt;}
.y21d{bottom:231.387293pt;}
.y1d5{bottom:235.392960pt;}
.y139{bottom:235.618293pt;}
.y195{bottom:236.978307pt;}
.y174{bottom:239.401387pt;}
.y91{bottom:239.401773pt;}
.y21c{bottom:243.406133pt;}
.y108{bottom:244.157733pt;}
.y61{bottom:247.410120pt;}
.y1d4{bottom:247.411800pt;}
.y194{bottom:248.997147pt;}
.y138{bottom:254.213253pt;}
.y21b{bottom:255.349973pt;}
.y90{bottom:255.350787pt;}
.y173{bottom:255.426173pt;}
.y1d3{bottom:259.354640pt;}
.y107{bottom:260.182533pt;}
.y193{bottom:261.015987pt;}
.y60{bottom:263.359133pt;}
.y21a{bottom:267.368813pt;}
.y1d2{bottom:271.373480pt;}
.y172{bottom:271.375187pt;}
.y8f{bottom:271.375587pt;}
.y137{bottom:272.883960pt;}
.y106{bottom:276.207867pt;}
.y5f{bottom:279.383920pt;}
.y219{bottom:279.387653pt;}
.y1d1{bottom:283.392320pt;}
.y171{bottom:287.399987pt;}
.y8e{bottom:287.400373pt;}
.y218{bottom:291.406493pt;}
.y136{bottom:291.554653pt;}
.y5e{bottom:295.408720pt;}
.y1d0{bottom:295.411160pt;}
.y192{bottom:297.752493pt;}
.y25{bottom:299.715339pt;}
.y170{bottom:303.349000pt;}
.y217{bottom:303.349333pt;}
.y8d{bottom:303.349387pt;}
.y1cf{bottom:307.354000pt;}
.y191{bottom:309.771333pt;}
.y135{bottom:310.225360pt;}
.y5d{bottom:311.357733pt;}
.y105{bottom:312.949400pt;}
.y216{bottom:315.368173pt;}
.y1ce{bottom:319.372840pt;}
.y16f{bottom:319.373800pt;}
.y8c{bottom:319.374187pt;}
.y190{bottom:321.790173pt;}
.y24{bottom:322.392899pt;}
.y5c{bottom:327.382533pt;}
.y215{bottom:327.387013pt;}
.y134{bottom:328.896053pt;}
.y104{bottom:328.974200pt;}
.y1cd{bottom:331.391680pt;}
.y18f{bottom:333.809013pt;}
.y16e{bottom:335.398587pt;}
.y8b{bottom:335.398987pt;}
.y23{bottom:338.342393pt;}
.y214{bottom:339.405853pt;}
.y5b{bottom:343.407720pt;}
.y1cc{bottom:343.410520pt;}
.y103{bottom:344.999000pt;}
.y18e{bottom:345.751853pt;}
.y133{bottom:347.566760pt;}
.y149{bottom:351.347600pt;}
.y8a{bottom:351.347987pt;}
.y213{bottom:351.348693pt;}
.y14c{bottom:351.360867pt;}
.y22{bottom:354.367886pt;}
.y1cb{bottom:355.353360pt;}
.y18d{bottom:357.770693pt;}
.y5a{bottom:359.357347pt;}
.y102{bottom:360.948013pt;}
.y212{bottom:363.367533pt;}
.y132{bottom:366.237453pt;}
.y1ca{bottom:367.372200pt;}
.y148{bottom:367.372400pt;}
.y89{bottom:367.372787pt;}
.y14b{bottom:367.385667pt;}
.y21{bottom:374.398753pt;}
.y211{bottom:375.386373pt;}
.y101{bottom:376.972800pt;}
.y1c9{bottom:379.391040pt;}
.y147{bottom:383.397200pt;}
.y88{bottom:383.397587pt;}
.y14a{bottom:383.410467pt;}
.y131{bottom:384.908147pt;}
.y210{bottom:387.405213pt;}
.y20{bottom:390.348246pt;}
.y1c8{bottom:391.409880pt;}
.y100{bottom:392.997600pt;}
.y18c{bottom:394.583200pt;}
.y146{bottom:399.346200pt;}
.y87{bottom:399.346600pt;}
.y20f{bottom:399.348053pt;}
.y59{bottom:399.359467pt;}
.y1c7{bottom:403.353720pt;}
.y130{bottom:403.578853pt;}
.y1f{bottom:406.373739pt;}
.y18b{bottom:406.602040pt;}
.yff{bottom:408.946613pt;}
.y20e{bottom:411.366893pt;}
.y145{bottom:415.371000pt;}
.y86{bottom:415.371387pt;}
.y1c6{bottom:415.372560pt;}
.y58{bottom:415.384267pt;}
.y18a{bottom:418.544880pt;}
.y12f{bottom:422.249547pt;}
.y20d{bottom:423.385733pt;}
.yfe{bottom:424.971413pt;}
.y1e{bottom:426.405939pt;}
.y1c5{bottom:427.391400pt;}
.y188{bottom:428.900680pt;}
.y187{bottom:430.563680pt;}
.y189{bottom:430.563720pt;}
.y144{bottom:431.395800pt;}
.y85{bottom:431.396187pt;}
.y155{bottom:431.401653pt;}
.y164{bottom:431.406880pt;}
.y57{bottom:431.409067pt;}
.y20c{bottom:435.404573pt;}
.y1c4{bottom:439.410240pt;}
.y12e{bottom:440.920253pt;}
.yfd{bottom:440.996200pt;}
.y1d{bottom:442.355433pt;}
.y186{bottom:442.582520pt;}
.y16d{bottom:445.228267pt;}
.y143{bottom:447.344813pt;}
.y84{bottom:447.345200pt;}
.y20b{bottom:447.347413pt;}
.y16c{bottom:447.348387pt;}
.y154{bottom:447.350667pt;}
.y163{bottom:447.355893pt;}
.y56{bottom:447.358080pt;}
.y1c3{bottom:451.353080pt;}
.y1b{bottom:456.188899pt;}
.yfc{bottom:456.945213pt;}
.y1a{bottom:458.380446pt;}
.y1c{bottom:458.380926pt;}
.y20a{bottom:459.366253pt;}
.y12d{bottom:459.590947pt;}
.y83{bottom:463.370000pt;}
.y1c2{bottom:463.371920pt;}
.y16b{bottom:463.373173pt;}
.y153{bottom:463.375453pt;}
.y162{bottom:463.380680pt;}
.y55{bottom:463.382867pt;}
.yfa{bottom:470.777867pt;}
.y209{bottom:471.385093pt;}
.yfb{bottom:472.970013pt;}
.yf9{bottom:472.970400pt;}
.y19{bottom:474.405939pt;}
.y1c1{bottom:475.390760pt;}
.y12c{bottom:478.261653pt;}
.y82{bottom:479.395187pt;}
.y185{bottom:479.395680pt;}
.y16a{bottom:479.397973pt;}
.y152{bottom:479.400253pt;}
.y161{bottom:479.405480pt;}
.y54{bottom:479.407667pt;}
.y208{bottom:483.403933pt;}
.yf7{bottom:486.803053pt;}
.y1c0{bottom:487.409600pt;}
.yf8{bottom:488.995200pt;}
.yf6{bottom:488.999493pt;}
.y18{bottom:490.355433pt;}
.y183{bottom:493.228147pt;}
.y184{bottom:495.344680pt;}
.yd9{bottom:495.346600pt;}
.y182{bottom:495.346680pt;}
.y207{bottom:495.346773pt;}
.y169{bottom:495.346987pt;}
.y151{bottom:495.349267pt;}
.y160{bottom:495.354493pt;}
.y53{bottom:495.356680pt;}
.yb7{bottom:495.357213pt;}
.y12b{bottom:496.932347pt;}
.y1bf{bottom:499.352440pt;}
.y16{bottom:504.188779pt;}
.yf5{bottom:504.948507pt;}
.y15{bottom:506.380753pt;}
.y17{bottom:506.380926pt;}
.y206{bottom:507.365613pt;}
.y1be{bottom:511.371280pt;}
.yd8{bottom:511.371387pt;}
.y181{bottom:511.371480pt;}
.y168{bottom:511.371787pt;}
.y150{bottom:511.374067pt;}
.y81{bottom:511.375893pt;}
.y15f{bottom:511.379293pt;}
.y52{bottom:511.381480pt;}
.yb6{bottom:511.382013pt;}
.y12a{bottom:514.469200pt;}
.y205{bottom:519.384453pt;}
.yf4{bottom:520.973307pt;}
.y14{bottom:522.406246pt;}
.y1bd{bottom:523.390120pt;}
.yd7{bottom:527.396187pt;}
.y180{bottom:527.396280pt;}
.y167{bottom:527.396573pt;}
.y14f{bottom:527.398853pt;}
.y80{bottom:527.400693pt;}
.y15e{bottom:527.404080pt;}
.y51{bottom:527.406267pt;}
.yb5{bottom:527.406800pt;}
.y204{bottom:531.403293pt;}
.y129{bottom:532.006653pt;}
.y1bc{bottom:535.408960pt;}
.y12{bottom:536.163593pt;}
.yf3{bottom:536.998093pt;}
.y11{bottom:538.354326pt;}
.y13{bottom:538.355739pt;}
.yd6{bottom:543.345200pt;}
.y17f{bottom:543.345280pt;}
.y166{bottom:543.345587pt;}
.y203{bottom:543.346133pt;}
.y14e{bottom:543.347867pt;}
.y7f{bottom:543.349707pt;}
.y15d{bottom:543.353093pt;}
.y50{bottom:543.355280pt;}
.yb4{bottom:543.355813pt;}
.y128{bottom:546.670653pt;}
.y1bb{bottom:547.351800pt;}
.yf2{bottom:552.947107pt;}
.y202{bottom:555.364973pt;}
.yd4{bottom:557.177853pt;}
.y10{bottom:558.386539pt;}
.yd5{bottom:559.370000pt;}
.y17e{bottom:559.370080pt;}
.yd3{bottom:559.370387pt;}
.y1ba{bottom:559.370640pt;}
.y14d{bottom:559.372667pt;}
.y7e{bottom:559.374507pt;}
.y15c{bottom:559.377893pt;}
.y4f{bottom:559.380080pt;}
.yb3{bottom:559.380613pt;}
.y201{bottom:567.383813pt;}
.yf1{bottom:568.971907pt;}
.y1b9{bottom:571.389480pt;}
.yd1{bottom:573.203080pt;}
.yf{bottom:574.412033pt;}
.y17d{bottom:575.394880pt;}
.yd2{bottom:575.395187pt;}
.y127{bottom:575.397467pt;}
.yd0{bottom:575.398427pt;}
.y7d{bottom:575.399293pt;}
.y15b{bottom:575.402693pt;}
.y4e{bottom:575.404880pt;}
.yb2{bottom:575.405413pt;}
.y200{bottom:579.402653pt;}
.y1b8{bottom:583.408320pt;}
.yf0{bottom:584.996707pt;}
.ye{bottom:590.361513pt;}
.y1ff{bottom:591.345493pt;}
.y126{bottom:591.346467pt;}
.ycf{bottom:591.347440pt;}
.y7c{bottom:591.348307pt;}
.y15a{bottom:591.351693pt;}
.y4d{bottom:591.353893pt;}
.yb1{bottom:591.354427pt;}
.y1b7{bottom:595.351160pt;}
.yef{bottom:600.945720pt;}
.y1fe{bottom:603.364333pt;}
.yd{bottom:606.387019pt;}
.y1b6{bottom:607.370000pt;}
.y125{bottom:607.371267pt;}
.yce{bottom:607.372240pt;}
.y159{bottom:607.376493pt;}
.y4c{bottom:607.378680pt;}
.yb0{bottom:607.379213pt;}
.y1fd{bottom:615.383173pt;}
.y19f{bottom:615.760533pt;}
.yee{bottom:616.970507pt;}
.y1b5{bottom:619.388800pt;}
.yc{bottom:622.412513pt;}
.y124{bottom:623.396067pt;}
.ycd{bottom:623.397027pt;}
.y7b{bottom:623.399213pt;}
.y158{bottom:623.401293pt;}
.y4b{bottom:623.403480pt;}
.yaf{bottom:623.404013pt;}
.y1fc{bottom:627.402013pt;}
.yed{bottom:632.995307pt;}
.yb{bottom:638.361993pt;}
.y1fb{bottom:639.344853pt;}
.y123{bottom:639.345080pt;}
.ycc{bottom:639.346040pt;}
.y7a{bottom:639.348227pt;}
.y157{bottom:639.350307pt;}
.y4a{bottom:639.352493pt;}
.yae{bottom:639.353027pt;}
.y1fa{bottom:651.363693pt;}
.y122{bottom:655.369867pt;}
.ycb{bottom:655.370840pt;}
.y79{bottom:655.373013pt;}
.y156{bottom:655.375093pt;}
.y49{bottom:655.377293pt;}
.yad{bottom:655.377827pt;}
.y1b4{bottom:658.016267pt;}
.ya{bottom:662.399846pt;}
.y1f9{bottom:663.382533pt;}
.yec{bottom:665.272253pt;}
.y121{bottom:671.395067pt;}
.yca{bottom:671.395640pt;}
.y78{bottom:671.397813pt;}
.y48{bottom:671.402080pt;}
.yac{bottom:671.402613pt;}
.y1f8{bottom:675.406080pt;}
.y1b3{bottom:682.053947pt;}
.yeb{bottom:682.054147pt;}
.yc8{bottom:685.228107pt;}
.yc9{bottom:687.344640pt;}
.y77{bottom:687.346827pt;}
.y1f7{bottom:687.349920pt;}
.y47{bottom:687.351093pt;}
.yab{bottom:687.351627pt;}
.yc7{bottom:687.362093pt;}
.y165{bottom:689.461187pt;}
.y1b2{bottom:694.072787pt;}
.yea{bottom:698.078947pt;}
.y1f6{bottom:699.368760pt;}
.y76{bottom:703.371627pt;}
.y120{bottom:703.374280pt;}
.y46{bottom:703.375893pt;}
.yaa{bottom:703.376427pt;}
.yc6{bottom:703.386893pt;}
.y1b1{bottom:706.015627pt;}
.y1af{bottom:706.015667pt;}
.y1b0{bottom:710.475507pt;}
.y1f5{bottom:711.387600pt;}
.y8{bottom:713.725793pt;}
.ye9{bottom:714.027960pt;}
.y1ae{bottom:718.034507pt;}
.y75{bottom:719.396413pt;}
.y11f{bottom:719.399080pt;}
.y45{bottom:719.400693pt;}
.ya9{bottom:719.401227pt;}
.yc5{bottom:719.411693pt;}
.y9{bottom:720.226539pt;}
.y1ad{bottom:722.494307pt;}
.y1f4{bottom:723.406440pt;}
.y1ac{bottom:730.054880pt;}
.ye8{bottom:730.280107pt;}
.y6{bottom:732.396633pt;}
.y11e{bottom:735.348093pt;}
.y44{bottom:735.349693pt;}
.ya8{bottom:735.350227pt;}
.y1f3{bottom:735.350280pt;}
.yc4{bottom:735.360707pt;}
.y7{bottom:738.897446pt;}
.ye7{bottom:747.363613pt;}
.y1f2{bottom:747.369120pt;}
.y74{bottom:751.371533pt;}
.y11d{bottom:751.372893pt;}
.y43{bottom:751.374493pt;}
.ya7{bottom:751.375027pt;}
.yc3{bottom:751.385493pt;}
.y1ab{bottom:754.016560pt;}
.y1f1{bottom:759.387960pt;}
.ye6{bottom:764.145707pt;}
.y5{bottom:764.373979pt;}
.y1aa{bottom:766.035400pt;}
.y73{bottom:767.396333pt;}
.y11c{bottom:767.397680pt;}
.y42{bottom:767.399293pt;}
.ya6{bottom:767.399827pt;}
.yc2{bottom:767.410293pt;}
.y1f0{bottom:771.406800pt;}
.y1a9{bottom:778.054240pt;}
.ye5{bottom:780.170507pt;}
.y11b{bottom:783.346693pt;}
.y41{bottom:783.348307pt;}
.ya5{bottom:783.348840pt;}
.y1ef{bottom:783.350640pt;}
.yc1{bottom:783.359307pt;}
.y1a8{bottom:790.073080pt;}
.y1ee{bottom:795.369480pt;}
.ye4{bottom:796.195293pt;}
.y4{bottom:799.068526pt;}
.y72{bottom:799.371440pt;}
.y11a{bottom:799.371493pt;}
.y40{bottom:799.373093pt;}
.ya4{bottom:799.373627pt;}
.yc0{bottom:799.384107pt;}
.y1ed{bottom:807.388320pt;}
.ye3{bottom:812.144307pt;}
.y71{bottom:815.396240pt;}
.y119{bottom:815.396293pt;}
.y3f{bottom:815.397893pt;}
.ya3{bottom:815.398427pt;}
.ybf{bottom:815.408893pt;}
.y1a7{bottom:816.680720pt;}
.y1ec{bottom:819.407160pt;}
.ye2{bottom:828.472253pt;}
.y1a6{bottom:828.699560pt;}
.y70{bottom:831.345253pt;}
.y118{bottom:831.345307pt;}
.y3e{bottom:831.346907pt;}
.ya2{bottom:831.347440pt;}
.y1eb{bottom:831.350000pt;}
.ybe{bottom:831.357907pt;}
.y3{bottom:833.689473pt;}
.y1ea{bottom:843.368840pt;}
.ye1{bottom:845.253213pt;}
.y6f{bottom:847.370040pt;}
.y117{bottom:847.370093pt;}
.y3d{bottom:847.371707pt;}
.ya1{bottom:847.372240pt;}
.ybd{bottom:847.382707pt;}
.y1a5{bottom:855.383213pt;}
.y1e9{bottom:855.387680pt;}
.ye0{bottom:861.505373pt;}
.y6e{bottom:863.394840pt;}
.y116{bottom:863.394893pt;}
.y3c{bottom:863.396493pt;}
.ya0{bottom:863.397027pt;}
.ybc{bottom:863.407507pt;}
.y1a4{bottom:867.402053pt;}
.y1e8{bottom:867.406520pt;}
.y2{bottom:868.384006pt;}
.ydf{bottom:878.286960pt;}
.y6d{bottom:879.343853pt;}
.y115{bottom:879.343907pt;}
.y1a3{bottom:879.344893pt;}
.y3b{bottom:879.345507pt;}
.y9f{bottom:879.346040pt;}
.y1e7{bottom:879.349360pt;}
.ybb{bottom:879.356507pt;}
.y1a2{bottom:891.363733pt;}
.y1e6{bottom:891.368200pt;}
.yde{bottom:894.311760pt;}
.y6c{bottom:895.368653pt;}
.y114{bottom:895.368707pt;}
.y3a{bottom:895.370307pt;}
.y9e{bottom:895.370840pt;}
.yba{bottom:895.381307pt;}
.y1a1{bottom:903.382573pt;}
.y1e5{bottom:903.387040pt;}
.ydd{bottom:910.336547pt;}
.y6b{bottom:911.393440pt;}
.y113{bottom:911.393493pt;}
.y39{bottom:911.395107pt;}
.y9d{bottom:911.395640pt;}
.yb9{bottom:911.406107pt;}
.y1e4{bottom:915.405880pt;}
.y1{bottom:919.029627pt;}
.ydc{bottom:926.588707pt;}
.y6a{bottom:927.342453pt;}
.y112{bottom:927.342507pt;}
.y38{bottom:927.344640pt;}
.y1e3{bottom:927.348720pt;}
.yb8{bottom:927.355120pt;}
.y33{bottom:973.077326pt;}
.y35{bottom:977.107553pt;}
.y37{bottom:989.178273pt;}
.y32{bottom:996.995326pt;}
.ydb{bottom:1002.477760pt;}
.y1a0{bottom:1002.479987pt;}
.y142{bottom:1002.481213pt;}
.y36{bottom:1002.481579pt;}
.y9c{bottom:1002.481613pt;}
.hb{height:19.223590pt;}
.h13{height:25.223774pt;}
.h8{height:25.632992pt;}
.h9{height:26.916949pt;}
.h5{height:28.196676pt;}
.ha{height:28.839615pt;}
.hf{height:30.762282pt;}
.h14{height:34.608000pt;}
.h11{height:35.377451pt;}
.hd{height:36.661333pt;}
.h10{height:37.840681pt;}
.h12{height:37.892947pt;}
.h7{height:38.453718pt;}
.h6{height:39.057600pt;}
.he{height:40.618159pt;}
.h4{height:42.299051pt;}
.h2{height:49.296000pt;}
.hc{height:50.713992pt;}
.h3{height:92.288385pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:174.916000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590547pt;}
.x18{left:79.143360pt;}
.x1{left:80.957467pt;}
.xc{left:84.283493pt;}
.x1d{left:86.248907pt;}
.x38{left:95.621960pt;}
.x2a{left:102.274000pt;}
.x1e{left:105.750707pt;}
.x11{left:117.996827pt;}
.x12{left:122.759093pt;}
.x2d{left:134.475600pt;}
.x30{left:140.296000pt;}
.x2e{left:144.302400pt;}
.x31{left:149.140133pt;}
.x13{left:152.163760pt;}
.xf{left:154.129093pt;}
.x14{left:157.001627pt;}
.x10{left:158.966960pt;}
.x1b{left:168.586427pt;}
.x3{left:197.744800pt;}
.x4{left:202.733880pt;}
.x15{left:217.096040pt;}
.x16{left:226.696027pt;}
.x17{left:237.127493pt;}
.xb{left:240.302293pt;}
.x36{left:263.281867pt;}
.x37{left:266.910133pt;}
.x2b{left:306.822000pt;}
.x2c{left:311.735333pt;}
.xd{left:354.066147pt;}
.xe{left:358.903880pt;}
.x5{left:382.563733pt;}
.x6{left:403.351107pt;}
.x21{left:406.300573pt;}
.x1f{left:416.956333pt;}
.x34{left:418.922653pt;}
.x35{left:422.475467pt;}
.x39{left:426.327507pt;}
.x2f{left:427.542680pt;}
.x20{left:436.458133pt;}
.x28{left:503.130533pt;}
.x29{left:512.730547pt;}
.x32{left:536.995200pt;}
.x19{left:541.568547pt;}
.x1a{left:543.118680pt;}
.x33{left:547.048667pt;}
.x7{left:551.508573pt;}
.x8{left:556.497507pt;}
.x1c{left:584.634013pt;}
.x24{left:666.708533pt;}
.x25{left:671.470787pt;}
.x9{left:681.524280pt;}
.x22{left:684.699053pt;}
.x23{left:689.612547pt;}
.xa{left:690.746280pt;}
.x26{left:709.114827pt;}
.x27{left:713.876947pt;}
}




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