
    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_4cd01223205397ab3a192ebc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.095703;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_f60fc0d3db86c4974ef5022b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_c9646cb7d5947fefc46c0d17.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_c302f5b7f2f3299fa7eba495.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6eddf28dbab4dd4bcee06550.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_41433248af3f6d3cc9e479b2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_956ac8a9375f48f28637f2f1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_9503a4405092e28b17478c9d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_b7eabd464a67e66235bedfad.woff')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_18249a384d01198c75cb796a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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);}
.v5{vertical-align:-23.976000px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.978000px;}
.v4{vertical-align:23.976000px;}
.v1{vertical-align:27.971400px;}
.ls43{letter-spacing:-6.204000px;}
.ls20{letter-spacing:-1.164834px;}
.ls23{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.660000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls48{letter-spacing:-0.594000px;}
.ls19{letter-spacing:-0.576000px;}
.ls47{letter-spacing:-0.528000px;}
.ls12{letter-spacing:-0.504000px;}
.ls35{letter-spacing:-0.462000px;}
.ls13{letter-spacing:-0.432000px;}
.ls2c{letter-spacing:-0.396000px;}
.ls18{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.330000px;}
.ls11{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.264000px;}
.ls14{letter-spacing:-0.216000px;}
.ls37{letter-spacing:-0.198000px;}
.lsb{letter-spacing:-0.153912px;}
.ls1a{letter-spacing:-0.144000px;}
.ls36{letter-spacing:-0.132000px;}
.ls16{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.066000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000600px;}
.ls44{letter-spacing:0.007200px;}
.ls2d{letter-spacing:0.009600px;}
.ls46{letter-spacing:0.010200px;}
.ls2f{letter-spacing:0.010800px;}
.ls38{letter-spacing:0.011400px;}
.ls3{letter-spacing:0.066000px;}
.ls21{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.144000px;}
.ls32{letter-spacing:0.198000px;}
.ls1b{letter-spacing:0.216000px;}
.ls45{letter-spacing:0.217200px;}
.ls31{letter-spacing:0.228600px;}
.ls9{letter-spacing:0.230868px;}
.ls0{letter-spacing:0.264000px;}
.ls24{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.330000px;}
.ls3a{letter-spacing:0.333000px;}
.ls39{letter-spacing:0.343800px;}
.ls1e{letter-spacing:0.360000px;}
.ls3f{letter-spacing:0.372600px;}
.ls3d{letter-spacing:0.376200px;}
.ls6{letter-spacing:0.396000px;}
.ls15{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.504000px;}
.ls2a{letter-spacing:0.539400px;}
.lse{letter-spacing:0.544320px;}
.lsc{letter-spacing:0.547800px;}
.lsd{letter-spacing:0.554400px;}
.ls10{letter-spacing:0.576000px;}
.ls41{letter-spacing:0.580800px;}
.ls40{letter-spacing:0.591600px;}
.ls42{letter-spacing:0.594000px;}
.ls1f{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.660000px;}
.ls3b{letter-spacing:0.858000px;}
.ls29{letter-spacing:0.864000px;}
.ls8{letter-spacing:0.924000px;}
.ls1c{letter-spacing:0.936000px;}
.ls27{letter-spacing:1.038600px;}
.ls3c{letter-spacing:1.056000px;}
.ls5{letter-spacing:1.320000px;}
.ls34{letter-spacing:1.584000px;}
.ls28{letter-spacing:1.682400px;}
.ls33{letter-spacing:2.977200px;}
.ls49{letter-spacing:3.908400px;}
.ls2e{letter-spacing:7.767600px;}
.ls26{letter-spacing:8.320200px;}
.ls25{letter-spacing:8.320800px;}
.ls3e{letter-spacing:9.440400px;}
.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;}
}
.ws102{word-spacing:-18.084000px;}
.ws1{word-spacing:-18.000000px;}
.ws112{word-spacing:-17.556000px;}
.ws17{word-spacing:-16.500000px;}
.ws114{word-spacing:-16.434000px;}
.wsfd{word-spacing:-16.236000px;}
.ws3{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws33{word-spacing:-13.154400px;}
.ws34{word-spacing:-13.144320px;}
.ws2{word-spacing:-12.600000px;}
.wsfc{word-spacing:-11.550000px;}
.ws35{word-spacing:-10.494000px;}
.ws113{word-spacing:-10.296000px;}
.ws15{word-spacing:-9.850368px;}
.ws14{word-spacing:-9.619500px;}
.ws16{word-spacing:-9.465588px;}
.ws68{word-spacing:-9.450000px;}
.ws4{word-spacing:-7.870500px;}
.ws88{word-spacing:-7.200000px;}
.wsa1{word-spacing:-6.705666px;}
.wse2{word-spacing:-6.264000px;}
.wsea{word-spacing:-4.896000px;}
.ws3b{word-spacing:-3.600000px;}
.ws53{word-spacing:-3.528000px;}
.ws5b{word-spacing:-3.456000px;}
.wscd{word-spacing:-3.384000px;}
.wsd8{word-spacing:-3.312000px;}
.wsb{word-spacing:-3.300000px;}
.ws7e{word-spacing:-3.240000px;}
.wsad{word-spacing:-3.168000px;}
.wsc{word-spacing:-3.102000px;}
.wsf9{word-spacing:-3.096000px;}
.ws24{word-spacing:-3.036000px;}
.ws97{word-spacing:-2.952000px;}
.ws40{word-spacing:-2.880000px;}
.ws51{word-spacing:-2.808000px;}
.ws121{word-spacing:-2.772000px;}
.ws58{word-spacing:-2.664000px;}
.ws104{word-spacing:-2.574000px;}
.ws11f{word-spacing:-2.508000px;}
.ws87{word-spacing:-2.448000px;}
.wsac{word-spacing:-2.376000px;}
.ws5f{word-spacing:-2.304000px;}
.ws107{word-spacing:-2.244000px;}
.ws106{word-spacing:-2.178000px;}
.wsce{word-spacing:-2.160000px;}
.ws10a{word-spacing:-2.112000px;}
.ws5d{word-spacing:-1.944000px;}
.ws81{word-spacing:-1.872000px;}
.ws90{word-spacing:-1.800000px;}
.ws31{word-spacing:-1.782000px;}
.wsdc{word-spacing:-1.728000px;}
.wsc9{word-spacing:-1.674000px;}
.wse5{word-spacing:-1.584000px;}
.ws9e{word-spacing:-1.566000px;}
.wsb9{word-spacing:-1.440000px;}
.ws52{word-spacing:-1.368000px;}
.ws1e{word-spacing:-1.320000px;}
.ws91{word-spacing:-1.296000px;}
.wsb0{word-spacing:-1.224000px;}
.wsa0{word-spacing:-1.188000px;}
.ws42{word-spacing:-1.152000px;}
.ws11d{word-spacing:-1.122000px;}
.wsf6{word-spacing:-1.080000px;}
.ws11a{word-spacing:-1.056000px;}
.wse3{word-spacing:-1.008000px;}
.ws125{word-spacing:-0.990000px;}
.wsf5{word-spacing:-0.972000px;}
.wsc3{word-spacing:-0.936000px;}
.ws22{word-spacing:-0.924000px;}
.ws57{word-spacing:-0.918000px;}
.wsa2{word-spacing:-0.864000px;}
.ws27{word-spacing:-0.858000px;}
.ws3d{word-spacing:-0.792000px;}
.ws44{word-spacing:-0.756000px;}
.ws21{word-spacing:-0.726000px;}
.wsbc{word-spacing:-0.720000px;}
.ws20{word-spacing:-0.660000px;}
.wse7{word-spacing:-0.648000px;}
.ws36{word-spacing:-0.576000px;}
.ws9d{word-spacing:-0.540000px;}
.wse{word-spacing:-0.528000px;}
.wsb4{word-spacing:-0.504000px;}
.wsd7{word-spacing:-0.486000px;}
.ws4e{word-spacing:-0.432000px;}
.ws23{word-spacing:-0.396000px;}
.wsc4{word-spacing:-0.360000px;}
.ws103{word-spacing:-0.330000px;}
.wsbf{word-spacing:-0.324000px;}
.wsf8{word-spacing:-0.288000px;}
.ws11c{word-spacing:-0.264000px;}
.ws69{word-spacing:-0.216000px;}
.ws110{word-spacing:-0.198000px;}
.ws4b{word-spacing:-0.144000px;}
.wse9{word-spacing:-0.072000px;}
.ws28{word-spacing:-0.066000px;}
.ws5{word-spacing:0.000000px;}
.wsa7{word-spacing:0.054000px;}
.wsd{word-spacing:0.066000px;}
.ws47{word-spacing:0.072000px;}
.wsd1{word-spacing:0.144000px;}
.wsa8{word-spacing:0.162000px;}
.ws59{word-spacing:0.216000px;}
.ws10c{word-spacing:0.264000px;}
.ws3a{word-spacing:0.288000px;}
.ws9f{word-spacing:0.324000px;}
.wsff{word-spacing:0.330000px;}
.ws3f{word-spacing:0.360000px;}
.ws101{word-spacing:0.396000px;}
.ws9c{word-spacing:0.432000px;}
.ws8e{word-spacing:0.504000px;}
.ws122{word-spacing:0.528000px;}
.wsb2{word-spacing:0.576000px;}
.wse0{word-spacing:0.594000px;}
.ws86{word-spacing:0.648000px;}
.ws89{word-spacing:0.720000px;}
.ws3c{word-spacing:0.792000px;}
.wsb5{word-spacing:0.810000px;}
.ws11b{word-spacing:0.858000px;}
.ws108{word-spacing:0.924000px;}
.wsb1{word-spacing:0.936000px;}
.wsbe{word-spacing:1.008000px;}
.wscf{word-spacing:1.026000px;}
.ws115{word-spacing:1.056000px;}
.ws8d{word-spacing:1.080000px;}
.ws1f{word-spacing:1.122000px;}
.wsd5{word-spacing:1.134000px;}
.ws4c{word-spacing:1.152000px;}
.ws25{word-spacing:1.188000px;}
.ws5e{word-spacing:1.224000px;}
.ws92{word-spacing:1.296000px;}
.wsa5{word-spacing:1.368000px;}
.ws45{word-spacing:1.404000px;}
.wsdd{word-spacing:1.440000px;}
.ws5a{word-spacing:1.512000px;}
.ws83{word-spacing:1.584000px;}
.wsd2{word-spacing:1.656000px;}
.ws56{word-spacing:1.674000px;}
.wsc0{word-spacing:1.728000px;}
.ws46{word-spacing:1.782000px;}
.wsf0{word-spacing:1.800000px;}
.ws12{word-spacing:1.848000px;}
.wsf3{word-spacing:1.872000px;}
.ws117{word-spacing:1.980000px;}
.ws55{word-spacing:1.998000px;}
.ws61{word-spacing:2.016000px;}
.ws6a{word-spacing:2.088000px;}
.ws1c{word-spacing:2.178000px;}
.wsd9{word-spacing:2.232000px;}
.wsec{word-spacing:2.304000px;}
.wse6{word-spacing:2.376000px;}
.ws37{word-spacing:2.448000px;}
.wsa3{word-spacing:2.520000px;}
.wsb6{word-spacing:2.592000px;}
.ws7c{word-spacing:2.664000px;}
.wsc5{word-spacing:2.736000px;}
.ws10b{word-spacing:2.772000px;}
.wsdb{word-spacing:2.808000px;}
.wsa{word-spacing:2.838000px;}
.ws6d{word-spacing:2.880000px;}
.wsc1{word-spacing:2.952000px;}
.ws98{word-spacing:2.970000px;}
.wsee{word-spacing:3.096000px;}
.ws30{word-spacing:3.102000px;}
.ws7a{word-spacing:3.132000px;}
.ws93{word-spacing:3.168000px;}
.ws8a{word-spacing:3.240000px;}
.ws2a{word-spacing:3.300000px;}
.ws4d{word-spacing:3.312000px;}
.ws65{word-spacing:3.456000px;}
.ws10e{word-spacing:3.498000px;}
.wsd6{word-spacing:3.510000px;}
.wsd0{word-spacing:3.528000px;}
.wsae{word-spacing:3.600000px;}
.ws8b{word-spacing:3.672000px;}
.ws120{word-spacing:3.696000px;}
.wsda{word-spacing:3.744000px;}
.wscb{word-spacing:3.816000px;}
.ws77{word-spacing:3.834000px;}
.ws126{word-spacing:3.894000px;}
.wsbb{word-spacing:3.960000px;}
.ws78{word-spacing:3.996000px;}
.ws105{word-spacing:4.026000px;}
.ws63{word-spacing:4.032000px;}
.wsab{word-spacing:4.104000px;}
.ws82{word-spacing:4.248000px;}
.ws1b{word-spacing:4.290000px;}
.wsde{word-spacing:4.320000px;}
.wsfe{word-spacing:4.392000px;}
.wsf4{word-spacing:4.464000px;}
.ws19{word-spacing:4.488000px;}
.ws9b{word-spacing:4.536000px;}
.ws6c{word-spacing:4.608000px;}
.ws26{word-spacing:4.620000px;}
.wsd3{word-spacing:4.680000px;}
.ws2c{word-spacing:4.752000px;}
.ws29{word-spacing:4.818000px;}
.ws3e{word-spacing:4.824000px;}
.ws10f{word-spacing:4.884000px;}
.ws8c{word-spacing:4.896000px;}
.ws74{word-spacing:4.968000px;}
.ws100{word-spacing:5.016000px;}
.ws4a{word-spacing:5.040000px;}
.ws6e{word-spacing:5.112000px;}
.wsba{word-spacing:5.184000px;}
.ws7b{word-spacing:5.238000px;}
.ws48{word-spacing:5.328000px;}
.ws75{word-spacing:5.400000px;}
.ws84{word-spacing:5.472000px;}
.ws9a{word-spacing:5.508000px;}
.wsf{word-spacing:5.544000px;}
.ws38{word-spacing:5.616000px;}
.wseb{word-spacing:5.688000px;}
.ws13{word-spacing:5.724000px;}
.ws8{word-spacing:5.742000px;}
.ws79{word-spacing:5.778000px;}
.wsf7{word-spacing:5.832000px;}
.ws80{word-spacing:5.904000px;}
.ws10d{word-spacing:6.006000px;}
.ws76{word-spacing:6.048000px;}
.wsc8{word-spacing:6.102000px;}
.ws39{word-spacing:6.120000px;}
.wsc7{word-spacing:6.156000px;}
.ws1d{word-spacing:6.204000px;}
.wsc2{word-spacing:6.264000px;}
.wsd4{word-spacing:6.318000px;}
.ws1a{word-spacing:6.336000px;}
.ws7d{word-spacing:6.408000px;}
.ws43{word-spacing:6.480000px;}
.wsfb{word-spacing:6.552000px;}
.ws11{word-spacing:6.600000px;}
.ws64{word-spacing:6.624000px;}
.ws123{word-spacing:6.666000px;}
.ws41{word-spacing:6.696000px;}
.ws2b{word-spacing:6.732000px;}
.ws8f{word-spacing:6.750000px;}
.wsaa{word-spacing:6.768000px;}
.ws94{word-spacing:6.840000px;}
.wsa6{word-spacing:6.858000px;}
.ws85{word-spacing:6.984000px;}
.ws4f{word-spacing:7.056000px;}
.ws11e{word-spacing:7.062000px;}
.ws96{word-spacing:7.200000px;}
.wsfa{word-spacing:7.272000px;}
.ws124{word-spacing:7.326000px;}
.ws6f{word-spacing:7.344000px;}
.ws99{word-spacing:7.398000px;}
.ws111{word-spacing:7.458000px;}
.ws71{word-spacing:7.488000px;}
.ws49{word-spacing:7.632000px;}
.wsaf{word-spacing:7.704000px;}
.ws73{word-spacing:7.722000px;}
.wsa4{word-spacing:7.776000px;}
.ws109{word-spacing:7.788000px;}
.wsf2{word-spacing:7.848000px;}
.wsb7{word-spacing:7.920000px;}
.ws118{word-spacing:7.986000px;}
.wsed{word-spacing:8.064000px;}
.wsc6{word-spacing:8.100000px;}
.ws32{word-spacing:8.184000px;}
.ws60{word-spacing:8.280000px;}
.wsca{word-spacing:8.352000px;}
.ws66{word-spacing:8.424000px;}
.wscc{word-spacing:8.496000px;}
.ws67{word-spacing:8.640000px;}
.wsdf{word-spacing:8.712000px;}
.ws5c{word-spacing:8.784000px;}
.ws50{word-spacing:8.856000px;}
.ws9{word-spacing:8.910000px;}
.wsef{word-spacing:8.928000px;}
.wse8{word-spacing:9.000000px;}
.ws18{word-spacing:9.042000px;}
.wsf1{word-spacing:9.072000px;}
.ws10{word-spacing:9.108000px;}
.wsb8{word-spacing:9.144000px;}
.wsbd{word-spacing:9.216000px;}
.wse1{word-spacing:9.288000px;}
.ws95{word-spacing:9.360000px;}
.wsb3{word-spacing:9.432000px;}
.ws7f{word-spacing:9.576000px;}
.ws54{word-spacing:9.648000px;}
.ws72{word-spacing:9.792000px;}
.ws62{word-spacing:9.864000px;}
.ws6b{word-spacing:9.936000px;}
.wsa9{word-spacing:10.098000px;}
.ws119{word-spacing:11.484000px;}
.ws6{word-spacing:12.180000px;}
.wse4{word-spacing:12.312000px;}
.ws7{word-spacing:12.606000px;}
.ws70{word-spacing:13.104000px;}
.ws2d{word-spacing:15.048000px;}
.ws2e{word-spacing:22.044000px;}
.ws2f{word-spacing:34.980000px;}
.ws116{word-spacing:35.244000px;}
._17{margin-left:-26.734800px;}
._2{margin-left:-14.340600px;}
._16{margin-left:-12.976200px;}
._b{margin-left:-8.494200px;}
._a{margin-left:-7.096200px;}
._4{margin-left:-5.904600px;}
._1{margin-left:-4.636800px;}
._3{margin-left:-3.043200px;}
._0{margin-left:-1.992600px;}
._9{width:1.960200px;}
._8{width:3.756000px;}
._6{width:5.055600px;}
._c{width:6.217800px;}
._e{width:7.639200px;}
._7{width:9.042600px;}
._5{width:10.540200px;}
._11{width:11.880000px;}
._f{width:14.256000px;}
._12{width:15.444000px;}
._10{width:19.152000px;}
._15{width:21.456000px;}
._13{width:26.242200px;}
._14{width:32.614200px;}
._18{width:35.508000px;}
._d{width:40.181400px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fsa{font-size:37.800000px;}
.fs8{font-size:38.478000px;}
.fs9{font-size:41.976000px;}
.fsb{font-size:46.200000px;}
.fs2{font-size:48.972000px;}
.fs5{font-size:50.400000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:52.426800px;}
.y24{bottom:52.639350px;}
.y4a{bottom:68.626800px;}
.y23{bottom:68.839350px;}
.y20{bottom:105.888150px;}
.y48{bottom:106.299150px;}
.y9b{bottom:106.299300px;}
.y76{bottom:110.794800px;}
.y1f{bottom:122.088150px;}
.y101{bottom:122.499150px;}
.y9a{bottom:122.499300px;}
.y75{bottom:122.499450px;}
.y300{bottom:126.175350px;}
.y47{bottom:126.256800px;}
.y2d9{bottom:126.329700px;}
.y13e{bottom:126.994800px;}
.y324{bottom:127.249950px;}
.y21c{bottom:127.323900px;}
.y23e{bottom:127.609650px;}
.ybe{bottom:127.803000px;}
.y2b7{bottom:127.942350px;}
.y296{bottom:128.417400px;}
.y17e{bottom:138.699150px;}
.y99{bottom:138.699300px;}
.y74{bottom:138.699450px;}
.y1e{bottom:142.783650px;}
.y100{bottom:143.194650px;}
.y2ff{bottom:146.051700px;}
.y46{bottom:146.214450px;}
.y2d8{bottom:146.360100px;}
.y323{bottom:148.200600px;}
.y21b{bottom:148.348500px;}
.y23d{bottom:148.920300px;}
.ybd{bottom:149.306700px;}
.y2b6{bottom:149.585400px;}
.y295{bottom:150.535500px;}
.y15d{bottom:154.899150px;}
.y98{bottom:154.899300px;}
.y73{bottom:154.899450px;}
.y1a0{bottom:159.394650px;}
.y1fa{bottom:159.394800px;}
.y2fe{bottom:165.927900px;}
.y45{bottom:166.172100px;}
.y2d7{bottom:166.390500px;}
.y322{bottom:169.151250px;}
.y21a{bottom:169.373400px;}
.y23c{bottom:170.230800px;}
.ybc{bottom:170.810400px;}
.y15c{bottom:171.099150px;}
.y97{bottom:171.099300px;}
.y72{bottom:171.099450px;}
.y2b5{bottom:171.228600px;}
.y294{bottom:172.653600px;}
.y17d{bottom:175.594650px;}
.y121{bottom:175.594800px;}
.yff{bottom:180.411000px;}
.y2fd{bottom:185.804100px;}
.y44{bottom:186.129750px;}
.y2d6{bottom:186.421050px;}
.y1c0{bottom:187.299150px;}
.y96{bottom:187.299300px;}
.y71{bottom:187.299450px;}
.y321{bottom:190.101900px;}
.y219{bottom:190.398000px;}
.y23b{bottom:191.541300px;}
.y273{bottom:191.794650px;}
.y17f{bottom:191.794800px;}
.ybb{bottom:192.314100px;}
.y2b4{bottom:192.871650px;}
.y293{bottom:194.771700px;}
.y19f{bottom:196.611000px;}
.yfe{bottom:201.450300px;}
.y95{bottom:203.499300px;}
.y70{bottom:203.499450px;}
.y2fc{bottom:205.680450px;}
.y43{bottom:206.087400px;}
.y2d5{bottom:206.451450px;}
.y1bf{bottom:207.994650px;}
.y1f9{bottom:207.994800px;}
.y1d{bottom:210.660000px;}
.y320{bottom:211.052550px;}
.y218{bottom:211.422750px;}
.y17c{bottom:212.810850px;}
.y15b{bottom:212.811000px;}
.y23a{bottom:212.851950px;}
.yba{bottom:213.817800px;}
.y2b3{bottom:214.514850px;}
.y292{bottom:216.889800px;}
.y19e{bottom:217.980450px;}
.y1be{bottom:219.699150px;}
.ydf{bottom:219.699300px;}
.y120{bottom:219.699450px;}
.yfd{bottom:222.489600px;}
.y94{bottom:224.194800px;}
.y6f{bottom:224.194950px;}
.y2fb{bottom:225.556650px;}
.y42{bottom:226.045050px;}
.y272{bottom:229.011000px;}
.y31f{bottom:232.003200px;}
.y217{bottom:232.447500px;}
.y239{bottom:234.162450px;}
.y15a{bottom:234.176400px;}
.y17b{bottom:234.347100px;}
.yb9{bottom:235.321500px;}
.y1bd{bottom:235.899150px;}
.yde{bottom:235.899300px;}
.y11f{bottom:235.899450px;}
.y2b2{bottom:236.157900px;}
.y1c{bottom:238.663950px;}
.y291{bottom:239.007900px;}
.y19d{bottom:239.349900px;}
.y1db{bottom:240.394800px;}
.y2d4{bottom:243.489750px;}
.yfc{bottom:243.528900px;}
.y1f8{bottom:245.211150px;}
.y2fa{bottom:245.432850px;}
.y271{bottom:250.024650px;}
.y1bc{bottom:252.099150px;}
.ydd{bottom:252.099300px;}
.y11e{bottom:252.099450px;}
.y31e{bottom:252.953700px;}
.y216{bottom:253.472250px;}
.y238{bottom:255.473100px;}
.y159{bottom:255.541950px;}
.y17a{bottom:255.883350px;}
.y13d{bottom:256.594800px;}
.yb8{bottom:256.825350px;}
.y2b1{bottom:257.800950px;}
.y1b{bottom:258.163950px;}
.y19c{bottom:260.719350px;}
.y290{bottom:261.126000px;}
.y93{bottom:261.411000px;}
.y6e{bottom:261.411300px;}
.y41{bottom:263.010600px;}
.yfb{bottom:264.568200px;}
.y2f9{bottom:265.309200px;}
.y1f7{bottom:267.115350px;}
.y1bb{bottom:268.299150px;}
.ydc{bottom:268.299300px;}
.y11d{bottom:268.299450px;}
.y270{bottom:271.038150px;}
.y31d{bottom:273.904350px;}
.y215{bottom:274.497000px;}
.y237{bottom:276.783600px;}
.y158{bottom:276.907350px;}
.y179{bottom:277.419450px;}
.y1da{bottom:277.611150px;}
.yb7{bottom:278.329050px;}
.y2b0{bottom:279.444150px;}
.y19b{bottom:282.088650px;}
.y40{bottom:282.668250px;}
.y92{bottom:282.756600px;}
.y28f{bottom:283.244100px;}
.y6d{bottom:283.291200px;}
.y1ba{bottom:284.499150px;}
.ydb{bottom:284.499300px;}
.y11c{bottom:284.499450px;}
.y2f8{bottom:285.185400px;}
.yfa{bottom:285.607650px;}
.y2d3{bottom:285.980100px;}
.y1a{bottom:286.167900px;}
.y1f6{bottom:289.019550px;}
.y26f{bottom:292.051800px;}
.y13c{bottom:293.811150px;}
.y31c{bottom:294.855000px;}
.y214{bottom:295.521750px;}
.y253{bottom:298.094250px;}
.y157{bottom:298.272750px;}
.y178{bottom:298.955700px;}
.y1d9{bottom:299.324700px;}
.yb6{bottom:299.832750px;}
.y1b9{bottom:300.699150px;}
.y11b{bottom:300.699450px;}
.y2af{bottom:301.087200px;}
.y3f{bottom:302.325900px;}
.y19a{bottom:303.458250px;}
.y91{bottom:304.102200px;}
.y2f7{bottom:305.061750px;}
.y6c{bottom:305.171100px;}
.yda{bottom:305.194800px;}
.y28e{bottom:305.362200px;}
.y19{bottom:305.667900px;}
.yf9{bottom:306.646950px;}
.y2d2{bottom:307.210500px;}
.y236{bottom:310.850100px;}
.y1f5{bottom:310.923750px;}
.y26e{bottom:313.065450px;}
.y13b{bottom:315.537900px;}
.y31b{bottom:315.805650px;}
.y213{bottom:316.546500px;}
.y1b8{bottom:316.899150px;}
.yd9{bottom:316.899300px;}
.y11a{bottom:316.899450px;}
.y252{bottom:319.404750px;}
.y156{bottom:319.638300px;}
.y177{bottom:320.491800px;}
.y1d8{bottom:321.038400px;}
.yb5{bottom:321.336450px;}
.y3e{bottom:321.983550px;}
.y2ae{bottom:322.730400px;}
.y199{bottom:324.827550px;}
.y2f6{bottom:324.937950px;}
.y18{bottom:325.167900px;}
.y90{bottom:325.447800px;}
.y6b{bottom:327.051000px;}
.y28d{bottom:327.480300px;}
.yf8{bottom:327.686250px;}
.y2d1{bottom:328.441050px;}
.y274{bottom:332.160750px;}
.y1f4{bottom:332.827950px;}
.yd8{bottom:333.099300px;}
.y26d{bottom:334.079100px;}
.y31a{bottom:336.756300px;}
.y13a{bottom:337.264500px;}
.y212{bottom:337.571250px;}
.y1b7{bottom:337.594650px;}
.y119{bottom:337.594950px;}
.y251{bottom:340.715400px;}
.y3d{bottom:341.641350px;}
.y176{bottom:342.028050px;}
.y1d7{bottom:342.751950px;}
.yb4{bottom:342.840150px;}
.y2ad{bottom:344.373450px;}
.y17{bottom:344.667900px;}
.y2f5{bottom:344.814150px;}
.y198{bottom:346.197000px;}
.y8f{bottom:346.793400px;}
.y235{bottom:347.668650px;}
.yf7{bottom:348.725550px;}
.y6a{bottom:348.930900px;}
.yd7{bottom:349.299300px;}
.y28c{bottom:349.598400px;}
.y2d0{bottom:349.671450px;}
.y155{bottom:353.759700px;}
.y1f3{bottom:354.732150px;}
.y26c{bottom:355.092600px;}
.y319{bottom:357.706950px;}
.y211{bottom:358.596000px;}
.y139{bottom:358.991250px;}
.y3c{bottom:361.299000px;}
.y250{bottom:362.025900px;}
.y175{bottom:363.564300px;}
.y16{bottom:364.167900px;}
.yb3{bottom:364.343850px;}
.y1d6{bottom:364.465650px;}
.y2f4{bottom:364.690500px;}
.yd6{bottom:365.499300px;}
.y2ac{bottom:366.016650px;}
.y197{bottom:367.566450px;}
.y8e{bottom:368.139000px;}
.y234{bottom:368.979150px;}
.yf6{bottom:369.764850px;}
.y69{bottom:370.810950px;}
.y2cf{bottom:370.901850px;}
.y28b{bottom:371.716500px;}
.y154{bottom:373.625100px;}
.y1b6{bottom:374.811000px;}
.y118{bottom:374.811300px;}
.y26b{bottom:376.106250px;}
.y1f2{bottom:376.636350px;}
.y318{bottom:378.657600px;}
.y210{bottom:379.620750px;}
.y138{bottom:380.718000px;}
.yd5{bottom:381.699300px;}
.y24f{bottom:383.336550px;}
.y15{bottom:383.667900px;}
.y2f3{bottom:384.566700px;}
.y174{bottom:385.100400px;}
.yb2{bottom:385.847550px;}
.y1d5{bottom:386.179200px;}
.y2ab{bottom:387.659700px;}
.y196{bottom:388.935900px;}
.y3b{bottom:389.460600px;}
.y8d{bottom:389.484450px;}
.y233{bottom:390.289650px;}
.y2ce{bottom:392.132400px;}
.y68{bottom:392.690850px;}
.y28a{bottom:393.834600px;}
.y1b5{bottom:396.509100px;}
.y117{bottom:396.794850px;}
.y26a{bottom:397.119900px;}
.yd4{bottom:397.899300px;}
.y1f1{bottom:398.540550px;}
.y317{bottom:399.608250px;}
.y20f{bottom:400.645500px;}
.y137{bottom:402.444750px;}
.y14{bottom:403.167900px;}
.yf5{bottom:403.560000px;}
.y2f2{bottom:404.442900px;}
.y24e{bottom:404.647050px;}
.y173{bottom:406.636650px;}
.yb1{bottom:407.351250px;}
.y1d4{bottom:407.892900px;}
.y2aa{bottom:409.302900px;}
.y195{bottom:410.305350px;}
.y153{bottom:410.498400px;}
.y8c{bottom:410.830050px;}
.y232{bottom:411.600300px;}
.y2cd{bottom:413.362800px;}
.yd3{bottom:414.099300px;}
.y67{bottom:414.570750px;}
.y289{bottom:415.952700px;}
.y3a{bottom:417.622200px;}
.y269{bottom:418.133400px;}
.y1b4{bottom:418.207200px;}
.y116{bottom:418.778400px;}
.y1f0{bottom:420.444750px;}
.y316{bottom:420.558900px;}
.y20e{bottom:421.670250px;}
.y13{bottom:422.667900px;}
.yf4{bottom:423.099450px;}
.y136{bottom:424.171500px;}
.y2f1{bottom:424.319250px;}
.y24d{bottom:425.957700px;}
.y172{bottom:428.172750px;}
.yb0{bottom:428.854950px;}
.y1d3{bottom:429.606450px;}
.yd2{bottom:430.299300px;}
.y2a9{bottom:430.945950px;}
.y194{bottom:431.674800px;}
.y8b{bottom:432.175650px;}
.y231{bottom:432.910800px;}
.y2cc{bottom:434.593350px;}
.y66{bottom:436.450650px;}
.y39{bottom:437.279850px;}
.y288{bottom:438.070800px;}
.y268{bottom:439.147050px;}
.y1b3{bottom:439.905300px;}
.y115{bottom:440.761950px;}
.y315{bottom:441.509550px;}
.y12{bottom:442.167900px;}
.y1ef{bottom:442.348950px;}
.y20d{bottom:442.695000px;}
.y2f0{bottom:444.195450px;}
.y135{bottom:445.898250px;}
.yd1{bottom:446.499300px;}
.y24c{bottom:447.268200px;}
.y171{bottom:449.709000px;}
.yaf{bottom:450.358650px;}
.y1d2{bottom:451.320150px;}
.y2a8{bottom:452.589000px;}
.y193{bottom:453.044250px;}
.y152{bottom:453.123750px;}
.y8a{bottom:453.521250px;}
.y230{bottom:454.221450px;}
.y2cb{bottom:455.823750px;}
.y65{bottom:458.330550px;}
.yf3{bottom:459.646650px;}
.y267{bottom:460.160700px;}
.y287{bottom:460.188900px;}
.y1b2{bottom:461.603400px;}
.y11{bottom:461.667900px;}
.y314{bottom:462.460200px;}
.y114{bottom:462.745500px;}
.y2ef{bottom:464.071650px;}
.y1ee{bottom:464.253150px;}
.y38{bottom:465.441450px;}
.yd0{bottom:467.194800px;}
.y134{bottom:467.625000px;}
.y24b{bottom:468.578850px;}
.y170{bottom:471.245250px;}
.yae{bottom:471.862500px;}
.y1d1{bottom:473.033700px;}
.y192{bottom:474.413700px;}
.y151{bottom:474.489150px;}
.y89{bottom:474.866850px;}
.y22f{bottom:475.531950px;}
.y2ca{bottom:477.054150px;}
.y64{bottom:480.210450px;}
.yf2{bottom:480.685800px;}
.y20c{bottom:480.727650px;}
.y10{bottom:481.167900px;}
.y266{bottom:481.174350px;}
.y286{bottom:482.307150px;}
.y1b1{bottom:483.301500px;}
.y313{bottom:483.410850px;}
.y2ee{bottom:483.948000px;}
.y113{bottom:484.729050px;}
.y37{bottom:485.099100px;}
.y1ed{bottom:486.157350px;}
.y133{bottom:489.351750px;}
.y24a{bottom:489.889350px;}
.y2a7{bottom:491.240100px;}
.y16f{bottom:492.781350px;}
.yad{bottom:493.366200px;}
.y1d0{bottom:494.747250px;}
.y191{bottom:495.783150px;}
.y150{bottom:495.854700px;}
.y88{bottom:496.212450px;}
.y22e{bottom:496.842600px;}
.y2c9{bottom:498.284700px;}
.yf{bottom:500.667900px;}
.yf1{bottom:501.725250px;}
.y20b{bottom:501.752400px;}
.y63{bottom:502.090350px;}
.y265{bottom:502.188000px;}
.y2ed{bottom:503.824200px;}
.y312{bottom:504.361500px;}
.ycf{bottom:504.411000px;}
.y285{bottom:504.425100px;}
.y36{bottom:504.756750px;}
.y1b0{bottom:504.999600px;}
.y112{bottom:506.712600px;}
.y1ec{bottom:508.061550px;}
.y132{bottom:511.078500px;}
.y249{bottom:511.199850px;}
.y16e{bottom:514.317600px;}
.yac{bottom:514.869900px;}
.y1cf{bottom:516.460950px;}
.y190{bottom:517.152450px;}
.y14f{bottom:517.220100px;}
.y87{bottom:517.557900px;}
.y22d{bottom:518.153100px;}
.y2c8{bottom:519.515100px;}
.yf0{bottom:522.764550px;}
.y264{bottom:523.201500px;}
.y2ec{bottom:523.700400px;}
.y62{bottom:523.970250px;}
.y35{bottom:524.414400px;}
.y311{bottom:525.312150px;}
.yce{bottom:526.530000px;}
.y284{bottom:526.543350px;}
.y1af{bottom:526.697700px;}
.y111{bottom:528.696150px;}
.y1eb{bottom:529.965750px;}
.y248{bottom:532.510500px;}
.y131{bottom:532.805250px;}
.y2a6{bottom:534.142950px;}
.y16d{bottom:535.853700px;}
.yab{bottom:536.373600px;}
.ye{bottom:537.175650px;}
.y1ce{bottom:538.174500px;}
.y18f{bottom:538.521900px;}
.y14e{bottom:538.585650px;}
.y86{bottom:538.903500px;}
.y22c{bottom:539.463750px;}
.y2c7{bottom:540.745650px;}
.y2eb{bottom:543.576750px;}
.yef{bottom:543.803850px;}
.y20a{bottom:544.036950px;}
.y34{bottom:544.072050px;}
.y263{bottom:544.215150px;}
.y61{bottom:545.850150px;}
.y310{bottom:546.262800px;}
.y1ae{bottom:548.395800px;}
.ycd{bottom:548.649000px;}
.y283{bottom:548.661450px;}
.y110{bottom:550.679700px;}
.y1ea{bottom:551.869950px;}
.y247{bottom:553.821150px;}
.y130{bottom:554.532000px;}
.y2a5{bottom:555.786150px;}
.y16c{bottom:557.389950px;}
.yaa{bottom:557.877300px;}
.y1cd{bottom:559.888200px;}
.y18e{bottom:559.891350px;}
.y14d{bottom:559.951050px;}
.y85{bottom:560.249100px;}
.y22b{bottom:560.774250px;}
.y2c6{bottom:561.976050px;}
.y2ea{bottom:563.452950px;}
.y33{bottom:563.729700px;}
.yee{bottom:564.843150px;}
.y209{bottom:565.061700px;}
.y262{bottom:565.228800px;}
.y30f{bottom:567.213450px;}
.y60{bottom:567.730200px;}
.y1ad{bottom:570.093900px;}
.ycc{bottom:570.767850px;}
.y282{bottom:570.779550px;}
.y10f{bottom:572.663250px;}
.yd{bottom:573.683550px;}
.y1e9{bottom:573.774150px;}
.y246{bottom:575.131650px;}
.y12f{bottom:576.258600px;}
.y2a4{bottom:577.429200px;}
.y16b{bottom:578.926050px;}
.ya9{bottom:579.381000px;}
.y18d{bottom:581.260800px;}
.y14c{bottom:581.316450px;}
.y84{bottom:581.594700px;}
.y1cc{bottom:581.601750px;}
.y22a{bottom:582.084750px;}
.y2c5{bottom:583.206450px;}
.y2e9{bottom:583.329150px;}
.y32{bottom:583.387350px;}
.yed{bottom:585.882450px;}
.y208{bottom:586.086450px;}
.y261{bottom:586.242300px;}
.y30e{bottom:588.164100px;}
.y5f{bottom:589.610100px;}
.yc{bottom:591.683550px;}
.y1ac{bottom:591.792000px;}
.ycb{bottom:592.886850px;}
.y281{bottom:592.897650px;}
.y10e{bottom:594.646800px;}
.y1e8{bottom:595.678350px;}
.y245{bottom:596.442150px;}
.y12e{bottom:597.985350px;}
.y2a3{bottom:599.072400px;}
.y16a{bottom:600.462300px;}
.ya8{bottom:600.884700px;}
.y18c{bottom:602.630250px;}
.y14b{bottom:602.682000px;}
.y83{bottom:602.940300px;}
.y31{bottom:603.045000px;}
.y2e8{bottom:603.205500px;}
.y1cb{bottom:603.315450px;}
.y229{bottom:603.395400px;}
.y2c4{bottom:604.436850px;}
.yec{bottom:606.921750px;}
.y207{bottom:607.111200px;}
.y260{bottom:607.255950px;}
.y30d{bottom:609.114600px;}
.y5e{bottom:611.490000px;}
.y1ab{bottom:613.490100px;}
.yca{bottom:615.005700px;}
.y280{bottom:615.015750px;}
.y10d{bottom:616.630350px;}
.y1e7{bottom:617.582550px;}
.y244{bottom:617.752800px;}
.y12d{bottom:619.712100px;}
.y2a2{bottom:620.715450px;}
.y169{bottom:621.998550px;}
.ya7{bottom:622.388400px;}
.y30{bottom:622.702650px;}
.y2e7{bottom:623.081700px;}
.y18b{bottom:623.999700px;}
.y14a{bottom:624.047400px;}
.y82{bottom:624.285900px;}
.y228{bottom:624.705900px;}
.y1ca{bottom:625.029000px;}
.y2c3{bottom:625.667400px;}
.yeb{bottom:627.961050px;}
.y206{bottom:628.135950px;}
.y25f{bottom:628.269600px;}
.y30c{bottom:630.065250px;}
.y5d{bottom:633.369900px;}
.y1aa{bottom:635.188200px;}
.yc9{bottom:637.124700px;}
.y27f{bottom:637.133850px;}
.y10c{bottom:638.613900px;}
.y243{bottom:639.063300px;}
.y1e6{bottom:639.486750px;}
.y12c{bottom:641.438850px;}
.y2a1{bottom:642.358650px;}
.y2f{bottom:642.360450px;}
.y2e6{bottom:642.957900px;}
.y168{bottom:643.534650px;}
.ya6{bottom:643.892100px;}
.y18a{bottom:645.369150px;}
.y149{bottom:645.412800px;}
.y81{bottom:645.631500px;}
.y227{bottom:646.016550px;}
.y1c9{bottom:646.742550px;}
.y2c2{bottom:646.897950px;}
.yea{bottom:649.000350px;}
.y205{bottom:649.160550px;}
.y25e{bottom:649.283250px;}
.y30b{bottom:651.015900px;}
.y5c{bottom:655.249800px;}
.y1a9{bottom:656.886300px;}
.yc8{bottom:659.243700px;}
.y27e{bottom:659.251950px;}
.y242{bottom:660.373950px;}
.y10b{bottom:660.597450px;}
.y1e5{bottom:661.390950px;}
.y2e{bottom:662.018100px;}
.y2e5{bottom:662.834250px;}
.y12b{bottom:663.165600px;}
.y2a0{bottom:664.001700px;}
.y167{bottom:665.070900px;}
.ya5{bottom:665.395800px;}
.y189{bottom:666.738600px;}
.y148{bottom:666.778350px;}
.y80{bottom:666.977100px;}
.y226{bottom:667.327050px;}
.y2c1{bottom:668.128350px;}
.y1c8{bottom:668.456250px;}
.ye9{bottom:670.039800px;}
.y204{bottom:670.185450px;}
.y25d{bottom:670.296750px;}
.y30a{bottom:671.966550px;}
.y5b{bottom:677.129850px;}
.y1a8{bottom:678.584400px;}
.yc7{bottom:681.362550px;}
.y27d{bottom:681.370050px;}
.y2d{bottom:681.675750px;}
.y241{bottom:681.684450px;}
.y10a{bottom:682.581000px;}
.y2e4{bottom:682.710450px;}
.y1e4{bottom:683.295150px;}
.y12a{bottom:684.892350px;}
.y29f{bottom:685.644900px;}
.y166{bottom:686.607000px;}
.ya4{bottom:686.899500px;}
.y188{bottom:688.107900px;}
.y147{bottom:688.143750px;}
.y7f{bottom:688.322550px;}
.y225{bottom:688.637700px;}
.y2c0{bottom:689.358750px;}
.y1c7{bottom:690.169800px;}
.ye8{bottom:691.079100px;}
.y203{bottom:691.210200px;}
.y25c{bottom:691.310400px;}
.y309{bottom:692.917200px;}
.y5a{bottom:699.009750px;}
.yb{bottom:699.685050px;}
.y2c{bottom:701.333400px;}
.y2e3{bottom:702.586650px;}
.y240{bottom:702.995100px;}
.yc6{bottom:703.481550px;}
.y27c{bottom:703.488150px;}
.y109{bottom:704.564550px;}
.y1e3{bottom:705.199350px;}
.y129{bottom:706.619100px;}
.y29e{bottom:707.287950px;}
.y165{bottom:708.143250px;}
.ya3{bottom:708.403350px;}
.y187{bottom:709.477500px;}
.y146{bottom:709.509300px;}
.y7e{bottom:709.668150px;}
.y224{bottom:709.948200px;}
.y2bf{bottom:710.589300px;}
.ye7{bottom:712.118400px;}
.y202{bottom:712.234800px;}
.y25b{bottom:712.324050px;}
.y1a7{bottom:713.038350px;}
.y308{bottom:713.867850px;}
.ya{bottom:717.685050px;}
.y59{bottom:720.889650px;}
.y2e2{bottom:722.463000px;}
.yc5{bottom:725.600400px;}
.y27b{bottom:725.606250px;}
.y108{bottom:726.548100px;}
.y1e2{bottom:727.103550px;}
.y128{bottom:728.345850px;}
.y1c6{bottom:728.891400px;}
.y29d{bottom:728.931000px;}
.y164{bottom:729.679500px;}
.ya2{bottom:729.907050px;}
.y186{bottom:730.846800px;}
.y145{bottom:730.874700px;}
.y7d{bottom:731.013750px;}
.y223{bottom:731.258850px;}
.y2be{bottom:731.819700px;}
.ye6{bottom:733.157700px;}
.y201{bottom:733.259550px;}
.y25a{bottom:733.337700px;}
.y307{bottom:734.818500px;}
.y9{bottom:735.685050px;}
.y23f{bottom:737.061450px;}
.y2b{bottom:737.998950px;}
.y2e1{bottom:742.339200px;}
.y58{bottom:742.769550px;}
.y52{bottom:742.856850px;}
.yc4{bottom:747.719400px;}
.y27a{bottom:747.724350px;}
.y107{bottom:748.531650px;}
.y1e1{bottom:749.007750px;}
.y127{bottom:750.072600px;}
.y1a6{bottom:750.244350px;}
.y29c{bottom:750.574200px;}
.y1c5{bottom:750.604950px;}
.y163{bottom:751.215600px;}
.ya1{bottom:751.410750px;}
.y185{bottom:752.216250px;}
.y144{bottom:752.240100px;}
.y7c{bottom:752.359350px;}
.y222{bottom:752.569350px;}
.y2bd{bottom:753.050100px;}
.y8{bottom:753.685050px;}
.ye5{bottom:754.197000px;}
.y200{bottom:754.284300px;}
.y259{bottom:754.351200px;}
.y306{bottom:755.769150px;}
.y2e0{bottom:762.215400px;}
.y51{bottom:762.656850px;}
.y57{bottom:764.649450px;}
.yc3{bottom:769.838250px;}
.y279{bottom:769.842450px;}
.y106{bottom:770.515200px;}
.y1e0{bottom:770.911950px;}
.y126{bottom:771.799200px;}
.y1a5{bottom:771.942450px;}
.y29b{bottom:772.217250px;}
.y162{bottom:772.751850px;}
.ya0{bottom:772.914300px;}
.y184{bottom:773.585700px;}
.y143{bottom:773.605650px;}
.y7b{bottom:773.704950px;}
.y221{bottom:773.880000px;}
.y2bc{bottom:774.280650px;}
.ye4{bottom:775.236300px;}
.y1ff{bottom:775.309050px;}
.y258{bottom:775.364850px;}
.y305{bottom:776.719800px;}
.y2df{bottom:782.091750px;}
.y50{bottom:782.456850px;}
.y2a{bottom:783.168300px;}
.y56{bottom:786.529350px;}
.yc2{bottom:791.957250px;}
.y278{bottom:791.960400px;}
.y105{bottom:792.498750px;}
.y1df{bottom:792.816150px;}
.y125{bottom:793.525950px;}
.y1c4{bottom:793.578450px;}
.y1a4{bottom:793.640550px;}
.y29a{bottom:793.860450px;}
.y161{bottom:794.288100px;}
.y9f{bottom:794.418000px;}
.y183{bottom:794.955150px;}
.y142{bottom:794.971050px;}
.y7a{bottom:795.050550px;}
.y220{bottom:795.190500px;}
.y2bb{bottom:795.511050px;}
.ye3{bottom:796.275600px;}
.y1fe{bottom:796.333800px;}
.y257{bottom:796.378350px;}
.y304{bottom:797.670450px;}
.y2de{bottom:801.967950px;}
.y4f{bottom:802.256850px;}
.y328{bottom:802.272900px;}
.y29{bottom:802.826100px;}
.y7{bottom:805.048800px;}
.yc1{bottom:814.076250px;}
.y277{bottom:814.078650px;}
.y104{bottom:814.482300px;}
.y1de{bottom:814.720350px;}
.y124{bottom:815.252700px;}
.y1c3{bottom:815.292000px;}
.y1a3{bottom:815.338650px;}
.y299{bottom:815.503500px;}
.y160{bottom:815.824350px;}
.y9e{bottom:815.921700px;}
.y182{bottom:816.324600px;}
.y141{bottom:816.336600px;}
.y79{bottom:816.396150px;}
.y21f{bottom:816.501000px;}
.y2ba{bottom:816.741450px;}
.ye2{bottom:817.314900px;}
.y1fd{bottom:817.358550px;}
.y256{bottom:817.392000px;}
.y303{bottom:818.620950px;}
.y55{bottom:821.165250px;}
.y2dd{bottom:821.844150px;}
.y4e{bottom:822.056850px;}
.y327{bottom:822.072900px;}
.y28{bottom:822.483900px;}
.y6{bottom:824.848800px;}
.yc0{bottom:836.195100px;}
.y276{bottom:836.196750px;}
.y103{bottom:836.465850px;}
.y1dd{bottom:836.624400px;}
.y123{bottom:836.979450px;}
.y1c2{bottom:837.005700px;}
.y1a2{bottom:837.036750px;}
.y298{bottom:837.146700px;}
.y15f{bottom:837.360600px;}
.y9d{bottom:837.425400px;}
.y181{bottom:837.694050px;}
.y140{bottom:837.702000px;}
.y78{bottom:837.741750px;}
.y21e{bottom:837.811650px;}
.y2b9{bottom:837.972000px;}
.ye1{bottom:838.354200px;}
.y1fc{bottom:838.383300px;}
.y255{bottom:838.405650px;}
.y302{bottom:839.571600px;}
.y2dc{bottom:841.720500px;}
.y4d{bottom:841.856850px;}
.y326{bottom:841.872900px;}
.y27{bottom:842.141550px;}
.y5{bottom:853.152900px;}
.ybf{bottom:858.313950px;}
.y275{bottom:858.314700px;}
.y102{bottom:858.449400px;}
.y1dc{bottom:858.528750px;}
.y54{bottom:858.553050px;}
.y122{bottom:858.706200px;}
.y1c1{bottom:858.719250px;}
.y1a1{bottom:858.734850px;}
.y297{bottom:858.789750px;}
.y15e{bottom:858.896700px;}
.y9c{bottom:858.929100px;}
.y180{bottom:859.063500px;}
.y13f{bottom:859.067400px;}
.y77{bottom:859.087350px;}
.y21d{bottom:859.122300px;}
.y2b8{bottom:859.202400px;}
.ye0{bottom:859.393650px;}
.y1fb{bottom:859.408200px;}
.y254{bottom:859.419300px;}
.y301{bottom:860.522250px;}
.y2db{bottom:861.596700px;}
.y4c{bottom:861.656850px;}
.y325{bottom:861.672900px;}
.y26{bottom:861.799200px;}
.y4{bottom:878.352750px;}
.y53{bottom:880.432950px;}
.y25{bottom:881.456850px;}
.y2da{bottom:881.472900px;}
.y3{bottom:925.525950px;}
.y2{bottom:941.725950px;}
.y49{bottom:957.347550px;}
.y22{bottom:957.347700px;}
.y1{bottom:957.925950px;}
.y21{bottom:958.387500px;}
.hb{height:29.399836px;}
.he{height:29.531672px;}
.hc{height:44.223047px;}
.ha{height:45.826172px;}
.h3{height:47.381836px;}
.h2{height:47.513672px;}
.hd{height:49.992188px;}
.h7{height:52.646484px;}
.h5{height:57.911133px;}
.h9{height:58.072266px;}
.h6{height:63.175781px;}
.h8{height:63.351562px;}
.h4{height:73.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:116.929200px;}
.xe{left:138.898650px;}
.xf{left:142.440900px;}
.x7{left:146.692950px;}
.x10{left:150.944850px;}
.xc{left:167.952750px;}
.xa{left:238.282500px;}
.x8{left:239.450400px;}
.x9{left:274.807650px;}
.xb{left:319.075950px;}
.x6{left:320.425200px;}
.x2{left:324.330000px;}
.x3{left:340.951950px;}
.x5{left:370.783500px;}
.x4{left:469.272150px;}
.xd{left:583.405500px;}
@media print{
.v5{vertical-align:-21.312000pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.536000pt;}
.v4{vertical-align:21.312000pt;}
.v1{vertical-align:24.863467pt;}
.ls43{letter-spacing:-5.514667pt;}
.ls20{letter-spacing:-1.035408pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls48{letter-spacing:-0.528000pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls47{letter-spacing:-0.469333pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls35{letter-spacing:-0.410667pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls2c{letter-spacing:-0.352000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.293333pt;}
.ls11{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls37{letter-spacing:-0.176000pt;}
.lsb{letter-spacing:-0.136811pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls36{letter-spacing:-0.117333pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.058667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000533pt;}
.ls44{letter-spacing:0.006400pt;}
.ls2d{letter-spacing:0.008533pt;}
.ls46{letter-spacing:0.009067pt;}
.ls2f{letter-spacing:0.009600pt;}
.ls38{letter-spacing:0.010133pt;}
.ls3{letter-spacing:0.058667pt;}
.ls21{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.128000pt;}
.ls32{letter-spacing:0.176000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls45{letter-spacing:0.193067pt;}
.ls31{letter-spacing:0.203200pt;}
.ls9{letter-spacing:0.205216pt;}
.ls0{letter-spacing:0.234667pt;}
.ls24{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.293333pt;}
.ls3a{letter-spacing:0.296000pt;}
.ls39{letter-spacing:0.305600pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls3f{letter-spacing:0.331200pt;}
.ls3d{letter-spacing:0.334400pt;}
.ls6{letter-spacing:0.352000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls2a{letter-spacing:0.479467pt;}
.lse{letter-spacing:0.483840pt;}
.lsc{letter-spacing:0.486933pt;}
.lsd{letter-spacing:0.492800pt;}
.ls10{letter-spacing:0.512000pt;}
.ls41{letter-spacing:0.516267pt;}
.ls40{letter-spacing:0.525867pt;}
.ls42{letter-spacing:0.528000pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.586667pt;}
.ls3b{letter-spacing:0.762667pt;}
.ls29{letter-spacing:0.768000pt;}
.ls8{letter-spacing:0.821333pt;}
.ls1c{letter-spacing:0.832000pt;}
.ls27{letter-spacing:0.923200pt;}
.ls3c{letter-spacing:0.938667pt;}
.ls5{letter-spacing:1.173333pt;}
.ls34{letter-spacing:1.408000pt;}
.ls28{letter-spacing:1.495467pt;}
.ls33{letter-spacing:2.646400pt;}
.ls49{letter-spacing:3.474133pt;}
.ls2e{letter-spacing:6.904533pt;}
.ls26{letter-spacing:7.395733pt;}
.ls25{letter-spacing:7.396267pt;}
.ls3e{letter-spacing:8.391467pt;}
.ws102{word-spacing:-16.074667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws112{word-spacing:-15.605333pt;}
.ws17{word-spacing:-14.666667pt;}
.ws114{word-spacing:-14.608000pt;}
.wsfd{word-spacing:-14.432000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws33{word-spacing:-11.692800pt;}
.ws34{word-spacing:-11.683840pt;}
.ws2{word-spacing:-11.200000pt;}
.wsfc{word-spacing:-10.266667pt;}
.ws35{word-spacing:-9.328000pt;}
.ws113{word-spacing:-9.152000pt;}
.ws15{word-spacing:-8.755883pt;}
.ws14{word-spacing:-8.550667pt;}
.ws16{word-spacing:-8.413856pt;}
.ws68{word-spacing:-8.400000pt;}
.ws4{word-spacing:-6.996000pt;}
.ws88{word-spacing:-6.400000pt;}
.wsa1{word-spacing:-5.960592pt;}
.wse2{word-spacing:-5.568000pt;}
.wsea{word-spacing:-4.352000pt;}
.ws3b{word-spacing:-3.200000pt;}
.ws53{word-spacing:-3.136000pt;}
.ws5b{word-spacing:-3.072000pt;}
.wscd{word-spacing:-3.008000pt;}
.wsd8{word-spacing:-2.944000pt;}
.wsb{word-spacing:-2.933333pt;}
.ws7e{word-spacing:-2.880000pt;}
.wsad{word-spacing:-2.816000pt;}
.wsc{word-spacing:-2.757333pt;}
.wsf9{word-spacing:-2.752000pt;}
.ws24{word-spacing:-2.698667pt;}
.ws97{word-spacing:-2.624000pt;}
.ws40{word-spacing:-2.560000pt;}
.ws51{word-spacing:-2.496000pt;}
.ws121{word-spacing:-2.464000pt;}
.ws58{word-spacing:-2.368000pt;}
.ws104{word-spacing:-2.288000pt;}
.ws11f{word-spacing:-2.229333pt;}
.ws87{word-spacing:-2.176000pt;}
.wsac{word-spacing:-2.112000pt;}
.ws5f{word-spacing:-2.048000pt;}
.ws107{word-spacing:-1.994667pt;}
.ws106{word-spacing:-1.936000pt;}
.wsce{word-spacing:-1.920000pt;}
.ws10a{word-spacing:-1.877333pt;}
.ws5d{word-spacing:-1.728000pt;}
.ws81{word-spacing:-1.664000pt;}
.ws90{word-spacing:-1.600000pt;}
.ws31{word-spacing:-1.584000pt;}
.wsdc{word-spacing:-1.536000pt;}
.wsc9{word-spacing:-1.488000pt;}
.wse5{word-spacing:-1.408000pt;}
.ws9e{word-spacing:-1.392000pt;}
.wsb9{word-spacing:-1.280000pt;}
.ws52{word-spacing:-1.216000pt;}
.ws1e{word-spacing:-1.173333pt;}
.ws91{word-spacing:-1.152000pt;}
.wsb0{word-spacing:-1.088000pt;}
.wsa0{word-spacing:-1.056000pt;}
.ws42{word-spacing:-1.024000pt;}
.ws11d{word-spacing:-0.997333pt;}
.wsf6{word-spacing:-0.960000pt;}
.ws11a{word-spacing:-0.938667pt;}
.wse3{word-spacing:-0.896000pt;}
.ws125{word-spacing:-0.880000pt;}
.wsf5{word-spacing:-0.864000pt;}
.wsc3{word-spacing:-0.832000pt;}
.ws22{word-spacing:-0.821333pt;}
.ws57{word-spacing:-0.816000pt;}
.wsa2{word-spacing:-0.768000pt;}
.ws27{word-spacing:-0.762667pt;}
.ws3d{word-spacing:-0.704000pt;}
.ws44{word-spacing:-0.672000pt;}
.ws21{word-spacing:-0.645333pt;}
.wsbc{word-spacing:-0.640000pt;}
.ws20{word-spacing:-0.586667pt;}
.wse7{word-spacing:-0.576000pt;}
.ws36{word-spacing:-0.512000pt;}
.ws9d{word-spacing:-0.480000pt;}
.wse{word-spacing:-0.469333pt;}
.wsb4{word-spacing:-0.448000pt;}
.wsd7{word-spacing:-0.432000pt;}
.ws4e{word-spacing:-0.384000pt;}
.ws23{word-spacing:-0.352000pt;}
.wsc4{word-spacing:-0.320000pt;}
.ws103{word-spacing:-0.293333pt;}
.wsbf{word-spacing:-0.288000pt;}
.wsf8{word-spacing:-0.256000pt;}
.ws11c{word-spacing:-0.234667pt;}
.ws69{word-spacing:-0.192000pt;}
.ws110{word-spacing:-0.176000pt;}
.ws4b{word-spacing:-0.128000pt;}
.wse9{word-spacing:-0.064000pt;}
.ws28{word-spacing:-0.058667pt;}
.ws5{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.048000pt;}
.wsd{word-spacing:0.058667pt;}
.ws47{word-spacing:0.064000pt;}
.wsd1{word-spacing:0.128000pt;}
.wsa8{word-spacing:0.144000pt;}
.ws59{word-spacing:0.192000pt;}
.ws10c{word-spacing:0.234667pt;}
.ws3a{word-spacing:0.256000pt;}
.ws9f{word-spacing:0.288000pt;}
.wsff{word-spacing:0.293333pt;}
.ws3f{word-spacing:0.320000pt;}
.ws101{word-spacing:0.352000pt;}
.ws9c{word-spacing:0.384000pt;}
.ws8e{word-spacing:0.448000pt;}
.ws122{word-spacing:0.469333pt;}
.wsb2{word-spacing:0.512000pt;}
.wse0{word-spacing:0.528000pt;}
.ws86{word-spacing:0.576000pt;}
.ws89{word-spacing:0.640000pt;}
.ws3c{word-spacing:0.704000pt;}
.wsb5{word-spacing:0.720000pt;}
.ws11b{word-spacing:0.762667pt;}
.ws108{word-spacing:0.821333pt;}
.wsb1{word-spacing:0.832000pt;}
.wsbe{word-spacing:0.896000pt;}
.wscf{word-spacing:0.912000pt;}
.ws115{word-spacing:0.938667pt;}
.ws8d{word-spacing:0.960000pt;}
.ws1f{word-spacing:0.997333pt;}
.wsd5{word-spacing:1.008000pt;}
.ws4c{word-spacing:1.024000pt;}
.ws25{word-spacing:1.056000pt;}
.ws5e{word-spacing:1.088000pt;}
.ws92{word-spacing:1.152000pt;}
.wsa5{word-spacing:1.216000pt;}
.ws45{word-spacing:1.248000pt;}
.wsdd{word-spacing:1.280000pt;}
.ws5a{word-spacing:1.344000pt;}
.ws83{word-spacing:1.408000pt;}
.wsd2{word-spacing:1.472000pt;}
.ws56{word-spacing:1.488000pt;}
.wsc0{word-spacing:1.536000pt;}
.ws46{word-spacing:1.584000pt;}
.wsf0{word-spacing:1.600000pt;}
.ws12{word-spacing:1.642667pt;}
.wsf3{word-spacing:1.664000pt;}
.ws117{word-spacing:1.760000pt;}
.ws55{word-spacing:1.776000pt;}
.ws61{word-spacing:1.792000pt;}
.ws6a{word-spacing:1.856000pt;}
.ws1c{word-spacing:1.936000pt;}
.wsd9{word-spacing:1.984000pt;}
.wsec{word-spacing:2.048000pt;}
.wse6{word-spacing:2.112000pt;}
.ws37{word-spacing:2.176000pt;}
.wsa3{word-spacing:2.240000pt;}
.wsb6{word-spacing:2.304000pt;}
.ws7c{word-spacing:2.368000pt;}
.wsc5{word-spacing:2.432000pt;}
.ws10b{word-spacing:2.464000pt;}
.wsdb{word-spacing:2.496000pt;}
.wsa{word-spacing:2.522667pt;}
.ws6d{word-spacing:2.560000pt;}
.wsc1{word-spacing:2.624000pt;}
.ws98{word-spacing:2.640000pt;}
.wsee{word-spacing:2.752000pt;}
.ws30{word-spacing:2.757333pt;}
.ws7a{word-spacing:2.784000pt;}
.ws93{word-spacing:2.816000pt;}
.ws8a{word-spacing:2.880000pt;}
.ws2a{word-spacing:2.933333pt;}
.ws4d{word-spacing:2.944000pt;}
.ws65{word-spacing:3.072000pt;}
.ws10e{word-spacing:3.109333pt;}
.wsd6{word-spacing:3.120000pt;}
.wsd0{word-spacing:3.136000pt;}
.wsae{word-spacing:3.200000pt;}
.ws8b{word-spacing:3.264000pt;}
.ws120{word-spacing:3.285333pt;}
.wsda{word-spacing:3.328000pt;}
.wscb{word-spacing:3.392000pt;}
.ws77{word-spacing:3.408000pt;}
.ws126{word-spacing:3.461333pt;}
.wsbb{word-spacing:3.520000pt;}
.ws78{word-spacing:3.552000pt;}
.ws105{word-spacing:3.578667pt;}
.ws63{word-spacing:3.584000pt;}
.wsab{word-spacing:3.648000pt;}
.ws82{word-spacing:3.776000pt;}
.ws1b{word-spacing:3.813333pt;}
.wsde{word-spacing:3.840000pt;}
.wsfe{word-spacing:3.904000pt;}
.wsf4{word-spacing:3.968000pt;}
.ws19{word-spacing:3.989333pt;}
.ws9b{word-spacing:4.032000pt;}
.ws6c{word-spacing:4.096000pt;}
.ws26{word-spacing:4.106667pt;}
.wsd3{word-spacing:4.160000pt;}
.ws2c{word-spacing:4.224000pt;}
.ws29{word-spacing:4.282667pt;}
.ws3e{word-spacing:4.288000pt;}
.ws10f{word-spacing:4.341333pt;}
.ws8c{word-spacing:4.352000pt;}
.ws74{word-spacing:4.416000pt;}
.ws100{word-spacing:4.458667pt;}
.ws4a{word-spacing:4.480000pt;}
.ws6e{word-spacing:4.544000pt;}
.wsba{word-spacing:4.608000pt;}
.ws7b{word-spacing:4.656000pt;}
.ws48{word-spacing:4.736000pt;}
.ws75{word-spacing:4.800000pt;}
.ws84{word-spacing:4.864000pt;}
.ws9a{word-spacing:4.896000pt;}
.wsf{word-spacing:4.928000pt;}
.ws38{word-spacing:4.992000pt;}
.wseb{word-spacing:5.056000pt;}
.ws13{word-spacing:5.088000pt;}
.ws8{word-spacing:5.104000pt;}
.ws79{word-spacing:5.136000pt;}
.wsf7{word-spacing:5.184000pt;}
.ws80{word-spacing:5.248000pt;}
.ws10d{word-spacing:5.338667pt;}
.ws76{word-spacing:5.376000pt;}
.wsc8{word-spacing:5.424000pt;}
.ws39{word-spacing:5.440000pt;}
.wsc7{word-spacing:5.472000pt;}
.ws1d{word-spacing:5.514667pt;}
.wsc2{word-spacing:5.568000pt;}
.wsd4{word-spacing:5.616000pt;}
.ws1a{word-spacing:5.632000pt;}
.ws7d{word-spacing:5.696000pt;}
.ws43{word-spacing:5.760000pt;}
.wsfb{word-spacing:5.824000pt;}
.ws11{word-spacing:5.866667pt;}
.ws64{word-spacing:5.888000pt;}
.ws123{word-spacing:5.925333pt;}
.ws41{word-spacing:5.952000pt;}
.ws2b{word-spacing:5.984000pt;}
.ws8f{word-spacing:6.000000pt;}
.wsaa{word-spacing:6.016000pt;}
.ws94{word-spacing:6.080000pt;}
.wsa6{word-spacing:6.096000pt;}
.ws85{word-spacing:6.208000pt;}
.ws4f{word-spacing:6.272000pt;}
.ws11e{word-spacing:6.277333pt;}
.ws96{word-spacing:6.400000pt;}
.wsfa{word-spacing:6.464000pt;}
.ws124{word-spacing:6.512000pt;}
.ws6f{word-spacing:6.528000pt;}
.ws99{word-spacing:6.576000pt;}
.ws111{word-spacing:6.629333pt;}
.ws71{word-spacing:6.656000pt;}
.ws49{word-spacing:6.784000pt;}
.wsaf{word-spacing:6.848000pt;}
.ws73{word-spacing:6.864000pt;}
.wsa4{word-spacing:6.912000pt;}
.ws109{word-spacing:6.922667pt;}
.wsf2{word-spacing:6.976000pt;}
.wsb7{word-spacing:7.040000pt;}
.ws118{word-spacing:7.098667pt;}
.wsed{word-spacing:7.168000pt;}
.wsc6{word-spacing:7.200000pt;}
.ws32{word-spacing:7.274667pt;}
.ws60{word-spacing:7.360000pt;}
.wsca{word-spacing:7.424000pt;}
.ws66{word-spacing:7.488000pt;}
.wscc{word-spacing:7.552000pt;}
.ws67{word-spacing:7.680000pt;}
.wsdf{word-spacing:7.744000pt;}
.ws5c{word-spacing:7.808000pt;}
.ws50{word-spacing:7.872000pt;}
.ws9{word-spacing:7.920000pt;}
.wsef{word-spacing:7.936000pt;}
.wse8{word-spacing:8.000000pt;}
.ws18{word-spacing:8.037333pt;}
.wsf1{word-spacing:8.064000pt;}
.ws10{word-spacing:8.096000pt;}
.wsb8{word-spacing:8.128000pt;}
.wsbd{word-spacing:8.192000pt;}
.wse1{word-spacing:8.256000pt;}
.ws95{word-spacing:8.320000pt;}
.wsb3{word-spacing:8.384000pt;}
.ws7f{word-spacing:8.512000pt;}
.ws54{word-spacing:8.576000pt;}
.ws72{word-spacing:8.704000pt;}
.ws62{word-spacing:8.768000pt;}
.ws6b{word-spacing:8.832000pt;}
.wsa9{word-spacing:8.976000pt;}
.ws119{word-spacing:10.208000pt;}
.ws6{word-spacing:10.826667pt;}
.wse4{word-spacing:10.944000pt;}
.ws7{word-spacing:11.205333pt;}
.ws70{word-spacing:11.648000pt;}
.ws2d{word-spacing:13.376000pt;}
.ws2e{word-spacing:19.594667pt;}
.ws2f{word-spacing:31.093333pt;}
.ws116{word-spacing:31.328000pt;}
._17{margin-left:-23.764267pt;}
._2{margin-left:-12.747200pt;}
._16{margin-left:-11.534400pt;}
._b{margin-left:-7.550400pt;}
._a{margin-left:-6.307733pt;}
._4{margin-left:-5.248533pt;}
._1{margin-left:-4.121600pt;}
._3{margin-left:-2.705067pt;}
._0{margin-left:-1.771200pt;}
._9{width:1.742400pt;}
._8{width:3.338667pt;}
._6{width:4.493867pt;}
._c{width:5.526933pt;}
._e{width:6.790400pt;}
._7{width:8.037867pt;}
._5{width:9.369067pt;}
._11{width:10.560000pt;}
._f{width:12.672000pt;}
._12{width:13.728000pt;}
._10{width:17.024000pt;}
._15{width:19.072000pt;}
._13{width:23.326400pt;}
._14{width:28.990400pt;}
._18{width:31.562667pt;}
._d{width:35.716800pt;}
.fs7{font-size:27.984000pt;}
.fsa{font-size:33.600000pt;}
.fs8{font-size:34.202667pt;}
.fs9{font-size:37.312000pt;}
.fsb{font-size:41.066667pt;}
.fs2{font-size:43.530667pt;}
.fs5{font-size:44.800000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:46.601600pt;}
.y24{bottom:46.790533pt;}
.y4a{bottom:61.001600pt;}
.y23{bottom:61.190533pt;}
.y20{bottom:94.122800pt;}
.y48{bottom:94.488133pt;}
.y9b{bottom:94.488267pt;}
.y76{bottom:98.484267pt;}
.y1f{bottom:108.522800pt;}
.y101{bottom:108.888133pt;}
.y9a{bottom:108.888267pt;}
.y75{bottom:108.888400pt;}
.y300{bottom:112.155867pt;}
.y47{bottom:112.228267pt;}
.y2d9{bottom:112.293067pt;}
.y13e{bottom:112.884267pt;}
.y324{bottom:113.111067pt;}
.y21c{bottom:113.176800pt;}
.y23e{bottom:113.430800pt;}
.ybe{bottom:113.602667pt;}
.y2b7{bottom:113.726533pt;}
.y296{bottom:114.148800pt;}
.y17e{bottom:123.288133pt;}
.y99{bottom:123.288267pt;}
.y74{bottom:123.288400pt;}
.y1e{bottom:126.918800pt;}
.y100{bottom:127.284133pt;}
.y2ff{bottom:129.823733pt;}
.y46{bottom:129.968400pt;}
.y2d8{bottom:130.097867pt;}
.y323{bottom:131.733867pt;}
.y21b{bottom:131.865333pt;}
.y23d{bottom:132.373600pt;}
.ybd{bottom:132.717067pt;}
.y2b6{bottom:132.964800pt;}
.y295{bottom:133.809333pt;}
.y15d{bottom:137.688133pt;}
.y98{bottom:137.688267pt;}
.y73{bottom:137.688400pt;}
.y1a0{bottom:141.684133pt;}
.y1fa{bottom:141.684267pt;}
.y2fe{bottom:147.491467pt;}
.y45{bottom:147.708533pt;}
.y2d7{bottom:147.902667pt;}
.y322{bottom:150.356667pt;}
.y21a{bottom:150.554133pt;}
.y23c{bottom:151.316267pt;}
.ybc{bottom:151.831467pt;}
.y15c{bottom:152.088133pt;}
.y97{bottom:152.088267pt;}
.y72{bottom:152.088400pt;}
.y2b5{bottom:152.203200pt;}
.y294{bottom:153.469867pt;}
.y17d{bottom:156.084133pt;}
.y121{bottom:156.084267pt;}
.yff{bottom:160.365333pt;}
.y2fd{bottom:165.159200pt;}
.y44{bottom:165.448667pt;}
.y2d6{bottom:165.707600pt;}
.y1c0{bottom:166.488133pt;}
.y96{bottom:166.488267pt;}
.y71{bottom:166.488400pt;}
.y321{bottom:168.979467pt;}
.y219{bottom:169.242667pt;}
.y23b{bottom:170.258933pt;}
.y273{bottom:170.484133pt;}
.y17f{bottom:170.484267pt;}
.ybb{bottom:170.945867pt;}
.y2b4{bottom:171.441467pt;}
.y293{bottom:173.130400pt;}
.y19f{bottom:174.765333pt;}
.yfe{bottom:179.066933pt;}
.y95{bottom:180.888267pt;}
.y70{bottom:180.888400pt;}
.y2fc{bottom:182.827067pt;}
.y43{bottom:183.188800pt;}
.y2d5{bottom:183.512400pt;}
.y1bf{bottom:184.884133pt;}
.y1f9{bottom:184.884267pt;}
.y1d{bottom:187.253333pt;}
.y320{bottom:187.602267pt;}
.y218{bottom:187.931333pt;}
.y17c{bottom:189.165200pt;}
.y15b{bottom:189.165333pt;}
.y23a{bottom:189.201733pt;}
.yba{bottom:190.060267pt;}
.y2b3{bottom:190.679867pt;}
.y292{bottom:192.790933pt;}
.y19e{bottom:193.760400pt;}
.y1be{bottom:195.288133pt;}
.ydf{bottom:195.288267pt;}
.y120{bottom:195.288400pt;}
.yfd{bottom:197.768533pt;}
.y94{bottom:199.284267pt;}
.y6f{bottom:199.284400pt;}
.y2fb{bottom:200.494800pt;}
.y42{bottom:200.928933pt;}
.y272{bottom:203.565333pt;}
.y31f{bottom:206.225067pt;}
.y217{bottom:206.620000pt;}
.y239{bottom:208.144400pt;}
.y15a{bottom:208.156800pt;}
.y17b{bottom:208.308533pt;}
.yb9{bottom:209.174667pt;}
.y1bd{bottom:209.688133pt;}
.yde{bottom:209.688267pt;}
.y11f{bottom:209.688400pt;}
.y2b2{bottom:209.918133pt;}
.y1c{bottom:212.145733pt;}
.y291{bottom:212.451467pt;}
.y19d{bottom:212.755467pt;}
.y1db{bottom:213.684267pt;}
.y2d4{bottom:216.435333pt;}
.yfc{bottom:216.470133pt;}
.y1f8{bottom:217.965467pt;}
.y2fa{bottom:218.162533pt;}
.y271{bottom:222.244133pt;}
.y1bc{bottom:224.088133pt;}
.ydd{bottom:224.088267pt;}
.y11e{bottom:224.088400pt;}
.y31e{bottom:224.847733pt;}
.y216{bottom:225.308667pt;}
.y238{bottom:227.087200pt;}
.y159{bottom:227.148400pt;}
.y17a{bottom:227.451867pt;}
.y13d{bottom:228.084267pt;}
.yb8{bottom:228.289200pt;}
.y2b1{bottom:229.156400pt;}
.y1b{bottom:229.479067pt;}
.y19c{bottom:231.750533pt;}
.y290{bottom:232.112000pt;}
.y93{bottom:232.365333pt;}
.y6e{bottom:232.365600pt;}
.y41{bottom:233.787200pt;}
.yfb{bottom:235.171733pt;}
.y2f9{bottom:235.830400pt;}
.y1f7{bottom:237.435867pt;}
.y1bb{bottom:238.488133pt;}
.ydc{bottom:238.488267pt;}
.y11d{bottom:238.488400pt;}
.y270{bottom:240.922800pt;}
.y31d{bottom:243.470533pt;}
.y215{bottom:243.997333pt;}
.y237{bottom:246.029867pt;}
.y158{bottom:246.139867pt;}
.y179{bottom:246.595067pt;}
.y1da{bottom:246.765467pt;}
.yb7{bottom:247.403600pt;}
.y2b0{bottom:248.394800pt;}
.y19b{bottom:250.745467pt;}
.y40{bottom:251.260667pt;}
.y92{bottom:251.339200pt;}
.y28f{bottom:251.772533pt;}
.y6d{bottom:251.814400pt;}
.y1ba{bottom:252.888133pt;}
.ydb{bottom:252.888267pt;}
.y11c{bottom:252.888400pt;}
.y2f8{bottom:253.498133pt;}
.yfa{bottom:253.873467pt;}
.y2d3{bottom:254.204533pt;}
.y1a{bottom:254.371467pt;}
.y1f6{bottom:256.906267pt;}
.y26f{bottom:259.601600pt;}
.y13c{bottom:261.165467pt;}
.y31c{bottom:262.093333pt;}
.y214{bottom:262.686000pt;}
.y253{bottom:264.972667pt;}
.y157{bottom:265.131333pt;}
.y178{bottom:265.738400pt;}
.y1d9{bottom:266.066400pt;}
.yb6{bottom:266.518000pt;}
.y1b9{bottom:267.288133pt;}
.y11b{bottom:267.288400pt;}
.y2af{bottom:267.633067pt;}
.y3f{bottom:268.734133pt;}
.y19a{bottom:269.740667pt;}
.y91{bottom:270.313067pt;}
.y2f7{bottom:271.166000pt;}
.y6c{bottom:271.263200pt;}
.yda{bottom:271.284267pt;}
.y28e{bottom:271.433067pt;}
.y19{bottom:271.704800pt;}
.yf9{bottom:272.575067pt;}
.y2d2{bottom:273.076000pt;}
.y236{bottom:276.311200pt;}
.y1f5{bottom:276.376667pt;}
.y26e{bottom:278.280400pt;}
.y13b{bottom:280.478133pt;}
.y31b{bottom:280.716133pt;}
.y213{bottom:281.374667pt;}
.y1b8{bottom:281.688133pt;}
.yd9{bottom:281.688267pt;}
.y11a{bottom:281.688400pt;}
.y252{bottom:283.915333pt;}
.y156{bottom:284.122933pt;}
.y177{bottom:284.881600pt;}
.y1d8{bottom:285.367467pt;}
.yb5{bottom:285.632400pt;}
.y3e{bottom:286.207600pt;}
.y2ae{bottom:286.871467pt;}
.y199{bottom:288.735600pt;}
.y2f6{bottom:288.833733pt;}
.y18{bottom:289.038133pt;}
.y90{bottom:289.286933pt;}
.y6b{bottom:290.712000pt;}
.y28d{bottom:291.093600pt;}
.yf8{bottom:291.276667pt;}
.y2d1{bottom:291.947600pt;}
.y274{bottom:295.254000pt;}
.y1f4{bottom:295.847067pt;}
.yd8{bottom:296.088267pt;}
.y26d{bottom:296.959200pt;}
.y31a{bottom:299.338933pt;}
.y13a{bottom:299.790667pt;}
.y212{bottom:300.063333pt;}
.y1b7{bottom:300.084133pt;}
.y119{bottom:300.084400pt;}
.y251{bottom:302.858133pt;}
.y3d{bottom:303.681200pt;}
.y176{bottom:304.024933pt;}
.y1d7{bottom:304.668400pt;}
.yb4{bottom:304.746800pt;}
.y2ad{bottom:306.109733pt;}
.y17{bottom:306.371467pt;}
.y2f5{bottom:306.501467pt;}
.y198{bottom:307.730667pt;}
.y8f{bottom:308.260800pt;}
.y235{bottom:309.038800pt;}
.yf7{bottom:309.978267pt;}
.y6a{bottom:310.160800pt;}
.yd7{bottom:310.488267pt;}
.y28c{bottom:310.754133pt;}
.y2d0{bottom:310.819067pt;}
.y155{bottom:314.453067pt;}
.y1f3{bottom:315.317467pt;}
.y26c{bottom:315.637867pt;}
.y319{bottom:317.961733pt;}
.y211{bottom:318.752000pt;}
.y139{bottom:319.103333pt;}
.y3c{bottom:321.154667pt;}
.y250{bottom:321.800800pt;}
.y175{bottom:323.168267pt;}
.y16{bottom:323.704800pt;}
.yb3{bottom:323.861200pt;}
.y1d6{bottom:323.969467pt;}
.y2f4{bottom:324.169333pt;}
.yd6{bottom:324.888267pt;}
.y2ac{bottom:325.348133pt;}
.y197{bottom:326.725733pt;}
.y8e{bottom:327.234667pt;}
.y234{bottom:327.981467pt;}
.yf6{bottom:328.679867pt;}
.y69{bottom:329.609733pt;}
.y2cf{bottom:329.690533pt;}
.y28b{bottom:330.414667pt;}
.y154{bottom:332.111200pt;}
.y1b6{bottom:333.165333pt;}
.y118{bottom:333.165600pt;}
.y26b{bottom:334.316667pt;}
.y1f2{bottom:334.787867pt;}
.y318{bottom:336.584533pt;}
.y210{bottom:337.440667pt;}
.y138{bottom:338.416000pt;}
.yd5{bottom:339.288267pt;}
.y24f{bottom:340.743600pt;}
.y15{bottom:341.038133pt;}
.y2f3{bottom:341.837067pt;}
.y174{bottom:342.311467pt;}
.yb2{bottom:342.975600pt;}
.y1d5{bottom:343.270400pt;}
.y2ab{bottom:344.586400pt;}
.y196{bottom:345.720800pt;}
.y3b{bottom:346.187200pt;}
.y8d{bottom:346.208400pt;}
.y233{bottom:346.924133pt;}
.y2ce{bottom:348.562133pt;}
.y68{bottom:349.058533pt;}
.y28a{bottom:350.075200pt;}
.y1b5{bottom:352.452533pt;}
.y117{bottom:352.706533pt;}
.y26a{bottom:352.995467pt;}
.yd4{bottom:353.688267pt;}
.y1f1{bottom:354.258267pt;}
.y317{bottom:355.207333pt;}
.y20f{bottom:356.129333pt;}
.y137{bottom:357.728667pt;}
.y14{bottom:358.371467pt;}
.yf5{bottom:358.720000pt;}
.y2f2{bottom:359.504800pt;}
.y24e{bottom:359.686267pt;}
.y173{bottom:361.454800pt;}
.yb1{bottom:362.090000pt;}
.y1d4{bottom:362.571467pt;}
.y2aa{bottom:363.824800pt;}
.y195{bottom:364.715867pt;}
.y153{bottom:364.887467pt;}
.y8c{bottom:365.182267pt;}
.y232{bottom:365.866933pt;}
.y2cd{bottom:367.433600pt;}
.yd3{bottom:368.088267pt;}
.y67{bottom:368.507333pt;}
.y289{bottom:369.735733pt;}
.y3a{bottom:371.219733pt;}
.y269{bottom:371.674133pt;}
.y1b4{bottom:371.739733pt;}
.y116{bottom:372.247467pt;}
.y1f0{bottom:373.728667pt;}
.y316{bottom:373.830133pt;}
.y20e{bottom:374.818000pt;}
.y13{bottom:375.704800pt;}
.yf4{bottom:376.088400pt;}
.y136{bottom:377.041333pt;}
.y2f1{bottom:377.172667pt;}
.y24d{bottom:378.629067pt;}
.y172{bottom:380.598000pt;}
.yb0{bottom:381.204400pt;}
.y1d3{bottom:381.872400pt;}
.yd2{bottom:382.488267pt;}
.y2a9{bottom:383.063067pt;}
.y194{bottom:383.710933pt;}
.y8b{bottom:384.156133pt;}
.y231{bottom:384.809600pt;}
.y2cc{bottom:386.305200pt;}
.y66{bottom:387.956133pt;}
.y39{bottom:388.693200pt;}
.y288{bottom:389.396267pt;}
.y268{bottom:390.352933pt;}
.y1b3{bottom:391.026933pt;}
.y115{bottom:391.788400pt;}
.y315{bottom:392.452933pt;}
.y12{bottom:393.038133pt;}
.y1ef{bottom:393.199067pt;}
.y20d{bottom:393.506667pt;}
.y2f0{bottom:394.840400pt;}
.y135{bottom:396.354000pt;}
.yd1{bottom:396.888267pt;}
.y24c{bottom:397.571733pt;}
.y171{bottom:399.741333pt;}
.yaf{bottom:400.318800pt;}
.y1d2{bottom:401.173467pt;}
.y2a8{bottom:402.301333pt;}
.y193{bottom:402.706000pt;}
.y152{bottom:402.776667pt;}
.y8a{bottom:403.130000pt;}
.y230{bottom:403.752400pt;}
.y2cb{bottom:405.176667pt;}
.y65{bottom:407.404933pt;}
.yf3{bottom:408.574800pt;}
.y267{bottom:409.031733pt;}
.y287{bottom:409.056800pt;}
.y1b2{bottom:410.314133pt;}
.y11{bottom:410.371467pt;}
.y314{bottom:411.075733pt;}
.y114{bottom:411.329333pt;}
.y2ef{bottom:412.508133pt;}
.y1ee{bottom:412.669467pt;}
.y38{bottom:413.725733pt;}
.yd0{bottom:415.284267pt;}
.y134{bottom:415.666667pt;}
.y24b{bottom:416.514533pt;}
.y170{bottom:418.884667pt;}
.yae{bottom:419.433333pt;}
.y1d1{bottom:420.474400pt;}
.y192{bottom:421.701067pt;}
.y151{bottom:421.768133pt;}
.y89{bottom:422.103867pt;}
.y22f{bottom:422.695067pt;}
.y2ca{bottom:424.048133pt;}
.y64{bottom:426.853733pt;}
.yf2{bottom:427.276267pt;}
.y20c{bottom:427.313467pt;}
.y10{bottom:427.704800pt;}
.y266{bottom:427.710533pt;}
.y286{bottom:428.717467pt;}
.y1b1{bottom:429.601333pt;}
.y313{bottom:429.698533pt;}
.y2ee{bottom:430.176000pt;}
.y113{bottom:430.870267pt;}
.y37{bottom:431.199200pt;}
.y1ed{bottom:432.139867pt;}
.y133{bottom:434.979333pt;}
.y24a{bottom:435.457200pt;}
.y2a7{bottom:436.657867pt;}
.y16f{bottom:438.027867pt;}
.yad{bottom:438.547733pt;}
.y1d0{bottom:439.775333pt;}
.y191{bottom:440.696133pt;}
.y150{bottom:440.759733pt;}
.y88{bottom:441.077733pt;}
.y22e{bottom:441.637867pt;}
.y2c9{bottom:442.919733pt;}
.yf{bottom:445.038133pt;}
.yf1{bottom:445.978000pt;}
.y20b{bottom:446.002133pt;}
.y63{bottom:446.302533pt;}
.y265{bottom:446.389333pt;}
.y2ed{bottom:447.843733pt;}
.y312{bottom:448.321333pt;}
.ycf{bottom:448.365333pt;}
.y285{bottom:448.377867pt;}
.y36{bottom:448.672667pt;}
.y1b0{bottom:448.888533pt;}
.y112{bottom:450.411200pt;}
.y1ec{bottom:451.610267pt;}
.y132{bottom:454.292000pt;}
.y249{bottom:454.399867pt;}
.y16e{bottom:457.171200pt;}
.yac{bottom:457.662133pt;}
.y1cf{bottom:459.076400pt;}
.y190{bottom:459.691067pt;}
.y14f{bottom:459.751200pt;}
.y87{bottom:460.051467pt;}
.y22d{bottom:460.580533pt;}
.y2c8{bottom:461.791200pt;}
.yf0{bottom:464.679600pt;}
.y264{bottom:465.068000pt;}
.y2ec{bottom:465.511467pt;}
.y62{bottom:465.751333pt;}
.y35{bottom:466.146133pt;}
.y311{bottom:466.944133pt;}
.yce{bottom:468.026667pt;}
.y284{bottom:468.038533pt;}
.y1af{bottom:468.175733pt;}
.y111{bottom:469.952133pt;}
.y1eb{bottom:471.080667pt;}
.y248{bottom:473.342667pt;}
.y131{bottom:473.604667pt;}
.y2a6{bottom:474.793733pt;}
.y16d{bottom:476.314400pt;}
.yab{bottom:476.776533pt;}
.ye{bottom:477.489467pt;}
.y1ce{bottom:478.377333pt;}
.y18f{bottom:478.686133pt;}
.y14e{bottom:478.742800pt;}
.y86{bottom:479.025333pt;}
.y22c{bottom:479.523333pt;}
.y2c7{bottom:480.662800pt;}
.y2eb{bottom:483.179333pt;}
.yef{bottom:483.381200pt;}
.y20a{bottom:483.588400pt;}
.y34{bottom:483.619600pt;}
.y263{bottom:483.746800pt;}
.y61{bottom:485.200133pt;}
.y310{bottom:485.566933pt;}
.y1ae{bottom:487.462933pt;}
.ycd{bottom:487.688000pt;}
.y283{bottom:487.699067pt;}
.y110{bottom:489.493067pt;}
.y1ea{bottom:490.551067pt;}
.y247{bottom:492.285467pt;}
.y130{bottom:492.917333pt;}
.y2a5{bottom:494.032133pt;}
.y16c{bottom:495.457733pt;}
.yaa{bottom:495.890933pt;}
.y1cd{bottom:497.678400pt;}
.y18e{bottom:497.681200pt;}
.y14d{bottom:497.734267pt;}
.y85{bottom:497.999200pt;}
.y22b{bottom:498.466000pt;}
.y2c6{bottom:499.534267pt;}
.y2ea{bottom:500.847067pt;}
.y33{bottom:501.093067pt;}
.yee{bottom:502.082800pt;}
.y209{bottom:502.277067pt;}
.y262{bottom:502.425600pt;}
.y30f{bottom:504.189733pt;}
.y60{bottom:504.649067pt;}
.y1ad{bottom:506.750133pt;}
.ycc{bottom:507.349200pt;}
.y282{bottom:507.359600pt;}
.y10f{bottom:509.034000pt;}
.yd{bottom:509.940933pt;}
.y1e9{bottom:510.021467pt;}
.y246{bottom:511.228133pt;}
.y12f{bottom:512.229867pt;}
.y2a4{bottom:513.270400pt;}
.y16b{bottom:514.600933pt;}
.ya9{bottom:515.005333pt;}
.y18d{bottom:516.676267pt;}
.y14c{bottom:516.725733pt;}
.y84{bottom:516.973067pt;}
.y1cc{bottom:516.979333pt;}
.y22a{bottom:517.408667pt;}
.y2c5{bottom:518.405733pt;}
.y2e9{bottom:518.514800pt;}
.y32{bottom:518.566533pt;}
.yed{bottom:520.784400pt;}
.y208{bottom:520.965733pt;}
.y261{bottom:521.104267pt;}
.y30e{bottom:522.812533pt;}
.y5f{bottom:524.097867pt;}
.yc{bottom:525.940933pt;}
.y1ac{bottom:526.037333pt;}
.ycb{bottom:527.010533pt;}
.y281{bottom:527.020133pt;}
.y10e{bottom:528.574933pt;}
.y1e8{bottom:529.491867pt;}
.y245{bottom:530.170800pt;}
.y12e{bottom:531.542533pt;}
.y2a3{bottom:532.508800pt;}
.y16a{bottom:533.744267pt;}
.ya8{bottom:534.119733pt;}
.y18c{bottom:535.671333pt;}
.y14b{bottom:535.717333pt;}
.y83{bottom:535.946933pt;}
.y31{bottom:536.040000pt;}
.y2e8{bottom:536.182667pt;}
.y1cb{bottom:536.280400pt;}
.y229{bottom:536.351467pt;}
.y2c4{bottom:537.277200pt;}
.yec{bottom:539.486000pt;}
.y207{bottom:539.654400pt;}
.y260{bottom:539.783067pt;}
.y30d{bottom:541.435200pt;}
.y5e{bottom:543.546667pt;}
.y1ab{bottom:545.324533pt;}
.yca{bottom:546.671733pt;}
.y280{bottom:546.680667pt;}
.y10d{bottom:548.115867pt;}
.y1e7{bottom:548.962267pt;}
.y244{bottom:549.113600pt;}
.y12d{bottom:550.855200pt;}
.y2a2{bottom:551.747067pt;}
.y169{bottom:552.887600pt;}
.ya7{bottom:553.234133pt;}
.y30{bottom:553.513467pt;}
.y2e7{bottom:553.850400pt;}
.y18b{bottom:554.666400pt;}
.y14a{bottom:554.708800pt;}
.y82{bottom:554.920800pt;}
.y228{bottom:555.294133pt;}
.y1ca{bottom:555.581333pt;}
.y2c3{bottom:556.148800pt;}
.yeb{bottom:558.187600pt;}
.y206{bottom:558.343067pt;}
.y25f{bottom:558.461867pt;}
.y30c{bottom:560.058000pt;}
.y5d{bottom:562.995467pt;}
.y1aa{bottom:564.611733pt;}
.yc9{bottom:566.333067pt;}
.y27f{bottom:566.341200pt;}
.y10c{bottom:567.656800pt;}
.y243{bottom:568.056267pt;}
.y1e6{bottom:568.432667pt;}
.y12c{bottom:570.167867pt;}
.y2a1{bottom:570.985467pt;}
.y2f{bottom:570.987067pt;}
.y2e6{bottom:571.518133pt;}
.y168{bottom:572.030800pt;}
.ya6{bottom:572.348533pt;}
.y18a{bottom:573.661467pt;}
.y149{bottom:573.700267pt;}
.y81{bottom:573.894667pt;}
.y227{bottom:574.236933pt;}
.y1c9{bottom:574.882267pt;}
.y2c2{bottom:575.020400pt;}
.yea{bottom:576.889200pt;}
.y205{bottom:577.031600pt;}
.y25e{bottom:577.140667pt;}
.y30b{bottom:578.680800pt;}
.y5c{bottom:582.444267pt;}
.y1a9{bottom:583.898933pt;}
.yc8{bottom:585.994400pt;}
.y27e{bottom:586.001733pt;}
.y242{bottom:586.999067pt;}
.y10b{bottom:587.197733pt;}
.y1e5{bottom:587.903067pt;}
.y2e{bottom:588.460533pt;}
.y2e5{bottom:589.186000pt;}
.y12b{bottom:589.480533pt;}
.y2a0{bottom:590.223733pt;}
.y167{bottom:591.174133pt;}
.ya5{bottom:591.462933pt;}
.y189{bottom:592.656533pt;}
.y148{bottom:592.691867pt;}
.y80{bottom:592.868533pt;}
.y226{bottom:593.179600pt;}
.y2c1{bottom:593.891867pt;}
.y1c8{bottom:594.183333pt;}
.ye9{bottom:595.590933pt;}
.y204{bottom:595.720400pt;}
.y25d{bottom:595.819333pt;}
.y30a{bottom:597.303600pt;}
.y5b{bottom:601.893200pt;}
.y1a8{bottom:603.186133pt;}
.yc7{bottom:605.655600pt;}
.y27d{bottom:605.662267pt;}
.y2d{bottom:605.934000pt;}
.y241{bottom:605.941733pt;}
.y10a{bottom:606.738667pt;}
.y2e4{bottom:606.853733pt;}
.y1e4{bottom:607.373467pt;}
.y12a{bottom:608.793200pt;}
.y29f{bottom:609.462133pt;}
.y166{bottom:610.317333pt;}
.ya4{bottom:610.577333pt;}
.y188{bottom:611.651467pt;}
.y147{bottom:611.683333pt;}
.y7f{bottom:611.842267pt;}
.y225{bottom:612.122400pt;}
.y2c0{bottom:612.763333pt;}
.y1c7{bottom:613.484267pt;}
.ye8{bottom:614.292533pt;}
.y203{bottom:614.409067pt;}
.y25c{bottom:614.498133pt;}
.y309{bottom:615.926400pt;}
.y5a{bottom:621.342000pt;}
.yb{bottom:621.942267pt;}
.y2c{bottom:623.407467pt;}
.y2e3{bottom:624.521467pt;}
.y240{bottom:624.884533pt;}
.yc6{bottom:625.316933pt;}
.y27c{bottom:625.322800pt;}
.y109{bottom:626.279600pt;}
.y1e3{bottom:626.843867pt;}
.y129{bottom:628.105867pt;}
.y29e{bottom:628.700400pt;}
.y165{bottom:629.460667pt;}
.ya3{bottom:629.691867pt;}
.y187{bottom:630.646667pt;}
.y146{bottom:630.674933pt;}
.y7e{bottom:630.816133pt;}
.y224{bottom:631.065067pt;}
.y2bf{bottom:631.634933pt;}
.ye7{bottom:632.994133pt;}
.y202{bottom:633.097600pt;}
.y25b{bottom:633.176933pt;}
.y1a7{bottom:633.811867pt;}
.y308{bottom:634.549200pt;}
.ya{bottom:637.942267pt;}
.y59{bottom:640.790800pt;}
.y2e2{bottom:642.189333pt;}
.yc5{bottom:644.978133pt;}
.y27b{bottom:644.983333pt;}
.y108{bottom:645.820533pt;}
.y1e2{bottom:646.314267pt;}
.y128{bottom:647.418533pt;}
.y1c6{bottom:647.903467pt;}
.y29d{bottom:647.938667pt;}
.y164{bottom:648.604000pt;}
.ya2{bottom:648.806267pt;}
.y186{bottom:649.641600pt;}
.y145{bottom:649.666400pt;}
.y7d{bottom:649.790000pt;}
.y223{bottom:650.007867pt;}
.y2be{bottom:650.506400pt;}
.ye6{bottom:651.695733pt;}
.y201{bottom:651.786267pt;}
.y25a{bottom:651.855733pt;}
.y307{bottom:653.172000pt;}
.y9{bottom:653.942267pt;}
.y23f{bottom:655.165733pt;}
.y2b{bottom:655.999067pt;}
.y2e1{bottom:659.857067pt;}
.y58{bottom:660.239600pt;}
.y52{bottom:660.317200pt;}
.yc4{bottom:664.639467pt;}
.y27a{bottom:664.643867pt;}
.y107{bottom:665.361467pt;}
.y1e1{bottom:665.784667pt;}
.y127{bottom:666.731200pt;}
.y1a6{bottom:666.883867pt;}
.y29c{bottom:667.177067pt;}
.y1c5{bottom:667.204400pt;}
.y163{bottom:667.747200pt;}
.ya1{bottom:667.920667pt;}
.y185{bottom:668.636667pt;}
.y144{bottom:668.657867pt;}
.y7c{bottom:668.763867pt;}
.y222{bottom:668.950533pt;}
.y2bd{bottom:669.377867pt;}
.y8{bottom:669.942267pt;}
.ye5{bottom:670.397333pt;}
.y200{bottom:670.474933pt;}
.y259{bottom:670.534400pt;}
.y306{bottom:671.794800pt;}
.y2e0{bottom:677.524800pt;}
.y51{bottom:677.917200pt;}
.y57{bottom:679.688400pt;}
.yc3{bottom:684.300667pt;}
.y279{bottom:684.304400pt;}
.y106{bottom:684.902400pt;}
.y1e0{bottom:685.255067pt;}
.y126{bottom:686.043733pt;}
.y1a5{bottom:686.171067pt;}
.y29b{bottom:686.415333pt;}
.y162{bottom:686.890533pt;}
.ya0{bottom:687.034933pt;}
.y184{bottom:687.631733pt;}
.y143{bottom:687.649467pt;}
.y7b{bottom:687.737733pt;}
.y221{bottom:687.893333pt;}
.y2bc{bottom:688.249467pt;}
.ye4{bottom:689.098933pt;}
.y1ff{bottom:689.163600pt;}
.y258{bottom:689.213200pt;}
.y305{bottom:690.417600pt;}
.y2df{bottom:695.192667pt;}
.y50{bottom:695.517200pt;}
.y2a{bottom:696.149600pt;}
.y56{bottom:699.137200pt;}
.yc2{bottom:703.962000pt;}
.y278{bottom:703.964800pt;}
.y105{bottom:704.443333pt;}
.y1df{bottom:704.725467pt;}
.y125{bottom:705.356400pt;}
.y1c4{bottom:705.403067pt;}
.y1a4{bottom:705.458267pt;}
.y29a{bottom:705.653733pt;}
.y161{bottom:706.033867pt;}
.y9f{bottom:706.149333pt;}
.y183{bottom:706.626800pt;}
.y142{bottom:706.640933pt;}
.y7a{bottom:706.711600pt;}
.y220{bottom:706.836000pt;}
.y2bb{bottom:707.120933pt;}
.ye3{bottom:707.800533pt;}
.y1fe{bottom:707.852267pt;}
.y257{bottom:707.891867pt;}
.y304{bottom:709.040400pt;}
.y2de{bottom:712.860400pt;}
.y4f{bottom:713.117200pt;}
.y328{bottom:713.131467pt;}
.y29{bottom:713.623200pt;}
.y7{bottom:715.598933pt;}
.yc1{bottom:723.623333pt;}
.y277{bottom:723.625467pt;}
.y104{bottom:723.984267pt;}
.y1de{bottom:724.195867pt;}
.y124{bottom:724.669067pt;}
.y1c3{bottom:724.704000pt;}
.y1a3{bottom:724.745467pt;}
.y299{bottom:724.892000pt;}
.y160{bottom:725.177200pt;}
.y9e{bottom:725.263733pt;}
.y182{bottom:725.621867pt;}
.y141{bottom:725.632533pt;}
.y79{bottom:725.685467pt;}
.y21f{bottom:725.778667pt;}
.y2ba{bottom:725.992400pt;}
.ye2{bottom:726.502133pt;}
.y1fd{bottom:726.540933pt;}
.y256{bottom:726.570667pt;}
.y303{bottom:727.663067pt;}
.y55{bottom:729.924667pt;}
.y2dd{bottom:730.528133pt;}
.y4e{bottom:730.717200pt;}
.y327{bottom:730.731467pt;}
.y28{bottom:731.096800pt;}
.y6{bottom:733.198933pt;}
.yc0{bottom:743.284533pt;}
.y276{bottom:743.286000pt;}
.y103{bottom:743.525200pt;}
.y1dd{bottom:743.666133pt;}
.y123{bottom:743.981733pt;}
.y1c2{bottom:744.005067pt;}
.y1a2{bottom:744.032667pt;}
.y298{bottom:744.130400pt;}
.y15f{bottom:744.320533pt;}
.y9d{bottom:744.378133pt;}
.y181{bottom:744.616933pt;}
.y140{bottom:744.624000pt;}
.y78{bottom:744.659333pt;}
.y21e{bottom:744.721467pt;}
.y2b9{bottom:744.864000pt;}
.ye1{bottom:745.203733pt;}
.y1fc{bottom:745.229600pt;}
.y255{bottom:745.249467pt;}
.y302{bottom:746.285867pt;}
.y2dc{bottom:748.196000pt;}
.y4d{bottom:748.317200pt;}
.y326{bottom:748.331467pt;}
.y27{bottom:748.570267pt;}
.y5{bottom:758.358133pt;}
.ybf{bottom:762.945733pt;}
.y275{bottom:762.946400pt;}
.y102{bottom:763.066133pt;}
.y1dc{bottom:763.136667pt;}
.y54{bottom:763.158267pt;}
.y122{bottom:763.294400pt;}
.y1c1{bottom:763.306000pt;}
.y1a1{bottom:763.319867pt;}
.y297{bottom:763.368667pt;}
.y15e{bottom:763.463733pt;}
.y9c{bottom:763.492533pt;}
.y180{bottom:763.612000pt;}
.y13f{bottom:763.615467pt;}
.y77{bottom:763.633200pt;}
.y21d{bottom:763.664267pt;}
.y2b8{bottom:763.735467pt;}
.ye0{bottom:763.905467pt;}
.y1fb{bottom:763.918400pt;}
.y254{bottom:763.928267pt;}
.y301{bottom:764.908667pt;}
.y2db{bottom:765.863733pt;}
.y4c{bottom:765.917200pt;}
.y325{bottom:765.931467pt;}
.y26{bottom:766.043733pt;}
.y4{bottom:780.758000pt;}
.y53{bottom:782.607067pt;}
.y25{bottom:783.517200pt;}
.y2da{bottom:783.531467pt;}
.y3{bottom:822.689733pt;}
.y2{bottom:837.089733pt;}
.y49{bottom:850.975600pt;}
.y22{bottom:850.975733pt;}
.y1{bottom:851.489733pt;}
.y21{bottom:851.900000pt;}
.hb{height:26.133188pt;}
.he{height:26.250375pt;}
.hc{height:39.309375pt;}
.ha{height:40.734375pt;}
.h3{height:42.117188pt;}
.h2{height:42.234375pt;}
.hd{height:44.437500pt;}
.h7{height:46.796875pt;}
.h5{height:51.476562pt;}
.h9{height:51.619792pt;}
.h6{height:56.156250pt;}
.h8{height:56.312500pt;}
.h4{height:65.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:103.937067pt;}
.xe{left:123.465467pt;}
.xf{left:126.614133pt;}
.x7{left:130.393733pt;}
.x10{left:134.173200pt;}
.xc{left:149.291333pt;}
.xa{left:211.806667pt;}
.x8{left:212.844800pt;}
.x9{left:244.273467pt;}
.xb{left:283.623067pt;}
.x6{left:284.822400pt;}
.x2{left:288.293333pt;}
.x3{left:303.068400pt;}
.x5{left:329.585333pt;}
.x4{left:417.130800pt;}
.xd{left:518.582667pt;}
}




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