
    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_fca25ebb4d7a2eae3414485d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960938;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_72c8ad04f6a0799190fa1eb1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_4d6ee817947d63c4340d9787.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_670c5b2c38369d3e3ae1f96d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_2450e996831b1c695cce9d6c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.949219;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_2e76356504ad70b587c7a64a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_dc6fb5382667593ae1794504.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_674705316ba9e731ec41f96d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249978,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:26.994672px;}
.ls70{letter-spacing:-14.394780px;}
.lsa8{letter-spacing:-8.992620px;}
.ls74{letter-spacing:-4.315140px;}
.ls67{letter-spacing:-3.867156px;}
.ls56{letter-spacing:-2.516616px;}
.ls8e{letter-spacing:-1.436184px;}
.ls98{letter-spacing:-0.441396px;}
.lsab{letter-spacing:-0.415044px;}
.lsa4{letter-spacing:-0.303048px;}
.ls8d{letter-spacing:-0.243756px;}
.lsb1{letter-spacing:-0.180360px;}
.lsb2{letter-spacing:-0.178200px;}
.ls55{letter-spacing:-0.177876px;}
.ls9d{letter-spacing:-0.177156px;}
.ls95{letter-spacing:-0.174348px;}
.ls7a{letter-spacing:-0.151524px;}
.ls4c{letter-spacing:-0.138852px;}
.ls6e{letter-spacing:-0.134064px;}
.ls26{letter-spacing:-0.124200px;}
.lsaa{letter-spacing:-0.098820px;}
.ls50{letter-spacing:-0.094500px;}
.ls9f{letter-spacing:-0.090972px;}
.ls6f{letter-spacing:-0.086400px;}
.ls54{letter-spacing:-0.079056px;}
.ls68{letter-spacing:-0.065880px;}
.ls33{letter-spacing:-0.064800px;}
.ls25{letter-spacing:-0.059400px;}
.ls9e{letter-spacing:-0.057456px;}
.lsa9{letter-spacing:-0.052704px;}
.ls30{letter-spacing:-0.048600px;}
.lsa3{letter-spacing:-0.046116px;}
.ls2b{letter-spacing:-0.043200px;}
.lsa0{letter-spacing:-0.043092px;}
.ls84{letter-spacing:-0.039528px;}
.ls31{letter-spacing:-0.037800px;}
.ls4f{letter-spacing:-0.032940px;}
.lsb3{letter-spacing:-0.032400px;}
.ls2d{letter-spacing:-0.027000px;}
.ls4e{letter-spacing:-0.026352px;}
.ls27{letter-spacing:-0.021600px;}
.ls4d{letter-spacing:-0.019764px;}
.ls29{letter-spacing:-0.016200px;}
.ls83{letter-spacing:-0.014364px;}
.ls69{letter-spacing:-0.013176px;}
.ls28{letter-spacing:-0.010800px;}
.ls65{letter-spacing:-0.009576px;}
.ls94{letter-spacing:-0.006588px;}
.ls71{letter-spacing:-0.006300px;}
.ls2e{letter-spacing:-0.005400px;}
.ls66{letter-spacing:-0.004788px;}
.ls23{letter-spacing:0.000000px;}
.ls64{letter-spacing:0.004788px;}
.ls5f{letter-spacing:0.005400px;}
.ls7c{letter-spacing:0.006300px;}
.ls3d{letter-spacing:0.006588px;}
.ls11{letter-spacing:0.010800px;}
.ls3e{letter-spacing:0.013176px;}
.ls1a{letter-spacing:0.014364px;}
.lsa{letter-spacing:0.016200px;}
.ls44{letter-spacing:0.019764px;}
.lsac{letter-spacing:0.021600px;}
.ls1b{letter-spacing:0.023940px;}
.ls72{letter-spacing:0.026352px;}
.ls20{letter-spacing:0.028728px;}
.lse{letter-spacing:0.032400px;}
.ls43{letter-spacing:0.032940px;}
.ls63{letter-spacing:0.033516px;}
.ls5{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.037800px;}
.ls38{letter-spacing:0.039528px;}
.lsb{letter-spacing:0.043200px;}
.ls60{letter-spacing:0.046116px;}
.ls4b{letter-spacing:0.047880px;}
.ls14{letter-spacing:0.048600px;}
.ls3{letter-spacing:0.050400px;}
.ls8{letter-spacing:0.052704px;}
.lsc{letter-spacing:0.054000px;}
.ls3a{letter-spacing:0.059292px;}
.ls12{letter-spacing:0.059400px;}
.lsa6{letter-spacing:0.062244px;}
.ls15{letter-spacing:0.064800px;}
.ls5e{letter-spacing:0.065880px;}
.lsb0{letter-spacing:0.070200px;}
.ls92{letter-spacing:0.072468px;}
.ls9{letter-spacing:0.075600px;}
.ls0{letter-spacing:0.076608px;}
.ls42{letter-spacing:0.079056px;}
.ls13{letter-spacing:0.081000px;}
.ls6b{letter-spacing:0.085644px;}
.ls35{letter-spacing:0.086184px;}
.ls10{letter-spacing:0.086400px;}
.ls96{letter-spacing:0.088200px;}
.ls7{letter-spacing:0.090720px;}
.ls17{letter-spacing:0.091800px;}
.ls5c{letter-spacing:0.092232px;}
.ls4{letter-spacing:0.093600px;}
.ls62{letter-spacing:0.094500px;}
.lsa7{letter-spacing:0.095760px;}
.ls76{letter-spacing:0.098820px;}
.lsad{letter-spacing:0.102600px;}
.ls88{letter-spacing:0.105408px;}
.ls2f{letter-spacing:0.108000px;}
.ls45{letter-spacing:0.111996px;}
.ls1d{letter-spacing:0.124488px;}
.ls73{letter-spacing:0.125172px;}
.ls16{letter-spacing:0.129600px;}
.ls93{letter-spacing:0.131760px;}
.ls36{letter-spacing:0.138348px;}
.ls21{letter-spacing:0.138852px;}
.lsae{letter-spacing:0.151200px;}
.ls82{letter-spacing:0.151524px;}
.ls1c{letter-spacing:0.153216px;}
.ls22{letter-spacing:0.158004px;}
.lsd{letter-spacing:0.167400px;}
.ls24{letter-spacing:0.177876px;}
.lsb4{letter-spacing:0.178200px;}
.ls1e{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.180360px;}
.ls18{letter-spacing:0.181944px;}
.ls8c{letter-spacing:0.182700px;}
.ls61{letter-spacing:0.184464px;}
.ls1{letter-spacing:0.210672px;}
.ls99{letter-spacing:0.230580px;}
.ls6{letter-spacing:0.316800px;}
.ls19{letter-spacing:0.359100px;}
.ls32{letter-spacing:0.361800px;}
.ls37{letter-spacing:0.362340px;}
.ls58{letter-spacing:0.363888px;}
.ls5a{letter-spacing:0.368928px;}
.ls3f{letter-spacing:0.540000px;}
.ls40{letter-spacing:0.718092px;}
.ls9c{letter-spacing:0.722988px;}
.ls91{letter-spacing:0.724680px;}
.ls8a{letter-spacing:1.087020px;}
.ls53{letter-spacing:1.172664px;}
.ls48{letter-spacing:1.980000px;}
.ls4a{letter-spacing:2.159388px;}
.lsa1{letter-spacing:3.247884px;}
.ls97{letter-spacing:3.603636px;}
.ls3b{letter-spacing:3.623400px;}
.ls51{letter-spacing:3.959388px;}
.ls89{letter-spacing:4.684068px;}
.ls8f{letter-spacing:5.046408px;}
.ls9a{letter-spacing:5.408748px;}
.ls39{letter-spacing:7.200684px;}
.ls2a{letter-spacing:7.381800px;}
.lsa2{letter-spacing:10.804320px;}
.ls2c{letter-spacing:11.340000px;}
.ls1f{letter-spacing:11.788056px;}
.ls6d{letter-spacing:11.792844px;}
.ls9b{letter-spacing:12.151944px;}
.ls86{letter-spacing:12.965184px;}
.ls87{letter-spacing:13.143060px;}
.lsaf{letter-spacing:13.500000px;}
.ls49{letter-spacing:13.952232px;}
.ls7b{letter-spacing:15.844500px;}
.ls78{letter-spacing:16.292124px;}
.ls41{letter-spacing:16.377768px;}
.ls5b{letter-spacing:16.384356px;}
.ls5d{letter-spacing:16.522704px;}
.ls46{letter-spacing:16.562232px;}
.ls79{letter-spacing:16.568820px;}
.ls52{letter-spacing:16.647876px;}
.ls75{letter-spacing:16.654464px;}
.ls47{letter-spacing:16.740108px;}
.ls85{letter-spacing:16.746696px;}
.ls81{letter-spacing:16.917984px;}
.ls8b{letter-spacing:16.924572px;}
.ls7f{letter-spacing:17.458200px;}
.ls77{letter-spacing:17.827128px;}
.lsa5{letter-spacing:18.182880px;}
.ls90{letter-spacing:19.447776px;}
.ls3c{letter-spacing:19.619064px;}
.ls80{letter-spacing:26.101656px;}
.ls6c{letter-spacing:75.656592px;}
.ls7d{letter-spacing:367.110324px;}
.ls57{letter-spacing:367.143840px;}
.ls7e{letter-spacing:367.828524px;}
.ls59{letter-spacing:367.862040px;}
.ls34{letter-spacing:578.069604px;}
.ls6a{letter-spacing:578.122272px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-72.316800px;}
.ws3{word-spacing:-72.093600px;}
.ws2e{word-spacing:-66.248928px;}
.ws14{word-spacing:-66.242340px;}
.ws9{word-spacing:-54.361800px;}
.ws3d{word-spacing:-54.005400px;}
.wsb{word-spacing:-54.000000px;}
.ws17{word-spacing:-40.140684px;}
.ws95{word-spacing:-38.348748px;}
.ws8b{word-spacing:-36.543636px;}
.wsaa{word-spacing:-36.187884px;}
.ws6d{word-spacing:-34.027020px;}
.ws7a{word-spacing:-33.664680px;}
.ws20{word-spacing:-33.658092px;}
.ws2f{word-spacing:-33.308928px;}
.ws1f{word-spacing:-33.302340px;}
.ws30{word-spacing:-32.946588px;}
.ws1{word-spacing:-32.940000px;}
.ws59{word-spacing:-31.506300px;}
.ws6a{word-spacing:-31.503816px;}
.ws26{word-spacing:-31.500000px;}
.ws25{word-spacing:-30.423384px;}
.ws4b{word-spacing:-28.624860px;}
.ws5{word-spacing:-27.000000px;}
.ws28{word-spacing:-26.099388px;}
.ws2c{word-spacing:-24.303888px;}
.ws2a{word-spacing:-24.299100px;}
.ws2d{word-spacing:-23.944788px;}
.ws0{word-spacing:-23.940000px;}
.wsab{word-spacing:-22.155444px;}
.wsae{word-spacing:-19.269900px;}
.ws70{word-spacing:-17.115624px;}
.ws79{word-spacing:-16.766460px;}
.ws7c{word-spacing:-16.753284px;}
.ws8a{word-spacing:-16.700580px;}
.ws32{word-spacing:-16.654464px;}
.ws23{word-spacing:-16.647876px;}
.ws8c{word-spacing:-16.581996px;}
.ws69{word-spacing:-16.562232px;}
.ws8e{word-spacing:-16.555644px;}
.ws4d{word-spacing:-16.549056px;}
.ws7d{word-spacing:-16.542468px;}
.ws1a{word-spacing:-16.529292px;}
.ws49{word-spacing:-16.516116px;}
.ws21{word-spacing:-16.502940px;}
.ws51{word-spacing:-16.496352px;}
.ws74{word-spacing:-16.489764px;}
.ws4a{word-spacing:-16.483176px;}
.ws38{word-spacing:-16.470000px;}
.ws9b{word-spacing:-16.456824px;}
.ws16{word-spacing:-16.450236px;}
.ws89{word-spacing:-16.437060px;}
.wsaf{word-spacing:-16.417296px;}
.ws5f{word-spacing:-16.404120px;}
.ws27{word-spacing:-16.397532px;}
.ws22{word-spacing:-16.390944px;}
.ws1b{word-spacing:-16.384356px;}
.ws24{word-spacing:-16.292124px;}
.ws44{word-spacing:-16.081308px;}
.ws93{word-spacing:-16.068132px;}
.ws4c{word-spacing:-16.061544px;}
.ws33{word-spacing:-16.054956px;}
.ws3e{word-spacing:-16.048368px;}
.ws39{word-spacing:-16.041780px;}
.ws37{word-spacing:-16.035192px;}
.ws15{word-spacing:-16.028604px;}
.ws1d{word-spacing:-16.022016px;}
.ws64{word-spacing:-15.932700px;}
.ws58{word-spacing:-15.750000px;}
.ws19{word-spacing:-15.655500px;}
.ws86{word-spacing:-15.343452px;}
.ws47{word-spacing:-15.310512px;}
.ws5a{word-spacing:-15.303924px;}
.wsb7{word-spacing:-14.967936px;}
.ws65{word-spacing:-14.954760px;}
.ws50{word-spacing:-14.612184px;}
.wsb8{word-spacing:-14.599008px;}
.ws4e{word-spacing:-14.592420px;}
.ws80{word-spacing:-14.236668px;}
.wsa0{word-spacing:-13.907268px;}
.wsbc{word-spacing:-13.651200px;}
.ws94{word-spacing:-13.538340px;}
.wsbe{word-spacing:-13.537800px;}
.wsbf{word-spacing:-13.521600px;}
.ws7e{word-spacing:-13.518576px;}
.ws7{word-spacing:-13.516200px;}
.wsbd{word-spacing:-13.505400px;}
.ws3c{word-spacing:-13.500000px;}
.wsbb{word-spacing:-13.489200px;}
.wsc0{word-spacing:-13.467600px;}
.wsa{word-spacing:-13.462200px;}
.ws6{word-spacing:-13.440600px;}
.wsc{word-spacing:-13.435200px;}
.ws41{word-spacing:-13.413600px;}
.ws53{word-spacing:-13.189176px;}
.ws81{word-spacing:-13.182588px;}
.ws91{word-spacing:-13.176000px;}
.ws1c{word-spacing:-13.143060px;}
.wse{word-spacing:-12.151944px;}
.ws11{word-spacing:-12.128004px;}
.wsd{word-spacing:-12.094488px;}
.wsa4{word-spacing:-12.056184px;}
.wsba{word-spacing:-12.032244px;}
.ws29{word-spacing:-12.017880px;}
.wsf{word-spacing:-11.998728px;}
.ws10{word-spacing:-11.970000px;}
.wsa6{word-spacing:-11.926908px;}
.wsa5{word-spacing:-11.879028px;}
.wsa3{word-spacing:-11.792844px;}
.ws75{word-spacing:-11.733228px;}
.wsb3{word-spacing:-10.277280px;}
.wsb1{word-spacing:-9.908352px;}
.ws9e{word-spacing:-9.572364px;}
.ws48{word-spacing:-9.190260px;}
.ws8{word-spacing:-9.000000px;}
.ws9c{word-spacing:-8.472168px;}
.wsb5{word-spacing:-7.042572px;}
.ws97{word-spacing:-6.324480px;}
.ws60{word-spacing:-6.311304px;}
.ws61{word-spacing:-6.298128px;}
.wsac{word-spacing:-6.179544px;}
.ws6b{word-spacing:-5.547096px;}
.ws43{word-spacing:-4.143852px;}
.wsa8{word-spacing:-3.814452px;}
.ws99{word-spacing:-3.807864px;}
.wsad{word-spacing:-3.300588px;}
.ws45{word-spacing:-0.592920px;}
.ws77{word-spacing:-0.454572px;}
.ws2{word-spacing:-0.441396px;}
.ws5d{word-spacing:-0.401868px;}
.ws96{word-spacing:-0.368928px;}
.ws40{word-spacing:-0.362340px;}
.ws63{word-spacing:-0.355752px;}
.ws34{word-spacing:-0.316224px;}
.ws71{word-spacing:-0.309636px;}
.ws55{word-spacing:-0.303048px;}
.ws42{word-spacing:-0.270108px;}
.ws52{word-spacing:-0.210816px;}
.ws5e{word-spacing:-0.191052px;}
.ws2b{word-spacing:-0.177156px;}
.ws1e{word-spacing:-0.085644px;}
.ws5b{word-spacing:-0.079056px;}
.wsb0{word-spacing:-0.059292px;}
.ws31{word-spacing:-0.006588px;}
.ws12{word-spacing:0.000000px;}
.ws78{word-spacing:0.019764px;}
.ws36{word-spacing:0.026352px;}
.wsa2{word-spacing:0.059292px;}
.ws6f{word-spacing:0.125172px;}
.wsc1{word-spacing:0.135000px;}
.ws82{word-spacing:0.138348px;}
.wsc6{word-spacing:0.140400px;}
.wsc7{word-spacing:0.162000px;}
.ws57{word-spacing:0.171288px;}
.ws3f{word-spacing:0.250344px;}
.ws83{word-spacing:0.263520px;}
.ws6e{word-spacing:0.270108px;}
.ws56{word-spacing:0.368928px;}
.ws87{word-spacing:0.625860px;}
.ws73{word-spacing:0.632448px;}
.ws66{word-spacing:0.981612px;}
.ws4f{word-spacing:1.073844px;}
.wsb9{word-spacing:1.436184px;}
.ws7b{word-spacing:1.712880px;}
.ws67{word-spacing:1.930284px;}
.ws46{word-spacing:2.068632px;}
.wsa7{word-spacing:2.174040px;}
.wsa1{word-spacing:2.424384px;}
.ws7f{word-spacing:2.457324px;}
.ws54{word-spacing:2.872368px;}
.ws72{word-spacing:3.149064px;}
.ws5c{word-spacing:3.241296px;}
.ws92{word-spacing:3.254472px;}
.wsc4{word-spacing:3.412800px;}
.wsc3{word-spacing:3.423600px;}
.ws76{word-spacing:4.585248px;}
.wsb4{word-spacing:5.665680px;}
.wsb2{word-spacing:5.817204px;}
.wsc8{word-spacing:5.896800px;}
.ws9f{word-spacing:7.101864px;}
.ws35{word-spacing:7.398324px;}
.ws90{word-spacing:7.615728px;}
.wsc5{word-spacing:7.727400px;}
.ws9d{word-spacing:8.709336px;}
.ws62{word-spacing:9.354960px;}
.ws8f{word-spacing:10.020348px;}
.ws98{word-spacing:10.040112px;}
.ws84{word-spacing:10.112580px;}
.ws85{word-spacing:10.185048px;}
.wsb6{word-spacing:10.824084px;}
.ws3b{word-spacing:11.502648px;}
.ws13{word-spacing:11.711448px;}
.ws3a{word-spacing:11.746404px;}
.ws9a{word-spacing:12.497436px;}
.ws68{word-spacing:15.659676px;}
.ws8d{word-spacing:15.969312px;}
.ws88{word-spacing:16.483176px;}
.wsa9{word-spacing:18.301464px;}
.ws6c{word-spacing:20.383272px;}
.ws18{word-spacing:22.550724px;}
.wsc2{word-spacing:45.144000px;}
._23{margin-left:-33.127920px;}
._1b{margin-left:-31.339440px;}
._16{margin-left:-30.238920px;}
._17{margin-left:-27.356832px;}
._25{margin-left:-25.564896px;}
._1a{margin-left:-24.494508px;}
._26{margin-left:-23.377032px;}
._20{margin-left:-22.051512px;}
._11{margin-left:-20.880468px;}
._19{margin-left:-19.010700px;}
._18{margin-left:-18.008460px;}
._14{margin-left:-16.438896px;}
._12{margin-left:-15.208452px;}
._10{margin-left:-13.924008px;}
._2c{margin-left:-12.785688px;}
._1{margin-left:-11.649204px;}
._c{margin-left:-10.493424px;}
._13{margin-left:-9.345240px;}
._9{margin-left:-7.503300px;}
._a{margin-left:-6.291000px;}
._1c{margin-left:-4.923432px;}
._f{margin-left:-3.805956px;}
._6{margin-left:-2.295000px;}
._3{margin-left:-1.144800px;}
._0{width:1.077300px;}
._4{width:2.151900px;}
._d{width:3.402000px;}
._8{width:5.173200px;}
._7{width:6.247800px;}
._5{width:8.056800px;}
._21{width:9.087984px;}
._2{width:10.935792px;}
._b{width:12.290256px;}
._28{width:13.960260px;}
._1d{width:15.679656px;}
._1f{width:18.014724px;}
._15{width:20.047608px;}
._e{width:21.378600px;}
._1e{width:25.113780px;}
._22{width:27.577368px;}
._29{width:29.316600px;}
._24{width:32.561028px;}
._2a{width:44.285400px;}
._2b{width:45.640800px;}
._27{width:252.396000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.880000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:42.120000px;}
.fs0{font-size:47.880000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs2{font-size:63.000000px;}
.fs3{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:50.196000px;}
.y2{bottom:68.286000px;}
.y32{bottom:87.813147px;}
.y1a5{bottom:88.535244px;}
.y77{bottom:88.535424px;}
.y181{bottom:88.535865px;}
.y58{bottom:88.536000px;}
.yfa{bottom:89.976999px;}
.y130{bottom:90.606000px;}
.y121{bottom:93.038997px;}
.ybb{bottom:98.076000px;}
.y1c8{bottom:101.226000px;}
.y31{bottom:101.583435px;}
.y13a{bottom:101.857008px;}
.y1a4{bottom:104.105820px;}
.y76{bottom:104.106000px;}
.y180{bottom:104.106441px;}
.y57{bottom:108.606000px;}
.yf9{bottom:112.476666px;}
.y12f{bottom:113.106000px;}
.y12e{bottom:113.106675px;}
.y120{bottom:115.538664px;}
.y30{bottom:116.073120px;}
.y1a3{bottom:119.585424px;}
.y56{bottom:119.586000px;}
.y17f{bottom:119.586045px;}
.yba{bottom:120.576000px;}
.y157{bottom:123.368052px;}
.y139{bottom:124.356675px;}
.y1c7{bottom:124.716000px;}
.y2f{bottom:131.643696px;}
.y166{bottom:132.729663px;}
.yf8{bottom:134.976333px;}
.y1a2{bottom:135.156000px;}
.y17e{bottom:135.156621px;}
.y11f{bottom:138.038331px;}
.y1a1{bottom:139.656000px;}
.y1c6{bottom:142.266000px;}
.y55{bottom:143.978664px;}
.y156{bottom:145.867719px;}
.y92{bottom:145.956666px;}
.y138{bottom:146.856342px;}
.y2e{bottom:147.214272px;}
.y17d{bottom:150.726000px;}
.y17c{bottom:155.226000px;}
.y165{bottom:155.229330px;}
.yf7{bottom:157.476000px;}
.y11e{bottom:160.537998px;}
.y10e{bottom:160.806333px;}
.y2d{bottom:162.784848px;}
.y104{bottom:164.228997px;}
.y1c5{bottom:165.756000px;}
.y17b{bottom:166.296000px;}
.y54{bottom:166.478331px;}
.y155{bottom:168.367386px;}
.y91{bottom:168.456333px;}
.y137{bottom:169.716702px;}
.y17a{bottom:170.796000px;}
.y164{bottom:177.728997px;}
.y2c{bottom:178.355424px;}
.yf6{bottom:179.976333px;}
.y179{bottom:181.776000px;}
.ye6{bottom:182.321661px;}
.y11d{bottom:183.037665px;}
.y10d{bottom:183.306000px;}
.y10b{bottom:183.307665px;}
.y103{bottom:186.728664px;}
.y53{bottom:188.977998px;}
.y1c4{bottom:189.246000px;}
.y10c{bottom:190.056000px;}
.y154{bottom:190.867053px;}
.y90{bottom:190.956000px;}
.y8f{bottom:190.962048px;}
.ya9{bottom:197.256000px;}
.y2b{bottom:198.426000px;}
.y163{bottom:200.228664px;}
.yf5{bottom:202.476000px;}
.ye5{bottom:204.821328px;}
.y11c{bottom:205.537332px;}
.y10a{bottom:205.807332px;}
.y2a{bottom:208.776315px;}
.y136{bottom:209.136000px;}
.y102{bottom:209.228331px;}
.y52{bottom:211.477665px;}
.y1c3{bottom:212.016450px;}
.y153{bottom:213.366720px;}
.y8e{bottom:213.461715px;}
.y12b{bottom:214.086000px;}
.y162{bottom:222.728331px;}
.y29{bottom:223.266000px;}
.yf4{bottom:224.979996px;}
.ye4{bottom:227.320995px;}
.y1c2{bottom:227.586000px;}
.y11b{bottom:228.036999px;}
.y109{bottom:228.306999px;}
.y115{bottom:231.007998px;}
.y101{bottom:231.727998px;}
.y51{bottom:233.977332px;}
.y75{bottom:235.148997px;}
.y152{bottom:235.866387px;}
.y8d{bottom:235.961382px;}
.y14c{bottom:236.499663px;}
.y12a{bottom:236.588664px;}
.y28{bottom:238.746000px;}
.y161{bottom:245.227998px;}
.yf3{bottom:247.479663px;}
.y135{bottom:248.196000px;}
.y1c1{bottom:249.095550px;}
.y18f{bottom:249.370329px;}
.ye3{bottom:249.820662px;}
.y11a{bottom:250.536666px;}
.y108{bottom:250.806666px;}
.y114{bottom:253.507665px;}
.y100{bottom:254.227665px;}
.y50{bottom:256.476999px;}
.y74{bottom:257.648664px;}
.y151{bottom:258.366054px;}
.y8c{bottom:258.461049px;}
.y14b{bottom:258.999330px;}
.y129{bottom:259.088331px;}
.y1c0{bottom:264.576000px;}
.y160{bottom:267.727665px;}
.yf2{bottom:269.979330px;}
.y133{bottom:270.695100px;}
.y134{bottom:270.696000px;}
.y18e{bottom:271.869996px;}
.ye2{bottom:272.320329px;}
.y119{bottom:273.036333px;}
.y107{bottom:273.306333px;}
.y27{bottom:275.465550px;}
.y113{bottom:276.007332px;}
.yff{bottom:276.727332px;}
.y4f{bottom:278.976666px;}
.y73{bottom:280.148331px;}
.y150{bottom:280.865721px;}
.y8b{bottom:280.960716px;}
.y14a{bottom:281.498997px;}
.y128{bottom:281.587998px;}
.y1bf{bottom:286.086450px;}
.y15f{bottom:290.227332px;}
.yf1{bottom:292.478997px;}
.y26{bottom:293.556000px;}
.y18d{bottom:294.369663px;}
.ye1{bottom:294.819996px;}
.y118{bottom:295.536000px;}
.y19f{bottom:295.540995px;}
.y106{bottom:295.806000px;}
.y112{bottom:298.506999px;}
.yfe{bottom:299.226999px;}
.y4e{bottom:301.476333px;}
.y1be{bottom:301.656000px;}
.y1a0{bottom:302.286000px;}
.y72{bottom:302.647998px;}
.y8a{bottom:303.460383px;}
.y14f{bottom:303.726081px;}
.y149{bottom:303.998664px;}
.y127{bottom:304.087665px;}
.y25{bottom:311.376450px;}
.y15e{bottom:312.726999px;}
.yf0{bottom:314.978664px;}
.y18c{bottom:316.869330px;}
.y1bd{bottom:317.136450px;}
.ye0{bottom:317.319663px;}
.y117{bottom:318.036000px;}
.y19e{bottom:318.040662px;}
.y105{bottom:318.306675px;}
.y111{bottom:321.006666px;}
.yfd{bottom:321.726666px;}
.y4d{bottom:323.978331px;}
.y71{bottom:325.147665px;}
.y89{bottom:325.960050px;}
.y148{bottom:326.498331px;}
.y126{bottom:326.587332px;}
.y24{bottom:326.946000px;}
.y1bc{bottom:332.706000px;}
.yb7{bottom:333.518718px;}
.y15d{bottom:335.226666px;}
.yef{bottom:337.478331px;}
.y18b{bottom:339.368997px;}
.ydf{bottom:339.819330px;}
.y116{bottom:340.536000px;}
.y19d{bottom:340.540329px;}
.y14e{bottom:342.786333px;}
.y23{bottom:343.146000px;}
.y110{bottom:343.506333px;}
.yfc{bottom:344.226333px;}
.y9f{bottom:345.665550px;}
.y4c{bottom:346.477998px;}
.y70{bottom:347.647332px;}
.y88{bottom:348.459717px;}
.y147{bottom:348.997998px;}
.y125{bottom:349.086999px;}
.yd3{bottom:350.982651px;}
.y1bb{bottom:354.215550px;}
.yb6{bottom:356.018385px;}
.y15c{bottom:357.726333px;}
.yee{bottom:359.977998px;}
.y22{bottom:360.155775px;}
.y18a{bottom:361.868664px;}
.yde{bottom:362.318997px;}
.y19c{bottom:363.039996px;}
.y14d{bottom:365.286000px;}
.y10f{bottom:366.006000px;}
.yfb{bottom:366.726000px;}
.y4b{bottom:368.977665px;}
.y1ba{bottom:369.785100px;}
.y6f{bottom:370.146999px;}
.y87{bottom:370.959384px;}
.y146{bottom:371.497665px;}
.y124{bottom:371.586666px;}
.yd2{bottom:373.482318px;}
.y21{bottom:378.336000px;}
.yb5{bottom:378.518052px;}
.y15b{bottom:380.226000px;}
.yed{bottom:382.477665px;}
.y189{bottom:384.368331px;}
.ydd{bottom:384.818664px;}
.y1b9{bottom:385.265550px;}
.y19b{bottom:385.539663px;}
.y4a{bottom:391.477332px;}
.y6e{bottom:392.646666px;}
.y86{bottom:393.459051px;}
.y145{bottom:393.997332px;}
.y123{bottom:394.086333px;}
.yd1{bottom:395.981985px;}
.y20{bottom:396.156000px;}
.yb4{bottom:401.017719px;}
.y15a{bottom:402.726000px;}
.yec{bottom:404.977332px;}
.y188{bottom:406.867998px;}
.ydc{bottom:407.318331px;}
.y1b8{bottom:407.496000px;}
.y19a{bottom:408.039330px;}
.y1f{bottom:411.725550px;}
.y49{bottom:413.976999px;}
.y178{bottom:413.978997px;}
.y6d{bottom:415.146333px;}
.y85{bottom:415.958718px;}
.y144{bottom:416.496999px;}
.y122{bottom:416.586000px;}
.yd0{bottom:418.481652px;}
.yb3{bottom:423.517386px;}
.y1b7{bottom:424.326000px;}
.y1e{bottom:427.206000px;}
.yeb{bottom:427.476999px;}
.y187{bottom:429.367665px;}
.ydb{bottom:429.817998px;}
.y199{bottom:430.538997px;}
.y48{bottom:436.476666px;}
.y177{bottom:436.478664px;}
.y6c{bottom:437.646000px;}
.y84{bottom:438.458385px;}
.y143{bottom:438.996666px;}
.ycf{bottom:440.981319px;}
.ya8{bottom:442.058331px;}
.y1d{bottom:442.775550px;}
.y1b6{bottom:445.835550px;}
.yb2{bottom:446.017053px;}
.y12d{bottom:446.646000px;}
.yea{bottom:449.976666px;}
.y186{bottom:451.867332px;}
.yda{bottom:452.317665px;}
.y198{bottom:453.038664px;}
.y1c{bottom:458.256000px;}
.y47{bottom:458.976333px;}
.y176{bottom:458.978331px;}
.y6b{bottom:459.605550px;}
.y83{bottom:460.958052px;}
.y1b5{bottom:461.316000px;}
.y142{bottom:461.496333px;}
.yce{bottom:463.480986px;}
.ya7{bottom:464.557998px;}
.yb1{bottom:468.516720px;}
.y12c{bottom:469.146000px;}
.ye9{bottom:472.476333px;}
.y1b{bottom:473.825550px;}
.y185{bottom:474.366999px;}
.yd9{bottom:474.817332px;}
.y197{bottom:475.538331px;}
.y46{bottom:481.476000px;}
.y175{bottom:481.477998px;}
.y82{bottom:483.457719px;}
.y141{bottom:483.996000px;}
.ycd{bottom:485.980653px;}
.ya6{bottom:487.057665px;}
.y1a{bottom:489.306000px;}
.yb0{bottom:491.016387px;}
.ye8{bottom:494.976000px;}
.y1b4{bottom:496.419861px;}
.y184{bottom:496.866666px;}
.yd8{bottom:497.316999px;}
.y196{bottom:498.037998px;}
.y174{bottom:503.977665px;}
.y45{bottom:503.978331px;}
.y19{bottom:504.875550px;}
.y81{bottom:505.957386px;}
.y140{bottom:506.495550px;}
.ycc{bottom:508.480320px;}
.ya5{bottom:509.557332px;}
.yaf{bottom:513.516054px;}
.ye7{bottom:517.476000px;}
.y183{bottom:519.366333px;}
.yd7{bottom:519.816666px;}
.y18{bottom:520.356000px;}
.y195{bottom:520.537665px;}
.y173{bottom:526.477332px;}
.y44{bottom:526.477998px;}
.y80{bottom:528.457053px;}
.y13f{bottom:528.996000px;}
.ya4{bottom:532.056999px;}
.yb9{bottom:533.766333px;}
.y17{bottom:535.925550px;}
.yae{bottom:536.015721px;}
.y182{bottom:541.866000px;}
.yd6{bottom:542.316333px;}
.y194{bottom:543.037332px;}
.y172{bottom:548.976999px;}
.y43{bottom:548.977665px;}
.ycb{bottom:549.340743px;}
.y7f{bottom:550.956720px;}
.y16{bottom:551.406000px;}
.ya3{bottom:554.556666px;}
.y6a{bottom:555.816000px;}
.yb8{bottom:556.266000px;}
.yad{bottom:558.515388px;}
.yd5{bottom:564.816000px;}
.y193{bottom:565.536999px;}
.y15{bottom:566.975550px;}
.y171{bottom:571.476666px;}
.y42{bottom:571.477332px;}
.y1b3{bottom:571.480239px;}
.y9e{bottom:572.556000px;}
.y69{bottom:572.559996px;}
.y7e{bottom:573.456387px;}
.ya2{bottom:577.056333px;}
.yac{bottom:581.375748px;}
.y14{bottom:582.456000px;}
.yd4{bottom:587.316000px;}
.y192{bottom:588.036666px;}
.yca{bottom:588.400995px;}
.y170{bottom:593.976333px;}
.y41{bottom:593.976999px;}
.y1b2{bottom:593.979906px;}
.y68{bottom:595.059663px;}
.y9d{bottom:595.060338px;}
.y7d{bottom:595.956054px;}
.y13{bottom:598.025550px;}
.ya1{bottom:599.556000px;}
.y191{bottom:610.536333px;}
.yc9{bottom:610.900662px;}
.y12{bottom:613.506000px;}
.y16f{bottom:616.476000px;}
.y16d{bottom:616.476333px;}
.y40{bottom:616.476666px;}
.y1b1{bottom:616.479573px;}
.y67{bottom:617.559330px;}
.y9c{bottom:617.560005px;}
.y7c{bottom:618.455721px;}
.yab{bottom:620.436000px;}
.ya0{bottom:621.606000px;}
.y16e{bottom:623.226000px;}
.y11{bottom:628.986450px;}
.y190{bottom:633.036000px;}
.y132{bottom:633.395550px;}
.yc8{bottom:633.400329px;}
.y16b{bottom:638.975550px;}
.y16c{bottom:638.976000px;}
.y3f{bottom:638.976333px;}
.y1b0{bottom:638.979240px;}
.y66{bottom:640.058997px;}
.y9b{bottom:640.059672px;}
.y7b{bottom:640.955388px;}
.yaa{bottom:642.486000px;}
.y10{bottom:644.556000px;}
.y131{bottom:655.896000px;}
.yc7{bottom:655.899996px;}
.yf{bottom:660.306000px;}
.y16a{bottom:661.476000px;}
.y3e{bottom:661.477332px;}
.y169{bottom:661.478385px;}
.y1af{bottom:661.478907px;}
.y65{bottom:662.558664px;}
.y9a{bottom:662.559339px;}
.y7a{bottom:663.815748px;}
.ye{bottom:678.216000px;}
.yc6{bottom:678.399663px;}
.y3d{bottom:683.976999px;}
.y168{bottom:683.978052px;}
.y1ae{bottom:683.978574px;}
.y64{bottom:685.058331px;}
.y99{bottom:685.059006px;}
.yd{bottom:694.236000px;}
.yc5{bottom:700.899330px;}
.y79{bottom:702.876000px;}
.y3c{bottom:706.476666px;}
.y1ad{bottom:706.478241px;}
.y167{bottom:706.838412px;}
.y63{bottom:707.557998px;}
.y98{bottom:707.558673px;}
.yc{bottom:712.956000px;}
.y13e{bottom:715.206333px;}
.yc4{bottom:723.398997px;}
.y78{bottom:724.836000px;}
.y3b{bottom:728.976333px;}
.y1ac{bottom:728.977908px;}
.y62{bottom:730.057665px;}
.y97{bottom:730.058340px;}
.yb{bottom:731.496000px;}
.y13d{bottom:737.706000px;}
.y13c{bottom:737.706225px;}
.y159{bottom:741.126000px;}
.yc3{bottom:745.898664px;}
.y3a{bottom:751.476000px;}
.y1ab{bottom:751.477575px;}
.ya{bottom:752.196000px;}
.y61{bottom:752.557332px;}
.y96{bottom:752.558007px;}
.y158{bottom:763.626000px;}
.yc2{bottom:768.398331px;}
.y9{bottom:772.446000px;}
.y1aa{bottom:773.977242px;}
.y39{bottom:773.977332px;}
.y60{bottom:775.056999px;}
.y95{bottom:775.057674px;}
.yc1{bottom:790.897998px;}
.y8{bottom:790.986000px;}
.y1a9{bottom:796.476909px;}
.y38{bottom:796.476999px;}
.y5f{bottom:797.556666px;}
.y94{bottom:797.557341px;}
.y1ce{bottom:804.936000px;}
.y7{bottom:809.346000px;}
.y13b{bottom:813.396000px;}
.yc0{bottom:813.397665px;}
.y1a8{bottom:818.976576px;}
.y37{bottom:818.976666px;}
.y5e{bottom:820.056333px;}
.y93{bottom:820.057008px;}
.y1cd{bottom:822.486000px;}
.y6{bottom:829.416000px;}
.ybf{bottom:835.897332px;}
.y1cc{bottom:839.226000px;}
.y1a7{bottom:841.476243px;}
.y36{bottom:841.476333px;}
.y5d{bottom:842.556000px;}
.y5b{bottom:842.556675px;}
.y5c{bottom:849.306000px;}
.y1cb{bottom:856.236000px;}
.ybe{bottom:858.396999px;}
.y1a6{bottom:863.975910px;}
.y35{bottom:863.976000px;}
.y5a{bottom:865.056342px;}
.y5{bottom:867.306000px;}
.ybd{bottom:880.896666px;}
.y34{bottom:886.475577px;}
.y59{bottom:887.916702px;}
.ybc{bottom:903.396333px;}
.y1ca{bottom:912.846000px;}
.y4{bottom:925.896000px;}
.y33{bottom:927.336000px;}
.y1c9{bottom:930.396000px;}
.y1{bottom:978.726000px;}
.h12{height:20.761348px;}
.hd{height:22.024688px;}
.h11{height:29.265996px;}
.hc{height:33.268184px;}
.h9{height:37.520508px;}
.h1{height:40.024687px;}
.h2{height:41.772832px;}
.ha{height:42.398438px;}
.h3{height:43.773926px;}
.h6{height:45.140625px;}
.h8{height:45.775020px;}
.hb{height:45.984375px;}
.h7{height:48.796875px;}
.h13{height:52.664062px;}
.hf{height:55.066234px;}
.h4{height:55.071562px;}
.he{height:56.100937px;}
.h10{height:56.260668px;}
.h5{height:61.312500px;}
.h0{height:1093.500000px;}
.w0{width:774.000000px;}
.x0{left:0.000000px;}
.x2{left:102.060000px;}
.x13{left:105.840000px;}
.x3{left:117.810000px;}
.x38{left:127.530450px;}
.x7{left:139.230000px;}
.x33{left:140.850000px;}
.xb{left:144.630000px;}
.x14{left:150.839224px;}
.x4{left:163.530000px;}
.xc{left:165.779100px;}
.xd{left:176.490900px;}
.x10{left:184.590000px;}
.x11{left:189.900000px;}
.x15{left:201.060000px;}
.x1d{left:207.810000px;}
.x35{left:227.430000px;}
.x2f{left:258.930000px;}
.x2d{left:264.689960px;}
.x18{left:275.580110px;}
.x1a{left:282.330000px;}
.x1f{left:294.390000px;}
.x29{left:298.349229px;}
.x21{left:306.179458px;}
.x1b{left:309.330000px;}
.x37{left:313.019910px;}
.x19{left:316.080000px;}
.xa{left:319.680000px;}
.x26{left:321.930000px;}
.x17{left:326.880000px;}
.x12{left:329.579959px;}
.xf{left:335.160000px;}
.x9{left:336.600000px;}
.xe{left:343.440000px;}
.x31{left:349.650000px;}
.x5{left:353.970000px;}
.x6{left:359.910000px;}
.x2b{left:375.660000px;}
.x1{left:379.170000px;}
.x8{left:386.910000px;}
.x1e{left:394.830000px;}
.x25{left:459.810000px;}
.x1c{left:463.680000px;}
.x27{left:467.640000px;}
.x24{left:483.390000px;}
.x2a{left:491.310000px;}
.x16{left:492.390000px;}
.x2c{left:498.150000px;}
.x20{left:507.060000px;}
.x28{left:514.890000px;}
.x32{left:519.120000px;}
.x2e{left:524.970000px;}
.x36{left:562.140000px;}
.x22{left:566.820000px;}
.x23{left:572.310000px;}
.x34{left:648.810000px;}
.x30{left:656.190000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:23.995264pt;}
.ls70{letter-spacing:-12.795360pt;}
.lsa8{letter-spacing:-7.993440pt;}
.ls74{letter-spacing:-3.835680pt;}
.ls67{letter-spacing:-3.437472pt;}
.ls56{letter-spacing:-2.236992pt;}
.ls8e{letter-spacing:-1.276608pt;}
.ls98{letter-spacing:-0.392352pt;}
.lsab{letter-spacing:-0.368928pt;}
.lsa4{letter-spacing:-0.269376pt;}
.ls8d{letter-spacing:-0.216672pt;}
.lsb1{letter-spacing:-0.160320pt;}
.lsb2{letter-spacing:-0.158400pt;}
.ls55{letter-spacing:-0.158112pt;}
.ls9d{letter-spacing:-0.157472pt;}
.ls95{letter-spacing:-0.154976pt;}
.ls7a{letter-spacing:-0.134688pt;}
.ls4c{letter-spacing:-0.123424pt;}
.ls6e{letter-spacing:-0.119168pt;}
.ls26{letter-spacing:-0.110400pt;}
.lsaa{letter-spacing:-0.087840pt;}
.ls50{letter-spacing:-0.084000pt;}
.ls9f{letter-spacing:-0.080864pt;}
.ls6f{letter-spacing:-0.076800pt;}
.ls54{letter-spacing:-0.070272pt;}
.ls68{letter-spacing:-0.058560pt;}
.ls33{letter-spacing:-0.057600pt;}
.ls25{letter-spacing:-0.052800pt;}
.ls9e{letter-spacing:-0.051072pt;}
.lsa9{letter-spacing:-0.046848pt;}
.ls30{letter-spacing:-0.043200pt;}
.lsa3{letter-spacing:-0.040992pt;}
.ls2b{letter-spacing:-0.038400pt;}
.lsa0{letter-spacing:-0.038304pt;}
.ls84{letter-spacing:-0.035136pt;}
.ls31{letter-spacing:-0.033600pt;}
.ls4f{letter-spacing:-0.029280pt;}
.lsb3{letter-spacing:-0.028800pt;}
.ls2d{letter-spacing:-0.024000pt;}
.ls4e{letter-spacing:-0.023424pt;}
.ls27{letter-spacing:-0.019200pt;}
.ls4d{letter-spacing:-0.017568pt;}
.ls29{letter-spacing:-0.014400pt;}
.ls83{letter-spacing:-0.012768pt;}
.ls69{letter-spacing:-0.011712pt;}
.ls28{letter-spacing:-0.009600pt;}
.ls65{letter-spacing:-0.008512pt;}
.ls94{letter-spacing:-0.005856pt;}
.ls71{letter-spacing:-0.005600pt;}
.ls2e{letter-spacing:-0.004800pt;}
.ls66{letter-spacing:-0.004256pt;}
.ls23{letter-spacing:0.000000pt;}
.ls64{letter-spacing:0.004256pt;}
.ls5f{letter-spacing:0.004800pt;}
.ls7c{letter-spacing:0.005600pt;}
.ls3d{letter-spacing:0.005856pt;}
.ls11{letter-spacing:0.009600pt;}
.ls3e{letter-spacing:0.011712pt;}
.ls1a{letter-spacing:0.012768pt;}
.lsa{letter-spacing:0.014400pt;}
.ls44{letter-spacing:0.017568pt;}
.lsac{letter-spacing:0.019200pt;}
.ls1b{letter-spacing:0.021280pt;}
.ls72{letter-spacing:0.023424pt;}
.ls20{letter-spacing:0.025536pt;}
.lse{letter-spacing:0.028800pt;}
.ls43{letter-spacing:0.029280pt;}
.ls63{letter-spacing:0.029792pt;}
.ls5{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.033600pt;}
.ls38{letter-spacing:0.035136pt;}
.lsb{letter-spacing:0.038400pt;}
.ls60{letter-spacing:0.040992pt;}
.ls4b{letter-spacing:0.042560pt;}
.ls14{letter-spacing:0.043200pt;}
.ls3{letter-spacing:0.044800pt;}
.ls8{letter-spacing:0.046848pt;}
.lsc{letter-spacing:0.048000pt;}
.ls3a{letter-spacing:0.052704pt;}
.ls12{letter-spacing:0.052800pt;}
.lsa6{letter-spacing:0.055328pt;}
.ls15{letter-spacing:0.057600pt;}
.ls5e{letter-spacing:0.058560pt;}
.lsb0{letter-spacing:0.062400pt;}
.ls92{letter-spacing:0.064416pt;}
.ls9{letter-spacing:0.067200pt;}
.ls0{letter-spacing:0.068096pt;}
.ls42{letter-spacing:0.070272pt;}
.ls13{letter-spacing:0.072000pt;}
.ls6b{letter-spacing:0.076128pt;}
.ls35{letter-spacing:0.076608pt;}
.ls10{letter-spacing:0.076800pt;}
.ls96{letter-spacing:0.078400pt;}
.ls7{letter-spacing:0.080640pt;}
.ls17{letter-spacing:0.081600pt;}
.ls5c{letter-spacing:0.081984pt;}
.ls4{letter-spacing:0.083200pt;}
.ls62{letter-spacing:0.084000pt;}
.lsa7{letter-spacing:0.085120pt;}
.ls76{letter-spacing:0.087840pt;}
.lsad{letter-spacing:0.091200pt;}
.ls88{letter-spacing:0.093696pt;}
.ls2f{letter-spacing:0.096000pt;}
.ls45{letter-spacing:0.099552pt;}
.ls1d{letter-spacing:0.110656pt;}
.ls73{letter-spacing:0.111264pt;}
.ls16{letter-spacing:0.115200pt;}
.ls93{letter-spacing:0.117120pt;}
.ls36{letter-spacing:0.122976pt;}
.ls21{letter-spacing:0.123424pt;}
.lsae{letter-spacing:0.134400pt;}
.ls82{letter-spacing:0.134688pt;}
.ls1c{letter-spacing:0.136192pt;}
.ls22{letter-spacing:0.140448pt;}
.lsd{letter-spacing:0.148800pt;}
.ls24{letter-spacing:0.158112pt;}
.lsb4{letter-spacing:0.158400pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.160320pt;}
.ls18{letter-spacing:0.161728pt;}
.ls8c{letter-spacing:0.162400pt;}
.ls61{letter-spacing:0.163968pt;}
.ls1{letter-spacing:0.187264pt;}
.ls99{letter-spacing:0.204960pt;}
.ls6{letter-spacing:0.281600pt;}
.ls19{letter-spacing:0.319200pt;}
.ls32{letter-spacing:0.321600pt;}
.ls37{letter-spacing:0.322080pt;}
.ls58{letter-spacing:0.323456pt;}
.ls5a{letter-spacing:0.327936pt;}
.ls3f{letter-spacing:0.480000pt;}
.ls40{letter-spacing:0.638304pt;}
.ls9c{letter-spacing:0.642656pt;}
.ls91{letter-spacing:0.644160pt;}
.ls8a{letter-spacing:0.966240pt;}
.ls53{letter-spacing:1.042368pt;}
.ls48{letter-spacing:1.760000pt;}
.ls4a{letter-spacing:1.919456pt;}
.lsa1{letter-spacing:2.887008pt;}
.ls97{letter-spacing:3.203232pt;}
.ls3b{letter-spacing:3.220800pt;}
.ls51{letter-spacing:3.519456pt;}
.ls89{letter-spacing:4.163616pt;}
.ls8f{letter-spacing:4.485696pt;}
.ls9a{letter-spacing:4.807776pt;}
.ls39{letter-spacing:6.400608pt;}
.ls2a{letter-spacing:6.561600pt;}
.lsa2{letter-spacing:9.603840pt;}
.ls2c{letter-spacing:10.080000pt;}
.ls1f{letter-spacing:10.478272pt;}
.ls6d{letter-spacing:10.482528pt;}
.ls9b{letter-spacing:10.801728pt;}
.ls86{letter-spacing:11.524608pt;}
.ls87{letter-spacing:11.682720pt;}
.lsaf{letter-spacing:12.000000pt;}
.ls49{letter-spacing:12.401984pt;}
.ls7b{letter-spacing:14.084000pt;}
.ls78{letter-spacing:14.481888pt;}
.ls41{letter-spacing:14.558016pt;}
.ls5b{letter-spacing:14.563872pt;}
.ls5d{letter-spacing:14.686848pt;}
.ls46{letter-spacing:14.721984pt;}
.ls79{letter-spacing:14.727840pt;}
.ls52{letter-spacing:14.798112pt;}
.ls75{letter-spacing:14.803968pt;}
.ls47{letter-spacing:14.880096pt;}
.ls85{letter-spacing:14.885952pt;}
.ls81{letter-spacing:15.038208pt;}
.ls8b{letter-spacing:15.044064pt;}
.ls7f{letter-spacing:15.518400pt;}
.ls77{letter-spacing:15.846336pt;}
.lsa5{letter-spacing:16.162560pt;}
.ls90{letter-spacing:17.286912pt;}
.ls3c{letter-spacing:17.439168pt;}
.ls80{letter-spacing:23.201472pt;}
.ls6c{letter-spacing:67.250304pt;}
.ls7d{letter-spacing:326.320288pt;}
.ls57{letter-spacing:326.350080pt;}
.ls7e{letter-spacing:326.958688pt;}
.ls59{letter-spacing:326.988480pt;}
.ls34{letter-spacing:513.839648pt;}
.ls6a{letter-spacing:513.886464pt;}
.ws4{word-spacing:-64.281600pt;}
.ws3{word-spacing:-64.083200pt;}
.ws2e{word-spacing:-58.887936pt;}
.ws14{word-spacing:-58.882080pt;}
.ws9{word-spacing:-48.321600pt;}
.ws3d{word-spacing:-48.004800pt;}
.wsb{word-spacing:-48.000000pt;}
.ws17{word-spacing:-35.680608pt;}
.ws95{word-spacing:-34.087776pt;}
.ws8b{word-spacing:-32.483232pt;}
.wsaa{word-spacing:-32.167008pt;}
.ws6d{word-spacing:-30.246240pt;}
.ws7a{word-spacing:-29.924160pt;}
.ws20{word-spacing:-29.918304pt;}
.ws2f{word-spacing:-29.607936pt;}
.ws1f{word-spacing:-29.602080pt;}
.ws30{word-spacing:-29.285856pt;}
.ws1{word-spacing:-29.280000pt;}
.ws59{word-spacing:-28.005600pt;}
.ws6a{word-spacing:-28.003392pt;}
.ws26{word-spacing:-28.000000pt;}
.ws25{word-spacing:-27.043008pt;}
.ws4b{word-spacing:-25.444320pt;}
.ws5{word-spacing:-24.000000pt;}
.ws28{word-spacing:-23.199456pt;}
.ws2c{word-spacing:-21.603456pt;}
.ws2a{word-spacing:-21.599200pt;}
.ws2d{word-spacing:-21.284256pt;}
.ws0{word-spacing:-21.280000pt;}
.wsab{word-spacing:-19.693728pt;}
.wsae{word-spacing:-17.128800pt;}
.ws70{word-spacing:-15.213888pt;}
.ws79{word-spacing:-14.903520pt;}
.ws7c{word-spacing:-14.891808pt;}
.ws8a{word-spacing:-14.844960pt;}
.ws32{word-spacing:-14.803968pt;}
.ws23{word-spacing:-14.798112pt;}
.ws8c{word-spacing:-14.739552pt;}
.ws69{word-spacing:-14.721984pt;}
.ws8e{word-spacing:-14.716128pt;}
.ws4d{word-spacing:-14.710272pt;}
.ws7d{word-spacing:-14.704416pt;}
.ws1a{word-spacing:-14.692704pt;}
.ws49{word-spacing:-14.680992pt;}
.ws21{word-spacing:-14.669280pt;}
.ws51{word-spacing:-14.663424pt;}
.ws74{word-spacing:-14.657568pt;}
.ws4a{word-spacing:-14.651712pt;}
.ws38{word-spacing:-14.640000pt;}
.ws9b{word-spacing:-14.628288pt;}
.ws16{word-spacing:-14.622432pt;}
.ws89{word-spacing:-14.610720pt;}
.wsaf{word-spacing:-14.593152pt;}
.ws5f{word-spacing:-14.581440pt;}
.ws27{word-spacing:-14.575584pt;}
.ws22{word-spacing:-14.569728pt;}
.ws1b{word-spacing:-14.563872pt;}
.ws24{word-spacing:-14.481888pt;}
.ws44{word-spacing:-14.294496pt;}
.ws93{word-spacing:-14.282784pt;}
.ws4c{word-spacing:-14.276928pt;}
.ws33{word-spacing:-14.271072pt;}
.ws3e{word-spacing:-14.265216pt;}
.ws39{word-spacing:-14.259360pt;}
.ws37{word-spacing:-14.253504pt;}
.ws15{word-spacing:-14.247648pt;}
.ws1d{word-spacing:-14.241792pt;}
.ws64{word-spacing:-14.162400pt;}
.ws58{word-spacing:-14.000000pt;}
.ws19{word-spacing:-13.916000pt;}
.ws86{word-spacing:-13.638624pt;}
.ws47{word-spacing:-13.609344pt;}
.ws5a{word-spacing:-13.603488pt;}
.wsb7{word-spacing:-13.304832pt;}
.ws65{word-spacing:-13.293120pt;}
.ws50{word-spacing:-12.988608pt;}
.wsb8{word-spacing:-12.976896pt;}
.ws4e{word-spacing:-12.971040pt;}
.ws80{word-spacing:-12.654816pt;}
.wsa0{word-spacing:-12.362016pt;}
.wsbc{word-spacing:-12.134400pt;}
.ws94{word-spacing:-12.034080pt;}
.wsbe{word-spacing:-12.033600pt;}
.wsbf{word-spacing:-12.019200pt;}
.ws7e{word-spacing:-12.016512pt;}
.ws7{word-spacing:-12.014400pt;}
.wsbd{word-spacing:-12.004800pt;}
.ws3c{word-spacing:-12.000000pt;}
.wsbb{word-spacing:-11.990400pt;}
.wsc0{word-spacing:-11.971200pt;}
.wsa{word-spacing:-11.966400pt;}
.ws6{word-spacing:-11.947200pt;}
.wsc{word-spacing:-11.942400pt;}
.ws41{word-spacing:-11.923200pt;}
.ws53{word-spacing:-11.723712pt;}
.ws81{word-spacing:-11.717856pt;}
.ws91{word-spacing:-11.712000pt;}
.ws1c{word-spacing:-11.682720pt;}
.wse{word-spacing:-10.801728pt;}
.ws11{word-spacing:-10.780448pt;}
.wsd{word-spacing:-10.750656pt;}
.wsa4{word-spacing:-10.716608pt;}
.wsba{word-spacing:-10.695328pt;}
.ws29{word-spacing:-10.682560pt;}
.wsf{word-spacing:-10.665536pt;}
.ws10{word-spacing:-10.640000pt;}
.wsa6{word-spacing:-10.601696pt;}
.wsa5{word-spacing:-10.559136pt;}
.wsa3{word-spacing:-10.482528pt;}
.ws75{word-spacing:-10.429536pt;}
.wsb3{word-spacing:-9.135360pt;}
.wsb1{word-spacing:-8.807424pt;}
.ws9e{word-spacing:-8.508768pt;}
.ws48{word-spacing:-8.169120pt;}
.ws8{word-spacing:-8.000000pt;}
.ws9c{word-spacing:-7.530816pt;}
.wsb5{word-spacing:-6.260064pt;}
.ws97{word-spacing:-5.621760pt;}
.ws60{word-spacing:-5.610048pt;}
.ws61{word-spacing:-5.598336pt;}
.wsac{word-spacing:-5.492928pt;}
.ws6b{word-spacing:-4.930752pt;}
.ws43{word-spacing:-3.683424pt;}
.wsa8{word-spacing:-3.390624pt;}
.ws99{word-spacing:-3.384768pt;}
.wsad{word-spacing:-2.933856pt;}
.ws45{word-spacing:-0.527040pt;}
.ws77{word-spacing:-0.404064pt;}
.ws2{word-spacing:-0.392352pt;}
.ws5d{word-spacing:-0.357216pt;}
.ws96{word-spacing:-0.327936pt;}
.ws40{word-spacing:-0.322080pt;}
.ws63{word-spacing:-0.316224pt;}
.ws34{word-spacing:-0.281088pt;}
.ws71{word-spacing:-0.275232pt;}
.ws55{word-spacing:-0.269376pt;}
.ws42{word-spacing:-0.240096pt;}
.ws52{word-spacing:-0.187392pt;}
.ws5e{word-spacing:-0.169824pt;}
.ws2b{word-spacing:-0.157472pt;}
.ws1e{word-spacing:-0.076128pt;}
.ws5b{word-spacing:-0.070272pt;}
.wsb0{word-spacing:-0.052704pt;}
.ws31{word-spacing:-0.005856pt;}
.ws12{word-spacing:0.000000pt;}
.ws78{word-spacing:0.017568pt;}
.ws36{word-spacing:0.023424pt;}
.wsa2{word-spacing:0.052704pt;}
.ws6f{word-spacing:0.111264pt;}
.wsc1{word-spacing:0.120000pt;}
.ws82{word-spacing:0.122976pt;}
.wsc6{word-spacing:0.124800pt;}
.wsc7{word-spacing:0.144000pt;}
.ws57{word-spacing:0.152256pt;}
.ws3f{word-spacing:0.222528pt;}
.ws83{word-spacing:0.234240pt;}
.ws6e{word-spacing:0.240096pt;}
.ws56{word-spacing:0.327936pt;}
.ws87{word-spacing:0.556320pt;}
.ws73{word-spacing:0.562176pt;}
.ws66{word-spacing:0.872544pt;}
.ws4f{word-spacing:0.954528pt;}
.wsb9{word-spacing:1.276608pt;}
.ws7b{word-spacing:1.522560pt;}
.ws67{word-spacing:1.715808pt;}
.ws46{word-spacing:1.838784pt;}
.wsa7{word-spacing:1.932480pt;}
.wsa1{word-spacing:2.155008pt;}
.ws7f{word-spacing:2.184288pt;}
.ws54{word-spacing:2.553216pt;}
.ws72{word-spacing:2.799168pt;}
.ws5c{word-spacing:2.881152pt;}
.ws92{word-spacing:2.892864pt;}
.wsc4{word-spacing:3.033600pt;}
.wsc3{word-spacing:3.043200pt;}
.ws76{word-spacing:4.075776pt;}
.wsb4{word-spacing:5.036160pt;}
.wsb2{word-spacing:5.170848pt;}
.wsc8{word-spacing:5.241600pt;}
.ws9f{word-spacing:6.312768pt;}
.ws35{word-spacing:6.576288pt;}
.ws90{word-spacing:6.769536pt;}
.wsc5{word-spacing:6.868800pt;}
.ws9d{word-spacing:7.741632pt;}
.ws62{word-spacing:8.315520pt;}
.ws8f{word-spacing:8.906976pt;}
.ws98{word-spacing:8.924544pt;}
.ws84{word-spacing:8.988960pt;}
.ws85{word-spacing:9.053376pt;}
.wsb6{word-spacing:9.621408pt;}
.ws3b{word-spacing:10.224576pt;}
.ws13{word-spacing:10.410176pt;}
.ws3a{word-spacing:10.441248pt;}
.ws9a{word-spacing:11.108832pt;}
.ws68{word-spacing:13.919712pt;}
.ws8d{word-spacing:14.194944pt;}
.ws88{word-spacing:14.651712pt;}
.wsa9{word-spacing:16.267968pt;}
.ws6c{word-spacing:18.118464pt;}
.ws18{word-spacing:20.045088pt;}
.wsc2{word-spacing:40.128000pt;}
._23{margin-left:-29.447040pt;}
._1b{margin-left:-27.857280pt;}
._16{margin-left:-26.879040pt;}
._17{margin-left:-24.317184pt;}
._25{margin-left:-22.724352pt;}
._1a{margin-left:-21.772896pt;}
._26{margin-left:-20.779584pt;}
._20{margin-left:-19.601344pt;}
._11{margin-left:-18.560416pt;}
._19{margin-left:-16.898400pt;}
._18{margin-left:-16.007520pt;}
._14{margin-left:-14.612352pt;}
._12{margin-left:-13.518624pt;}
._10{margin-left:-12.376896pt;}
._2c{margin-left:-11.365056pt;}
._1{margin-left:-10.354848pt;}
._c{margin-left:-9.327488pt;}
._13{margin-left:-8.306880pt;}
._9{margin-left:-6.669600pt;}
._a{margin-left:-5.592000pt;}
._1c{margin-left:-4.376384pt;}
._f{margin-left:-3.383072pt;}
._6{margin-left:-2.040000pt;}
._3{margin-left:-1.017600pt;}
._0{width:0.957600pt;}
._4{width:1.912800pt;}
._d{width:3.024000pt;}
._8{width:4.598400pt;}
._7{width:5.553600pt;}
._5{width:7.161600pt;}
._21{width:8.078208pt;}
._2{width:9.720704pt;}
._b{width:10.924672pt;}
._28{width:12.409120pt;}
._1d{width:13.937472pt;}
._1f{width:16.013088pt;}
._15{width:17.820096pt;}
._e{width:19.003200pt;}
._1e{width:22.323360pt;}
._22{width:24.513216pt;}
._29{width:26.059200pt;}
._24{width:28.943136pt;}
._2a{width:39.364800pt;}
._2b{width:40.569600pt;}
._27{width:224.352000pt;}
.fs7{font-size:26.560000pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:37.440000pt;}
.fs0{font-size:42.560000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs2{font-size:56.000000pt;}
.fs3{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:44.618667pt;}
.y2{bottom:60.698667pt;}
.y32{bottom:78.056131pt;}
.y1a5{bottom:78.697995pt;}
.y77{bottom:78.698155pt;}
.y181{bottom:78.698547pt;}
.y58{bottom:78.698667pt;}
.yfa{bottom:79.979555pt;}
.y130{bottom:80.538667pt;}
.y121{bottom:82.701331pt;}
.ybb{bottom:87.178667pt;}
.y1c8{bottom:89.978667pt;}
.y31{bottom:90.296387pt;}
.y13a{bottom:90.539563pt;}
.y1a4{bottom:92.538507pt;}
.y76{bottom:92.538667pt;}
.y180{bottom:92.539059pt;}
.y57{bottom:96.538667pt;}
.yf9{bottom:99.979259pt;}
.y12f{bottom:100.538667pt;}
.y12e{bottom:100.539267pt;}
.y120{bottom:102.701035pt;}
.y30{bottom:103.176107pt;}
.y1a3{bottom:106.298155pt;}
.y56{bottom:106.298667pt;}
.y17f{bottom:106.298707pt;}
.yba{bottom:107.178667pt;}
.y157{bottom:109.660491pt;}
.y139{bottom:110.539267pt;}
.y1c7{bottom:110.858667pt;}
.y2f{bottom:117.016619pt;}
.y166{bottom:117.981923pt;}
.yf8{bottom:119.978963pt;}
.y1a2{bottom:120.138667pt;}
.y17e{bottom:120.139219pt;}
.y11f{bottom:122.700739pt;}
.y1a1{bottom:124.138667pt;}
.y1c6{bottom:126.458667pt;}
.y55{bottom:127.981035pt;}
.y156{bottom:129.660195pt;}
.y92{bottom:129.739259pt;}
.y138{bottom:130.538971pt;}
.y2e{bottom:130.857131pt;}
.y17d{bottom:133.978667pt;}
.y17c{bottom:137.978667pt;}
.y165{bottom:137.981627pt;}
.yf7{bottom:139.978667pt;}
.y11e{bottom:142.700443pt;}
.y10e{bottom:142.938963pt;}
.y2d{bottom:144.697643pt;}
.y104{bottom:145.981331pt;}
.y1c5{bottom:147.338667pt;}
.y17b{bottom:147.818667pt;}
.y54{bottom:147.980739pt;}
.y155{bottom:149.659899pt;}
.y91{bottom:149.738963pt;}
.y137{bottom:150.859291pt;}
.y17a{bottom:151.818667pt;}
.y164{bottom:157.981331pt;}
.y2c{bottom:158.538155pt;}
.yf6{bottom:159.978963pt;}
.y179{bottom:161.578667pt;}
.ye6{bottom:162.063699pt;}
.y11d{bottom:162.700147pt;}
.y10d{bottom:162.938667pt;}
.y10b{bottom:162.940147pt;}
.y103{bottom:165.981035pt;}
.y53{bottom:167.980443pt;}
.y1c4{bottom:168.218667pt;}
.y10c{bottom:168.938667pt;}
.y154{bottom:169.659603pt;}
.y90{bottom:169.738667pt;}
.y8f{bottom:169.744043pt;}
.ya9{bottom:175.338667pt;}
.y2b{bottom:176.378667pt;}
.y163{bottom:177.981035pt;}
.yf5{bottom:179.978667pt;}
.ye5{bottom:182.063403pt;}
.y11c{bottom:182.699851pt;}
.y10a{bottom:182.939851pt;}
.y2a{bottom:185.578947pt;}
.y136{bottom:185.898667pt;}
.y102{bottom:185.980739pt;}
.y52{bottom:187.980147pt;}
.y1c3{bottom:188.459067pt;}
.y153{bottom:189.659307pt;}
.y8e{bottom:189.743747pt;}
.y12b{bottom:190.298667pt;}
.y162{bottom:197.980739pt;}
.y29{bottom:198.458667pt;}
.yf4{bottom:199.982219pt;}
.ye4{bottom:202.063107pt;}
.y1c2{bottom:202.298667pt;}
.y11b{bottom:202.699555pt;}
.y109{bottom:202.939555pt;}
.y115{bottom:205.340443pt;}
.y101{bottom:205.980443pt;}
.y51{bottom:207.979851pt;}
.y75{bottom:209.021331pt;}
.y152{bottom:209.659011pt;}
.y8d{bottom:209.743451pt;}
.y14c{bottom:210.221923pt;}
.y12a{bottom:210.301035pt;}
.y28{bottom:212.218667pt;}
.y161{bottom:217.980443pt;}
.yf3{bottom:219.981923pt;}
.y135{bottom:220.618667pt;}
.y1c1{bottom:221.418267pt;}
.y18f{bottom:221.662515pt;}
.ye3{bottom:222.062811pt;}
.y11a{bottom:222.699259pt;}
.y108{bottom:222.939259pt;}
.y114{bottom:225.340147pt;}
.y100{bottom:225.980147pt;}
.y50{bottom:227.979555pt;}
.y74{bottom:229.021035pt;}
.y151{bottom:229.658715pt;}
.y8c{bottom:229.743155pt;}
.y14b{bottom:230.221627pt;}
.y129{bottom:230.300739pt;}
.y1c0{bottom:235.178667pt;}
.y160{bottom:237.980147pt;}
.yf2{bottom:239.981627pt;}
.y133{bottom:240.617867pt;}
.y134{bottom:240.618667pt;}
.y18e{bottom:241.662219pt;}
.ye2{bottom:242.062515pt;}
.y119{bottom:242.698963pt;}
.y107{bottom:242.938963pt;}
.y27{bottom:244.858267pt;}
.y113{bottom:245.339851pt;}
.yff{bottom:245.979851pt;}
.y4f{bottom:247.979259pt;}
.y73{bottom:249.020739pt;}
.y150{bottom:249.658419pt;}
.y8b{bottom:249.742859pt;}
.y14a{bottom:250.221331pt;}
.y128{bottom:250.300443pt;}
.y1bf{bottom:254.299067pt;}
.y15f{bottom:257.979851pt;}
.yf1{bottom:259.981331pt;}
.y26{bottom:260.938667pt;}
.y18d{bottom:261.661923pt;}
.ye1{bottom:262.062219pt;}
.y118{bottom:262.698667pt;}
.y19f{bottom:262.703107pt;}
.y106{bottom:262.938667pt;}
.y112{bottom:265.339555pt;}
.yfe{bottom:265.979555pt;}
.y4e{bottom:267.978963pt;}
.y1be{bottom:268.138667pt;}
.y1a0{bottom:268.698667pt;}
.y72{bottom:269.020443pt;}
.y8a{bottom:269.742563pt;}
.y14f{bottom:269.978739pt;}
.y149{bottom:270.221035pt;}
.y127{bottom:270.300147pt;}
.y25{bottom:276.779067pt;}
.y15e{bottom:277.979555pt;}
.yf0{bottom:279.981035pt;}
.y18c{bottom:281.661627pt;}
.y1bd{bottom:281.899067pt;}
.ye0{bottom:282.061923pt;}
.y117{bottom:282.698667pt;}
.y19e{bottom:282.702811pt;}
.y105{bottom:282.939267pt;}
.y111{bottom:285.339259pt;}
.yfd{bottom:285.979259pt;}
.y4d{bottom:287.980739pt;}
.y71{bottom:289.020147pt;}
.y89{bottom:289.742267pt;}
.y148{bottom:290.220739pt;}
.y126{bottom:290.299851pt;}
.y24{bottom:290.618667pt;}
.y1bc{bottom:295.738667pt;}
.yb7{bottom:296.461083pt;}
.y15d{bottom:297.979259pt;}
.yef{bottom:299.980739pt;}
.y18b{bottom:301.661331pt;}
.ydf{bottom:302.061627pt;}
.y116{bottom:302.698667pt;}
.y19d{bottom:302.702515pt;}
.y14e{bottom:304.698963pt;}
.y23{bottom:305.018667pt;}
.y110{bottom:305.338963pt;}
.yfc{bottom:305.978963pt;}
.y9f{bottom:307.258267pt;}
.y4c{bottom:307.980443pt;}
.y70{bottom:309.019851pt;}
.y88{bottom:309.741971pt;}
.y147{bottom:310.220443pt;}
.y125{bottom:310.299555pt;}
.yd3{bottom:311.984579pt;}
.y1bb{bottom:314.858267pt;}
.yb6{bottom:316.460787pt;}
.y15c{bottom:317.978963pt;}
.yee{bottom:319.980443pt;}
.y22{bottom:320.138467pt;}
.y18a{bottom:321.661035pt;}
.yde{bottom:322.061331pt;}
.y19c{bottom:322.702219pt;}
.y14d{bottom:324.698667pt;}
.y10f{bottom:325.338667pt;}
.yfb{bottom:325.978667pt;}
.y4b{bottom:327.980147pt;}
.y1ba{bottom:328.697867pt;}
.y6f{bottom:329.019555pt;}
.y87{bottom:329.741675pt;}
.y146{bottom:330.220147pt;}
.y124{bottom:330.299259pt;}
.yd2{bottom:331.984283pt;}
.y21{bottom:336.298667pt;}
.yb5{bottom:336.460491pt;}
.y15b{bottom:337.978667pt;}
.yed{bottom:339.980147pt;}
.y189{bottom:341.660739pt;}
.ydd{bottom:342.061035pt;}
.y1b9{bottom:342.458267pt;}
.y19b{bottom:342.701923pt;}
.y4a{bottom:347.979851pt;}
.y6e{bottom:349.019259pt;}
.y86{bottom:349.741379pt;}
.y145{bottom:350.219851pt;}
.y123{bottom:350.298963pt;}
.yd1{bottom:351.983987pt;}
.y20{bottom:352.138667pt;}
.yb4{bottom:356.460195pt;}
.y15a{bottom:357.978667pt;}
.yec{bottom:359.979851pt;}
.y188{bottom:361.660443pt;}
.ydc{bottom:362.060739pt;}
.y1b8{bottom:362.218667pt;}
.y19a{bottom:362.701627pt;}
.y1f{bottom:365.978267pt;}
.y49{bottom:367.979555pt;}
.y178{bottom:367.981331pt;}
.y6d{bottom:369.018963pt;}
.y85{bottom:369.741083pt;}
.y144{bottom:370.219555pt;}
.y122{bottom:370.298667pt;}
.yd0{bottom:371.983691pt;}
.yb3{bottom:376.459899pt;}
.y1b7{bottom:377.178667pt;}
.y1e{bottom:379.738667pt;}
.yeb{bottom:379.979555pt;}
.y187{bottom:381.660147pt;}
.ydb{bottom:382.060443pt;}
.y199{bottom:382.701331pt;}
.y48{bottom:387.979259pt;}
.y177{bottom:387.981035pt;}
.y6c{bottom:389.018667pt;}
.y84{bottom:389.740787pt;}
.y143{bottom:390.219259pt;}
.ycf{bottom:391.983395pt;}
.ya8{bottom:392.940739pt;}
.y1d{bottom:393.578267pt;}
.y1b6{bottom:396.298267pt;}
.yb2{bottom:396.459603pt;}
.y12d{bottom:397.018667pt;}
.yea{bottom:399.979259pt;}
.y186{bottom:401.659851pt;}
.yda{bottom:402.060147pt;}
.y198{bottom:402.701035pt;}
.y1c{bottom:407.338667pt;}
.y47{bottom:407.978963pt;}
.y176{bottom:407.980739pt;}
.y6b{bottom:408.538267pt;}
.y83{bottom:409.740491pt;}
.y1b5{bottom:410.058667pt;}
.y142{bottom:410.218963pt;}
.yce{bottom:411.983099pt;}
.ya7{bottom:412.940443pt;}
.yb1{bottom:416.459307pt;}
.y12c{bottom:417.018667pt;}
.ye9{bottom:419.978963pt;}
.y1b{bottom:421.178267pt;}
.y185{bottom:421.659555pt;}
.yd9{bottom:422.059851pt;}
.y197{bottom:422.700739pt;}
.y46{bottom:427.978667pt;}
.y175{bottom:427.980443pt;}
.y82{bottom:429.740195pt;}
.y141{bottom:430.218667pt;}
.ycd{bottom:431.982803pt;}
.ya6{bottom:432.940147pt;}
.y1a{bottom:434.938667pt;}
.yb0{bottom:436.459011pt;}
.ye8{bottom:439.978667pt;}
.y1b4{bottom:441.262099pt;}
.y184{bottom:441.659259pt;}
.yd8{bottom:442.059555pt;}
.y196{bottom:442.700443pt;}
.y174{bottom:447.980147pt;}
.y45{bottom:447.980739pt;}
.y19{bottom:448.778267pt;}
.y81{bottom:449.739899pt;}
.y140{bottom:450.218267pt;}
.ycc{bottom:451.982507pt;}
.ya5{bottom:452.939851pt;}
.yaf{bottom:456.458715pt;}
.ye7{bottom:459.978667pt;}
.y183{bottom:461.658963pt;}
.yd7{bottom:462.059259pt;}
.y18{bottom:462.538667pt;}
.y195{bottom:462.700147pt;}
.y173{bottom:467.979851pt;}
.y44{bottom:467.980443pt;}
.y80{bottom:469.739603pt;}
.y13f{bottom:470.218667pt;}
.ya4{bottom:472.939555pt;}
.yb9{bottom:474.458963pt;}
.y17{bottom:476.378267pt;}
.yae{bottom:476.458419pt;}
.y182{bottom:481.658667pt;}
.yd6{bottom:482.058963pt;}
.y194{bottom:482.699851pt;}
.y172{bottom:487.979555pt;}
.y43{bottom:487.980147pt;}
.ycb{bottom:488.302883pt;}
.y7f{bottom:489.739307pt;}
.y16{bottom:490.138667pt;}
.ya3{bottom:492.939259pt;}
.y6a{bottom:494.058667pt;}
.yb8{bottom:494.458667pt;}
.yad{bottom:496.458123pt;}
.yd5{bottom:502.058667pt;}
.y193{bottom:502.699555pt;}
.y15{bottom:503.978267pt;}
.y171{bottom:507.979259pt;}
.y42{bottom:507.979851pt;}
.y1b3{bottom:507.982435pt;}
.y9e{bottom:508.938667pt;}
.y69{bottom:508.942219pt;}
.y7e{bottom:509.739011pt;}
.ya2{bottom:512.938963pt;}
.yac{bottom:516.778443pt;}
.y14{bottom:517.738667pt;}
.yd4{bottom:522.058667pt;}
.y192{bottom:522.699259pt;}
.yca{bottom:523.023107pt;}
.y170{bottom:527.978963pt;}
.y41{bottom:527.979555pt;}
.y1b2{bottom:527.982139pt;}
.y68{bottom:528.941923pt;}
.y9d{bottom:528.942523pt;}
.y7d{bottom:529.738715pt;}
.y13{bottom:531.578267pt;}
.ya1{bottom:532.938667pt;}
.y191{bottom:542.698963pt;}
.yc9{bottom:543.022811pt;}
.y12{bottom:545.338667pt;}
.y16f{bottom:547.978667pt;}
.y16d{bottom:547.978963pt;}
.y40{bottom:547.979259pt;}
.y1b1{bottom:547.981843pt;}
.y67{bottom:548.941627pt;}
.y9c{bottom:548.942227pt;}
.y7c{bottom:549.738419pt;}
.yab{bottom:551.498667pt;}
.ya0{bottom:552.538667pt;}
.y16e{bottom:553.978667pt;}
.y11{bottom:559.099067pt;}
.y190{bottom:562.698667pt;}
.y132{bottom:563.018267pt;}
.yc8{bottom:563.022515pt;}
.y16b{bottom:567.978267pt;}
.y16c{bottom:567.978667pt;}
.y3f{bottom:567.978963pt;}
.y1b0{bottom:567.981547pt;}
.y66{bottom:568.941331pt;}
.y9b{bottom:568.941931pt;}
.y7b{bottom:569.738123pt;}
.yaa{bottom:571.098667pt;}
.y10{bottom:572.938667pt;}
.y131{bottom:583.018667pt;}
.yc7{bottom:583.022219pt;}
.yf{bottom:586.938667pt;}
.y16a{bottom:587.978667pt;}
.y3e{bottom:587.979851pt;}
.y169{bottom:587.980787pt;}
.y1af{bottom:587.981251pt;}
.y65{bottom:588.941035pt;}
.y9a{bottom:588.941635pt;}
.y7a{bottom:590.058443pt;}
.ye{bottom:602.858667pt;}
.yc6{bottom:603.021923pt;}
.y3d{bottom:607.979555pt;}
.y168{bottom:607.980491pt;}
.y1ae{bottom:607.980955pt;}
.y64{bottom:608.940739pt;}
.y99{bottom:608.941339pt;}
.yd{bottom:617.098667pt;}
.yc5{bottom:623.021627pt;}
.y79{bottom:624.778667pt;}
.y3c{bottom:627.979259pt;}
.y1ad{bottom:627.980659pt;}
.y167{bottom:628.300811pt;}
.y63{bottom:628.940443pt;}
.y98{bottom:628.941043pt;}
.yc{bottom:633.738667pt;}
.y13e{bottom:635.738963pt;}
.yc4{bottom:643.021331pt;}
.y78{bottom:644.298667pt;}
.y3b{bottom:647.978963pt;}
.y1ac{bottom:647.980363pt;}
.y62{bottom:648.940147pt;}
.y97{bottom:648.940747pt;}
.yb{bottom:650.218667pt;}
.y13d{bottom:655.738667pt;}
.y13c{bottom:655.738867pt;}
.y159{bottom:658.778667pt;}
.yc3{bottom:663.021035pt;}
.y3a{bottom:667.978667pt;}
.y1ab{bottom:667.980067pt;}
.ya{bottom:668.618667pt;}
.y61{bottom:668.939851pt;}
.y96{bottom:668.940451pt;}
.y158{bottom:678.778667pt;}
.yc2{bottom:683.020739pt;}
.y9{bottom:686.618667pt;}
.y1aa{bottom:687.979771pt;}
.y39{bottom:687.979851pt;}
.y60{bottom:688.939555pt;}
.y95{bottom:688.940155pt;}
.yc1{bottom:703.020443pt;}
.y8{bottom:703.098667pt;}
.y1a9{bottom:707.979475pt;}
.y38{bottom:707.979555pt;}
.y5f{bottom:708.939259pt;}
.y94{bottom:708.939859pt;}
.y1ce{bottom:715.498667pt;}
.y7{bottom:719.418667pt;}
.y13b{bottom:723.018667pt;}
.yc0{bottom:723.020147pt;}
.y1a8{bottom:727.979179pt;}
.y37{bottom:727.979259pt;}
.y5e{bottom:728.938963pt;}
.y93{bottom:728.939563pt;}
.y1cd{bottom:731.098667pt;}
.y6{bottom:737.258667pt;}
.ybf{bottom:743.019851pt;}
.y1cc{bottom:745.978667pt;}
.y1a7{bottom:747.978883pt;}
.y36{bottom:747.978963pt;}
.y5d{bottom:748.938667pt;}
.y5b{bottom:748.939267pt;}
.y5c{bottom:754.938667pt;}
.y1cb{bottom:761.098667pt;}
.ybe{bottom:763.019555pt;}
.y1a6{bottom:767.978587pt;}
.y35{bottom:767.978667pt;}
.y5a{bottom:768.938971pt;}
.y5{bottom:770.938667pt;}
.ybd{bottom:783.019259pt;}
.y34{bottom:787.978291pt;}
.y59{bottom:789.259291pt;}
.ybc{bottom:803.018963pt;}
.y1ca{bottom:811.418667pt;}
.y4{bottom:823.018667pt;}
.y33{bottom:824.298667pt;}
.y1c9{bottom:827.018667pt;}
.y1{bottom:869.978667pt;}
.h12{height:18.454531pt;}
.hd{height:19.577500pt;}
.h11{height:26.014219pt;}
.hc{height:29.571719pt;}
.h9{height:33.351562pt;}
.h1{height:35.577500pt;}
.h2{height:37.131406pt;}
.ha{height:37.687500pt;}
.h3{height:38.910156pt;}
.h6{height:40.125000pt;}
.h8{height:40.688906pt;}
.hb{height:40.875000pt;}
.h7{height:43.375000pt;}
.h13{height:46.812500pt;}
.hf{height:48.947764pt;}
.h4{height:48.952500pt;}
.he{height:49.867500pt;}
.h10{height:50.009483pt;}
.h5{height:54.500000pt;}
.h0{height:972.000000pt;}
.w0{width:688.000000pt;}
.x0{left:0.000000pt;}
.x2{left:90.720000pt;}
.x13{left:94.080000pt;}
.x3{left:104.720000pt;}
.x38{left:113.360400pt;}
.x7{left:123.760000pt;}
.x33{left:125.200000pt;}
.xb{left:128.560000pt;}
.x14{left:134.079310pt;}
.x4{left:145.360000pt;}
.xc{left:147.359200pt;}
.xd{left:156.880800pt;}
.x10{left:164.080000pt;}
.x11{left:168.800000pt;}
.x15{left:178.720000pt;}
.x1d{left:184.720000pt;}
.x35{left:202.160000pt;}
.x2f{left:230.160000pt;}
.x2d{left:235.279965pt;}
.x18{left:244.960097pt;}
.x1a{left:250.960000pt;}
.x1f{left:261.680000pt;}
.x29{left:265.199315pt;}
.x21{left:272.159518pt;}
.x1b{left:274.960000pt;}
.x37{left:278.239920pt;}
.x19{left:280.960000pt;}
.xa{left:284.160000pt;}
.x26{left:286.160000pt;}
.x17{left:290.560000pt;}
.x12{left:292.959964pt;}
.xf{left:297.920000pt;}
.x9{left:299.200000pt;}
.xe{left:305.280000pt;}
.x31{left:310.800000pt;}
.x5{left:314.640000pt;}
.x6{left:319.920000pt;}
.x2b{left:333.920000pt;}
.x1{left:337.040000pt;}
.x8{left:343.920000pt;}
.x1e{left:350.960000pt;}
.x25{left:408.720000pt;}
.x1c{left:412.160000pt;}
.x27{left:415.680000pt;}
.x24{left:429.680000pt;}
.x2a{left:436.720000pt;}
.x16{left:437.680000pt;}
.x2c{left:442.800000pt;}
.x20{left:450.720000pt;}
.x28{left:457.680000pt;}
.x32{left:461.440000pt;}
.x2e{left:466.640000pt;}
.x36{left:499.680000pt;}
.x22{left:503.840000pt;}
.x23{left:508.720000pt;}
.x34{left:576.720000pt;}
.x30{left:583.280000pt;}
}




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