
    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_cf07b31a71bef9d8a97c466c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_16016704f033e1fdf9757fcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.885000;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_b34393af569d414ecb4fa1ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_21841e3bcb6c9c2394c0501c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;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_cb0c66a0839ae9d6a3dd1387.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_d0cf094b7ae76e183d5fc60e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.119286;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_c5955c87340767c9210f2343.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.138184;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_e2fe5bd8a4e394eaf69314e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_b1290e5f518ac927eeca1c97.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.075195;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_ee601855eb74c1c3a8045d57.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905762;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_2db72653e3eb611a401ab5eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.685059;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_75965c3805c8e3ec0908d404.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.742000;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_e6feadd8bfbe5abfd27fe95b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a9214e7723468d25229c91e7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.929133;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(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);}
.v4{vertical-align:-19.350000px;}
.v3{vertical-align:-15.750000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.547900px;}
.v2{vertical-align:19.142700px;}
.ls5a{letter-spacing:-1.170000px;}
.ls3c{letter-spacing:-1.050000px;}
.ls3b{letter-spacing:-0.682500px;}
.ls12{letter-spacing:-0.645000px;}
.ls4c{letter-spacing:-0.585000px;}
.ls30{letter-spacing:-0.525000px;}
.ls5{letter-spacing:-0.420000px;}
.ls2f{letter-spacing:-0.341250px;}
.ls2d{letter-spacing:-0.322500px;}
.ls59{letter-spacing:-0.234000px;}
.ls2e{letter-spacing:-0.209625px;}
.ls2c{letter-spacing:-0.129000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000300px;}
.ls53{letter-spacing:0.058500px;}
.lsd{letter-spacing:0.064500px;}
.ls3e{letter-spacing:0.068250px;}
.ls39{letter-spacing:0.102375px;}
.ls3d{letter-spacing:0.105000px;}
.ls4d{letter-spacing:0.117000px;}
.ls8{letter-spacing:0.129000px;}
.ls32{letter-spacing:0.157500px;}
.ls4f{letter-spacing:0.175500px;}
.ls6{letter-spacing:0.193500px;}
.ls16{letter-spacing:0.209100px;}
.ls19{letter-spacing:0.209625px;}
.ls26{letter-spacing:0.210000px;}
.ls52{letter-spacing:0.234000px;}
.ls1c{letter-spacing:0.258000px;}
.ls1e{letter-spacing:0.262500px;}
.ls1d{letter-spacing:0.290250px;}
.ls5d{letter-spacing:0.292500px;}
.ls44{letter-spacing:0.307125px;}
.lse{letter-spacing:0.322500px;}
.ls1b{letter-spacing:0.335400px;}
.ls36{letter-spacing:0.341250px;}
.ls57{letter-spacing:0.351000px;}
.ls10{letter-spacing:0.359700px;}
.ls33{letter-spacing:0.367500px;}
.ls14{letter-spacing:0.375300px;}
.ls1a{letter-spacing:0.387000px;}
.ls43{letter-spacing:0.409500px;}
.ls29{letter-spacing:0.420000px;}
.ls22{letter-spacing:0.451500px;}
.ls51{letter-spacing:0.468000px;}
.ls42{letter-spacing:0.472500px;}
.ls27{letter-spacing:0.477750px;}
.ls2{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.486000px;}
.ls45{letter-spacing:0.503100px;}
.ls15{letter-spacing:0.516000px;}
.ls34{letter-spacing:0.525000px;}
.ls50{letter-spacing:0.526500px;}
.ls3a{letter-spacing:0.545025px;}
.ls40{letter-spacing:0.546000px;}
.ls1{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.580500px;}
.ls5e{letter-spacing:0.585000px;}
.ls35{letter-spacing:0.628875px;}
.ls41{letter-spacing:0.630000px;}
.ls5b{letter-spacing:0.643500px;}
.ls17{letter-spacing:0.645000px;}
.ls18{letter-spacing:0.709500px;}
.ls25{letter-spacing:0.735000px;}
.ls20{letter-spacing:0.754650px;}
.ls5c{letter-spacing:0.760500px;}
.lsb{letter-spacing:0.774000px;}
.ls2b{letter-spacing:0.819000px;}
.ls13{letter-spacing:0.838500px;}
.ls3f{letter-spacing:0.840000px;}
.ls54{letter-spacing:0.877500px;}
.ls9{letter-spacing:0.903000px;}
.ls56{letter-spacing:0.936000px;}
.ls11{letter-spacing:0.967500px;}
.ls31{letter-spacing:1.032000px;}
.ls47{letter-spacing:1.053000px;}
.ls46{letter-spacing:1.096500px;}
.lsc{letter-spacing:1.161000px;}
.ls21{letter-spacing:1.225500px;}
.ls28{letter-spacing:1.260000px;}
.ls58{letter-spacing:1.287000px;}
.ls37{letter-spacing:1.483500px;}
.ls24{letter-spacing:1.548000px;}
.ls23{letter-spacing:1.677000px;}
.ls38{letter-spacing:1.740750px;}
.ls49{letter-spacing:1.813500px;}
.ls48{letter-spacing:2.106000px;}
.ls4a{letter-spacing:2.281500px;}
.ls4b{letter-spacing:2.398500px;}
.ls1f{letter-spacing:2.580000px;}
.ls4e{letter-spacing:5.440500px;}
.ls2a{letter-spacing:6.825000px;}
.ls55{letter-spacing:7.897500px;}
.ls0{letter-spacing:12.510000px;}
.lsa{letter-spacing:13.125000px;}
.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;}
}
.wse2{word-spacing:-16.899000px;}
.ws49{word-spacing:-16.705500px;}
.ws96{word-spacing:-16.447500px;}
.ws7f{word-spacing:-16.125000px;}
.wseb{word-spacing:-14.625000px;}
.wsec{word-spacing:-14.040000px;}
.wsb6{word-spacing:-13.492500px;}
.wsb7{word-spacing:-13.335000px;}
.ws4b{word-spacing:-13.125000px;}
.ws2d{word-spacing:-12.750000px;}
.ws48{word-spacing:-12.093750px;}
.ws80{word-spacing:-11.235900px;}
.wsb5{word-spacing:-11.110125px;}
.wsc4{word-spacing:-11.026275px;}
.wse3{word-spacing:-10.984350px;}
.wsfd{word-spacing:-10.968750px;}
.ws61{word-spacing:-10.816650px;}
.ws60{word-spacing:-10.690875px;}
.ws21{word-spacing:-10.481250px;}
.wsa3{word-spacing:-10.271625px;}
.ws20{word-spacing:-9.506250px;}
.ws2{word-spacing:-9.486000px;}
.ws97{word-spacing:-9.350250px;}
.ws0{word-spacing:-9.324000px;}
.wsd8{word-spacing:-9.077250px;}
.ws8e{word-spacing:-9.009000px;}
.ws1{word-spacing:-9.000000px;}
.wsdc{word-spacing:-8.940750px;}
.wsb8{word-spacing:-8.872500px;}
.wsdd{word-spacing:-8.838375px;}
.wsc0{word-spacing:-8.633625px;}
.wsd4{word-spacing:-8.599500px;}
.ws4a{word-spacing:-8.531250px;}
.wsa4{word-spacing:-8.190000px;}
.wsc6{word-spacing:-7.848750px;}
.wsf6{word-spacing:-2.398500px;}
.wsf1{word-spacing:-2.281500px;}
.wsee{word-spacing:-1.813500px;}
.wsf0{word-spacing:-1.053000px;}
.ws10f{word-spacing:-0.936000px;}
.wsdb{word-spacing:-0.840000px;}
.ws118{word-spacing:-0.760500px;}
.wsdf{word-spacing:-0.630000px;}
.wsa{word-spacing:-0.576000px;}
.ws16{word-spacing:-0.480000px;}
.wsa1{word-spacing:-0.420000px;}
.ws89{word-spacing:-0.262500px;}
.ws95{word-spacing:-0.210000px;}
.ws10a{word-spacing:-0.175500px;}
.wsda{word-spacing:-0.157500px;}
.ws111{word-spacing:-0.043875px;}
.ws4{word-spacing:0.000000px;}
.ws55{word-spacing:0.064500px;}
.ws7d{word-spacing:0.105000px;}
.ws72{word-spacing:0.193500px;}
.ws43{word-spacing:0.210000px;}
.wsd9{word-spacing:0.258000px;}
.ws44{word-spacing:0.262500px;}
.ws1f{word-spacing:0.288000px;}
.ws76{word-spacing:0.322500px;}
.ws98{word-spacing:0.387000px;}
.ws7{word-spacing:0.420000px;}
.ws6b{word-spacing:0.451500px;}
.ws113{word-spacing:0.468000px;}
.wsc5{word-spacing:0.516000px;}
.wsab{word-spacing:0.525000px;}
.ws19{word-spacing:0.528000px;}
.wse7{word-spacing:0.577500px;}
.wsb2{word-spacing:0.580500px;}
.wsfc{word-spacing:0.585000px;}
.ws11f{word-spacing:0.630000px;}
.ws102{word-spacing:0.643500px;}
.ws57{word-spacing:0.645000px;}
.ws67{word-spacing:0.709500px;}
.wsf3{word-spacing:0.760500px;}
.ws3d{word-spacing:0.774000px;}
.wsfb{word-spacing:0.819000px;}
.ws9d{word-spacing:0.838500px;}
.wsd7{word-spacing:0.840000px;}
.ws42{word-spacing:0.892500px;}
.wsb1{word-spacing:0.903000px;}
.ws14{word-spacing:0.912000px;}
.ws8c{word-spacing:0.945000px;}
.wsaf{word-spacing:0.967500px;}
.wsc3{word-spacing:0.997500px;}
.ws26{word-spacing:1.032000px;}
.ws2c{word-spacing:1.050000px;}
.wsd6{word-spacing:1.096500px;}
.ws11d{word-spacing:1.102500px;}
.ws15{word-spacing:1.152000px;}
.ws85{word-spacing:1.161000px;}
.ws109{word-spacing:1.170000px;}
.ws13{word-spacing:1.200000px;}
.wse5{word-spacing:1.225500px;}
.ws1c{word-spacing:1.248000px;}
.ws82{word-spacing:1.290000px;}
.ws6{word-spacing:1.344000px;}
.wsc8{word-spacing:1.354500px;}
.ws1a{word-spacing:1.392000px;}
.wsf2{word-spacing:1.404000px;}
.wsc1{word-spacing:1.419000px;}
.ws10d{word-spacing:1.462500px;}
.ws45{word-spacing:1.470000px;}
.ws83{word-spacing:1.483500px;}
.ws12{word-spacing:1.488000px;}
.ws28{word-spacing:1.548000px;}
.wsfe{word-spacing:1.579500px;}
.wsd1{word-spacing:1.612500px;}
.ws9b{word-spacing:1.677000px;}
.ws1d{word-spacing:1.728000px;}
.ws86{word-spacing:1.732500px;}
.wsde{word-spacing:1.741500px;}
.ws119{word-spacing:1.755000px;}
.ws47{word-spacing:1.785000px;}
.ws3c{word-spacing:1.806000px;}
.ws32{word-spacing:1.870500px;}
.wscb{word-spacing:1.890000px;}
.ws33{word-spacing:1.935000px;}
.ws17{word-spacing:1.968000px;}
.wsa9{word-spacing:1.995000px;}
.ws7b{word-spacing:1.999500px;}
.wse1{word-spacing:2.047500px;}
.wse{word-spacing:2.064000px;}
.ws79{word-spacing:2.128500px;}
.ws65{word-spacing:2.193000px;}
.ws18{word-spacing:2.208000px;}
.ws66{word-spacing:2.257500px;}
.wsc2{word-spacing:2.322000px;}
.ws112{word-spacing:2.340000px;}
.ws10{word-spacing:2.352000px;}
.ws5b{word-spacing:2.386500px;}
.ws1e{word-spacing:2.400000px;}
.wsca{word-spacing:2.415000px;}
.wsbe{word-spacing:2.451000px;}
.wse6{word-spacing:2.515500px;}
.wsb4{word-spacing:2.520000px;}
.ws8d{word-spacing:2.572500px;}
.ws9f{word-spacing:2.580000px;}
.ws5{word-spacing:2.604000px;}
.ws99{word-spacing:2.644500px;}
.ws38{word-spacing:2.709000px;}
.wscd{word-spacing:2.773500px;}
.wsd{word-spacing:2.832000px;}
.wscc{word-spacing:2.835000px;}
.ws5c{word-spacing:2.838000px;}
.ws58{word-spacing:2.902500px;}
.ws101{word-spacing:2.925000px;}
.wsac{word-spacing:2.940000px;}
.ws71{word-spacing:2.967000px;}
.wsf4{word-spacing:2.983500px;}
.wsaa{word-spacing:2.992500px;}
.ws56{word-spacing:3.031500px;}
.ws46{word-spacing:3.045000px;}
.wsad{word-spacing:3.096000px;}
.wsf8{word-spacing:3.100500px;}
.ws59{word-spacing:3.160500px;}
.ws4e{word-spacing:3.225000px;}
.ws24{word-spacing:3.289500px;}
.wsfa{word-spacing:3.334500px;}
.ws6c{word-spacing:3.354000px;}
.ws11b{word-spacing:3.393000px;}
.ws78{word-spacing:3.418500px;}
.wsae{word-spacing:3.483000px;}
.wsba{word-spacing:3.547500px;}
.ws11{word-spacing:3.552000px;}
.ws117{word-spacing:3.568500px;}
.ws6d{word-spacing:3.612000px;}
.wsf7{word-spacing:3.627000px;}
.ws64{word-spacing:3.676500px;}
.wsa0{word-spacing:3.727500px;}
.ws50{word-spacing:3.741000px;}
.wse8{word-spacing:3.780000px;}
.ws70{word-spacing:3.805500px;}
.wsff{word-spacing:3.861000px;}
.ws37{word-spacing:3.870000px;}
.wsf{word-spacing:3.888000px;}
.ws51{word-spacing:3.934500px;}
.wse0{word-spacing:3.990000px;}
.ws6f{word-spacing:3.999000px;}
.ws8a{word-spacing:4.042500px;}
.ws36{word-spacing:4.063500px;}
.ws87{word-spacing:4.095000px;}
.ws34{word-spacing:4.128000px;}
.ws6e{word-spacing:4.192500px;}
.ws5f{word-spacing:4.200000px;}
.ws63{word-spacing:4.257000px;}
.wse9{word-spacing:4.305000px;}
.ws8f{word-spacing:4.321500px;}
.wsa2{word-spacing:4.357500px;}
.ws3b{word-spacing:4.386000px;}
.wsc{word-spacing:4.464000px;}
.ws10b{word-spacing:4.504500px;}
.ws7c{word-spacing:4.515000px;}
.ws9a{word-spacing:4.579500px;}
.ws39{word-spacing:4.644000px;}
.wsb3{word-spacing:4.672500px;}
.ws11a{word-spacing:4.680000px;}
.ws2b{word-spacing:4.708500px;}
.wsd3{word-spacing:4.725000px;}
.ws69{word-spacing:4.773000px;}
.ws93{word-spacing:4.777500px;}
.ws30{word-spacing:4.837500px;}
.ws7a{word-spacing:4.902000px;}
.ws68{word-spacing:4.966500px;}
.ws110{word-spacing:4.972500px;}
.ws2f{word-spacing:5.031000px;}
.ws1b{word-spacing:5.040000px;}
.ws53{word-spacing:5.095500px;}
.wsed{word-spacing:5.148000px;}
.ws92{word-spacing:5.160000px;}
.ws116{word-spacing:5.206500px;}
.wsc9{word-spacing:5.224500px;}
.wsb9{word-spacing:5.289000px;}
.ws8b{word-spacing:5.302500px;}
.ws91{word-spacing:5.353500px;}
.ws9c{word-spacing:5.418000px;}
.ws107{word-spacing:5.440500px;}
.wscf{word-spacing:5.482500px;}
.wsea{word-spacing:5.512500px;}
.ws25{word-spacing:5.547000px;}
.ws114{word-spacing:5.557500px;}
.ws62{word-spacing:5.611500px;}
.wsbc{word-spacing:5.617500px;}
.wsa7{word-spacing:5.676000px;}
.wsbb{word-spacing:5.722500px;}
.ws103{word-spacing:5.733000px;}
.wsc7{word-spacing:5.740500px;}
.ws100{word-spacing:5.791500px;}
.ws35{word-spacing:5.805000px;}
.wsd2{word-spacing:5.827500px;}
.ws115{word-spacing:5.850000px;}
.ws31{word-spacing:5.869500px;}
.ws2a{word-spacing:5.934000px;}
.ws106{word-spacing:5.967000px;}
.ws54{word-spacing:5.998500px;}
.wsb{word-spacing:6.000000px;}
.ws11e{word-spacing:6.037500px;}
.ws52{word-spacing:6.063000px;}
.ws104{word-spacing:6.084000px;}
.ws84{word-spacing:6.127500px;}
.wse4{word-spacing:6.195000px;}
.ws7e{word-spacing:6.247500px;}
.ws5d{word-spacing:6.256500px;}
.ws5e{word-spacing:6.321000px;}
.ws94{word-spacing:6.352500px;}
.wsd5{word-spacing:6.385500px;}
.ws90{word-spacing:6.450000px;}
.ws10c{word-spacing:6.493500px;}
.wsbd{word-spacing:6.510000px;}
.ws29{word-spacing:6.514500px;}
.ws88{word-spacing:6.562500px;}
.ws3e{word-spacing:6.579000px;}
.wsa5{word-spacing:6.643500px;}
.ws6a{word-spacing:6.708000px;}
.wsf9{word-spacing:6.727500px;}
.ws75{word-spacing:6.772500px;}
.ws108{word-spacing:6.786000px;}
.ws5a{word-spacing:6.837000px;}
.wsb0{word-spacing:6.901500px;}
.ws27{word-spacing:6.966000px;}
.ws105{word-spacing:7.020000px;}
.ws3f{word-spacing:7.030500px;}
.ws73{word-spacing:7.095000px;}
.ws77{word-spacing:7.159500px;}
.wsf5{word-spacing:7.195500px;}
.wsbf{word-spacing:7.224000px;}
.ws10e{word-spacing:7.254000px;}
.wsa6{word-spacing:7.288500px;}
.ws11c{word-spacing:7.297500px;}
.wsef{word-spacing:7.312500px;}
.ws40{word-spacing:7.353000px;}
.ws41{word-spacing:7.417500px;}
.ws4f{word-spacing:7.482000px;}
.ws3a{word-spacing:7.546500px;}
.ws4c{word-spacing:7.611000px;}
.ws4d{word-spacing:7.675500px;}
.wsd0{word-spacing:7.740000px;}
.wsce{word-spacing:7.804500px;}
.ws81{word-spacing:7.869000px;}
.ws74{word-spacing:7.933500px;}
.ws9e{word-spacing:7.998000px;}
.ws23{word-spacing:8.062500px;}
.ws9{word-spacing:10.656000px;}
.ws22{word-spacing:12.750000px;}
.wsa8{word-spacing:13.125000px;}
.ws8{word-spacing:13.344000px;}
.ws2e{word-spacing:1149.576000px;}
.ws3{word-spacing:1818.756000px;}
._10{margin-left:-25.024050px;}
._a{margin-left:-23.994000px;}
._11{margin-left:-22.123500px;}
._9{margin-left:-16.125000px;}
._4{margin-left:-15.000000px;}
._e{margin-left:-13.125000px;}
._2{margin-left:-9.324000px;}
._7{margin-left:-1.290000px;}
._5{width:1.423200px;}
._d{width:3.045000px;}
._b{width:4.200000px;}
._c{width:5.723700px;}
._8{width:6.981300px;}
._12{width:8.018700px;}
._0{width:9.072000px;}
._f{width:10.605000px;}
._1{width:11.676000px;}
._3{width:13.344000px;}
._6{width:869.585400px;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:34.125000px;}
.fs6{font-size:36.000000px;}
.fs9{font-size:38.025000px;}
.fsb{font-size:41.925000px;}
.fs2{font-size:42.000000px;}
.fsf{font-size:43.875000px;}
.fs3{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fse{font-size:48.375000px;}
.fs7{font-size:51.000000px;}
.fsd{font-size:52.500000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:58.500000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.647450px;}
.ya{bottom:109.633050px;}
.y9{bottom:121.634550px;}
.y77{bottom:124.543275px;}
.ydd{bottom:124.554525px;}
.y105{bottom:124.565775px;}
.y11c{bottom:124.577025px;}
.y201{bottom:125.295000px;}
.y225{bottom:125.608200px;}
.y50{bottom:128.520150px;}
.y8{bottom:137.883000px;}
.y76{bottom:138.941400px;}
.ycc{bottom:138.947025px;}
.ydc{bottom:138.952650px;}
.y104{bottom:138.963900px;}
.y4f{bottom:138.969525px;}
.y200{bottom:141.616500px;}
.y224{bottom:141.929700px;}
.yab{bottom:142.912650px;}
.y7{bottom:152.005500px;}
.y75{bottom:153.339525px;}
.ycb{bottom:153.345150px;}
.ydb{bottom:153.350775px;}
.y103{bottom:153.362025px;}
.y244{bottom:153.704325px;}
.y4e{bottom:157.305150px;}
.y1ff{bottom:157.896000px;}
.y223{bottom:158.251200px;}
.y74{bottom:167.737650px;}
.yca{bottom:167.743275px;}
.yda{bottom:167.748900px;}
.ybe{bottom:167.754525px;}
.y243{bottom:168.102450px;}
.y6{bottom:168.259500px;}
.yaa{bottom:171.697650px;}
.y1fe{bottom:174.217500px;}
.y222{bottom:174.572700px;}
.y5{bottom:179.442000px;}
.y1dc{bottom:179.565750px;}
.y73{bottom:182.135775px;}
.yc9{bottom:182.141400px;}
.yd9{bottom:182.147025px;}
.y242{bottom:182.500575px;}
.ya9{bottom:186.090150px;}
.y1fd{bottom:190.539000px;}
.y221{bottom:190.894200px;}
.y4{bottom:194.877000px;}
.y94{bottom:195.391275px;}
.y1ab{bottom:195.439200px;}
.y1db{bottom:195.887250px;}
.y11b{bottom:196.511400px;}
.y1be{bottom:196.517025px;}
.y72{bottom:196.533900px;}
.yc8{bottom:196.539525px;}
.y241{bottom:196.898700px;}
.ya8{bottom:200.482650px;}
.y3{bottom:206.059500px;}
.y1fc{bottom:206.860500px;}
.y220{bottom:207.215700px;}
.y4d{bottom:207.497925px;}
.y11a{bottom:210.909525px;}
.y1bd{bottom:210.915150px;}
.y71{bottom:210.932025px;}
.y240{bottom:211.296825px;}
.y1da{bottom:212.208750px;}
.y93{bottom:212.983650px;}
.y14c{bottom:213.011100px;}
.y1aa{bottom:213.031575px;}
.yc7{bottom:214.875150px;}
.y1fb{bottom:223.182000px;}
.y21f{bottom:223.537200px;}
.y4c{bottom:225.090300px;}
.y119{bottom:225.307650px;}
.y1bc{bottom:225.313275px;}
.yc6{bottom:225.318900px;}
.y102{bottom:225.324525px;}
.y23f{bottom:225.694950px;}
.y1d9{bottom:228.530250px;}
.y70{bottom:229.267650px;}
.y15f{bottom:230.574600px;}
.y92{bottom:230.576025px;}
.y14b{bottom:230.603475px;}
.y137{bottom:230.607450px;}
.y19a{bottom:230.607825px;}
.y1a9{bottom:230.623950px;}
.y17c{bottom:230.644725px;}
.y1fa{bottom:239.503500px;}
.y118{bottom:239.705775px;}
.y1bb{bottom:239.711400px;}
.yc5{bottom:239.717025px;}
.y21e{bottom:239.858700px;}
.y23e{bottom:240.093075px;}
.y4b{bottom:242.682675px;}
.y6f{bottom:243.660150px;}
.y1d8{bottom:244.851750px;}
.y15e{bottom:248.166975px;}
.y18f{bottom:248.170950px;}
.y91{bottom:248.176650px;}
.y18d{bottom:248.183325px;}
.ya7{bottom:248.187600px;}
.y14a{bottom:248.195850px;}
.y136{bottom:248.199825px;}
.y199{bottom:248.200200px;}
.y1a8{bottom:248.216325px;}
.y17b{bottom:248.237100px;}
.y117{bottom:254.103900px;}
.y1ba{bottom:254.109525px;}
.y23d{bottom:254.491200px;}
.y1f9{bottom:255.825000px;}
.y21d{bottom:256.180200px;}
.y6e{bottom:258.052650px;}
.y4a{bottom:260.275050px;}
.y1d7{bottom:261.173250px;}
.y18e{bottom:265.763325px;}
.y90{bottom:265.769025px;}
.y1a3{bottom:265.771575px;}
.y18c{bottom:265.775700px;}
.ya6{bottom:265.779975px;}
.y114{bottom:265.781400px;}
.y149{bottom:265.788225px;}
.y135{bottom:265.792200px;}
.y198{bottom:265.792575px;}
.y144{bottom:265.800450px;}
.yd8{bottom:265.808700px;}
.y17a{bottom:265.829475px;}
.yc4{bottom:268.502025px;}
.y23c{bottom:268.889325px;}
.y1f8{bottom:272.146500px;}
.yef{bottom:272.445150px;}
.y21c{bottom:272.501700px;}
.y1d6{bottom:277.494750px;}
.y2d{bottom:277.813350px;}
.y49{bottom:277.867425px;}
.y23b{bottom:283.287450px;}
.y17d{bottom:283.359975px;}
.y1a2{bottom:283.363950px;}
.y18b{bottom:283.368075px;}
.ya5{bottom:283.372350px;}
.y8f{bottom:283.373775px;}
.y101{bottom:283.376325px;}
.y148{bottom:283.380600px;}
.y134{bottom:283.384575px;}
.y197{bottom:283.384950px;}
.y143{bottom:283.392825px;}
.yd7{bottom:283.401075px;}
.y179{bottom:283.421850px;}
.yc3{bottom:286.837650px;}
.y1f7{bottom:288.468000px;}
.y21b{bottom:288.823200px;}
.y1d5{bottom:293.816250px;}
.y48{bottom:295.459800px;}
.y2c{bottom:296.941350px;}
.y23a{bottom:297.685575px;}
.y6d{bottom:300.956325px;}
.y18a{bottom:300.960450px;}
.ya4{bottom:300.964725px;}
.y8e{bottom:300.966150px;}
.y100{bottom:300.968700px;}
.y147{bottom:300.972975px;}
.y133{bottom:300.976950px;}
.y196{bottom:300.977325px;}
.ybd{bottom:300.981075px;}
.y142{bottom:300.985200px;}
.yd6{bottom:300.993450px;}
.y178{bottom:301.014225px;}
.yc2{bottom:301.230150px;}
.y1f6{bottom:304.789500px;}
.y21a{bottom:305.144700px;}
.y2b{bottom:309.685350px;}
.y1d4{bottom:310.137750px;}
.y47{bottom:313.052175px;}
.y189{bottom:318.552825px;}
.y6c{bottom:318.557100px;}
.y8d{bottom:318.558525px;}
.yff{bottom:318.561075px;}
.y146{bottom:318.565350px;}
.y132{bottom:318.569325px;}
.y195{bottom:318.569700px;}
.ybc{bottom:318.573450px;}
.y141{bottom:318.577575px;}
.yd5{bottom:318.585825px;}
.y177{bottom:318.606600px;}
.y1b9{bottom:318.639450px;}
.y239{bottom:320.877450px;}
.y1f5{bottom:321.111000px;}
.y219{bottom:321.466200px;}
.y2a{bottom:322.429350px;}
.y1d3{bottom:326.459250px;}
.y46{bottom:330.644550px;}
.y29{bottom:335.173350px;}
.y6b{bottom:336.149475px;}
.yfe{bottom:336.153450px;}
.y145{bottom:336.157725px;}
.y131{bottom:336.161700px;}
.y194{bottom:336.162075px;}
.ybb{bottom:336.165825px;}
.y113{bottom:336.167400px;}
.y140{bottom:336.169950px;}
.yd4{bottom:336.178200px;}
.y8c{bottom:336.178575px;}
.y1b4{bottom:336.186600px;}
.y176{bottom:336.198975px;}
.y188{bottom:336.223575px;}
.y1b8{bottom:336.231825px;}
.y1f4{bottom:337.432500px;}
.y218{bottom:337.787700px;}
.y1d2{bottom:342.780750px;}
.y28{bottom:347.917350px;}
.y45{bottom:348.236925px;}
.yc1{bottom:353.745825px;}
.y116{bottom:353.750100px;}
.y1f3{bottom:353.754000px;}
.y130{bottom:353.754075px;}
.y193{bottom:353.754450px;}
.yba{bottom:353.758200px;}
.y112{bottom:353.759775px;}
.y6a{bottom:353.762325px;}
.ya3{bottom:353.766450px;}
.yd3{bottom:353.770575px;}
.y8b{bottom:353.770950px;}
.y168{bottom:353.774700px;}
.y1b3{bottom:353.778975px;}
.y175{bottom:353.791350px;}
.y187{bottom:353.815950px;}
.y1b7{bottom:353.824200px;}
.y217{bottom:354.109200px;}
.y1d1{bottom:359.102250px;}
.y27{bottom:360.661350px;}
.y44{bottom:365.829300px;}
.y1f2{bottom:370.075500px;}
.y216{bottom:370.430700px;}
.y238{bottom:370.432200px;}
.y115{bottom:371.342475px;}
.y12f{bottom:371.346450px;}
.yb9{bottom:371.350575px;}
.y111{bottom:371.352150px;}
.y69{bottom:371.354700px;}
.ya2{bottom:371.358825px;}
.yd2{bottom:371.362950px;}
.y167{bottom:371.367075px;}
.y1b2{bottom:371.371350px;}
.y174{bottom:371.383725px;}
.y186{bottom:371.408325px;}
.y1b6{bottom:371.416575px;}
.y26{bottom:373.405350px;}
.y1d0{bottom:375.423750px;}
.y43{bottom:383.421675px;}
.y25{bottom:386.149350px;}
.y1f1{bottom:386.397000px;}
.y215{bottom:386.752200px;}
.y237{bottom:386.753700px;}
.y12e{bottom:388.938825px;}
.y192{bottom:388.939200px;}
.yb8{bottom:388.942950px;}
.y110{bottom:388.944525px;}
.y68{bottom:388.947075px;}
.ya1{bottom:388.951200px;}
.yd1{bottom:388.955325px;}
.y8a{bottom:388.955700px;}
.y166{bottom:388.959450px;}
.y1b1{bottom:388.963725px;}
.y173{bottom:388.976100px;}
.y185{bottom:389.000700px;}
.y1b5{bottom:389.008950px;}
.y1cf{bottom:391.745250px;}
.y24{bottom:398.893350px;}
.y42{bottom:401.014050px;}
.y1f0{bottom:402.718500px;}
.y214{bottom:403.073700px;}
.y236{bottom:403.075200px;}
.yb7{bottom:406.535325px;}
.y67{bottom:406.539450px;}
.ya0{bottom:406.543575px;}
.yd0{bottom:406.547700px;}
.y89{bottom:406.548075px;}
.y10f{bottom:406.549275px;}
.y165{bottom:406.551825px;}
.y1b0{bottom:406.556100px;}
.y172{bottom:406.568475px;}
.y155{bottom:406.580700px;}
.y184{bottom:406.593075px;}
.y12d{bottom:406.601325px;}
.y1ce{bottom:408.066750px;}
.y23{bottom:411.637350px;}
.y1ef{bottom:419.040000px;}
.y213{bottom:419.395200px;}
.y235{bottom:419.396700px;}
.y66{bottom:424.131825px;}
.y9f{bottom:424.135950px;}
.ycf{bottom:424.140075px;}
.y10e{bottom:424.141650px;}
.y164{bottom:424.144200px;}
.y1af{bottom:424.148475px;}
.yfd{bottom:424.152450px;}
.yee{bottom:424.160850px;}
.yc0{bottom:424.168950px;}
.y154{bottom:424.173075px;}
.y183{bottom:424.185450px;}
.y12c{bottom:424.193700px;}
.y22{bottom:424.381350px;}
.y1cd{bottom:424.388250px;}
.y1ee{bottom:435.361500px;}
.y212{bottom:435.716700px;}
.y234{bottom:435.718200px;}
.y41{bottom:436.198800px;}
.y21{bottom:437.125350px;}
.y1cc{bottom:440.709750px;}
.y9e{bottom:441.728325px;}
.yce{bottom:441.732450px;}
.y10d{bottom:441.734025px;}
.y13f{bottom:441.736575px;}
.y1a1{bottom:441.740850px;}
.yfc{bottom:441.744825px;}
.yed{bottom:441.753225px;}
.ybf{bottom:441.761325px;}
.y153{bottom:441.765450px;}
.y182{bottom:441.777825px;}
.y12b{bottom:441.786075px;}
.y65{bottom:441.806700px;}
.y1ed{bottom:451.683000px;}
.y211{bottom:452.038200px;}
.y233{bottom:452.039700px;}
.y1cb{bottom:457.031250px;}
.ycd{bottom:459.324825px;}
.y9d{bottom:459.328950px;}
.y1a0{bottom:459.333225px;}
.yfb{bottom:459.337200px;}
.y88{bottom:459.341325px;}
.yec{bottom:459.345600px;}
.y10c{bottom:459.345825px;}
.yb6{bottom:459.353700px;}
.y152{bottom:459.357825px;}
.y181{bottom:459.370200px;}
.y12a{bottom:459.378450px;}
.y64{bottom:459.399075px;}
.y20{bottom:462.637350px;}
.y1ec{bottom:468.004500px;}
.y210{bottom:468.359700px;}
.y232{bottom:468.361200px;}
.y1ca{bottom:473.352750px;}
.y9c{bottom:476.921325px;}
.y191{bottom:476.925600px;}
.yfa{bottom:476.929575px;}
.y87{bottom:476.933700px;}
.yeb{bottom:476.937975px;}
.y10b{bottom:476.938200px;}
.yb5{bottom:476.946075px;}
.y151{bottom:476.950200px;}
.y180{bottom:476.962575px;}
.y15d{bottom:476.966850px;}
.y129{bottom:476.970825px;}
.y1a7{bottom:476.979225px;}
.y63{bottom:476.991450px;}
.y1f{bottom:481.765350px;}
.y1eb{bottom:484.326000px;}
.y20f{bottom:484.681200px;}
.y231{bottom:484.682700px;}
.y40{bottom:488.985075px;}
.y1c9{bottom:489.674250px;}
.y1e{bottom:494.509350px;}
.y190{bottom:494.517975px;}
.yf9{bottom:494.521950px;}
.y86{bottom:494.526075px;}
.yea{bottom:494.530350px;}
.y10a{bottom:494.530575px;}
.yb4{bottom:494.538450px;}
.y9b{bottom:494.542575px;}
.y17f{bottom:494.554950px;}
.y15c{bottom:494.559225px;}
.y128{bottom:494.563200px;}
.y1a6{bottom:494.571600px;}
.y62{bottom:494.583825px;}
.y1ea{bottom:500.647500px;}
.y20e{bottom:501.002700px;}
.y230{bottom:501.004200px;}
.y3f{bottom:504.970200px;}
.y1c8{bottom:505.995750px;}
.y1d{bottom:507.253350px;}
.yf8{bottom:512.114325px;}
.y85{bottom:512.118450px;}
.ye9{bottom:512.122725px;}
.y109{bottom:512.122950px;}
.yb3{bottom:512.130825px;}
.y9a{bottom:512.134950px;}
.y1ae{bottom:512.143350px;}
.y17e{bottom:512.147325px;}
.y15b{bottom:512.151600px;}
.y127{bottom:512.155575px;}
.y1a5{bottom:512.163975px;}
.y61{bottom:512.176200px;}
.y1e9{bottom:516.969000px;}
.y20d{bottom:517.324200px;}
.y22f{bottom:517.325700px;}
.y1c{bottom:519.997350px;}
.y1c7{bottom:522.317250px;}
.y3e{bottom:529.467075px;}
.y84{bottom:529.710825px;}
.ye8{bottom:529.715100px;}
.y108{bottom:529.715325px;}
.yb2{bottom:529.723200px;}
.y99{bottom:529.727325px;}
.y1ad{bottom:529.735725px;}
.yf7{bottom:529.739700px;}
.y15a{bottom:529.743975px;}
.y126{bottom:529.747950px;}
.y1a4{bottom:529.756350px;}
.y60{bottom:529.768575px;}
.y1b{bottom:532.741350px;}
.y1e8{bottom:533.290500px;}
.y20c{bottom:533.645700px;}
.y22e{bottom:533.647200px;}
.y1c6{bottom:538.638750px;}
.y3d{bottom:545.452200px;}
.y1a{bottom:545.485350px;}
.ye7{bottom:547.307475px;}
.yb1{bottom:547.315575px;}
.y98{bottom:547.319700px;}
.y1ac{bottom:547.328100px;}
.yf6{bottom:547.332075px;}
.y159{bottom:547.336350px;}
.y125{bottom:547.340325px;}
.y83{bottom:547.348725px;}
.y163{bottom:547.352700px;}
.y5f{bottom:547.360950px;}
.y1e7{bottom:549.612000px;}
.y20b{bottom:549.967200px;}
.y22d{bottom:549.968700px;}
.y1c5{bottom:554.960250px;}
.y19{bottom:558.229350px;}
.y3c{bottom:561.437325px;}
.y107{bottom:564.900075px;}
.yb0{bottom:564.907950px;}
.y97{bottom:564.912075px;}
.ye6{bottom:564.920475px;}
.yf5{bottom:564.924450px;}
.y158{bottom:564.928725px;}
.y124{bottom:564.932700px;}
.y19f{bottom:564.936825px;}
.y82{bottom:564.941100px;}
.y162{bottom:564.945075px;}
.y171{bottom:564.949200px;}
.y5e{bottom:564.953325px;}
.y1e6{bottom:565.933500px;}
.y20a{bottom:566.288700px;}
.y22c{bottom:566.290200px;}
.y18{bottom:570.979350px;}
.y1c4{bottom:571.281750px;}
.y3b{bottom:577.422450px;}
.y1e5{bottom:582.255000px;}
.y106{bottom:582.492450px;}
.yaf{bottom:582.500325px;}
.y96{bottom:582.504450px;}
.ye5{bottom:582.512850px;}
.yf4{bottom:582.516825px;}
.y157{bottom:582.521100px;}
.y123{bottom:582.525075px;}
.y19e{bottom:582.529200px;}
.y81{bottom:582.533475px;}
.y161{bottom:582.537450px;}
.y170{bottom:582.541575px;}
.y5d{bottom:582.545700px;}
.y209{bottom:582.610200px;}
.y22b{bottom:582.611700px;}
.y17{bottom:583.742100px;}
.y1c3{bottom:587.603250px;}
.y16{bottom:596.486100px;}
.y1e4{bottom:598.575000px;}
.y208{bottom:598.931700px;}
.y22a{bottom:598.933200px;}
.y95{bottom:600.096825px;}
.yae{bottom:600.105225px;}
.yf3{bottom:600.109200px;}
.y156{bottom:600.113475px;}
.y122{bottom:600.117450px;}
.y19d{bottom:600.121575px;}
.y80{bottom:600.125850px;}
.y160{bottom:600.129825px;}
.y16f{bottom:600.133950px;}
.y5c{bottom:600.138075px;}
.y3a{bottom:601.919325px;}
.y1c2{bottom:603.924750px;}
.y15{bottom:609.230100px;}
.y1e3{bottom:614.896500px;}
.y207{bottom:615.253200px;}
.y229{bottom:615.254700px;}
.yad{bottom:617.697600px;}
.yf2{bottom:617.701575px;}
.y150{bottom:617.705850px;}
.y121{bottom:617.709825px;}
.y19c{bottom:617.713950px;}
.y7f{bottom:617.718225px;}
.y13e{bottom:617.722200px;}
.y16e{bottom:617.726325px;}
.y5b{bottom:617.730450px;}
.y39{bottom:617.904450px;}
.y1c1{bottom:620.246250px;}
.y14{bottom:621.974100px;}
.y206{bottom:631.574700px;}
.y228{bottom:631.576200px;}
.y38{bottom:633.889575px;}
.yac{bottom:635.289975px;}
.yf1{bottom:635.293950px;}
.y14f{bottom:635.298225px;}
.y120{bottom:635.302200px;}
.y19b{bottom:635.306325px;}
.y7e{bottom:635.310600px;}
.y13d{bottom:635.314575px;}
.y16d{bottom:635.318700px;}
.y5a{bottom:635.322825px;}
.y1c0{bottom:636.567750px;}
.y205{bottom:647.896200px;}
.y227{bottom:647.897700px;}
.y1e2{bottom:648.811200px;}
.y37{bottom:649.874700px;}
.yf0{bottom:652.886325px;}
.y14e{bottom:652.890600px;}
.y11f{bottom:652.894575px;}
.ye4{bottom:652.898700px;}
.y7d{bottom:652.902975px;}
.y13c{bottom:652.906950px;}
.y16c{bottom:652.911075px;}
.y59{bottom:652.915200px;}
.y226{bottom:664.207200px;}
.y204{bottom:664.217700px;}
.y14d{bottom:670.482975px;}
.y11e{bottom:670.486950px;}
.y1bf{bottom:670.487325px;}
.ye3{bottom:670.491075px;}
.y7c{bottom:670.495350px;}
.y13b{bottom:670.499325px;}
.y16b{bottom:670.503450px;}
.y58{bottom:670.507575px;}
.y36{bottom:674.371575px;}
.y13{bottom:678.710100px;}
.y203{bottom:680.528700px;}
.y11d{bottom:688.079325px;}
.ye2{bottom:688.083450px;}
.y7b{bottom:688.087725px;}
.y13a{bottom:688.091700px;}
.y16a{bottom:688.095825px;}
.y57{bottom:688.099950px;}
.y35{bottom:690.356700px;}
.y12{bottom:693.112950px;}
.y202{bottom:696.850200px;}
.ye1{bottom:705.675825px;}
.y7a{bottom:705.680100px;}
.y139{bottom:705.684075px;}
.y169{bottom:705.688200px;}
.y56{bottom:705.692325px;}
.y34{bottom:706.341825px;}
.y1e1{bottom:713.171700px;}
.y11{bottom:717.082950px;}
.y33{bottom:722.326950px;}
.y79{bottom:723.272475px;}
.y138{bottom:723.276450px;}
.ye0{bottom:723.280575px;}
.y55{bottom:723.284700px;}
.y1e0{bottom:729.493200px;}
.y10{bottom:736.267950px;}
.y78{bottom:740.868825px;}
.ydf{bottom:740.872950px;}
.y54{bottom:740.877075px;}
.y1df{bottom:745.814700px;}
.y32{bottom:746.823825px;}
.yde{bottom:758.465325px;}
.y53{bottom:758.469450px;}
.y1de{bottom:762.136200px;}
.y31{bottom:762.808950px;}
.yf{bottom:775.312950px;}
.y52{bottom:776.061825px;}
.y1dd{bottom:778.457700px;}
.y30{bottom:778.794075px;}
.y51{bottom:793.654200px;}
.ye{bottom:794.497950px;}
.y2f{bottom:794.779200px;}
.y2e{bottom:832.327200px;}
.yb{bottom:835.327800px;}
.y2{bottom:855.702900px;}
.yd{bottom:867.883800px;}
.yc{bottom:881.383800px;}
.h6{height:30.912000px;}
.h4{height:31.206000px;}
.h14{height:31.341064px;}
.h5{height:33.435000px;}
.h8{height:35.328000px;}
.h1a{height:37.957500px;}
.h1c{height:38.692500px;}
.he{height:42.539062px;}
.hc{height:43.054688px;}
.h7{height:44.496000px;}
.hd{height:44.671875px;}
.hf{height:45.745605px;}
.h15{height:47.091064px;}
.h1b{height:48.667500px;}
.h2{height:51.127441px;}
.h16{height:51.844482px;}
.h11{height:52.470800px;}
.h10{height:52.472900px;}
.h17{height:52.478900px;}
.h18{height:52.514900px;}
.h19{height:52.520900px;}
.ha{height:53.173828px;}
.hb{height:53.818359px;}
.h9{height:55.839844px;}
.h13{height:57.854736px;}
.h12{height:60.027832px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xd{left:93.543300px;}
.x1{left:107.148450px;}
.x1e{left:113.210250px;}
.x1c{left:114.803100px;}
.x1b{left:119.053050px;}
.x20{left:123.305175px;}
.x1f{left:126.816450px;}
.x1d{left:128.409450px;}
.x3{left:132.664650px;}
.x21{left:136.911525px;}
.x4{left:167.305950px;}
.x5{left:172.930950px;}
.x8{left:210.883200px;}
.x17{left:226.719150px;}
.xa{left:233.008200px;}
.x11{left:276.707400px;}
.x14{left:282.762150px;}
.x19{left:299.493150px;}
.x13{left:305.153025px;}
.x9{left:315.103200px;}
.x7{left:322.543200px;}
.xf{left:328.275150px;}
.x1a{left:329.576775px;}
.x12{left:330.717525px;}
.x15{left:333.949650px;}
.x16{left:341.686275px;}
.x10{left:355.506900px;}
.x18{left:382.358400px;}
.x6{left:415.535250px;}
.xc{left:436.818450px;}
.xb{left:446.818200px;}
.xe{left:460.605600px;}
.x2{left:520.665750px;}
@media print{
.v4{vertical-align:-17.200000pt;}
.v3{vertical-align:-14.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.598133pt;}
.v2{vertical-align:17.015733pt;}
.ls5a{letter-spacing:-1.040000pt;}
.ls3c{letter-spacing:-0.933333pt;}
.ls3b{letter-spacing:-0.606667pt;}
.ls12{letter-spacing:-0.573333pt;}
.ls4c{letter-spacing:-0.520000pt;}
.ls30{letter-spacing:-0.466667pt;}
.ls5{letter-spacing:-0.373333pt;}
.ls2f{letter-spacing:-0.303333pt;}
.ls2d{letter-spacing:-0.286667pt;}
.ls59{letter-spacing:-0.208000pt;}
.ls2e{letter-spacing:-0.186333pt;}
.ls2c{letter-spacing:-0.114667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000267pt;}
.ls53{letter-spacing:0.052000pt;}
.lsd{letter-spacing:0.057333pt;}
.ls3e{letter-spacing:0.060667pt;}
.ls39{letter-spacing:0.091000pt;}
.ls3d{letter-spacing:0.093333pt;}
.ls4d{letter-spacing:0.104000pt;}
.ls8{letter-spacing:0.114667pt;}
.ls32{letter-spacing:0.140000pt;}
.ls4f{letter-spacing:0.156000pt;}
.ls6{letter-spacing:0.172000pt;}
.ls16{letter-spacing:0.185867pt;}
.ls19{letter-spacing:0.186333pt;}
.ls26{letter-spacing:0.186667pt;}
.ls52{letter-spacing:0.208000pt;}
.ls1c{letter-spacing:0.229333pt;}
.ls1e{letter-spacing:0.233333pt;}
.ls1d{letter-spacing:0.258000pt;}
.ls5d{letter-spacing:0.260000pt;}
.ls44{letter-spacing:0.273000pt;}
.lse{letter-spacing:0.286667pt;}
.ls1b{letter-spacing:0.298133pt;}
.ls36{letter-spacing:0.303333pt;}
.ls57{letter-spacing:0.312000pt;}
.ls10{letter-spacing:0.319733pt;}
.ls33{letter-spacing:0.326667pt;}
.ls14{letter-spacing:0.333600pt;}
.ls1a{letter-spacing:0.344000pt;}
.ls43{letter-spacing:0.364000pt;}
.ls29{letter-spacing:0.373333pt;}
.ls22{letter-spacing:0.401333pt;}
.ls51{letter-spacing:0.416000pt;}
.ls42{letter-spacing:0.420000pt;}
.ls27{letter-spacing:0.424667pt;}
.ls2{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.432000pt;}
.ls45{letter-spacing:0.447200pt;}
.ls15{letter-spacing:0.458667pt;}
.ls34{letter-spacing:0.466667pt;}
.ls50{letter-spacing:0.468000pt;}
.ls3a{letter-spacing:0.484467pt;}
.ls40{letter-spacing:0.485333pt;}
.ls1{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.516000pt;}
.ls5e{letter-spacing:0.520000pt;}
.ls35{letter-spacing:0.559000pt;}
.ls41{letter-spacing:0.560000pt;}
.ls5b{letter-spacing:0.572000pt;}
.ls17{letter-spacing:0.573333pt;}
.ls18{letter-spacing:0.630667pt;}
.ls25{letter-spacing:0.653333pt;}
.ls20{letter-spacing:0.670800pt;}
.ls5c{letter-spacing:0.676000pt;}
.lsb{letter-spacing:0.688000pt;}
.ls2b{letter-spacing:0.728000pt;}
.ls13{letter-spacing:0.745333pt;}
.ls3f{letter-spacing:0.746667pt;}
.ls54{letter-spacing:0.780000pt;}
.ls9{letter-spacing:0.802667pt;}
.ls56{letter-spacing:0.832000pt;}
.ls11{letter-spacing:0.860000pt;}
.ls31{letter-spacing:0.917333pt;}
.ls47{letter-spacing:0.936000pt;}
.ls46{letter-spacing:0.974667pt;}
.lsc{letter-spacing:1.032000pt;}
.ls21{letter-spacing:1.089333pt;}
.ls28{letter-spacing:1.120000pt;}
.ls58{letter-spacing:1.144000pt;}
.ls37{letter-spacing:1.318667pt;}
.ls24{letter-spacing:1.376000pt;}
.ls23{letter-spacing:1.490667pt;}
.ls38{letter-spacing:1.547333pt;}
.ls49{letter-spacing:1.612000pt;}
.ls48{letter-spacing:1.872000pt;}
.ls4a{letter-spacing:2.028000pt;}
.ls4b{letter-spacing:2.132000pt;}
.ls1f{letter-spacing:2.293333pt;}
.ls4e{letter-spacing:4.836000pt;}
.ls2a{letter-spacing:6.066667pt;}
.ls55{letter-spacing:7.020000pt;}
.ls0{letter-spacing:11.120000pt;}
.lsa{letter-spacing:11.666667pt;}
.wse2{word-spacing:-15.021333pt;}
.ws49{word-spacing:-14.849333pt;}
.ws96{word-spacing:-14.620000pt;}
.ws7f{word-spacing:-14.333333pt;}
.wseb{word-spacing:-13.000000pt;}
.wsec{word-spacing:-12.480000pt;}
.wsb6{word-spacing:-11.993333pt;}
.wsb7{word-spacing:-11.853333pt;}
.ws4b{word-spacing:-11.666667pt;}
.ws2d{word-spacing:-11.333333pt;}
.ws48{word-spacing:-10.750000pt;}
.ws80{word-spacing:-9.987467pt;}
.wsb5{word-spacing:-9.875667pt;}
.wsc4{word-spacing:-9.801133pt;}
.wse3{word-spacing:-9.763867pt;}
.wsfd{word-spacing:-9.750000pt;}
.ws61{word-spacing:-9.614800pt;}
.ws60{word-spacing:-9.503000pt;}
.ws21{word-spacing:-9.316667pt;}
.wsa3{word-spacing:-9.130333pt;}
.ws20{word-spacing:-8.450000pt;}
.ws2{word-spacing:-8.432000pt;}
.ws97{word-spacing:-8.311333pt;}
.ws0{word-spacing:-8.288000pt;}
.wsd8{word-spacing:-8.068667pt;}
.ws8e{word-spacing:-8.008000pt;}
.ws1{word-spacing:-8.000000pt;}
.wsdc{word-spacing:-7.947333pt;}
.wsb8{word-spacing:-7.886667pt;}
.wsdd{word-spacing:-7.856333pt;}
.wsc0{word-spacing:-7.674333pt;}
.wsd4{word-spacing:-7.644000pt;}
.ws4a{word-spacing:-7.583333pt;}
.wsa4{word-spacing:-7.280000pt;}
.wsc6{word-spacing:-6.976667pt;}
.wsf6{word-spacing:-2.132000pt;}
.wsf1{word-spacing:-2.028000pt;}
.wsee{word-spacing:-1.612000pt;}
.wsf0{word-spacing:-0.936000pt;}
.ws10f{word-spacing:-0.832000pt;}
.wsdb{word-spacing:-0.746667pt;}
.ws118{word-spacing:-0.676000pt;}
.wsdf{word-spacing:-0.560000pt;}
.wsa{word-spacing:-0.512000pt;}
.ws16{word-spacing:-0.426667pt;}
.wsa1{word-spacing:-0.373333pt;}
.ws89{word-spacing:-0.233333pt;}
.ws95{word-spacing:-0.186667pt;}
.ws10a{word-spacing:-0.156000pt;}
.wsda{word-spacing:-0.140000pt;}
.ws111{word-spacing:-0.039000pt;}
.ws4{word-spacing:0.000000pt;}
.ws55{word-spacing:0.057333pt;}
.ws7d{word-spacing:0.093333pt;}
.ws72{word-spacing:0.172000pt;}
.ws43{word-spacing:0.186667pt;}
.wsd9{word-spacing:0.229333pt;}
.ws44{word-spacing:0.233333pt;}
.ws1f{word-spacing:0.256000pt;}
.ws76{word-spacing:0.286667pt;}
.ws98{word-spacing:0.344000pt;}
.ws7{word-spacing:0.373333pt;}
.ws6b{word-spacing:0.401333pt;}
.ws113{word-spacing:0.416000pt;}
.wsc5{word-spacing:0.458667pt;}
.wsab{word-spacing:0.466667pt;}
.ws19{word-spacing:0.469333pt;}
.wse7{word-spacing:0.513333pt;}
.wsb2{word-spacing:0.516000pt;}
.wsfc{word-spacing:0.520000pt;}
.ws11f{word-spacing:0.560000pt;}
.ws102{word-spacing:0.572000pt;}
.ws57{word-spacing:0.573333pt;}
.ws67{word-spacing:0.630667pt;}
.wsf3{word-spacing:0.676000pt;}
.ws3d{word-spacing:0.688000pt;}
.wsfb{word-spacing:0.728000pt;}
.ws9d{word-spacing:0.745333pt;}
.wsd7{word-spacing:0.746667pt;}
.ws42{word-spacing:0.793333pt;}
.wsb1{word-spacing:0.802667pt;}
.ws14{word-spacing:0.810667pt;}
.ws8c{word-spacing:0.840000pt;}
.wsaf{word-spacing:0.860000pt;}
.wsc3{word-spacing:0.886667pt;}
.ws26{word-spacing:0.917333pt;}
.ws2c{word-spacing:0.933333pt;}
.wsd6{word-spacing:0.974667pt;}
.ws11d{word-spacing:0.980000pt;}
.ws15{word-spacing:1.024000pt;}
.ws85{word-spacing:1.032000pt;}
.ws109{word-spacing:1.040000pt;}
.ws13{word-spacing:1.066667pt;}
.wse5{word-spacing:1.089333pt;}
.ws1c{word-spacing:1.109333pt;}
.ws82{word-spacing:1.146667pt;}
.ws6{word-spacing:1.194667pt;}
.wsc8{word-spacing:1.204000pt;}
.ws1a{word-spacing:1.237333pt;}
.wsf2{word-spacing:1.248000pt;}
.wsc1{word-spacing:1.261333pt;}
.ws10d{word-spacing:1.300000pt;}
.ws45{word-spacing:1.306667pt;}
.ws83{word-spacing:1.318667pt;}
.ws12{word-spacing:1.322667pt;}
.ws28{word-spacing:1.376000pt;}
.wsfe{word-spacing:1.404000pt;}
.wsd1{word-spacing:1.433333pt;}
.ws9b{word-spacing:1.490667pt;}
.ws1d{word-spacing:1.536000pt;}
.ws86{word-spacing:1.540000pt;}
.wsde{word-spacing:1.548000pt;}
.ws119{word-spacing:1.560000pt;}
.ws47{word-spacing:1.586667pt;}
.ws3c{word-spacing:1.605333pt;}
.ws32{word-spacing:1.662667pt;}
.wscb{word-spacing:1.680000pt;}
.ws33{word-spacing:1.720000pt;}
.ws17{word-spacing:1.749333pt;}
.wsa9{word-spacing:1.773333pt;}
.ws7b{word-spacing:1.777333pt;}
.wse1{word-spacing:1.820000pt;}
.wse{word-spacing:1.834667pt;}
.ws79{word-spacing:1.892000pt;}
.ws65{word-spacing:1.949333pt;}
.ws18{word-spacing:1.962667pt;}
.ws66{word-spacing:2.006667pt;}
.wsc2{word-spacing:2.064000pt;}
.ws112{word-spacing:2.080000pt;}
.ws10{word-spacing:2.090667pt;}
.ws5b{word-spacing:2.121333pt;}
.ws1e{word-spacing:2.133333pt;}
.wsca{word-spacing:2.146667pt;}
.wsbe{word-spacing:2.178667pt;}
.wse6{word-spacing:2.236000pt;}
.wsb4{word-spacing:2.240000pt;}
.ws8d{word-spacing:2.286667pt;}
.ws9f{word-spacing:2.293333pt;}
.ws5{word-spacing:2.314667pt;}
.ws99{word-spacing:2.350667pt;}
.ws38{word-spacing:2.408000pt;}
.wscd{word-spacing:2.465333pt;}
.wsd{word-spacing:2.517333pt;}
.wscc{word-spacing:2.520000pt;}
.ws5c{word-spacing:2.522667pt;}
.ws58{word-spacing:2.580000pt;}
.ws101{word-spacing:2.600000pt;}
.wsac{word-spacing:2.613333pt;}
.ws71{word-spacing:2.637333pt;}
.wsf4{word-spacing:2.652000pt;}
.wsaa{word-spacing:2.660000pt;}
.ws56{word-spacing:2.694667pt;}
.ws46{word-spacing:2.706667pt;}
.wsad{word-spacing:2.752000pt;}
.wsf8{word-spacing:2.756000pt;}
.ws59{word-spacing:2.809333pt;}
.ws4e{word-spacing:2.866667pt;}
.ws24{word-spacing:2.924000pt;}
.wsfa{word-spacing:2.964000pt;}
.ws6c{word-spacing:2.981333pt;}
.ws11b{word-spacing:3.016000pt;}
.ws78{word-spacing:3.038667pt;}
.wsae{word-spacing:3.096000pt;}
.wsba{word-spacing:3.153333pt;}
.ws11{word-spacing:3.157333pt;}
.ws117{word-spacing:3.172000pt;}
.ws6d{word-spacing:3.210667pt;}
.wsf7{word-spacing:3.224000pt;}
.ws64{word-spacing:3.268000pt;}
.wsa0{word-spacing:3.313333pt;}
.ws50{word-spacing:3.325333pt;}
.wse8{word-spacing:3.360000pt;}
.ws70{word-spacing:3.382667pt;}
.wsff{word-spacing:3.432000pt;}
.ws37{word-spacing:3.440000pt;}
.wsf{word-spacing:3.456000pt;}
.ws51{word-spacing:3.497333pt;}
.wse0{word-spacing:3.546667pt;}
.ws6f{word-spacing:3.554667pt;}
.ws8a{word-spacing:3.593333pt;}
.ws36{word-spacing:3.612000pt;}
.ws87{word-spacing:3.640000pt;}
.ws34{word-spacing:3.669333pt;}
.ws6e{word-spacing:3.726667pt;}
.ws5f{word-spacing:3.733333pt;}
.ws63{word-spacing:3.784000pt;}
.wse9{word-spacing:3.826667pt;}
.ws8f{word-spacing:3.841333pt;}
.wsa2{word-spacing:3.873333pt;}
.ws3b{word-spacing:3.898667pt;}
.wsc{word-spacing:3.968000pt;}
.ws10b{word-spacing:4.004000pt;}
.ws7c{word-spacing:4.013333pt;}
.ws9a{word-spacing:4.070667pt;}
.ws39{word-spacing:4.128000pt;}
.wsb3{word-spacing:4.153333pt;}
.ws11a{word-spacing:4.160000pt;}
.ws2b{word-spacing:4.185333pt;}
.wsd3{word-spacing:4.200000pt;}
.ws69{word-spacing:4.242667pt;}
.ws93{word-spacing:4.246667pt;}
.ws30{word-spacing:4.300000pt;}
.ws7a{word-spacing:4.357333pt;}
.ws68{word-spacing:4.414667pt;}
.ws110{word-spacing:4.420000pt;}
.ws2f{word-spacing:4.472000pt;}
.ws1b{word-spacing:4.480000pt;}
.ws53{word-spacing:4.529333pt;}
.wsed{word-spacing:4.576000pt;}
.ws92{word-spacing:4.586667pt;}
.ws116{word-spacing:4.628000pt;}
.wsc9{word-spacing:4.644000pt;}
.wsb9{word-spacing:4.701333pt;}
.ws8b{word-spacing:4.713333pt;}
.ws91{word-spacing:4.758667pt;}
.ws9c{word-spacing:4.816000pt;}
.ws107{word-spacing:4.836000pt;}
.wscf{word-spacing:4.873333pt;}
.wsea{word-spacing:4.900000pt;}
.ws25{word-spacing:4.930667pt;}
.ws114{word-spacing:4.940000pt;}
.ws62{word-spacing:4.988000pt;}
.wsbc{word-spacing:4.993333pt;}
.wsa7{word-spacing:5.045333pt;}
.wsbb{word-spacing:5.086667pt;}
.ws103{word-spacing:5.096000pt;}
.wsc7{word-spacing:5.102667pt;}
.ws100{word-spacing:5.148000pt;}
.ws35{word-spacing:5.160000pt;}
.wsd2{word-spacing:5.180000pt;}
.ws115{word-spacing:5.200000pt;}
.ws31{word-spacing:5.217333pt;}
.ws2a{word-spacing:5.274667pt;}
.ws106{word-spacing:5.304000pt;}
.ws54{word-spacing:5.332000pt;}
.wsb{word-spacing:5.333333pt;}
.ws11e{word-spacing:5.366667pt;}
.ws52{word-spacing:5.389333pt;}
.ws104{word-spacing:5.408000pt;}
.ws84{word-spacing:5.446667pt;}
.wse4{word-spacing:5.506667pt;}
.ws7e{word-spacing:5.553333pt;}
.ws5d{word-spacing:5.561333pt;}
.ws5e{word-spacing:5.618667pt;}
.ws94{word-spacing:5.646667pt;}
.wsd5{word-spacing:5.676000pt;}
.ws90{word-spacing:5.733333pt;}
.ws10c{word-spacing:5.772000pt;}
.wsbd{word-spacing:5.786667pt;}
.ws29{word-spacing:5.790667pt;}
.ws88{word-spacing:5.833333pt;}
.ws3e{word-spacing:5.848000pt;}
.wsa5{word-spacing:5.905333pt;}
.ws6a{word-spacing:5.962667pt;}
.wsf9{word-spacing:5.980000pt;}
.ws75{word-spacing:6.020000pt;}
.ws108{word-spacing:6.032000pt;}
.ws5a{word-spacing:6.077333pt;}
.wsb0{word-spacing:6.134667pt;}
.ws27{word-spacing:6.192000pt;}
.ws105{word-spacing:6.240000pt;}
.ws3f{word-spacing:6.249333pt;}
.ws73{word-spacing:6.306667pt;}
.ws77{word-spacing:6.364000pt;}
.wsf5{word-spacing:6.396000pt;}
.wsbf{word-spacing:6.421333pt;}
.ws10e{word-spacing:6.448000pt;}
.wsa6{word-spacing:6.478667pt;}
.ws11c{word-spacing:6.486667pt;}
.wsef{word-spacing:6.500000pt;}
.ws40{word-spacing:6.536000pt;}
.ws41{word-spacing:6.593333pt;}
.ws4f{word-spacing:6.650667pt;}
.ws3a{word-spacing:6.708000pt;}
.ws4c{word-spacing:6.765333pt;}
.ws4d{word-spacing:6.822667pt;}
.wsd0{word-spacing:6.880000pt;}
.wsce{word-spacing:6.937333pt;}
.ws81{word-spacing:6.994667pt;}
.ws74{word-spacing:7.052000pt;}
.ws9e{word-spacing:7.109333pt;}
.ws23{word-spacing:7.166667pt;}
.ws9{word-spacing:9.472000pt;}
.ws22{word-spacing:11.333333pt;}
.wsa8{word-spacing:11.666667pt;}
.ws8{word-spacing:11.861333pt;}
.ws2e{word-spacing:1021.845333pt;}
.ws3{word-spacing:1616.672000pt;}
._10{margin-left:-22.243600pt;}
._a{margin-left:-21.328000pt;}
._11{margin-left:-19.665333pt;}
._9{margin-left:-14.333333pt;}
._4{margin-left:-13.333333pt;}
._e{margin-left:-11.666667pt;}
._2{margin-left:-8.288000pt;}
._7{margin-left:-1.146667pt;}
._5{width:1.265067pt;}
._d{width:2.706667pt;}
._b{width:3.733333pt;}
._c{width:5.087733pt;}
._8{width:6.205600pt;}
._12{width:7.127733pt;}
._0{width:8.064000pt;}
._f{width:9.426667pt;}
._1{width:10.378667pt;}
._3{width:11.861333pt;}
._6{width:772.964800pt;}
.fsc{font-size:30.333333pt;}
.fs6{font-size:32.000000pt;}
.fs9{font-size:33.800000pt;}
.fsb{font-size:37.266667pt;}
.fs2{font-size:37.333333pt;}
.fsf{font-size:39.000000pt;}
.fs3{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fse{font-size:43.000000pt;}
.fs7{font-size:45.333333pt;}
.fsd{font-size:46.666667pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:52.000000pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.131067pt;}
.ya{bottom:97.451600pt;}
.y9{bottom:108.119600pt;}
.y77{bottom:110.705133pt;}
.ydd{bottom:110.715133pt;}
.y105{bottom:110.725133pt;}
.y11c{bottom:110.735133pt;}
.y201{bottom:111.373333pt;}
.y225{bottom:111.651733pt;}
.y50{bottom:114.240133pt;}
.y8{bottom:122.562667pt;}
.y76{bottom:123.503467pt;}
.ycc{bottom:123.508467pt;}
.ydc{bottom:123.513467pt;}
.y104{bottom:123.523467pt;}
.y4f{bottom:123.528467pt;}
.y200{bottom:125.881333pt;}
.y224{bottom:126.159733pt;}
.yab{bottom:127.033467pt;}
.y7{bottom:135.116000pt;}
.y75{bottom:136.301800pt;}
.ycb{bottom:136.306800pt;}
.ydb{bottom:136.311800pt;}
.y103{bottom:136.321800pt;}
.y244{bottom:136.626067pt;}
.y4e{bottom:139.826800pt;}
.y1ff{bottom:140.352000pt;}
.y223{bottom:140.667733pt;}
.y74{bottom:149.100133pt;}
.yca{bottom:149.105133pt;}
.yda{bottom:149.110133pt;}
.ybe{bottom:149.115133pt;}
.y243{bottom:149.424400pt;}
.y6{bottom:149.564000pt;}
.yaa{bottom:152.620133pt;}
.y1fe{bottom:154.860000pt;}
.y222{bottom:155.175733pt;}
.y5{bottom:159.504000pt;}
.y1dc{bottom:159.614000pt;}
.y73{bottom:161.898467pt;}
.yc9{bottom:161.903467pt;}
.yd9{bottom:161.908467pt;}
.y242{bottom:162.222733pt;}
.ya9{bottom:165.413467pt;}
.y1fd{bottom:169.368000pt;}
.y221{bottom:169.683733pt;}
.y4{bottom:173.224000pt;}
.y94{bottom:173.681133pt;}
.y1ab{bottom:173.723733pt;}
.y1db{bottom:174.122000pt;}
.y11b{bottom:174.676800pt;}
.y1be{bottom:174.681800pt;}
.y72{bottom:174.696800pt;}
.yc8{bottom:174.701800pt;}
.y241{bottom:175.021067pt;}
.ya8{bottom:178.206800pt;}
.y3{bottom:183.164000pt;}
.y1fc{bottom:183.876000pt;}
.y220{bottom:184.191733pt;}
.y4d{bottom:184.442600pt;}
.y11a{bottom:187.475133pt;}
.y1bd{bottom:187.480133pt;}
.y71{bottom:187.495133pt;}
.y240{bottom:187.819400pt;}
.y1da{bottom:188.630000pt;}
.y93{bottom:189.318800pt;}
.y14c{bottom:189.343200pt;}
.y1aa{bottom:189.361400pt;}
.yc7{bottom:191.000133pt;}
.y1fb{bottom:198.384000pt;}
.y21f{bottom:198.699733pt;}
.y4c{bottom:200.080267pt;}
.y119{bottom:200.273467pt;}
.y1bc{bottom:200.278467pt;}
.yc6{bottom:200.283467pt;}
.y102{bottom:200.288467pt;}
.y23f{bottom:200.617733pt;}
.y1d9{bottom:203.138000pt;}
.y70{bottom:203.793467pt;}
.y15f{bottom:204.955200pt;}
.y92{bottom:204.956467pt;}
.y14b{bottom:204.980867pt;}
.y137{bottom:204.984400pt;}
.y19a{bottom:204.984733pt;}
.y1a9{bottom:204.999067pt;}
.y17c{bottom:205.017533pt;}
.y1fa{bottom:212.892000pt;}
.y118{bottom:213.071800pt;}
.y1bb{bottom:213.076800pt;}
.yc5{bottom:213.081800pt;}
.y21e{bottom:213.207733pt;}
.y23e{bottom:213.416067pt;}
.y4b{bottom:215.717933pt;}
.y6f{bottom:216.586800pt;}
.y1d8{bottom:217.646000pt;}
.y15e{bottom:220.592867pt;}
.y18f{bottom:220.596400pt;}
.y91{bottom:220.601467pt;}
.y18d{bottom:220.607400pt;}
.ya7{bottom:220.611200pt;}
.y14a{bottom:220.618533pt;}
.y136{bottom:220.622067pt;}
.y199{bottom:220.622400pt;}
.y1a8{bottom:220.636733pt;}
.y17b{bottom:220.655200pt;}
.y117{bottom:225.870133pt;}
.y1ba{bottom:225.875133pt;}
.y23d{bottom:226.214400pt;}
.y1f9{bottom:227.400000pt;}
.y21d{bottom:227.715733pt;}
.y6e{bottom:229.380133pt;}
.y4a{bottom:231.355600pt;}
.y1d7{bottom:232.154000pt;}
.y18e{bottom:236.234067pt;}
.y90{bottom:236.239133pt;}
.y1a3{bottom:236.241400pt;}
.y18c{bottom:236.245067pt;}
.ya6{bottom:236.248867pt;}
.y114{bottom:236.250133pt;}
.y149{bottom:236.256200pt;}
.y135{bottom:236.259733pt;}
.y198{bottom:236.260067pt;}
.y144{bottom:236.267067pt;}
.yd8{bottom:236.274400pt;}
.y17a{bottom:236.292867pt;}
.yc4{bottom:238.668467pt;}
.y23c{bottom:239.012733pt;}
.y1f8{bottom:241.908000pt;}
.yef{bottom:242.173467pt;}
.y21c{bottom:242.223733pt;}
.y1d6{bottom:246.662000pt;}
.y2d{bottom:246.945200pt;}
.y49{bottom:246.993267pt;}
.y23b{bottom:251.811067pt;}
.y17d{bottom:251.875533pt;}
.y1a2{bottom:251.879067pt;}
.y18b{bottom:251.882733pt;}
.ya5{bottom:251.886533pt;}
.y8f{bottom:251.887800pt;}
.y101{bottom:251.890067pt;}
.y148{bottom:251.893867pt;}
.y134{bottom:251.897400pt;}
.y197{bottom:251.897733pt;}
.y143{bottom:251.904733pt;}
.yd7{bottom:251.912067pt;}
.y179{bottom:251.930533pt;}
.yc3{bottom:254.966800pt;}
.y1f7{bottom:256.416000pt;}
.y21b{bottom:256.731733pt;}
.y1d5{bottom:261.170000pt;}
.y48{bottom:262.630933pt;}
.y2c{bottom:263.947867pt;}
.y23a{bottom:264.609400pt;}
.y6d{bottom:267.516733pt;}
.y18a{bottom:267.520400pt;}
.ya4{bottom:267.524200pt;}
.y8e{bottom:267.525467pt;}
.y100{bottom:267.527733pt;}
.y147{bottom:267.531533pt;}
.y133{bottom:267.535067pt;}
.y196{bottom:267.535400pt;}
.ybd{bottom:267.538733pt;}
.y142{bottom:267.542400pt;}
.yd6{bottom:267.549733pt;}
.y178{bottom:267.568200pt;}
.yc2{bottom:267.760133pt;}
.y1f6{bottom:270.924000pt;}
.y21a{bottom:271.239733pt;}
.y2b{bottom:275.275867pt;}
.y1d4{bottom:275.678000pt;}
.y47{bottom:278.268600pt;}
.y189{bottom:283.158067pt;}
.y6c{bottom:283.161867pt;}
.y8d{bottom:283.163133pt;}
.yff{bottom:283.165400pt;}
.y146{bottom:283.169200pt;}
.y132{bottom:283.172733pt;}
.y195{bottom:283.173067pt;}
.ybc{bottom:283.176400pt;}
.y141{bottom:283.180067pt;}
.yd5{bottom:283.187400pt;}
.y177{bottom:283.205867pt;}
.y1b9{bottom:283.235067pt;}
.y239{bottom:285.224400pt;}
.y1f5{bottom:285.432000pt;}
.y219{bottom:285.747733pt;}
.y2a{bottom:286.603867pt;}
.y1d3{bottom:290.186000pt;}
.y46{bottom:293.906267pt;}
.y29{bottom:297.931867pt;}
.y6b{bottom:298.799533pt;}
.yfe{bottom:298.803067pt;}
.y145{bottom:298.806867pt;}
.y131{bottom:298.810400pt;}
.y194{bottom:298.810733pt;}
.ybb{bottom:298.814067pt;}
.y113{bottom:298.815467pt;}
.y140{bottom:298.817733pt;}
.yd4{bottom:298.825067pt;}
.y8c{bottom:298.825400pt;}
.y1b4{bottom:298.832533pt;}
.y176{bottom:298.843533pt;}
.y188{bottom:298.865400pt;}
.y1b8{bottom:298.872733pt;}
.y1f4{bottom:299.940000pt;}
.y218{bottom:300.255733pt;}
.y1d2{bottom:304.694000pt;}
.y28{bottom:309.259867pt;}
.y45{bottom:309.543933pt;}
.yc1{bottom:314.440733pt;}
.y116{bottom:314.444533pt;}
.y1f3{bottom:314.448000pt;}
.y130{bottom:314.448067pt;}
.y193{bottom:314.448400pt;}
.yba{bottom:314.451733pt;}
.y112{bottom:314.453133pt;}
.y6a{bottom:314.455400pt;}
.ya3{bottom:314.459067pt;}
.yd3{bottom:314.462733pt;}
.y8b{bottom:314.463067pt;}
.y168{bottom:314.466400pt;}
.y1b3{bottom:314.470200pt;}
.y175{bottom:314.481200pt;}
.y187{bottom:314.503067pt;}
.y1b7{bottom:314.510400pt;}
.y217{bottom:314.763733pt;}
.y1d1{bottom:319.202000pt;}
.y27{bottom:320.587867pt;}
.y44{bottom:325.181600pt;}
.y1f2{bottom:328.956000pt;}
.y216{bottom:329.271733pt;}
.y238{bottom:329.273067pt;}
.y115{bottom:330.082200pt;}
.y12f{bottom:330.085733pt;}
.yb9{bottom:330.089400pt;}
.y111{bottom:330.090800pt;}
.y69{bottom:330.093067pt;}
.ya2{bottom:330.096733pt;}
.yd2{bottom:330.100400pt;}
.y167{bottom:330.104067pt;}
.y1b2{bottom:330.107867pt;}
.y174{bottom:330.118867pt;}
.y186{bottom:330.140733pt;}
.y1b6{bottom:330.148067pt;}
.y26{bottom:331.915867pt;}
.y1d0{bottom:333.710000pt;}
.y43{bottom:340.819267pt;}
.y25{bottom:343.243867pt;}
.y1f1{bottom:343.464000pt;}
.y215{bottom:343.779733pt;}
.y237{bottom:343.781067pt;}
.y12e{bottom:345.723400pt;}
.y192{bottom:345.723733pt;}
.yb8{bottom:345.727067pt;}
.y110{bottom:345.728467pt;}
.y68{bottom:345.730733pt;}
.ya1{bottom:345.734400pt;}
.yd1{bottom:345.738067pt;}
.y8a{bottom:345.738400pt;}
.y166{bottom:345.741733pt;}
.y1b1{bottom:345.745533pt;}
.y173{bottom:345.756533pt;}
.y185{bottom:345.778400pt;}
.y1b5{bottom:345.785733pt;}
.y1cf{bottom:348.218000pt;}
.y24{bottom:354.571867pt;}
.y42{bottom:356.456933pt;}
.y1f0{bottom:357.972000pt;}
.y214{bottom:358.287733pt;}
.y236{bottom:358.289067pt;}
.yb7{bottom:361.364733pt;}
.y67{bottom:361.368400pt;}
.ya0{bottom:361.372067pt;}
.yd0{bottom:361.375733pt;}
.y89{bottom:361.376067pt;}
.y10f{bottom:361.377133pt;}
.y165{bottom:361.379400pt;}
.y1b0{bottom:361.383200pt;}
.y172{bottom:361.394200pt;}
.y155{bottom:361.405067pt;}
.y184{bottom:361.416067pt;}
.y12d{bottom:361.423400pt;}
.y1ce{bottom:362.726000pt;}
.y23{bottom:365.899867pt;}
.y1ef{bottom:372.480000pt;}
.y213{bottom:372.795733pt;}
.y235{bottom:372.797067pt;}
.y66{bottom:377.006067pt;}
.y9f{bottom:377.009733pt;}
.ycf{bottom:377.013400pt;}
.y10e{bottom:377.014800pt;}
.y164{bottom:377.017067pt;}
.y1af{bottom:377.020867pt;}
.yfd{bottom:377.024400pt;}
.yee{bottom:377.031867pt;}
.yc0{bottom:377.039067pt;}
.y154{bottom:377.042733pt;}
.y183{bottom:377.053733pt;}
.y12c{bottom:377.061067pt;}
.y22{bottom:377.227867pt;}
.y1cd{bottom:377.234000pt;}
.y1ee{bottom:386.988000pt;}
.y212{bottom:387.303733pt;}
.y234{bottom:387.305067pt;}
.y41{bottom:387.732267pt;}
.y21{bottom:388.555867pt;}
.y1cc{bottom:391.742000pt;}
.y9e{bottom:392.647400pt;}
.yce{bottom:392.651067pt;}
.y10d{bottom:392.652467pt;}
.y13f{bottom:392.654733pt;}
.y1a1{bottom:392.658533pt;}
.yfc{bottom:392.662067pt;}
.yed{bottom:392.669533pt;}
.ybf{bottom:392.676733pt;}
.y153{bottom:392.680400pt;}
.y182{bottom:392.691400pt;}
.y12b{bottom:392.698733pt;}
.y65{bottom:392.717067pt;}
.y1ed{bottom:401.496000pt;}
.y211{bottom:401.811733pt;}
.y233{bottom:401.813067pt;}
.y1cb{bottom:406.250000pt;}
.ycd{bottom:408.288733pt;}
.y9d{bottom:408.292400pt;}
.y1a0{bottom:408.296200pt;}
.yfb{bottom:408.299733pt;}
.y88{bottom:408.303400pt;}
.yec{bottom:408.307200pt;}
.y10c{bottom:408.307400pt;}
.yb6{bottom:408.314400pt;}
.y152{bottom:408.318067pt;}
.y181{bottom:408.329067pt;}
.y12a{bottom:408.336400pt;}
.y64{bottom:408.354733pt;}
.y20{bottom:411.233200pt;}
.y1ec{bottom:416.004000pt;}
.y210{bottom:416.319733pt;}
.y232{bottom:416.321067pt;}
.y1ca{bottom:420.758000pt;}
.y9c{bottom:423.930067pt;}
.y191{bottom:423.933867pt;}
.yfa{bottom:423.937400pt;}
.y87{bottom:423.941067pt;}
.yeb{bottom:423.944867pt;}
.y10b{bottom:423.945067pt;}
.yb5{bottom:423.952067pt;}
.y151{bottom:423.955733pt;}
.y180{bottom:423.966733pt;}
.y15d{bottom:423.970533pt;}
.y129{bottom:423.974067pt;}
.y1a7{bottom:423.981533pt;}
.y63{bottom:423.992400pt;}
.y1f{bottom:428.235867pt;}
.y1eb{bottom:430.512000pt;}
.y20f{bottom:430.827733pt;}
.y231{bottom:430.829067pt;}
.y40{bottom:434.653400pt;}
.y1c9{bottom:435.266000pt;}
.y1e{bottom:439.563867pt;}
.y190{bottom:439.571533pt;}
.yf9{bottom:439.575067pt;}
.y86{bottom:439.578733pt;}
.yea{bottom:439.582533pt;}
.y10a{bottom:439.582733pt;}
.yb4{bottom:439.589733pt;}
.y9b{bottom:439.593400pt;}
.y17f{bottom:439.604400pt;}
.y15c{bottom:439.608200pt;}
.y128{bottom:439.611733pt;}
.y1a6{bottom:439.619200pt;}
.y62{bottom:439.630067pt;}
.y1ea{bottom:445.020000pt;}
.y20e{bottom:445.335733pt;}
.y230{bottom:445.337067pt;}
.y3f{bottom:448.862400pt;}
.y1c8{bottom:449.774000pt;}
.y1d{bottom:450.891867pt;}
.yf8{bottom:455.212733pt;}
.y85{bottom:455.216400pt;}
.ye9{bottom:455.220200pt;}
.y109{bottom:455.220400pt;}
.yb3{bottom:455.227400pt;}
.y9a{bottom:455.231067pt;}
.y1ae{bottom:455.238533pt;}
.y17e{bottom:455.242067pt;}
.y15b{bottom:455.245867pt;}
.y127{bottom:455.249400pt;}
.y1a5{bottom:455.256867pt;}
.y61{bottom:455.267733pt;}
.y1e9{bottom:459.528000pt;}
.y20d{bottom:459.843733pt;}
.y22f{bottom:459.845067pt;}
.y1c{bottom:462.219867pt;}
.y1c7{bottom:464.282000pt;}
.y3e{bottom:470.637400pt;}
.y84{bottom:470.854067pt;}
.ye8{bottom:470.857867pt;}
.y108{bottom:470.858067pt;}
.yb2{bottom:470.865067pt;}
.y99{bottom:470.868733pt;}
.y1ad{bottom:470.876200pt;}
.yf7{bottom:470.879733pt;}
.y15a{bottom:470.883533pt;}
.y126{bottom:470.887067pt;}
.y1a4{bottom:470.894533pt;}
.y60{bottom:470.905400pt;}
.y1b{bottom:473.547867pt;}
.y1e8{bottom:474.036000pt;}
.y20c{bottom:474.351733pt;}
.y22e{bottom:474.353067pt;}
.y1c6{bottom:478.790000pt;}
.y3d{bottom:484.846400pt;}
.y1a{bottom:484.875867pt;}
.ye7{bottom:486.495533pt;}
.yb1{bottom:486.502733pt;}
.y98{bottom:486.506400pt;}
.y1ac{bottom:486.513867pt;}
.yf6{bottom:486.517400pt;}
.y159{bottom:486.521200pt;}
.y125{bottom:486.524733pt;}
.y83{bottom:486.532200pt;}
.y163{bottom:486.535733pt;}
.y5f{bottom:486.543067pt;}
.y1e7{bottom:488.544000pt;}
.y20b{bottom:488.859733pt;}
.y22d{bottom:488.861067pt;}
.y1c5{bottom:493.298000pt;}
.y19{bottom:496.203867pt;}
.y3c{bottom:499.055400pt;}
.y107{bottom:502.133400pt;}
.yb0{bottom:502.140400pt;}
.y97{bottom:502.144067pt;}
.ye6{bottom:502.151533pt;}
.yf5{bottom:502.155067pt;}
.y158{bottom:502.158867pt;}
.y124{bottom:502.162400pt;}
.y19f{bottom:502.166067pt;}
.y82{bottom:502.169867pt;}
.y162{bottom:502.173400pt;}
.y171{bottom:502.177067pt;}
.y5e{bottom:502.180733pt;}
.y1e6{bottom:503.052000pt;}
.y20a{bottom:503.367733pt;}
.y22c{bottom:503.369067pt;}
.y18{bottom:507.537200pt;}
.y1c4{bottom:507.806000pt;}
.y3b{bottom:513.264400pt;}
.y1e5{bottom:517.560000pt;}
.y106{bottom:517.771067pt;}
.yaf{bottom:517.778067pt;}
.y96{bottom:517.781733pt;}
.ye5{bottom:517.789200pt;}
.yf4{bottom:517.792733pt;}
.y157{bottom:517.796533pt;}
.y123{bottom:517.800067pt;}
.y19e{bottom:517.803733pt;}
.y81{bottom:517.807533pt;}
.y161{bottom:517.811067pt;}
.y170{bottom:517.814733pt;}
.y5d{bottom:517.818400pt;}
.y209{bottom:517.875733pt;}
.y22b{bottom:517.877067pt;}
.y17{bottom:518.881867pt;}
.y1c3{bottom:522.314000pt;}
.y16{bottom:530.209867pt;}
.y1e4{bottom:532.066667pt;}
.y208{bottom:532.383733pt;}
.y22a{bottom:532.385067pt;}
.y95{bottom:533.419400pt;}
.yae{bottom:533.426867pt;}
.yf3{bottom:533.430400pt;}
.y156{bottom:533.434200pt;}
.y122{bottom:533.437733pt;}
.y19d{bottom:533.441400pt;}
.y80{bottom:533.445200pt;}
.y160{bottom:533.448733pt;}
.y16f{bottom:533.452400pt;}
.y5c{bottom:533.456067pt;}
.y3a{bottom:535.039400pt;}
.y1c2{bottom:536.822000pt;}
.y15{bottom:541.537867pt;}
.y1e3{bottom:546.574667pt;}
.y207{bottom:546.891733pt;}
.y229{bottom:546.893067pt;}
.yad{bottom:549.064533pt;}
.yf2{bottom:549.068067pt;}
.y150{bottom:549.071867pt;}
.y121{bottom:549.075400pt;}
.y19c{bottom:549.079067pt;}
.y7f{bottom:549.082867pt;}
.y13e{bottom:549.086400pt;}
.y16e{bottom:549.090067pt;}
.y5b{bottom:549.093733pt;}
.y39{bottom:549.248400pt;}
.y1c1{bottom:551.330000pt;}
.y14{bottom:552.865867pt;}
.y206{bottom:561.399733pt;}
.y228{bottom:561.401067pt;}
.y38{bottom:563.457400pt;}
.yac{bottom:564.702200pt;}
.yf1{bottom:564.705733pt;}
.y14f{bottom:564.709533pt;}
.y120{bottom:564.713067pt;}
.y19b{bottom:564.716733pt;}
.y7e{bottom:564.720533pt;}
.y13d{bottom:564.724067pt;}
.y16d{bottom:564.727733pt;}
.y5a{bottom:564.731400pt;}
.y1c0{bottom:565.838000pt;}
.y205{bottom:575.907733pt;}
.y227{bottom:575.909067pt;}
.y1e2{bottom:576.721067pt;}
.y37{bottom:577.666400pt;}
.yf0{bottom:580.343400pt;}
.y14e{bottom:580.347200pt;}
.y11f{bottom:580.350733pt;}
.ye4{bottom:580.354400pt;}
.y7d{bottom:580.358200pt;}
.y13c{bottom:580.361733pt;}
.y16c{bottom:580.365400pt;}
.y59{bottom:580.369067pt;}
.y226{bottom:590.406400pt;}
.y204{bottom:590.415733pt;}
.y14d{bottom:595.984867pt;}
.y11e{bottom:595.988400pt;}
.y1bf{bottom:595.988733pt;}
.ye3{bottom:595.992067pt;}
.y7c{bottom:595.995867pt;}
.y13b{bottom:595.999400pt;}
.y16b{bottom:596.003067pt;}
.y58{bottom:596.006733pt;}
.y36{bottom:599.441400pt;}
.y13{bottom:603.297867pt;}
.y203{bottom:604.914400pt;}
.y11d{bottom:611.626067pt;}
.ye2{bottom:611.629733pt;}
.y7b{bottom:611.633533pt;}
.y13a{bottom:611.637067pt;}
.y16a{bottom:611.640733pt;}
.y57{bottom:611.644400pt;}
.y35{bottom:613.650400pt;}
.y12{bottom:616.100400pt;}
.y202{bottom:619.422400pt;}
.ye1{bottom:627.267400pt;}
.y7a{bottom:627.271200pt;}
.y139{bottom:627.274733pt;}
.y169{bottom:627.278400pt;}
.y56{bottom:627.282067pt;}
.y34{bottom:627.859400pt;}
.y1e1{bottom:633.930400pt;}
.y11{bottom:637.407067pt;}
.y33{bottom:642.068400pt;}
.y79{bottom:642.908867pt;}
.y138{bottom:642.912400pt;}
.ye0{bottom:642.916067pt;}
.y55{bottom:642.919733pt;}
.y1e0{bottom:648.438400pt;}
.y10{bottom:654.460400pt;}
.y78{bottom:658.550067pt;}
.ydf{bottom:658.553733pt;}
.y54{bottom:658.557400pt;}
.y1df{bottom:662.946400pt;}
.y32{bottom:663.843400pt;}
.yde{bottom:674.191400pt;}
.y53{bottom:674.195067pt;}
.y1de{bottom:677.454400pt;}
.y31{bottom:678.052400pt;}
.yf{bottom:689.167067pt;}
.y52{bottom:689.832733pt;}
.y1dd{bottom:691.962400pt;}
.y30{bottom:692.261400pt;}
.y51{bottom:705.470400pt;}
.ye{bottom:706.220400pt;}
.y2f{bottom:706.470400pt;}
.y2e{bottom:739.846400pt;}
.yb{bottom:742.513600pt;}
.y2{bottom:760.624800pt;}
.yd{bottom:771.452267pt;}
.yc{bottom:783.452267pt;}
.h6{height:27.477333pt;}
.h4{height:27.738667pt;}
.h14{height:27.858724pt;}
.h5{height:29.720000pt;}
.h8{height:31.402667pt;}
.h1a{height:33.740000pt;}
.h1c{height:34.393333pt;}
.he{height:37.812500pt;}
.hc{height:38.270833pt;}
.h7{height:39.552000pt;}
.hd{height:39.708333pt;}
.hf{height:40.662760pt;}
.h15{height:41.858724pt;}
.h1b{height:43.260000pt;}
.h2{height:45.446615pt;}
.h16{height:46.083984pt;}
.h11{height:46.640711pt;}
.h10{height:46.642578pt;}
.h17{height:46.647911pt;}
.h18{height:46.679911pt;}
.h19{height:46.685245pt;}
.ha{height:47.265625pt;}
.hb{height:47.838542pt;}
.h9{height:49.635417pt;}
.h13{height:51.426432pt;}
.h12{height:53.358073pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xd{left:83.149600pt;}
.x1{left:95.243067pt;}
.x1e{left:100.631333pt;}
.x1c{left:102.047200pt;}
.x1b{left:105.824933pt;}
.x20{left:109.604600pt;}
.x1f{left:112.725733pt;}
.x1d{left:114.141733pt;}
.x3{left:117.924133pt;}
.x21{left:121.699133pt;}
.x4{left:148.716400pt;}
.x5{left:153.716400pt;}
.x8{left:187.451733pt;}
.x17{left:201.528133pt;}
.xa{left:207.118400pt;}
.x11{left:245.962133pt;}
.x14{left:251.344133pt;}
.x19{left:266.216133pt;}
.x13{left:271.247133pt;}
.x9{left:280.091733pt;}
.x7{left:286.705067pt;}
.xf{left:291.800133pt;}
.x1a{left:292.957133pt;}
.x12{left:293.971133pt;}
.x15{left:296.844133pt;}
.x16{left:303.721133pt;}
.x10{left:316.006133pt;}
.x18{left:339.874133pt;}
.x6{left:369.364667pt;}
.xc{left:388.283067pt;}
.xb{left:397.171733pt;}
.xe{left:409.427200pt;}
.x2{left:462.814000pt;}
}




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