
    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_be2b26e727b0899a5cc2194e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_dd666cd5bd82b43943029bb0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_ec61a370b9d1892fbbe45fda.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_dd666cd5bd82b43943029bb0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_d2c2cc00a20b31cf851ba891.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_38fe3361e86b875b84e61770.woff')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_604b46d3fca9ea0385335f09.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;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_3a721bbdc5dabc788e0fbb7c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_a99ab78d9aba4932d828aea8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.400000;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_147d541e06a1971aaf7200ef.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_38fe3361e86b875b84e61770.woff')format("woff");}.ffb{font-family:ffb;line-height:1.400000;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_dd666cd5bd82b43943029bb0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.400000;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_587eb8cf006ef21feff1ca70.woff')format("woff");}.ffd{font-family:ffd;line-height:1.400000;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_38fe3361e86b875b84e61770.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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:fff;src:url('chunks/assets/font_dd666cd5bd82b43943029bb0.woff')format("woff");}.fff{font-family:fff;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e87cf3ebb13292598b941c5a.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v2{vertical-align:-7.182000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:42.680400px;}
.ls29{letter-spacing:-6.912000px;}
.ls1f{letter-spacing:-3.510000px;}
.ls2e{letter-spacing:-3.132000px;}
.ls46{letter-spacing:-3.078000px;}
.ls2c{letter-spacing:-3.024000px;}
.ls1a{letter-spacing:-2.376000px;}
.ls1e{letter-spacing:-2.322000px;}
.ls2d{letter-spacing:-2.106000px;}
.ls32{letter-spacing:-1.998000px;}
.ls2b{letter-spacing:-1.836000px;}
.ls1{letter-spacing:-1.620000px;}
.ls1b{letter-spacing:-1.566000px;}
.ls3{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-1.350000px;}
.ls31{letter-spacing:-1.242000px;}
.ls23{letter-spacing:-1.134000px;}
.ls9{letter-spacing:-1.080000px;}
.ls28{letter-spacing:-0.972000px;}
.ls26{letter-spacing:-0.864000px;}
.ls7{letter-spacing:-0.840000px;}
.ls40{letter-spacing:-0.810000px;}
.ls43{letter-spacing:-0.756000px;}
.ls5{letter-spacing:-0.720000px;}
.ls3b{letter-spacing:-0.702000px;}
.ls30{letter-spacing:-0.648000px;}
.ls2f{letter-spacing:-0.594000px;}
.lsf{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.486000px;}
.ls16{letter-spacing:-0.480000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.420000px;}
.ls25{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.324000px;}
.ls39{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.162000px;}
.lsa{letter-spacing:-0.108000px;}
.ls37{letter-spacing:-0.054000px;}
.ls6{letter-spacing:-0.036000px;}
.ls2{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.054000px;}
.ls33{letter-spacing:0.162000px;}
.ls11{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.270000px;}
.ls3f{letter-spacing:0.324000px;}
.ls38{letter-spacing:0.378000px;}
.ls21{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.486000px;}
.ls35{letter-spacing:0.594000px;}
.ls36{letter-spacing:0.648000px;}
.lse{letter-spacing:0.660000px;}
.ls27{letter-spacing:0.756000px;}
.ls3a{letter-spacing:0.810000px;}
.ls3c{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.918000px;}
.ls20{letter-spacing:1.404000px;}
.ls34{letter-spacing:1.566000px;}
.ls44{letter-spacing:1.620000px;}
.ls24{letter-spacing:2.214000px;}
.ls45{letter-spacing:5.562000px;}
.ls13{letter-spacing:5.616000px;}
.ls0{letter-spacing:6.264000px;}
.ls3d{letter-spacing:7.992000px;}
.ls14{letter-spacing:9.720000px;}
.ls15{letter-spacing:9.774000px;}
.ls3e{letter-spacing:16.308000px;}
.ls41{letter-spacing:18.036000px;}
.ls42{letter-spacing:20.898000px;}
.lsd{letter-spacing:708.615000px;}
.ls12{letter-spacing:708.615600px;}
.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;}
}
.ws18e{word-spacing:-35.370000px;}
.ws18d{word-spacing:-32.508000px;}
.ws18a{word-spacing:-30.780000px;}
.ws189{word-spacing:-22.464000px;}
.ws198{word-spacing:-20.034000px;}
.ws26{word-spacing:-16.764000px;}
.ws156{word-spacing:-16.686000px;}
.ws12d{word-spacing:-16.104000px;}
.ws197{word-spacing:-16.092000px;}
.ws16d{word-spacing:-16.038000px;}
.ws151{word-spacing:-15.876000px;}
.ws29{word-spacing:-15.552000px;}
.ws188{word-spacing:-15.336000px;}
.ws17e{word-spacing:-15.282000px;}
.ws161{word-spacing:-15.228000px;}
.ws16f{word-spacing:-15.120000px;}
.ws16e{word-spacing:-15.066000px;}
.ws152{word-spacing:-14.904000px;}
.ws18b{word-spacing:-14.796000px;}
.ws19a{word-spacing:-14.742000px;}
.ws199{word-spacing:-14.688000px;}
.ws16c{word-spacing:-14.634000px;}
.ws155{word-spacing:-14.472000px;}
.ws7{word-spacing:-14.418000px;}
.ws150{word-spacing:-14.364000px;}
.ws27{word-spacing:-14.310000px;}
.ws14f{word-spacing:-14.256000px;}
.ws17d{word-spacing:-14.202000px;}
.ws153{word-spacing:-14.148000px;}
.ws157{word-spacing:-14.094000px;}
.ws28{word-spacing:-13.986000px;}
.ws71{word-spacing:-13.932000px;}
.ws169{word-spacing:-13.878000px;}
.ws16a{word-spacing:-13.824000px;}
.wsc0{word-spacing:-13.770000px;}
.ws18f{word-spacing:-13.716000px;}
.ws18c{word-spacing:-13.662000px;}
.ws16b{word-spacing:-13.554000px;}
.ws0{word-spacing:-13.446000px;}
.ws6{word-spacing:-13.392000px;}
.ws187{word-spacing:-13.176000px;}
.ws160{word-spacing:-13.122000px;}
.wsb0{word-spacing:-12.906000px;}
.ws154{word-spacing:-12.852000px;}
.ws163{word-spacing:-12.636000px;}
.ws8f{word-spacing:-12.366000px;}
.ws128{word-spacing:-12.240000px;}
.ws25{word-spacing:-12.000000px;}
.ws164{word-spacing:-11.448000px;}
.ws165{word-spacing:-11.340000px;}
.ws2{word-spacing:-10.500000px;}
.ws3{word-spacing:-9.660000px;}
.ws1{word-spacing:-9.504000px;}
.ws4{word-spacing:-8.568000px;}
.ws5{word-spacing:-8.460000px;}
.ws162{word-spacing:-7.560000px;}
.ws10a{word-spacing:-6.534000px;}
.ws105{word-spacing:-6.426000px;}
.ws143{word-spacing:-6.210000px;}
.ws168{word-spacing:-5.940000px;}
.ws4b{word-spacing:-5.832000px;}
.ws18{word-spacing:-5.724000px;}
.ws17a{word-spacing:-5.616000px;}
.ws17b{word-spacing:-5.508000px;}
.ws11d{word-spacing:-5.472000px;}
.ws12f{word-spacing:-5.238000px;}
.ws11f{word-spacing:-5.076000px;}
.wse8{word-spacing:-5.022000px;}
.ws74{word-spacing:-4.968000px;}
.wsd8{word-spacing:-4.752000px;}
.wsd7{word-spacing:-4.698000px;}
.ws129{word-spacing:-4.644000px;}
.ws12a{word-spacing:-4.536000px;}
.wsc2{word-spacing:-4.374000px;}
.ws14{word-spacing:-4.320000px;}
.wsac{word-spacing:-4.266000px;}
.wsfa{word-spacing:-3.888000px;}
.wsfb{word-spacing:-3.780000px;}
.ws110{word-spacing:-3.744000px;}
.ws23{word-spacing:-3.726000px;}
.wse9{word-spacing:-3.672000px;}
.ws11c{word-spacing:-3.648000px;}
.ws114{word-spacing:-3.618000px;}
.ws6c{word-spacing:-3.564000px;}
.wsdc{word-spacing:-3.456000px;}
.ws14e{word-spacing:-3.240000px;}
.wsed{word-spacing:-3.186000px;}
.ws11e{word-spacing:-3.168000px;}
.ws10c{word-spacing:-3.078000px;}
.ws183{word-spacing:-2.970000px;}
.ws34{word-spacing:-2.808000px;}
.ws33{word-spacing:-2.754000px;}
.ws9c{word-spacing:-2.700000px;}
.ws121{word-spacing:-2.646000px;}
.wsa8{word-spacing:-2.592000px;}
.ws3f{word-spacing:-2.538000px;}
.ws2c{word-spacing:-2.484000px;}
.ws2b{word-spacing:-2.430000px;}
.wsc6{word-spacing:-2.376000px;}
.ws7e{word-spacing:-2.268000px;}
.ws10f{word-spacing:-2.256000px;}
.ws15b{word-spacing:-2.214000px;}
.ws70{word-spacing:-2.160000px;}
.wsf0{word-spacing:-2.106000px;}
.wsf5{word-spacing:-2.052000px;}
.ws1d{word-spacing:-1.998000px;}
.ws78{word-spacing:-1.944000px;}
.ws43{word-spacing:-1.890000px;}
.ws60{word-spacing:-1.836000px;}
.ws42{word-spacing:-1.782000px;}
.wsb4{word-spacing:-1.728000px;}
.ws12e{word-spacing:-1.674000px;}
.ws32{word-spacing:-1.620000px;}
.ws31{word-spacing:-1.566000px;}
.ws6d{word-spacing:-1.512000px;}
.wsa7{word-spacing:-1.458000px;}
.wsa6{word-spacing:-1.404000px;}
.ws92{word-spacing:-1.350000px;}
.ws91{word-spacing:-1.296000px;}
.ws8d{word-spacing:-1.242000px;}
.ws35{word-spacing:-1.188000px;}
.ws8{word-spacing:-1.134000px;}
.ws41{word-spacing:-1.026000px;}
.ws20{word-spacing:-0.972000px;}
.ws111{word-spacing:-0.864000px;}
.wsb2{word-spacing:-0.810000px;}
.wsef{word-spacing:-0.756000px;}
.ws158{word-spacing:-0.660000px;}
.ws6f{word-spacing:-0.594000px;}
.ws54{word-spacing:-0.540000px;}
.wsee{word-spacing:-0.486000px;}
.ws123{word-spacing:-0.432000px;}
.ws102{word-spacing:-0.378000px;}
.ws69{word-spacing:-0.330000px;}
.wse2{word-spacing:-0.324000px;}
.wse6{word-spacing:-0.270000px;}
.wse0{word-spacing:-0.240000px;}
.ws94{word-spacing:-0.216000px;}
.ws22{word-spacing:-0.162000px;}
.ws149{word-spacing:-0.108000px;}
.ws103{word-spacing:-0.096000px;}
.wsb5{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.wsaa{word-spacing:0.054000px;}
.ws64{word-spacing:0.108000px;}
.ws10b{word-spacing:0.162000px;}
.wse4{word-spacing:0.216000px;}
.ws1e{word-spacing:0.270000px;}
.ws13b{word-spacing:0.324000px;}
.ws13a{word-spacing:0.378000px;}
.ws5d{word-spacing:0.432000px;}
.ws185{word-spacing:0.480000px;}
.wscc{word-spacing:0.486000px;}
.ws2e{word-spacing:0.540000px;}
.ws9e{word-spacing:0.594000px;}
.wsbf{word-spacing:0.648000px;}
.ws55{word-spacing:0.702000px;}
.wsae{word-spacing:0.756000px;}
.ws5e{word-spacing:0.810000px;}
.ws52{word-spacing:0.864000px;}
.ws40{word-spacing:0.918000px;}
.wsca{word-spacing:0.972000px;}
.wsb1{word-spacing:1.026000px;}
.wse{word-spacing:1.080000px;}
.wsdf{word-spacing:1.134000px;}
.ws3e{word-spacing:1.188000px;}
.wsfc{word-spacing:1.242000px;}
.wsf4{word-spacing:1.296000px;}
.ws2d{word-spacing:1.350000px;}
.ws68{word-spacing:1.404000px;}
.ws14a{word-spacing:1.458000px;}
.ws176{word-spacing:1.512000px;}
.wsf1{word-spacing:1.566000px;}
.ws56{word-spacing:1.620000px;}
.ws57{word-spacing:1.674000px;}
.ws61{word-spacing:1.728000px;}
.wsf8{word-spacing:1.782000px;}
.wsb6{word-spacing:1.890000px;}
.ws2f{word-spacing:1.944000px;}
.ws2a{word-spacing:1.998000px;}
.wsd0{word-spacing:2.052000px;}
.ws107{word-spacing:2.106000px;}
.ws1a{word-spacing:2.160000px;}
.ws38{word-spacing:2.214000px;}
.wse3{word-spacing:2.268000px;}
.ws112{word-spacing:2.322000px;}
.wscb{word-spacing:2.376000px;}
.ws12{word-spacing:2.430000px;}
.wseb{word-spacing:2.484000px;}
.wsb7{word-spacing:2.538000px;}
.ws13d{word-spacing:2.592000px;}
.ws6e{word-spacing:2.646000px;}
.ws37{word-spacing:2.700000px;}
.wsf{word-spacing:2.736000px;}
.ws7f{word-spacing:2.754000px;}
.wsd{word-spacing:2.772000px;}
.ws7d{word-spacing:2.862000px;}
.wsa4{word-spacing:2.916000px;}
.ws11{word-spacing:2.970000px;}
.ws66{word-spacing:3.024000px;}
.ws98{word-spacing:3.078000px;}
.ws6b{word-spacing:3.132000px;}
.ws82{word-spacing:3.186000px;}
.ws65{word-spacing:3.240000px;}
.wsc9{word-spacing:3.294000px;}
.ws44{word-spacing:3.348000px;}
.ws8e{word-spacing:3.456000px;}
.ws4e{word-spacing:3.510000px;}
.ws39{word-spacing:3.564000px;}
.wsb3{word-spacing:3.618000px;}
.ws122{word-spacing:3.672000px;}
.ws5f{word-spacing:3.726000px;}
.ws30{word-spacing:3.780000px;}
.ws80{word-spacing:3.834000px;}
.ws21{word-spacing:3.888000px;}
.ws45{word-spacing:3.942000px;}
.ws46{word-spacing:3.996000px;}
.wsbd{word-spacing:4.050000px;}
.ws72{word-spacing:4.104000px;}
.ws73{word-spacing:4.158000px;}
.ws50{word-spacing:4.212000px;}
.ws49{word-spacing:4.266000px;}
.ws97{word-spacing:4.320000px;}
.ws119{word-spacing:4.374000px;}
.wsbe{word-spacing:4.428000px;}
.ws1f{word-spacing:4.482000px;}
.ws177{word-spacing:4.536000px;}
.ws93{word-spacing:4.590000px;}
.wsd9{word-spacing:4.644000px;}
.ws4d{word-spacing:4.752000px;}
.wsa2{word-spacing:4.806000px;}
.ws99{word-spacing:4.860000px;}
.ws96{word-spacing:4.914000px;}
.ws48{word-spacing:4.968000px;}
.ws47{word-spacing:5.022000px;}
.wsec{word-spacing:5.076000px;}
.ws53{word-spacing:5.130000px;}
.ws147{word-spacing:5.184000px;}
.ws89{word-spacing:5.238000px;}
.ws4c{word-spacing:5.292000px;}
.ws146{word-spacing:5.346000px;}
.wsff{word-spacing:5.400000px;}
.ws7b{word-spacing:5.454000px;}
.wsdd{word-spacing:5.508000px;}
.ws137{word-spacing:5.562000px;}
.ws17{word-spacing:5.616000px;}
.ws186{word-spacing:5.670000px;}
.ws13e{word-spacing:5.724000px;}
.wsde{word-spacing:5.778000px;}
.ws159{word-spacing:5.832000px;}
.ws118{word-spacing:5.886000px;}
.ws5c{word-spacing:5.940000px;}
.ws106{word-spacing:5.994000px;}
.wsb{word-spacing:6.048000px;}
.ws5b{word-spacing:6.102000px;}
.ws7c{word-spacing:6.156000px;}
.ws76{word-spacing:6.210000px;}
.wsa{word-spacing:6.228000px;}
.wsc3{word-spacing:6.264000px;}
.ws75{word-spacing:6.318000px;}
.wsa9{word-spacing:6.372000px;}
.ws9a{word-spacing:6.426000px;}
.ws15e{word-spacing:6.480000px;}
.ws10e{word-spacing:6.534000px;}
.wsb9{word-spacing:6.588000px;}
.wsc{word-spacing:6.624000px;}
.wsfe{word-spacing:6.642000px;}
.ws51{word-spacing:6.696000px;}
.ws84{word-spacing:6.750000px;}
.ws120{word-spacing:6.804000px;}
.ws15f{word-spacing:6.858000px;}
.ws15{word-spacing:6.912000px;}
.ws130{word-spacing:6.966000px;}
.ws58{word-spacing:7.020000px;}
.ws79{word-spacing:7.074000px;}
.ws3c{word-spacing:7.128000px;}
.wsdb{word-spacing:7.182000px;}
.wsd4{word-spacing:7.236000px;}
.ws83{word-spacing:7.290000px;}
.ws36{word-spacing:7.398000px;}
.ws85{word-spacing:7.452000px;}
.wsda{word-spacing:7.506000px;}
.ws3a{word-spacing:7.560000px;}
.ws9d{word-spacing:7.614000px;}
.wsa5{word-spacing:7.668000px;}
.wscd{word-spacing:7.722000px;}
.ws10{word-spacing:7.776000px;}
.wsa3{word-spacing:7.830000px;}
.ws9f{word-spacing:7.884000px;}
.ws108{word-spacing:7.938000px;}
.ws9b{word-spacing:7.992000px;}
.ws11a{word-spacing:8.046000px;}
.ws88{word-spacing:8.100000px;}
.ws3d{word-spacing:8.154000px;}
.ws12b{word-spacing:8.208000px;}
.ws166{word-spacing:8.262000px;}
.ws67{word-spacing:8.316000px;}
.wsa0{word-spacing:8.424000px;}
.ws133{word-spacing:8.478000px;}
.ws126{word-spacing:8.532000px;}
.ws15a{word-spacing:8.586000px;}
.wsea{word-spacing:8.640000px;}
.wsa1{word-spacing:8.694000px;}
.ws15c{word-spacing:8.748000px;}
.wsaf{word-spacing:8.802000px;}
.wse7{word-spacing:8.856000px;}
.ws148{word-spacing:8.910000px;}
.ws8c{word-spacing:8.964000px;}
.ws4f{word-spacing:9.018000px;}
.ws127{word-spacing:9.072000px;}
.ws16{word-spacing:9.180000px;}
.ws4a{word-spacing:9.234000px;}
.ws135{word-spacing:9.342000px;}
.ws13{word-spacing:9.396000px;}
.ws10d{word-spacing:9.450000px;}
.ws115{word-spacing:9.504000px;}
.wsbc{word-spacing:9.558000px;}
.ws62{word-spacing:9.612000px;}
.wsb8{word-spacing:9.774000px;}
.wsba{word-spacing:9.828000px;}
.ws7a{word-spacing:9.882000px;}
.wsbb{word-spacing:9.936000px;}
.ws6a{word-spacing:9.990000px;}
.wsc8{word-spacing:10.044000px;}
.wsad{word-spacing:10.098000px;}
.wsd6{word-spacing:10.152000px;}
.ws19{word-spacing:10.206000px;}
.wsab{word-spacing:10.260000px;}
.ws180{word-spacing:10.314000px;}
.wsd1{word-spacing:10.368000px;}
.ws194{word-spacing:10.422000px;}
.ws24{word-spacing:10.476000px;}
.ws191{word-spacing:10.530000px;}
.wsc5{word-spacing:10.584000px;}
.ws87{word-spacing:10.638000px;}
.ws193{word-spacing:10.692000px;}
.ws5a{word-spacing:10.746000px;}
.ws3b{word-spacing:10.854000px;}
.wsd3{word-spacing:10.908000px;}
.ws190{word-spacing:10.962000px;}
.wsd5{word-spacing:11.016000px;}
.ws14c{word-spacing:11.070000px;}
.ws11b{word-spacing:11.124000px;}
.wsd2{word-spacing:11.178000px;}
.wsfd{word-spacing:11.232000px;}
.ws14b{word-spacing:11.286000px;}
.ws8a{word-spacing:11.502000px;}
.ws145{word-spacing:11.556000px;}
.ws81{word-spacing:11.610000px;}
.ws109{word-spacing:11.718000px;}
.ws117{word-spacing:11.880000px;}
.ws113{word-spacing:11.934000px;}
.ws132{word-spacing:12.096000px;}
.ws136{word-spacing:12.420000px;}
.ws14d{word-spacing:12.636000px;}
.wsf7{word-spacing:12.744000px;}
.wsf6{word-spacing:12.906000px;}
.ws59{word-spacing:13.230000px;}
.wscf{word-spacing:13.284000px;}
.wsc7{word-spacing:13.338000px;}
.wsc1{word-spacing:13.446000px;}
.ws8b{word-spacing:13.554000px;}
.ws172{word-spacing:13.662000px;}
.wsc4{word-spacing:13.716000px;}
.wse5{word-spacing:13.770000px;}
.ws77{word-spacing:13.824000px;}
.ws144{word-spacing:13.932000px;}
.ws139{word-spacing:13.986000px;}
.ws131{word-spacing:14.364000px;}
.ws15d{word-spacing:14.526000px;}
.wsce{word-spacing:14.742000px;}
.ws142{word-spacing:14.796000px;}
.ws63{word-spacing:14.904000px;}
.ws179{word-spacing:15.012000px;}
.ws167{word-spacing:15.174000px;}
.wsf3{word-spacing:15.282000px;}
.ws134{word-spacing:15.660000px;}
.ws178{word-spacing:15.714000px;}
.ws104{word-spacing:15.876000px;}
.ws138{word-spacing:16.146000px;}
.ws86{word-spacing:16.416000px;}
.ws13c{word-spacing:17.280000px;}
.ws116{word-spacing:17.550000px;}
.ws181{word-spacing:17.712000px;}
.ws174{word-spacing:18.144000px;}
.ws171{word-spacing:18.198000px;}
.wsf2{word-spacing:18.306000px;}
.ws182{word-spacing:18.468000px;}
.ws173{word-spacing:18.522000px;}
.ws170{word-spacing:18.630000px;}
.ws90{word-spacing:18.846000px;}
.ws175{word-spacing:18.900000px;}
.ws124{word-spacing:19.440000px;}
.ws13f{word-spacing:20.682000px;}
.ws125{word-spacing:20.736000px;}
.ws140{word-spacing:21.168000px;}
.ws17f{word-spacing:21.276000px;}
.ws95{word-spacing:22.302000px;}
.ws141{word-spacing:24.246000px;}
.ws17c{word-spacing:25.002000px;}
.ws196{word-spacing:25.704000px;}
.ws101{word-spacing:26.568000px;}
.ws195{word-spacing:26.622000px;}
.ws100{word-spacing:27.162000px;}
.ws1b{word-spacing:27.756000px;}
.ws1c{word-spacing:31.806000px;}
.ws184{word-spacing:43.416000px;}
.ws192{word-spacing:49.680000px;}
.ws12c{word-spacing:57.216000px;}
.wsf9{word-spacing:695.895000px;}
.wse1{word-spacing:695.895600px;}
._c{margin-left:-25.110000px;}
._e{margin-left:-7.621200px;}
._7{margin-left:-6.480000px;}
._8{margin-left:-5.459400px;}
._4{margin-left:-3.960000px;}
._1{margin-left:-2.916000px;}
._0{margin-left:-1.080000px;}
._2{width:1.080000px;}
._3{width:2.833200px;}
._5{width:3.931200px;}
._6{width:5.727600px;}
._9{width:6.804000px;}
._f{width:8.062200px;}
._a{width:9.414000px;}
._10{width:11.044800px;}
._12{width:18.576000px;}
._d{width:20.628000px;}
._11{width:24.570000px;}
._20{width:39.517200px;}
._13{width:44.712000px;}
._1c{width:60.289200px;}
._1d{width:82.699200px;}
._1a{width:114.289200px;}
._14{width:196.750800px;}
._15{width:209.278800px;}
._16{width:218.728800px;}
._18{width:283.042800px;}
._1e{width:463.309200px;}
._17{width:665.848800px;}
._b{width:686.772600px;}
._21{width:801.115200px;}
._19{width:841.755600px;}
._1b{width:1149.433200px;}
._1f{width:1165.849200px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(99,100,102);}
.fc2{color:rgb(147,149,152);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:39.602850px;}
.y3{bottom:50.272950px;}
.y57{bottom:85.057500px;}
.y266{bottom:86.559750px;}
.y282{bottom:86.700150px;}
.y8a{bottom:86.986050px;}
.y1bd{bottom:87.469200px;}
.y121{bottom:87.794850px;}
.ye4{bottom:88.339650px;}
.y11{bottom:89.252700px;}
.y170{bottom:89.261850px;}
.y1cb{bottom:89.779200px;}
.y151{bottom:91.454250px;}
.yb4{bottom:94.990650px;}
.ycb{bottom:95.488800px;}
.y169{bottom:96.644850px;}
.y10{bottom:100.052700px;}
.y1fc{bottom:100.690650px;}
.y56{bottom:101.257500px;}
.y265{bottom:103.056750px;}
.y89{bottom:103.186050px;}
.y1bc{bottom:103.669200px;}
.y120{bottom:103.994850px;}
.ye3{bottom:104.539650px;}
.y16f{bottom:105.461850px;}
.y234{bottom:108.814650px;}
.yf{bottom:110.852700px;}
.yb3{bottom:111.190650px;}
.yca{bottom:111.688800px;}
.y281{bottom:111.702150px;}
.y112{bottom:112.497750px;}
.y168{bottom:112.844850px;}
.y150{bottom:116.159250px;}
.y1fb{bottom:116.890650px;}
.y55{bottom:117.457500px;}
.y219{bottom:119.713650px;}
.y1bb{bottom:119.869200px;}
.y11f{bottom:120.194850px;}
.ye2{bottom:120.739650px;}
.y16e{bottom:121.661850px;}
.y233{bottom:125.311650px;}
.y243{bottom:125.824650px;}
.yb2{bottom:127.390650px;}
.yc9{bottom:127.888800px;}
.y88{bottom:127.891050px;}
.y280{bottom:128.199150px;}
.y111{bottom:128.697750px;}
.y14f{bottom:132.359250px;}
.y1fa{bottom:133.090650px;}
.y54{bottom:133.657500px;}
.y1ba{bottom:136.069200px;}
.y218{bottom:136.210650px;}
.y11e{bottom:136.394850px;}
.ye1{bottom:136.939650px;}
.y16d{bottom:137.861850px;}
.y12c{bottom:140.706000px;}
.y24c{bottom:141.808650px;}
.y242{bottom:142.321650px;}
.y1ca{bottom:142.780650px;}
.yb1{bottom:143.590650px;}
.yc8{bottom:144.088800px;}
.y87{bottom:144.091050px;}
.y27f{bottom:144.696150px;}
.y110{bottom:144.897750px;}
.y14e{bottom:148.559250px;}
.y167{bottom:148.844850px;}
.y1f9{bottom:149.290650px;}
.y53{bottom:149.857500px;}
.y12{bottom:149.984700px;}
.y1b9{bottom:152.269200px;}
.y11d{bottom:152.594850px;}
.y264{bottom:153.060750px;}
.ye0{bottom:153.139650px;}
.y241{bottom:158.818650px;}
.y1c9{bottom:158.980650px;}
.y18e{bottom:160.197750px;}
.yc7{bottom:160.288800px;}
.y86{bottom:160.291050px;}
.y10f{bottom:161.097750px;}
.y27e{bottom:161.193150px;}
.y14d{bottom:164.759250px;}
.y1f8{bottom:165.490650px;}
.y52{bottom:166.057500px;}
.yb0{bottom:168.295650px;}
.y1b8{bottom:168.469200px;}
.ydf{bottom:169.339650px;}
.y263{bottom:169.557750px;}
.y164{bottom:175.137450px;}
.y1c8{bottom:175.180650px;}
.y232{bottom:175.315650px;}
.y18d{bottom:176.397750px;}
.yc6{bottom:176.488800px;}
.y85{bottom:176.491050px;}
.y10e{bottom:177.297750px;}
.y14c{bottom:180.959250px;}
.y1f7{bottom:181.690650px;}
.y51{bottom:182.257500px;}
.yaf{bottom:184.495650px;}
.y1b7{bottom:184.669200px;}
.yde{bottom:185.539650px;}
.y27d{bottom:186.195150px;}
.y217{bottom:186.214650px;}
.y11c{bottom:188.594850px;}
.y2b{bottom:190.218300px;}
.y1c7{bottom:191.380650px;}
.y231{bottom:191.812650px;}
.y18c{bottom:192.597750px;}
.yc5{bottom:192.688800px;}
.y84{bottom:192.691050px;}
.y10d{bottom:193.497750px;}
.y14b{bottom:197.159250px;}
.y1f6{bottom:197.890650px;}
.y50{bottom:198.457500px;}
.yae{bottom:200.695650px;}
.y1b6{bottom:200.869200px;}
.ydd{bottom:201.739650px;}
.y27c{bottom:202.692150px;}
.y216{bottom:202.711650px;}
.y2a{bottom:205.216800px;}
.y1c6{bottom:207.580650px;}
.y24b{bottom:208.309650px;}
.y18b{bottom:208.797750px;}
.y240{bottom:208.822650px;}
.yc4{bottom:208.888800px;}
.y83{bottom:208.891050px;}
.y10c{bottom:209.697750px;}
.y14a{bottom:213.359250px;}
.y1f5{bottom:214.090650px;}
.y4f{bottom:214.657500px;}
.yad{bottom:216.895650px;}
.ydc{bottom:217.939650px;}
.y262{bottom:219.561750px;}
.y29{bottom:220.215300px;}
.y1c5{bottom:223.780650px;}
.y24a{bottom:224.806650px;}
.y18a{bottom:224.997750px;}
.yc3{bottom:225.088800px;}
.y82{bottom:225.091050px;}
.y23f{bottom:225.319650px;}
.y1b5{bottom:225.574200px;}
.y10b{bottom:225.897750px;}
.y27b{bottom:227.694150px;}
.y149{bottom:229.559250px;}
.y1f4{bottom:230.290650px;}
.yac{bottom:233.095650px;}
.ydb{bottom:234.139650px;}
.y28{bottom:235.213800px;}
.y4e{bottom:239.362500px;}
.y189{bottom:241.197750px;}
.y81{bottom:241.291050px;}
.y11b{bottom:241.600650px;}
.y1b4{bottom:241.774200px;}
.y230{bottom:241.816650px;}
.y10a{bottom:242.097750px;}
.y27a{bottom:244.191150px;}
.y17a{bottom:244.891050px;}
.y148{bottom:245.759250px;}
.y1f3{bottom:246.490650px;}
.yab{bottom:249.295650px;}
.yc2{bottom:249.793800px;}
.y27{bottom:250.212300px;}
.y173{bottom:252.397650px;}
.y215{bottom:252.715650px;}
.y4d{bottom:255.562500px;}
.y188{bottom:257.397750px;}
.y80{bottom:257.491050px;}
.y11a{bottom:257.800650px;}
.y1b3{bottom:257.974200px;}
.y109{bottom:258.297750px;}
.yda{bottom:258.844650px;}
.y279{bottom:260.688150px;}
.y147{bottom:261.959250px;}
.y1f2{bottom:262.690650px;}
.y26{bottom:265.210800px;}
.yaa{bottom:265.495650px;}
.yc1{bottom:265.993800px;}
.y214{bottom:269.212650px;}
.y261{bottom:269.565750px;}
.y4c{bottom:271.762500px;}
.y1c4{bottom:273.190650px;}
.y187{bottom:273.597750px;}
.y7f{bottom:273.691050px;}
.y119{bottom:274.000650px;}
.y1b2{bottom:274.174200px;}
.y108{bottom:274.497750px;}
.y249{bottom:274.810650px;}
.yd9{bottom:275.044650px;}
.y23e{bottom:275.323650px;}
.y278{bottom:277.185150px;}
.y146{bottom:278.159250px;}
.y1f1{bottom:278.890650px;}
.y25{bottom:280.209300px;}
.ya9{bottom:281.695650px;}
.yc0{bottom:282.193800px;}
.y213{bottom:285.709650px;}
.y260{bottom:286.062750px;}
.y4b{bottom:287.962500px;}
.y1c3{bottom:289.390650px;}
.y186{bottom:289.797750px;}
.y7e{bottom:289.891050px;}
.y118{bottom:290.200650px;}
.y1b1{bottom:290.374200px;}
.yd8{bottom:291.244650px;}
.y248{bottom:291.307650px;}
.y22f{bottom:291.820650px;}
.y12b{bottom:294.846000px;}
.y1f0{bottom:295.090650px;}
.y24{bottom:295.207800px;}
.ya8{bottom:297.895650px;}
.ybf{bottom:298.393800px;}
.y107{bottom:299.202750px;}
.y277{bottom:302.187150px;}
.y145{bottom:302.864250px;}
.y4a{bottom:304.162500px;}
.y1c2{bottom:305.590650px;}
.y185{bottom:305.997750px;}
.y117{bottom:306.400650px;}
.y13c{bottom:306.897750px;}
.yd7{bottom:307.444650px;}
.y22e{bottom:308.317650px;}
.y23{bottom:310.206300px;}
.ya7{bottom:314.095650px;}
.ybe{bottom:314.593800px;}
.y106{bottom:315.402750px;}
.y276{bottom:318.684150px;}
.y144{bottom:319.064250px;}
.y1ef{bottom:319.795650px;}
.y49{bottom:320.362500px;}
.y1c1{bottom:321.790650px;}
.y116{bottom:322.600650px;}
.y13b{bottom:323.097750px;}
.yd6{bottom:323.644650px;}
.y22d{bottom:324.814650px;}
.y7d{bottom:325.891050px;}
.y1b0{bottom:326.374200px;}
.ya6{bottom:330.295650px;}
.y184{bottom:330.702750px;}
.ybd{bottom:330.793800px;}
.y105{bottom:331.602750px;}
.y275{bottom:335.181150px;}
.y143{bottom:335.264250px;}
.y212{bottom:335.713650px;}
.y1ee{bottom:335.995650px;}
.y25f{bottom:336.066750px;}
.y48{bottom:336.562500px;}
.y1c0{bottom:337.990650px;}
.y115{bottom:338.800650px;}
.y13a{bottom:339.297750px;}
.yd5{bottom:339.844650px;}
.y22{bottom:340.203300px;}
.y23d{bottom:341.311650px;}
.ya5{bottom:346.495650px;}
.y183{bottom:346.902750px;}
.ybc{bottom:346.993800px;}
.y104{bottom:347.802750px;}
.y165{bottom:349.257450px;}
.y142{bottom:351.464250px;}
.y1ed{bottom:352.195650px;}
.y211{bottom:352.210650px;}
.y25e{bottom:352.563750px;}
.y47{bottom:352.762500px;}
.y12a{bottom:352.830000px;}
.y1bf{bottom:354.190650px;}
.y114{bottom:355.000650px;}
.y139{bottom:355.497750px;}
.y15d{bottom:355.498800px;}
.yd4{bottom:356.044650px;}
.y247{bottom:357.808650px;}
.y274{bottom:360.183150px;}
.ya4{bottom:362.695650px;}
.y182{bottom:363.102750px;}
.ybb{bottom:363.193800px;}
.y103{bottom:364.002750px;}
.y141{bottom:367.664250px;}
.y1ec{bottom:368.395650px;}
.y210{bottom:368.707650px;}
.y46{bottom:368.962500px;}
.y21{bottom:370.200300px;}
.y1be{bottom:370.390650px;}
.y113{bottom:371.200650px;}
.y138{bottom:371.697750px;}
.y15c{bottom:371.698800px;}
.yd3{bottom:372.244650px;}
.y22c{bottom:374.818650px;}
.y7c{bottom:378.895650px;}
.y181{bottom:379.302750px;}
.y1af{bottom:379.375500px;}
.yba{bottom:379.393800px;}
.y102{bottom:380.202750px;}
.y140{bottom:383.864250px;}
.y1eb{bottom:384.595650px;}
.y45{bottom:385.162500px;}
.y273{bottom:385.185150px;}
.y20{bottom:385.198800px;}
.y127{bottom:386.508150px;}
.ya3{bottom:387.400650px;}
.y137{bottom:387.897750px;}
.y15b{bottom:387.898800px;}
.yd2{bottom:388.444650px;}
.y23c{bottom:391.315650px;}
.y7b{bottom:395.095650px;}
.y180{bottom:395.502750px;}
.y1ae{bottom:395.575500px;}
.y101{bottom:396.402750px;}
.y16c{bottom:398.410200px;}
.y13f{bottom:400.064250px;}
.y1ea{bottom:400.795650px;}
.y44{bottom:401.362500px;}
.y272{bottom:401.682150px;}
.y25d{bottom:402.567750px;}
.ya2{bottom:403.600650px;}
.y136{bottom:404.097750px;}
.yb9{bottom:404.098800px;}
.yd1{bottom:404.644650px;}
.y23b{bottom:407.812650px;}
.y172{bottom:408.025650px;}
.y7a{bottom:411.295650px;}
.y17f{bottom:411.702750px;}
.y1ad{bottom:411.775500px;}
.y100{bottom:412.602750px;}
.y1f{bottom:415.195800px;}
.y13e{bottom:416.264250px;}
.y1e9{bottom:416.995650px;}
.y43{bottom:417.562500px;}
.y20f{bottom:418.711650px;}
.y25c{bottom:419.064750px;}
.ya1{bottom:419.800650px;}
.y135{bottom:420.297750px;}
.yb8{bottom:420.298800px;}
.yd0{bottom:420.844650px;}
.y23a{bottom:424.309650px;}
.y22b{bottom:424.822650px;}
.y271{bottom:426.684150px;}
.y79{bottom:427.495650px;}
.y17e{bottom:427.902750px;}
.y1ac{bottom:427.975500px;}
.yff{bottom:428.802750px;}
.y1e{bottom:430.194300px;}
.y1e8{bottom:433.195650px;}
.y42{bottom:433.762500px;}
.y20e{bottom:435.208650px;}
.y25b{bottom:435.561750px;}
.ya0{bottom:436.000650px;}
.y134{bottom:436.497750px;}
.yb7{bottom:436.498800px;}
.ycf{bottom:437.044650px;}
.y246{bottom:440.806650px;}
.y22a{bottom:441.319650px;}
.y270{bottom:443.181150px;}
.y78{bottom:443.695650px;}
.y17d{bottom:444.102750px;}
.y1ab{bottom:444.175500px;}
.yfe{bottom:445.002750px;}
.y1d{bottom:445.192800px;}
.y1e7{bottom:449.395650px;}
.y41{bottom:449.962500px;}
.y9f{bottom:452.200650px;}
.y133{bottom:452.697750px;}
.y15a{bottom:452.698800px;}
.yce{bottom:453.244650px;}
.y229{bottom:457.816650px;}
.y77{bottom:459.895650px;}
.y1c{bottom:460.191300px;}
.y17c{bottom:460.302750px;}
.y1aa{bottom:460.375500px;}
.yfd{bottom:461.202750px;}
.y155{bottom:461.470200px;}
.y1e6{bottom:465.595650px;}
.y40{bottom:466.162500px;}
.y26f{bottom:468.183150px;}
.y9e{bottom:468.400650px;}
.y160{bottom:468.653250px;}
.y132{bottom:468.897750px;}
.y159{bottom:468.898800px;}
.yb6{bottom:472.498800px;}
.y228{bottom:474.313650px;}
.y1b{bottom:475.189800px;}
.y76{bottom:476.095650px;}
.y126{bottom:476.433150px;}
.y1a9{bottom:476.575500px;}
.yfc{bottom:477.402750px;}
.y1e5{bottom:481.795650px;}
.y3f{bottom:482.362500px;}
.y9d{bottom:484.600650px;}
.y26e{bottom:484.680150px;}
.y131{bottom:485.097750px;}
.y20d{bottom:485.212650px;}
.y25a{bottom:485.565750px;}
.y15f{bottom:487.628250px;}
.y1a{bottom:490.188300px;}
.y239{bottom:490.810650px;}
.y75{bottom:492.295650px;}
.y12e{bottom:493.105650px;}
.yfb{bottom:493.602750px;}
.y1e4{bottom:497.995650px;}
.y3e{bottom:498.562500px;}
.y129{bottom:499.349850px;}
.y9c{bottom:500.800650px;}
.y1a8{bottom:501.280500px;}
.y130{bottom:501.297750px;}
.y20c{bottom:501.709650px;}
.y259{bottom:502.062750px;}
.ycd{bottom:502.654650px;}
.y158{bottom:504.898800px;}
.y19{bottom:505.186800px;}
.y74{bottom:508.495650px;}
.y12d{bottom:509.305650px;}
.y26d{bottom:509.682150px;}
.yfa{bottom:509.802750px;}
.y1e3{bottom:514.195650px;}
.y9b{bottom:517.000650px;}
.y1a7{bottom:517.480500px;}
.y18{bottom:520.185300px;}
.y3d{bottom:523.267500px;}
.y227{bottom:524.317650px;}
.yb5{bottom:525.505650px;}
.y163{bottom:525.597450px;}
.yf9{bottom:526.002750px;}
.y1e2{bottom:530.395650px;}
.y73{bottom:533.200650px;}
.y1a6{bottom:533.680500px;}
.y26c{bottom:534.684150px;}
.y154{bottom:535.109700px;}
.y17{bottom:535.183800px;}
.y128{bottom:537.062400px;}
.y3c{bottom:539.467500px;}
.y226{bottom:540.814650px;}
.y9a{bottom:541.705650px;}
.yf8{bottom:542.202750px;}
.y72{bottom:549.400650px;}
.y153{bottom:549.509700px;}
.y1a5{bottom:549.880500px;}
.y16{bottom:550.182300px;}
.y26b{bottom:551.181150px;}
.y20b{bottom:551.713650px;}
.y258{bottom:552.066750px;}
.y1e1{bottom:555.100650px;}
.y3b{bottom:555.667500px;}
.y225{bottom:557.311650px;}
.y99{bottom:557.905650px;}
.yf7{bottom:558.402750px;}
.y15{bottom:565.180800px;}
.y71{bottom:565.600650px;}
.y20a{bottom:568.210650px;}
.y1e0{bottom:571.300650px;}
.y3a{bottom:571.867500px;}
.y238{bottom:573.808650px;}
.y98{bottom:574.105650px;}
.y1a4{bottom:574.585500px;}
.yf6{bottom:574.602750px;}
.y191{bottom:574.841400px;}
.y17b{bottom:574.931700px;}
.y26a{bottom:576.183150px;}
.y14{bottom:580.179300px;}
.y70{bottom:581.800650px;}
.y209{bottom:584.707650px;}
.y1df{bottom:587.500650px;}
.y39{bottom:588.067500px;}
.y97{bottom:590.305650px;}
.y1a3{bottom:590.785500px;}
.yf5{bottom:590.802750px;}
.y16b{bottom:594.760200px;}
.y156{bottom:597.286950px;}
.y15e{bottom:597.353250px;}
.y6f{bottom:598.000650px;}
.y257{bottom:602.070750px;}
.y1de{bottom:603.700650px;}
.y38{bottom:604.267500px;}
.y96{bottom:606.505650px;}
.y1a2{bottom:606.985500px;}
.yf4{bottom:607.002750px;}
.y224{bottom:607.315650px;}
.y13{bottom:610.176300px;}
.y269{bottom:612.483150px;}
.y6e{bottom:614.200650px;}
.y256{bottom:618.567750px;}
.y1dd{bottom:619.900650px;}
.y37{bottom:620.467500px;}
.y95{bottom:622.705650px;}
.y171{bottom:623.173650px;}
.y1a1{bottom:623.185500px;}
.yf3{bottom:623.202750px;}
.y223{bottom:623.812650px;}
.y6d{bottom:630.400650px;}
.y288{bottom:632.317650px;}
.y208{bottom:634.711650px;}
.y1dc{bottom:636.100650px;}
.y94{bottom:638.905650px;}
.yf2{bottom:639.402750px;}
.y268{bottom:640.822650px;}
.y36{bottom:645.172500px;}
.y6c{bottom:646.600650px;}
.y1a0{bottom:647.890500px;}
.y207{bottom:651.208650px;}
.y1db{bottom:652.300650px;}
.y162{bottom:655.101450px;}
.y93{bottom:655.105650px;}
.yf1{bottom:655.602750px;}
.ye{bottom:656.179800px;}
.y245{bottom:657.319650px;}
.y35{bottom:661.372500px;}
.y6b{bottom:662.800650px;}
.y19f{bottom:664.090500px;}
.y1da{bottom:668.500650px;}
.y255{bottom:668.571750px;}
.yd{bottom:668.779800px;}
.y1fd{bottom:670.495650px;}
.y125{bottom:670.992750px;}
.y92{bottom:671.305650px;}
.yf0{bottom:671.802750px;}
.y222{bottom:673.816650px;}
.y34{bottom:677.572500px;}
.y6a{bottom:679.000650px;}
.y19e{bottom:680.290500px;}
.y1d9{bottom:684.700650px;}
.y254{bottom:685.068750px;}
.y91{bottom:687.505650px;}
.yef{bottom:688.002750px;}
.y221{bottom:690.313650px;}
.y33{bottom:693.772500px;}
.y179{bottom:695.200650px;}
.y19d{bottom:696.490500px;}
.y287{bottom:698.818650px;}
.y1d8{bottom:700.900650px;}
.y206{bottom:701.212650px;}
.y253{bottom:701.565750px;}
.y69{bottom:703.705650px;}
.yee{bottom:704.202750px;}
.y237{bottom:706.810650px;}
.yc{bottom:708.232950px;}
.y16a{bottom:708.956700px;}
.y32{bottom:709.972500px;}
.y90{bottom:712.210650px;}
.y19c{bottom:712.690500px;}
.y286{bottom:715.315650px;}
.y1d7{bottom:717.100650px;}
.y205{bottom:717.709650px;}
.yb{bottom:719.032950px;}
.y68{bottom:719.905650px;}
.y124{bottom:720.402750px;}
.y267{bottom:723.820650px;}
.y12f{bottom:724.002750px;}
.y31{bottom:726.172500px;}
.y8f{bottom:728.410650px;}
.ya{bottom:729.832950px;}
.y1d6{bottom:733.300650px;}
.y204{bottom:734.206650px;}
.y67{bottom:736.105650px;}
.y123{bottom:736.602750px;}
.y19b{bottom:737.395500px;}
.yed{bottom:740.202750px;}
.y220{bottom:740.317650px;}
.y30{bottom:742.372500px;}
.y8e{bottom:744.610650px;}
.y152{bottom:745.044300px;}
.y1d5{bottom:749.500650px;}
.y252{bottom:751.569750px;}
.y66{bottom:752.305650px;}
.y19a{bottom:753.595500px;}
.y21f{bottom:756.814650px;}
.y2f{bottom:758.572500px;}
.y8d{bottom:760.810650px;}
.y1d4{bottom:765.700650px;}
.y65{bottom:768.505650px;}
.y199{bottom:769.795500px;}
.y122{bottom:772.602750px;}
.y21e{bottom:773.311650px;}
.y8c{bottom:777.010650px;}
.y9{bottom:780.537300px;}
.y1d3{bottom:781.900650px;}
.y203{bottom:784.210650px;}
.y190{bottom:784.265400px;}
.y64{bottom:784.705650px;}
.y198{bottom:785.995500px;}
.y236{bottom:789.808650px;}
.yec{bottom:793.210500px;}
.y8b{bottom:793.210650px;}
.y2e{bottom:794.572500px;}
.y285{bottom:798.313650px;}
.y18f{bottom:798.665400px;}
.y202{bottom:800.707650px;}
.y157{bottom:800.905650px;}
.y161{bottom:801.381450px;}
.y251{bottom:801.573750px;}
.y8{bottom:804.541800px;}
.y1d2{bottom:806.605650px;}
.y244{bottom:806.818650px;}
.yeb{bottom:809.410500px;}
.y63{bottom:809.410650px;}
.y197{bottom:810.700500px;}
.y166{bottom:817.105650px;}
.y250{bottom:818.070750px;}
.y1d1{bottom:822.805650px;}
.y21d{bottom:823.315650px;}
.yea{bottom:825.610500px;}
.y62{bottom:825.610650px;}
.y196{bottom:826.900500px;}
.y7{bottom:828.541800px;}
.y178{bottom:833.305650px;}
.y24f{bottom:834.567750px;}
.y1d0{bottom:839.005650px;}
.y21c{bottom:839.812650px;}
.ye9{bottom:841.810500px;}
.y61{bottom:841.810650px;}
.y195{bottom:843.100500px;}
.y177{bottom:849.505650px;}
.y6{bottom:849.541800px;}
.y201{bottom:850.711650px;}
.y1cf{bottom:855.205650px;}
.y235{bottom:856.309650px;}
.ye8{bottom:858.010500px;}
.y60{bottom:858.010650px;}
.y194{bottom:859.300500px;}
.y176{bottom:865.705650px;}
.y200{bottom:867.208650px;}
.y5{bottom:870.541800px;}
.y1ce{bottom:871.405650px;}
.ycc{bottom:873.400650px;}
.ye7{bottom:874.210500px;}
.y5f{bottom:874.210650px;}
.y5a{bottom:877.818000px;}
.y284{bottom:881.311650px;}
.y175{bottom:881.905650px;}
.y1ff{bottom:883.705650px;}
.y193{bottom:884.005500px;}
.y24e{bottom:884.571750px;}
.y1cd{bottom:887.605650px;}
.y13d{bottom:889.220850px;}
.y21b{bottom:889.816650px;}
.ye6{bottom:890.410500px;}
.y5e{bottom:890.410650px;}
.y59{bottom:892.816500px;}
.y283{bottom:897.808650px;}
.y174{bottom:898.105650px;}
.y24d{bottom:901.068750px;}
.y1cc{bottom:903.805650px;}
.y21a{bottom:906.313650px;}
.ye5{bottom:906.610500px;}
.y5d{bottom:906.610650px;}
.y192{bottom:920.005500px;}
.y1fe{bottom:920.005650px;}
.y4{bottom:922.810500px;}
.y5c{bottom:922.810650px;}
.y58{bottom:922.813500px;}
.y2d{bottom:963.966600px;}
.y1{bottom:964.131450px;}
.y2c{bottom:978.366600px;}
.y5b{bottom:979.769100px;}
.h7{height:37.800000px;}
.ha{height:43.989258px;}
.h6{height:44.100000px;}
.h3{height:50.400000px;}
.h2{height:56.700000px;}
.h9{height:69.300000px;}
.h5{height:81.900000px;}
.h4{height:88.200000px;}
.h8{height:93.080400px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:46.702500px;}
.x5{left:52.654650px;}
.x1{left:85.039350px;}
.xa{left:91.039350px;}
.x4{left:106.301850px;}
.xc{left:111.998550px;}
.x11{left:123.448800px;}
.x15{left:146.951700px;}
.x1e{left:206.120850px;}
.x7{left:222.671850px;}
.x3{left:235.913700px;}
.x10{left:270.272550px;}
.x16{left:273.424650px;}
.x1a{left:280.674000px;}
.x9{left:281.718150px;}
.xb{left:293.873850px;}
.x14{left:338.799300px;}
.x17{left:340.470450px;}
.xd{left:366.287100px;}
.x19{left:408.189000px;}
.x1c{left:411.019500px;}
.x18{left:420.962100px;}
.x1b{left:432.283500px;}
.x13{left:457.420500px;}
.x12{left:469.864500px;}
.x6{left:561.535650px;}
.x1d{left:678.385950px;}
.xf{left:679.489950px;}
.x8{left:683.581950px;}
.x2{left:684.685800px;}
@media print{
.v2{vertical-align:-6.384000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:37.938133pt;}
.ls29{letter-spacing:-6.144000pt;}
.ls1f{letter-spacing:-3.120000pt;}
.ls2e{letter-spacing:-2.784000pt;}
.ls46{letter-spacing:-2.736000pt;}
.ls2c{letter-spacing:-2.688000pt;}
.ls1a{letter-spacing:-2.112000pt;}
.ls1e{letter-spacing:-2.064000pt;}
.ls2d{letter-spacing:-1.872000pt;}
.ls32{letter-spacing:-1.776000pt;}
.ls2b{letter-spacing:-1.632000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls1b{letter-spacing:-1.392000pt;}
.ls3{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-1.200000pt;}
.ls31{letter-spacing:-1.104000pt;}
.ls23{letter-spacing:-1.008000pt;}
.ls9{letter-spacing:-0.960000pt;}
.ls28{letter-spacing:-0.864000pt;}
.ls26{letter-spacing:-0.768000pt;}
.ls7{letter-spacing:-0.746667pt;}
.ls40{letter-spacing:-0.720000pt;}
.ls43{letter-spacing:-0.672000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls3b{letter-spacing:-0.624000pt;}
.ls30{letter-spacing:-0.576000pt;}
.ls2f{letter-spacing:-0.528000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.432000pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.373333pt;}
.ls25{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.288000pt;}
.ls39{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.144000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls37{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls33{letter-spacing:0.144000pt;}
.ls11{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.240000pt;}
.ls3f{letter-spacing:0.288000pt;}
.ls38{letter-spacing:0.336000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.432000pt;}
.ls35{letter-spacing:0.528000pt;}
.ls36{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.586667pt;}
.ls27{letter-spacing:0.672000pt;}
.ls3a{letter-spacing:0.720000pt;}
.ls3c{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.816000pt;}
.ls20{letter-spacing:1.248000pt;}
.ls34{letter-spacing:1.392000pt;}
.ls44{letter-spacing:1.440000pt;}
.ls24{letter-spacing:1.968000pt;}
.ls45{letter-spacing:4.944000pt;}
.ls13{letter-spacing:4.992000pt;}
.ls0{letter-spacing:5.568000pt;}
.ls3d{letter-spacing:7.104000pt;}
.ls14{letter-spacing:8.640000pt;}
.ls15{letter-spacing:8.688000pt;}
.ls3e{letter-spacing:14.496000pt;}
.ls41{letter-spacing:16.032000pt;}
.ls42{letter-spacing:18.576000pt;}
.lsd{letter-spacing:629.880000pt;}
.ls12{letter-spacing:629.880533pt;}
.ws18e{word-spacing:-31.440000pt;}
.ws18d{word-spacing:-28.896000pt;}
.ws18a{word-spacing:-27.360000pt;}
.ws189{word-spacing:-19.968000pt;}
.ws198{word-spacing:-17.808000pt;}
.ws26{word-spacing:-14.901333pt;}
.ws156{word-spacing:-14.832000pt;}
.ws12d{word-spacing:-14.314667pt;}
.ws197{word-spacing:-14.304000pt;}
.ws16d{word-spacing:-14.256000pt;}
.ws151{word-spacing:-14.112000pt;}
.ws29{word-spacing:-13.824000pt;}
.ws188{word-spacing:-13.632000pt;}
.ws17e{word-spacing:-13.584000pt;}
.ws161{word-spacing:-13.536000pt;}
.ws16f{word-spacing:-13.440000pt;}
.ws16e{word-spacing:-13.392000pt;}
.ws152{word-spacing:-13.248000pt;}
.ws18b{word-spacing:-13.152000pt;}
.ws19a{word-spacing:-13.104000pt;}
.ws199{word-spacing:-13.056000pt;}
.ws16c{word-spacing:-13.008000pt;}
.ws155{word-spacing:-12.864000pt;}
.ws7{word-spacing:-12.816000pt;}
.ws150{word-spacing:-12.768000pt;}
.ws27{word-spacing:-12.720000pt;}
.ws14f{word-spacing:-12.672000pt;}
.ws17d{word-spacing:-12.624000pt;}
.ws153{word-spacing:-12.576000pt;}
.ws157{word-spacing:-12.528000pt;}
.ws28{word-spacing:-12.432000pt;}
.ws71{word-spacing:-12.384000pt;}
.ws169{word-spacing:-12.336000pt;}
.ws16a{word-spacing:-12.288000pt;}
.wsc0{word-spacing:-12.240000pt;}
.ws18f{word-spacing:-12.192000pt;}
.ws18c{word-spacing:-12.144000pt;}
.ws16b{word-spacing:-12.048000pt;}
.ws0{word-spacing:-11.952000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws187{word-spacing:-11.712000pt;}
.ws160{word-spacing:-11.664000pt;}
.wsb0{word-spacing:-11.472000pt;}
.ws154{word-spacing:-11.424000pt;}
.ws163{word-spacing:-11.232000pt;}
.ws8f{word-spacing:-10.992000pt;}
.ws128{word-spacing:-10.880000pt;}
.ws25{word-spacing:-10.666667pt;}
.ws164{word-spacing:-10.176000pt;}
.ws165{word-spacing:-10.080000pt;}
.ws2{word-spacing:-9.333333pt;}
.ws3{word-spacing:-8.586667pt;}
.ws1{word-spacing:-8.448000pt;}
.ws4{word-spacing:-7.616000pt;}
.ws5{word-spacing:-7.520000pt;}
.ws162{word-spacing:-6.720000pt;}
.ws10a{word-spacing:-5.808000pt;}
.ws105{word-spacing:-5.712000pt;}
.ws143{word-spacing:-5.520000pt;}
.ws168{word-spacing:-5.280000pt;}
.ws4b{word-spacing:-5.184000pt;}
.ws18{word-spacing:-5.088000pt;}
.ws17a{word-spacing:-4.992000pt;}
.ws17b{word-spacing:-4.896000pt;}
.ws11d{word-spacing:-4.864000pt;}
.ws12f{word-spacing:-4.656000pt;}
.ws11f{word-spacing:-4.512000pt;}
.wse8{word-spacing:-4.464000pt;}
.ws74{word-spacing:-4.416000pt;}
.wsd8{word-spacing:-4.224000pt;}
.wsd7{word-spacing:-4.176000pt;}
.ws129{word-spacing:-4.128000pt;}
.ws12a{word-spacing:-4.032000pt;}
.wsc2{word-spacing:-3.888000pt;}
.ws14{word-spacing:-3.840000pt;}
.wsac{word-spacing:-3.792000pt;}
.wsfa{word-spacing:-3.456000pt;}
.wsfb{word-spacing:-3.360000pt;}
.ws110{word-spacing:-3.328000pt;}
.ws23{word-spacing:-3.312000pt;}
.wse9{word-spacing:-3.264000pt;}
.ws11c{word-spacing:-3.242667pt;}
.ws114{word-spacing:-3.216000pt;}
.ws6c{word-spacing:-3.168000pt;}
.wsdc{word-spacing:-3.072000pt;}
.ws14e{word-spacing:-2.880000pt;}
.wsed{word-spacing:-2.832000pt;}
.ws11e{word-spacing:-2.816000pt;}
.ws10c{word-spacing:-2.736000pt;}
.ws183{word-spacing:-2.640000pt;}
.ws34{word-spacing:-2.496000pt;}
.ws33{word-spacing:-2.448000pt;}
.ws9c{word-spacing:-2.400000pt;}
.ws121{word-spacing:-2.352000pt;}
.wsa8{word-spacing:-2.304000pt;}
.ws3f{word-spacing:-2.256000pt;}
.ws2c{word-spacing:-2.208000pt;}
.ws2b{word-spacing:-2.160000pt;}
.wsc6{word-spacing:-2.112000pt;}
.ws7e{word-spacing:-2.016000pt;}
.ws10f{word-spacing:-2.005333pt;}
.ws15b{word-spacing:-1.968000pt;}
.ws70{word-spacing:-1.920000pt;}
.wsf0{word-spacing:-1.872000pt;}
.wsf5{word-spacing:-1.824000pt;}
.ws1d{word-spacing:-1.776000pt;}
.ws78{word-spacing:-1.728000pt;}
.ws43{word-spacing:-1.680000pt;}
.ws60{word-spacing:-1.632000pt;}
.ws42{word-spacing:-1.584000pt;}
.wsb4{word-spacing:-1.536000pt;}
.ws12e{word-spacing:-1.488000pt;}
.ws32{word-spacing:-1.440000pt;}
.ws31{word-spacing:-1.392000pt;}
.ws6d{word-spacing:-1.344000pt;}
.wsa7{word-spacing:-1.296000pt;}
.wsa6{word-spacing:-1.248000pt;}
.ws92{word-spacing:-1.200000pt;}
.ws91{word-spacing:-1.152000pt;}
.ws8d{word-spacing:-1.104000pt;}
.ws35{word-spacing:-1.056000pt;}
.ws8{word-spacing:-1.008000pt;}
.ws41{word-spacing:-0.912000pt;}
.ws20{word-spacing:-0.864000pt;}
.ws111{word-spacing:-0.768000pt;}
.wsb2{word-spacing:-0.720000pt;}
.wsef{word-spacing:-0.672000pt;}
.ws158{word-spacing:-0.586667pt;}
.ws6f{word-spacing:-0.528000pt;}
.ws54{word-spacing:-0.480000pt;}
.wsee{word-spacing:-0.432000pt;}
.ws123{word-spacing:-0.384000pt;}
.ws102{word-spacing:-0.336000pt;}
.ws69{word-spacing:-0.293333pt;}
.wse2{word-spacing:-0.288000pt;}
.wse6{word-spacing:-0.240000pt;}
.wse0{word-spacing:-0.213333pt;}
.ws94{word-spacing:-0.192000pt;}
.ws22{word-spacing:-0.144000pt;}
.ws149{word-spacing:-0.096000pt;}
.ws103{word-spacing:-0.085333pt;}
.wsb5{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.048000pt;}
.ws64{word-spacing:0.096000pt;}
.ws10b{word-spacing:0.144000pt;}
.wse4{word-spacing:0.192000pt;}
.ws1e{word-spacing:0.240000pt;}
.ws13b{word-spacing:0.288000pt;}
.ws13a{word-spacing:0.336000pt;}
.ws5d{word-spacing:0.384000pt;}
.ws185{word-spacing:0.426667pt;}
.wscc{word-spacing:0.432000pt;}
.ws2e{word-spacing:0.480000pt;}
.ws9e{word-spacing:0.528000pt;}
.wsbf{word-spacing:0.576000pt;}
.ws55{word-spacing:0.624000pt;}
.wsae{word-spacing:0.672000pt;}
.ws5e{word-spacing:0.720000pt;}
.ws52{word-spacing:0.768000pt;}
.ws40{word-spacing:0.816000pt;}
.wsca{word-spacing:0.864000pt;}
.wsb1{word-spacing:0.912000pt;}
.wse{word-spacing:0.960000pt;}
.wsdf{word-spacing:1.008000pt;}
.ws3e{word-spacing:1.056000pt;}
.wsfc{word-spacing:1.104000pt;}
.wsf4{word-spacing:1.152000pt;}
.ws2d{word-spacing:1.200000pt;}
.ws68{word-spacing:1.248000pt;}
.ws14a{word-spacing:1.296000pt;}
.ws176{word-spacing:1.344000pt;}
.wsf1{word-spacing:1.392000pt;}
.ws56{word-spacing:1.440000pt;}
.ws57{word-spacing:1.488000pt;}
.ws61{word-spacing:1.536000pt;}
.wsf8{word-spacing:1.584000pt;}
.wsb6{word-spacing:1.680000pt;}
.ws2f{word-spacing:1.728000pt;}
.ws2a{word-spacing:1.776000pt;}
.wsd0{word-spacing:1.824000pt;}
.ws107{word-spacing:1.872000pt;}
.ws1a{word-spacing:1.920000pt;}
.ws38{word-spacing:1.968000pt;}
.wse3{word-spacing:2.016000pt;}
.ws112{word-spacing:2.064000pt;}
.wscb{word-spacing:2.112000pt;}
.ws12{word-spacing:2.160000pt;}
.wseb{word-spacing:2.208000pt;}
.wsb7{word-spacing:2.256000pt;}
.ws13d{word-spacing:2.304000pt;}
.ws6e{word-spacing:2.352000pt;}
.ws37{word-spacing:2.400000pt;}
.wsf{word-spacing:2.432000pt;}
.ws7f{word-spacing:2.448000pt;}
.wsd{word-spacing:2.464000pt;}
.ws7d{word-spacing:2.544000pt;}
.wsa4{word-spacing:2.592000pt;}
.ws11{word-spacing:2.640000pt;}
.ws66{word-spacing:2.688000pt;}
.ws98{word-spacing:2.736000pt;}
.ws6b{word-spacing:2.784000pt;}
.ws82{word-spacing:2.832000pt;}
.ws65{word-spacing:2.880000pt;}
.wsc9{word-spacing:2.928000pt;}
.ws44{word-spacing:2.976000pt;}
.ws8e{word-spacing:3.072000pt;}
.ws4e{word-spacing:3.120000pt;}
.ws39{word-spacing:3.168000pt;}
.wsb3{word-spacing:3.216000pt;}
.ws122{word-spacing:3.264000pt;}
.ws5f{word-spacing:3.312000pt;}
.ws30{word-spacing:3.360000pt;}
.ws80{word-spacing:3.408000pt;}
.ws21{word-spacing:3.456000pt;}
.ws45{word-spacing:3.504000pt;}
.ws46{word-spacing:3.552000pt;}
.wsbd{word-spacing:3.600000pt;}
.ws72{word-spacing:3.648000pt;}
.ws73{word-spacing:3.696000pt;}
.ws50{word-spacing:3.744000pt;}
.ws49{word-spacing:3.792000pt;}
.ws97{word-spacing:3.840000pt;}
.ws119{word-spacing:3.888000pt;}
.wsbe{word-spacing:3.936000pt;}
.ws1f{word-spacing:3.984000pt;}
.ws177{word-spacing:4.032000pt;}
.ws93{word-spacing:4.080000pt;}
.wsd9{word-spacing:4.128000pt;}
.ws4d{word-spacing:4.224000pt;}
.wsa2{word-spacing:4.272000pt;}
.ws99{word-spacing:4.320000pt;}
.ws96{word-spacing:4.368000pt;}
.ws48{word-spacing:4.416000pt;}
.ws47{word-spacing:4.464000pt;}
.wsec{word-spacing:4.512000pt;}
.ws53{word-spacing:4.560000pt;}
.ws147{word-spacing:4.608000pt;}
.ws89{word-spacing:4.656000pt;}
.ws4c{word-spacing:4.704000pt;}
.ws146{word-spacing:4.752000pt;}
.wsff{word-spacing:4.800000pt;}
.ws7b{word-spacing:4.848000pt;}
.wsdd{word-spacing:4.896000pt;}
.ws137{word-spacing:4.944000pt;}
.ws17{word-spacing:4.992000pt;}
.ws186{word-spacing:5.040000pt;}
.ws13e{word-spacing:5.088000pt;}
.wsde{word-spacing:5.136000pt;}
.ws159{word-spacing:5.184000pt;}
.ws118{word-spacing:5.232000pt;}
.ws5c{word-spacing:5.280000pt;}
.ws106{word-spacing:5.328000pt;}
.wsb{word-spacing:5.376000pt;}
.ws5b{word-spacing:5.424000pt;}
.ws7c{word-spacing:5.472000pt;}
.ws76{word-spacing:5.520000pt;}
.wsa{word-spacing:5.536000pt;}
.wsc3{word-spacing:5.568000pt;}
.ws75{word-spacing:5.616000pt;}
.wsa9{word-spacing:5.664000pt;}
.ws9a{word-spacing:5.712000pt;}
.ws15e{word-spacing:5.760000pt;}
.ws10e{word-spacing:5.808000pt;}
.wsb9{word-spacing:5.856000pt;}
.wsc{word-spacing:5.888000pt;}
.wsfe{word-spacing:5.904000pt;}
.ws51{word-spacing:5.952000pt;}
.ws84{word-spacing:6.000000pt;}
.ws120{word-spacing:6.048000pt;}
.ws15f{word-spacing:6.096000pt;}
.ws15{word-spacing:6.144000pt;}
.ws130{word-spacing:6.192000pt;}
.ws58{word-spacing:6.240000pt;}
.ws79{word-spacing:6.288000pt;}
.ws3c{word-spacing:6.336000pt;}
.wsdb{word-spacing:6.384000pt;}
.wsd4{word-spacing:6.432000pt;}
.ws83{word-spacing:6.480000pt;}
.ws36{word-spacing:6.576000pt;}
.ws85{word-spacing:6.624000pt;}
.wsda{word-spacing:6.672000pt;}
.ws3a{word-spacing:6.720000pt;}
.ws9d{word-spacing:6.768000pt;}
.wsa5{word-spacing:6.816000pt;}
.wscd{word-spacing:6.864000pt;}
.ws10{word-spacing:6.912000pt;}
.wsa3{word-spacing:6.960000pt;}
.ws9f{word-spacing:7.008000pt;}
.ws108{word-spacing:7.056000pt;}
.ws9b{word-spacing:7.104000pt;}
.ws11a{word-spacing:7.152000pt;}
.ws88{word-spacing:7.200000pt;}
.ws3d{word-spacing:7.248000pt;}
.ws12b{word-spacing:7.296000pt;}
.ws166{word-spacing:7.344000pt;}
.ws67{word-spacing:7.392000pt;}
.wsa0{word-spacing:7.488000pt;}
.ws133{word-spacing:7.536000pt;}
.ws126{word-spacing:7.584000pt;}
.ws15a{word-spacing:7.632000pt;}
.wsea{word-spacing:7.680000pt;}
.wsa1{word-spacing:7.728000pt;}
.ws15c{word-spacing:7.776000pt;}
.wsaf{word-spacing:7.824000pt;}
.wse7{word-spacing:7.872000pt;}
.ws148{word-spacing:7.920000pt;}
.ws8c{word-spacing:7.968000pt;}
.ws4f{word-spacing:8.016000pt;}
.ws127{word-spacing:8.064000pt;}
.ws16{word-spacing:8.160000pt;}
.ws4a{word-spacing:8.208000pt;}
.ws135{word-spacing:8.304000pt;}
.ws13{word-spacing:8.352000pt;}
.ws10d{word-spacing:8.400000pt;}
.ws115{word-spacing:8.448000pt;}
.wsbc{word-spacing:8.496000pt;}
.ws62{word-spacing:8.544000pt;}
.wsb8{word-spacing:8.688000pt;}
.wsba{word-spacing:8.736000pt;}
.ws7a{word-spacing:8.784000pt;}
.wsbb{word-spacing:8.832000pt;}
.ws6a{word-spacing:8.880000pt;}
.wsc8{word-spacing:8.928000pt;}
.wsad{word-spacing:8.976000pt;}
.wsd6{word-spacing:9.024000pt;}
.ws19{word-spacing:9.072000pt;}
.wsab{word-spacing:9.120000pt;}
.ws180{word-spacing:9.168000pt;}
.wsd1{word-spacing:9.216000pt;}
.ws194{word-spacing:9.264000pt;}
.ws24{word-spacing:9.312000pt;}
.ws191{word-spacing:9.360000pt;}
.wsc5{word-spacing:9.408000pt;}
.ws87{word-spacing:9.456000pt;}
.ws193{word-spacing:9.504000pt;}
.ws5a{word-spacing:9.552000pt;}
.ws3b{word-spacing:9.648000pt;}
.wsd3{word-spacing:9.696000pt;}
.ws190{word-spacing:9.744000pt;}
.wsd5{word-spacing:9.792000pt;}
.ws14c{word-spacing:9.840000pt;}
.ws11b{word-spacing:9.888000pt;}
.wsd2{word-spacing:9.936000pt;}
.wsfd{word-spacing:9.984000pt;}
.ws14b{word-spacing:10.032000pt;}
.ws8a{word-spacing:10.224000pt;}
.ws145{word-spacing:10.272000pt;}
.ws81{word-spacing:10.320000pt;}
.ws109{word-spacing:10.416000pt;}
.ws117{word-spacing:10.560000pt;}
.ws113{word-spacing:10.608000pt;}
.ws132{word-spacing:10.752000pt;}
.ws136{word-spacing:11.040000pt;}
.ws14d{word-spacing:11.232000pt;}
.wsf7{word-spacing:11.328000pt;}
.wsf6{word-spacing:11.472000pt;}
.ws59{word-spacing:11.760000pt;}
.wscf{word-spacing:11.808000pt;}
.wsc7{word-spacing:11.856000pt;}
.wsc1{word-spacing:11.952000pt;}
.ws8b{word-spacing:12.048000pt;}
.ws172{word-spacing:12.144000pt;}
.wsc4{word-spacing:12.192000pt;}
.wse5{word-spacing:12.240000pt;}
.ws77{word-spacing:12.288000pt;}
.ws144{word-spacing:12.384000pt;}
.ws139{word-spacing:12.432000pt;}
.ws131{word-spacing:12.768000pt;}
.ws15d{word-spacing:12.912000pt;}
.wsce{word-spacing:13.104000pt;}
.ws142{word-spacing:13.152000pt;}
.ws63{word-spacing:13.248000pt;}
.ws179{word-spacing:13.344000pt;}
.ws167{word-spacing:13.488000pt;}
.wsf3{word-spacing:13.584000pt;}
.ws134{word-spacing:13.920000pt;}
.ws178{word-spacing:13.968000pt;}
.ws104{word-spacing:14.112000pt;}
.ws138{word-spacing:14.352000pt;}
.ws86{word-spacing:14.592000pt;}
.ws13c{word-spacing:15.360000pt;}
.ws116{word-spacing:15.600000pt;}
.ws181{word-spacing:15.744000pt;}
.ws174{word-spacing:16.128000pt;}
.ws171{word-spacing:16.176000pt;}
.wsf2{word-spacing:16.272000pt;}
.ws182{word-spacing:16.416000pt;}
.ws173{word-spacing:16.464000pt;}
.ws170{word-spacing:16.560000pt;}
.ws90{word-spacing:16.752000pt;}
.ws175{word-spacing:16.800000pt;}
.ws124{word-spacing:17.280000pt;}
.ws13f{word-spacing:18.384000pt;}
.ws125{word-spacing:18.432000pt;}
.ws140{word-spacing:18.816000pt;}
.ws17f{word-spacing:18.912000pt;}
.ws95{word-spacing:19.824000pt;}
.ws141{word-spacing:21.552000pt;}
.ws17c{word-spacing:22.224000pt;}
.ws196{word-spacing:22.848000pt;}
.ws101{word-spacing:23.616000pt;}
.ws195{word-spacing:23.664000pt;}
.ws100{word-spacing:24.144000pt;}
.ws1b{word-spacing:24.672000pt;}
.ws1c{word-spacing:28.272000pt;}
.ws184{word-spacing:38.592000pt;}
.ws192{word-spacing:44.160000pt;}
.ws12c{word-spacing:50.858667pt;}
.wsf9{word-spacing:618.573333pt;}
.wse1{word-spacing:618.573867pt;}
._c{margin-left:-22.320000pt;}
._e{margin-left:-6.774400pt;}
._7{margin-left:-5.760000pt;}
._8{margin-left:-4.852800pt;}
._4{margin-left:-3.520000pt;}
._1{margin-left:-2.592000pt;}
._0{margin-left:-0.960000pt;}
._2{width:0.960000pt;}
._3{width:2.518400pt;}
._5{width:3.494400pt;}
._6{width:5.091200pt;}
._9{width:6.048000pt;}
._f{width:7.166400pt;}
._a{width:8.368000pt;}
._10{width:9.817600pt;}
._12{width:16.512000pt;}
._d{width:18.336000pt;}
._11{width:21.840000pt;}
._20{width:35.126400pt;}
._13{width:39.744000pt;}
._1c{width:53.590400pt;}
._1d{width:73.510400pt;}
._1a{width:101.590400pt;}
._14{width:174.889600pt;}
._15{width:186.025600pt;}
._16{width:194.425600pt;}
._18{width:251.593600pt;}
._1e{width:411.830400pt;}
._17{width:591.865600pt;}
._b{width:610.464533pt;}
._21{width:712.102400pt;}
._19{width:748.227200pt;}
._1b{width:1021.718400pt;}
._1f{width:1036.310400pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:35.202533pt;}
.y3{bottom:44.687067pt;}
.y57{bottom:75.606667pt;}
.y266{bottom:76.942000pt;}
.y282{bottom:77.066800pt;}
.y8a{bottom:77.320933pt;}
.y1bd{bottom:77.750400pt;}
.y121{bottom:78.039867pt;}
.ye4{bottom:78.524133pt;}
.y11{bottom:79.335733pt;}
.y170{bottom:79.343867pt;}
.y1cb{bottom:79.803733pt;}
.y151{bottom:81.292667pt;}
.yb4{bottom:84.436133pt;}
.ycb{bottom:84.878933pt;}
.y169{bottom:85.906533pt;}
.y10{bottom:88.935733pt;}
.y1fc{bottom:89.502800pt;}
.y56{bottom:90.006667pt;}
.y265{bottom:91.606000pt;}
.y89{bottom:91.720933pt;}
.y1bc{bottom:92.150400pt;}
.y120{bottom:92.439867pt;}
.ye3{bottom:92.924133pt;}
.y16f{bottom:93.743867pt;}
.y234{bottom:96.724133pt;}
.yf{bottom:98.535733pt;}
.yb3{bottom:98.836133pt;}
.yca{bottom:99.278933pt;}
.y281{bottom:99.290800pt;}
.y112{bottom:99.998000pt;}
.y168{bottom:100.306533pt;}
.y150{bottom:103.252667pt;}
.y1fb{bottom:103.902800pt;}
.y55{bottom:104.406667pt;}
.y219{bottom:106.412133pt;}
.y1bb{bottom:106.550400pt;}
.y11f{bottom:106.839867pt;}
.ye2{bottom:107.324133pt;}
.y16e{bottom:108.143867pt;}
.y233{bottom:111.388133pt;}
.y243{bottom:111.844133pt;}
.yb2{bottom:113.236133pt;}
.yc9{bottom:113.678933pt;}
.y88{bottom:113.680933pt;}
.y280{bottom:113.954800pt;}
.y111{bottom:114.398000pt;}
.y14f{bottom:117.652667pt;}
.y1fa{bottom:118.302800pt;}
.y54{bottom:118.806667pt;}
.y1ba{bottom:120.950400pt;}
.y218{bottom:121.076133pt;}
.y11e{bottom:121.239867pt;}
.ye1{bottom:121.724133pt;}
.y16d{bottom:122.543867pt;}
.y12c{bottom:125.072000pt;}
.y24c{bottom:126.052133pt;}
.y242{bottom:126.508133pt;}
.y1ca{bottom:126.916133pt;}
.yb1{bottom:127.636133pt;}
.yc8{bottom:128.078933pt;}
.y87{bottom:128.080933pt;}
.y27f{bottom:128.618800pt;}
.y110{bottom:128.798000pt;}
.y14e{bottom:132.052667pt;}
.y167{bottom:132.306533pt;}
.y1f9{bottom:132.702800pt;}
.y53{bottom:133.206667pt;}
.y12{bottom:133.319733pt;}
.y1b9{bottom:135.350400pt;}
.y11d{bottom:135.639867pt;}
.y264{bottom:136.054000pt;}
.ye0{bottom:136.124133pt;}
.y241{bottom:141.172133pt;}
.y1c9{bottom:141.316133pt;}
.y18e{bottom:142.398000pt;}
.yc7{bottom:142.478933pt;}
.y86{bottom:142.480933pt;}
.y10f{bottom:143.198000pt;}
.y27e{bottom:143.282800pt;}
.y14d{bottom:146.452667pt;}
.y1f8{bottom:147.102800pt;}
.y52{bottom:147.606667pt;}
.yb0{bottom:149.596133pt;}
.y1b8{bottom:149.750400pt;}
.ydf{bottom:150.524133pt;}
.y263{bottom:150.718000pt;}
.y164{bottom:155.677733pt;}
.y1c8{bottom:155.716133pt;}
.y232{bottom:155.836133pt;}
.y18d{bottom:156.798000pt;}
.yc6{bottom:156.878933pt;}
.y85{bottom:156.880933pt;}
.y10e{bottom:157.598000pt;}
.y14c{bottom:160.852667pt;}
.y1f7{bottom:161.502800pt;}
.y51{bottom:162.006667pt;}
.yaf{bottom:163.996133pt;}
.y1b7{bottom:164.150400pt;}
.yde{bottom:164.924133pt;}
.y27d{bottom:165.506800pt;}
.y217{bottom:165.524133pt;}
.y11c{bottom:167.639867pt;}
.y2b{bottom:169.082933pt;}
.y1c7{bottom:170.116133pt;}
.y231{bottom:170.500133pt;}
.y18c{bottom:171.198000pt;}
.yc5{bottom:171.278933pt;}
.y84{bottom:171.280933pt;}
.y10d{bottom:171.998000pt;}
.y14b{bottom:175.252667pt;}
.y1f6{bottom:175.902800pt;}
.y50{bottom:176.406667pt;}
.yae{bottom:178.396133pt;}
.y1b6{bottom:178.550400pt;}
.ydd{bottom:179.324133pt;}
.y27c{bottom:180.170800pt;}
.y216{bottom:180.188133pt;}
.y2a{bottom:182.414933pt;}
.y1c6{bottom:184.516133pt;}
.y24b{bottom:185.164133pt;}
.y18b{bottom:185.598000pt;}
.y240{bottom:185.620133pt;}
.yc4{bottom:185.678933pt;}
.y83{bottom:185.680933pt;}
.y10c{bottom:186.398000pt;}
.y14a{bottom:189.652667pt;}
.y1f5{bottom:190.302800pt;}
.y4f{bottom:190.806667pt;}
.yad{bottom:192.796133pt;}
.ydc{bottom:193.724133pt;}
.y262{bottom:195.166000pt;}
.y29{bottom:195.746933pt;}
.y1c5{bottom:198.916133pt;}
.y24a{bottom:199.828133pt;}
.y18a{bottom:199.998000pt;}
.yc3{bottom:200.078933pt;}
.y82{bottom:200.080933pt;}
.y23f{bottom:200.284133pt;}
.y1b5{bottom:200.510400pt;}
.y10b{bottom:200.798000pt;}
.y27b{bottom:202.394800pt;}
.y149{bottom:204.052667pt;}
.y1f4{bottom:204.702800pt;}
.yac{bottom:207.196133pt;}
.ydb{bottom:208.124133pt;}
.y28{bottom:209.078933pt;}
.y4e{bottom:212.766667pt;}
.y189{bottom:214.398000pt;}
.y81{bottom:214.480933pt;}
.y11b{bottom:214.756133pt;}
.y1b4{bottom:214.910400pt;}
.y230{bottom:214.948133pt;}
.y10a{bottom:215.198000pt;}
.y27a{bottom:217.058800pt;}
.y17a{bottom:217.680933pt;}
.y148{bottom:218.452667pt;}
.y1f3{bottom:219.102800pt;}
.yab{bottom:221.596133pt;}
.yc2{bottom:222.038933pt;}
.y27{bottom:222.410933pt;}
.y173{bottom:224.353467pt;}
.y215{bottom:224.636133pt;}
.y4d{bottom:227.166667pt;}
.y188{bottom:228.798000pt;}
.y80{bottom:228.880933pt;}
.y11a{bottom:229.156133pt;}
.y1b3{bottom:229.310400pt;}
.y109{bottom:229.598000pt;}
.yda{bottom:230.084133pt;}
.y279{bottom:231.722800pt;}
.y147{bottom:232.852667pt;}
.y1f2{bottom:233.502800pt;}
.y26{bottom:235.742933pt;}
.yaa{bottom:235.996133pt;}
.yc1{bottom:236.438933pt;}
.y214{bottom:239.300133pt;}
.y261{bottom:239.614000pt;}
.y4c{bottom:241.566667pt;}
.y1c4{bottom:242.836133pt;}
.y187{bottom:243.198000pt;}
.y7f{bottom:243.280933pt;}
.y119{bottom:243.556133pt;}
.y1b2{bottom:243.710400pt;}
.y108{bottom:243.998000pt;}
.y249{bottom:244.276133pt;}
.yd9{bottom:244.484133pt;}
.y23e{bottom:244.732133pt;}
.y278{bottom:246.386800pt;}
.y146{bottom:247.252667pt;}
.y1f1{bottom:247.902800pt;}
.y25{bottom:249.074933pt;}
.ya9{bottom:250.396133pt;}
.yc0{bottom:250.838933pt;}
.y213{bottom:253.964133pt;}
.y260{bottom:254.278000pt;}
.y4b{bottom:255.966667pt;}
.y1c3{bottom:257.236133pt;}
.y186{bottom:257.598000pt;}
.y7e{bottom:257.680933pt;}
.y118{bottom:257.956133pt;}
.y1b1{bottom:258.110400pt;}
.yd8{bottom:258.884133pt;}
.y248{bottom:258.940133pt;}
.y22f{bottom:259.396133pt;}
.y12b{bottom:262.085333pt;}
.y1f0{bottom:262.302800pt;}
.y24{bottom:262.406933pt;}
.ya8{bottom:264.796133pt;}
.ybf{bottom:265.238933pt;}
.y107{bottom:265.958000pt;}
.y277{bottom:268.610800pt;}
.y145{bottom:269.212667pt;}
.y4a{bottom:270.366667pt;}
.y1c2{bottom:271.636133pt;}
.y185{bottom:271.998000pt;}
.y117{bottom:272.356133pt;}
.y13c{bottom:272.798000pt;}
.yd7{bottom:273.284133pt;}
.y22e{bottom:274.060133pt;}
.y23{bottom:275.738933pt;}
.ya7{bottom:279.196133pt;}
.ybe{bottom:279.638933pt;}
.y106{bottom:280.358000pt;}
.y276{bottom:283.274800pt;}
.y144{bottom:283.612667pt;}
.y1ef{bottom:284.262800pt;}
.y49{bottom:284.766667pt;}
.y1c1{bottom:286.036133pt;}
.y116{bottom:286.756133pt;}
.y13b{bottom:287.198000pt;}
.yd6{bottom:287.684133pt;}
.y22d{bottom:288.724133pt;}
.y7d{bottom:289.680933pt;}
.y1b0{bottom:290.110400pt;}
.ya6{bottom:293.596133pt;}
.y184{bottom:293.958000pt;}
.ybd{bottom:294.038933pt;}
.y105{bottom:294.758000pt;}
.y275{bottom:297.938800pt;}
.y143{bottom:298.012667pt;}
.y212{bottom:298.412133pt;}
.y1ee{bottom:298.662800pt;}
.y25f{bottom:298.726000pt;}
.y48{bottom:299.166667pt;}
.y1c0{bottom:300.436133pt;}
.y115{bottom:301.156133pt;}
.y13a{bottom:301.598000pt;}
.yd5{bottom:302.084133pt;}
.y22{bottom:302.402933pt;}
.y23d{bottom:303.388133pt;}
.ya5{bottom:307.996133pt;}
.y183{bottom:308.358000pt;}
.ybc{bottom:308.438933pt;}
.y104{bottom:309.158000pt;}
.y165{bottom:310.451067pt;}
.y142{bottom:312.412667pt;}
.y1ed{bottom:313.062800pt;}
.y211{bottom:313.076133pt;}
.y25e{bottom:313.390000pt;}
.y47{bottom:313.566667pt;}
.y12a{bottom:313.626667pt;}
.y1bf{bottom:314.836133pt;}
.y114{bottom:315.556133pt;}
.y139{bottom:315.998000pt;}
.y15d{bottom:315.998933pt;}
.yd4{bottom:316.484133pt;}
.y247{bottom:318.052133pt;}
.y274{bottom:320.162800pt;}
.ya4{bottom:322.396133pt;}
.y182{bottom:322.758000pt;}
.ybb{bottom:322.838933pt;}
.y103{bottom:323.558000pt;}
.y141{bottom:326.812667pt;}
.y1ec{bottom:327.462800pt;}
.y210{bottom:327.740133pt;}
.y46{bottom:327.966667pt;}
.y21{bottom:329.066933pt;}
.y1be{bottom:329.236133pt;}
.y113{bottom:329.956133pt;}
.y138{bottom:330.398000pt;}
.y15c{bottom:330.398933pt;}
.yd3{bottom:330.884133pt;}
.y22c{bottom:333.172133pt;}
.y7c{bottom:336.796133pt;}
.y181{bottom:337.158000pt;}
.y1af{bottom:337.222667pt;}
.yba{bottom:337.238933pt;}
.y102{bottom:337.958000pt;}
.y140{bottom:341.212667pt;}
.y1eb{bottom:341.862800pt;}
.y45{bottom:342.366667pt;}
.y273{bottom:342.386800pt;}
.y20{bottom:342.398933pt;}
.y127{bottom:343.562800pt;}
.ya3{bottom:344.356133pt;}
.y137{bottom:344.798000pt;}
.y15b{bottom:344.798933pt;}
.yd2{bottom:345.284133pt;}
.y23c{bottom:347.836133pt;}
.y7b{bottom:351.196133pt;}
.y180{bottom:351.558000pt;}
.y1ae{bottom:351.622667pt;}
.y101{bottom:352.358000pt;}
.y16c{bottom:354.142400pt;}
.y13f{bottom:355.612667pt;}
.y1ea{bottom:356.262800pt;}
.y44{bottom:356.766667pt;}
.y272{bottom:357.050800pt;}
.y25d{bottom:357.838000pt;}
.ya2{bottom:358.756133pt;}
.y136{bottom:359.198000pt;}
.yb9{bottom:359.198933pt;}
.yd1{bottom:359.684133pt;}
.y23b{bottom:362.500133pt;}
.y172{bottom:362.689467pt;}
.y7a{bottom:365.596133pt;}
.y17f{bottom:365.958000pt;}
.y1ad{bottom:366.022667pt;}
.y100{bottom:366.758000pt;}
.y1f{bottom:369.062933pt;}
.y13e{bottom:370.012667pt;}
.y1e9{bottom:370.662800pt;}
.y43{bottom:371.166667pt;}
.y20f{bottom:372.188133pt;}
.y25c{bottom:372.502000pt;}
.ya1{bottom:373.156133pt;}
.y135{bottom:373.598000pt;}
.yb8{bottom:373.598933pt;}
.yd0{bottom:374.084133pt;}
.y23a{bottom:377.164133pt;}
.y22b{bottom:377.620133pt;}
.y271{bottom:379.274800pt;}
.y79{bottom:379.996133pt;}
.y17e{bottom:380.358000pt;}
.y1ac{bottom:380.422667pt;}
.yff{bottom:381.158000pt;}
.y1e{bottom:382.394933pt;}
.y1e8{bottom:385.062800pt;}
.y42{bottom:385.566667pt;}
.y20e{bottom:386.852133pt;}
.y25b{bottom:387.166000pt;}
.ya0{bottom:387.556133pt;}
.y134{bottom:387.998000pt;}
.yb7{bottom:387.998933pt;}
.ycf{bottom:388.484133pt;}
.y246{bottom:391.828133pt;}
.y22a{bottom:392.284133pt;}
.y270{bottom:393.938800pt;}
.y78{bottom:394.396133pt;}
.y17d{bottom:394.758000pt;}
.y1ab{bottom:394.822667pt;}
.yfe{bottom:395.558000pt;}
.y1d{bottom:395.726933pt;}
.y1e7{bottom:399.462800pt;}
.y41{bottom:399.966667pt;}
.y9f{bottom:401.956133pt;}
.y133{bottom:402.398000pt;}
.y15a{bottom:402.398933pt;}
.yce{bottom:402.884133pt;}
.y229{bottom:406.948133pt;}
.y77{bottom:408.796133pt;}
.y1c{bottom:409.058933pt;}
.y17c{bottom:409.158000pt;}
.y1aa{bottom:409.222667pt;}
.yfd{bottom:409.958000pt;}
.y155{bottom:410.195733pt;}
.y1e6{bottom:413.862800pt;}
.y40{bottom:414.366667pt;}
.y26f{bottom:416.162800pt;}
.y9e{bottom:416.356133pt;}
.y160{bottom:416.580667pt;}
.y132{bottom:416.798000pt;}
.y159{bottom:416.798933pt;}
.yb6{bottom:419.998933pt;}
.y228{bottom:421.612133pt;}
.y1b{bottom:422.390933pt;}
.y76{bottom:423.196133pt;}
.y126{bottom:423.496133pt;}
.y1a9{bottom:423.622667pt;}
.yfc{bottom:424.358000pt;}
.y1e5{bottom:428.262800pt;}
.y3f{bottom:428.766667pt;}
.y9d{bottom:430.756133pt;}
.y26e{bottom:430.826800pt;}
.y131{bottom:431.198000pt;}
.y20d{bottom:431.300133pt;}
.y25a{bottom:431.614000pt;}
.y15f{bottom:433.447333pt;}
.y1a{bottom:435.722933pt;}
.y239{bottom:436.276133pt;}
.y75{bottom:437.596133pt;}
.y12e{bottom:438.316133pt;}
.yfb{bottom:438.758000pt;}
.y1e4{bottom:442.662800pt;}
.y3e{bottom:443.166667pt;}
.y129{bottom:443.866533pt;}
.y9c{bottom:445.156133pt;}
.y1a8{bottom:445.582667pt;}
.y130{bottom:445.598000pt;}
.y20c{bottom:445.964133pt;}
.y259{bottom:446.278000pt;}
.ycd{bottom:446.804133pt;}
.y158{bottom:448.798933pt;}
.y19{bottom:449.054933pt;}
.y74{bottom:451.996133pt;}
.y12d{bottom:452.716133pt;}
.y26d{bottom:453.050800pt;}
.yfa{bottom:453.158000pt;}
.y1e3{bottom:457.062800pt;}
.y9b{bottom:459.556133pt;}
.y1a7{bottom:459.982667pt;}
.y18{bottom:462.386933pt;}
.y3d{bottom:465.126667pt;}
.y227{bottom:466.060133pt;}
.yb5{bottom:467.116133pt;}
.y163{bottom:467.197733pt;}
.yf9{bottom:467.558000pt;}
.y1e2{bottom:471.462800pt;}
.y73{bottom:473.956133pt;}
.y1a6{bottom:474.382667pt;}
.y26c{bottom:475.274800pt;}
.y154{bottom:475.653067pt;}
.y17{bottom:475.718933pt;}
.y128{bottom:477.388800pt;}
.y3c{bottom:479.526667pt;}
.y226{bottom:480.724133pt;}
.y9a{bottom:481.516133pt;}
.yf8{bottom:481.958000pt;}
.y72{bottom:488.356133pt;}
.y153{bottom:488.453067pt;}
.y1a5{bottom:488.782667pt;}
.y16{bottom:489.050933pt;}
.y26b{bottom:489.938800pt;}
.y20b{bottom:490.412133pt;}
.y258{bottom:490.726000pt;}
.y1e1{bottom:493.422800pt;}
.y3b{bottom:493.926667pt;}
.y225{bottom:495.388133pt;}
.y99{bottom:495.916133pt;}
.yf7{bottom:496.358000pt;}
.y15{bottom:502.382933pt;}
.y71{bottom:502.756133pt;}
.y20a{bottom:505.076133pt;}
.y1e0{bottom:507.822800pt;}
.y3a{bottom:508.326667pt;}
.y238{bottom:510.052133pt;}
.y98{bottom:510.316133pt;}
.y1a4{bottom:510.742667pt;}
.yf6{bottom:510.758000pt;}
.y191{bottom:510.970133pt;}
.y17b{bottom:511.050400pt;}
.y26a{bottom:512.162800pt;}
.y14{bottom:515.714933pt;}
.y70{bottom:517.156133pt;}
.y209{bottom:519.740133pt;}
.y1df{bottom:522.222800pt;}
.y39{bottom:522.726667pt;}
.y97{bottom:524.716133pt;}
.y1a3{bottom:525.142667pt;}
.yf5{bottom:525.158000pt;}
.y16b{bottom:528.675733pt;}
.y156{bottom:530.921733pt;}
.y15e{bottom:530.980667pt;}
.y6f{bottom:531.556133pt;}
.y257{bottom:535.174000pt;}
.y1de{bottom:536.622800pt;}
.y38{bottom:537.126667pt;}
.y96{bottom:539.116133pt;}
.y1a2{bottom:539.542667pt;}
.yf4{bottom:539.558000pt;}
.y224{bottom:539.836133pt;}
.y13{bottom:542.378933pt;}
.y269{bottom:544.429467pt;}
.y6e{bottom:545.956133pt;}
.y256{bottom:549.838000pt;}
.y1dd{bottom:551.022800pt;}
.y37{bottom:551.526667pt;}
.y95{bottom:553.516133pt;}
.y171{bottom:553.932133pt;}
.y1a1{bottom:553.942667pt;}
.yf3{bottom:553.958000pt;}
.y223{bottom:554.500133pt;}
.y6d{bottom:560.356133pt;}
.y288{bottom:562.060133pt;}
.y208{bottom:564.188133pt;}
.y1dc{bottom:565.422800pt;}
.y94{bottom:567.916133pt;}
.yf2{bottom:568.358000pt;}
.y268{bottom:569.620133pt;}
.y36{bottom:573.486667pt;}
.y6c{bottom:574.756133pt;}
.y1a0{bottom:575.902667pt;}
.y207{bottom:578.852133pt;}
.y1db{bottom:579.822800pt;}
.y162{bottom:582.312400pt;}
.y93{bottom:582.316133pt;}
.yf1{bottom:582.758000pt;}
.ye{bottom:583.270933pt;}
.y245{bottom:584.284133pt;}
.y35{bottom:587.886667pt;}
.y6b{bottom:589.156133pt;}
.y19f{bottom:590.302667pt;}
.y1da{bottom:594.222800pt;}
.y255{bottom:594.286000pt;}
.yd{bottom:594.470933pt;}
.y1fd{bottom:595.996133pt;}
.y125{bottom:596.438000pt;}
.y92{bottom:596.716133pt;}
.yf0{bottom:597.158000pt;}
.y222{bottom:598.948133pt;}
.y34{bottom:602.286667pt;}
.y6a{bottom:603.556133pt;}
.y19e{bottom:604.702667pt;}
.y1d9{bottom:608.622800pt;}
.y254{bottom:608.950000pt;}
.y91{bottom:611.116133pt;}
.yef{bottom:611.558000pt;}
.y221{bottom:613.612133pt;}
.y33{bottom:616.686667pt;}
.y179{bottom:617.956133pt;}
.y19d{bottom:619.102667pt;}
.y287{bottom:621.172133pt;}
.y1d8{bottom:623.022800pt;}
.y206{bottom:623.300133pt;}
.y253{bottom:623.614000pt;}
.y69{bottom:625.516133pt;}
.yee{bottom:625.958000pt;}
.y237{bottom:628.276133pt;}
.yc{bottom:629.540400pt;}
.y16a{bottom:630.183733pt;}
.y32{bottom:631.086667pt;}
.y90{bottom:633.076133pt;}
.y19c{bottom:633.502667pt;}
.y286{bottom:635.836133pt;}
.y1d7{bottom:637.422800pt;}
.y205{bottom:637.964133pt;}
.yb{bottom:639.140400pt;}
.y68{bottom:639.916133pt;}
.y124{bottom:640.358000pt;}
.y267{bottom:643.396133pt;}
.y12f{bottom:643.558000pt;}
.y31{bottom:645.486667pt;}
.y8f{bottom:647.476133pt;}
.ya{bottom:648.740400pt;}
.y1d6{bottom:651.822800pt;}
.y204{bottom:652.628133pt;}
.y67{bottom:654.316133pt;}
.y123{bottom:654.758000pt;}
.y19b{bottom:655.462667pt;}
.yed{bottom:657.958000pt;}
.y220{bottom:658.060133pt;}
.y30{bottom:659.886667pt;}
.y8e{bottom:661.876133pt;}
.y152{bottom:662.261600pt;}
.y1d5{bottom:666.222800pt;}
.y252{bottom:668.062000pt;}
.y66{bottom:668.716133pt;}
.y19a{bottom:669.862667pt;}
.y21f{bottom:672.724133pt;}
.y2f{bottom:674.286667pt;}
.y8d{bottom:676.276133pt;}
.y1d4{bottom:680.622800pt;}
.y65{bottom:683.116133pt;}
.y199{bottom:684.262667pt;}
.y122{bottom:686.758000pt;}
.y21e{bottom:687.388133pt;}
.y8c{bottom:690.676133pt;}
.y9{bottom:693.810933pt;}
.y1d3{bottom:695.022800pt;}
.y203{bottom:697.076133pt;}
.y190{bottom:697.124800pt;}
.y64{bottom:697.516133pt;}
.y198{bottom:698.662667pt;}
.y236{bottom:702.052133pt;}
.yec{bottom:705.076000pt;}
.y8b{bottom:705.076133pt;}
.y2e{bottom:706.286667pt;}
.y285{bottom:709.612133pt;}
.y18f{bottom:709.924800pt;}
.y202{bottom:711.740133pt;}
.y157{bottom:711.916133pt;}
.y161{bottom:712.339067pt;}
.y251{bottom:712.510000pt;}
.y8{bottom:715.148267pt;}
.y1d2{bottom:716.982800pt;}
.y244{bottom:717.172133pt;}
.yeb{bottom:719.476000pt;}
.y63{bottom:719.476133pt;}
.y197{bottom:720.622667pt;}
.y166{bottom:726.316133pt;}
.y250{bottom:727.174000pt;}
.y1d1{bottom:731.382800pt;}
.y21d{bottom:731.836133pt;}
.yea{bottom:733.876000pt;}
.y62{bottom:733.876133pt;}
.y196{bottom:735.022667pt;}
.y7{bottom:736.481600pt;}
.y178{bottom:740.716133pt;}
.y24f{bottom:741.838000pt;}
.y1d0{bottom:745.782800pt;}
.y21c{bottom:746.500133pt;}
.ye9{bottom:748.276000pt;}
.y61{bottom:748.276133pt;}
.y195{bottom:749.422667pt;}
.y177{bottom:755.116133pt;}
.y6{bottom:755.148267pt;}
.y201{bottom:756.188133pt;}
.y1cf{bottom:760.182800pt;}
.y235{bottom:761.164133pt;}
.ye8{bottom:762.676000pt;}
.y60{bottom:762.676133pt;}
.y194{bottom:763.822667pt;}
.y176{bottom:769.516133pt;}
.y200{bottom:770.852133pt;}
.y5{bottom:773.814933pt;}
.y1ce{bottom:774.582800pt;}
.ycc{bottom:776.356133pt;}
.ye7{bottom:777.076000pt;}
.y5f{bottom:777.076133pt;}
.y5a{bottom:780.282667pt;}
.y284{bottom:783.388133pt;}
.y175{bottom:783.916133pt;}
.y1ff{bottom:785.516133pt;}
.y193{bottom:785.782667pt;}
.y24e{bottom:786.286000pt;}
.y1cd{bottom:788.982800pt;}
.y13d{bottom:790.418533pt;}
.y21b{bottom:790.948133pt;}
.ye6{bottom:791.476000pt;}
.y5e{bottom:791.476133pt;}
.y59{bottom:793.614667pt;}
.y283{bottom:798.052133pt;}
.y174{bottom:798.316133pt;}
.y24d{bottom:800.950000pt;}
.y1cc{bottom:803.382800pt;}
.y21a{bottom:805.612133pt;}
.ye5{bottom:805.876000pt;}
.y5d{bottom:805.876133pt;}
.y192{bottom:817.782667pt;}
.y1fe{bottom:817.782800pt;}
.y4{bottom:820.276000pt;}
.y5c{bottom:820.276133pt;}
.y58{bottom:820.278667pt;}
.y2d{bottom:856.859200pt;}
.y1{bottom:857.005733pt;}
.y2c{bottom:869.659200pt;}
.y5b{bottom:870.905867pt;}
.h7{height:33.600000pt;}
.ha{height:39.101562pt;}
.h6{height:39.200000pt;}
.h3{height:44.800000pt;}
.h2{height:50.400000pt;}
.h9{height:61.600000pt;}
.h5{height:72.800000pt;}
.h4{height:78.400000pt;}
.h8{height:82.738133pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:41.513333pt;}
.x5{left:46.804133pt;}
.x1{left:75.590533pt;}
.xa{left:80.923867pt;}
.x4{left:94.490533pt;}
.xc{left:99.554267pt;}
.x11{left:109.732267pt;}
.x15{left:130.623733pt;}
.x1e{left:183.218533pt;}
.x7{left:197.930533pt;}
.x3{left:209.701067pt;}
.x10{left:240.242267pt;}
.x16{left:243.044133pt;}
.x1a{left:249.488000pt;}
.x9{left:250.416133pt;}
.xb{left:261.221200pt;}
.x14{left:301.154933pt;}
.x17{left:302.640400pt;}
.xd{left:325.588533pt;}
.x19{left:362.834667pt;}
.x1c{left:365.350667pt;}
.x18{left:374.188533pt;}
.x1b{left:384.252000pt;}
.x13{left:406.596000pt;}
.x12{left:417.657333pt;}
.x6{left:499.142800pt;}
.x1d{left:603.009733pt;}
.xf{left:603.991067pt;}
.x8{left:607.628400pt;}
.x2{left:608.609600pt;}
}




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