
    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_c95a1050d632bd5e567691f7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7ed4c2e92a8e9f9053a73ba0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910000;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_3df385104bf4ced6384d7087.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.957000;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_b8ba893e94351273a3495d1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972000;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_a6fade44b63dc76d8254ca35.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.061000;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_35d493d558d427ab372ff0e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.985000;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_1af4be2107bc7bb57ee4b4a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.663000;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_75578f1087cd3a0e301bb01a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972000;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_74811783b9868d7ee325f5d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.699000;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_61f08e28eb3b8654e59ba041.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_a1b466fd3d67891c8693335f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281287,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-37.080634px;}
.v8{vertical-align:-18.366000px;}
.v7{vertical-align:-14.964000px;}
.v3{vertical-align:-9.528000px;}
.ve{vertical-align:-1.702031px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.528000px;}
.va{vertical-align:17.686275px;}
.vb{vertical-align:22.110000px;}
.v9{vertical-align:26.532000px;}
.v5{vertical-align:34.356000px;}
.vd{vertical-align:35.718000px;}
.v2{vertical-align:37.080634px;}
.v4{vertical-align:43.884792px;}
.vc{vertical-align:45.240000px;}
.ls6{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.005198px;}
.ls1e{letter-spacing:0.054456px;}
.ls25{letter-spacing:0.057907px;}
.ls1a{letter-spacing:0.063456px;}
.ls1c{letter-spacing:0.063907px;}
.lsa{letter-spacing:0.089561px;}
.ls4e{letter-spacing:0.137656px;}
.ls32{letter-spacing:0.143970px;}
.ls3e{letter-spacing:0.145858px;}
.ls14{letter-spacing:0.149016px;}
.lsd{letter-spacing:0.149970px;}
.ls10{letter-spacing:0.150708px;}
.ls45{letter-spacing:0.155725px;}
.ls9{letter-spacing:0.158012px;}
.ls42{letter-spacing:0.166296px;}
.ls13{letter-spacing:0.204710px;}
.ls27{letter-spacing:0.204780px;}
.ls3b{letter-spacing:0.224864px;}
.ls39{letter-spacing:0.236132px;}
.ls2{letter-spacing:0.247123px;}
.ls55{letter-spacing:0.264596px;}
.ls0{letter-spacing:0.275482px;}
.ls43{letter-spacing:2.701338px;}
.ls11{letter-spacing:2.830470px;}
.ls2a{letter-spacing:2.963676px;}
.ls1d{letter-spacing:2.985102px;}
.ls23{letter-spacing:2.991102px;}
.ls47{letter-spacing:3.043338px;}
.ls56{letter-spacing:3.355123px;}
.ls16{letter-spacing:7.225044px;}
.ls4a{letter-spacing:10.191800px;}
.ls21{letter-spacing:10.555380px;}
.ls35{letter-spacing:11.989044px;}
.ls2f{letter-spacing:13.505676px;}
.ls26{letter-spacing:13.511676px;}
.lsf{letter-spacing:14.009868px;}
.ls36{letter-spacing:14.259359px;}
.ls37{letter-spacing:14.355317px;}
.ls51{letter-spacing:14.512831px;}
.ls5{letter-spacing:15.260342px;}
.ls48{letter-spacing:16.191313px;}
.ls18{letter-spacing:16.895172px;}
.ls46{letter-spacing:16.987338px;}
.ls4d{letter-spacing:17.156500px;}
.lse{letter-spacing:17.271102px;}
.ls33{letter-spacing:17.277102px;}
.ls41{letter-spacing:17.329338px;}
.ls3f{letter-spacing:17.637080px;}
.ls40{letter-spacing:17.748304px;}
.lsc{letter-spacing:17.752230px;}
.ls22{letter-spacing:17.784216px;}
.ls54{letter-spacing:18.287321px;}
.ls4c{letter-spacing:18.870327px;}
.ls53{letter-spacing:20.176968px;}
.ls52{letter-spacing:20.298516px;}
.ls7{letter-spacing:20.359290px;}
.ls8{letter-spacing:20.420064px;}
.ls15{letter-spacing:20.518470px;}
.ls20{letter-spacing:20.541612px;}
.ls19{letter-spacing:20.638850px;}
.ls28{letter-spacing:20.651676px;}
.ls1b{letter-spacing:20.673102px;}
.ls30{letter-spacing:20.993676px;}
.ls24{letter-spacing:24.919044px;}
.ls2e{letter-spacing:30.423464px;}
.ls3c{letter-spacing:30.435619px;}
.ls3d{letter-spacing:30.763799px;}
.ls4b{letter-spacing:30.775954px;}
.ls4f{letter-spacing:37.498920px;}
.ls3a{letter-spacing:41.920920px;}
.lsb{letter-spacing:44.370979px;}
.ls1{letter-spacing:73.706707px;}
.ls2c{letter-spacing:74.899560px;}
.ls4{letter-spacing:111.325813px;}
.ls3{letter-spacing:133.508323px;}
.ls29{letter-spacing:395.353357px;}
.ls31{letter-spacing:614.758126px;}
.ls38{letter-spacing:725.653588px;}
.ls2d{letter-spacing:826.006464px;}
.ls49{letter-spacing:857.301566px;}
.ls1f{letter-spacing:900.162806px;}
.ls34{letter-spacing:917.166564px;}
.ls50{letter-spacing:983.499131px;}
.ls12{letter-spacing:990.983855px;}
.ls2b{letter-spacing:1066.163749px;}
.ls17{letter-spacing:1108.346886px;}
.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;}
}
.ws67{word-spacing:-81.756216px;}
.ws68{word-spacing:-63.972000px;}
.ws88{word-spacing:-34.094214px;}
.ws6a{word-spacing:-21.302676px;}
.ws4e{word-spacing:-14.649588px;}
.wse{word-spacing:-13.917246px;}
.ws12{word-spacing:-13.490496px;}
.ws90{word-spacing:-12.452562px;}
.ws9b{word-spacing:-12.069918px;}
.ws10{word-spacing:-9.277248px;}
.ws72{word-spacing:-3.622130px;}
.ws7e{word-spacing:-3.464118px;}
.ws33{word-spacing:-2.686680px;}
.ws3d{word-spacing:0.000000px;}
.ws77{word-spacing:0.425418px;}
.ws7f{word-spacing:0.486192px;}
.ws27{word-spacing:0.546966px;}
.ws47{word-spacing:0.668514px;}
.ws86{word-spacing:0.729288px;}
.ws57{word-spacing:0.790062px;}
.ws3f{word-spacing:0.850836px;}
.ws45{word-spacing:0.911610px;}
.ws44{word-spacing:0.972384px;}
.ws43{word-spacing:1.093932px;}
.ws28{word-spacing:1.154706px;}
.ws78{word-spacing:1.203325px;}
.ws79{word-spacing:1.215480px;}
.wsa3{word-spacing:1.276254px;}
.ws13{word-spacing:1.337028px;}
.ws70{word-spacing:1.397802px;}
.ws97{word-spacing:1.458576px;}
.ws9{word-spacing:1.519350px;}
.ws58{word-spacing:1.580124px;}
.ws71{word-spacing:1.701672px;}
.wsb{word-spacing:1.762446px;}
.ws82{word-spacing:1.823220px;}
.wsac{word-spacing:1.903230px;}
.ws89{word-spacing:1.944768px;}
.ws5d{word-spacing:2.005542px;}
.ws85{word-spacing:2.127090px;}
.ws8b{word-spacing:2.187864px;}
.ws6f{word-spacing:2.248638px;}
.ws80{word-spacing:2.491734px;}
.ws55{word-spacing:2.552508px;}
.ws75{word-spacing:2.613282px;}
.ws76{word-spacing:2.674056px;}
.ws40{word-spacing:2.734830px;}
.ws99{word-spacing:2.795604px;}
.ws2a{word-spacing:2.856378px;}
.wsb6{word-spacing:2.882034px;}
.ws2d{word-spacing:2.917152px;}
.ws98{word-spacing:3.038700px;}
.ws59{word-spacing:3.099474px;}
.wsab{word-spacing:3.153924px;}
.ws6c{word-spacing:3.221022px;}
.ws56{word-spacing:3.245332px;}
.wsb8{word-spacing:3.262680px;}
.ws73{word-spacing:3.281796px;}
.ws9d{word-spacing:3.425814px;}
.ws22{word-spacing:3.464118px;}
.wsb4{word-spacing:3.480192px;}
.ws83{word-spacing:3.524892px;}
.ws74{word-spacing:3.585666px;}
.ws2c{word-spacing:3.646440px;}
.wsaf{word-spacing:3.697704px;}
.wsa2{word-spacing:3.707214px;}
.wsa4{word-spacing:3.767988px;}
.ws29{word-spacing:3.889536px;}
.ws8f{word-spacing:3.915216px;}
.ws5b{word-spacing:3.950310px;}
.ws48{word-spacing:4.071858px;}
.ws95{word-spacing:4.132632px;}
.ws60{word-spacing:4.193406px;}
.ws5c{word-spacing:4.254180px;}
.ws65{word-spacing:4.290644px;}
.ws5a{word-spacing:4.314954px;}
.ws84{word-spacing:4.436502px;}
.wsa0{word-spacing:4.497276px;}
.ws7c{word-spacing:4.522578px;}
.wsb5{word-spacing:4.676508px;}
.ws42{word-spacing:4.679598px;}
.ws34{word-spacing:4.791246px;}
.ws2f{word-spacing:4.922694px;}
.ws69{word-spacing:4.970358px;}
.wsa1{word-spacing:4.983468px;}
.ws35{word-spacing:5.066226px;}
.ws4d{word-spacing:5.105016px;}
.wsb1{word-spacing:5.111532px;}
.ws5f{word-spacing:5.165790px;}
.wsae{word-spacing:5.165910px;}
.ws3e{word-spacing:5.287338px;}
.wsa7{word-spacing:5.383422px;}
.ws8c{word-spacing:5.469660px;}
.ws39{word-spacing:5.492178px;}
.ws31{word-spacing:5.530434px;}
.ws36{word-spacing:5.546556px;}
.wsba{word-spacing:5.573745px;}
.ws38{word-spacing:5.600934px;}
.ws7{word-spacing:5.651982px;}
.ws93{word-spacing:5.655312px;}
.ws92{word-spacing:5.709690px;}
.ws50{word-spacing:5.712756px;}
.ws7b{word-spacing:5.764068px;}
.ws81{word-spacing:5.773530px;}
.ws37{word-spacing:5.818446px;}
.ws49{word-spacing:5.834304px;}
.ws91{word-spacing:5.872824px;}
.ws8a{word-spacing:5.895078px;}
.ws3a{word-spacing:5.927202px;}
.ws3b{word-spacing:5.981580px;}
.ws41{word-spacing:6.016626px;}
.ws9a{word-spacing:6.035958px;}
.ws8d{word-spacing:6.077400px;}
.ws3c{word-spacing:6.090336px;}
.ws18{word-spacing:6.138174px;}
.wsa8{word-spacing:6.144714px;}
.ws2b{word-spacing:6.198948px;}
.wsb0{word-spacing:6.199092px;}
.ws4c{word-spacing:6.223258px;}
.wsc{word-spacing:6.259722px;}
.ws8{word-spacing:6.320496px;}
.ws6b{word-spacing:6.344806px;}
.ws2e{word-spacing:6.381270px;}
.ws5e{word-spacing:6.411657px;}
.wsa{word-spacing:6.442044px;}
.ws7d{word-spacing:6.496741px;}
.ws6{word-spacing:6.502818px;}
.ws96{word-spacing:6.521050px;}
.ws66{word-spacing:6.533205px;}
.ws87{word-spacing:6.539282px;}
.ws25{word-spacing:6.563592px;}
.wsb3{word-spacing:6.585176px;}
.ws6e{word-spacing:6.612211px;}
.ws4{word-spacing:6.624366px;}
.ws6d{word-spacing:6.648676px;}
.ws4b{word-spacing:6.672985px;}
.ws5{word-spacing:6.685140px;}
.wsa6{word-spacing:6.742872px;}
.ws1b{word-spacing:6.745914px;}
.ws30{word-spacing:6.806688px;}
.wsa9{word-spacing:6.851628px;}
.ws16{word-spacing:6.867462px;}
.wsb2{word-spacing:6.889693px;}
.ws32{word-spacing:6.928236px;}
.wsaa{word-spacing:6.960384px;}
.ws46{word-spacing:6.989010px;}
.wsb9{word-spacing:7.031075px;}
.wsa5{word-spacing:7.069140px;}
.ws14{word-spacing:7.110558px;}
.ws7a{word-spacing:7.123518px;}
.wsb7{word-spacing:7.177896px;}
.wsf{word-spacing:7.232106px;}
.ws8e{word-spacing:7.232274px;}
.ws20{word-spacing:7.475202px;}
.wsd{word-spacing:7.900620px;}
.ws64{word-spacing:8.022168px;}
.ws19{word-spacing:8.750592px;}
.ws21{word-spacing:8.872128px;}
.ws23{word-spacing:8.912640px;}
.ws17{word-spacing:9.602292px;}
.ws2{word-spacing:9.659772px;}
.ws4a{word-spacing:9.723744px;}
.ws63{word-spacing:10.392354px;}
.ws61{word-spacing:10.513902px;}
.ws62{word-spacing:10.635450px;}
.ws9e{word-spacing:11.908782px;}
.ws53{word-spacing:12.337122px;}
.ws54{word-spacing:12.458670px;}
.ws52{word-spacing:12.640992px;}
.ws26{word-spacing:13.491828px;}
.ws11{word-spacing:13.674150px;}
.ws4f{word-spacing:13.978020px;}
.ws1f{word-spacing:15.254274px;}
.ws1{word-spacing:17.962776px;}
.ws51{word-spacing:18.171426px;}
.ws0{word-spacing:21.302010px;}
.wsad{word-spacing:21.588066px;}
.ws15{word-spacing:22.182510px;}
.ws1c{word-spacing:23.519538px;}
.ws1a{word-spacing:25.221210px;}
.ws3{word-spacing:28.047201px;}
.ws1e{word-spacing:46.674432px;}
.ws24{word-spacing:60.348582px;}
.ws94{word-spacing:389.672748px;}
.ws1d{word-spacing:559.060026px;}
.ws9f{word-spacing:568.957014px;}
.ws9c{word-spacing:636.276978px;}
._1e{margin-left:-20.176968px;}
._19{margin-left:-17.950543px;}
._1b{margin-left:-1.016513px;}
._2{width:1.215480px;}
._1c{width:10.477438px;}
._1a{width:13.734924px;}
._15{width:15.761856px;}
._4{width:16.895172px;}
._14{width:18.718392px;}
._3{width:20.663160px;}
._5{width:21.939414px;}
._a{width:24.613470px;}
._18{width:25.646628px;}
._17{width:27.287526px;}
._16{width:29.016144px;}
._1d{width:31.462700px;}
._21{width:33.061824px;}
._1{width:39.379932px;}
._c{width:40.414710px;}
._0{width:43.294896px;}
._13{width:66.972948px;}
._12{width:74.265828px;}
._b{width:86.055984px;}
._10{width:127.564626px;}
._9{width:173.145126px;}
._11{width:202.195098px;}
._7{width:264.427674px;}
._8{width:306.118638px;}
._f{width:326.234832px;}
._d{width:335.047062px;}
._1f{width:441.168714px;}
._20{width:468.357714px;}
._e{width:556.507518px;}
._6{width:573.281142px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.246000px;}
.fs3{font-size:40.512000px;}
.fs7{font-size:42.540000px;}
.fs4{font-size:44.778000px;}
.fs5{font-size:51.174000px;}
.fs6{font-size:54.378000px;}
.fs2{font-size:60.774000px;}
.fs1{font-size:63.972000px;}
.fs0{font-size:115.146000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:51.360181px;}
.ycf{bottom:51.363000px;}
.ycd{bottom:51.365084px;}
.y153{bottom:51.449688px;}
.y83{bottom:51.452649px;}
.y18a{bottom:51.533601px;}
.y113{bottom:51.534292px;}
.y251{bottom:51.703500px;}
.y1fc{bottom:51.704601px;}
.y1fa{bottom:51.790188px;}
.y250{bottom:51.874500px;}
.yce{bottom:58.167000px;}
.y8d{bottom:66.242080px;}
.y189{bottom:66.415500px;}
.y1fb{bottom:66.586500px;}
.ycc{bottom:68.372688px;}
.y152{bottom:68.457292px;}
.y82{bottom:68.460253px;}
.y280{bottom:68.462610px;}
.y112{bottom:68.541896px;}
.y1f9{bottom:68.797792px;}
.y8c{bottom:81.123979px;}
.y110{bottom:82.998000px;}
.ycb{bottom:85.380292px;}
.y151{bottom:85.464896px;}
.y81{bottom:85.467857px;}
.y27f{bottom:85.470214px;}
.y111{bottom:85.549500px;}
.y10f{bottom:85.549792px;}
.y1f8{bottom:85.805396px;}
.yca{bottom:102.387896px;}
.y150{bottom:102.472500px;}
.y80{bottom:102.475461px;}
.y27e{bottom:102.477818px;}
.y10e{bottom:102.557396px;}
.y1f5{bottom:102.812688px;}
.y1f7{bottom:102.813000px;}
.y1f6{bottom:109.530000px;}
.y8b{bottom:111.314645px;}
.yc9{bottom:116.844000px;}
.y10d{bottom:117.013500px;}
.y2c4{bottom:118.374824px;}
.yc8{bottom:119.395500px;}
.y14f{bottom:119.479444px;}
.y7f{bottom:119.483065px;}
.y27d{bottom:119.485422px;}
.y10c{bottom:119.565000px;}
.y1f4{bottom:119.820292px;}
.y2c3{bottom:133.256723px;}
.y14e{bottom:136.488000px;}
.y7e{bottom:136.490669px;}
.y27c{bottom:136.493026px;}
.y1f3{bottom:136.827896px;}
.yc7{bottom:140.824500px;}
.y8a{bottom:141.079803px;}
.y10b{bottom:146.182500px;}
.y2c2{bottom:148.138622px;}
.y1f1{bottom:151.285500px;}
.y7d{bottom:153.498273px;}
.y27b{bottom:153.500630px;}
.y1f2{bottom:153.835500px;}
.y1f0{bottom:153.836396px;}
.y89{bottom:155.961702px;}
.y109{bottom:157.152000px;}
.yc6{bottom:162.681000px;}
.y2c1{bottom:163.020521px;}
.y10a{bottom:168.037500px;}
.y7c{bottom:170.505877px;}
.y27a{bottom:170.508234px;}
.y88{bottom:170.843601px;}
.y1ef{bottom:170.844000px;}
.y2c0{bottom:177.902420px;}
.y14d{bottom:181.986565px;}
.y1ee{bottom:185.301000px;}
.y87{bottom:185.725500px;}
.yc5{bottom:186.747584px;}
.y7b{bottom:187.513480px;}
.y279{bottom:187.515838px;}
.y1ed{bottom:187.856045px;}
.y2bf{bottom:192.784320px;}
.y108{bottom:192.785688px;}
.y14c{bottom:198.994169px;}
.yc4{bottom:203.755188px;}
.y7a{bottom:204.521084px;}
.y278{bottom:204.523441px;}
.y1ec{bottom:204.863649px;}
.y2be{bottom:207.666219px;}
.y107{bottom:209.793292px;}
.y86{bottom:215.574000px;}
.y14b{bottom:216.001773px;}
.yc3{bottom:220.762792px;}
.y79{bottom:221.528688px;}
.y277{bottom:221.531045px;}
.y1eb{bottom:221.871253px;}
.y2bd{bottom:222.548118px;}
.y106{bottom:226.800896px;}
.y14a{bottom:233.009377px;}
.y2bc{bottom:237.430017px;}
.yc2{bottom:237.770396px;}
.y78{bottom:238.536292px;}
.y276{bottom:238.538649px;}
.y1ea{bottom:238.878857px;}
.y104{bottom:241.257000px;}
.y105{bottom:243.808500px;}
.y103{bottom:243.812922px;}
.y149{bottom:250.016980px;}
.yc0{bottom:252.226500px;}
.y2bb{bottom:252.311916px;}
.yc1{bottom:254.778000px;}
.ybf{bottom:254.778896px;}
.y77{bottom:255.543896px;}
.y275{bottom:255.546253px;}
.y1e9{bottom:255.886461px;}
.y102{bottom:260.820526px;}
.y148{bottom:267.024584px;}
.y2ba{bottom:267.193815px;}
.ybe{bottom:269.235000px;}
.ybd{bottom:271.786500px;}
.y76{bottom:272.551500px;}
.y74{bottom:272.552084px;}
.y274{bottom:272.553857px;}
.y1e8{bottom:272.894065px;}
.y101{bottom:277.828130px;}
.y75{bottom:279.268500px;}
.y44{bottom:280.715396px;}
.y2b9{bottom:282.075714px;}
.y147{bottom:284.032188px;}
.ybc{bottom:288.793445px;}
.y73{bottom:289.559688px;}
.y273{bottom:289.561461px;}
.y1e7{bottom:289.901669px;}
.y100{bottom:294.835734px;}
.y42{bottom:295.171500px;}
.y2b8{bottom:296.957614px;}
.y43{bottom:297.723000px;}
.y41{bottom:297.723292px;}
.y146{bottom:301.039792px;}
.ybb{bottom:305.802000px;}
.y72{bottom:306.567292px;}
.y272{bottom:306.569065px;}
.y1e6{bottom:306.909273px;}
.y2b7{bottom:311.839513px;}
.yff{bottom:311.843338px;}
.y40{bottom:314.730896px;}
.y145{bottom:318.047396px;}
.y71{bottom:323.574896px;}
.y271{bottom:323.576669px;}
.y1e5{bottom:323.916877px;}
.y24d{bottom:326.072526px;}
.y2b6{bottom:326.721412px;}
.yfe{bottom:328.850941px;}
.y3e{bottom:329.187000px;}
.y3f{bottom:331.738500px;}
.y3d{bottom:331.739688px;}
.y143{bottom:332.503500px;}
.y144{bottom:335.055000px;}
.y142{bottom:335.055896px;}
.y188{bottom:335.225396px;}
.y70{bottom:340.582500px;}
.y270{bottom:340.584273px;}
.y6e{bottom:340.586649px;}
.yba{bottom:340.594032px;}
.y1e4{bottom:340.924480px;}
.y2b5{bottom:341.603311px;}
.y24c{bottom:343.080129px;}
.yfd{bottom:345.858545px;}
.y6f{bottom:347.301000px;}
.y3c{bottom:348.747292px;}
.y140{bottom:349.512000px;}
.y186{bottom:349.767000px;}
.y141{bottom:352.063500px;}
.y13f{bottom:352.063792px;}
.y185{bottom:352.233000px;}
.y2b4{bottom:356.485210px;}
.y26f{bottom:357.591877px;}
.y6d{bottom:357.594253px;}
.yb9{bottom:357.601636px;}
.y1e3{bottom:357.932084px;}
.y187{bottom:359.035500px;}
.y24b{bottom:360.087733px;}
.y22a{bottom:360.915779px;}
.yfc{bottom:362.866149px;}
.y3b{bottom:365.754896px;}
.y13e{bottom:369.071396px;}
.y2b3{bottom:371.367109px;}
.y26e{bottom:374.599480px;}
.y6c{bottom:374.601857px;}
.yb8{bottom:374.609240px;}
.y1e2{bottom:374.939688px;}
.y24a{bottom:377.095337px;}
.y229{bottom:377.923383px;}
.y184{bottom:378.593552px;}
.yfb{bottom:379.873753px;}
.y38{bottom:380.211000px;}
.y13c{bottom:381.656394px;}
.y39{bottom:382.762500px;}
.y37{bottom:382.762792px;}
.y13d{bottom:383.527500px;}
.y13b{bottom:386.079000px;}
.y2b2{bottom:386.249009px;}
.y3a{bottom:389.479500px;}
.y183{bottom:389.565000px;}
.y1bb{bottom:391.354441px;}
.y26d{bottom:391.607084px;}
.y6b{bottom:391.609461px;}
.yb7{bottom:391.616844px;}
.y1e1{bottom:391.947292px;}
.y249{bottom:394.102941px;}
.y228{bottom:394.930987px;}
.yfa{bottom:396.881357px;}
.y36{bottom:399.770396px;}
.y2b1{bottom:401.130908px;}
.y13a{bottom:407.338931px;}
.y1ba{bottom:408.362045px;}
.y26c{bottom:408.614688px;}
.y6a{bottom:408.617065px;}
.yb6{bottom:408.624448px;}
.y1e0{bottom:408.954896px;}
.y248{bottom:411.110545px;}
.y139{bottom:411.760500px;}
.y227{bottom:411.938591px;}
.yf9{bottom:413.888961px;}
.y33{bottom:414.226500px;}
.y2b0{bottom:416.012807px;}
.y34{bottom:416.778000px;}
.y32{bottom:416.778292px;}
.y35{bottom:423.496500px;}
.y1b9{bottom:425.369649px;}
.y26b{bottom:425.622292px;}
.y69{bottom:425.624669px;}
.y182{bottom:425.628506px;}
.yb5{bottom:425.632052px;}
.y1dd{bottom:425.961896px;}
.y1df{bottom:425.962500px;}
.y247{bottom:428.118149px;}
.y226{bottom:428.946195px;}
.y2af{bottom:430.894706px;}
.yf8{bottom:430.896565px;}
.y1de{bottom:432.679500px;}
.y31{bottom:433.785896px;}
.y138{bottom:436.506896px;}
.y1b8{bottom:442.377253px;}
.y26a{bottom:442.629896px;}
.y68{bottom:442.632273px;}
.y181{bottom:442.636110px;}
.yb4{bottom:442.639656px;}
.y1dc{bottom:442.969500px;}
.y1da{bottom:442.975714px;}
.y246{bottom:445.125753px;}
.y2ae{bottom:445.776605px;}
.y225{bottom:445.953799px;}
.yf7{bottom:447.904169px;}
.y2e{bottom:448.242000px;}
.y1db{bottom:449.688000px;}
.y2f{bottom:450.793500px;}
.y2d{bottom:450.793792px;}
.y137{bottom:453.514500px;}
.y268{bottom:457.086000px;}
.y30{bottom:457.512000px;}
.y1b7{bottom:459.384857px;}
.y269{bottom:459.637500px;}
.y67{bottom:459.639877px;}
.y267{bottom:459.643422px;}
.y180{bottom:459.643714px;}
.yb3{bottom:459.647260px;}
.y1d9{bottom:459.983318px;}
.y2ad{bottom:460.658504px;}
.y245{bottom:462.133357px;}
.y224{bottom:462.961403px;}
.yf6{bottom:464.911773px;}
.y2c{bottom:467.801396px;}
.y135{bottom:474.945000px;}
.y2ac{bottom:475.540403px;}
.y1b6{bottom:476.392461px;}
.y66{bottom:476.647481px;}
.y266{bottom:476.651026px;}
.y17f{bottom:476.651318px;}
.yb2{bottom:476.654864px;}
.y1d8{bottom:476.990922px;}
.y244{bottom:479.140961px;}
.y223{bottom:479.969006px;}
.yf5{bottom:481.919377px;}
.y29{bottom:482.257500px;}
.y136{bottom:483.534000px;}
.y2a{bottom:484.809000px;}
.y28{bottom:484.809292px;}
.y2ab{bottom:490.422303px;}
.y2b{bottom:491.527500px;}
.y1b5{bottom:493.400065px;}
.y65{bottom:493.655084px;}
.y265{bottom:493.658630px;}
.y17e{bottom:493.658922px;}
.yb1{bottom:493.662467px;}
.y1d7{bottom:493.998526px;}
.y243{bottom:496.148565px;}
.y134{bottom:496.800000px;}
.y222{bottom:496.976610px;}
.yf4{bottom:498.926981px;}
.y27{bottom:501.816896px;}
.y2aa{bottom:505.304202px;}
.y1b4{bottom:510.407669px;}
.y64{bottom:510.662688px;}
.y264{bottom:510.666234px;}
.y17d{bottom:510.666526px;}
.yb0{bottom:510.670071px;}
.y1d6{bottom:511.006130px;}
.y242{bottom:513.156168px;}
.y221{bottom:513.984214px;}
.yf3{bottom:515.934584px;}
.y24{bottom:516.274500px;}
.y25{bottom:518.824500px;}
.y23{bottom:518.826292px;}
.y2a9{bottom:520.186101px;}
.y133{bottom:520.866896px;}
.y26{bottom:525.543000px;}
.y1b3{bottom:527.415273px;}
.y63{bottom:527.670292px;}
.y263{bottom:527.673838px;}
.y17c{bottom:527.674130px;}
.yaf{bottom:527.677675px;}
.y1d5{bottom:528.013734px;}
.y241{bottom:530.163772px;}
.y220{bottom:530.991818px;}
.yf2{bottom:532.942188px;}
.y2a6{bottom:535.067530px;}
.y2a8{bottom:535.068000px;}
.y132{bottom:535.323000px;}
.y22{bottom:535.833896px;}
.y131{bottom:537.874500px;}
.y2a7{bottom:541.105500px;}
.y1b2{bottom:544.422877px;}
.y62{bottom:544.677896px;}
.y262{bottom:544.681441px;}
.y17b{bottom:544.681734px;}
.yae{bottom:544.685279px;}
.y1d4{bottom:545.021338px;}
.y240{bottom:547.171376px;}
.y21f{bottom:547.999422px;}
.y2a5{bottom:549.949429px;}
.yf1{bottom:549.949792px;}
.y1f{bottom:550.290000px;}
.y20{bottom:552.841500px;}
.y1e{bottom:552.841792px;}
.y21{bottom:559.558500px;}
.y1b1{bottom:561.430481px;}
.y61{bottom:561.685500px;}
.y261{bottom:561.689045px;}
.y17a{bottom:561.689338px;}
.yad{bottom:561.692883px;}
.y1d3{bottom:562.028941px;}
.y23f{bottom:564.178980px;}
.y2a4{bottom:564.831328px;}
.y21e{bottom:565.007026px;}
.y130{bottom:565.512000px;}
.yf0{bottom:566.957396px;}
.y1d{bottom:569.849396px;}
.y1b0{bottom:578.438084px;}
.y60{bottom:578.692444px;}
.y260{bottom:578.696649px;}
.y179{bottom:578.696941px;}
.yac{bottom:578.700487px;}
.y1d2{bottom:579.036545px;}
.y2a3{bottom:579.713227px;}
.y23e{bottom:581.186584px;}
.yee{bottom:581.413500px;}
.y21d{bottom:582.014630px;}
.yef{bottom:583.965000px;}
.yed{bottom:583.968253px;}
.y1a{bottom:584.305500px;}
.y19{bottom:586.856396px;}
.y1b{bottom:586.857000px;}
.y12f{bottom:590.258396px;}
.y1c{bottom:593.574000px;}
.y2a2{bottom:594.595126px;}
.y1af{bottom:595.445688px;}
.y5f{bottom:595.701000px;}
.y25f{bottom:595.704253px;}
.y178{bottom:595.704545px;}
.yab{bottom:595.708091px;}
.y1d1{bottom:596.044149px;}
.y23d{bottom:598.194188px;}
.y21c{bottom:599.022234px;}
.yec{bottom:600.975857px;}
.y16{bottom:601.312500px;}
.y17{bottom:603.864000px;}
.y15{bottom:603.866026px;}
.y12e{bottom:604.800000px;}
.y12d{bottom:607.266000px;}
.y2a1{bottom:609.477025px;}
.y18{bottom:610.582500px;}
.y1ae{bottom:612.453292px;}
.y25e{bottom:612.711857px;}
.y177{bottom:612.712149px;}
.yaa{bottom:612.715695px;}
.y1d0{bottom:613.051753px;}
.y23c{bottom:615.201792px;}
.y21b{bottom:616.029838px;}
.yeb{bottom:617.983461px;}
.y14{bottom:620.873630px;}
.y2a0{bottom:624.358925px;}
.y1ad{bottom:629.460896px;}
.y25d{bottom:629.719461px;}
.y176{bottom:629.719753px;}
.ya9{bottom:629.723299px;}
.y1cf{bottom:630.059357px;}
.y23b{bottom:632.209396px;}
.y21a{bottom:633.037441px;}
.y12c{bottom:633.201466px;}
.yea{bottom:634.991065px;}
.y5c{bottom:635.329500px;}
.y5d{bottom:637.879500px;}
.y13{bottom:637.881234px;}
.y5b{bottom:637.881292px;}
.y29f{bottom:639.240824px;}
.y12b{bottom:644.173500px;}
.y5e{bottom:644.598000px;}
.y1ac{bottom:646.468500px;}
.y25c{bottom:646.727065px;}
.y175{bottom:646.727357px;}
.ya8{bottom:646.730903px;}
.y1ce{bottom:647.066961px;}
.y23a{bottom:649.217000px;}
.y219{bottom:650.045045px;}
.ye9{bottom:651.998669px;}
.y29e{bottom:654.122723px;}
.y12{bottom:654.888838px;}
.y5a{bottom:654.888896px;}
.y1ab{bottom:663.476945px;}
.y25b{bottom:663.734669px;}
.y174{bottom:663.734961px;}
.ya7{bottom:663.738506px;}
.y1cd{bottom:664.074565px;}
.y239{bottom:666.224604px;}
.y218{bottom:667.052649px;}
.y29c{bottom:669.004622px;}
.ye8{bottom:669.006273px;}
.y57{bottom:669.345000px;}
.y29d{bottom:669.430130px;}
.y56{bottom:671.895735px;}
.y58{bottom:671.896500px;}
.y12a{bottom:677.933396px;}
.y59{bottom:678.613500px;}
.y1aa{bottom:680.485500px;}
.y25a{bottom:680.742273px;}
.y173{bottom:680.742565px;}
.ya6{bottom:680.746110px;}
.y1cc{bottom:681.082169px;}
.y238{bottom:683.232207px;}
.y29b{bottom:683.886521px;}
.y217{bottom:684.060253px;}
.ye7{bottom:686.013877px;}
.y11{bottom:688.905565px;}
.y54{bottom:690.604500px;}
.y128{bottom:692.475000px;}
.y53{bottom:693.155396px;}
.y55{bottom:693.156000px;}
.y129{bottom:694.941000px;}
.y127{bottom:694.944545px;}
.y259{bottom:697.749877px;}
.y172{bottom:697.750169px;}
.ya5{bottom:697.753714px;}
.y1cb{bottom:698.089773px;}
.y29a{bottom:698.768420px;}
.y237{bottom:700.239811px;}
.y216{bottom:701.067857px;}
.ye6{bottom:703.021481px;}
.y10{bottom:705.913169px;}
.y51{bottom:707.613000px;}
.y52{bottom:710.163000px;}
.y50{bottom:710.163735px;}
.y126{bottom:711.952149px;}
.y299{bottom:713.650320px;}
.y1a9{bottom:714.500396px;}
.y258{bottom:714.757481px;}
.y171{bottom:714.757773px;}
.ya4{bottom:714.761318px;}
.y1ca{bottom:715.097377px;}
.y236{bottom:717.247415px;}
.y215{bottom:718.075461px;}
.ye5{bottom:720.029084px;}
.yf{bottom:722.920773px;}
.y298{bottom:728.532219px;}
.y4e{bottom:728.872500px;}
.y125{bottom:728.959753px;}
.y1a8{bottom:729.042000px;}
.y4d{bottom:731.423396px;}
.y4f{bottom:731.424000px;}
.y1a7{bottom:731.508000px;}
.y257{bottom:731.765084px;}
.y170{bottom:731.765377px;}
.ya3{bottom:731.768922px;}
.y1c9{bottom:732.104981px;}
.y235{bottom:734.255019px;}
.y214{bottom:735.083065px;}
.ye4{bottom:737.036688px;}
.ye{bottom:739.928377px;}
.y297{bottom:743.414118px;}
.y4b{bottom:745.879500px;}
.y124{bottom:745.967357px;}
.y4a{bottom:748.430367px;}
.y4c{bottom:748.431000px;}
.y256{bottom:748.772688px;}
.y16f{bottom:748.772981px;}
.ya2{bottom:748.776526px;}
.y1c8{bottom:749.112584px;}
.y234{bottom:751.262623px;}
.y213{bottom:752.090669px;}
.y1a6{bottom:752.769431px;}
.ye3{bottom:754.044292px;}
.yd{bottom:756.935980px;}
.y1a5{bottom:757.275000px;}
.y296{bottom:758.296017px;}
.y123{bottom:762.974961px;}
.y49{bottom:765.437971px;}
.y255{bottom:765.780292px;}
.y16e{bottom:765.780584px;}
.ya1{bottom:765.784130px;}
.y1c7{bottom:766.120188px;}
.y233{bottom:768.270227px;}
.y212{bottom:769.098273px;}
.ye2{bottom:771.051896px;}
.y295{bottom:773.177916px;}
.yc{bottom:773.943584px;}
.y122{bottom:779.982565px;}
.y1a4{bottom:782.787292px;}
.y254{bottom:782.787896px;}
.y16d{bottom:782.788188px;}
.ya0{bottom:782.791734px;}
.y1c6{bottom:783.127792px;}
.y232{bottom:785.277831px;}
.ye0{bottom:785.508000px;}
.y211{bottom:786.105877px;}
.ye1{bottom:788.059500px;}
.y294{bottom:788.059815px;}
.ydf{bottom:788.060980px;}
.yb{bottom:790.951188px;}
.y121{bottom:796.990169px;}
.y1a3{bottom:799.794896px;}
.y253{bottom:799.795500px;}
.y16c{bottom:799.795792px;}
.y9f{bottom:799.799338px;}
.y1c5{bottom:800.135396px;}
.y231{bottom:802.285435px;}
.y293{bottom:802.941714px;}
.y210{bottom:803.113481px;}
.yde{bottom:805.068584px;}
.y47{bottom:805.407000px;}
.y48{bottom:807.958500px;}
.ya{bottom:807.958792px;}
.y120{bottom:813.997773px;}
.y1a0{bottom:814.251000px;}
.y252{bottom:816.802445px;}
.y1a1{bottom:816.802500px;}
.y16b{bottom:816.803396px;}
.y19f{bottom:816.803688px;}
.y9e{bottom:816.806941px;}
.y1c4{bottom:817.143000px;}
.y1c2{bottom:817.143292px;}
.y292{bottom:817.823614px;}
.y230{bottom:819.293039px;}
.y20f{bottom:820.121084px;}
.ydd{bottom:822.076188px;}
.y1a2{bottom:823.521000px;}
.y1c3{bottom:823.861500px;}
.y9{bottom:824.966396px;}
.y11f{bottom:831.005377px;}
.y291{bottom:832.705513px;}
.y168{bottom:833.810396px;}
.y16a{bottom:833.811000px;}
.y19e{bottom:833.811292px;}
.y9d{bottom:833.814545px;}
.y1c1{bottom:834.150896px;}
.y22f{bottom:836.300643px;}
.y20e{bottom:837.128688px;}
.ydc{bottom:839.083792px;}
.y169{bottom:840.529500px;}
.y8{bottom:841.974000px;}
.y6{bottom:841.975792px;}
.y290{bottom:847.587412px;}
.y11e{bottom:848.012981px;}
.y7{bottom:848.692500px;}
.y167{bottom:850.818000px;}
.y19d{bottom:850.818896px;}
.y165{bottom:850.819792px;}
.y9c{bottom:850.822149px;}
.y1c0{bottom:851.158500px;}
.y1be{bottom:851.175084px;}
.y22e{bottom:853.308246px;}
.y20d{bottom:854.136292px;}
.ydb{bottom:856.091396px;}
.y166{bottom:857.536500px;}
.y1bf{bottom:857.877000px;}
.y5{bottom:858.983396px;}
.y28f{bottom:862.469311px;}
.y11d{bottom:865.020584px;}
.y19a{bottom:865.275000px;}
.y19b{bottom:867.826500px;}
.y164{bottom:867.827396px;}
.y9b{bottom:867.829753px;}
.y1bd{bottom:868.182687px;}
.y22d{bottom:870.315850px;}
.y20c{bottom:871.143896px;}
.yda{bottom:873.099000px;}
.y46{bottom:873.439500px;}
.y19c{bottom:874.545000px;}
.y4{bottom:875.991000px;}
.y45{bottom:876.005842px;}
.y28e{bottom:877.351210px;}
.y198{bottom:880.413458px;}
.y11c{bottom:882.028188px;}
.y197{bottom:884.834942px;}
.y163{bottom:884.835000px;}
.y9a{bottom:884.837357px;}
.y1bc{bottom:885.190291px;}
.y22c{bottom:887.323454px;}
.y20b{bottom:888.151500px;}
.y199{bottom:891.552000px;}
.y28d{bottom:892.233109px;}
.y85{bottom:893.424000px;}
.yd9{bottom:895.974000px;}
.yd8{bottom:898.356000px;}
.y11b{bottom:899.035792px;}
.y162{bottom:901.842000px;}
.y160{bottom:901.842292px;}
.y196{bottom:901.842546px;}
.y99{bottom:901.844961px;}
.y22b{bottom:904.331058px;}
.y28c{bottom:907.115008px;}
.y161{bottom:908.560500px;}
.y11a{bottom:916.043396px;}
.y15f{bottom:918.849896px;}
.y195{bottom:918.850149px;}
.y98{bottom:918.852565px;}
.y28b{bottom:921.996908px;}
.yd7{bottom:927.349705px;}
.y119{bottom:933.051000px;}
.y15e{bottom:935.857500px;}
.y194{bottom:935.857753px;}
.y97{bottom:935.860169px;}
.y15c{bottom:935.886114px;}
.y28a{bottom:936.878807px;}
.y15d{bottom:942.576000px;}
.y20a{bottom:943.255970px;}
.yd6{bottom:944.358828px;}
.y289{bottom:951.760706px;}
.y193{bottom:952.865357px;}
.y96{bottom:952.867773px;}
.y15b{bottom:952.893717px;}
.y209{bottom:958.137869px;}
.y118{bottom:960.690000px;}
.yd5{bottom:961.367952px;}
.y288{bottom:966.642605px;}
.y192{bottom:969.872961px;}
.y95{bottom:969.875377px;}
.y15a{bottom:969.901321px;}
.y24f{bottom:973.019768px;}
.yd4{bottom:978.377075px;}
.y287{bottom:981.524504px;}
.y117{bottom:985.518254px;}
.y208{bottom:985.691202px;}
.y191{bottom:986.880565px;}
.y94{bottom:986.882981px;}
.y159{bottom:986.908925px;}
.y24e{bottom:987.901667px;}
.y3{bottom:994.620000px;}
.y286{bottom:996.406403px;}
.y201{bottom:1000.571893px;}
.y207{bottom:1000.573101px;}
.y116{bottom:1002.527377px;}
.y190{bottom:1003.889688px;}
.yd3{bottom:1003.890000px;}
.y93{bottom:1003.890584px;}
.y158{bottom:1003.916529px;}
.yd2{bottom:1010.607000px;}
.y285{bottom:1011.288303px;}
.y200{bottom:1015.453792px;}
.y205{bottom:1015.455000px;}
.y203{bottom:1015.455152px;}
.y115{bottom:1019.536500px;}
.y18f{bottom:1020.897292px;}
.y92{bottom:1020.898188px;}
.y157{bottom:1020.924133px;}
.y204{bottom:1021.492500px;}
.y284{bottom:1026.170202px;}
.y2{bottom:1028.633993px;}
.y1ff{bottom:1030.335692px;}
.y206{bottom:1030.336899px;}
.y202{bottom:1030.337051px;}
.y18e{bottom:1037.904896px;}
.y91{bottom:1037.905792px;}
.y156{bottom:1037.931737px;}
.y283{bottom:1041.052101px;}
.y114{bottom:1047.174000px;}
.y18b{bottom:1052.362500px;}
.y18c{bottom:1054.912500px;}
.y90{bottom:1054.913396px;}
.y155{bottom:1054.939341px;}
.y282{bottom:1055.934000px;}
.y1fe{bottom:1058.144601px;}
.y18d{bottom:1061.631000px;}
.y1{bottom:1062.651000px;}
.yd1{bottom:1069.369500px;}
.y281{bottom:1071.325500px;}
.y8f{bottom:1071.921000px;}
.yd0{bottom:1071.945340px;}
.y154{bottom:1071.946945px;}
.y1fd{bottom:1073.026500px;}
.y84{bottom:1114.101000px;}
.h20{height:25.988382px;}
.h9{height:27.652170px;}
.h4{height:29.047104px;}
.h8{height:29.128128px;}
.ha{height:32.105826px;}
.hb{height:36.794106px;}
.h21{height:38.717136px;}
.hc{height:38.989026px;}
.hd{height:39.097782px;}
.h5{height:43.271088px;}
.h3{height:43.574958px;}
.h6{height:43.696506px;}
.h14{height:45.580500px;}
.h2{height:45.867924px;}
.he{height:45.995868px;}
.h10{height:47.979000px;}
.h13{height:47.983135px;}
.h18{height:54.015000px;}
.h1c{height:54.015233px;}
.h15{height:57.501000px;}
.h11{height:57.507000px;}
.h1e{height:59.779500px;}
.h16{height:60.115500px;}
.h1d{height:63.266670px;}
.h19{height:63.270924px;}
.h17{height:65.665275px;}
.h1f{height:66.001275px;}
.h7{height:66.127738px;}
.h1{height:81.408222px;}
.h12{height:89.403924px;}
.hf{height:91.863792px;}
.h1b{height:91.865185px;}
.h1a{height:93.219000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x51{left:40.393500px;}
.x1{left:70.158000px;}
.x6{left:75.090000px;}
.x5f{left:76.281000px;}
.xc{left:80.022000px;}
.x10{left:82.402500px;}
.x52{left:87.165000px;}
.x33{left:91.417500px;}
.x37{left:96.349500px;}
.x36{left:97.540500px;}
.x64{left:102.303000px;}
.x3{left:106.129500px;}
.x7{left:108.424500px;}
.x82{left:112.591500px;}
.x4{left:118.885500px;}
.x38{left:121.182799px;}
.x61{left:125.178000px;}
.x2{left:126.538500px;}
.x8{left:129.175500px;}
.x15{left:137.083500px;}
.x86{left:143.547000px;}
.xd{left:146.013000px;}
.x87{left:152.050500px;}
.x55{left:161.915453px;}
.x9{left:163.105500px;}
.x16{left:166.677000px;}
.x62{left:168.633000px;}
.x85{left:169.824000px;}
.x60{left:172.800000px;}
.xe{left:173.905500px;}
.x17{left:179.433000px;}
.xa{left:180.538500px;}
.x12{left:184.875000px;}
.xf{left:186.661500px;}
.xb{left:191.083500px;}
.x74{left:192.358500px;}
.x56{left:200.778000px;}
.x13{left:202.308000px;}
.x97{left:213.619500px;}
.x11{left:219.912000px;}
.x5b{left:235.303500px;}
.x14{left:241.681500px;}
.x7c{left:244.743000px;}
.x5c{left:246.529500px;}
.x7d{left:255.798000px;}
.x7a{left:259.879500px;}
.x5{left:268.729874px;}
.x83{left:274.591500px;}
.x39{left:276.973500px;}
.x57{left:278.419500px;}
.x98{left:280.204500px;}
.x84{left:285.136500px;}
.x58{left:289.474500px;}
.x3a{left:294.831000px;}
.x63{left:298.488000px;}
.x3b{left:299.593500px;}
.x53{left:303.846000px;}
.x3c{left:312.264000px;}
.x54{left:315.070500px;}
.x59{left:321.024000px;}
.x7e{left:327.912000px;}
.x5a{left:329.697000px;}
.x75{left:333.780000px;}
.x76{left:337.266000px;}
.x7f{left:343.134000px;}
.x34{left:349.767000px;}
.x80{left:353.338500px;}
.x35{left:358.270500px;}
.x81{left:366.094500px;}
.x77{left:369.070500px;}
.x7b{left:371.622000px;}
.x99{left:379.785000px;}
.x9a{left:395.688000px;}
.x5d{left:396.708000px;}
.x78{left:398.664000px;}
.x9b{left:401.046000px;}
.x5e{left:406.147500px;}
.x79{left:411.420000px;}
.x9c{left:412.441500px;}
.x18{left:452.842913px;}
.x19{left:461.848500px;}
.x23{left:466.780500px;}
.x2d{left:469.842604px;}
.x27{left:472.989000px;}
.x3d{left:474.097565px;}
.x28{left:478.516500px;}
.x70{left:486.762476px;}
.x3e{left:489.912000px;}
.x1a{left:491.101500px;}
.x9f{left:497.055526px;}
.x3f{left:503.858114px;}
.x25{left:506.323500px;}
.x20{left:511.852500px;}
.x71{left:513.978000px;}
.x47{left:523.672500px;}
.x8c{left:525.457500px;}
.x1c{left:528.690000px;}
.x40{left:530.136000px;}
.x48{left:534.301500px;}
.x8d{left:536.002500px;}
.x4b{left:537.024000px;}
.x29{left:538.299000px;}
.x1d{left:541.360500px;}
.x4c{left:542.551500px;}
.x41{left:547.993500px;}
.x1e{left:551.565000px;}
.x42{left:552.756000px;}
.x49{left:556.413000px;}
.x6e{left:560.919000px;}
.x1f{left:564.321000px;}
.x43{left:565.512000px;}
.x21{left:570.954000px;}
.x2a{left:572.230500px;}
.x9d{left:579.969000px;}
.x65{left:584.134500px;}
.x4a{left:586.176000px;}
.x2b{left:589.663500px;}
.x9e{left:591.363000px;}
.x88{left:592.639500px;}
.x24{left:595.956000px;}
.x93{left:597.406131px;}
.x46{left:601.653000px;}
.x72{left:604.035000px;}
.x89{left:605.395500px;}
.x22{left:613.984500px;}
.x6a{left:615.429000px;}
.x26{left:621.297000px;}
.x2c{left:629.121000px;}
.x6b{left:632.352000px;}
.x73{left:644.683500px;}
.x1b{left:651.405080px;}
.x6f{left:657.184500px;}
.x66{left:662.796000px;}
.x94{left:676.488000px;}
.x95{left:681.420000px;}
.xa0{left:692.134500px;}
.x8a{left:704.890500px;}
.x67{left:711.609000px;}
.x6c{left:714.330000px;}
.x8b{left:717.646500px;}
.x44{left:718.923000px;}
.x96{left:720.709464px;}
.x45{left:725.046000px;}
.x68{left:729.468000px;}
.x6d{left:731.253000px;}
.x30{left:744.180000px;}
.x90{left:746.475000px;}
.x2e{left:750.217500px;}
.x8e{left:754.129500px;}
.x31{left:756.934500px;}
.x2f{left:762.888000px;}
.x8f{left:766.885500px;}
.x91{left:775.899000px;}
.x92{left:793.672500px;}
.x69{left:806.598000px;}
.x4d{left:815.782500px;}
.x4e{left:819.268500px;}
.x4f{left:824.796000px;}
.x50{left:833.725500px;}
.x32{left:852.519000px;}
@media print{
.v1{vertical-align:-32.960563pt;}
.v8{vertical-align:-16.325333pt;}
.v7{vertical-align:-13.301333pt;}
.v3{vertical-align:-8.469333pt;}
.ve{vertical-align:-1.512917pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.469333pt;}
.va{vertical-align:15.721133pt;}
.vb{vertical-align:19.653333pt;}
.v9{vertical-align:23.584000pt;}
.v5{vertical-align:30.538667pt;}
.vd{vertical-align:31.749333pt;}
.v2{vertical-align:32.960563pt;}
.v4{vertical-align:39.008704pt;}
.vc{vertical-align:40.213333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.004621pt;}
.ls1e{letter-spacing:0.048405pt;}
.ls25{letter-spacing:0.051473pt;}
.ls1a{letter-spacing:0.056405pt;}
.ls1c{letter-spacing:0.056806pt;}
.lsa{letter-spacing:0.079610pt;}
.ls4e{letter-spacing:0.122361pt;}
.ls32{letter-spacing:0.127973pt;}
.ls3e{letter-spacing:0.129651pt;}
.ls14{letter-spacing:0.132459pt;}
.lsd{letter-spacing:0.133307pt;}
.ls10{letter-spacing:0.133963pt;}
.ls45{letter-spacing:0.138422pt;}
.ls9{letter-spacing:0.140455pt;}
.ls42{letter-spacing:0.147819pt;}
.ls13{letter-spacing:0.181965pt;}
.ls27{letter-spacing:0.182027pt;}
.ls3b{letter-spacing:0.199879pt;}
.ls39{letter-spacing:0.209895pt;}
.ls2{letter-spacing:0.219665pt;}
.ls55{letter-spacing:0.235196pt;}
.ls0{letter-spacing:0.244873pt;}
.ls43{letter-spacing:2.401189pt;}
.ls11{letter-spacing:2.515973pt;}
.ls2a{letter-spacing:2.634379pt;}
.ls1d{letter-spacing:2.653424pt;}
.ls23{letter-spacing:2.658757pt;}
.ls47{letter-spacing:2.705189pt;}
.ls56{letter-spacing:2.982331pt;}
.ls16{letter-spacing:6.422261pt;}
.ls4a{letter-spacing:9.059378pt;}
.ls21{letter-spacing:9.382560pt;}
.ls35{letter-spacing:10.656928pt;}
.ls2f{letter-spacing:12.005045pt;}
.ls26{letter-spacing:12.010379pt;}
.lsf{letter-spacing:12.453216pt;}
.ls36{letter-spacing:12.674986pt;}
.ls37{letter-spacing:12.760282pt;}
.ls51{letter-spacing:12.900294pt;}
.ls5{letter-spacing:13.564749pt;}
.ls48{letter-spacing:14.392278pt;}
.ls18{letter-spacing:15.017931pt;}
.ls46{letter-spacing:15.099856pt;}
.ls4d{letter-spacing:15.250222pt;}
.lse{letter-spacing:15.352091pt;}
.ls33{letter-spacing:15.357424pt;}
.ls41{letter-spacing:15.403856pt;}
.ls3f{letter-spacing:15.677405pt;}
.ls40{letter-spacing:15.776270pt;}
.lsc{letter-spacing:15.779760pt;}
.ls22{letter-spacing:15.808192pt;}
.ls54{letter-spacing:16.255397pt;}
.ls4c{letter-spacing:16.773624pt;}
.ls53{letter-spacing:17.935083pt;}
.ls52{letter-spacing:18.043125pt;}
.ls7{letter-spacing:18.097147pt;}
.ls8{letter-spacing:18.151168pt;}
.ls15{letter-spacing:18.238640pt;}
.ls20{letter-spacing:18.259211pt;}
.ls19{letter-spacing:18.345645pt;}
.ls28{letter-spacing:18.357045pt;}
.ls1b{letter-spacing:18.376091pt;}
.ls30{letter-spacing:18.661045pt;}
.ls24{letter-spacing:22.150261pt;}
.ls2e{letter-spacing:27.043079pt;}
.ls3c{letter-spacing:27.053884pt;}
.ls3d{letter-spacing:27.345599pt;}
.ls4b{letter-spacing:27.356403pt;}
.ls4f{letter-spacing:33.332373pt;}
.ls3a{letter-spacing:37.263040pt;}
.lsb{letter-spacing:39.440870pt;}
.ls1{letter-spacing:65.517073pt;}
.ls2c{letter-spacing:66.577387pt;}
.ls4{letter-spacing:98.956278pt;}
.ls3{letter-spacing:118.674065pt;}
.ls29{letter-spacing:351.425206pt;}
.ls31{letter-spacing:546.451667pt;}
.ls38{letter-spacing:645.025411pt;}
.ls2d{letter-spacing:734.227968pt;}
.ls49{letter-spacing:762.045837pt;}
.ls1f{letter-spacing:800.144717pt;}
.ls34{letter-spacing:815.259168pt;}
.ls50{letter-spacing:874.221450pt;}
.ls12{letter-spacing:880.874538pt;}
.ls2b{letter-spacing:947.701110pt;}
.ls17{letter-spacing:985.197232pt;}
.ws67{word-spacing:-72.672192pt;}
.ws68{word-spacing:-56.864000pt;}
.ws88{word-spacing:-30.305968pt;}
.ws6a{word-spacing:-18.935712pt;}
.ws4e{word-spacing:-13.021856pt;}
.wse{word-spacing:-12.370885pt;}
.ws12{word-spacing:-11.991552pt;}
.ws90{word-spacing:-11.068944pt;}
.ws9b{word-spacing:-10.728816pt;}
.ws10{word-spacing:-8.246443pt;}
.ws72{word-spacing:-3.219671pt;}
.ws7e{word-spacing:-3.079216pt;}
.ws33{word-spacing:-2.388160pt;}
.ws3d{word-spacing:0.000000pt;}
.ws77{word-spacing:0.378149pt;}
.ws7f{word-spacing:0.432171pt;}
.ws27{word-spacing:0.486192pt;}
.ws47{word-spacing:0.594235pt;}
.ws86{word-spacing:0.648256pt;}
.ws57{word-spacing:0.702277pt;}
.ws3f{word-spacing:0.756299pt;}
.ws45{word-spacing:0.810320pt;}
.ws44{word-spacing:0.864341pt;}
.ws43{word-spacing:0.972384pt;}
.ws28{word-spacing:1.026405pt;}
.ws78{word-spacing:1.069622pt;}
.ws79{word-spacing:1.080427pt;}
.wsa3{word-spacing:1.134448pt;}
.ws13{word-spacing:1.188469pt;}
.ws70{word-spacing:1.242491pt;}
.ws97{word-spacing:1.296512pt;}
.ws9{word-spacing:1.350533pt;}
.ws58{word-spacing:1.404555pt;}
.ws71{word-spacing:1.512597pt;}
.wsb{word-spacing:1.566619pt;}
.ws82{word-spacing:1.620640pt;}
.wsac{word-spacing:1.691760pt;}
.ws89{word-spacing:1.728683pt;}
.ws5d{word-spacing:1.782704pt;}
.ws85{word-spacing:1.890747pt;}
.ws8b{word-spacing:1.944768pt;}
.ws6f{word-spacing:1.998789pt;}
.ws80{word-spacing:2.214875pt;}
.ws55{word-spacing:2.268896pt;}
.ws75{word-spacing:2.322917pt;}
.ws76{word-spacing:2.376939pt;}
.ws40{word-spacing:2.430960pt;}
.ws99{word-spacing:2.484981pt;}
.ws2a{word-spacing:2.539003pt;}
.wsb6{word-spacing:2.561808pt;}
.ws2d{word-spacing:2.593024pt;}
.ws98{word-spacing:2.701067pt;}
.ws59{word-spacing:2.755088pt;}
.wsab{word-spacing:2.803488pt;}
.ws6c{word-spacing:2.863131pt;}
.ws56{word-spacing:2.884739pt;}
.wsb8{word-spacing:2.900160pt;}
.ws73{word-spacing:2.917152pt;}
.ws9d{word-spacing:3.045168pt;}
.ws22{word-spacing:3.079216pt;}
.wsb4{word-spacing:3.093504pt;}
.ws83{word-spacing:3.133237pt;}
.ws74{word-spacing:3.187259pt;}
.ws2c{word-spacing:3.241280pt;}
.wsaf{word-spacing:3.286848pt;}
.wsa2{word-spacing:3.295301pt;}
.wsa4{word-spacing:3.349323pt;}
.ws29{word-spacing:3.457365pt;}
.ws8f{word-spacing:3.480192pt;}
.ws5b{word-spacing:3.511387pt;}
.ws48{word-spacing:3.619429pt;}
.ws95{word-spacing:3.673451pt;}
.ws60{word-spacing:3.727472pt;}
.ws5c{word-spacing:3.781493pt;}
.ws65{word-spacing:3.813906pt;}
.ws5a{word-spacing:3.835515pt;}
.ws84{word-spacing:3.943557pt;}
.wsa0{word-spacing:3.997579pt;}
.ws7c{word-spacing:4.020069pt;}
.wsb5{word-spacing:4.156896pt;}
.ws42{word-spacing:4.159643pt;}
.ws34{word-spacing:4.258885pt;}
.ws2f{word-spacing:4.375728pt;}
.ws69{word-spacing:4.418096pt;}
.wsa1{word-spacing:4.429749pt;}
.ws35{word-spacing:4.503312pt;}
.ws4d{word-spacing:4.537792pt;}
.wsb1{word-spacing:4.543584pt;}
.ws5f{word-spacing:4.591813pt;}
.wsae{word-spacing:4.591920pt;}
.ws3e{word-spacing:4.699856pt;}
.wsa7{word-spacing:4.785264pt;}
.ws8c{word-spacing:4.861920pt;}
.ws39{word-spacing:4.881936pt;}
.ws31{word-spacing:4.915941pt;}
.ws36{word-spacing:4.930272pt;}
.wsba{word-spacing:4.954440pt;}
.ws38{word-spacing:4.978608pt;}
.ws7{word-spacing:5.023984pt;}
.ws93{word-spacing:5.026944pt;}
.ws92{word-spacing:5.075280pt;}
.ws50{word-spacing:5.078005pt;}
.ws7b{word-spacing:5.123616pt;}
.ws81{word-spacing:5.132027pt;}
.ws37{word-spacing:5.171952pt;}
.ws49{word-spacing:5.186048pt;}
.ws91{word-spacing:5.220288pt;}
.ws8a{word-spacing:5.240069pt;}
.ws3a{word-spacing:5.268624pt;}
.ws3b{word-spacing:5.316960pt;}
.ws41{word-spacing:5.348112pt;}
.ws9a{word-spacing:5.365296pt;}
.ws8d{word-spacing:5.402133pt;}
.ws3c{word-spacing:5.413632pt;}
.ws18{word-spacing:5.456155pt;}
.wsa8{word-spacing:5.461968pt;}
.ws2b{word-spacing:5.510176pt;}
.wsb0{word-spacing:5.510304pt;}
.ws4c{word-spacing:5.531785pt;}
.wsc{word-spacing:5.564197pt;}
.ws8{word-spacing:5.618219pt;}
.ws6b{word-spacing:5.639827pt;}
.ws2e{word-spacing:5.672240pt;}
.ws5e{word-spacing:5.699251pt;}
.wsa{word-spacing:5.726261pt;}
.ws7d{word-spacing:5.774881pt;}
.ws6{word-spacing:5.780283pt;}
.ws96{word-spacing:5.796489pt;}
.ws66{word-spacing:5.807293pt;}
.ws87{word-spacing:5.812695pt;}
.ws25{word-spacing:5.834304pt;}
.wsb3{word-spacing:5.853490pt;}
.ws6e{word-spacing:5.877521pt;}
.ws4{word-spacing:5.888325pt;}
.ws6d{word-spacing:5.909934pt;}
.ws4b{word-spacing:5.931542pt;}
.ws5{word-spacing:5.942347pt;}
.wsa6{word-spacing:5.993664pt;}
.ws1b{word-spacing:5.996368pt;}
.ws30{word-spacing:6.050389pt;}
.wsa9{word-spacing:6.090336pt;}
.ws16{word-spacing:6.104411pt;}
.wsb2{word-spacing:6.124171pt;}
.ws32{word-spacing:6.158432pt;}
.wsaa{word-spacing:6.187008pt;}
.ws46{word-spacing:6.212453pt;}
.wsb9{word-spacing:6.249845pt;}
.wsa5{word-spacing:6.283680pt;}
.ws14{word-spacing:6.320496pt;}
.ws7a{word-spacing:6.332016pt;}
.wsb7{word-spacing:6.380352pt;}
.wsf{word-spacing:6.428539pt;}
.ws8e{word-spacing:6.428688pt;}
.ws20{word-spacing:6.644624pt;}
.wsd{word-spacing:7.022773pt;}
.ws64{word-spacing:7.130816pt;}
.ws19{word-spacing:7.778304pt;}
.ws21{word-spacing:7.886336pt;}
.ws23{word-spacing:7.922347pt;}
.ws17{word-spacing:8.535371pt;}
.ws2{word-spacing:8.586464pt;}
.ws4a{word-spacing:8.643328pt;}
.ws63{word-spacing:9.237648pt;}
.ws61{word-spacing:9.345691pt;}
.ws62{word-spacing:9.453733pt;}
.ws9e{word-spacing:10.585584pt;}
.ws53{word-spacing:10.966331pt;}
.ws54{word-spacing:11.074373pt;}
.ws52{word-spacing:11.236437pt;}
.ws26{word-spacing:11.992736pt;}
.ws11{word-spacing:12.154800pt;}
.ws4f{word-spacing:12.424907pt;}
.ws1f{word-spacing:13.559355pt;}
.ws1{word-spacing:15.966912pt;}
.ws51{word-spacing:16.152379pt;}
.ws0{word-spacing:18.935120pt;}
.wsad{word-spacing:19.189392pt;}
.ws15{word-spacing:19.717787pt;}
.ws1c{word-spacing:20.906256pt;}
.ws1a{word-spacing:22.418853pt;}
.ws3{word-spacing:24.930845pt;}
.ws1e{word-spacing:41.488384pt;}
.ws24{word-spacing:53.643184pt;}
.ws94{word-spacing:346.375776pt;}
.ws1d{word-spacing:496.942245pt;}
.ws9f{word-spacing:505.739568pt;}
.ws9c{word-spacing:565.579536pt;}
._1e{margin-left:-17.935083pt;}
._19{margin-left:-15.956038pt;}
._1b{margin-left:-0.903567pt;}
._2{width:1.080427pt;}
._1c{width:9.313278pt;}
._1a{width:12.208821pt;}
._15{width:14.010539pt;}
._4{width:15.017931pt;}
._14{width:16.638571pt;}
._3{width:18.367253pt;}
._5{width:19.501701pt;}
._a{width:21.878640pt;}
._18{width:22.797003pt;}
._17{width:24.255579pt;}
._16{width:25.792128pt;}
._1d{width:27.966844pt;}
._21{width:29.388288pt;}
._1{width:35.004384pt;}
._c{width:35.924187pt;}
._0{width:38.484352pt;}
._13{width:59.531509pt;}
._12{width:66.014069pt;}
._b{width:76.494208pt;}
._10{width:113.390779pt;}
._9{width:153.906779pt;}
._11{width:179.728976pt;}
._7{width:235.046821pt;}
._8{width:272.105456pt;}
._f{width:289.986517pt;}
._d{width:297.819611pt;}
._1f{width:392.149968pt;}
._20{width:416.317968pt;}
._e{width:494.673349pt;}
._6{width:509.583237pt;}
.fs8{font-size:32.218667pt;}
.fs3{font-size:36.010667pt;}
.fs7{font-size:37.813333pt;}
.fs4{font-size:39.802667pt;}
.fs5{font-size:45.488000pt;}
.fs6{font-size:48.336000pt;}
.fs2{font-size:54.021333pt;}
.fs1{font-size:56.864000pt;}
.fs0{font-size:102.352000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:45.653494pt;}
.ycf{bottom:45.656000pt;}
.ycd{bottom:45.657853pt;}
.y153{bottom:45.733056pt;}
.y83{bottom:45.735688pt;}
.y18a{bottom:45.807645pt;}
.y113{bottom:45.808260pt;}
.y251{bottom:45.958667pt;}
.y1fc{bottom:45.959645pt;}
.y1fa{bottom:46.035723pt;}
.y250{bottom:46.110667pt;}
.yce{bottom:51.704000pt;}
.y8d{bottom:58.881849pt;}
.y189{bottom:59.036000pt;}
.y1fb{bottom:59.188000pt;}
.ycc{bottom:60.775723pt;}
.y152{bottom:60.850926pt;}
.y82{bottom:60.853558pt;}
.y280{bottom:60.855654pt;}
.y112{bottom:60.926130pt;}
.y1f9{bottom:61.153593pt;}
.y8c{bottom:72.110204pt;}
.y110{bottom:73.776000pt;}
.ycb{bottom:75.893593pt;}
.y151{bottom:75.968797pt;}
.y81{bottom:75.971429pt;}
.y27f{bottom:75.973524pt;}
.y111{bottom:76.044000pt;}
.y10f{bottom:76.044260pt;}
.y1f8{bottom:76.271463pt;}
.yca{bottom:91.011463pt;}
.y150{bottom:91.086667pt;}
.y80{bottom:91.089299pt;}
.y27e{bottom:91.091394pt;}
.y10e{bottom:91.162130pt;}
.y1f5{bottom:91.389056pt;}
.y1f7{bottom:91.389333pt;}
.y1f6{bottom:97.360000pt;}
.y8b{bottom:98.946351pt;}
.yc9{bottom:103.861333pt;}
.y10d{bottom:104.012000pt;}
.y2c4{bottom:105.222066pt;}
.yc8{bottom:106.129333pt;}
.y14f{bottom:106.203951pt;}
.y7f{bottom:106.207169pt;}
.y27d{bottom:106.209264pt;}
.y10c{bottom:106.280000pt;}
.y1f4{bottom:106.506926pt;}
.y2c3{bottom:118.450420pt;}
.y14e{bottom:121.322667pt;}
.y7e{bottom:121.325039pt;}
.y27c{bottom:121.327134pt;}
.y1f3{bottom:121.624797pt;}
.yc7{bottom:125.177333pt;}
.y8a{bottom:125.404269pt;}
.y10b{bottom:129.940000pt;}
.y2c2{bottom:131.678775pt;}
.y1f1{bottom:134.476000pt;}
.y7d{bottom:136.442909pt;}
.y27b{bottom:136.445004pt;}
.y1f2{bottom:136.742667pt;}
.y1f0{bottom:136.743463pt;}
.y89{bottom:138.632624pt;}
.y109{bottom:139.690667pt;}
.yc6{bottom:144.605333pt;}
.y2c1{bottom:144.907130pt;}
.y10a{bottom:149.366667pt;}
.y7c{bottom:151.560779pt;}
.y27a{bottom:151.562874pt;}
.y88{bottom:151.860979pt;}
.y1ef{bottom:151.861333pt;}
.y2c0{bottom:158.135485pt;}
.y14d{bottom:161.765835pt;}
.y1ee{bottom:164.712000pt;}
.y87{bottom:165.089333pt;}
.yc5{bottom:165.997853pt;}
.y7b{bottom:166.678649pt;}
.y279{bottom:166.680745pt;}
.y1ed{bottom:166.983151pt;}
.y2bf{bottom:171.363840pt;}
.y108{bottom:171.365056pt;}
.y14c{bottom:176.883706pt;}
.yc4{bottom:181.115723pt;}
.y7a{bottom:181.796519pt;}
.y278{bottom:181.798615pt;}
.y1ec{bottom:182.101022pt;}
.y2be{bottom:184.592194pt;}
.y107{bottom:186.482926pt;}
.y86{bottom:191.621333pt;}
.y14b{bottom:192.001576pt;}
.yc3{bottom:196.233593pt;}
.y79{bottom:196.914390pt;}
.y277{bottom:196.916485pt;}
.y1eb{bottom:197.218892pt;}
.y2bd{bottom:197.820549pt;}
.y106{bottom:201.600797pt;}
.y14a{bottom:207.119446pt;}
.y2bc{bottom:211.048904pt;}
.yc2{bottom:211.351463pt;}
.y78{bottom:212.032260pt;}
.y276{bottom:212.034355pt;}
.y1ea{bottom:212.336762pt;}
.y104{bottom:214.450667pt;}
.y105{bottom:216.718667pt;}
.y103{bottom:216.722597pt;}
.y149{bottom:222.237316pt;}
.yc0{bottom:224.201333pt;}
.y2bb{bottom:224.277259pt;}
.yc1{bottom:226.469333pt;}
.ybf{bottom:226.470130pt;}
.y77{bottom:227.150130pt;}
.y275{bottom:227.152225pt;}
.y1e9{bottom:227.454632pt;}
.y102{bottom:231.840467pt;}
.y148{bottom:237.355186pt;}
.y2ba{bottom:237.505614pt;}
.ybe{bottom:239.320000pt;}
.ybd{bottom:241.588000pt;}
.y76{bottom:242.268000pt;}
.y74{bottom:242.268519pt;}
.y274{bottom:242.270095pt;}
.y1e8{bottom:242.572502pt;}
.y101{bottom:246.958338pt;}
.y75{bottom:248.238667pt;}
.y44{bottom:249.524797pt;}
.y2b9{bottom:250.733968pt;}
.y147{bottom:252.473056pt;}
.ybc{bottom:256.705284pt;}
.y73{bottom:257.386390pt;}
.y273{bottom:257.387965pt;}
.y1e7{bottom:257.690372pt;}
.y100{bottom:262.076208pt;}
.y42{bottom:262.374667pt;}
.y2b8{bottom:263.962323pt;}
.y43{bottom:264.642667pt;}
.y41{bottom:264.642926pt;}
.y146{bottom:267.590926pt;}
.ybb{bottom:271.824000pt;}
.y72{bottom:272.504260pt;}
.y272{bottom:272.505835pt;}
.y1e6{bottom:272.808242pt;}
.y2b7{bottom:277.190678pt;}
.yff{bottom:277.194078pt;}
.y40{bottom:279.760797pt;}
.y145{bottom:282.708797pt;}
.y71{bottom:287.622130pt;}
.y271{bottom:287.623706pt;}
.y1e5{bottom:287.926113pt;}
.y24d{bottom:289.842245pt;}
.y2b6{bottom:290.419033pt;}
.yfe{bottom:292.311948pt;}
.y3e{bottom:292.610667pt;}
.y3f{bottom:294.878667pt;}
.y3d{bottom:294.879723pt;}
.y143{bottom:295.558667pt;}
.y144{bottom:297.826667pt;}
.y142{bottom:297.827463pt;}
.y188{bottom:297.978130pt;}
.y70{bottom:302.740000pt;}
.y270{bottom:302.741576pt;}
.y6e{bottom:302.743688pt;}
.yba{bottom:302.750251pt;}
.y1e4{bottom:303.043983pt;}
.y2b5{bottom:303.647388pt;}
.y24c{bottom:304.960115pt;}
.yfd{bottom:307.429818pt;}
.y6f{bottom:308.712000pt;}
.y3c{bottom:309.997593pt;}
.y140{bottom:310.677333pt;}
.y186{bottom:310.904000pt;}
.y141{bottom:312.945333pt;}
.y13f{bottom:312.945593pt;}
.y185{bottom:313.096000pt;}
.y2b4{bottom:316.875742pt;}
.y26f{bottom:317.859446pt;}
.y6d{bottom:317.861558pt;}
.yb9{bottom:317.868121pt;}
.y1e3{bottom:318.161853pt;}
.y187{bottom:319.142667pt;}
.y24b{bottom:320.077985pt;}
.y22a{bottom:320.814026pt;}
.yfc{bottom:322.547688pt;}
.y3b{bottom:325.115463pt;}
.y13e{bottom:328.063463pt;}
.y2b3{bottom:330.104097pt;}
.y26e{bottom:332.977316pt;}
.y6c{bottom:332.979429pt;}
.yb8{bottom:332.985991pt;}
.y1e2{bottom:333.279723pt;}
.y24a{bottom:335.195855pt;}
.y229{bottom:335.931896pt;}
.y184{bottom:336.527602pt;}
.yfb{bottom:337.665558pt;}
.y38{bottom:337.965333pt;}
.y13c{bottom:339.250128pt;}
.y39{bottom:340.233333pt;}
.y37{bottom:340.233593pt;}
.y13d{bottom:340.913333pt;}
.y13b{bottom:343.181333pt;}
.y2b2{bottom:343.332452pt;}
.y3a{bottom:346.204000pt;}
.y183{bottom:346.280000pt;}
.y1bb{bottom:347.870615pt;}
.y26d{bottom:348.095186pt;}
.y6b{bottom:348.097299pt;}
.yb7{bottom:348.103861pt;}
.y1e1{bottom:348.397593pt;}
.y249{bottom:350.313725pt;}
.y228{bottom:351.049766pt;}
.yfa{bottom:352.783429pt;}
.y36{bottom:355.351463pt;}
.y2b1{bottom:356.560807pt;}
.y13a{bottom:362.079050pt;}
.y1ba{bottom:362.988485pt;}
.y26c{bottom:363.213056pt;}
.y6a{bottom:363.215169pt;}
.yb6{bottom:363.221731pt;}
.y1e0{bottom:363.515463pt;}
.y248{bottom:365.431596pt;}
.y139{bottom:366.009333pt;}
.y227{bottom:366.167636pt;}
.yf9{bottom:367.901299pt;}
.y33{bottom:368.201333pt;}
.y2b0{bottom:369.789162pt;}
.y34{bottom:370.469333pt;}
.y32{bottom:370.469593pt;}
.y35{bottom:376.441333pt;}
.y1b9{bottom:378.106355pt;}
.y26b{bottom:378.330926pt;}
.y69{bottom:378.333039pt;}
.y182{bottom:378.336450pt;}
.yb5{bottom:378.339602pt;}
.y1dd{bottom:378.632797pt;}
.y1df{bottom:378.633333pt;}
.y247{bottom:380.549466pt;}
.y226{bottom:381.285506pt;}
.y2af{bottom:383.017516pt;}
.yf8{bottom:383.019169pt;}
.y1de{bottom:384.604000pt;}
.y31{bottom:385.587463pt;}
.y138{bottom:388.006130pt;}
.y1b8{bottom:393.224225pt;}
.y26a{bottom:393.448797pt;}
.y68{bottom:393.450909pt;}
.y181{bottom:393.454320pt;}
.yb4{bottom:393.457472pt;}
.y1dc{bottom:393.750667pt;}
.y1da{bottom:393.756190pt;}
.y246{bottom:395.667336pt;}
.y2ae{bottom:396.245871pt;}
.y225{bottom:396.403377pt;}
.yf7{bottom:398.137039pt;}
.y2e{bottom:398.437333pt;}
.y1db{bottom:399.722667pt;}
.y2f{bottom:400.705333pt;}
.y2d{bottom:400.705593pt;}
.y137{bottom:403.124000pt;}
.y268{bottom:406.298667pt;}
.y30{bottom:406.677333pt;}
.y1b7{bottom:408.342095pt;}
.y269{bottom:408.566667pt;}
.y67{bottom:408.568779pt;}
.y267{bottom:408.571931pt;}
.y180{bottom:408.572190pt;}
.yb3{bottom:408.575342pt;}
.y1d9{bottom:408.874061pt;}
.y2ad{bottom:409.474226pt;}
.y245{bottom:410.785206pt;}
.y224{bottom:411.521247pt;}
.yf6{bottom:413.254909pt;}
.y2c{bottom:415.823463pt;}
.y135{bottom:422.173333pt;}
.y2ac{bottom:422.702581pt;}
.y1b6{bottom:423.459965pt;}
.y66{bottom:423.686649pt;}
.y266{bottom:423.689801pt;}
.y17f{bottom:423.690061pt;}
.yb2{bottom:423.693212pt;}
.y1d8{bottom:423.991931pt;}
.y244{bottom:425.903076pt;}
.y223{bottom:426.639117pt;}
.yf5{bottom:428.372779pt;}
.y29{bottom:428.673333pt;}
.y136{bottom:429.808000pt;}
.y2a{bottom:430.941333pt;}
.y28{bottom:430.941593pt;}
.y2ab{bottom:435.930936pt;}
.y2b{bottom:436.913333pt;}
.y1b5{bottom:438.577835pt;}
.y65{bottom:438.804519pt;}
.y265{bottom:438.807671pt;}
.y17e{bottom:438.807931pt;}
.yb1{bottom:438.811082pt;}
.y1d7{bottom:439.109801pt;}
.y243{bottom:441.020946pt;}
.y134{bottom:441.600000pt;}
.y222{bottom:441.756987pt;}
.yf4{bottom:443.490649pt;}
.y27{bottom:446.059463pt;}
.y2aa{bottom:449.159290pt;}
.y1b4{bottom:453.695706pt;}
.y64{bottom:453.922390pt;}
.y264{bottom:453.925541pt;}
.y17d{bottom:453.925801pt;}
.yb0{bottom:453.928952pt;}
.y1d6{bottom:454.227671pt;}
.y242{bottom:456.138816pt;}
.y221{bottom:456.874857pt;}
.yf3{bottom:458.608519pt;}
.y24{bottom:458.910667pt;}
.y25{bottom:461.177333pt;}
.y23{bottom:461.178926pt;}
.y2a9{bottom:462.387645pt;}
.y133{bottom:462.992797pt;}
.y26{bottom:467.149333pt;}
.y1b3{bottom:468.813576pt;}
.y63{bottom:469.040260pt;}
.y263{bottom:469.043411pt;}
.y17c{bottom:469.043671pt;}
.yaf{bottom:469.046822pt;}
.y1d5{bottom:469.345541pt;}
.y241{bottom:471.256687pt;}
.y220{bottom:471.992727pt;}
.yf2{bottom:473.726390pt;}
.y2a6{bottom:475.615582pt;}
.y2a8{bottom:475.616000pt;}
.y132{bottom:475.842667pt;}
.y22{bottom:476.296797pt;}
.y131{bottom:478.110667pt;}
.y2a7{bottom:480.982667pt;}
.y1b2{bottom:483.931446pt;}
.y62{bottom:484.158130pt;}
.y262{bottom:484.161281pt;}
.y17b{bottom:484.161541pt;}
.yae{bottom:484.164693pt;}
.y1d4{bottom:484.463411pt;}
.y240{bottom:486.374557pt;}
.y21f{bottom:487.110597pt;}
.y2a5{bottom:488.843937pt;}
.yf1{bottom:488.844260pt;}
.y1f{bottom:489.146667pt;}
.y20{bottom:491.414667pt;}
.y1e{bottom:491.414926pt;}
.y21{bottom:497.385333pt;}
.y1b1{bottom:499.049316pt;}
.y61{bottom:499.276000pt;}
.y261{bottom:499.279151pt;}
.y17a{bottom:499.279411pt;}
.yad{bottom:499.282563pt;}
.y1d3{bottom:499.581281pt;}
.y23f{bottom:501.492427pt;}
.y2a4{bottom:502.072292pt;}
.y21e{bottom:502.228467pt;}
.y130{bottom:502.677333pt;}
.yf0{bottom:503.962130pt;}
.y1d{bottom:506.532797pt;}
.y1b0{bottom:514.167186pt;}
.y60{bottom:514.393284pt;}
.y260{bottom:514.397022pt;}
.y179{bottom:514.397281pt;}
.yac{bottom:514.400433pt;}
.y1d2{bottom:514.699151pt;}
.y2a3{bottom:515.300646pt;}
.y23e{bottom:516.610297pt;}
.yee{bottom:516.812000pt;}
.y21d{bottom:517.346338pt;}
.yef{bottom:519.080000pt;}
.yed{bottom:519.082892pt;}
.y1a{bottom:519.382667pt;}
.y19{bottom:521.650130pt;}
.y1b{bottom:521.650667pt;}
.y12f{bottom:524.674130pt;}
.y1c{bottom:527.621333pt;}
.y2a2{bottom:528.529001pt;}
.y1af{bottom:529.285056pt;}
.y5f{bottom:529.512000pt;}
.y25f{bottom:529.514892pt;}
.y178{bottom:529.515151pt;}
.yab{bottom:529.518303pt;}
.y1d1{bottom:529.817022pt;}
.y23d{bottom:531.728167pt;}
.y21c{bottom:532.464208pt;}
.yec{bottom:534.200762pt;}
.y16{bottom:534.500000pt;}
.y17{bottom:536.768000pt;}
.y15{bottom:536.769801pt;}
.y12e{bottom:537.600000pt;}
.y12d{bottom:539.792000pt;}
.y2a1{bottom:541.757356pt;}
.y18{bottom:542.740000pt;}
.y1ae{bottom:544.402926pt;}
.y25e{bottom:544.632762pt;}
.y177{bottom:544.633022pt;}
.yaa{bottom:544.636173pt;}
.y1d0{bottom:544.934892pt;}
.y23c{bottom:546.846037pt;}
.y21b{bottom:547.582078pt;}
.yeb{bottom:549.318632pt;}
.y14{bottom:551.887671pt;}
.y2a0{bottom:554.985711pt;}
.y1ad{bottom:559.520797pt;}
.y25d{bottom:559.750632pt;}
.y176{bottom:559.750892pt;}
.ya9{bottom:559.754043pt;}
.y1cf{bottom:560.052762pt;}
.y23b{bottom:561.963907pt;}
.y21a{bottom:562.699948pt;}
.y12c{bottom:562.845748pt;}
.yea{bottom:564.436502pt;}
.y5c{bottom:564.737333pt;}
.y5d{bottom:567.004000pt;}
.y13{bottom:567.005541pt;}
.y5b{bottom:567.005593pt;}
.y29f{bottom:568.214066pt;}
.y12b{bottom:572.598667pt;}
.y5e{bottom:572.976000pt;}
.y1ac{bottom:574.638667pt;}
.y25c{bottom:574.868502pt;}
.y175{bottom:574.868762pt;}
.ya8{bottom:574.871913pt;}
.y1ce{bottom:575.170632pt;}
.y23a{bottom:577.081777pt;}
.y219{bottom:577.817818pt;}
.ye9{bottom:579.554372pt;}
.y29e{bottom:581.442420pt;}
.y12{bottom:582.123411pt;}
.y5a{bottom:582.123463pt;}
.y1ab{bottom:589.757284pt;}
.y25b{bottom:589.986372pt;}
.y174{bottom:589.986632pt;}
.ya7{bottom:589.989783pt;}
.y1cd{bottom:590.288502pt;}
.y239{bottom:592.199648pt;}
.y218{bottom:592.935688pt;}
.y29c{bottom:594.670775pt;}
.ye8{bottom:594.672242pt;}
.y57{bottom:594.973333pt;}
.y29d{bottom:595.049004pt;}
.y56{bottom:597.240654pt;}
.y58{bottom:597.241333pt;}
.y12a{bottom:602.607463pt;}
.y59{bottom:603.212000pt;}
.y1aa{bottom:604.876000pt;}
.y25a{bottom:605.104242pt;}
.y173{bottom:605.104502pt;}
.ya6{bottom:605.107654pt;}
.y1cc{bottom:605.406372pt;}
.y238{bottom:607.317518pt;}
.y29b{bottom:607.899130pt;}
.y217{bottom:608.053558pt;}
.ye7{bottom:609.790113pt;}
.y11{bottom:612.360502pt;}
.y54{bottom:613.870667pt;}
.y128{bottom:615.533333pt;}
.y53{bottom:616.138130pt;}
.y55{bottom:616.138667pt;}
.y129{bottom:617.725333pt;}
.y127{bottom:617.728485pt;}
.y259{bottom:620.222113pt;}
.y172{bottom:620.222372pt;}
.ya5{bottom:620.225524pt;}
.y1cb{bottom:620.524242pt;}
.y29a{bottom:621.127485pt;}
.y237{bottom:622.435388pt;}
.y216{bottom:623.171429pt;}
.ye6{bottom:624.907983pt;}
.y10{bottom:627.478372pt;}
.y51{bottom:628.989333pt;}
.y52{bottom:631.256000pt;}
.y50{bottom:631.256654pt;}
.y126{bottom:632.846355pt;}
.y299{bottom:634.355840pt;}
.y1a9{bottom:635.111463pt;}
.y258{bottom:635.339983pt;}
.y171{bottom:635.340242pt;}
.ya4{bottom:635.343394pt;}
.y1ca{bottom:635.642113pt;}
.y236{bottom:637.553258pt;}
.y215{bottom:638.289299pt;}
.ye5{bottom:640.025853pt;}
.yf{bottom:642.596242pt;}
.y298{bottom:647.584194pt;}
.y4e{bottom:647.886667pt;}
.y125{bottom:647.964225pt;}
.y1a8{bottom:648.037333pt;}
.y4d{bottom:650.154130pt;}
.y4f{bottom:650.154667pt;}
.y1a7{bottom:650.229333pt;}
.y257{bottom:650.457853pt;}
.y170{bottom:650.458113pt;}
.ya3{bottom:650.461264pt;}
.y1c9{bottom:650.759983pt;}
.y235{bottom:652.671128pt;}
.y214{bottom:653.407169pt;}
.ye4{bottom:655.143723pt;}
.ye{bottom:657.714113pt;}
.y297{bottom:660.812549pt;}
.y4b{bottom:663.004000pt;}
.y124{bottom:663.082095pt;}
.y4a{bottom:665.271437pt;}
.y4c{bottom:665.272000pt;}
.y256{bottom:665.575723pt;}
.y16f{bottom:665.575983pt;}
.ya2{bottom:665.579134pt;}
.y1c8{bottom:665.877853pt;}
.y234{bottom:667.788998pt;}
.y213{bottom:668.525039pt;}
.y1a6{bottom:669.128383pt;}
.ye3{bottom:670.261593pt;}
.yd{bottom:672.831983pt;}
.y1a5{bottom:673.133333pt;}
.y296{bottom:674.040904pt;}
.y123{bottom:678.199965pt;}
.y49{bottom:680.389307pt;}
.y255{bottom:680.693593pt;}
.y16e{bottom:680.693853pt;}
.ya1{bottom:680.697004pt;}
.y1c7{bottom:680.995723pt;}
.y233{bottom:682.906868pt;}
.y212{bottom:683.642909pt;}
.ye2{bottom:685.379463pt;}
.y295{bottom:687.269259pt;}
.yc{bottom:687.949853pt;}
.y122{bottom:693.317835pt;}
.y1a4{bottom:695.810926pt;}
.y254{bottom:695.811463pt;}
.y16d{bottom:695.811723pt;}
.ya0{bottom:695.814874pt;}
.y1c6{bottom:696.113593pt;}
.y232{bottom:698.024739pt;}
.ye0{bottom:698.229333pt;}
.y211{bottom:698.760779pt;}
.ye1{bottom:700.497333pt;}
.y294{bottom:700.497614pt;}
.ydf{bottom:700.498649pt;}
.yb{bottom:703.067723pt;}
.y121{bottom:708.435706pt;}
.y1a3{bottom:710.928797pt;}
.y253{bottom:710.929333pt;}
.y16c{bottom:710.929593pt;}
.y9f{bottom:710.932745pt;}
.y1c5{bottom:711.231463pt;}
.y231{bottom:713.142609pt;}
.y293{bottom:713.725968pt;}
.y210{bottom:713.878649pt;}
.yde{bottom:715.616519pt;}
.y47{bottom:715.917333pt;}
.y48{bottom:718.185333pt;}
.ya{bottom:718.185593pt;}
.y120{bottom:723.553576pt;}
.y1a0{bottom:723.778667pt;}
.y252{bottom:726.046617pt;}
.y1a1{bottom:726.046667pt;}
.y16b{bottom:726.047463pt;}
.y19f{bottom:726.047723pt;}
.y9e{bottom:726.050615pt;}
.y1c4{bottom:726.349333pt;}
.y1c2{bottom:726.349593pt;}
.y292{bottom:726.954323pt;}
.y230{bottom:728.260479pt;}
.y20f{bottom:728.996519pt;}
.ydd{bottom:730.734390pt;}
.y1a2{bottom:732.018667pt;}
.y1c3{bottom:732.321333pt;}
.y9{bottom:733.303463pt;}
.y11f{bottom:738.671446pt;}
.y291{bottom:740.182678pt;}
.y168{bottom:741.164797pt;}
.y16a{bottom:741.165333pt;}
.y19e{bottom:741.165593pt;}
.y9d{bottom:741.168485pt;}
.y1c1{bottom:741.467463pt;}
.y22f{bottom:743.378349pt;}
.y20e{bottom:744.114390pt;}
.ydc{bottom:745.852260pt;}
.y169{bottom:747.137333pt;}
.y8{bottom:748.421333pt;}
.y6{bottom:748.422926pt;}
.y290{bottom:753.411033pt;}
.y11e{bottom:753.789316pt;}
.y7{bottom:754.393333pt;}
.y167{bottom:756.282667pt;}
.y19d{bottom:756.283463pt;}
.y165{bottom:756.284260pt;}
.y9c{bottom:756.286355pt;}
.y1c0{bottom:756.585333pt;}
.y1be{bottom:756.600074pt;}
.y22e{bottom:758.496219pt;}
.y20d{bottom:759.232260pt;}
.ydb{bottom:760.970130pt;}
.y166{bottom:762.254667pt;}
.y1bf{bottom:762.557333pt;}
.y5{bottom:763.540797pt;}
.y28f{bottom:766.639388pt;}
.y11d{bottom:768.907186pt;}
.y19a{bottom:769.133333pt;}
.y19b{bottom:771.401333pt;}
.y164{bottom:771.402130pt;}
.y9b{bottom:771.404225pt;}
.y1bd{bottom:771.717944pt;}
.y22d{bottom:773.614089pt;}
.y20c{bottom:774.350130pt;}
.yda{bottom:776.088000pt;}
.y46{bottom:776.390667pt;}
.y19c{bottom:777.373333pt;}
.y4{bottom:778.658667pt;}
.y45{bottom:778.671860pt;}
.y28e{bottom:779.867742pt;}
.y198{bottom:782.589740pt;}
.y11c{bottom:784.025056pt;}
.y197{bottom:786.519948pt;}
.y163{bottom:786.520000pt;}
.y9a{bottom:786.522095pt;}
.y1bc{bottom:786.835815pt;}
.y22c{bottom:788.731959pt;}
.y20b{bottom:789.468000pt;}
.y199{bottom:792.490667pt;}
.y28d{bottom:793.096097pt;}
.y85{bottom:794.154667pt;}
.yd9{bottom:796.421333pt;}
.yd8{bottom:798.538667pt;}
.y11b{bottom:799.142926pt;}
.y162{bottom:801.637333pt;}
.y160{bottom:801.637593pt;}
.y196{bottom:801.637818pt;}
.y99{bottom:801.639965pt;}
.y22b{bottom:803.849829pt;}
.y28c{bottom:806.324452pt;}
.y161{bottom:807.609333pt;}
.y11a{bottom:814.260797pt;}
.y15f{bottom:816.755463pt;}
.y195{bottom:816.755688pt;}
.y98{bottom:816.757835pt;}
.y28b{bottom:819.552807pt;}
.yd7{bottom:824.310849pt;}
.y119{bottom:829.378667pt;}
.y15e{bottom:831.873333pt;}
.y194{bottom:831.873559pt;}
.y97{bottom:831.875706pt;}
.y15c{bottom:831.898768pt;}
.y28a{bottom:832.781162pt;}
.y15d{bottom:837.845333pt;}
.y20a{bottom:838.449751pt;}
.yd6{bottom:839.430070pt;}
.y289{bottom:846.009516pt;}
.y193{bottom:846.991429pt;}
.y96{bottom:846.993576pt;}
.y15b{bottom:847.016638pt;}
.y209{bottom:851.678106pt;}
.y118{bottom:853.946667pt;}
.yd5{bottom:854.549290pt;}
.y288{bottom:859.237871pt;}
.y192{bottom:862.109299pt;}
.y95{bottom:862.111446pt;}
.y15a{bottom:862.134508pt;}
.y24f{bottom:864.906461pt;}
.yd4{bottom:869.668511pt;}
.y287{bottom:872.466226pt;}
.y117{bottom:876.016225pt;}
.y208{bottom:876.169957pt;}
.y191{bottom:877.227169pt;}
.y94{bottom:877.229316pt;}
.y159{bottom:877.252378pt;}
.y24e{bottom:878.134815pt;}
.y3{bottom:884.106667pt;}
.y286{bottom:885.694581pt;}
.y201{bottom:889.397239pt;}
.y207{bottom:889.398312pt;}
.y116{bottom:891.135446pt;}
.y190{bottom:892.346390pt;}
.yd3{bottom:892.346667pt;}
.y93{bottom:892.347186pt;}
.y158{bottom:892.370248pt;}
.yd2{bottom:898.317333pt;}
.y285{bottom:898.922936pt;}
.y200{bottom:902.625593pt;}
.y205{bottom:902.626667pt;}
.y203{bottom:902.626802pt;}
.y115{bottom:906.254667pt;}
.y18f{bottom:907.464260pt;}
.y92{bottom:907.465056pt;}
.y157{bottom:907.488118pt;}
.y204{bottom:907.993333pt;}
.y284{bottom:912.151290pt;}
.y2{bottom:914.341327pt;}
.y1ff{bottom:915.853948pt;}
.y206{bottom:915.855021pt;}
.y202{bottom:915.855157pt;}
.y18e{bottom:922.582130pt;}
.y91{bottom:922.582926pt;}
.y156{bottom:922.605988pt;}
.y283{bottom:925.379645pt;}
.y114{bottom:930.821333pt;}
.y18b{bottom:935.433333pt;}
.y18c{bottom:937.700000pt;}
.y90{bottom:937.700797pt;}
.y155{bottom:937.723859pt;}
.y282{bottom:938.608000pt;}
.y1fe{bottom:940.572979pt;}
.y18d{bottom:943.672000pt;}
.y1{bottom:944.578667pt;}
.yd1{bottom:950.550667pt;}
.y281{bottom:952.289333pt;}
.y8f{bottom:952.818667pt;}
.yd0{bottom:952.840302pt;}
.y154{bottom:952.841729pt;}
.y1fd{bottom:953.801333pt;}
.y84{bottom:990.312000pt;}
.h20{height:23.100784pt;}
.h9{height:24.579707pt;}
.h4{height:25.819648pt;}
.h8{height:25.891669pt;}
.ha{height:28.538512pt;}
.hb{height:32.705872pt;}
.h21{height:34.415232pt;}
.hc{height:34.656912pt;}
.hd{height:34.753584pt;}
.h5{height:38.463189pt;}
.h3{height:38.733296pt;}
.h6{height:38.841339pt;}
.h14{height:40.516000pt;}
.h2{height:40.771488pt;}
.he{height:40.885216pt;}
.h10{height:42.648000pt;}
.h13{height:42.651676pt;}
.h18{height:48.013333pt;}
.h1c{height:48.013541pt;}
.h15{height:51.112000pt;}
.h11{height:51.117333pt;}
.h1e{height:53.137333pt;}
.h16{height:53.436000pt;}
.h1d{height:56.237040pt;}
.h19{height:56.240821pt;}
.h17{height:58.369133pt;}
.h1f{height:58.667800pt;}
.h7{height:58.780211pt;}
.h1{height:72.362864pt;}
.h12{height:79.470155pt;}
.hf{height:81.656704pt;}
.h1b{height:81.657942pt;}
.h1a{height:82.861333pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x51{left:35.905333pt;}
.x1{left:62.362667pt;}
.x6{left:66.746667pt;}
.x5f{left:67.805333pt;}
.xc{left:71.130667pt;}
.x10{left:73.246667pt;}
.x52{left:77.480000pt;}
.x33{left:81.260000pt;}
.x37{left:85.644000pt;}
.x36{left:86.702667pt;}
.x64{left:90.936000pt;}
.x3{left:94.337333pt;}
.x7{left:96.377333pt;}
.x82{left:100.081333pt;}
.x4{left:105.676000pt;}
.x38{left:107.718043pt;}
.x61{left:111.269333pt;}
.x2{left:112.478667pt;}
.x8{left:114.822667pt;}
.x15{left:121.852000pt;}
.x86{left:127.597333pt;}
.xd{left:129.789333pt;}
.x87{left:135.156000pt;}
.x55{left:143.924847pt;}
.x9{left:144.982667pt;}
.x16{left:148.157333pt;}
.x62{left:149.896000pt;}
.x85{left:150.954667pt;}
.x60{left:153.600000pt;}
.xe{left:154.582667pt;}
.x17{left:159.496000pt;}
.xa{left:160.478667pt;}
.x12{left:164.333333pt;}
.xf{left:165.921333pt;}
.xb{left:169.852000pt;}
.x74{left:170.985333pt;}
.x56{left:178.469333pt;}
.x13{left:179.829333pt;}
.x97{left:189.884000pt;}
.x11{left:195.477333pt;}
.x5b{left:209.158667pt;}
.x14{left:214.828000pt;}
.x7c{left:217.549333pt;}
.x5c{left:219.137333pt;}
.x7d{left:227.376000pt;}
.x7a{left:231.004000pt;}
.x5{left:238.870999pt;}
.x83{left:244.081333pt;}
.x39{left:246.198667pt;}
.x57{left:247.484000pt;}
.x98{left:249.070667pt;}
.x84{left:253.454667pt;}
.x58{left:257.310667pt;}
.x3a{left:262.072000pt;}
.x63{left:265.322667pt;}
.x3b{left:266.305333pt;}
.x53{left:270.085333pt;}
.x3c{left:277.568000pt;}
.x54{left:280.062667pt;}
.x59{left:285.354667pt;}
.x7e{left:291.477333pt;}
.x5a{left:293.064000pt;}
.x75{left:296.693333pt;}
.x76{left:299.792000pt;}
.x7f{left:305.008000pt;}
.x34{left:310.904000pt;}
.x80{left:314.078667pt;}
.x35{left:318.462667pt;}
.x81{left:325.417333pt;}
.x77{left:328.062667pt;}
.x7b{left:330.330667pt;}
.x99{left:337.586667pt;}
.x9a{left:351.722667pt;}
.x5d{left:352.629333pt;}
.x78{left:354.368000pt;}
.x9b{left:356.485333pt;}
.x5e{left:361.020000pt;}
.x79{left:365.706667pt;}
.x9c{left:366.614667pt;}
.x18{left:402.527034pt;}
.x19{left:410.532000pt;}
.x23{left:414.916000pt;}
.x2d{left:417.637870pt;}
.x27{left:420.434667pt;}
.x3d{left:421.420058pt;}
.x28{left:425.348000pt;}
.x70{left:432.677757pt;}
.x3e{left:435.477333pt;}
.x1a{left:436.534667pt;}
.x9f{left:441.827134pt;}
.x3f{left:447.873879pt;}
.x25{left:450.065333pt;}
.x20{left:454.980000pt;}
.x71{left:456.869333pt;}
.x47{left:465.486667pt;}
.x8c{left:467.073333pt;}
.x1c{left:469.946667pt;}
.x40{left:471.232000pt;}
.x48{left:474.934667pt;}
.x8d{left:476.446667pt;}
.x4b{left:477.354667pt;}
.x29{left:478.488000pt;}
.x1d{left:481.209333pt;}
.x4c{left:482.268000pt;}
.x41{left:487.105333pt;}
.x1e{left:490.280000pt;}
.x42{left:491.338667pt;}
.x49{left:494.589333pt;}
.x6e{left:498.594667pt;}
.x1f{left:501.618667pt;}
.x43{left:502.677333pt;}
.x21{left:507.514667pt;}
.x2a{left:508.649333pt;}
.x9d{left:515.528000pt;}
.x65{left:519.230667pt;}
.x4a{left:521.045333pt;}
.x2b{left:524.145333pt;}
.x9e{left:525.656000pt;}
.x88{left:526.790667pt;}
.x24{left:529.738667pt;}
.x93{left:531.027672pt;}
.x46{left:534.802667pt;}
.x72{left:536.920000pt;}
.x89{left:538.129333pt;}
.x22{left:545.764000pt;}
.x6a{left:547.048000pt;}
.x26{left:552.264000pt;}
.x2c{left:559.218667pt;}
.x6b{left:562.090667pt;}
.x73{left:573.052000pt;}
.x1b{left:579.026738pt;}
.x6f{left:584.164000pt;}
.x66{left:589.152000pt;}
.x94{left:601.322667pt;}
.x95{left:605.706667pt;}
.xa0{left:615.230667pt;}
.x8a{left:626.569333pt;}
.x67{left:632.541333pt;}
.x6c{left:634.960000pt;}
.x8b{left:637.908000pt;}
.x44{left:639.042667pt;}
.x96{left:640.630635pt;}
.x45{left:644.485333pt;}
.x68{left:648.416000pt;}
.x6d{left:650.002667pt;}
.x30{left:661.493333pt;}
.x90{left:663.533333pt;}
.x2e{left:666.860000pt;}
.x8e{left:670.337333pt;}
.x31{left:672.830667pt;}
.x2f{left:678.122667pt;}
.x8f{left:681.676000pt;}
.x91{left:689.688000pt;}
.x92{left:705.486667pt;}
.x69{left:716.976000pt;}
.x4d{left:725.140000pt;}
.x4e{left:728.238667pt;}
.x4f{left:733.152000pt;}
.x50{left:741.089333pt;}
.x32{left:757.794667pt;}
}




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