
    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_1c70d07125841cffbcc6d38c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;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_582ce84276d7d9058ba85d7f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_f5734059f1ba5540f701ab3c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_91c7b5bb93c0f722e50e3ab1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_fc440d18b6fdb547eb7fc1a0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.931152;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_b4975e5ff248e9641c730162.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_6da0ed6e7ccc610a195a5679.woff')format("woff");}.ff7{font-family:ff7;line-height:0.899414;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_6a8c036ee1d9f0188b5984ea.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{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:-22.200000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v3{vertical-align:26.136000px;}
.ls6a{letter-spacing:-6.600000px;}
.ls2a{letter-spacing:-2.808000px;}
.ls5d{letter-spacing:-1.980000px;}
.ls47{letter-spacing:-1.152000px;}
.ls3f{letter-spacing:-1.083000px;}
.ls2c{letter-spacing:-1.008000px;}
.ls2d{letter-spacing:-0.936000px;}
.ls32{letter-spacing:-0.792000px;}
.ls4b{letter-spacing:-0.726000px;}
.ls41{letter-spacing:-0.660000px;}
.ls4c{letter-spacing:-0.594000px;}
.ls2f{letter-spacing:-0.576000px;}
.ls3e{letter-spacing:-0.570000px;}
.ls5e{letter-spacing:-0.528000px;}
.ls2e{letter-spacing:-0.504000px;}
.ls60{letter-spacing:-0.462000px;}
.lsd{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.396000px;}
.lse{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.330000px;}
.ls12{letter-spacing:-0.288000px;}
.ls44{letter-spacing:-0.264000px;}
.ls1f{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.144000px;}
.ls6b{letter-spacing:-0.132000px;}
.ls2b{letter-spacing:-0.114000px;}
.ls11{letter-spacing:-0.072000px;}
.ls43{letter-spacing:-0.066000px;}
.ls7{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.002400px;}
.ls17{letter-spacing:0.039000px;}
.ls69{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.072000px;}
.ls55{letter-spacing:0.132000px;}
.ls15{letter-spacing:0.142800px;}
.ls19{letter-spacing:0.144000px;}
.ls65{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.216000px;}
.ls53{letter-spacing:0.237600px;}
.ls6c{letter-spacing:0.264000px;}
.ls10{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.289800px;}
.ls30{letter-spacing:0.324000px;}
.ls5b{letter-spacing:0.330000px;}
.ls3b{letter-spacing:0.345600px;}
.ls24{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.396000px;}
.ls18{letter-spacing:0.432000px;}
.ls39{letter-spacing:0.439200px;}
.ls6{letter-spacing:0.462000px;}
.lsf{letter-spacing:0.504000px;}
.ls66{letter-spacing:0.528000px;}
.ls1e{letter-spacing:0.576000px;}
.ls50{letter-spacing:0.594000px;}
.lsb{letter-spacing:0.648000px;}
.ls4f{letter-spacing:0.660000px;}
.lsc{letter-spacing:0.720000px;}
.ls5{letter-spacing:0.726000px;}
.ls8{letter-spacing:0.792000px;}
.ls1c{letter-spacing:0.856800px;}
.ls62{letter-spacing:0.858000px;}
.ls1b{letter-spacing:0.864000px;}
.ls38{letter-spacing:0.936000px;}
.ls25{letter-spacing:1.152000px;}
.ls46{letter-spacing:2.304000px;}
.ls37{letter-spacing:2.332800px;}
.ls36{letter-spacing:2.880000px;}
.ls29{letter-spacing:3.477000px;}
.ls3c{letter-spacing:3.528000px;}
.ls20{letter-spacing:3.600000px;}
.ls0{letter-spacing:4.200000px;}
.ls34{letter-spacing:4.392000px;}
.ls28{letter-spacing:4.536000px;}
.ls33{letter-spacing:4.788000px;}
.ls23{letter-spacing:5.256000px;}
.ls22{letter-spacing:5.328000px;}
.ls1a{letter-spacing:5.400000px;}
.ls35{letter-spacing:5.472000px;}
.ls3{letter-spacing:6.000000px;}
.ls21{letter-spacing:6.451200px;}
.ls1{letter-spacing:6.600000px;}
.ls63{letter-spacing:6.732000px;}
.ls4{letter-spacing:7.200000px;}
.ls1d{letter-spacing:8.568000px;}
.ls45{letter-spacing:9.230400px;}
.ls3a{letter-spacing:9.576000px;}
.ls3d{letter-spacing:9.936000px;}
.ls2{letter-spacing:10.200000px;}
.ls49{letter-spacing:10.296000px;}
.ls57{letter-spacing:10.362000px;}
.ls68{letter-spacing:10.428000px;}
.ls58{letter-spacing:10.494000px;}
.ls4d{letter-spacing:10.824000px;}
.ls26{letter-spacing:10.836000px;}
.ls48{letter-spacing:10.890000px;}
.ls4a{letter-spacing:10.956000px;}
.ls64{letter-spacing:11.022000px;}
.ls52{letter-spacing:11.088000px;}
.ls5a{letter-spacing:11.286000px;}
.ls5c{letter-spacing:11.616000px;}
.ls5f{letter-spacing:11.748000px;}
.ls61{letter-spacing:11.814000px;}
.ls56{letter-spacing:13.398000px;}
.ls4e{letter-spacing:13.827000px;}
.ls51{letter-spacing:15.642000px;}
.ls59{letter-spacing:18.942000px;}
.ls67{letter-spacing:19.800000px;}
.ls54{letter-spacing:20.394000px;}
.ls40{letter-spacing:73.537200px;}
.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;}
}
.ws63{word-spacing:-38.346000px;}
.ws50{word-spacing:-29.502000px;}
.ws1{word-spacing:-27.432000px;}
.ws4a{word-spacing:-22.860000px;}
.ws34{word-spacing:-20.376000px;}
.ws2f{word-spacing:-20.232000px;}
.ws3a{word-spacing:-20.016000px;}
.ws6a{word-spacing:-19.800000px;}
.ws2a{word-spacing:-19.656000px;}
.ws3d{word-spacing:-18.546000px;}
.wse{word-spacing:-18.504000px;}
.ws42{word-spacing:-17.886000px;}
.ws24{word-spacing:-17.856000px;}
.ws1e{word-spacing:-17.784000px;}
.ws25{word-spacing:-17.568000px;}
.wsd{word-spacing:-17.424000px;}
.ws36{word-spacing:-17.352000px;}
.ws0{word-spacing:-16.860000px;}
.ws62{word-spacing:-16.764000px;}
.ws51{word-spacing:-16.566000px;}
.ws43{word-spacing:-16.302000px;}
.ws61{word-spacing:-15.642000px;}
.ws6c{word-spacing:-14.820000px;}
.wsf{word-spacing:-12.139200px;}
.ws5f{word-spacing:-11.814000px;}
.ws5a{word-spacing:-11.748000px;}
.ws53{word-spacing:-11.616000px;}
.ws5d{word-spacing:-11.286000px;}
.ws56{word-spacing:-11.088000px;}
.ws65{word-spacing:-11.022000px;}
.ws4d{word-spacing:-10.956000px;}
.ws4b{word-spacing:-10.890000px;}
.ws52{word-spacing:-10.824000px;}
.ws5b{word-spacing:-10.494000px;}
.ws64{word-spacing:-10.428000px;}
.ws58{word-spacing:-10.362000px;}
.ws4c{word-spacing:-10.296000px;}
.ws5{word-spacing:-10.200000px;}
.ws20{word-spacing:-8.568000px;}
.wsb{word-spacing:-7.200000px;}
.ws4{word-spacing:-6.600000px;}
.ws6{word-spacing:-6.000000px;}
.ws1d{word-spacing:-5.400000px;}
.ws3{word-spacing:-4.200000px;}
.ws23{word-spacing:-3.600000px;}
.ws39{word-spacing:-3.528000px;}
.ws46{word-spacing:-3.312000px;}
.ws49{word-spacing:-1.944000px;}
.ws30{word-spacing:-1.368000px;}
.ws27{word-spacing:-1.152000px;}
.ws38{word-spacing:-0.936000px;}
.ws1f{word-spacing:-0.864000px;}
.ws60{word-spacing:-0.858000px;}
.ws7{word-spacing:-0.792000px;}
.ws9{word-spacing:-0.726000px;}
.ws16{word-spacing:-0.720000px;}
.ws54{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.648000px;}
.ws55{word-spacing:-0.594000px;}
.ws21{word-spacing:-0.576000px;}
.ws69{word-spacing:-0.528000px;}
.ws11{word-spacing:-0.504000px;}
.wsa{word-spacing:-0.462000px;}
.ws1a{word-spacing:-0.432000px;}
.ws6f{word-spacing:-0.396000px;}
.ws26{word-spacing:-0.360000px;}
.ws5e{word-spacing:-0.330000px;}
.ws13{word-spacing:-0.288000px;}
.ws6e{word-spacing:-0.264000px;}
.ws1b{word-spacing:-0.216000px;}
.ws67{word-spacing:-0.198000px;}
.ws1c{word-spacing:-0.144000px;}
.ws57{word-spacing:-0.132000px;}
.ws19{word-spacing:-0.072000px;}
.ws66{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws45{word-spacing:0.066000px;}
.ws15{word-spacing:0.072000px;}
.ws29{word-spacing:0.114000px;}
.ws6b{word-spacing:0.132000px;}
.wsc{word-spacing:0.144000px;}
.ws22{word-spacing:0.216000px;}
.ws6d{word-spacing:0.264000px;}
.ws18{word-spacing:0.288000px;}
.ws41{word-spacing:0.330000px;}
.ws17{word-spacing:0.360000px;}
.ws8{word-spacing:0.396000px;}
.ws10{word-spacing:0.432000px;}
.ws5c{word-spacing:0.462000px;}
.ws2d{word-spacing:0.504000px;}
.ws59{word-spacing:0.528000px;}
.ws3b{word-spacing:0.570000px;}
.ws2e{word-spacing:0.576000px;}
.ws4f{word-spacing:0.594000px;}
.ws40{word-spacing:0.660000px;}
.ws4e{word-spacing:0.726000px;}
.ws31{word-spacing:0.792000px;}
.ws2c{word-spacing:0.936000px;}
.ws2b{word-spacing:1.008000px;}
.ws3c{word-spacing:1.083000px;}
.ws48{word-spacing:1.152000px;}
.ws28{word-spacing:2.808000px;}
.ws32{word-spacing:4.176000px;}
.ws33{word-spacing:4.392000px;}
.ws37{word-spacing:6.264000px;}
.ws68{word-spacing:6.600000px;}
.ws12{word-spacing:8.208000px;}
.ws35{word-spacing:8.856000px;}
.ws47{word-spacing:8.928000px;}
.ws3f{word-spacing:43.230000px;}
.ws44{word-spacing:46.886400px;}
.ws3e{word-spacing:511.038000px;}
._15{margin-left:-1105.996800px;}
._d{margin-left:-17.554800px;}
._31{margin-left:-15.248400px;}
._17{margin-left:-13.919400px;}
._1a{margin-left:-12.188100px;}
._7{margin-left:-10.230600px;}
._6{margin-left:-8.561400px;}
._2{margin-left:-6.738600px;}
._1{margin-left:-5.583600px;}
._11{margin-left:-4.111200px;}
._4{margin-left:-2.880000px;}
._b{margin-left:-1.485000px;}
._12{width:1.000800px;}
._a{width:2.052600px;}
._10{width:3.075600px;}
._0{width:4.200000px;}
._e{width:5.593800px;}
._9{width:6.792600px;}
._f{width:7.939800px;}
._c{width:9.178800px;}
._8{width:10.200000px;}
._3{width:11.259600px;}
._16{width:12.276000px;}
._18{width:13.357200px;}
._19{width:14.896500px;}
._34{width:15.899400px;}
._5{width:17.401200px;}
._33{width:20.440200px;}
._32{width:21.753600px;}
._2b{width:52.428000px;}
._13{width:56.923200px;}
._1c{width:61.776000px;}
._2a{width:68.508000px;}
._14{width:74.549400px;}
._30{width:76.731600px;}
._1f{width:87.054000px;}
._29{width:103.065600px;}
._21{width:105.778200px;}
._1d{width:113.245200px;}
._2c{width:115.605600px;}
._23{width:117.922200px;}
._20{width:146.355000px;}
._25{width:149.094000px;}
._2d{width:161.211600px;}
._1e{width:163.257600px;}
._2e{width:171.034800px;}
._26{width:172.431600px;}
._2f{width:175.192800px;}
._24{width:180.417600px;}
._27{width:191.098800px;}
._22{width:231.660000px;}
._28{width:281.595600px;}
._1b{width:871.860000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.339350px;}
.y1c6{bottom:140.308950px;}
.y69{bottom:140.310450px;}
.y1ad{bottom:140.311950px;}
.y44{bottom:140.313450px;}
.y2d6{bottom:141.878400px;}
.y1f{bottom:142.194750px;}
.yc2{bottom:142.290600px;}
.yad{bottom:142.290750px;}
.y8a{bottom:142.716000px;}
.ye3{bottom:142.930350px;}
.y15d{bottom:142.948350px;}
.y2fe{bottom:142.948800px;}
.y125{bottom:143.340300px;}
.y367{bottom:143.736300px;}
.y2b3{bottom:143.830350px;}
.y1b3{bottom:143.991450px;}
.y18c{bottom:144.786300px;}
.y347{bottom:144.928800px;}
.y141{bottom:144.930300px;}
.y321{bottom:145.111800px;}
.y17f{bottom:145.218300px;}
.y293{bottom:145.803300px;}
.y207{bottom:147.486750px;}
.y24d{bottom:147.553950px;}
.y250{bottom:147.570450px;}
.y7b{bottom:148.363200px;}
.y271{bottom:150.145800px;}
.y1c5{bottom:156.810450px;}
.y68{bottom:156.811950px;}
.y1ac{bottom:156.813450px;}
.y2d5{bottom:162.272400px;}
.y43{bottom:162.364950px;}
.y2fd{bottom:162.600300px;}
.y1e{bottom:163.038750px;}
.y366{bottom:163.387800px;}
.yc1{bottom:163.890600px;}
.yac{bottom:163.890750px;}
.y89{bottom:164.316000px;}
.ye2{bottom:164.674350px;}
.y15c{bottom:164.692350px;}
.y320{bottom:164.911800px;}
.y346{bottom:165.025800px;}
.y124{bottom:165.084300px;}
.y1b2{bottom:165.591450px;}
.y2b2{bottom:166.024350px;}
.y18b{bottom:166.530300px;}
.y140{bottom:166.674300px;}
.y17e{bottom:166.962300px;}
.y292{bottom:167.403300px;}
.y206{bottom:168.029250px;}
.y20a{bottom:168.045750px;}
.y24c{bottom:168.096450px;}
.y24f{bottom:168.112950px;}
.y7a{bottom:168.311700px;}
.y270{bottom:168.889800px;}
.y1c4{bottom:173.311950px;}
.y67{bottom:173.313450px;}
.y105{bottom:178.864950px;}
.y2fc{bottom:182.251800px;}
.y2d4{bottom:182.666400px;}
.y365{bottom:183.039300px;}
.y1d{bottom:184.332750px;}
.y31f{bottom:184.711800px;}
.y345{bottom:185.122800px;}
.yc0{bottom:185.490600px;}
.yab{bottom:185.490750px;}
.y88{bottom:185.916000px;}
.ye1{bottom:186.418350px;}
.y15b{bottom:186.436350px;}
.y123{bottom:186.828300px;}
.y1b1{bottom:187.191450px;}
.y2b1{bottom:188.218350px;}
.y79{bottom:188.260200px;}
.y18a{bottom:188.274300px;}
.y13f{bottom:188.418300px;}
.y205{bottom:188.571750px;}
.y209{bottom:188.588250px;}
.y24b{bottom:188.638950px;}
.y24e{bottom:188.655450px;}
.y17d{bottom:188.706300px;}
.y291{bottom:189.003300px;}
.y1c3{bottom:189.813450px;}
.y72{bottom:191.094600px;}
.y66{bottom:195.364950px;}
.y26f{bottom:196.873800px;}
.y2fb{bottom:201.903300px;}
.y42{bottom:202.170300px;}
.y2d3{bottom:203.060400px;}
.y364{bottom:204.340800px;}
.y31e{bottom:204.511800px;}
.y344{bottom:205.219800px;}
.y1c{bottom:205.626750px;}
.ybf{bottom:207.090600px;}
.yaa{bottom:207.090750px;}
.y87{bottom:207.516000px;}
.ye0{bottom:208.162350px;}
.y15a{bottom:208.180350px;}
.y78{bottom:208.208700px;}
.y122{bottom:208.572300px;}
.y1b0{bottom:208.791450px;}
.y204{bottom:209.114250px;}
.y208{bottom:209.130750px;}
.y189{bottom:210.018300px;}
.y13e{bottom:210.162300px;}
.y2b0{bottom:210.412350px;}
.y17c{bottom:210.450300px;}
.y290{bottom:210.603300px;}
.y65{bottom:211.864950px;}
.y247{bottom:212.365950px;}
.y104{bottom:214.914300px;}
.y370{bottom:215.311800px;}
.y26e{bottom:215.617800px;}
.y1ab{bottom:218.988300px;}
.y2fa{bottom:221.554800px;}
.y2d2{bottom:223.454400px;}
.y41{bottom:223.770300px;}
.y343{bottom:225.316800px;}
.y363{bottom:225.642300px;}
.y77{bottom:228.157200px;}
.y64{bottom:228.364950px;}
.ybe{bottom:228.690600px;}
.ya9{bottom:228.690750px;}
.y86{bottom:229.116000px;}
.ydf{bottom:229.906350px;}
.y159{bottom:229.924350px;}
.y121{bottom:230.316300px;}
.y1af{bottom:230.391450px;}
.y188{bottom:231.762300px;}
.y13d{bottom:231.906300px;}
.y17b{bottom:232.194300px;}
.y28f{bottom:232.203300px;}
.y2af{bottom:232.606350px;}
.y200{bottom:232.824750px;}
.y203{bottom:232.841250px;}
.y246{bottom:232.908450px;}
.y24a{bottom:232.924950px;}
.y36f{bottom:233.311800px;}
.y1b{bottom:235.430700px;}
.y103{bottom:236.514300px;}
.y2f9{bottom:241.206300px;}
.y1aa{bottom:241.344300px;}
.y31d{bottom:242.311800px;}
.y26d{bottom:243.601800px;}
.y2d1{bottom:243.848400px;}
.y40{bottom:245.370300px;}
.y342{bottom:245.413800px;}
.y362{bottom:246.943800px;}
.y76{bottom:248.105700px;}
.ybd{bottom:250.290600px;}
.ya8{bottom:250.290750px;}
.y85{bottom:250.716000px;}
.y1c2{bottom:251.007150px;}
.y36e{bottom:251.311800px;}
.yde{bottom:251.650350px;}
.y158{bottom:251.668350px;}
.y120{bottom:252.060300px;}
.y1ff{bottom:253.367250px;}
.y202{bottom:253.383750px;}
.y245{bottom:253.450950px;}
.y249{bottom:253.467450px;}
.y187{bottom:253.506300px;}
.y13c{bottom:253.650300px;}
.y28e{bottom:253.803300px;}
.y17a{bottom:253.938300px;}
.y2ae{bottom:254.800350px;}
.y102{bottom:258.114300px;}
.y2f8{bottom:260.857800px;}
.y26c{bottom:262.345800px;}
.y1a9{bottom:263.700300px;}
.y2d0{bottom:264.242400px;}
.y341{bottom:265.510800px;}
.y3f{bottom:266.790300px;}
.y75{bottom:268.054200px;}
.y361{bottom:268.245300px;}
.y36d{bottom:269.311800px;}
.ybc{bottom:271.890600px;}
.ya7{bottom:271.890750px;}
.y1c1{bottom:272.013150px;}
.y63{bottom:272.064300px;}
.y84{bottom:272.316000px;}
.ydd{bottom:273.394350px;}
.y157{bottom:273.412350px;}
.y11f{bottom:273.804300px;}
.y1fe{bottom:273.909750px;}
.y201{bottom:273.926250px;}
.y244{bottom:273.993450px;}
.y248{bottom:274.009950px;}
.y186{bottom:275.250300px;}
.y13b{bottom:275.394300px;}
.y28d{bottom:275.403300px;}
.y179{bottom:275.682300px;}
.y2ad{bottom:276.994350px;}
.y101{bottom:279.714300px;}
.y31c{bottom:280.111800px;}
.y2f7{bottom:280.509300px;}
.y1ae{bottom:283.333200px;}
.y2cf{bottom:284.636400px;}
.y340{bottom:285.607800px;}
.y1a8{bottom:286.056300px;}
.y74{bottom:288.002700px;}
.y3e{bottom:288.084300px;}
.y360{bottom:289.546800px;}
.y26b{bottom:290.329800px;}
.y1c0{bottom:293.019150px;}
.y62{bottom:293.214300px;}
.ybb{bottom:293.490600px;}
.ya6{bottom:293.490750px;}
.y83{bottom:293.916000px;}
.ydc{bottom:295.138350px;}
.y156{bottom:295.156350px;}
.y11e{bottom:295.548300px;}
.y185{bottom:296.994300px;}
.y28c{bottom:297.003300px;}
.y13a{bottom:297.138300px;}
.y178{bottom:297.426300px;}
.y240{bottom:297.720450px;}
.y1fd{bottom:297.983250px;}
.y2ac{bottom:299.188350px;}
.y1a{bottom:299.306700px;}
.y2f6{bottom:300.160800px;}
.y100{bottom:301.314300px;}
.y31b{bottom:301.711800px;}
.y36c{bottom:302.311800px;}
.y2ce{bottom:305.030400px;}
.y33f{bottom:305.704800px;}
.y73{bottom:307.951200px;}
.y1a7{bottom:308.412300px;}
.y26a{bottom:309.073800px;}
.y3d{bottom:309.378300px;}
.y35f{bottom:310.848300px;}
.y1bf{bottom:314.025150px;}
.y61{bottom:314.364300px;}
.yba{bottom:315.090600px;}
.ya5{bottom:315.090750px;}
.y82{bottom:315.516000px;}
.ydb{bottom:316.882350px;}
.y155{bottom:316.900350px;}
.y11d{bottom:317.292300px;}
.y23f{bottom:318.262950px;}
.y243{bottom:318.279450px;}
.y1fc{bottom:318.525750px;}
.y28b{bottom:318.603300px;}
.y184{bottom:318.738300px;}
.y19{bottom:318.809700px;}
.y139{bottom:318.882300px;}
.y177{bottom:319.170300px;}
.y2f5{bottom:319.812300px;}
.y36b{bottom:320.311800px;}
.y2ab{bottom:321.382350px;}
.yff{bottom:322.914300px;}
.y31a{bottom:323.311800px;}
.y2cd{bottom:325.424400px;}
.y33e{bottom:325.801800px;}
.y3c{bottom:330.672300px;}
.y1a6{bottom:330.768300px;}
.y35e{bottom:332.149800px;}
.y1be{bottom:335.031150px;}
.y60{bottom:335.514300px;}
.yb9{bottom:336.690600px;}
.ya4{bottom:336.690750px;}
.y269{bottom:337.057800px;}
.y81{bottom:337.116000px;}
.y36a{bottom:338.311800px;}
.y18{bottom:338.312700px;}
.yda{bottom:338.626350px;}
.y154{bottom:338.644350px;}
.y23e{bottom:338.805450px;}
.y242{bottom:338.821950px;}
.y11c{bottom:339.036300px;}
.y1fb{bottom:339.068250px;}
.y2f4{bottom:339.463800px;}
.y28a{bottom:340.203300px;}
.y183{bottom:340.482300px;}
.y138{bottom:340.626300px;}
.y176{bottom:340.914300px;}
.y2aa{bottom:343.576350px;}
.yfe{bottom:344.514300px;}
.y2cc{bottom:345.818400px;}
.y33d{bottom:345.898800px;}
.y3b{bottom:351.966300px;}
.y1a5{bottom:353.124300px;}
.y35d{bottom:353.451300px;}
.y268{bottom:355.801800px;}
.y1bd{bottom:355.983150px;}
.y369{bottom:356.311800px;}
.y5f{bottom:356.664300px;}
.y17{bottom:357.815700px;}
.yb8{bottom:358.290600px;}
.ya3{bottom:358.290750px;}
.y80{bottom:358.716000px;}
.y2f3{bottom:359.115300px;}
.y23d{bottom:359.347950px;}
.y241{bottom:359.364450px;}
.yd9{bottom:360.370350px;}
.y153{bottom:360.388350px;}
.y11b{bottom:360.780300px;}
.y289{bottom:361.803300px;}
.y182{bottom:362.226300px;}
.y137{bottom:362.370300px;}
.y175{bottom:362.658300px;}
.y1f7{bottom:365.072250px;}
.y1fa{bottom:365.088750px;}
.y2a9{bottom:365.770350px;}
.y33c{bottom:365.995800px;}
.yfd{bottom:366.114300px;}
.y2cb{bottom:366.212400px;}
.y35c{bottom:373.102800px;}
.y3a{bottom:373.260300px;}
.y1a4{bottom:375.480300px;}
.y1bc{bottom:376.989150px;}
.y16{bottom:377.318700px;}
.y5e{bottom:377.814300px;}
.y2f2{bottom:378.766800px;}
.yb7{bottom:379.890600px;}
.ya2{bottom:379.890750px;}
.y7f{bottom:380.316000px;}
.yd8{bottom:382.114350px;}
.y152{bottom:382.132350px;}
.y11a{bottom:382.524300px;}
.y239{bottom:383.058450px;}
.y23c{bottom:383.074950px;}
.y288{bottom:383.403300px;}
.y267{bottom:383.785800px;}
.y181{bottom:383.970300px;}
.y136{bottom:384.114300px;}
.y174{bottom:384.402300px;}
.y319{bottom:384.511800px;}
.y1f6{bottom:385.614750px;}
.y1f9{bottom:385.631250px;}
.y33b{bottom:386.092800px;}
.y2ca{bottom:386.606400px;}
.yfc{bottom:387.714300px;}
.y2a8{bottom:387.964350px;}
.y35b{bottom:392.754300px;}
.y39{bottom:394.554300px;}
.y368{bottom:395.911800px;}
.y15{bottom:396.821700px;}
.y1a3{bottom:397.836300px;}
.y1bb{bottom:397.995150px;}
.y2f1{bottom:398.418300px;}
.y5d{bottom:398.964300px;}
.yb6{bottom:401.490600px;}
.ya1{bottom:401.490750px;}
.y318{bottom:401.611800px;}
.y7e{bottom:401.916000px;}
.y266{bottom:402.529800px;}
.y238{bottom:403.600950px;}
.y23b{bottom:403.617450px;}
.yd7{bottom:403.858350px;}
.y151{bottom:403.876350px;}
.y119{bottom:404.268300px;}
.y287{bottom:405.003300px;}
.y180{bottom:405.714300px;}
.y135{bottom:405.858300px;}
.y173{bottom:406.146300px;}
.y1f5{bottom:406.157250px;}
.y1f8{bottom:406.173750px;}
.y33a{bottom:406.189800px;}
.yfb{bottom:409.314300px;}
.y2a7{bottom:410.158350px;}
.y35a{bottom:412.405800px;}
.y2c9{bottom:415.510350px;}
.y38{bottom:415.848300px;}
.y14{bottom:416.324700px;}
.y2f0{bottom:418.069800px;}
.y1ba{bottom:419.001150px;}
.y5c{bottom:420.114300px;}
.y1a2{bottom:420.192300px;}
.yb5{bottom:423.090600px;}
.ya0{bottom:423.090750px;}
.y7d{bottom:423.516000px;}
.y237{bottom:424.143450px;}
.y23a{bottom:424.159950px;}
.yd6{bottom:425.602350px;}
.y150{bottom:425.620350px;}
.y118{bottom:426.012300px;}
.y339{bottom:426.286800px;}
.y286{bottom:426.603300px;}
.y134{bottom:427.602300px;}
.y172{bottom:427.890300px;}
.y1f1{bottom:429.867750px;}
.y1f4{bottom:429.884250px;}
.y265{bottom:430.513800px;}
.yfa{bottom:430.914300px;}
.y359{bottom:432.057300px;}
.y2a6{bottom:432.352350px;}
.y317{bottom:433.711800px;}
.y13{bottom:435.827700px;}
.y37{bottom:437.142300px;}
.y2ef{bottom:437.721300px;}
.y71{bottom:439.519650px;}
.y1b9{bottom:440.007150px;}
.y5b{bottom:441.264300px;}
.y1a1{bottom:442.548300px;}
.yb4{bottom:444.690600px;}
.y9f{bottom:444.690750px;}
.y7c{bottom:445.116000px;}
.y338{bottom:446.383800px;}
.yd5{bottom:447.346350px;}
.y14f{bottom:447.364350px;}
.y117{bottom:447.756300px;}
.y233{bottom:447.853950px;}
.y236{bottom:447.870450px;}
.y285{bottom:448.203300px;}
.y264{bottom:449.257800px;}
.y133{bottom:449.346300px;}
.y171{bottom:449.634300px;}
.y1f0{bottom:450.261750px;}
.y1f3{bottom:450.278250px;}
.y358{bottom:451.708800px;}
.yf9{bottom:452.514300px;}
.y316{bottom:453.511800px;}
.y2a5{bottom:454.546350px;}
.y12{bottom:455.330700px;}
.y2ee{bottom:457.372800px;}
.y36{bottom:458.436300px;}
.y1b8{bottom:461.013150px;}
.y5a{bottom:462.414300px;}
.y2c8{bottom:464.520300px;}
.y1a0{bottom:464.904300px;}
.yb3{bottom:466.290600px;}
.y9e{bottom:466.290750px;}
.y337{bottom:466.480800px;}
.y232{bottom:468.396450px;}
.y235{bottom:468.412950px;}
.yd4{bottom:469.090350px;}
.y14e{bottom:469.108350px;}
.y116{bottom:469.500300px;}
.y284{bottom:469.803300px;}
.y1ef{bottom:470.655750px;}
.y1f2{bottom:470.672250px;}
.y132{bottom:471.090300px;}
.y357{bottom:471.360300px;}
.y170{bottom:471.378300px;}
.y315{bottom:473.311800px;}
.yf8{bottom:474.114300px;}
.y2a4{bottom:476.740350px;}
.y2ed{bottom:477.024300px;}
.y263{bottom:477.241800px;}
.y35{bottom:479.730300px;}
.y1b7{bottom:482.019150px;}
.y11{bottom:483.334650px;}
.y59{bottom:483.564300px;}
.y2c7{bottom:486.570300px;}
.y336{bottom:486.577800px;}
.y19f{bottom:487.260300px;}
.yb2{bottom:487.890600px;}
.y9d{bottom:487.890750px;}
.y99{bottom:488.585700px;}
.y231{bottom:488.938950px;}
.y234{bottom:488.955450px;}
.yd3{bottom:490.834350px;}
.y14d{bottom:490.852350px;}
.y356{bottom:491.011800px;}
.y115{bottom:491.244300px;}
.y283{bottom:491.403300px;}
.y131{bottom:492.834300px;}
.y314{bottom:493.111800px;}
.y16f{bottom:493.122300px;}
.y1eb{bottom:494.366250px;}
.y1ee{bottom:494.382750px;}
.yf7{bottom:495.714300px;}
.y262{bottom:495.985800px;}
.y2ec{bottom:496.675800px;}
.y2a3{bottom:498.934350px;}
.y34{bottom:501.024300px;}
.y1b6{bottom:503.025150px;}
.y58{bottom:504.714300px;}
.y335{bottom:506.674800px;}
.y2c6{bottom:508.620300px;}
.y98{bottom:508.682700px;}
.yb1{bottom:509.490600px;}
.y9c{bottom:509.490750px;}
.y19e{bottom:509.616300px;}
.yd2{bottom:512.578350px;}
.y14c{bottom:512.596350px;}
.y313{bottom:512.911800px;}
.y114{bottom:512.988300px;}
.y282{bottom:513.003300px;}
.y22d{bottom:513.523950px;}
.y230{bottom:513.540450px;}
.y130{bottom:514.578300px;}
.y1ea{bottom:514.760250px;}
.y1ed{bottom:514.776750px;}
.y16e{bottom:514.866300px;}
.y2eb{bottom:516.327300px;}
.yf6{bottom:517.314300px;}
.y2a2{bottom:521.128350px;}
.y33{bottom:522.318300px;}
.y261{bottom:523.969800px;}
.y1b5{bottom:524.031150px;}
.y57{bottom:525.864300px;}
.y334{bottom:526.771800px;}
.y355{bottom:528.361800px;}
.y97{bottom:528.779700px;}
.y2c5{bottom:530.670300px;}
.yb0{bottom:531.090600px;}
.y9b{bottom:531.090750px;}
.y19d{bottom:531.972300px;}
.y312{bottom:532.711800px;}
.y22c{bottom:534.066450px;}
.y22f{bottom:534.082950px;}
.yd1{bottom:534.322350px;}
.y14b{bottom:534.340350px;}
.y10{bottom:534.417600px;}
.y281{bottom:534.603300px;}
.y113{bottom:534.732300px;}
.y1e9{bottom:535.154250px;}
.y1ec{bottom:535.170750px;}
.y2ea{bottom:535.978800px;}
.y12f{bottom:536.322300px;}
.y16d{bottom:536.610300px;}
.yf5{bottom:538.914300px;}
.y260{bottom:542.713800px;}
.y2a1{bottom:543.322350px;}
.y32{bottom:543.612300px;}
.y1b4{bottom:545.037150px;}
.y333{bottom:546.868800px;}
.y56{bottom:547.014300px;}
.y96{bottom:548.876700px;}
.y311{bottom:552.511800px;}
.yaf{bottom:552.690600px;}
.y9a{bottom:552.690750px;}
.y2c4{bottom:552.720300px;}
.yf{bottom:553.920600px;}
.y19c{bottom:554.328300px;}
.y22b{bottom:554.608950px;}
.y22e{bottom:554.625450px;}
.y2e9{bottom:555.630300px;}
.yd0{bottom:556.066350px;}
.y14a{bottom:556.084350px;}
.y280{bottom:556.203300px;}
.y112{bottom:556.476300px;}
.y12e{bottom:558.066300px;}
.y16c{bottom:558.354300px;}
.y1e5{bottom:558.864750px;}
.y1e8{bottom:558.881250px;}
.yf4{bottom:560.514300px;}
.y31{bottom:564.906300px;}
.y2a0{bottom:565.516350px;}
.y354{bottom:565.567800px;}
.y332{bottom:566.965800px;}
.y55{bottom:568.164300px;}
.y95{bottom:568.973700px;}
.y25f{bottom:570.697800px;}
.y310{bottom:572.311800px;}
.ye{bottom:573.423600px;}
.y2c3{bottom:574.770300px;}
.y2e8{bottom:575.281800px;}
.y19b{bottom:576.684300px;}
.y27f{bottom:577.803300px;}
.ycf{bottom:577.810350px;}
.y149{bottom:577.828350px;}
.y111{bottom:578.220300px;}
.y227{bottom:578.319450px;}
.y22a{bottom:578.335950px;}
.y1e4{bottom:579.258750px;}
.y1e7{bottom:579.275250px;}
.y12d{bottom:579.810300px;}
.y16b{bottom:580.098300px;}
.yf3{bottom:582.114300px;}
.y30{bottom:586.200300px;}
.y353{bottom:586.861800px;}
.y331{bottom:587.062800px;}
.y29f{bottom:587.710350px;}
.y94{bottom:589.070700px;}
.y54{bottom:589.314300px;}
.y25e{bottom:589.441800px;}
.y30f{bottom:592.111800px;}
.yd{bottom:592.926600px;}
.y1c7{bottom:593.471400px;}
.y2e7{bottom:594.933300px;}
.y2c2{bottom:596.820300px;}
.y70{bottom:598.390350px;}
.y226{bottom:598.861950px;}
.y229{bottom:598.878450px;}
.y19a{bottom:599.040300px;}
.yae{bottom:599.565750px;}
.yc3{bottom:599.565900px;}
.y148{bottom:599.572350px;}
.y1e3{bottom:599.652750px;}
.y1e6{bottom:599.669250px;}
.y110{bottom:599.964300px;}
.y12c{bottom:601.554300px;}
.y16a{bottom:601.842300px;}
.yf2{bottom:603.714300px;}
.y330{bottom:607.159800px;}
.y2f{bottom:607.494300px;}
.y352{bottom:608.161800px;}
.y93{bottom:609.167700px;}
.y29e{bottom:609.760350px;}
.y53{bottom:610.464300px;}
.y30e{bottom:611.911800px;}
.yc{bottom:612.429600px;}
.y2e6{bottom:614.584800px;}
.yce{bottom:614.718300px;}
.y27e{bottom:617.096850px;}
.y25d{bottom:617.425800px;}
.y2c1{bottom:618.870300px;}
.y225{bottom:619.404450px;}
.y228{bottom:619.420950px;}
.y147{bottom:621.316350px;}
.y199{bottom:621.396300px;}
.y12b{bottom:623.298300px;}
.y1df{bottom:623.363250px;}
.y1e2{bottom:623.379750px;}
.y169{bottom:623.586300px;}
.yf1{bottom:625.314300px;}
.y32f{bottom:627.256800px;}
.y6c{bottom:627.546000px;}
.y2e{bottom:628.788300px;}
.y92{bottom:629.264700px;}
.y6d{bottom:629.641500px;}
.y6e{bottom:631.027500px;}
.y52{bottom:631.614300px;}
.y30d{bottom:631.711800px;}
.y29d{bottom:631.810350px;}
.yb{bottom:631.932600px;}
.y2e5{bottom:634.236300px;}
.y25c{bottom:636.169800px;}
.y10f{bottom:636.864300px;}
.y27d{bottom:637.193850px;}
.y2c0{bottom:640.920300px;}
.y146{bottom:643.060350px;}
.y221{bottom:643.114950px;}
.y224{bottom:643.131450px;}
.y198{bottom:643.752300px;}
.y1de{bottom:643.757250px;}
.y1e1{bottom:643.773750px;}
.y12a{bottom:645.042300px;}
.y168{bottom:645.330300px;}
.yf0{bottom:646.914300px;}
.y32e{bottom:647.353800px;}
.y91{bottom:649.361700px;}
.y2d{bottom:650.082300px;}
.y6f{bottom:650.612850px;}
.ya{bottom:651.435600px;}
.y30c{bottom:651.511800px;}
.y51{bottom:652.764300px;}
.y2e4{bottom:653.887800px;}
.y351{bottom:655.261800px;}
.y29c{bottom:662.364300px;}
.y2bf{bottom:662.970300px;}
.y220{bottom:663.657450px;}
.y223{bottom:663.673950px;}
.y1dd{bottom:664.151250px;}
.y25b{bottom:664.153800px;}
.y1e0{bottom:664.167750px;}
.y27c{bottom:665.177850px;}
.y197{bottom:666.108300px;}
.ycd{bottom:666.720300px;}
.y129{bottom:666.786300px;}
.y167{bottom:667.074300px;}
.y32d{bottom:667.450800px;}
.yef{bottom:668.514300px;}
.y90{bottom:669.458700px;}
.y9{bottom:670.938600px;}
.y30b{bottom:671.311800px;}
.y2c{bottom:671.376300px;}
.y350{bottom:672.961800px;}
.y2e3{bottom:673.539300px;}
.y10e{bottom:673.806300px;}
.y50{bottom:673.914300px;}
.y145{bottom:679.968300px;}
.y25a{bottom:682.897800px;}
.y21f{bottom:684.199950px;}
.y222{bottom:684.216450px;}
.y2be{bottom:685.020300px;}
.y27b{bottom:685.274850px;}
.y32c{bottom:687.547800px;}
.y1d9{bottom:687.861750px;}
.y1dc{bottom:687.878250px;}
.y196{bottom:688.410300px;}
.ycc{bottom:688.464300px;}
.y128{bottom:688.530300px;}
.y166{bottom:688.818300px;}
.y10d{bottom:688.962300px;}
.y8f{bottom:689.555700px;}
.yee{bottom:690.114300px;}
.y34f{bottom:690.661800px;}
.y30a{bottom:691.111800px;}
.y2b{bottom:692.670300px;}
.y2e2{bottom:693.190800px;}
.y4f{bottom:695.064300px;}
.y8{bottom:698.942550px;}
.y144{bottom:701.712300px;}
.y2bd{bottom:707.070300px;}
.y32b{bottom:707.644800px;}
.y21b{bottom:707.910450px;}
.y1d8{bottom:708.255750px;}
.y1db{bottom:708.272250px;}
.y34e{bottom:708.361800px;}
.y8e{bottom:709.652700px;}
.y127{bottom:710.274300px;}
.y165{bottom:710.562300px;}
.y10c{bottom:710.706300px;}
.y195{bottom:710.766300px;}
.y259{bottom:710.881800px;}
.y309{bottom:710.911800px;}
.yed{bottom:711.714300px;}
.y2e1{bottom:712.842300px;}
.y27a{bottom:713.258850px;}
.y2a{bottom:713.964300px;}
.y4e{bottom:716.214300px;}
.y32a{bottom:727.741800px;}
.y21a{bottom:728.304450px;}
.y21e{bottom:728.320950px;}
.y1d7{bottom:728.649750px;}
.y1da{bottom:728.666250px;}
.y29b{bottom:728.868300px;}
.y2bc{bottom:729.120300px;}
.y258{bottom:729.625800px;}
.y8d{bottom:729.749700px;}
.y308{bottom:730.711800px;}
.y126{bottom:732.018300px;}
.y164{bottom:732.306300px;}
.y10b{bottom:732.450300px;}
.y2e0{bottom:732.493800px;}
.y194{bottom:733.122300px;}
.yec{bottom:733.314300px;}
.y279{bottom:733.355850px;}
.y29{bottom:735.258300px;}
.y4d{bottom:737.364300px;}
.y34d{bottom:740.761800px;}
.y329{bottom:747.838800px;}
.y219{bottom:748.698450px;}
.y21d{bottom:748.714950px;}
.y307{bottom:750.511800px;}
.y29a{bottom:751.062300px;}
.y2bb{bottom:751.170300px;}
.y2df{bottom:752.145300px;}
.y1d6{bottom:752.376750px;}
.y278{bottom:753.452850px;}
.y143{bottom:753.714300px;}
.ycb{bottom:753.762300px;}
.y163{bottom:754.050300px;}
.y10a{bottom:754.194300px;}
.yeb{bottom:754.914300px;}
.y193{bottom:755.478300px;}
.y28{bottom:756.552300px;}
.y257{bottom:757.609800px;}
.y7{bottom:758.146500px;}
.y34c{bottom:758.461800px;}
.y4c{bottom:758.514300px;}
.y6b{bottom:759.182700px;}
.y328{bottom:767.935800px;}
.y218{bottom:769.092450px;}
.y21c{bottom:769.108950px;}
.y306{bottom:770.311800px;}
.y2de{bottom:771.796800px;}
.y2ba{bottom:773.220300px;}
.y299{bottom:773.256300px;}
.y142{bottom:775.488300px;}
.yca{bottom:775.506300px;}
.y162{bottom:775.794300px;}
.y109{bottom:775.938300px;}
.y1ce{bottom:776.087250px;}
.y1d5{bottom:776.103750px;}
.y34b{bottom:776.161800px;}
.y256{bottom:776.353800px;}
.yea{bottom:776.514300px;}
.y192{bottom:777.834300px;}
.y27{bottom:777.846300px;}
.y4b{bottom:779.664300px;}
.y277{bottom:781.436850px;}
.y327{bottom:788.032800px;}
.y305{bottom:790.111800px;}
.y2dd{bottom:791.448300px;}
.y214{bottom:792.802950px;}
.y217{bottom:792.819450px;}
.y34a{bottom:793.861800px;}
.y2b9{bottom:795.270300px;}
.y298{bottom:795.450300px;}
.y1cd{bottom:796.184250px;}
.y1d4{bottom:796.200750px;}
.yc9{bottom:797.250300px;}
.y161{bottom:797.538300px;}
.y108{bottom:797.682300px;}
.ye9{bottom:798.114300px;}
.y6{bottom:798.952500px;}
.y26{bottom:799.140300px;}
.y191{bottom:800.190300px;}
.y4a{bottom:800.814300px;}
.y276{bottom:801.533850px;}
.y255{bottom:804.337800px;}
.y326{bottom:808.129800px;}
.y304{bottom:809.911800px;}
.y2dc{bottom:811.099800px;}
.y8c{bottom:812.127300px;}
.y213{bottom:813.196950px;}
.y216{bottom:813.213450px;}
.y1cc{bottom:816.281250px;}
.y1d3{bottom:816.297750px;}
.y2b8{bottom:817.320300px;}
.y297{bottom:817.644300px;}
.yc8{bottom:818.994300px;}
.y160{bottom:819.282300px;}
.y107{bottom:819.426300px;}
.ye8{bottom:819.714300px;}
.y25{bottom:820.434300px;}
.y49{bottom:821.964300px;}
.y190{bottom:822.546300px;}
.y325{bottom:828.226800px;}
.y5{bottom:829.246500px;}
.y275{bottom:829.517850px;}
.y303{bottom:829.711800px;}
.y2db{bottom:830.751300px;}
.y349{bottom:832.861800px;}
.y212{bottom:833.590950px;}
.y215{bottom:833.607450px;}
.y254{bottom:834.549300px;}
.y1cb{bottom:836.378250px;}
.y1d2{bottom:836.394750px;}
.y2b7{bottom:839.370300px;}
.y296{bottom:839.838300px;}
.yc7{bottom:840.738300px;}
.y15f{bottom:841.026300px;}
.y106{bottom:841.170300px;}
.ye7{bottom:841.314300px;}
.y24{bottom:841.890300px;}
.y48{bottom:843.114300px;}
.y18f{bottom:844.902300px;}
.y324{bottom:848.323800px;}
.y302{bottom:849.511800px;}
.y274{bottom:849.614850px;}
.y2da{bottom:850.402800px;}
.y253{bottom:854.646300px;}
.y1ca{bottom:856.475250px;}
.y1d1{bottom:856.491750px;}
.y20e{bottom:857.301450px;}
.y211{bottom:857.317950px;}
.y2b6{bottom:861.420300px;}
.y295{bottom:862.032300px;}
.yc6{bottom:862.482300px;}
.y15e{bottom:862.770300px;}
.ye6{bottom:862.914300px;}
.y23{bottom:863.346300px;}
.y47{bottom:864.264300px;}
.y18e{bottom:867.258300px;}
.y323{bottom:868.420800px;}
.y301{bottom:869.311800px;}
.y2d9{bottom:870.054300px;}
.y348{bottom:870.202800px;}
.y252{bottom:874.743300px;}
.y1c9{bottom:876.572250px;}
.y1d0{bottom:876.588750px;}
.y20d{bottom:877.695450px;}
.y210{bottom:877.711950px;}
.y273{bottom:879.826350px;}
.y2b5{bottom:883.470300px;}
.y4{bottom:884.206800px;}
.yc5{bottom:884.226300px;}
.ye5{bottom:884.514300px;}
.y22{bottom:884.802300px;}
.y46{bottom:885.414300px;}
.y322{bottom:888.517800px;}
.y300{bottom:889.111800px;}
.y18d{bottom:889.614300px;}
.y2d8{bottom:889.705800px;}
.y6a{bottom:894.543300px;}
.y1c8{bottom:896.669250px;}
.y1cf{bottom:896.685750px;}
.y20c{bottom:898.089450px;}
.y20f{bottom:898.105950px;}
.y272{bottom:899.923350px;}
.y2b4{bottom:905.520300px;}
.yc4{bottom:905.970300px;}
.ye4{bottom:906.114300px;}
.y21{bottom:906.258300px;}
.y294{bottom:906.420300px;}
.y45{bottom:906.564300px;}
.y2ff{bottom:908.614800px;}
.y251{bottom:908.911800px;}
.y2d7{bottom:909.208800px;}
.y3{bottom:910.711800px;}
.y8b{bottom:920.020350px;}
.y20b{bottom:922.146450px;}
.y20{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.hd{height:26.199902px;}
.he{height:28.747266px;}
.ha{height:30.568359px;}
.h3{height:35.663086px;}
.h2{height:39.990234px;}
.h8{height:40.757812px;}
.h15{height:41.396484px;}
.h14{height:43.989258px;}
.h13{height:45.536133px;}
.hf{height:47.988281px;}
.hb{height:48.399902px;}
.h10{height:49.675781px;}
.h5{height:50.947266px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.h12{height:61.352719px;}
.h9{height:62.818031px;}
.hc{height:63.322031px;}
.h11{height:63.538031px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:76.535400px;}
.x12{left:80.974950px;}
.x1b{left:84.822900px;}
.x7{left:86.722650px;}
.x1{left:97.795350px;}
.x17{left:102.220950px;}
.x22{left:106.082850px;}
.xc{left:107.982450px;}
.x9{left:109.496100px;}
.x15{left:113.925450px;}
.x6{left:119.053350px;}
.x8{left:129.596100px;}
.x16{left:135.171450px;}
.x29{left:140.307150px;}
.x2{left:143.170350px;}
.xa{left:149.690100px;}
.xd{left:150.855900px;}
.x1a{left:170.078700px;}
.x13{left:171.807450px;}
.x1c{left:176.051400px;}
.xb{left:180.000000px;}
.x18{left:193.053450px;}
.x23{left:197.311350px;}
.x2c{left:200.113200px;}
.xe{left:201.259800px;}
.x10{left:208.763400px;}
.xf{left:222.511800px;}
.x11{left:224.862000px;}
.x2d{left:239.737800px;}
.x1d{left:255.779400px;}
.x3{left:260.997600px;}
.x24{left:277.039350px;}
.x1e{left:311.978400px;}
.x25{left:333.238350px;}
.x1f{left:373.770900px;}
.x14{left:374.839950px;}
.x26{left:395.030850px;}
.x19{left:396.085950px;}
.x20{left:499.203900px;}
.x27{left:520.463850px;}
.x2b{left:531.240300px;}
.x2a{left:540.203550px;}
.x21{left:575.549400px;}
.x4{left:579.664350px;}
.x28{left:596.809350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v3{vertical-align:23.232000pt;}
.ls6a{letter-spacing:-5.866667pt;}
.ls2a{letter-spacing:-2.496000pt;}
.ls5d{letter-spacing:-1.760000pt;}
.ls47{letter-spacing:-1.024000pt;}
.ls3f{letter-spacing:-0.962667pt;}
.ls2c{letter-spacing:-0.896000pt;}
.ls2d{letter-spacing:-0.832000pt;}
.ls32{letter-spacing:-0.704000pt;}
.ls4b{letter-spacing:-0.645333pt;}
.ls41{letter-spacing:-0.586667pt;}
.ls4c{letter-spacing:-0.528000pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls3e{letter-spacing:-0.506667pt;}
.ls5e{letter-spacing:-0.469333pt;}
.ls2e{letter-spacing:-0.448000pt;}
.ls60{letter-spacing:-0.410667pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.352000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.293333pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls44{letter-spacing:-0.234667pt;}
.ls1f{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls6b{letter-spacing:-0.117333pt;}
.ls2b{letter-spacing:-0.101333pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls43{letter-spacing:-0.058667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.002133pt;}
.ls17{letter-spacing:0.034667pt;}
.ls69{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.064000pt;}
.ls55{letter-spacing:0.117333pt;}
.ls15{letter-spacing:0.126933pt;}
.ls19{letter-spacing:0.128000pt;}
.ls65{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls53{letter-spacing:0.211200pt;}
.ls6c{letter-spacing:0.234667pt;}
.ls10{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.257600pt;}
.ls30{letter-spacing:0.288000pt;}
.ls5b{letter-spacing:0.293333pt;}
.ls3b{letter-spacing:0.307200pt;}
.ls24{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.352000pt;}
.ls18{letter-spacing:0.384000pt;}
.ls39{letter-spacing:0.390400pt;}
.ls6{letter-spacing:0.410667pt;}
.lsf{letter-spacing:0.448000pt;}
.ls66{letter-spacing:0.469333pt;}
.ls1e{letter-spacing:0.512000pt;}
.ls50{letter-spacing:0.528000pt;}
.lsb{letter-spacing:0.576000pt;}
.ls4f{letter-spacing:0.586667pt;}
.lsc{letter-spacing:0.640000pt;}
.ls5{letter-spacing:0.645333pt;}
.ls8{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:0.761600pt;}
.ls62{letter-spacing:0.762667pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls38{letter-spacing:0.832000pt;}
.ls25{letter-spacing:1.024000pt;}
.ls46{letter-spacing:2.048000pt;}
.ls37{letter-spacing:2.073600pt;}
.ls36{letter-spacing:2.560000pt;}
.ls29{letter-spacing:3.090667pt;}
.ls3c{letter-spacing:3.136000pt;}
.ls20{letter-spacing:3.200000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls34{letter-spacing:3.904000pt;}
.ls28{letter-spacing:4.032000pt;}
.ls33{letter-spacing:4.256000pt;}
.ls23{letter-spacing:4.672000pt;}
.ls22{letter-spacing:4.736000pt;}
.ls1a{letter-spacing:4.800000pt;}
.ls35{letter-spacing:4.864000pt;}
.ls3{letter-spacing:5.333333pt;}
.ls21{letter-spacing:5.734400pt;}
.ls1{letter-spacing:5.866667pt;}
.ls63{letter-spacing:5.984000pt;}
.ls4{letter-spacing:6.400000pt;}
.ls1d{letter-spacing:7.616000pt;}
.ls45{letter-spacing:8.204800pt;}
.ls3a{letter-spacing:8.512000pt;}
.ls3d{letter-spacing:8.832000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls49{letter-spacing:9.152000pt;}
.ls57{letter-spacing:9.210667pt;}
.ls68{letter-spacing:9.269333pt;}
.ls58{letter-spacing:9.328000pt;}
.ls4d{letter-spacing:9.621333pt;}
.ls26{letter-spacing:9.632000pt;}
.ls48{letter-spacing:9.680000pt;}
.ls4a{letter-spacing:9.738667pt;}
.ls64{letter-spacing:9.797333pt;}
.ls52{letter-spacing:9.856000pt;}
.ls5a{letter-spacing:10.032000pt;}
.ls5c{letter-spacing:10.325333pt;}
.ls5f{letter-spacing:10.442667pt;}
.ls61{letter-spacing:10.501333pt;}
.ls56{letter-spacing:11.909333pt;}
.ls4e{letter-spacing:12.290667pt;}
.ls51{letter-spacing:13.904000pt;}
.ls59{letter-spacing:16.837333pt;}
.ls67{letter-spacing:17.600000pt;}
.ls54{letter-spacing:18.128000pt;}
.ls40{letter-spacing:65.366400pt;}
.ws63{word-spacing:-34.085333pt;}
.ws50{word-spacing:-26.224000pt;}
.ws1{word-spacing:-24.384000pt;}
.ws4a{word-spacing:-20.320000pt;}
.ws34{word-spacing:-18.112000pt;}
.ws2f{word-spacing:-17.984000pt;}
.ws3a{word-spacing:-17.792000pt;}
.ws6a{word-spacing:-17.600000pt;}
.ws2a{word-spacing:-17.472000pt;}
.ws3d{word-spacing:-16.485333pt;}
.wse{word-spacing:-16.448000pt;}
.ws42{word-spacing:-15.898667pt;}
.ws24{word-spacing:-15.872000pt;}
.ws1e{word-spacing:-15.808000pt;}
.ws25{word-spacing:-15.616000pt;}
.wsd{word-spacing:-15.488000pt;}
.ws36{word-spacing:-15.424000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws62{word-spacing:-14.901333pt;}
.ws51{word-spacing:-14.725333pt;}
.ws43{word-spacing:-14.490667pt;}
.ws61{word-spacing:-13.904000pt;}
.ws6c{word-spacing:-13.173333pt;}
.wsf{word-spacing:-10.790400pt;}
.ws5f{word-spacing:-10.501333pt;}
.ws5a{word-spacing:-10.442667pt;}
.ws53{word-spacing:-10.325333pt;}
.ws5d{word-spacing:-10.032000pt;}
.ws56{word-spacing:-9.856000pt;}
.ws65{word-spacing:-9.797333pt;}
.ws4d{word-spacing:-9.738667pt;}
.ws4b{word-spacing:-9.680000pt;}
.ws52{word-spacing:-9.621333pt;}
.ws5b{word-spacing:-9.328000pt;}
.ws64{word-spacing:-9.269333pt;}
.ws58{word-spacing:-9.210667pt;}
.ws4c{word-spacing:-9.152000pt;}
.ws5{word-spacing:-9.066667pt;}
.ws20{word-spacing:-7.616000pt;}
.wsb{word-spacing:-6.400000pt;}
.ws4{word-spacing:-5.866667pt;}
.ws6{word-spacing:-5.333333pt;}
.ws1d{word-spacing:-4.800000pt;}
.ws3{word-spacing:-3.733333pt;}
.ws23{word-spacing:-3.200000pt;}
.ws39{word-spacing:-3.136000pt;}
.ws46{word-spacing:-2.944000pt;}
.ws49{word-spacing:-1.728000pt;}
.ws30{word-spacing:-1.216000pt;}
.ws27{word-spacing:-1.024000pt;}
.ws38{word-spacing:-0.832000pt;}
.ws1f{word-spacing:-0.768000pt;}
.ws60{word-spacing:-0.762667pt;}
.ws7{word-spacing:-0.704000pt;}
.ws9{word-spacing:-0.645333pt;}
.ws16{word-spacing:-0.640000pt;}
.ws54{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.576000pt;}
.ws55{word-spacing:-0.528000pt;}
.ws21{word-spacing:-0.512000pt;}
.ws69{word-spacing:-0.469333pt;}
.ws11{word-spacing:-0.448000pt;}
.wsa{word-spacing:-0.410667pt;}
.ws1a{word-spacing:-0.384000pt;}
.ws6f{word-spacing:-0.352000pt;}
.ws26{word-spacing:-0.320000pt;}
.ws5e{word-spacing:-0.293333pt;}
.ws13{word-spacing:-0.256000pt;}
.ws6e{word-spacing:-0.234667pt;}
.ws1b{word-spacing:-0.192000pt;}
.ws67{word-spacing:-0.176000pt;}
.ws1c{word-spacing:-0.128000pt;}
.ws57{word-spacing:-0.117333pt;}
.ws19{word-spacing:-0.064000pt;}
.ws66{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws45{word-spacing:0.058667pt;}
.ws15{word-spacing:0.064000pt;}
.ws29{word-spacing:0.101333pt;}
.ws6b{word-spacing:0.117333pt;}
.wsc{word-spacing:0.128000pt;}
.ws22{word-spacing:0.192000pt;}
.ws6d{word-spacing:0.234667pt;}
.ws18{word-spacing:0.256000pt;}
.ws41{word-spacing:0.293333pt;}
.ws17{word-spacing:0.320000pt;}
.ws8{word-spacing:0.352000pt;}
.ws10{word-spacing:0.384000pt;}
.ws5c{word-spacing:0.410667pt;}
.ws2d{word-spacing:0.448000pt;}
.ws59{word-spacing:0.469333pt;}
.ws3b{word-spacing:0.506667pt;}
.ws2e{word-spacing:0.512000pt;}
.ws4f{word-spacing:0.528000pt;}
.ws40{word-spacing:0.586667pt;}
.ws4e{word-spacing:0.645333pt;}
.ws31{word-spacing:0.704000pt;}
.ws2c{word-spacing:0.832000pt;}
.ws2b{word-spacing:0.896000pt;}
.ws3c{word-spacing:0.962667pt;}
.ws48{word-spacing:1.024000pt;}
.ws28{word-spacing:2.496000pt;}
.ws32{word-spacing:3.712000pt;}
.ws33{word-spacing:3.904000pt;}
.ws37{word-spacing:5.568000pt;}
.ws68{word-spacing:5.866667pt;}
.ws12{word-spacing:7.296000pt;}
.ws35{word-spacing:7.872000pt;}
.ws47{word-spacing:7.936000pt;}
.ws3f{word-spacing:38.426667pt;}
.ws44{word-spacing:41.676800pt;}
.ws3e{word-spacing:454.256000pt;}
._15{margin-left:-983.108267pt;}
._d{margin-left:-15.604267pt;}
._31{margin-left:-13.554133pt;}
._17{margin-left:-12.372800pt;}
._1a{margin-left:-10.833867pt;}
._7{margin-left:-9.093867pt;}
._6{margin-left:-7.610133pt;}
._2{margin-left:-5.989867pt;}
._1{margin-left:-4.963200pt;}
._11{margin-left:-3.654400pt;}
._4{margin-left:-2.560000pt;}
._b{margin-left:-1.320000pt;}
._12{width:0.889600pt;}
._a{width:1.824533pt;}
._10{width:2.733867pt;}
._0{width:3.733333pt;}
._e{width:4.972267pt;}
._9{width:6.037867pt;}
._f{width:7.057600pt;}
._c{width:8.158933pt;}
._8{width:9.066667pt;}
._3{width:10.008533pt;}
._16{width:10.912000pt;}
._18{width:11.873067pt;}
._19{width:13.241333pt;}
._34{width:14.132800pt;}
._5{width:15.467733pt;}
._33{width:18.169067pt;}
._32{width:19.336533pt;}
._2b{width:46.602667pt;}
._13{width:50.598400pt;}
._1c{width:54.912000pt;}
._2a{width:60.896000pt;}
._14{width:66.266133pt;}
._30{width:68.205867pt;}
._1f{width:77.381333pt;}
._29{width:91.613867pt;}
._21{width:94.025067pt;}
._1d{width:100.662400pt;}
._2c{width:102.760533pt;}
._23{width:104.819733pt;}
._20{width:130.093333pt;}
._25{width:132.528000pt;}
._2d{width:143.299200pt;}
._1e{width:145.117867pt;}
._2e{width:152.030933pt;}
._26{width:153.272533pt;}
._2f{width:155.726933pt;}
._24{width:160.371200pt;}
._27{width:169.865600pt;}
._22{width:205.920000pt;}
._28{width:250.307200pt;}
._1b{width:774.986667pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.857200pt;}
.y1c6{bottom:124.719067pt;}
.y69{bottom:124.720400pt;}
.y1ad{bottom:124.721733pt;}
.y44{bottom:124.723067pt;}
.y2d6{bottom:126.114133pt;}
.y1f{bottom:126.395333pt;}
.yc2{bottom:126.480533pt;}
.yad{bottom:126.480667pt;}
.y8a{bottom:126.858667pt;}
.ye3{bottom:127.049200pt;}
.y15d{bottom:127.065200pt;}
.y2fe{bottom:127.065600pt;}
.y125{bottom:127.413600pt;}
.y367{bottom:127.765600pt;}
.y2b3{bottom:127.849200pt;}
.y1b3{bottom:127.992400pt;}
.y18c{bottom:128.698933pt;}
.y347{bottom:128.825600pt;}
.y141{bottom:128.826933pt;}
.y321{bottom:128.988267pt;}
.y17f{bottom:129.082933pt;}
.y293{bottom:129.602933pt;}
.y207{bottom:131.099333pt;}
.y24d{bottom:131.159067pt;}
.y250{bottom:131.173733pt;}
.y7b{bottom:131.878400pt;}
.y271{bottom:133.462933pt;}
.y1c5{bottom:139.387067pt;}
.y68{bottom:139.388400pt;}
.y1ac{bottom:139.389733pt;}
.y2d5{bottom:144.242133pt;}
.y43{bottom:144.324400pt;}
.y2fd{bottom:144.533600pt;}
.y1e{bottom:144.923333pt;}
.y366{bottom:145.233600pt;}
.yc1{bottom:145.680533pt;}
.yac{bottom:145.680667pt;}
.y89{bottom:146.058667pt;}
.ye2{bottom:146.377200pt;}
.y15c{bottom:146.393200pt;}
.y320{bottom:146.588267pt;}
.y346{bottom:146.689600pt;}
.y124{bottom:146.741600pt;}
.y1b2{bottom:147.192400pt;}
.y2b2{bottom:147.577200pt;}
.y18b{bottom:148.026933pt;}
.y140{bottom:148.154933pt;}
.y17e{bottom:148.410933pt;}
.y292{bottom:148.802933pt;}
.y206{bottom:149.359333pt;}
.y20a{bottom:149.374000pt;}
.y24c{bottom:149.419067pt;}
.y24f{bottom:149.433733pt;}
.y7a{bottom:149.610400pt;}
.y270{bottom:150.124267pt;}
.y1c4{bottom:154.055067pt;}
.y67{bottom:154.056400pt;}
.y105{bottom:158.991067pt;}
.y2fc{bottom:162.001600pt;}
.y2d4{bottom:162.370133pt;}
.y365{bottom:162.701600pt;}
.y1d{bottom:163.851333pt;}
.y31f{bottom:164.188267pt;}
.y345{bottom:164.553600pt;}
.yc0{bottom:164.880533pt;}
.yab{bottom:164.880667pt;}
.y88{bottom:165.258667pt;}
.ye1{bottom:165.705200pt;}
.y15b{bottom:165.721200pt;}
.y123{bottom:166.069600pt;}
.y1b1{bottom:166.392400pt;}
.y2b1{bottom:167.305200pt;}
.y79{bottom:167.342400pt;}
.y18a{bottom:167.354933pt;}
.y13f{bottom:167.482933pt;}
.y205{bottom:167.619333pt;}
.y209{bottom:167.634000pt;}
.y24b{bottom:167.679067pt;}
.y24e{bottom:167.693733pt;}
.y17d{bottom:167.738933pt;}
.y291{bottom:168.002933pt;}
.y1c3{bottom:168.723067pt;}
.y72{bottom:169.861867pt;}
.y66{bottom:173.657733pt;}
.y26f{bottom:174.998933pt;}
.y2fb{bottom:179.469600pt;}
.y42{bottom:179.706933pt;}
.y2d3{bottom:180.498133pt;}
.y364{bottom:181.636267pt;}
.y31e{bottom:181.788267pt;}
.y344{bottom:182.417600pt;}
.y1c{bottom:182.779333pt;}
.ybf{bottom:184.080533pt;}
.yaa{bottom:184.080667pt;}
.y87{bottom:184.458667pt;}
.ye0{bottom:185.033200pt;}
.y15a{bottom:185.049200pt;}
.y78{bottom:185.074400pt;}
.y122{bottom:185.397600pt;}
.y1b0{bottom:185.592400pt;}
.y204{bottom:185.879333pt;}
.y208{bottom:185.894000pt;}
.y189{bottom:186.682933pt;}
.y13e{bottom:186.810933pt;}
.y2b0{bottom:187.033200pt;}
.y17c{bottom:187.066933pt;}
.y290{bottom:187.202933pt;}
.y65{bottom:188.324400pt;}
.y247{bottom:188.769733pt;}
.y104{bottom:191.034933pt;}
.y370{bottom:191.388267pt;}
.y26e{bottom:191.660267pt;}
.y1ab{bottom:194.656267pt;}
.y2fa{bottom:196.937600pt;}
.y2d2{bottom:198.626133pt;}
.y41{bottom:198.906933pt;}
.y343{bottom:200.281600pt;}
.y363{bottom:200.570933pt;}
.y77{bottom:202.806400pt;}
.y64{bottom:202.991067pt;}
.ybe{bottom:203.280533pt;}
.ya9{bottom:203.280667pt;}
.y86{bottom:203.658667pt;}
.ydf{bottom:204.361200pt;}
.y159{bottom:204.377200pt;}
.y121{bottom:204.725600pt;}
.y1af{bottom:204.792400pt;}
.y188{bottom:206.010933pt;}
.y13d{bottom:206.138933pt;}
.y17b{bottom:206.394933pt;}
.y28f{bottom:206.402933pt;}
.y2af{bottom:206.761200pt;}
.y200{bottom:206.955333pt;}
.y203{bottom:206.970000pt;}
.y246{bottom:207.029733pt;}
.y24a{bottom:207.044400pt;}
.y36f{bottom:207.388267pt;}
.y1b{bottom:209.271733pt;}
.y103{bottom:210.234933pt;}
.y2f9{bottom:214.405600pt;}
.y1aa{bottom:214.528267pt;}
.y31d{bottom:215.388267pt;}
.y26d{bottom:216.534933pt;}
.y2d1{bottom:216.754133pt;}
.y40{bottom:218.106933pt;}
.y342{bottom:218.145600pt;}
.y362{bottom:219.505600pt;}
.y76{bottom:220.538400pt;}
.ybd{bottom:222.480533pt;}
.ya8{bottom:222.480667pt;}
.y85{bottom:222.858667pt;}
.y1c2{bottom:223.117467pt;}
.y36e{bottom:223.388267pt;}
.yde{bottom:223.689200pt;}
.y158{bottom:223.705200pt;}
.y120{bottom:224.053600pt;}
.y1ff{bottom:225.215333pt;}
.y202{bottom:225.230000pt;}
.y245{bottom:225.289733pt;}
.y249{bottom:225.304400pt;}
.y187{bottom:225.338933pt;}
.y13c{bottom:225.466933pt;}
.y28e{bottom:225.602933pt;}
.y17a{bottom:225.722933pt;}
.y2ae{bottom:226.489200pt;}
.y102{bottom:229.434933pt;}
.y2f8{bottom:231.873600pt;}
.y26c{bottom:233.196267pt;}
.y1a9{bottom:234.400267pt;}
.y2d0{bottom:234.882133pt;}
.y341{bottom:236.009600pt;}
.y3f{bottom:237.146933pt;}
.y75{bottom:238.270400pt;}
.y361{bottom:238.440267pt;}
.y36d{bottom:239.388267pt;}
.ybc{bottom:241.680533pt;}
.ya7{bottom:241.680667pt;}
.y1c1{bottom:241.789467pt;}
.y63{bottom:241.834933pt;}
.y84{bottom:242.058667pt;}
.ydd{bottom:243.017200pt;}
.y157{bottom:243.033200pt;}
.y11f{bottom:243.381600pt;}
.y1fe{bottom:243.475333pt;}
.y201{bottom:243.490000pt;}
.y244{bottom:243.549733pt;}
.y248{bottom:243.564400pt;}
.y186{bottom:244.666933pt;}
.y13b{bottom:244.794933pt;}
.y28d{bottom:244.802933pt;}
.y179{bottom:245.050933pt;}
.y2ad{bottom:246.217200pt;}
.y101{bottom:248.634933pt;}
.y31c{bottom:248.988267pt;}
.y2f7{bottom:249.341600pt;}
.y1ae{bottom:251.851733pt;}
.y2cf{bottom:253.010133pt;}
.y340{bottom:253.873600pt;}
.y1a8{bottom:254.272267pt;}
.y74{bottom:256.002400pt;}
.y3e{bottom:256.074933pt;}
.y360{bottom:257.374933pt;}
.y26b{bottom:258.070933pt;}
.y1c0{bottom:260.461467pt;}
.y62{bottom:260.634933pt;}
.ybb{bottom:260.880533pt;}
.ya6{bottom:260.880667pt;}
.y83{bottom:261.258667pt;}
.ydc{bottom:262.345200pt;}
.y156{bottom:262.361200pt;}
.y11e{bottom:262.709600pt;}
.y185{bottom:263.994933pt;}
.y28c{bottom:264.002933pt;}
.y13a{bottom:264.122933pt;}
.y178{bottom:264.378933pt;}
.y240{bottom:264.640400pt;}
.y1fd{bottom:264.874000pt;}
.y2ac{bottom:265.945200pt;}
.y1a{bottom:266.050400pt;}
.y2f6{bottom:266.809600pt;}
.y100{bottom:267.834933pt;}
.y31b{bottom:268.188267pt;}
.y36c{bottom:268.721600pt;}
.y2ce{bottom:271.138133pt;}
.y33f{bottom:271.737600pt;}
.y73{bottom:273.734400pt;}
.y1a7{bottom:274.144267pt;}
.y26a{bottom:274.732267pt;}
.y3d{bottom:275.002933pt;}
.y35f{bottom:276.309600pt;}
.y1bf{bottom:279.133467pt;}
.y61{bottom:279.434933pt;}
.yba{bottom:280.080533pt;}
.ya5{bottom:280.080667pt;}
.y82{bottom:280.458667pt;}
.ydb{bottom:281.673200pt;}
.y155{bottom:281.689200pt;}
.y11d{bottom:282.037600pt;}
.y23f{bottom:282.900400pt;}
.y243{bottom:282.915067pt;}
.y1fc{bottom:283.134000pt;}
.y28b{bottom:283.202933pt;}
.y184{bottom:283.322933pt;}
.y19{bottom:283.386400pt;}
.y139{bottom:283.450933pt;}
.y177{bottom:283.706933pt;}
.y2f5{bottom:284.277600pt;}
.y36b{bottom:284.721600pt;}
.y2ab{bottom:285.673200pt;}
.yff{bottom:287.034933pt;}
.y31a{bottom:287.388267pt;}
.y2cd{bottom:289.266133pt;}
.y33e{bottom:289.601600pt;}
.y3c{bottom:293.930933pt;}
.y1a6{bottom:294.016267pt;}
.y35e{bottom:295.244267pt;}
.y1be{bottom:297.805467pt;}
.y60{bottom:298.234933pt;}
.yb9{bottom:299.280533pt;}
.ya4{bottom:299.280667pt;}
.y269{bottom:299.606933pt;}
.y81{bottom:299.658667pt;}
.y36a{bottom:300.721600pt;}
.y18{bottom:300.722400pt;}
.yda{bottom:301.001200pt;}
.y154{bottom:301.017200pt;}
.y23e{bottom:301.160400pt;}
.y242{bottom:301.175067pt;}
.y11c{bottom:301.365600pt;}
.y1fb{bottom:301.394000pt;}
.y2f4{bottom:301.745600pt;}
.y28a{bottom:302.402933pt;}
.y183{bottom:302.650933pt;}
.y138{bottom:302.778933pt;}
.y176{bottom:303.034933pt;}
.y2aa{bottom:305.401200pt;}
.yfe{bottom:306.234933pt;}
.y2cc{bottom:307.394133pt;}
.y33d{bottom:307.465600pt;}
.y3b{bottom:312.858933pt;}
.y1a5{bottom:313.888267pt;}
.y35d{bottom:314.178933pt;}
.y268{bottom:316.268267pt;}
.y1bd{bottom:316.429467pt;}
.y369{bottom:316.721600pt;}
.y5f{bottom:317.034933pt;}
.y17{bottom:318.058400pt;}
.yb8{bottom:318.480533pt;}
.ya3{bottom:318.480667pt;}
.y80{bottom:318.858667pt;}
.y2f3{bottom:319.213600pt;}
.y23d{bottom:319.420400pt;}
.y241{bottom:319.435067pt;}
.yd9{bottom:320.329200pt;}
.y153{bottom:320.345200pt;}
.y11b{bottom:320.693600pt;}
.y289{bottom:321.602933pt;}
.y182{bottom:321.978933pt;}
.y137{bottom:322.106933pt;}
.y175{bottom:322.362933pt;}
.y1f7{bottom:324.508667pt;}
.y1fa{bottom:324.523333pt;}
.y2a9{bottom:325.129200pt;}
.y33c{bottom:325.329600pt;}
.yfd{bottom:325.434933pt;}
.y2cb{bottom:325.522133pt;}
.y35c{bottom:331.646933pt;}
.y3a{bottom:331.786933pt;}
.y1a4{bottom:333.760267pt;}
.y1bc{bottom:335.101467pt;}
.y16{bottom:335.394400pt;}
.y5e{bottom:335.834933pt;}
.y2f2{bottom:336.681600pt;}
.yb7{bottom:337.680533pt;}
.ya2{bottom:337.680667pt;}
.y7f{bottom:338.058667pt;}
.yd8{bottom:339.657200pt;}
.y152{bottom:339.673200pt;}
.y11a{bottom:340.021600pt;}
.y239{bottom:340.496400pt;}
.y23c{bottom:340.511067pt;}
.y288{bottom:340.802933pt;}
.y267{bottom:341.142933pt;}
.y181{bottom:341.306933pt;}
.y136{bottom:341.434933pt;}
.y174{bottom:341.690933pt;}
.y319{bottom:341.788267pt;}
.y1f6{bottom:342.768667pt;}
.y1f9{bottom:342.783333pt;}
.y33b{bottom:343.193600pt;}
.y2ca{bottom:343.650133pt;}
.yfc{bottom:344.634933pt;}
.y2a8{bottom:344.857200pt;}
.y35b{bottom:349.114933pt;}
.y39{bottom:350.714933pt;}
.y368{bottom:351.921600pt;}
.y15{bottom:352.730400pt;}
.y1a3{bottom:353.632267pt;}
.y1bb{bottom:353.773467pt;}
.y2f1{bottom:354.149600pt;}
.y5d{bottom:354.634933pt;}
.yb6{bottom:356.880533pt;}
.ya1{bottom:356.880667pt;}
.y318{bottom:356.988267pt;}
.y7e{bottom:357.258667pt;}
.y266{bottom:357.804267pt;}
.y238{bottom:358.756400pt;}
.y23b{bottom:358.771067pt;}
.yd7{bottom:358.985200pt;}
.y151{bottom:359.001200pt;}
.y119{bottom:359.349600pt;}
.y287{bottom:360.002933pt;}
.y180{bottom:360.634933pt;}
.y135{bottom:360.762933pt;}
.y173{bottom:361.018933pt;}
.y1f5{bottom:361.028667pt;}
.y1f8{bottom:361.043333pt;}
.y33a{bottom:361.057600pt;}
.yfb{bottom:363.834933pt;}
.y2a7{bottom:364.585200pt;}
.y35a{bottom:366.582933pt;}
.y2c9{bottom:369.342533pt;}
.y38{bottom:369.642933pt;}
.y14{bottom:370.066400pt;}
.y2f0{bottom:371.617600pt;}
.y1ba{bottom:372.445467pt;}
.y5c{bottom:373.434933pt;}
.y1a2{bottom:373.504267pt;}
.yb5{bottom:376.080533pt;}
.ya0{bottom:376.080667pt;}
.y7d{bottom:376.458667pt;}
.y237{bottom:377.016400pt;}
.y23a{bottom:377.031067pt;}
.yd6{bottom:378.313200pt;}
.y150{bottom:378.329200pt;}
.y118{bottom:378.677600pt;}
.y339{bottom:378.921600pt;}
.y286{bottom:379.202933pt;}
.y134{bottom:380.090933pt;}
.y172{bottom:380.346933pt;}
.y1f1{bottom:382.104667pt;}
.y1f4{bottom:382.119333pt;}
.y265{bottom:382.678933pt;}
.yfa{bottom:383.034933pt;}
.y359{bottom:384.050933pt;}
.y2a6{bottom:384.313200pt;}
.y317{bottom:385.521600pt;}
.y13{bottom:387.402400pt;}
.y37{bottom:388.570933pt;}
.y2ef{bottom:389.085600pt;}
.y71{bottom:390.684133pt;}
.y1b9{bottom:391.117467pt;}
.y5b{bottom:392.234933pt;}
.y1a1{bottom:393.376267pt;}
.yb4{bottom:395.280533pt;}
.y9f{bottom:395.280667pt;}
.y7c{bottom:395.658667pt;}
.y338{bottom:396.785600pt;}
.yd5{bottom:397.641200pt;}
.y14f{bottom:397.657200pt;}
.y117{bottom:398.005600pt;}
.y233{bottom:398.092400pt;}
.y236{bottom:398.107067pt;}
.y285{bottom:398.402933pt;}
.y264{bottom:399.340267pt;}
.y133{bottom:399.418933pt;}
.y171{bottom:399.674933pt;}
.y1f0{bottom:400.232667pt;}
.y1f3{bottom:400.247333pt;}
.y358{bottom:401.518933pt;}
.yf9{bottom:402.234933pt;}
.y316{bottom:403.121600pt;}
.y2a5{bottom:404.041200pt;}
.y12{bottom:404.738400pt;}
.y2ee{bottom:406.553600pt;}
.y36{bottom:407.498933pt;}
.y1b8{bottom:409.789467pt;}
.y5a{bottom:411.034933pt;}
.y2c8{bottom:412.906933pt;}
.y1a0{bottom:413.248267pt;}
.yb3{bottom:414.480533pt;}
.y9e{bottom:414.480667pt;}
.y337{bottom:414.649600pt;}
.y232{bottom:416.352400pt;}
.y235{bottom:416.367067pt;}
.yd4{bottom:416.969200pt;}
.y14e{bottom:416.985200pt;}
.y116{bottom:417.333600pt;}
.y284{bottom:417.602933pt;}
.y1ef{bottom:418.360667pt;}
.y1f2{bottom:418.375333pt;}
.y132{bottom:418.746933pt;}
.y357{bottom:418.986933pt;}
.y170{bottom:419.002933pt;}
.y315{bottom:420.721600pt;}
.yf8{bottom:421.434933pt;}
.y2a4{bottom:423.769200pt;}
.y2ed{bottom:424.021600pt;}
.y263{bottom:424.214933pt;}
.y35{bottom:426.426933pt;}
.y1b7{bottom:428.461467pt;}
.y11{bottom:429.630800pt;}
.y59{bottom:429.834933pt;}
.y2c7{bottom:432.506933pt;}
.y336{bottom:432.513600pt;}
.y19f{bottom:433.120267pt;}
.yb2{bottom:433.680533pt;}
.y9d{bottom:433.680667pt;}
.y99{bottom:434.298400pt;}
.y231{bottom:434.612400pt;}
.y234{bottom:434.627067pt;}
.yd3{bottom:436.297200pt;}
.y14d{bottom:436.313200pt;}
.y356{bottom:436.454933pt;}
.y115{bottom:436.661600pt;}
.y283{bottom:436.802933pt;}
.y131{bottom:438.074933pt;}
.y314{bottom:438.321600pt;}
.y16f{bottom:438.330933pt;}
.y1eb{bottom:439.436667pt;}
.y1ee{bottom:439.451333pt;}
.yf7{bottom:440.634933pt;}
.y262{bottom:440.876267pt;}
.y2ec{bottom:441.489600pt;}
.y2a3{bottom:443.497200pt;}
.y34{bottom:445.354933pt;}
.y1b6{bottom:447.133467pt;}
.y58{bottom:448.634933pt;}
.y335{bottom:450.377600pt;}
.y2c6{bottom:452.106933pt;}
.y98{bottom:452.162400pt;}
.yb1{bottom:452.880533pt;}
.y9c{bottom:452.880667pt;}
.y19e{bottom:452.992267pt;}
.yd2{bottom:455.625200pt;}
.y14c{bottom:455.641200pt;}
.y313{bottom:455.921600pt;}
.y114{bottom:455.989600pt;}
.y282{bottom:456.002933pt;}
.y22d{bottom:456.465733pt;}
.y230{bottom:456.480400pt;}
.y130{bottom:457.402933pt;}
.y1ea{bottom:457.564667pt;}
.y1ed{bottom:457.579333pt;}
.y16e{bottom:457.658933pt;}
.y2eb{bottom:458.957600pt;}
.yf6{bottom:459.834933pt;}
.y2a2{bottom:463.225200pt;}
.y33{bottom:464.282933pt;}
.y261{bottom:465.750933pt;}
.y1b5{bottom:465.805467pt;}
.y57{bottom:467.434933pt;}
.y334{bottom:468.241600pt;}
.y355{bottom:469.654933pt;}
.y97{bottom:470.026400pt;}
.y2c5{bottom:471.706933pt;}
.yb0{bottom:472.080533pt;}
.y9b{bottom:472.080667pt;}
.y19d{bottom:472.864267pt;}
.y312{bottom:473.521600pt;}
.y22c{bottom:474.725733pt;}
.y22f{bottom:474.740400pt;}
.yd1{bottom:474.953200pt;}
.y14b{bottom:474.969200pt;}
.y10{bottom:475.037867pt;}
.y281{bottom:475.202933pt;}
.y113{bottom:475.317600pt;}
.y1e9{bottom:475.692667pt;}
.y1ec{bottom:475.707333pt;}
.y2ea{bottom:476.425600pt;}
.y12f{bottom:476.730933pt;}
.y16d{bottom:476.986933pt;}
.yf5{bottom:479.034933pt;}
.y260{bottom:482.412267pt;}
.y2a1{bottom:482.953200pt;}
.y32{bottom:483.210933pt;}
.y1b4{bottom:484.477467pt;}
.y333{bottom:486.105600pt;}
.y56{bottom:486.234933pt;}
.y96{bottom:487.890400pt;}
.y311{bottom:491.121600pt;}
.yaf{bottom:491.280533pt;}
.y9a{bottom:491.280667pt;}
.y2c4{bottom:491.306933pt;}
.yf{bottom:492.373867pt;}
.y19c{bottom:492.736267pt;}
.y22b{bottom:492.985733pt;}
.y22e{bottom:493.000400pt;}
.y2e9{bottom:493.893600pt;}
.yd0{bottom:494.281200pt;}
.y14a{bottom:494.297200pt;}
.y280{bottom:494.402933pt;}
.y112{bottom:494.645600pt;}
.y12e{bottom:496.058933pt;}
.y16c{bottom:496.314933pt;}
.y1e5{bottom:496.768667pt;}
.y1e8{bottom:496.783333pt;}
.yf4{bottom:498.234933pt;}
.y31{bottom:502.138933pt;}
.y2a0{bottom:502.681200pt;}
.y354{bottom:502.726933pt;}
.y332{bottom:503.969600pt;}
.y55{bottom:505.034933pt;}
.y95{bottom:505.754400pt;}
.y25f{bottom:507.286933pt;}
.y310{bottom:508.721600pt;}
.ye{bottom:509.709867pt;}
.y2c3{bottom:510.906933pt;}
.y2e8{bottom:511.361600pt;}
.y19b{bottom:512.608267pt;}
.y27f{bottom:513.602933pt;}
.ycf{bottom:513.609200pt;}
.y149{bottom:513.625200pt;}
.y111{bottom:513.973600pt;}
.y227{bottom:514.061733pt;}
.y22a{bottom:514.076400pt;}
.y1e4{bottom:514.896667pt;}
.y1e7{bottom:514.911333pt;}
.y12d{bottom:515.386933pt;}
.y16b{bottom:515.642933pt;}
.yf3{bottom:517.434933pt;}
.y30{bottom:521.066933pt;}
.y353{bottom:521.654933pt;}
.y331{bottom:521.833600pt;}
.y29f{bottom:522.409200pt;}
.y94{bottom:523.618400pt;}
.y54{bottom:523.834933pt;}
.y25e{bottom:523.948267pt;}
.y30f{bottom:526.321600pt;}
.yd{bottom:527.045867pt;}
.y1c7{bottom:527.530133pt;}
.y2e7{bottom:528.829600pt;}
.y2c2{bottom:530.506933pt;}
.y70{bottom:531.902533pt;}
.y226{bottom:532.321733pt;}
.y229{bottom:532.336400pt;}
.y19a{bottom:532.480267pt;}
.yae{bottom:532.947333pt;}
.yc3{bottom:532.947467pt;}
.y148{bottom:532.953200pt;}
.y1e3{bottom:533.024667pt;}
.y1e6{bottom:533.039333pt;}
.y110{bottom:533.301600pt;}
.y12c{bottom:534.714933pt;}
.y16a{bottom:534.970933pt;}
.yf2{bottom:536.634933pt;}
.y330{bottom:539.697600pt;}
.y2f{bottom:539.994933pt;}
.y352{bottom:540.588267pt;}
.y93{bottom:541.482400pt;}
.y29e{bottom:542.009200pt;}
.y53{bottom:542.634933pt;}
.y30e{bottom:543.921600pt;}
.yc{bottom:544.381867pt;}
.y2e6{bottom:546.297600pt;}
.yce{bottom:546.416267pt;}
.y27e{bottom:548.530533pt;}
.y25d{bottom:548.822933pt;}
.y2c1{bottom:550.106933pt;}
.y225{bottom:550.581733pt;}
.y228{bottom:550.596400pt;}
.y147{bottom:552.281200pt;}
.y199{bottom:552.352267pt;}
.y12b{bottom:554.042933pt;}
.y1df{bottom:554.100667pt;}
.y1e2{bottom:554.115333pt;}
.y169{bottom:554.298933pt;}
.yf1{bottom:555.834933pt;}
.y32f{bottom:557.561600pt;}
.y6c{bottom:557.818667pt;}
.y2e{bottom:558.922933pt;}
.y92{bottom:559.346400pt;}
.y6d{bottom:559.681333pt;}
.y6e{bottom:560.913333pt;}
.y52{bottom:561.434933pt;}
.y30d{bottom:561.521600pt;}
.y29d{bottom:561.609200pt;}
.yb{bottom:561.717867pt;}
.y2e5{bottom:563.765600pt;}
.y25c{bottom:565.484267pt;}
.y10f{bottom:566.101600pt;}
.y27d{bottom:566.394533pt;}
.y2c0{bottom:569.706933pt;}
.y146{bottom:571.609200pt;}
.y221{bottom:571.657733pt;}
.y224{bottom:571.672400pt;}
.y198{bottom:572.224267pt;}
.y1de{bottom:572.228667pt;}
.y1e1{bottom:572.243333pt;}
.y12a{bottom:573.370933pt;}
.y168{bottom:573.626933pt;}
.yf0{bottom:575.034933pt;}
.y32e{bottom:575.425600pt;}
.y91{bottom:577.210400pt;}
.y2d{bottom:577.850933pt;}
.y6f{bottom:578.322533pt;}
.ya{bottom:579.053867pt;}
.y30c{bottom:579.121600pt;}
.y51{bottom:580.234933pt;}
.y2e4{bottom:581.233600pt;}
.y351{bottom:582.454933pt;}
.y29c{bottom:588.768267pt;}
.y2bf{bottom:589.306933pt;}
.y220{bottom:589.917733pt;}
.y223{bottom:589.932400pt;}
.y1dd{bottom:590.356667pt;}
.y25b{bottom:590.358933pt;}
.y1e0{bottom:590.371333pt;}
.y27c{bottom:591.269200pt;}
.y197{bottom:592.096267pt;}
.ycd{bottom:592.640267pt;}
.y129{bottom:592.698933pt;}
.y167{bottom:592.954933pt;}
.y32d{bottom:593.289600pt;}
.yef{bottom:594.234933pt;}
.y90{bottom:595.074400pt;}
.y9{bottom:596.389867pt;}
.y30b{bottom:596.721600pt;}
.y2c{bottom:596.778933pt;}
.y350{bottom:598.188267pt;}
.y2e3{bottom:598.701600pt;}
.y10e{bottom:598.938933pt;}
.y50{bottom:599.034933pt;}
.y145{bottom:604.416267pt;}
.y25a{bottom:607.020267pt;}
.y21f{bottom:608.177733pt;}
.y222{bottom:608.192400pt;}
.y2be{bottom:608.906933pt;}
.y27b{bottom:609.133200pt;}
.y32c{bottom:611.153600pt;}
.y1d9{bottom:611.432667pt;}
.y1dc{bottom:611.447333pt;}
.y196{bottom:611.920267pt;}
.ycc{bottom:611.968267pt;}
.y128{bottom:612.026933pt;}
.y166{bottom:612.282933pt;}
.y10d{bottom:612.410933pt;}
.y8f{bottom:612.938400pt;}
.yee{bottom:613.434933pt;}
.y34f{bottom:613.921600pt;}
.y30a{bottom:614.321600pt;}
.y2b{bottom:615.706933pt;}
.y2e2{bottom:616.169600pt;}
.y4f{bottom:617.834933pt;}
.y8{bottom:621.282267pt;}
.y144{bottom:623.744267pt;}
.y2bd{bottom:628.506933pt;}
.y32b{bottom:629.017600pt;}
.y21b{bottom:629.253733pt;}
.y1d8{bottom:629.560667pt;}
.y1db{bottom:629.575333pt;}
.y34e{bottom:629.654933pt;}
.y8e{bottom:630.802400pt;}
.y127{bottom:631.354933pt;}
.y165{bottom:631.610933pt;}
.y10c{bottom:631.738933pt;}
.y195{bottom:631.792267pt;}
.y259{bottom:631.894933pt;}
.y309{bottom:631.921600pt;}
.yed{bottom:632.634933pt;}
.y2e1{bottom:633.637600pt;}
.y27a{bottom:634.007867pt;}
.y2a{bottom:634.634933pt;}
.y4e{bottom:636.634933pt;}
.y32a{bottom:646.881600pt;}
.y21a{bottom:647.381733pt;}
.y21e{bottom:647.396400pt;}
.y1d7{bottom:647.688667pt;}
.y1da{bottom:647.703333pt;}
.y29b{bottom:647.882933pt;}
.y2bc{bottom:648.106933pt;}
.y258{bottom:648.556267pt;}
.y8d{bottom:648.666400pt;}
.y308{bottom:649.521600pt;}
.y126{bottom:650.682933pt;}
.y164{bottom:650.938933pt;}
.y10b{bottom:651.066933pt;}
.y2e0{bottom:651.105600pt;}
.y194{bottom:651.664267pt;}
.yec{bottom:651.834933pt;}
.y279{bottom:651.871867pt;}
.y29{bottom:653.562933pt;}
.y4d{bottom:655.434933pt;}
.y34d{bottom:658.454933pt;}
.y329{bottom:664.745600pt;}
.y219{bottom:665.509733pt;}
.y21d{bottom:665.524400pt;}
.y307{bottom:667.121600pt;}
.y29a{bottom:667.610933pt;}
.y2bb{bottom:667.706933pt;}
.y2df{bottom:668.573600pt;}
.y1d6{bottom:668.779333pt;}
.y278{bottom:669.735867pt;}
.y143{bottom:669.968267pt;}
.ycb{bottom:670.010933pt;}
.y163{bottom:670.266933pt;}
.y10a{bottom:670.394933pt;}
.yeb{bottom:671.034933pt;}
.y193{bottom:671.536267pt;}
.y28{bottom:672.490933pt;}
.y257{bottom:673.430933pt;}
.y7{bottom:673.908000pt;}
.y34c{bottom:674.188267pt;}
.y4c{bottom:674.234933pt;}
.y6b{bottom:674.829067pt;}
.y328{bottom:682.609600pt;}
.y218{bottom:683.637733pt;}
.y21c{bottom:683.652400pt;}
.y306{bottom:684.721600pt;}
.y2de{bottom:686.041600pt;}
.y2ba{bottom:687.306933pt;}
.y299{bottom:687.338933pt;}
.y142{bottom:689.322933pt;}
.yca{bottom:689.338933pt;}
.y162{bottom:689.594933pt;}
.y109{bottom:689.722933pt;}
.y1ce{bottom:689.855333pt;}
.y1d5{bottom:689.870000pt;}
.y34b{bottom:689.921600pt;}
.y256{bottom:690.092267pt;}
.yea{bottom:690.234933pt;}
.y192{bottom:691.408267pt;}
.y27{bottom:691.418933pt;}
.y4b{bottom:693.034933pt;}
.y277{bottom:694.610533pt;}
.y327{bottom:700.473600pt;}
.y305{bottom:702.321600pt;}
.y2dd{bottom:703.509600pt;}
.y214{bottom:704.713733pt;}
.y217{bottom:704.728400pt;}
.y34a{bottom:705.654933pt;}
.y2b9{bottom:706.906933pt;}
.y298{bottom:707.066933pt;}
.y1cd{bottom:707.719333pt;}
.y1d4{bottom:707.734000pt;}
.yc9{bottom:708.666933pt;}
.y161{bottom:708.922933pt;}
.y108{bottom:709.050933pt;}
.ye9{bottom:709.434933pt;}
.y6{bottom:710.180000pt;}
.y26{bottom:710.346933pt;}
.y191{bottom:711.280267pt;}
.y4a{bottom:711.834933pt;}
.y276{bottom:712.474533pt;}
.y255{bottom:714.966933pt;}
.y326{bottom:718.337600pt;}
.y304{bottom:719.921600pt;}
.y2dc{bottom:720.977600pt;}
.y8c{bottom:721.890933pt;}
.y213{bottom:722.841733pt;}
.y216{bottom:722.856400pt;}
.y1cc{bottom:725.583333pt;}
.y1d3{bottom:725.598000pt;}
.y2b8{bottom:726.506933pt;}
.y297{bottom:726.794933pt;}
.yc8{bottom:727.994933pt;}
.y160{bottom:728.250933pt;}
.y107{bottom:728.378933pt;}
.ye8{bottom:728.634933pt;}
.y25{bottom:729.274933pt;}
.y49{bottom:730.634933pt;}
.y190{bottom:731.152267pt;}
.y325{bottom:736.201600pt;}
.y5{bottom:737.108000pt;}
.y275{bottom:737.349200pt;}
.y303{bottom:737.521600pt;}
.y2db{bottom:738.445600pt;}
.y349{bottom:740.321600pt;}
.y212{bottom:740.969733pt;}
.y215{bottom:740.984400pt;}
.y254{bottom:741.821600pt;}
.y1cb{bottom:743.447333pt;}
.y1d2{bottom:743.462000pt;}
.y2b7{bottom:746.106933pt;}
.y296{bottom:746.522933pt;}
.yc7{bottom:747.322933pt;}
.y15f{bottom:747.578933pt;}
.y106{bottom:747.706933pt;}
.ye7{bottom:747.834933pt;}
.y24{bottom:748.346933pt;}
.y48{bottom:749.434933pt;}
.y18f{bottom:751.024267pt;}
.y324{bottom:754.065600pt;}
.y302{bottom:755.121600pt;}
.y274{bottom:755.213200pt;}
.y2da{bottom:755.913600pt;}
.y253{bottom:759.685600pt;}
.y1ca{bottom:761.311333pt;}
.y1d1{bottom:761.326000pt;}
.y20e{bottom:762.045733pt;}
.y211{bottom:762.060400pt;}
.y2b6{bottom:765.706933pt;}
.y295{bottom:766.250933pt;}
.yc6{bottom:766.650933pt;}
.y15e{bottom:766.906933pt;}
.ye6{bottom:767.034933pt;}
.y23{bottom:767.418933pt;}
.y47{bottom:768.234933pt;}
.y18e{bottom:770.896267pt;}
.y323{bottom:771.929600pt;}
.y301{bottom:772.721600pt;}
.y2d9{bottom:773.381600pt;}
.y348{bottom:773.513600pt;}
.y252{bottom:777.549600pt;}
.y1c9{bottom:779.175333pt;}
.y1d0{bottom:779.190000pt;}
.y20d{bottom:780.173733pt;}
.y210{bottom:780.188400pt;}
.y273{bottom:782.067867pt;}
.y2b5{bottom:785.306933pt;}
.y4{bottom:785.961600pt;}
.yc5{bottom:785.978933pt;}
.ye5{bottom:786.234933pt;}
.y22{bottom:786.490933pt;}
.y46{bottom:787.034933pt;}
.y322{bottom:789.793600pt;}
.y300{bottom:790.321600pt;}
.y18d{bottom:790.768267pt;}
.y2d8{bottom:790.849600pt;}
.y6a{bottom:795.149600pt;}
.y1c8{bottom:797.039333pt;}
.y1cf{bottom:797.054000pt;}
.y20c{bottom:798.301733pt;}
.y20f{bottom:798.316400pt;}
.y272{bottom:799.931867pt;}
.y2b4{bottom:804.906933pt;}
.yc4{bottom:805.306933pt;}
.ye4{bottom:805.434933pt;}
.y21{bottom:805.562933pt;}
.y294{bottom:805.706933pt;}
.y45{bottom:805.834933pt;}
.y2ff{bottom:807.657600pt;}
.y251{bottom:807.921600pt;}
.y2d7{bottom:808.185600pt;}
.y3{bottom:809.521600pt;}
.y8b{bottom:817.795867pt;}
.y20b{bottom:819.685733pt;}
.y20{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.hd{height:23.288802pt;}
.he{height:25.553125pt;}
.ha{height:27.171875pt;}
.h3{height:31.700521pt;}
.h2{height:35.546875pt;}
.h8{height:36.229167pt;}
.h15{height:36.796875pt;}
.h14{height:39.101562pt;}
.h13{height:40.476562pt;}
.hf{height:42.656250pt;}
.hb{height:43.022135pt;}
.h10{height:44.156250pt;}
.h5{height:45.286458pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.h12{height:54.535750pt;}
.h9{height:55.838250pt;}
.hc{height:56.286250pt;}
.h11{height:56.478250pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:68.031467pt;}
.x12{left:71.977733pt;}
.x1b{left:75.398133pt;}
.x7{left:77.086800pt;}
.x1{left:86.929200pt;}
.x17{left:90.863067pt;}
.x22{left:94.295867pt;}
.xc{left:95.984400pt;}
.x9{left:97.329867pt;}
.x15{left:101.267067pt;}
.x6{left:105.825200pt;}
.x8{left:115.196533pt;}
.x16{left:120.152400pt;}
.x29{left:124.717467pt;}
.x2{left:127.262533pt;}
.xa{left:133.057867pt;}
.xd{left:134.094133pt;}
.x1a{left:151.181067pt;}
.x13{left:152.717733pt;}
.x1c{left:156.490133pt;}
.xb{left:160.000000pt;}
.x18{left:171.603067pt;}
.x23{left:175.387867pt;}
.x2c{left:177.878400pt;}
.xe{left:178.897600pt;}
.x10{left:185.567467pt;}
.xf{left:197.788267pt;}
.x11{left:199.877333pt;}
.x2d{left:213.100267pt;}
.x1d{left:227.359467pt;}
.x3{left:231.997867pt;}
.x24{left:246.257200pt;}
.x1e{left:277.314133pt;}
.x25{left:296.211867pt;}
.x1f{left:332.240800pt;}
.x14{left:333.191067pt;}
.x26{left:351.138533pt;}
.x19{left:352.076400pt;}
.x20{left:443.736800pt;}
.x27{left:462.634533pt;}
.x2b{left:472.213600pt;}
.x2a{left:480.180933pt;}
.x21{left:511.599467pt;}
.x4{left:515.257200pt;}
.x28{left:530.497200pt;}
}




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