
    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_56201588f50f1b6488ec46c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_bff6921a4850399bb70986f1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0af2590f7ce3ef6cf48184c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4935d736cefccbb98ad6cd2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_3469fef58f8dc465a5154634.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_eefbfea1481e02491bc3760c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_50f1a4c09dcfe5436920a66c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_ead15c447f0f0e2be56b7db4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.431000;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_cf85e85713ebbf920770bd3b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e34696790d71c8f53f90a99e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d5fdfec50ef8915a91504c05.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.686000;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_25d2213859deba7afb14ce6c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ffe{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:fff;src:url('chunks/assets/font_750398f81e884633df82346b.woff2')format("woff");}.fff{font-family:fff;line-height:0.906000;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_16c54b59c2cb71dee693f8b5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.239258;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_4c2f8e6374936ce4001d698f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.635000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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);}
.v2{vertical-align:-22.321860px;}
.v9{vertical-align:-17.003880px;}
.va{vertical-align:-14.826540px;}
.v4{vertical-align:-10.800000px;}
.v8{vertical-align:-5.758596px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:10.800000px;}
.v6{vertical-align:23.760960px;}
.v3{vertical-align:27.360960px;}
.v7{vertical-align:30.239040px;}
.v1{vertical-align:37.439040px;}
.ls6{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000156px;}
.ls10{letter-spacing:0.000925px;}
.ls47{letter-spacing:0.001110px;}
.ls48{letter-spacing:0.001128px;}
.ls15{letter-spacing:0.001349px;}
.ls21{letter-spacing:0.001352px;}
.ls27{letter-spacing:0.003752px;}
.ls24{letter-spacing:0.130882px;}
.ls17{letter-spacing:0.131849px;}
.ls22{letter-spacing:0.133222px;}
.ls0{letter-spacing:0.134400px;}
.lsa{letter-spacing:0.195844px;}
.ls3d{letter-spacing:0.234567px;}
.ls42{letter-spacing:0.236907px;}
.ls4d{letter-spacing:0.261296px;}
.ls2{letter-spacing:0.392700px;}
.ls1a{letter-spacing:0.395100px;}
.lsb{letter-spacing:2.487239px;}
.lse{letter-spacing:2.489579px;}
.ls36{letter-spacing:2.544248px;}
.ls3e{letter-spacing:2.893882px;}
.ls40{letter-spacing:2.896222px;}
.ls5{letter-spacing:3.037344px;}
.ls28{letter-spacing:3.159096px;}
.ls2a{letter-spacing:3.263768px;}
.lsf{letter-spacing:3.407230px;}
.ls7{letter-spacing:3.861296px;}
.ls31{letter-spacing:4.451844px;}
.ls30{letter-spacing:4.713659px;}
.ls16{letter-spacing:7.264475px;}
.ls1{letter-spacing:10.434652px;}
.ls18{letter-spacing:11.061176px;}
.lsc{letter-spacing:14.464205px;}
.lsd{letter-spacing:14.661176px;}
.ls41{letter-spacing:16.493600px;}
.ls45{letter-spacing:16.495940px;}
.ls20{letter-spacing:16.822376px;}
.ls3f{letter-spacing:17.213180px;}
.ls46{letter-spacing:17.215520px;}
.ls38{letter-spacing:17.541776px;}
.ls3b{letter-spacing:17.672700px;}
.ls14{letter-spacing:17.673880px;}
.ls1d{letter-spacing:18.328207px;}
.ls4f{letter-spacing:18.589076px;}
.ls34{letter-spacing:18.980576px;}
.ls2f{letter-spacing:19.112700px;}
.ls1e{letter-spacing:19.701793px;}
.ls33{letter-spacing:20.029076px;}
.ls4b{letter-spacing:20.552700px;}
.ls26{letter-spacing:21.159096px;}
.ls29{letter-spacing:21.263768px;}
.ls32{letter-spacing:21.272700px;}
.ls2b{letter-spacing:21.881016px;}
.ls44{letter-spacing:21.992700px;}
.ls2c{letter-spacing:22.057191px;}
.ls9{letter-spacing:22.189076px;}
.ls3c{letter-spacing:22.712700px;}
.ls8{letter-spacing:22.909076px;}
.ls43{letter-spacing:23.432700px;}
.ls2e{letter-spacing:23.890409px;}
.ls35{letter-spacing:24.152700px;}
.ls49{letter-spacing:24.872700px;}
.ls1b{letter-spacing:25.002648px;}
.ls23{letter-spacing:25.481016px;}
.ls25{letter-spacing:25.583288px;}
.ls3{letter-spacing:25.789076px;}
.ls1c{letter-spacing:26.052072px;}
.ls37{letter-spacing:26.198196px;}
.ls39{letter-spacing:26.312700px;}
.ls4{letter-spacing:26.509076px;}
.ls1f{letter-spacing:27.744248px;}
.ls3a{letter-spacing:28.361436px;}
.ls2d{letter-spacing:28.411527px;}
.ls4e{letter-spacing:28.669076px;}
.ls19{letter-spacing:29.131047px;}
.ls12{letter-spacing:31.025405px;}
.ls11{letter-spacing:31.550231px;}
.ls13{letter-spacing:33.448439px;}
.ls4a{letter-spacing:36.281016px;}
.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;}
}
.ws57{word-spacing:-32.727300px;}
.ws6{word-spacing:-29.887920px;}
.wsce{word-spacing:-23.910330px;}
.ws0{word-spacing:-20.862999px;}
.ws3e{word-spacing:-16.036323px;}
.ws67{word-spacing:-15.898856px;}
.ws148{word-spacing:-15.315984px;}
.wscb{word-spacing:-14.170830px;}
.wse3{word-spacing:-14.036895px;}
.ws134{word-spacing:-13.614033px;}
.wsfd{word-spacing:-12.355770px;}
.wse4{word-spacing:-11.229525px;}
.ws135{word-spacing:-10.800467px;}
.ws156{word-spacing:-10.734162px;}
.ws140{word-spacing:-10.276830px;}
.ws4a{word-spacing:-10.275494px;}
.ws1c{word-spacing:-10.275312px;}
.ws100{word-spacing:-10.129755px;}
.wscf{word-spacing:-10.129659px;}
.wsfb{word-spacing:-9.884610px;}
.ws137{word-spacing:-9.819041px;}
.ws139{word-spacing:-9.753259px;}
.ws145{word-spacing:-9.753194px;}
.ws143{word-spacing:-9.557419px;}
.ws110{word-spacing:-9.555912px;}
.ws111{word-spacing:-9.555472px;}
.ws153{word-spacing:-9.555390px;}
.wsd0{word-spacing:-9.410149px;}
.ws131{word-spacing:-9.295011px;}
.ws121{word-spacing:-9.098648px;}
.ws129{word-spacing:-9.033717px;}
.ws7e{word-spacing:-8.983698px;}
.ws15a{word-spacing:-8.835847px;}
.ws12a{word-spacing:-8.575404px;}
.ws12e{word-spacing:-8.574553px;}
.ws13d{word-spacing:-8.117287px;}
.ws47{word-spacing:-8.116731px;}
.ws126{word-spacing:-8.115454px;}
.ws14b{word-spacing:-7.855010px;}
.ws124{word-spacing:-7.395519px;}
.ws43{word-spacing:-6.675773px;}
.ws152{word-spacing:-6.153845px;}
.wsa5{word-spacing:-5.956123px;}
.ws11f{word-spacing:-5.237350px;}
.ws13c{word-spacing:-4.057334px;}
.ws159{word-spacing:-3.796629px;}
.ws10a{word-spacing:-3.337203px;}
.ws108{word-spacing:-3.075940px;}
.wsc5{word-spacing:-3.075841px;}
.ws10b{word-spacing:-3.075500px;}
.ws14e{word-spacing:-0.195906px;}
.ws11a{word-spacing:-0.086077px;}
.ws5{word-spacing:-0.071731px;}
.ws1d{word-spacing:-0.065455px;}
.wse{word-spacing:-0.059776px;}
.ws30{word-spacing:0.000000px;}
.wsa{word-spacing:10.375224px;}
.ws74{word-spacing:10.407281px;}
.wsf4{word-spacing:11.128043px;}
.wse6{word-spacing:14.006949px;}
.ws146{word-spacing:14.595394px;}
.ws58{word-spacing:14.595611px;}
.ws101{word-spacing:14.726469px;}
.wse1{word-spacing:14.728585px;}
.wsd4{word-spacing:14.791823px;}
.ws10{word-spacing:15.061240px;}
.ws87{word-spacing:15.185336px;}
.ws99{word-spacing:15.185467px;}
.ws98{word-spacing:15.446369px;}
.ws147{word-spacing:15.448267px;}
.ws3d{word-spacing:15.578195px;}
.ws9b{word-spacing:15.642733px;}
.ws149{word-spacing:15.643649px;}
.ws86{word-spacing:15.905468px;}
.ws113{word-spacing:16.102813px;}
.ws31{word-spacing:16.167744px;}
.wsb1{word-spacing:16.167810px;}
.ws115{word-spacing:16.168268px;}
.wsdb{word-spacing:16.168397px;}
.ws3f{word-spacing:16.232217px;}
.ws61{word-spacing:16.624421px;}
.ws40{word-spacing:16.625468px;}
.ws2e{word-spacing:16.802171px;}
.wse8{word-spacing:16.886436px;}
.ws32{word-spacing:16.887745px;}
.wse9{word-spacing:16.952349px;}
.wsb2{word-spacing:16.952741px;}
.ws64{word-spacing:17.084109px;}
.ws8{word-spacing:17.164573px;}
.wsf{word-spacing:17.219806px;}
.ws7d{word-spacing:17.607182px;}
.ws29{word-spacing:17.607287px;}
.wsbd{word-spacing:17.608550px;}
.ws133{word-spacing:17.608859px;}
.wsc0{word-spacing:17.669213px;}
.wsc1{word-spacing:17.672677px;}
.ws60{word-spacing:17.672742px;}
.ws9c{word-spacing:17.803651px;}
.ws12{word-spacing:17.884573px;}
.ws7{word-spacing:18.039691px;}
.ws114{word-spacing:18.065208px;}
.ws9{word-spacing:18.148543px;}
.ws56{word-spacing:18.196379px;}
.ws89{word-spacing:18.196444px;}
.wsb5{word-spacing:18.261833px;}
.wsc9{word-spacing:18.327288px;}
.ws7b{word-spacing:18.327353px;}
.ws97{word-spacing:18.327419px;}
.wsc2{word-spacing:18.327812px;}
.ws36{word-spacing:18.391826px;}
.wsf0{word-spacing:18.393724px;}
.ws77{word-spacing:18.457501px;}
.ws76{word-spacing:18.458089px;}
.wsb{word-spacing:18.603676px;}
.ws13{word-spacing:18.659327px;}
.ws14{word-spacing:18.660284px;}
.wsd3{word-spacing:18.784423px;}
.ws65{word-spacing:18.785863px;}
.ws138{word-spacing:18.917296px;}
.ws2f{word-spacing:18.961204px;}
.ws15{word-spacing:19.011766px;}
.ws96{word-spacing:19.046372px;}
.wsb7{word-spacing:19.047041px;}
.ws155{word-spacing:19.047812px;}
.ws7a{word-spacing:19.048270px;}
.ws24{word-spacing:19.113201px;}
.ws117{word-spacing:19.113267px;}
.ws3c{word-spacing:19.113725px;}
.wsb8{word-spacing:19.177347px;}
.ws79{word-spacing:19.242736px;}
.wsb6{word-spacing:19.505166px;}
.ws75{word-spacing:19.505921px;}
.ws141{word-spacing:19.636838px;}
.ws8e{word-spacing:19.701835px;}
.wsb9{word-spacing:19.766470px;}
.wsc8{word-spacing:19.766766px;}
.ws13f{word-spacing:19.766896px;}
.ws116{word-spacing:19.767747px;}
.ws85{word-spacing:19.767813px;}
.ws8d{word-spacing:19.768206px;}
.ws6d{word-spacing:19.833006px;}
.ws51{word-spacing:19.833267px;}
.ws5f{word-spacing:19.899115px;}
.ws78{word-spacing:19.963980px;}
.ws9f{word-spacing:20.159559px;}
.ws84{word-spacing:20.421377px;}
.wsab{word-spacing:20.486439px;}
.ws102{word-spacing:20.487486px;}
.ws9a{word-spacing:20.487813px;}
.ws50{word-spacing:20.552744px;}
.wsef{word-spacing:20.553528px;}
.ws1b{word-spacing:20.683654px;}
.wsa3{word-spacing:20.944490px;}
.ws55{word-spacing:20.945014px;}
.ws25{word-spacing:20.945930px;}
.ws9e{word-spacing:20.946388px;}
.ws14f{word-spacing:21.075530px;}
.wsb3{word-spacing:21.140919px;}
.ws10e{word-spacing:21.141443px;}
.wsf1{word-spacing:21.141836px;}
.ws11{word-spacing:21.171825px;}
.wse0{word-spacing:21.206439px;}
.wsee{word-spacing:21.206898px;}
.ws62{word-spacing:21.207290px;}
.wsda{word-spacing:21.208338px;}
.ws10f{word-spacing:21.271763px;}
.wsff{word-spacing:21.271894px;}
.ws39{word-spacing:21.272287px;}
.wsaa{word-spacing:21.272573px;}
.ws27{word-spacing:21.272745px;}
.ws26{word-spacing:21.337218px;}
.ws63{word-spacing:21.403654px;}
.ws12b{word-spacing:21.600018px;}
.wsa2{word-spacing:21.664491px;}
.ws106{word-spacing:21.665473px;}
.ws118{word-spacing:21.666324px;}
.ws94{word-spacing:21.731909px;}
.wsa1{word-spacing:21.860979px;}
.ws12d{word-spacing:21.925792px;}
.ws112{word-spacing:21.926244px;}
.ws142{word-spacing:21.926375px;}
.ws49{word-spacing:21.926440px;}
.ws19{word-spacing:21.926833px;}
.wsb0{word-spacing:21.927684px;}
.wsd1{word-spacing:21.927815px;}
.ws1a{word-spacing:21.928338px;}
.ws4f{word-spacing:21.991829px;}
.ws37{word-spacing:21.992287px;}
.ws122{word-spacing:21.993662px;}
.wsd8{word-spacing:21.993727px;}
.ws88{word-spacing:22.057677px;}
.ws8a{word-spacing:22.123197px;}
.ws127{word-spacing:22.124637px;}
.wsd6{word-spacing:22.384175px;}
.ws41{word-spacing:22.385015px;}
.ws132{word-spacing:22.385866px;}
.wsdd{word-spacing:22.386390px;}
.ws128{word-spacing:22.451386px;}
.wsbc{word-spacing:22.515401px;}
.ws81{word-spacing:22.515466px;}
.ws42{word-spacing:22.646375px;}
.wsa8{word-spacing:22.647292px;}
.ws1e{word-spacing:22.647357px;}
.ws120{word-spacing:22.647750px;}
.wsd2{word-spacing:22.648273px;}
.ws104{word-spacing:22.711830px;}
.wsc3{word-spacing:22.713466px;}
.ws4d{word-spacing:22.713728px;}
.wsa7{word-spacing:22.842739px;}
.ws5e{word-spacing:22.842788px;}
.wsa9{word-spacing:23.040097px;}
.ws53{word-spacing:23.040412px;}
.wsf9{word-spacing:23.105932px;}
.ws92{word-spacing:23.170928px;}
.ws14a{word-spacing:23.237299px;}
.ws52{word-spacing:23.301314px;}
.ws123{word-spacing:23.365871px;}
.ws125{word-spacing:23.366552px;}
.wsf3{word-spacing:23.366899px;}
.wsd7{word-spacing:23.367185px;}
.wsf8{word-spacing:23.367292px;}
.ws157{word-spacing:23.367816px;}
.wsd5{word-spacing:23.368209px;}
.ws20{word-spacing:23.368274px;}
.ws4{word-spacing:23.395561px;}
.ws83{word-spacing:23.432223px;}
.wsf5{word-spacing:23.432747px;}
.ws2a{word-spacing:23.433270px;}
.ws3{word-spacing:23.445343px;}
.ws14c{word-spacing:23.563263px;}
.ws12f{word-spacing:23.564572px;}
.wsba{word-spacing:23.825231px;}
.wsa0{word-spacing:23.825474px;}
.ws6f{word-spacing:23.956907px;}
.ws2{word-spacing:24.079231px;}
.ws11c{word-spacing:24.085903px;}
.wsdc{word-spacing:24.086835px;}
.ws82{word-spacing:24.087137px;}
.ws48{word-spacing:24.087293px;}
.wse7{word-spacing:24.087816px;}
.wsea{word-spacing:24.146573px;}
.ws38{word-spacing:24.152747px;}
.ws90{word-spacing:24.153397px;}
.wsc{word-spacing:24.266720px;}
.ws151{word-spacing:24.283657px;}
.ws1{word-spacing:24.408836px;}
.wseb{word-spacing:24.545017px;}
.ws7c{word-spacing:24.545674px;}
.ws154{word-spacing:24.676384px;}
.wsc7{word-spacing:24.806835px;}
.ws150{word-spacing:24.806901px;}
.ws46{word-spacing:24.806926px;}
.wsbb{word-spacing:24.807185px;}
.ws44{word-spacing:24.807293px;}
.ws34{word-spacing:24.808144px;}
.ws8b{word-spacing:24.808341px;}
.ws80{word-spacing:24.872217px;}
.ws4c{word-spacing:24.872290px;}
.ws119{word-spacing:24.872683px;}
.ws12c{word-spacing:25.003199px;}
.ws91{word-spacing:25.200937px;}
.ws35{word-spacing:25.265476px;}
.ws13e{word-spacing:25.395403px;}
.wsbf{word-spacing:25.395861px;}
.ws7f{word-spacing:25.526247px;}
.wsa4{word-spacing:25.526378px;}
.ws22{word-spacing:25.526443px;}
.ws18{word-spacing:25.526836px;}
.ws6e{word-spacing:25.591832px;}
.wsbe{word-spacing:25.594042px;}
.ws6b{word-spacing:25.658661px;}
.ws23{word-spacing:25.723200px;}
.ws68{word-spacing:25.920873px;}
.ws69{word-spacing:25.984429px;}
.ws54{word-spacing:25.984560px;}
.ws72{word-spacing:25.986458px;}
.ws11e{word-spacing:26.051389px;}
.ws73{word-spacing:26.115469px;}
.ws144{word-spacing:26.117302px;}
.ws13b{word-spacing:26.181905px;}
.wsd{word-spacing:26.212483px;}
.wsa6{word-spacing:26.246967px;}
.ws66{word-spacing:26.247295px;}
.ws8f{word-spacing:26.247818px;}
.ws71{word-spacing:26.313731px;}
.ws21{word-spacing:26.443658px;}
.wsb4{word-spacing:26.472471px;}
.ws1f{word-spacing:26.639564px;}
.wsac{word-spacing:26.966837px;}
.ws10d{word-spacing:26.968212px;}
.ws93{word-spacing:26.968277px;}
.ws3a{word-spacing:27.032750px;}
.ws6a{word-spacing:27.033273px;}
.ws8c{word-spacing:27.033666px;}
.ws6c{word-spacing:27.036852px;}
.ws103{word-spacing:27.686445px;}
.ws158{word-spacing:27.686838px;}
.ws9d{word-spacing:27.687296px;}
.wsae{word-spacing:27.752750px;}
.ws95{word-spacing:27.816929px;}
.ws45{word-spacing:28.210016px;}
.ws33{word-spacing:28.406380px;}
.ws3b{word-spacing:28.407296px;}
.wsaf{word-spacing:28.472293px;}
.ws105{word-spacing:28.603660px;}
.ws130{word-spacing:28.604684px;}
.wsc4{word-spacing:28.800875px;}
.ws107{word-spacing:28.800940px;}
.wsc6{word-spacing:28.864628px;}
.ws4b{word-spacing:28.865020px;}
.ws136{word-spacing:28.995406px;}
.ws4e{word-spacing:29.126446px;}
.ws28{word-spacing:29.126839px;}
.wsad{word-spacing:29.191835px;}
.ws109{word-spacing:29.846204px;}
.ws17{word-spacing:29.846381px;}
.ws70{word-spacing:29.848279px;}
.ws5a{word-spacing:29.912587px;}
.ws11b{word-spacing:29.913734px;}
.ws5d{word-spacing:30.240745px;}
.ws5b{word-spacing:30.567785px;}
.wsf2{word-spacing:30.568215px;}
.wsec{word-spacing:30.568280px;}
.ws5c{word-spacing:30.633276px;}
.ws2b{word-spacing:30.692726px;}
.ws11d{word-spacing:30.763204px;}
.ws10c{word-spacing:31.484121px;}
.ws13a{word-spacing:31.875932px;}
.wsdf{word-spacing:32.305020px;}
.wsde{word-spacing:32.311020px;}
.wsed{word-spacing:32.595867px;}
.ws14d{word-spacing:33.642352px;}
.wsf6{word-spacing:34.575510px;}
.wse2{word-spacing:36.282840px;}
.wse5{word-spacing:36.498840px;}
.ws2d{word-spacing:38.401589px;}
.ws2c{word-spacing:38.613715px;}
.wscd{word-spacing:44.495850px;}
.wsf7{word-spacing:53.847510px;}
.wsca{word-spacing:72.837510px;}
.wscc{word-spacing:73.403850px;}
.wsd9{word-spacing:94.091850px;}
.ws16{word-spacing:96.977156px;}
.wsfa{word-spacing:109.272993px;}
.wsfe{word-spacing:137.147610px;}
.wsfc{word-spacing:137.153610px;}
.ws59{word-spacing:793.178843px;}
._35{margin-left:-921.414401px;}
._33{margin-left:-885.416801px;}
._36{margin-left:-861.656801px;}
._32{margin-left:-652.134291px;}
._4{margin-left:-34.995225px;}
._6{margin-left:-33.811508px;}
._26{margin-left:-32.357523px;}
._1c{margin-left:-28.310209px;}
._8{margin-left:-27.157074px;}
._3b{margin-left:-25.466997px;}
._7{margin-left:-8.227019px;}
._b{margin-left:-6.887601px;}
._c{margin-left:-5.171910px;}
._9{margin-left:-3.323621px;}
._0{margin-left:-2.257870px;}
._5{margin-left:-1.018769px;}
._1{width:1.209140px;}
._e{width:2.337509px;}
._11{width:3.658833px;}
._23{width:4.951193px;}
._2b{width:10.996373px;}
._29{width:12.207923px;}
._2c{width:13.869246px;}
._2d{width:14.963577px;}
._d{width:16.094666px;}
._14{width:17.324206px;}
._f{width:18.404006px;}
._13{width:19.525638px;}
._15{width:20.801659px;}
._18{width:21.913204px;}
._3{width:23.041820px;}
._19{width:24.196528px;}
._a{width:25.286498px;}
._10{width:26.891500px;}
._16{width:28.350866px;}
._1a{width:30.182938px;}
._2e{width:31.383958px;}
._2{width:32.399655px;}
._17{width:34.168152px;}
._1d{width:35.306768px;}
._1f{width:37.499677px;}
._20{width:39.542572px;}
._25{width:42.022770px;}
._12{width:43.502184px;}
._21{width:44.670441px;}
._27{width:47.390112px;}
._1b{width:50.491055px;}
._24{width:51.821373px;}
._2a{width:53.150675px;}
._3c{width:56.931235px;}
._3d{width:59.619568px;}
._38{width:64.353525px;}
._31{width:72.842340px;}
._37{width:78.609525px;}
._28{width:81.313934px;}
._1e{width:85.406938px;}
._22{width:86.737919px;}
._30{width:102.026340px;}
._2f{width:115.922340px;}
._34{width:122.438340px;}
._39{width:160.034763px;}
._3a{width:560.945922px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:0.720000px;}
.fs6{font-size:35.865480px;}
.fse{font-size:39.538440px;}
.fsc{font-size:44.918100px;}
.fsa{font-size:45.346680px;}
.fs8{font-size:47.820660px;}
.fsd{font-size:49.423080px;}
.fs7{font-size:53.798280px;}
.fsb{font-size:56.147580px;}
.fs9{font-size:56.683320px;}
.fs2{font-size:59.775840px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1b1{bottom:106.708650px;}
.y134{bottom:106.709250px;}
.y13a{bottom:106.709550px;}
.yef{bottom:106.709700px;}
.y59{bottom:106.710000px;}
.y2d{bottom:106.710135px;}
.y7e{bottom:106.710150px;}
.yd5{bottom:106.710300px;}
.y1b0{bottom:151.528200px;}
.y188{bottom:151.529700px;}
.yac{bottom:153.689700px;}
.y2c{bottom:161.249835px;}
.yd4{bottom:163.410300px;}
.y133{bottom:165.568950px;}
.y7d{bottom:166.829700px;}
.y1af{bottom:171.868500px;}
.y187{bottom:171.870000px;}
.yab{bottom:174.029400px;}
.y2b{bottom:177.810135px;}
.yd3{bottom:183.750000px;}
.y132{bottom:185.909250px;}
.y7c{bottom:187.170000px;}
.y2a{bottom:194.189985px;}
.yaa{bottom:194.369700px;}
.yd2{bottom:204.090300px;}
.y1ae{bottom:204.988650px;}
.y131{bottom:206.248950px;}
.y7b{bottom:207.510300px;}
.y186{bottom:208.410300px;}
.y29{bottom:210.569835px;}
.ya9{bottom:214.529400px;}
.yd1{bottom:224.429400px;}
.y1ad{bottom:225.328350px;}
.y130{bottom:226.589250px;}
.y7a{bottom:227.850000px;}
.y28{bottom:232.710000px;}
.ya8{bottom:234.869700px;}
.yd0{bottom:244.769700px;}
.y12f{bottom:246.928950px;}
.y79{bottom:248.190300px;}
.ya7{bottom:255.210000px;}
.y15d{bottom:255.210150px;}
.y27{bottom:256.649700px;}
.y1ac{bottom:258.448500px;}
.y185{bottom:259.170000px;}
.ycf{bottom:265.110000px;}
.y12e{bottom:267.269250px;}
.y78{bottom:268.529400px;}
.y58{bottom:269.970000px;}
.ya6{bottom:275.549700px;}
.y15c{bottom:275.549850px;}
.y26{bottom:276.990000px;}
.y1ab{bottom:278.788800px;}
.y184{bottom:279.329700px;}
.yce{bottom:285.449700px;}
.y12d{bottom:287.609550px;}
.y57{bottom:290.310300px;}
.ya5{bottom:295.889700px;}
.y15b{bottom:295.890150px;}
.y25{bottom:297.329700px;}
.y1aa{bottom:299.128500px;}
.y77{bottom:299.309250px;}
.y183{bottom:299.670000px;}
.ycd{bottom:305.790000px;}
.y12c{bottom:307.949250px;}
.y56{bottom:310.648650px;}
.ya4{bottom:316.229400px;}
.y24{bottom:317.670000px;}
.y182{bottom:320.010300px;}
.ycc{bottom:326.129700px;}
.y12b{bottom:328.289550px;}
.y55{bottom:330.988950px;}
.y1a9{bottom:332.248650px;}
.ya3{bottom:336.569700px;}
.y23{bottom:338.010300px;}
.y181{bottom:340.349700px;}
.y76{bottom:343.229400px;}
.y139{bottom:343.229550px;}
.yee{bottom:343.229700px;}
.ycb{bottom:346.470000px;}
.y12a{bottom:348.629250px;}
.y54{bottom:351.328650px;}
.y1a8{bottom:352.588950px;}
.y106{bottom:352.590000px;}
.ya2{bottom:356.910000px;}
.y22{bottom:358.350000px;}
.y180{bottom:360.690300px;}
.y75{bottom:363.569700px;}
.y138{bottom:363.569850px;}
.yed{bottom:363.570000px;}
.yca{bottom:366.810300px;}
.y143{bottom:369.429000px;}
.y53{bottom:371.668950px;}
.y1a7{bottom:372.928650px;}
.y105{bottom:372.929700px;}
.ya1{bottom:377.249700px;}
.y21{bottom:378.690300px;}
.y17f{bottom:381.030000px;}
.y74{bottom:383.910000px;}
.y137{bottom:383.910150px;}
.yec{bottom:383.910300px;}
.y129{bottom:385.169550px;}
.y141{bottom:386.727000px;}
.yc9{bottom:386.970000px;}
.y52{bottom:391.828650px;}
.ya0{bottom:397.590000px;}
.y20{bottom:399.029400px;}
.y13b{bottom:399.084000px;}
.y73{bottom:404.069700px;}
.y1a6{bottom:406.048800px;}
.yc8{bottom:407.310300px;}
.y51{bottom:412.168950px;}
.y17e{bottom:412.890300px;}
.yf8{bottom:413.686500px;}
.y9f{bottom:417.929700px;}
.y1f{bottom:419.369700px;}
.yde{bottom:423.250500px;}
.y72{bottom:424.410000px;}
.y1a5{bottom:426.389100px;}
.yc7{bottom:427.650000px;}
.y50{bottom:432.509250px;}
.y17d{bottom:433.229700px;}
.yf6{bottom:433.527000px;}
.y128{bottom:436.649400px;}
.y9e{bottom:438.090000px;}
.y13c{bottom:438.559500px;}
.y1e{bottom:439.529400px;}
.ydc{bottom:444.507000px;}
.y71{bottom:444.749700px;}
.yf0{bottom:447.697500px;}
.yc6{bottom:447.990300px;}
.y4f{bottom:452.848950px;}
.y17c{bottom:453.569700px;}
.y127{bottom:456.989700px;}
.y9d{bottom:458.429700px;}
.yd6{bottom:458.677500px;}
.y1a4{bottom:459.509250px;}
.y1d{bottom:459.869700px;}
.y70{bottom:465.090000px;}
.y104{bottom:467.970000px;}
.y17b{bottom:473.910000px;}
.y126{bottom:477.329400px;}
.y13d{bottom:478.098000px;}
.y9c{bottom:478.769700px;}
.yeb{bottom:478.950000px;}
.y1a3{bottom:479.848950px;}
.y1c{bottom:480.210150px;}
.y6f{bottom:485.429700px;}
.y4e{bottom:489.569100px;}
.y17a{bottom:494.249700px;}
.yf1{bottom:495.169500px;}
.y142{bottom:496.132500px;}
.y125{bottom:497.669700px;}
.y9b{bottom:499.110000px;}
.y1b{bottom:500.549850px;}
.y6e{bottom:505.770000px;}
.yd7{bottom:506.149500px;}
.yc5{bottom:512.250000px;}
.y1a2{bottom:512.969100px;}
.y179{bottom:514.590000px;}
.y13e{bottom:517.575000px;}
.y124{bottom:518.010000px;}
.y9a{bottom:519.449700px;}
.yf7{bottom:520.581000px;}
.y1a{bottom:520.890150px;}
.y6d{bottom:526.110300px;}
.y4d{bottom:526.469100px;}
.ydd{bottom:531.561000px;}
.yc4{bottom:532.590300px;}
.y1a1{bottom:533.309400px;}
.y123{bottom:538.349700px;}
.y99{bottom:539.790000px;}
.y19{bottom:541.229850px;}
.yf2{bottom:542.571000px;}
.y178{bottom:546.449700px;}
.y6c{bottom:546.450000px;}
.y4c{bottom:546.808800px;}
.yc3{bottom:552.930000px;}
.yd8{bottom:553.551000px;}
.y1a0{bottom:553.649100px;}
.y13f{bottom:557.052000px;}
.y122{bottom:558.689700px;}
.y98{bottom:560.129700px;}
.y18{bottom:561.570150px;}
.y177{bottom:566.790300px;}
.y4b{bottom:567.149100px;}
.y121{bottom:578.849400px;}
.y97{bottom:580.469700px;}
.y19f{bottom:586.769250px;}
.y176{bottom:587.129400px;}
.y4a{bottom:587.308800px;}
.yf3{bottom:590.043000px;}
.yb5{bottom:592.269000px;}
.y140{bottom:596.590500px;}
.y17{bottom:598.109850px;}
.y120{bottom:599.189700px;}
.y96{bottom:600.809400px;}
.yd9{bottom:601.023000px;}
.y6b{bottom:605.850000px;}
.y19e{bottom:607.108950px;}
.y175{bottom:607.469700px;}
.y49{bottom:607.649100px;}
.yb3{bottom:613.527000px;}
.y11f{bottom:619.529400px;}
.y95{bottom:621.149700px;}
.y15a{bottom:622.590150px;}
.yad{bottom:627.697500px;}
.y174{bottom:627.810000px;}
.y48{bottom:627.989400px;}
.y144{bottom:636.067500px;}
.yf4{bottom:637.515000px;}
.y11e{bottom:639.869700px;}
.y19d{bottom:640.229100px;}
.y94{bottom:641.489400px;}
.y47{bottom:648.329100px;}
.yda{bottom:648.495000px;}
.y16{bottom:649.590300px;}
.y11d{bottom:660.210000px;}
.y173{bottom:660.390000px;}
.y19c{bottom:660.569400px;}
.y93{bottom:661.649100px;}
.y15{bottom:667.590300px;}
.y46{bottom:668.669400px;}
.yae{bottom:673.044000px;}
.y145{bottom:675.544500px;}
.y11c{bottom:680.549700px;}
.y172{bottom:680.729700px;}
.y92{bottom:681.989400px;}
.yf5{bottom:684.916500px;}
.yb4{bottom:684.951000px;}
.y14{bottom:685.590300px;}
.y45{bottom:689.009700px;}
.y19b{bottom:693.689550px;}
.ydb{bottom:695.896500px;}
.y11b{bottom:700.890000px;}
.y171{bottom:701.070000px;}
.y13{bottom:703.410450px;}
.y44{bottom:709.349400px;}
.y1c2{bottom:710.069700px;}
.y91{bottom:712.949100px;}
.y19a{bottom:714.029250px;}
.y146{bottom:715.081500px;}
.yaf{bottom:718.390500px;}
.y11a{bottom:721.229700px;}
.y170{bottom:721.410300px;}
.y12{bottom:721.410450px;}
.y43{bottom:729.689700px;}
.y1c1{bottom:730.410000px;}
.yf9{bottom:732.388500px;}
.y14a{bottom:733.117500px;}
.y11{bottom:739.230000px;}
.y119{bottom:741.570000px;}
.ydf{bottom:743.368500px;}
.y103{bottom:744.433500px;}
.y199{bottom:747.149400px;}
.y42{bottom:750.029400px;}
.y1c0{bottom:750.749700px;}
.y147{bottom:754.558500px;}
.yea{bottom:754.918500px;}
.y90{bottom:756.689400px;}
.y10{bottom:757.230000px;}
.y102{bottom:758.605500px;}
.y118{bottom:761.910300px;}
.yb0{bottom:763.737000px;}
.y198{bottom:767.489700px;}
.ye9{bottom:769.089000px;}
.y41{bottom:770.369700px;}
.y101{bottom:772.776000px;}
.ye{bottom:775.229760px;}
.yf{bottom:775.230000px;}
.y8f{bottom:777.029100px;}
.yfa{bottom:779.860500px;}
.y117{bottom:782.250000px;}
.ye8{bottom:783.259500px;}
.y1bf{bottom:784.590000px;}
.y197{bottom:787.829400px;}
.y40{bottom:790.710300px;}
.ye0{bottom:790.842000px;}
.yd{bottom:793.049910px;}
.y148{bottom:794.035500px;}
.y16f{bottom:794.670000px;}
.y8e{bottom:797.369400px;}
.ye7{bottom:797.431500px;}
.y116{bottom:802.410300px;}
.y1be{bottom:804.929700px;}
.yb1{bottom:809.013000px;}
.y3f{bottom:810.870000px;}
.yc{bottom:811.049910px;}
.y16e{bottom:814.829700px;}
.y100{bottom:815.233500px;}
.y8d{bottom:817.709700px;}
.y196{bottom:820.949550px;}
.yfb{bottom:827.263500px;}
.ye6{bottom:828.184500px;}
.yb{bottom:829.049910px;}
.y6a{bottom:831.029400px;}
.y3e{bottom:831.210300px;}
.y149{bottom:833.574000px;}
.y16d{bottom:835.170000px;}
.y8c{bottom:838.049400px;}
.ye1{bottom:838.243500px;}
.y1bd{bottom:838.590000px;}
.y195{bottom:841.289850px;}
.ya{bottom:846.870060px;}
.y69{bottom:851.369700px;}
.y3d{bottom:851.549700px;}
.y159{bottom:854.250150px;}
.yb2{bottom:854.359500px;}
.y8b{bottom:858.389700px;}
.y1bc{bottom:858.929700px;}
.y194{bottom:861.629550px;}
.y16c{bottom:867.210300px;}
.y115{bottom:869.910300px;}
.y68{bottom:871.710000px;}
.yc1{bottom:871.719000px;}
.y3c{bottom:871.890000px;}
.y14b{bottom:873.051000px;}
.y9{bottom:874.229760px;}
.yfc{bottom:874.735500px;}
.y8a{bottom:878.729400px;}
.ye2{bottom:885.715500px;}
.yc0{bottom:885.889500px;}
.y16b{bottom:887.550000px;}
.y114{bottom:890.250000px;}
.y67{bottom:892.049700px;}
.y3b{bottom:892.229700px;}
.y1bb{bottom:892.770000px;}
.y193{bottom:894.749700px;}
.y136{bottom:897.450150px;}
.y89{bottom:899.069700px;}
.yb6{bottom:899.776500px;}
.y16a{bottom:907.710300px;}
.y66{bottom:912.390000px;}
.y14c{bottom:912.528000px;}
.y3a{bottom:912.569850px;}
.y1ba{bottom:913.109700px;}
.y192{bottom:915.090000px;}
.y88{bottom:919.410000px;}
.yfd{bottom:922.137000px;}
.y169{bottom:928.050000px;}
.y110{bottom:930.675000px;}
.y65{bottom:932.549700px;}
.y39{bottom:932.910150px;}
.ye3{bottom:933.117000px;}
.y191{bottom:935.429700px;}
.y87{bottom:939.749700px;}
.yb7{bottom:945.123000px;}
.y1b9{bottom:946.770000px;}
.y168{bottom:948.390300px;}
.y10e{bottom:951.730500px;}
.y14d{bottom:952.005000px;}
.y8{bottom:952.529760px;}
.y64{bottom:952.890000px;}
.y38{bottom:953.249850px;}
.y86{bottom:960.090000px;}
.y107{bottom:965.767500px;}
.y1b8{bottom:967.109700px;}
.y190{bottom:968.549850px;}
.y166{bottom:968.729400px;}
.y167{bottom:968.730000px;}
.yfe{bottom:969.609000px;}
.y152{bottom:970.039500px;}
.y63{bottom:973.230000px;}
.ybe{bottom:973.581000px;}
.y37{bottom:973.590150px;}
.y85{bottom:980.249700px;}
.ye4{bottom:980.589000px;}
.y7{bottom:988.170060px;}
.y18f{bottom:988.890150px;}
.y165{bottom:989.069700px;}
.yb8{bottom:990.399000px;}
.y14e{bottom:991.543500px;}
.y62{bottom:993.570300px;}
.y84{bottom:1000.590000px;}
.y1b7{bottom:1000.950000px;}
.y108{bottom:1004.692500px;}
.y6{bottom:1009.049910px;}
.y164{bottom:1009.409400px;}
.y36{bottom:1010.129850px;}
.y135{bottom:1011.030000px;}
.y61{bottom:1013.910000px;}
.yff{bottom:1017.010500px;}
.y83{bottom:1020.929700px;}
.y1b6{bottom:1021.290300px;}
.y18e{bottom:1022.009700px;}
.ye5{bottom:1027.990500px;}
.y163{bottom:1029.749700px;}
.y5{bottom:1030.109610px;}
.y10f{bottom:1030.462500px;}
.y14f{bottom:1031.019000px;}
.y60{bottom:1034.250000px;}
.yb9{bottom:1035.745500px;}
.y82{bottom:1041.270300px;}
.y18d{bottom:1042.350000px;}
.y109{bottom:1043.617500px;}
.y162{bottom:1050.090000px;}
.y4{bottom:1050.990060px;}
.yc2{bottom:1051.530000px;}
.y5f{bottom:1054.590300px;}
.y1b5{bottom:1055.130000px;}
.y35{bottom:1061.609700px;}
.y156{bottom:1062.835500px;}
.y161{bottom:1070.429700px;}
.y150{bottom:1070.496000px;}
.y3{bottom:1071.869910px;}
.y5e{bottom:1074.930000px;}
.y155{bottom:1075.191000px;}
.y1b4{bottom:1075.290300px;}
.y18c{bottom:1075.470150px;}
.yba{bottom:1081.093500px;}
.y81{bottom:1081.949700px;}
.y34{bottom:1081.950000px;}
.y10a{bottom:1082.598000px;}
.y154{bottom:1087.546500px;}
.y160{bottom:1090.770000px;}
.y2{bottom:1092.749760px;}
.y158{bottom:1093.290150px;}
.y5d{bottom:1095.270300px;}
.y18b{bottom:1095.809850px;}
.y153{bottom:1099.902000px;}
.y80{bottom:1102.290000px;}
.y33{bottom:1102.290300px;}
.y1b3{bottom:1109.130000px;}
.y151{bottom:1109.973000px;}
.y15f{bottom:1111.109700px;}
.y5c{bottom:1115.610000px;}
.y18a{bottom:1116.150150px;}
.y10b{bottom:1121.523000px;}
.y7f{bottom:1122.629700px;}
.y32{bottom:1122.630000px;}
.y157{bottom:1123.170000px;}
.ybb{bottom:1126.369500px;}
.y1b2{bottom:1129.470300px;}
.y15e{bottom:1131.270000px;}
.y5b{bottom:1135.950300px;}
.y1{bottom:1138.290000px;}
.y31{bottom:1142.970300px;}
.y189{bottom:1152.690450px;}
.y10c{bottom:1160.448000px;}
.y113{bottom:1162.284000px;}
.y30{bottom:1163.310000px;}
.y5a{bottom:1166.730150px;}
.ybc{bottom:1171.714500px;}
.y112{bottom:1176.321000px;}
.y2f{bottom:1183.650300px;}
.ybd{bottom:1185.886500px;}
.y111{bottom:1190.358000px;}
.y10d{bottom:1199.373000px;}
.y2e{bottom:1203.810000px;}
.ybf{bottom:1207.071000px;}
.h5{height:0.684000px;}
.h9{height:18.026850px;}
.h17{height:34.003079px;}
.h14{height:35.865495px;}
.h15{height:38.629535px;}
.h12{height:38.998124px;}
.ha{height:40.348710px;}
.h3{height:41.843088px;}
.h4{height:44.831880px;}
.h18{height:45.779093px;}
.h7{height:49.090950px;}
.hb{height:49.091550px;}
.hc{height:49.092150px;}
.h8{height:49.093350px;}
.he{height:49.096350px;}
.hf{height:50.211840px;}
.h16{height:52.007793px;}
.h13{height:52.504032px;}
.h2{height:53.798400px;}
.hd{height:59.161699px;}
.h6{height:60.254040px;}
.h10{height:62.039779px;}
.h11{height:62.042119px;}
.h1{height:91.237440px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x10{left:84.960000px;}
.x1{left:88.559700px;}
.x3{left:93.960300px;}
.x12{left:103.500000px;}
.x11{left:110.520000px;}
.x4c{left:118.620165px;}
.xb{left:126.000420px;}
.x1a{left:132.300000px;}
.x6{left:136.260120px;}
.x1b{left:137.879850px;}
.xa{left:148.320420px;}
.x40{left:161.361000px;}
.x41{left:167.538000px;}
.x38{left:174.903000px;}
.x1f{left:181.344000px;}
.x42{left:189.309000px;}
.x1d{left:195.552000px;}
.x1e{left:202.636500px;}
.x4b{left:206.279880px;}
.x21{left:210.628500px;}
.x37{left:220.404000px;}
.x4{left:222.480300px;}
.x5{left:229.500420px;}
.x2{left:246.060300px;}
.x20{left:269.616000px;}
.x2e{left:271.351500px;}
.x30{left:272.613000px;}
.x22{left:278.082000px;}
.x31{left:279.855000px;}
.x7{left:288.900120px;}
.x14{left:304.200000px;}
.x1c{left:315.000000px;}
.x39{left:327.825000px;}
.x4a{left:328.860000px;}
.x3b{left:329.890500px;}
.x3a{left:336.909960px;}
.x44{left:351.633000px;}
.x45{left:353.110500px;}
.x43{left:360.460500px;}
.x25{left:367.003500px;}
.x32{left:385.780500px;}
.x9{left:392.400420px;}
.x8{left:407.700420px;}
.x26{left:413.946000px;}
.x33{left:416.943000px;}
.x3f{left:418.860165px;}
.x13{left:421.019880px;}
.x27{left:422.412000px;}
.x46{left:440.872500px;}
.x3c{left:454.389000px;}
.x47{left:473.841000px;}
.x2c{left:497.520000px;}
.x3d{left:501.660000px;}
.x2d{left:503.100000px;}
.x3e{left:507.240000px;}
.x28{left:511.404000px;}
.x24{left:515.700000px;}
.x2b{left:523.440000px;}
.x34{left:530.110500px;}
.x23{left:542.595000px;}
.x29{left:558.346500px;}
.x35{left:561.343500px;}
.x2a{left:566.812500px;}
.x2f{left:575.640000px;}
.x36{left:583.200000px;}
.x15{left:599.218500px;}
.x49{left:603.135000px;}
.x16{left:607.498500px;}
.x48{left:611.962500px;}
.xc{left:646.920000px;}
.xd{left:658.260000px;}
.xe{left:693.180000px;}
.xf{left:704.520000px;}
.x17{left:728.638500px;}
.x18{left:734.218500px;}
.x19{left:759.778500px;}
@media print{
.v2{vertical-align:-19.841653pt;}
.v9{vertical-align:-15.114560pt;}
.va{vertical-align:-13.179147pt;}
.v4{vertical-align:-9.600000pt;}
.v8{vertical-align:-5.118752pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:9.600000pt;}
.v6{vertical-align:21.120853pt;}
.v3{vertical-align:24.320853pt;}
.v7{vertical-align:26.879147pt;}
.v1{vertical-align:33.279147pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000139pt;}
.ls10{letter-spacing:0.000822pt;}
.ls47{letter-spacing:0.000987pt;}
.ls48{letter-spacing:0.001003pt;}
.ls15{letter-spacing:0.001199pt;}
.ls21{letter-spacing:0.001202pt;}
.ls27{letter-spacing:0.003335pt;}
.ls24{letter-spacing:0.116340pt;}
.ls17{letter-spacing:0.117199pt;}
.ls22{letter-spacing:0.118420pt;}
.ls0{letter-spacing:0.119467pt;}
.lsa{letter-spacing:0.174084pt;}
.ls3d{letter-spacing:0.208504pt;}
.ls42{letter-spacing:0.210584pt;}
.ls4d{letter-spacing:0.232263pt;}
.ls2{letter-spacing:0.349067pt;}
.ls1a{letter-spacing:0.351200pt;}
.lsb{letter-spacing:2.210879pt;}
.lse{letter-spacing:2.212959pt;}
.ls36{letter-spacing:2.261553pt;}
.ls3e{letter-spacing:2.572339pt;}
.ls40{letter-spacing:2.574419pt;}
.ls5{letter-spacing:2.699861pt;}
.ls28{letter-spacing:2.808085pt;}
.ls2a{letter-spacing:2.901127pt;}
.lsf{letter-spacing:3.028648pt;}
.ls7{letter-spacing:3.432263pt;}
.ls31{letter-spacing:3.957195pt;}
.ls30{letter-spacing:4.189919pt;}
.ls16{letter-spacing:6.457311pt;}
.ls1{letter-spacing:9.275247pt;}
.ls18{letter-spacing:9.832156pt;}
.lsc{letter-spacing:12.857071pt;}
.lsd{letter-spacing:13.032156pt;}
.ls41{letter-spacing:14.660977pt;}
.ls45{letter-spacing:14.663057pt;}
.ls20{letter-spacing:14.953223pt;}
.ls3f{letter-spacing:15.300604pt;}
.ls46{letter-spacing:15.302684pt;}
.ls38{letter-spacing:15.592690pt;}
.ls3b{letter-spacing:15.709067pt;}
.ls14{letter-spacing:15.710116pt;}
.ls1d{letter-spacing:16.291740pt;}
.ls4f{letter-spacing:16.523623pt;}
.ls34{letter-spacing:16.871623pt;}
.ls2f{letter-spacing:16.989067pt;}
.ls1e{letter-spacing:17.512705pt;}
.ls33{letter-spacing:17.803623pt;}
.ls4b{letter-spacing:18.269067pt;}
.ls26{letter-spacing:18.808085pt;}
.ls29{letter-spacing:18.901127pt;}
.ls32{letter-spacing:18.909067pt;}
.ls2b{letter-spacing:19.449792pt;}
.ls44{letter-spacing:19.549067pt;}
.ls2c{letter-spacing:19.606392pt;}
.ls9{letter-spacing:19.723623pt;}
.ls3c{letter-spacing:20.189067pt;}
.ls8{letter-spacing:20.363623pt;}
.ls43{letter-spacing:20.829067pt;}
.ls2e{letter-spacing:21.235919pt;}
.ls35{letter-spacing:21.469067pt;}
.ls49{letter-spacing:22.109067pt;}
.ls1b{letter-spacing:22.224576pt;}
.ls23{letter-spacing:22.649792pt;}
.ls25{letter-spacing:22.740700pt;}
.ls3{letter-spacing:22.923623pt;}
.ls1c{letter-spacing:23.157397pt;}
.ls37{letter-spacing:23.287285pt;}
.ls39{letter-spacing:23.389067pt;}
.ls4{letter-spacing:23.563623pt;}
.ls1f{letter-spacing:24.661553pt;}
.ls3a{letter-spacing:25.210165pt;}
.ls2d{letter-spacing:25.254690pt;}
.ls4e{letter-spacing:25.483623pt;}
.ls19{letter-spacing:25.894264pt;}
.ls12{letter-spacing:27.578138pt;}
.ls11{letter-spacing:28.044650pt;}
.ls13{letter-spacing:29.731946pt;}
.ls4a{letter-spacing:32.249792pt;}
.ws57{word-spacing:-29.090933pt;}
.ws6{word-spacing:-26.567040pt;}
.wsce{word-spacing:-21.253627pt;}
.ws0{word-spacing:-18.544888pt;}
.ws3e{word-spacing:-14.254509pt;}
.ws67{word-spacing:-14.132317pt;}
.ws148{word-spacing:-13.614208pt;}
.wscb{word-spacing:-12.596293pt;}
.wse3{word-spacing:-12.477240pt;}
.ws134{word-spacing:-12.101363pt;}
.wsfd{word-spacing:-10.982907pt;}
.wse4{word-spacing:-9.981800pt;}
.ws135{word-spacing:-9.600415pt;}
.ws156{word-spacing:-9.541477pt;}
.ws140{word-spacing:-9.134960pt;}
.ws4a{word-spacing:-9.133772pt;}
.ws1c{word-spacing:-9.133611pt;}
.ws100{word-spacing:-9.004226pt;}
.wscf{word-spacing:-9.004141pt;}
.wsfb{word-spacing:-8.786320pt;}
.ws137{word-spacing:-8.728036pt;}
.ws139{word-spacing:-8.669564pt;}
.ws145{word-spacing:-8.669505pt;}
.ws143{word-spacing:-8.495483pt;}
.ws110{word-spacing:-8.494144pt;}
.ws111{word-spacing:-8.493753pt;}
.ws153{word-spacing:-8.493680pt;}
.wsd0{word-spacing:-8.364577pt;}
.ws131{word-spacing:-8.262232pt;}
.ws121{word-spacing:-8.087687pt;}
.ws129{word-spacing:-8.029970pt;}
.ws7e{word-spacing:-7.985509pt;}
.ws15a{word-spacing:-7.854087pt;}
.ws12a{word-spacing:-7.622581pt;}
.ws12e{word-spacing:-7.621825pt;}
.ws13d{word-spacing:-7.215366pt;}
.ws47{word-spacing:-7.214872pt;}
.ws126{word-spacing:-7.213737pt;}
.ws14b{word-spacing:-6.982231pt;}
.ws124{word-spacing:-6.573795pt;}
.ws43{word-spacing:-5.934020pt;}
.ws152{word-spacing:-5.470085pt;}
.wsa5{word-spacing:-5.294331pt;}
.ws11f{word-spacing:-4.655422pt;}
.ws13c{word-spacing:-3.606519pt;}
.ws159{word-spacing:-3.374781pt;}
.ws10a{word-spacing:-2.966402pt;}
.ws108{word-spacing:-2.734169pt;}
.wsc5{word-spacing:-2.734081pt;}
.ws10b{word-spacing:-2.733778pt;}
.ws14e{word-spacing:-0.174138pt;}
.ws11a{word-spacing:-0.076513pt;}
.ws5{word-spacing:-0.063761pt;}
.ws1d{word-spacing:-0.058182pt;}
.wse{word-spacing:-0.053134pt;}
.ws30{word-spacing:0.000000pt;}
.wsa{word-spacing:9.222422pt;}
.ws74{word-spacing:9.250917pt;}
.wsf4{word-spacing:9.891594pt;}
.wse6{word-spacing:12.450621pt;}
.ws146{word-spacing:12.973684pt;}
.ws58{word-spacing:12.973877pt;}
.ws101{word-spacing:13.090195pt;}
.wse1{word-spacing:13.092076pt;}
.wsd4{word-spacing:13.148287pt;}
.ws10{word-spacing:13.387769pt;}
.ws87{word-spacing:13.498077pt;}
.ws99{word-spacing:13.498193pt;}
.ws98{word-spacing:13.730106pt;}
.ws147{word-spacing:13.731793pt;}
.ws3d{word-spacing:13.847284pt;}
.ws9b{word-spacing:13.904652pt;}
.ws149{word-spacing:13.905466pt;}
.ws86{word-spacing:14.138194pt;}
.ws113{word-spacing:14.313612pt;}
.ws31{word-spacing:14.371328pt;}
.wsb1{word-spacing:14.371387pt;}
.ws115{word-spacing:14.371794pt;}
.wsdb{word-spacing:14.371909pt;}
.ws3f{word-spacing:14.428637pt;}
.ws61{word-spacing:14.777263pt;}
.ws40{word-spacing:14.778194pt;}
.ws2e{word-spacing:14.935263pt;}
.wse8{word-spacing:15.010165pt;}
.ws32{word-spacing:15.011329pt;}
.wse9{word-spacing:15.068754pt;}
.wsb2{word-spacing:15.069103pt;}
.ws64{word-spacing:15.185874pt;}
.ws8{word-spacing:15.257398pt;}
.wsf{word-spacing:15.306494pt;}
.ws7d{word-spacing:15.650829pt;}
.ws29{word-spacing:15.650922pt;}
.wsbd{word-spacing:15.652045pt;}
.ws133{word-spacing:15.652319pt;}
.wsc0{word-spacing:15.705967pt;}
.wsc1{word-spacing:15.709046pt;}
.ws60{word-spacing:15.709104pt;}
.ws9c{word-spacing:15.825468pt;}
.ws12{word-spacing:15.897398pt;}
.ws7{word-spacing:16.035281pt;}
.ws114{word-spacing:16.057962pt;}
.ws9{word-spacing:16.132038pt;}
.ws56{word-spacing:16.174559pt;}
.ws89{word-spacing:16.174617pt;}
.wsb5{word-spacing:16.232741pt;}
.wsc9{word-spacing:16.290923pt;}
.ws7b{word-spacing:16.290981pt;}
.ws97{word-spacing:16.291039pt;}
.wsc2{word-spacing:16.291388pt;}
.ws36{word-spacing:16.348290pt;}
.wsf0{word-spacing:16.349977pt;}
.ws77{word-spacing:16.406667pt;}
.ws76{word-spacing:16.407190pt;}
.wsb{word-spacing:16.536601pt;}
.ws13{word-spacing:16.586069pt;}
.ws14{word-spacing:16.586919pt;}
.wsd3{word-spacing:16.697265pt;}
.ws65{word-spacing:16.698545pt;}
.ws138{word-spacing:16.815374pt;}
.ws2f{word-spacing:16.854403pt;}
.ws15{word-spacing:16.899347pt;}
.ws96{word-spacing:16.930109pt;}
.wsb7{word-spacing:16.930703pt;}
.ws155{word-spacing:16.931389pt;}
.ws7a{word-spacing:16.931796pt;}
.ws24{word-spacing:16.989512pt;}
.ws117{word-spacing:16.989571pt;}
.ws3c{word-spacing:16.989978pt;}
.wsb8{word-spacing:17.046531pt;}
.ws79{word-spacing:17.104654pt;}
.wsb6{word-spacing:17.337925pt;}
.ws75{word-spacing:17.338597pt;}
.ws141{word-spacing:17.454967pt;}
.ws8e{word-spacing:17.512742pt;}
.wsb9{word-spacing:17.570196pt;}
.wsc8{word-spacing:17.570458pt;}
.ws13f{word-spacing:17.570575pt;}
.ws116{word-spacing:17.571331pt;}
.ws85{word-spacing:17.571389pt;}
.ws8d{word-spacing:17.571738pt;}
.ws6d{word-spacing:17.629338pt;}
.ws51{word-spacing:17.629571pt;}
.ws5f{word-spacing:17.688102pt;}
.ws78{word-spacing:17.745760pt;}
.ws9f{word-spacing:17.919608pt;}
.ws84{word-spacing:18.152335pt;}
.wsab{word-spacing:18.210168pt;}
.ws102{word-spacing:18.211099pt;}
.ws9a{word-spacing:18.211390pt;}
.ws50{word-spacing:18.269106pt;}
.wsef{word-spacing:18.269802pt;}
.ws1b{word-spacing:18.385470pt;}
.wsa3{word-spacing:18.617325pt;}
.ws55{word-spacing:18.617790pt;}
.ws25{word-spacing:18.618605pt;}
.ws9e{word-spacing:18.619012pt;}
.ws14f{word-spacing:18.733805pt;}
.wsb3{word-spacing:18.791928pt;}
.ws10e{word-spacing:18.792394pt;}
.wsf1{word-spacing:18.792743pt;}
.ws11{word-spacing:18.819400pt;}
.wse0{word-spacing:18.850168pt;}
.wsee{word-spacing:18.850576pt;}
.ws62{word-spacing:18.850925pt;}
.wsda{word-spacing:18.851856pt;}
.ws10f{word-spacing:18.908234pt;}
.wsff{word-spacing:18.908350pt;}
.ws39{word-spacing:18.908699pt;}
.wsaa{word-spacing:18.908954pt;}
.ws27{word-spacing:18.909107pt;}
.ws26{word-spacing:18.966416pt;}
.ws63{word-spacing:19.025470pt;}
.ws12b{word-spacing:19.200016pt;}
.wsa2{word-spacing:19.257325pt;}
.ws106{word-spacing:19.258198pt;}
.ws118{word-spacing:19.258954pt;}
.ws94{word-spacing:19.317252pt;}
.wsa1{word-spacing:19.431982pt;}
.ws12d{word-spacing:19.489593pt;}
.ws112{word-spacing:19.489994pt;}
.ws142{word-spacing:19.490111pt;}
.ws49{word-spacing:19.490169pt;}
.ws19{word-spacing:19.490518pt;}
.wsb0{word-spacing:19.491274pt;}
.wsd1{word-spacing:19.491391pt;}
.ws1a{word-spacing:19.491856pt;}
.ws4f{word-spacing:19.548293pt;}
.ws37{word-spacing:19.548700pt;}
.ws122{word-spacing:19.549922pt;}
.wsd8{word-spacing:19.549980pt;}
.ws88{word-spacing:19.606824pt;}
.ws8a{word-spacing:19.665064pt;}
.ws127{word-spacing:19.666344pt;}
.wsd6{word-spacing:19.897045pt;}
.ws41{word-spacing:19.897791pt;}
.ws132{word-spacing:19.898547pt;}
.wsdd{word-spacing:19.899013pt;}
.ws128{word-spacing:19.956788pt;}
.wsbc{word-spacing:20.013689pt;}
.ws81{word-spacing:20.013748pt;}
.ws42{word-spacing:20.130111pt;}
.wsa8{word-spacing:20.130926pt;}
.ws1e{word-spacing:20.130984pt;}
.ws120{word-spacing:20.131333pt;}
.wsd2{word-spacing:20.131799pt;}
.ws104{word-spacing:20.188293pt;}
.wsc3{word-spacing:20.189748pt;}
.ws4d{word-spacing:20.189980pt;}
.wsa7{word-spacing:20.304657pt;}
.ws5e{word-spacing:20.304700pt;}
.wsa9{word-spacing:20.480086pt;}
.ws53{word-spacing:20.480366pt;}
.wsf9{word-spacing:20.538606pt;}
.ws92{word-spacing:20.596381pt;}
.ws14a{word-spacing:20.655377pt;}
.ws52{word-spacing:20.712279pt;}
.ws123{word-spacing:20.769663pt;}
.ws125{word-spacing:20.770268pt;}
.wsf3{word-spacing:20.770577pt;}
.wsd7{word-spacing:20.770831pt;}
.wsf8{word-spacing:20.770926pt;}
.ws157{word-spacing:20.771392pt;}
.wsd5{word-spacing:20.771741pt;}
.ws20{word-spacing:20.771799pt;}
.ws4{word-spacing:20.796054pt;}
.ws83{word-spacing:20.828643pt;}
.wsf5{word-spacing:20.829108pt;}
.ws2a{word-spacing:20.829574pt;}
.ws3{word-spacing:20.840305pt;}
.ws14c{word-spacing:20.945123pt;}
.ws12f{word-spacing:20.946287pt;}
.wsba{word-spacing:21.177983pt;}
.wsa0{word-spacing:21.178199pt;}
.ws6f{word-spacing:21.295029pt;}
.ws2{word-spacing:21.403761pt;}
.ws11c{word-spacing:21.409692pt;}
.wsdc{word-spacing:21.410520pt;}
.ws82{word-spacing:21.410788pt;}
.ws48{word-spacing:21.410927pt;}
.wse7{word-spacing:21.411392pt;}
.wsea{word-spacing:21.463621pt;}
.ws38{word-spacing:21.469109pt;}
.ws90{word-spacing:21.469687pt;}
.wsc{word-spacing:21.570417pt;}
.ws151{word-spacing:21.585473pt;}
.ws1{word-spacing:21.696743pt;}
.wseb{word-spacing:21.817793pt;}
.ws7c{word-spacing:21.818377pt;}
.ws154{word-spacing:21.934564pt;}
.wsc7{word-spacing:22.050520pt;}
.ws150{word-spacing:22.050578pt;}
.ws46{word-spacing:22.050601pt;}
.wsbb{word-spacing:22.050831pt;}
.ws44{word-spacing:22.050927pt;}
.ws34{word-spacing:22.051684pt;}
.ws8b{word-spacing:22.051858pt;}
.ws80{word-spacing:22.108637pt;}
.ws4c{word-spacing:22.108702pt;}
.ws119{word-spacing:22.109051pt;}
.ws12c{word-spacing:22.225066pt;}
.ws91{word-spacing:22.400833pt;}
.ws35{word-spacing:22.458201pt;}
.ws13e{word-spacing:22.573692pt;}
.wsbf{word-spacing:22.574099pt;}
.ws7f{word-spacing:22.689997pt;}
.wsa4{word-spacing:22.690113pt;}
.ws22{word-spacing:22.690172pt;}
.ws18{word-spacing:22.690521pt;}
.ws6e{word-spacing:22.748295pt;}
.wsbe{word-spacing:22.750260pt;}
.ws6b{word-spacing:22.807699pt;}
.ws23{word-spacing:22.865066pt;}
.ws68{word-spacing:23.040776pt;}
.ws69{word-spacing:23.097270pt;}
.ws54{word-spacing:23.097387pt;}
.ws72{word-spacing:23.099074pt;}
.ws11e{word-spacing:23.156790pt;}
.ws73{word-spacing:23.213750pt;}
.ws144{word-spacing:23.215379pt;}
.ws13b{word-spacing:23.272805pt;}
.wsd{word-spacing:23.299985pt;}
.wsa6{word-spacing:23.330638pt;}
.ws66{word-spacing:23.330929pt;}
.ws8f{word-spacing:23.331394pt;}
.ws71{word-spacing:23.389983pt;}
.ws21{word-spacing:23.505474pt;}
.wsb4{word-spacing:23.531085pt;}
.ws1f{word-spacing:23.679612pt;}
.wsac{word-spacing:23.970522pt;}
.ws10d{word-spacing:23.971744pt;}
.ws93{word-spacing:23.971802pt;}
.ws3a{word-spacing:24.029111pt;}
.ws6a{word-spacing:24.029576pt;}
.ws8c{word-spacing:24.029925pt;}
.ws6c{word-spacing:24.032757pt;}
.ws103{word-spacing:24.610173pt;}
.ws158{word-spacing:24.610522pt;}
.ws9d{word-spacing:24.610930pt;}
.wsae{word-spacing:24.669111pt;}
.ws95{word-spacing:24.726159pt;}
.ws45{word-spacing:25.075570pt;}
.ws33{word-spacing:25.250116pt;}
.ws3b{word-spacing:25.250930pt;}
.wsaf{word-spacing:25.308705pt;}
.ws105{word-spacing:25.425476pt;}
.ws130{word-spacing:25.426386pt;}
.wsc4{word-spacing:25.600778pt;}
.ws107{word-spacing:25.600836pt;}
.wsc6{word-spacing:25.657447pt;}
.ws4b{word-spacing:25.657796pt;}
.ws136{word-spacing:25.773694pt;}
.ws4e{word-spacing:25.890174pt;}
.ws28{word-spacing:25.890523pt;}
.wsad{word-spacing:25.948298pt;}
.ws109{word-spacing:26.529959pt;}
.ws17{word-spacing:26.530117pt;}
.ws70{word-spacing:26.531804pt;}
.ws5a{word-spacing:26.588966pt;}
.ws11b{word-spacing:26.589986pt;}
.ws5d{word-spacing:26.880662pt;}
.ws5b{word-spacing:27.171364pt;}
.wsf2{word-spacing:27.171746pt;}
.wsec{word-spacing:27.171804pt;}
.ws5c{word-spacing:27.229579pt;}
.ws2b{word-spacing:27.282423pt;}
.ws11d{word-spacing:27.345070pt;}
.ws10c{word-spacing:27.985885pt;}
.ws13a{word-spacing:28.334162pt;}
.wsdf{word-spacing:28.715573pt;}
.wsde{word-spacing:28.720907pt;}
.wsed{word-spacing:28.974104pt;}
.ws14d{word-spacing:29.904313pt;}
.wsf6{word-spacing:30.733787pt;}
.wse2{word-spacing:32.251413pt;}
.wse5{word-spacing:32.443413pt;}
.ws2d{word-spacing:34.134746pt;}
.ws2c{word-spacing:34.323303pt;}
.wscd{word-spacing:39.551867pt;}
.wsf7{word-spacing:47.864453pt;}
.wsca{word-spacing:64.744453pt;}
.wscc{word-spacing:65.247867pt;}
.wsd9{word-spacing:83.637200pt;}
.ws16{word-spacing:86.201916pt;}
.wsfa{word-spacing:97.131549pt;}
.wsfe{word-spacing:121.908987pt;}
.wsfc{word-spacing:121.914320pt;}
.ws59{word-spacing:705.047860pt;}
._35{margin-left:-819.035023pt;}
._33{margin-left:-787.037156pt;}
._36{margin-left:-765.917156pt;}
._32{margin-left:-579.674926pt;}
._4{margin-left:-31.106867pt;}
._6{margin-left:-30.054674pt;}
._26{margin-left:-28.762243pt;}
._1c{margin-left:-25.164631pt;}
._8{margin-left:-24.139621pt;}
._3b{margin-left:-22.637331pt;}
._7{margin-left:-7.312905pt;}
._b{margin-left:-6.122312pt;}
._c{margin-left:-4.597253pt;}
._9{margin-left:-2.954329pt;}
._0{margin-left:-2.006995pt;}
._5{margin-left:-0.905572pt;}
._1{width:1.074791pt;}
._e{width:2.077786pt;}
._11{width:3.252296pt;}
._23{width:4.401060pt;}
._2b{width:9.774554pt;}
._29{width:10.851487pt;}
._2c{width:12.328219pt;}
._2d{width:13.300958pt;}
._d{width:14.306370pt;}
._14{width:15.399294pt;}
._f{width:16.359116pt;}
._13{width:17.356123pt;}
._15{width:18.490363pt;}
._18{width:19.478403pt;}
._3{width:20.481617pt;}
._19{width:21.508025pt;}
._a{width:22.476888pt;}
._10{width:23.903556pt;}
._16{width:25.200769pt;}
._1a{width:26.829278pt;}
._2e{width:27.896851pt;}
._2{width:28.799693pt;}
._17{width:30.371691pt;}
._1d{width:31.383794pt;}
._1f{width:33.333046pt;}
._20{width:35.148953pt;}
._25{width:37.353573pt;}
._12{width:38.668608pt;}
._21{width:39.707059pt;}
._27{width:42.124544pt;}
._1b{width:44.880938pt;}
._24{width:46.063443pt;}
._2a{width:47.245045pt;}
._3c{width:50.605542pt;}
._3d{width:52.995172pt;}
._38{width:57.203133pt;}
._31{width:64.748747pt;}
._37{width:69.875133pt;}
._28{width:72.279053pt;}
._1e{width:75.917278pt;}
._22{width:77.100372pt;}
._30{width:90.690080pt;}
._2f{width:103.042080pt;}
._34{width:108.834080pt;}
._39{width:142.253123pt;}
._3a{width:498.618597pt;}
.fs3{font-size:0.640000pt;}
.fs6{font-size:31.880427pt;}
.fse{font-size:35.145280pt;}
.fsc{font-size:39.927200pt;}
.fsa{font-size:40.308160pt;}
.fs8{font-size:42.507253pt;}
.fsd{font-size:43.931627pt;}
.fs7{font-size:47.820693pt;}
.fsb{font-size:49.908960pt;}
.fs9{font-size:50.385173pt;}
.fs2{font-size:53.134080pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1b1{bottom:94.852133pt;}
.y134{bottom:94.852667pt;}
.y13a{bottom:94.852933pt;}
.yef{bottom:94.853067pt;}
.y59{bottom:94.853333pt;}
.y2d{bottom:94.853453pt;}
.y7e{bottom:94.853467pt;}
.yd5{bottom:94.853600pt;}
.y1b0{bottom:134.691733pt;}
.y188{bottom:134.693067pt;}
.yac{bottom:136.613067pt;}
.y2c{bottom:143.333187pt;}
.yd4{bottom:145.253600pt;}
.y133{bottom:147.172400pt;}
.y7d{bottom:148.293067pt;}
.y1af{bottom:152.772000pt;}
.y187{bottom:152.773333pt;}
.yab{bottom:154.692800pt;}
.y2b{bottom:158.053453pt;}
.yd3{bottom:163.333333pt;}
.y132{bottom:165.252667pt;}
.y7c{bottom:166.373333pt;}
.y2a{bottom:172.613320pt;}
.yaa{bottom:172.773067pt;}
.yd2{bottom:181.413600pt;}
.y1ae{bottom:182.212133pt;}
.y131{bottom:183.332400pt;}
.y7b{bottom:184.453600pt;}
.y186{bottom:185.253600pt;}
.y29{bottom:187.173187pt;}
.ya9{bottom:190.692800pt;}
.yd1{bottom:199.492800pt;}
.y1ad{bottom:200.291867pt;}
.y130{bottom:201.412667pt;}
.y7a{bottom:202.533333pt;}
.y28{bottom:206.853333pt;}
.ya8{bottom:208.773067pt;}
.yd0{bottom:217.573067pt;}
.y12f{bottom:219.492400pt;}
.y79{bottom:220.613600pt;}
.ya7{bottom:226.853333pt;}
.y15d{bottom:226.853467pt;}
.y27{bottom:228.133067pt;}
.y1ac{bottom:229.732000pt;}
.y185{bottom:230.373333pt;}
.ycf{bottom:235.653333pt;}
.y12e{bottom:237.572667pt;}
.y78{bottom:238.692800pt;}
.y58{bottom:239.973333pt;}
.ya6{bottom:244.933067pt;}
.y15c{bottom:244.933200pt;}
.y26{bottom:246.213333pt;}
.y1ab{bottom:247.812267pt;}
.y184{bottom:248.293067pt;}
.yce{bottom:253.733067pt;}
.y12d{bottom:255.652933pt;}
.y57{bottom:258.053600pt;}
.ya5{bottom:263.013067pt;}
.y15b{bottom:263.013467pt;}
.y25{bottom:264.293067pt;}
.y1aa{bottom:265.892000pt;}
.y77{bottom:266.052667pt;}
.y183{bottom:266.373333pt;}
.ycd{bottom:271.813333pt;}
.y12c{bottom:273.732667pt;}
.y56{bottom:276.132133pt;}
.ya4{bottom:281.092800pt;}
.y24{bottom:282.373333pt;}
.y182{bottom:284.453600pt;}
.ycc{bottom:289.893067pt;}
.y12b{bottom:291.812933pt;}
.y55{bottom:294.212400pt;}
.y1a9{bottom:295.332133pt;}
.ya3{bottom:299.173067pt;}
.y23{bottom:300.453600pt;}
.y181{bottom:302.533067pt;}
.y76{bottom:305.092800pt;}
.y139{bottom:305.092933pt;}
.yee{bottom:305.093067pt;}
.ycb{bottom:307.973333pt;}
.y12a{bottom:309.892667pt;}
.y54{bottom:312.292133pt;}
.y1a8{bottom:313.412400pt;}
.y106{bottom:313.413333pt;}
.ya2{bottom:317.253333pt;}
.y22{bottom:318.533333pt;}
.y180{bottom:320.613600pt;}
.y75{bottom:323.173067pt;}
.y138{bottom:323.173200pt;}
.yed{bottom:323.173333pt;}
.yca{bottom:326.053600pt;}
.y143{bottom:328.381333pt;}
.y53{bottom:330.372400pt;}
.y1a7{bottom:331.492133pt;}
.y105{bottom:331.493067pt;}
.ya1{bottom:335.333067pt;}
.y21{bottom:336.613600pt;}
.y17f{bottom:338.693333pt;}
.y74{bottom:341.253333pt;}
.y137{bottom:341.253467pt;}
.yec{bottom:341.253600pt;}
.y129{bottom:342.372933pt;}
.y141{bottom:343.757333pt;}
.yc9{bottom:343.973333pt;}
.y52{bottom:348.292133pt;}
.ya0{bottom:353.413333pt;}
.y20{bottom:354.692800pt;}
.y13b{bottom:354.741333pt;}
.y73{bottom:359.173067pt;}
.y1a6{bottom:360.932267pt;}
.yc8{bottom:362.053600pt;}
.y51{bottom:366.372400pt;}
.y17e{bottom:367.013600pt;}
.yf8{bottom:367.721333pt;}
.y9f{bottom:371.493067pt;}
.y1f{bottom:372.773067pt;}
.yde{bottom:376.222667pt;}
.y72{bottom:377.253333pt;}
.y1a5{bottom:379.012533pt;}
.yc7{bottom:380.133333pt;}
.y50{bottom:384.452667pt;}
.y17d{bottom:385.093067pt;}
.yf6{bottom:385.357333pt;}
.y128{bottom:388.132800pt;}
.y9e{bottom:389.413333pt;}
.y13c{bottom:389.830667pt;}
.y1e{bottom:390.692800pt;}
.ydc{bottom:395.117333pt;}
.y71{bottom:395.333067pt;}
.yf0{bottom:397.953333pt;}
.yc6{bottom:398.213600pt;}
.y4f{bottom:402.532400pt;}
.y17c{bottom:403.173067pt;}
.y127{bottom:406.213067pt;}
.y9d{bottom:407.493067pt;}
.yd6{bottom:407.713333pt;}
.y1a4{bottom:408.452667pt;}
.y1d{bottom:408.773067pt;}
.y70{bottom:413.413333pt;}
.y104{bottom:415.973333pt;}
.y17b{bottom:421.253333pt;}
.y126{bottom:424.292800pt;}
.y13d{bottom:424.976000pt;}
.y9c{bottom:425.573067pt;}
.yeb{bottom:425.733333pt;}
.y1a3{bottom:426.532400pt;}
.y1c{bottom:426.853467pt;}
.y6f{bottom:431.493067pt;}
.y4e{bottom:435.172533pt;}
.y17a{bottom:439.333067pt;}
.yf1{bottom:440.150667pt;}
.y142{bottom:441.006667pt;}
.y125{bottom:442.373067pt;}
.y9b{bottom:443.653333pt;}
.y1b{bottom:444.933200pt;}
.y6e{bottom:449.573333pt;}
.yd7{bottom:449.910667pt;}
.yc5{bottom:455.333333pt;}
.y1a2{bottom:455.972533pt;}
.y179{bottom:457.413333pt;}
.y13e{bottom:460.066667pt;}
.y124{bottom:460.453333pt;}
.y9a{bottom:461.733067pt;}
.yf7{bottom:462.738667pt;}
.y1a{bottom:463.013467pt;}
.y6d{bottom:467.653600pt;}
.y4d{bottom:467.972533pt;}
.ydd{bottom:472.498667pt;}
.yc4{bottom:473.413600pt;}
.y1a1{bottom:474.052800pt;}
.y123{bottom:478.533067pt;}
.y99{bottom:479.813333pt;}
.y19{bottom:481.093200pt;}
.yf2{bottom:482.285333pt;}
.y178{bottom:485.733067pt;}
.y6c{bottom:485.733333pt;}
.y4c{bottom:486.052267pt;}
.yc3{bottom:491.493333pt;}
.yd8{bottom:492.045333pt;}
.y1a0{bottom:492.132533pt;}
.y13f{bottom:495.157333pt;}
.y122{bottom:496.613067pt;}
.y98{bottom:497.893067pt;}
.y18{bottom:499.173467pt;}
.y177{bottom:503.813600pt;}
.y4b{bottom:504.132533pt;}
.y121{bottom:514.532800pt;}
.y97{bottom:515.973067pt;}
.y19f{bottom:521.572667pt;}
.y176{bottom:521.892800pt;}
.y4a{bottom:522.052267pt;}
.yf3{bottom:524.482667pt;}
.yb5{bottom:526.461333pt;}
.y140{bottom:530.302667pt;}
.y17{bottom:531.653200pt;}
.y120{bottom:532.613067pt;}
.y96{bottom:534.052800pt;}
.yd9{bottom:534.242667pt;}
.y6b{bottom:538.533333pt;}
.y19e{bottom:539.652400pt;}
.y175{bottom:539.973067pt;}
.y49{bottom:540.132533pt;}
.yb3{bottom:545.357333pt;}
.y11f{bottom:550.692800pt;}
.y95{bottom:552.133067pt;}
.y15a{bottom:553.413467pt;}
.yad{bottom:557.953333pt;}
.y174{bottom:558.053333pt;}
.y48{bottom:558.212800pt;}
.y144{bottom:565.393333pt;}
.yf4{bottom:566.680000pt;}
.y11e{bottom:568.773067pt;}
.y19d{bottom:569.092533pt;}
.y94{bottom:570.212800pt;}
.y47{bottom:576.292533pt;}
.yda{bottom:576.440000pt;}
.y16{bottom:577.413600pt;}
.y11d{bottom:586.853333pt;}
.y173{bottom:587.013333pt;}
.y19c{bottom:587.172800pt;}
.y93{bottom:588.132533pt;}
.y15{bottom:593.413600pt;}
.y46{bottom:594.372800pt;}
.yae{bottom:598.261333pt;}
.y145{bottom:600.484000pt;}
.y11c{bottom:604.933067pt;}
.y172{bottom:605.093067pt;}
.y92{bottom:606.212800pt;}
.yf5{bottom:608.814667pt;}
.yb4{bottom:608.845333pt;}
.y14{bottom:609.413600pt;}
.y45{bottom:612.453067pt;}
.y19b{bottom:616.612933pt;}
.ydb{bottom:618.574667pt;}
.y11b{bottom:623.013333pt;}
.y171{bottom:623.173333pt;}
.y13{bottom:625.253733pt;}
.y44{bottom:630.532800pt;}
.y1c2{bottom:631.173067pt;}
.y91{bottom:633.732533pt;}
.y19a{bottom:634.692667pt;}
.y146{bottom:635.628000pt;}
.yaf{bottom:638.569333pt;}
.y11a{bottom:641.093067pt;}
.y170{bottom:641.253600pt;}
.y12{bottom:641.253733pt;}
.y43{bottom:648.613067pt;}
.y1c1{bottom:649.253333pt;}
.yf9{bottom:651.012000pt;}
.y14a{bottom:651.660000pt;}
.y11{bottom:657.093333pt;}
.y119{bottom:659.173333pt;}
.ydf{bottom:660.772000pt;}
.y103{bottom:661.718667pt;}
.y199{bottom:664.132800pt;}
.y42{bottom:666.692800pt;}
.y1c0{bottom:667.333067pt;}
.y147{bottom:670.718667pt;}
.yea{bottom:671.038667pt;}
.y90{bottom:672.612800pt;}
.y10{bottom:673.093333pt;}
.y102{bottom:674.316000pt;}
.y118{bottom:677.253600pt;}
.yb0{bottom:678.877333pt;}
.y198{bottom:682.213067pt;}
.ye9{bottom:683.634667pt;}
.y41{bottom:684.773067pt;}
.y101{bottom:686.912000pt;}
.ye{bottom:689.093120pt;}
.yf{bottom:689.093333pt;}
.y8f{bottom:690.692533pt;}
.yfa{bottom:693.209333pt;}
.y117{bottom:695.333333pt;}
.ye8{bottom:696.230667pt;}
.y1bf{bottom:697.413333pt;}
.y197{bottom:700.292800pt;}
.y40{bottom:702.853600pt;}
.ye0{bottom:702.970667pt;}
.yd{bottom:704.933253pt;}
.y148{bottom:705.809333pt;}
.y16f{bottom:706.373333pt;}
.y8e{bottom:708.772800pt;}
.ye7{bottom:708.828000pt;}
.y116{bottom:713.253600pt;}
.y1be{bottom:715.493067pt;}
.yb1{bottom:719.122667pt;}
.y3f{bottom:720.773333pt;}
.yc{bottom:720.933253pt;}
.y16e{bottom:724.293067pt;}
.y100{bottom:724.652000pt;}
.y8d{bottom:726.853067pt;}
.y196{bottom:729.732933pt;}
.yfb{bottom:735.345333pt;}
.ye6{bottom:736.164000pt;}
.yb{bottom:736.933253pt;}
.y6a{bottom:738.692800pt;}
.y3e{bottom:738.853600pt;}
.y149{bottom:740.954667pt;}
.y16d{bottom:742.373333pt;}
.y8c{bottom:744.932800pt;}
.ye1{bottom:745.105333pt;}
.y1bd{bottom:745.413333pt;}
.y195{bottom:747.813200pt;}
.ya{bottom:752.773387pt;}
.y69{bottom:756.773067pt;}
.y3d{bottom:756.933067pt;}
.y159{bottom:759.333467pt;}
.yb2{bottom:759.430667pt;}
.y8b{bottom:763.013067pt;}
.y1bc{bottom:763.493067pt;}
.y194{bottom:765.892933pt;}
.y16c{bottom:770.853600pt;}
.y115{bottom:773.253600pt;}
.y68{bottom:774.853333pt;}
.yc1{bottom:774.861333pt;}
.y3c{bottom:775.013333pt;}
.y14b{bottom:776.045333pt;}
.y9{bottom:777.093120pt;}
.yfc{bottom:777.542667pt;}
.y8a{bottom:781.092800pt;}
.ye2{bottom:787.302667pt;}
.yc0{bottom:787.457333pt;}
.y16b{bottom:788.933333pt;}
.y114{bottom:791.333333pt;}
.y67{bottom:792.933067pt;}
.y3b{bottom:793.093067pt;}
.y1bb{bottom:793.573333pt;}
.y193{bottom:795.333067pt;}
.y136{bottom:797.733467pt;}
.y89{bottom:799.173067pt;}
.yb6{bottom:799.801333pt;}
.y16a{bottom:806.853600pt;}
.y66{bottom:811.013333pt;}
.y14c{bottom:811.136000pt;}
.y3a{bottom:811.173200pt;}
.y1ba{bottom:811.653067pt;}
.y192{bottom:813.413333pt;}
.y88{bottom:817.253333pt;}
.yfd{bottom:819.677333pt;}
.y169{bottom:824.933333pt;}
.y110{bottom:827.266667pt;}
.y65{bottom:828.933067pt;}
.y39{bottom:829.253467pt;}
.ye3{bottom:829.437333pt;}
.y191{bottom:831.493067pt;}
.y87{bottom:835.333067pt;}
.yb7{bottom:840.109333pt;}
.y1b9{bottom:841.573333pt;}
.y168{bottom:843.013600pt;}
.y10e{bottom:845.982667pt;}
.y14d{bottom:846.226667pt;}
.y8{bottom:846.693120pt;}
.y64{bottom:847.013333pt;}
.y38{bottom:847.333200pt;}
.y86{bottom:853.413333pt;}
.y107{bottom:858.460000pt;}
.y1b8{bottom:859.653067pt;}
.y190{bottom:860.933200pt;}
.y166{bottom:861.092800pt;}
.y167{bottom:861.093333pt;}
.yfe{bottom:861.874667pt;}
.y152{bottom:862.257333pt;}
.y63{bottom:865.093333pt;}
.ybe{bottom:865.405333pt;}
.y37{bottom:865.413467pt;}
.y85{bottom:871.333067pt;}
.ye4{bottom:871.634667pt;}
.y7{bottom:878.373387pt;}
.y18f{bottom:879.013467pt;}
.y165{bottom:879.173067pt;}
.yb8{bottom:880.354667pt;}
.y14e{bottom:881.372000pt;}
.y62{bottom:883.173600pt;}
.y84{bottom:889.413333pt;}
.y1b7{bottom:889.733333pt;}
.y108{bottom:893.060000pt;}
.y6{bottom:896.933253pt;}
.y164{bottom:897.252800pt;}
.y36{bottom:897.893200pt;}
.y135{bottom:898.693333pt;}
.y61{bottom:901.253333pt;}
.yff{bottom:904.009333pt;}
.y83{bottom:907.493067pt;}
.y1b6{bottom:907.813600pt;}
.y18e{bottom:908.453067pt;}
.ye5{bottom:913.769333pt;}
.y163{bottom:915.333067pt;}
.y5{bottom:915.652987pt;}
.y10f{bottom:915.966667pt;}
.y14f{bottom:916.461333pt;}
.y60{bottom:919.333333pt;}
.yb9{bottom:920.662667pt;}
.y82{bottom:925.573600pt;}
.y18d{bottom:926.533333pt;}
.y109{bottom:927.660000pt;}
.y162{bottom:933.413333pt;}
.y4{bottom:934.213387pt;}
.yc2{bottom:934.693333pt;}
.y5f{bottom:937.413600pt;}
.y1b5{bottom:937.893333pt;}
.y35{bottom:943.653067pt;}
.y156{bottom:944.742667pt;}
.y161{bottom:951.493067pt;}
.y150{bottom:951.552000pt;}
.y3{bottom:952.773253pt;}
.y5e{bottom:955.493333pt;}
.y155{bottom:955.725333pt;}
.y1b4{bottom:955.813600pt;}
.y18c{bottom:955.973467pt;}
.yba{bottom:960.972000pt;}
.y81{bottom:961.733067pt;}
.y34{bottom:961.733333pt;}
.y10a{bottom:962.309333pt;}
.y154{bottom:966.708000pt;}
.y160{bottom:969.573333pt;}
.y2{bottom:971.333120pt;}
.y158{bottom:971.813467pt;}
.y5d{bottom:973.573600pt;}
.y18b{bottom:974.053200pt;}
.y153{bottom:977.690667pt;}
.y80{bottom:979.813333pt;}
.y33{bottom:979.813600pt;}
.y1b3{bottom:985.893333pt;}
.y151{bottom:986.642667pt;}
.y15f{bottom:987.653067pt;}
.y5c{bottom:991.653333pt;}
.y18a{bottom:992.133467pt;}
.y10b{bottom:996.909333pt;}
.y7f{bottom:997.893067pt;}
.y32{bottom:997.893333pt;}
.y157{bottom:998.373333pt;}
.ybb{bottom:1001.217333pt;}
.y1b2{bottom:1003.973600pt;}
.y15e{bottom:1005.573333pt;}
.y5b{bottom:1009.733600pt;}
.y1{bottom:1011.813333pt;}
.y31{bottom:1015.973600pt;}
.y189{bottom:1024.613733pt;}
.y10c{bottom:1031.509333pt;}
.y113{bottom:1033.141333pt;}
.y30{bottom:1034.053333pt;}
.y5a{bottom:1037.093467pt;}
.ybc{bottom:1041.524000pt;}
.y112{bottom:1045.618667pt;}
.y2f{bottom:1052.133600pt;}
.ybd{bottom:1054.121333pt;}
.y111{bottom:1058.096000pt;}
.y10d{bottom:1066.109333pt;}
.y2e{bottom:1070.053333pt;}
.ybf{bottom:1072.952000pt;}
.h5{height:0.608000pt;}
.h9{height:16.023867pt;}
.h17{height:30.224959pt;}
.h14{height:31.880440pt;}
.h15{height:34.337364pt;}
.h12{height:34.664999pt;}
.ha{height:35.865520pt;}
.h3{height:37.193856pt;}
.h4{height:39.850560pt;}
.h18{height:40.692527pt;}
.h7{height:43.636400pt;}
.hb{height:43.636933pt;}
.hc{height:43.637467pt;}
.h8{height:43.638533pt;}
.he{height:43.641200pt;}
.hf{height:44.632747pt;}
.h16{height:46.229149pt;}
.h13{height:46.670251pt;}
.h2{height:47.820800pt;}
.hd{height:52.588177pt;}
.h6{height:53.559147pt;}
.h10{height:55.146470pt;}
.h11{height:55.148550pt;}
.h1{height:81.099947pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x10{left:75.520000pt;}
.x1{left:78.719733pt;}
.x3{left:83.520267pt;}
.x12{left:92.000000pt;}
.x11{left:98.240000pt;}
.x4c{left:105.440147pt;}
.xb{left:112.000373pt;}
.x1a{left:117.600000pt;}
.x6{left:121.120107pt;}
.x1b{left:122.559867pt;}
.xa{left:131.840373pt;}
.x40{left:143.432000pt;}
.x41{left:148.922667pt;}
.x38{left:155.469333pt;}
.x1f{left:161.194667pt;}
.x42{left:168.274667pt;}
.x1d{left:173.824000pt;}
.x1e{left:180.121333pt;}
.x4b{left:183.359893pt;}
.x21{left:187.225333pt;}
.x37{left:195.914667pt;}
.x4{left:197.760267pt;}
.x5{left:204.000373pt;}
.x2{left:218.720267pt;}
.x20{left:239.658667pt;}
.x2e{left:241.201333pt;}
.x30{left:242.322667pt;}
.x22{left:247.184000pt;}
.x31{left:248.760000pt;}
.x7{left:256.800107pt;}
.x14{left:270.400000pt;}
.x1c{left:280.000000pt;}
.x39{left:291.400000pt;}
.x4a{left:292.320000pt;}
.x3b{left:293.236000pt;}
.x3a{left:299.475520pt;}
.x44{left:312.562667pt;}
.x45{left:313.876000pt;}
.x43{left:320.409333pt;}
.x25{left:326.225333pt;}
.x32{left:342.916000pt;}
.x9{left:348.800373pt;}
.x8{left:362.400373pt;}
.x26{left:367.952000pt;}
.x33{left:370.616000pt;}
.x3f{left:372.320147pt;}
.x13{left:374.239893pt;}
.x27{left:375.477333pt;}
.x46{left:391.886667pt;}
.x3c{left:403.901333pt;}
.x47{left:421.192000pt;}
.x2c{left:442.240000pt;}
.x3d{left:445.920000pt;}
.x2d{left:447.200000pt;}
.x3e{left:450.880000pt;}
.x28{left:454.581333pt;}
.x24{left:458.400000pt;}
.x2b{left:465.280000pt;}
.x34{left:471.209333pt;}
.x23{left:482.306667pt;}
.x29{left:496.308000pt;}
.x35{left:498.972000pt;}
.x2a{left:503.833333pt;}
.x2f{left:511.680000pt;}
.x36{left:518.400000pt;}
.x15{left:532.638667pt;}
.x49{left:536.120000pt;}
.x16{left:539.998667pt;}
.x48{left:543.966667pt;}
.xc{left:575.040000pt;}
.xd{left:585.120000pt;}
.xe{left:616.160000pt;}
.xf{left:626.240000pt;}
.x17{left:647.678667pt;}
.x18{left:652.638667pt;}
.x19{left:675.358667pt;}
}




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