
    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_c9081ffef8c2a5350a9cb44f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_e5c22f402d3c98024cf86ca6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_f62188322eb0aa174d0b823c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_c3b96ddbb5d1adb3992b611c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_1a0943b7d08362c5e07ced81.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_32db1330f253eb66ec837383.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_ea0e072b18fe894a259c13ac.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.281250;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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:-50.760000px;}
.v1{vertical-align:-1.242000px;}
.v0{vertical-align:0.000000px;}
.ls7b{letter-spacing:-6.336000px;}
.lse{letter-spacing:-5.564160px;}
.ls6f{letter-spacing:-3.384000px;}
.ls4c{letter-spacing:-2.700000px;}
.ls7e{letter-spacing:-2.656080px;}
.ls31{letter-spacing:-2.520000px;}
.ls5e{letter-spacing:-2.268000px;}
.ls51{letter-spacing:-2.239920px;}
.ls74{letter-spacing:-2.106720px;}
.ls61{letter-spacing:-1.800000px;}
.ls35{letter-spacing:-1.512000px;}
.ls46{letter-spacing:-1.404000px;}
.ls32{letter-spacing:-1.368000px;}
.ls30{letter-spacing:-1.322640px;}
.ls50{letter-spacing:-1.317600px;}
.ls54{letter-spacing:-1.296000px;}
.lsc{letter-spacing:-1.263600px;}
.ls2f{letter-spacing:-1.202400px;}
.ls80{letter-spacing:-1.166400px;}
.ls41{letter-spacing:-1.082160px;}
.ls37{letter-spacing:-1.080000px;}
.ls55{letter-spacing:-1.054080px;}
.ls5f{letter-spacing:-1.053360px;}
.ls36{letter-spacing:-0.936000px;}
.ls86{letter-spacing:-0.927360px;}
.ls6b{letter-spacing:-0.864000px;}
.ls81{letter-spacing:-0.855360px;}
.ls43{letter-spacing:-0.792000px;}
.ls78{letter-spacing:-0.790560px;}
.ls60{letter-spacing:-0.766080px;}
.ls52{letter-spacing:-0.756000px;}
.ls34{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.601200px;}
.ls8c{letter-spacing:-0.596160px;}
.ls67{letter-spacing:-0.589680px;}
.ls33{letter-spacing:-0.576000px;}
.ls88{letter-spacing:-0.529920px;}
.ls7a{letter-spacing:-0.527040px;}
.ls44{letter-spacing:-0.504000px;}
.ls66{letter-spacing:-0.478800px;}
.ls83{letter-spacing:-0.463680px;}
.ls53{letter-spacing:-0.432000px;}
.ls18{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.336960px;}
.ls5{letter-spacing:-0.335520px;}
.ls87{letter-spacing:-0.331200px;}
.ls76{letter-spacing:-0.324000px;}
.ls75{letter-spacing:-0.288000px;}
.ls57{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.264960px;}
.lsa{letter-spacing:-0.252720px;}
.ls1d{letter-spacing:-0.216000px;}
.ls84{letter-spacing:-0.198720px;}
.lsb{letter-spacing:-0.168480px;}
.ls6e{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.144000px;}
.ls85{letter-spacing:-0.132480px;}
.ls7{letter-spacing:-0.120240px;}
.ls62{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls82{letter-spacing:-0.066240px;}
.ls63{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls56{letter-spacing:0.054000px;}
.ls65{letter-spacing:0.059760px;}
.ls8b{letter-spacing:0.066240px;}
.ls1b{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.132480px;}
.ls1a{letter-spacing:0.144000px;}
.ls7f{letter-spacing:0.155520px;}
.ls8{letter-spacing:0.168480px;}
.ls89{letter-spacing:0.198720px;}
.ls12{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.252720px;}
.ls5d{letter-spacing:0.264960px;}
.ls2b{letter-spacing:0.288000px;}
.ls64{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.331200px;}
.ls6{letter-spacing:0.335520px;}
.ls1e{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.503280px;}
.ls24{letter-spacing:1.008000px;}
.ls22{letter-spacing:1.728000px;}
.ls49{letter-spacing:2.448000px;}
.ls23{letter-spacing:3.168000px;}
.ls6a{letter-spacing:3.888000px;}
.ls20{letter-spacing:4.608000px;}
.ls1f{letter-spacing:5.328000px;}
.ls3a{letter-spacing:6.768000px;}
.ls21{letter-spacing:7.488000px;}
.ls40{letter-spacing:8.208000px;}
.ls3f{letter-spacing:8.928000px;}
.ls28{letter-spacing:9.648000px;}
.ls42{letter-spacing:10.368000px;}
.ls3d{letter-spacing:11.088000px;}
.ls3e{letter-spacing:11.808000px;}
.ls5b{letter-spacing:12.528000px;}
.ls47{letter-spacing:13.248000px;}
.ls4b{letter-spacing:13.968000px;}
.ls26{letter-spacing:14.688000px;}
.ls27{letter-spacing:15.408000px;}
.ls69{letter-spacing:16.128000px;}
.ls68{letter-spacing:16.848000px;}
.ls6d{letter-spacing:17.568000px;}
.ls73{letter-spacing:18.288000px;}
.ls77{letter-spacing:19.728000px;}
.ls3b{letter-spacing:20.448000px;}
.ls3c{letter-spacing:21.168000px;}
.ls4d{letter-spacing:21.888000px;}
.ls6c{letter-spacing:22.608000px;}
.ls58{letter-spacing:24.048000px;}
.ls5a{letter-spacing:24.768000px;}
.ls25{letter-spacing:25.488000px;}
.ls79{letter-spacing:26.208000px;}
.ls59{letter-spacing:26.928000px;}
.ls72{letter-spacing:27.648000px;}
.ls5c{letter-spacing:29.088000px;}
.ls45{letter-spacing:30.528000px;}
.ls71{letter-spacing:31.248000px;}
.ls4a{letter-spacing:33.408000px;}
.ls38{letter-spacing:34.848000px;}
.ls39{letter-spacing:35.568000px;}
.ls29{letter-spacing:37.008000px;}
.ls2a{letter-spacing:37.728000px;}
.ls2e{letter-spacing:39.168000px;}
.ls2d{letter-spacing:41.328000px;}
.ls4e{letter-spacing:42.048000px;}
.ls7d{letter-spacing:44.784000px;}
.ls48{letter-spacing:44.928000px;}
.ls4f{letter-spacing:46.368000px;}
.ls70{letter-spacing:49.248000px;}
.ls7c{letter-spacing:54.864000px;}
.ls11{letter-spacing:60.768000px;}
.ls2c{letter-spacing:63.648000px;}
.ls15{letter-spacing:79.488000px;}
.ls3{letter-spacing:89.799840px;}
.ls13{letter-spacing:90.288000px;}
.ls14{letter-spacing:101.808000px;}
.ls16{letter-spacing:109.008000px;}
.ls1{letter-spacing:147.251520px;}
.ls8a{letter-spacing:197.461440px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-106.192080px;}
.ws81{word-spacing:-95.931360px;}
.ws1{word-spacing:-75.751200px;}
.ws30{word-spacing:-63.648000px;}
.ws2{word-spacing:-53.323920px;}
.ws6{word-spacing:-52.986960px;}
.ws5{word-spacing:-52.818480px;}
.ws7{word-spacing:-51.891840px;}
.ws79{word-spacing:-51.122880px;}
.ws4b{word-spacing:-50.859360px;}
.ws83{word-spacing:-49.222080px;}
.ws86{word-spacing:-48.211200px;}
.ws19{word-spacing:-45.792000px;}
.ws12{word-spacing:-45.648000px;}
.ws25{word-spacing:-45.576000px;}
.ws14{word-spacing:-45.504000px;}
.ws1a{word-spacing:-45.432000px;}
.ws15{word-spacing:-45.360000px;}
.ws17{word-spacing:-45.288000px;}
.ws4a{word-spacing:-45.216000px;}
.ws13{word-spacing:-45.072000px;}
.ws7a{word-spacing:-44.856000px;}
.ws26{word-spacing:-44.784000px;}
.ws73{word-spacing:-44.640000px;}
.ws7f{word-spacing:-44.568000px;}
.ws27{word-spacing:-44.496000px;}
.ws45{word-spacing:-44.352000px;}
.ws48{word-spacing:-44.136000px;}
.ws23{word-spacing:-44.064000px;}
.ws24{word-spacing:-43.920000px;}
.ws87{word-spacing:-42.444000px;}
.ws64{word-spacing:-42.062400px;}
.ws68{word-spacing:-42.048000px;}
.ws8c{word-spacing:-41.929920px;}
.ws44{word-spacing:-41.904000px;}
.ws96{word-spacing:-41.863680px;}
.ws1f{word-spacing:-41.797440px;}
.ws89{word-spacing:-41.731200px;}
.ws8f{word-spacing:-41.598720px;}
.ws88{word-spacing:-41.532480px;}
.ws8a{word-spacing:-41.333760px;}
.ws97{word-spacing:-41.201280px;}
.ws98{word-spacing:-40.870080px;}
.ws5c{word-spacing:-37.768320px;}
.ws5a{word-spacing:-37.648800px;}
.ws74{word-spacing:-35.622720px;}
.ws5f{word-spacing:-33.804000px;}
.ws5e{word-spacing:-32.600880px;}
.ws7c{word-spacing:-28.987200px;}
.ws42{word-spacing:-27.537840px;}
.ws11{word-spacing:-26.573040px;}
.ws20{word-spacing:-25.971840px;}
.ws21{word-spacing:-25.851600px;}
.ws47{word-spacing:-23.976000px;}
.ws36{word-spacing:-23.760000px;}
.ws43{word-spacing:-23.652000px;}
.ws3b{word-spacing:-23.004000px;}
.ws4f{word-spacing:-22.140000px;}
.ws75{word-spacing:-21.641760px;}
.ws5d{word-spacing:-20.875680px;}
.ws50{word-spacing:-20.588400px;}
.ws82{word-spacing:-19.206720px;}
.ws4{word-spacing:-19.038240px;}
.ws3{word-spacing:-18.785520px;}
.ws70{word-spacing:-18.448560px;}
.ws6f{word-spacing:-17.774640px;}
.ws51{word-spacing:-16.632000px;}
.ws16{word-spacing:-16.488000px;}
.ws6e{word-spacing:-16.416000px;}
.ws84{word-spacing:-16.407360px;}
.ws3f{word-spacing:-16.344000px;}
.ws18{word-spacing:-16.272000px;}
.ws61{word-spacing:-16.200000px;}
.ws3a{word-spacing:-16.128000px;}
.ws3e{word-spacing:-16.056000px;}
.ws22{word-spacing:-15.912000px;}
.ws37{word-spacing:-15.768000px;}
.ws52{word-spacing:-15.696000px;}
.ws72{word-spacing:-15.624000px;}
.ws71{word-spacing:-15.480000px;}
.ws4e{word-spacing:-15.235200px;}
.ws80{word-spacing:-15.192000px;}
.ws90{word-spacing:-15.168960px;}
.ws9a{word-spacing:-15.102720px;}
.ws8{word-spacing:-14.970240px;}
.ws46{word-spacing:-14.904000px;}
.ws8e{word-spacing:-14.837760px;}
.ws8b{word-spacing:-14.705280px;}
.ws8d{word-spacing:-14.506560px;}
.ws59{word-spacing:-13.446000px;}
.ws85{word-spacing:-12.888000px;}
.ws29{word-spacing:-0.360000px;}
.wsf{word-spacing:-0.331200px;}
.ws39{word-spacing:-0.288000px;}
.ws2b{word-spacing:-0.216000px;}
.ws1c{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.132480px;}
.ws1e{word-spacing:-0.072000px;}
.ws4c{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.ws92{word-spacing:0.066240px;}
.ws34{word-spacing:0.072000px;}
.ws69{word-spacing:0.108000px;}
.ws99{word-spacing:0.132480px;}
.ws1b{word-spacing:0.144000px;}
.ws6a{word-spacing:0.162000px;}
.ws91{word-spacing:0.198720px;}
.ws1d{word-spacing:0.216000px;}
.wsc{word-spacing:0.252720px;}
.ws35{word-spacing:0.264960px;}
.ws4d{word-spacing:0.270000px;}
.ws77{word-spacing:0.288000px;}
.ws78{word-spacing:0.324000px;}
.wsa{word-spacing:0.335520px;}
.wsb{word-spacing:0.336960px;}
.ws2e{word-spacing:0.360000px;}
.ws10{word-spacing:0.397440px;}
.ws62{word-spacing:0.432000px;}
.ws94{word-spacing:0.463680px;}
.ws60{word-spacing:0.478800px;}
.ws54{word-spacing:0.504000px;}
.ws7d{word-spacing:0.527040px;}
.ws2d{word-spacing:0.576000px;}
.ws65{word-spacing:0.589680px;}
.ws2f{word-spacing:0.648000px;}
.ws95{word-spacing:0.662400px;}
.ws3c{word-spacing:0.756000px;}
.ws53{word-spacing:0.766080px;}
.ws6b{word-spacing:0.792000px;}
.ws67{word-spacing:0.864000px;}
.ws93{word-spacing:0.927360px;}
.ws41{word-spacing:0.936000px;}
.ws32{word-spacing:1.080000px;}
.ws33{word-spacing:1.082160px;}
.ws28{word-spacing:1.202400px;}
.ws6c{word-spacing:1.296000px;}
.ws49{word-spacing:1.317600px;}
.ws66{word-spacing:1.368000px;}
.ws55{word-spacing:1.800000px;}
.ws40{word-spacing:2.052000px;}
.ws2c{word-spacing:2.520000px;}
.ws7b{word-spacing:3.528000px;}
.ws38{word-spacing:4.680000px;}
.wse{word-spacing:5.696640px;}
.ws7e{word-spacing:6.336000px;}
.ws2a{word-spacing:11.448000px;}
.ws56{word-spacing:12.168000px;}
.ws6d{word-spacing:14.544000px;}
.ws63{word-spacing:25.128000px;}
.ws57{word-spacing:25.344000px;}
.ws3d{word-spacing:30.888000px;}
.ws31{word-spacing:41.256000px;}
.ws58{word-spacing:84.171000px;}
.ws5b{word-spacing:200.142240px;}
.ws76{word-spacing:477.293400px;}
._26{margin-left:-64.224000px;}
._27{margin-left:-63.072000px;}
._d{margin-left:-15.835680px;}
._e{margin-left:-14.326560px;}
._11{margin-left:-12.505680px;}
._8{margin-left:-8.270640px;}
._f{margin-left:-7.177680px;}
._12{margin-left:-5.751360px;}
._3{margin-left:-4.717440px;}
._10{margin-left:-3.430800px;}
._1{margin-left:-2.180880px;}
._2{margin-left:-1.006560px;}
._0{width:1.006560px;}
._1e{width:2.164320px;}
._1d{width:3.281040px;}
._c{width:4.371840px;}
._a{width:5.630400px;}
._b{width:6.888960px;}
._1a{width:8.350560px;}
._2f{width:9.387360px;}
._18{width:10.426320px;}
._19{width:11.856240px;}
._1b{width:13.392000px;}
._47{width:14.420880px;}
._1c{width:15.428880px;}
._2e{width:16.873920px;}
._3a{width:18.165600px;}
._22{width:19.195200px;}
._21{width:20.736000px;}
._31{width:22.314240px;}
._25{width:24.055200px;}
._23{width:25.364880px;}
._24{width:26.461440px;}
._3f{width:27.904320px;}
._40{width:29.406240px;}
._32{width:30.550320px;}
._33{width:31.699440px;}
._29{width:33.644880px;}
._2d{width:34.867440px;}
._30{width:35.959680px;}
._1f{width:37.296000px;}
._20{width:38.643840px;}
._2c{width:39.803040px;}
._2a{width:41.254560px;}
._2b{width:42.274800px;}
._34{width:44.216640px;}
._3b{width:47.162880px;}
._45{width:48.692880px;}
._46{width:49.718880px;}
._48{width:50.808240px;}
._3c{width:51.884640px;}
._17{width:52.896240px;}
._16{width:54.164880px;}
._15{width:55.262880px;}
._55{width:59.333760px;}
._43{width:60.474120px;}
._4a{width:62.136000px;}
._28{width:63.720000px;}
._4b{width:65.587680px;}
._49{width:66.984480px;}
._4{width:68.299920px;}
._36{width:69.414480px;}
._37{width:70.508880px;}
._50{width:73.407960px;}
._14{width:74.449440px;}
._9{width:77.362560px;}
._39{width:79.165440px;}
._38{width:80.249760px;}
._7{width:83.977920px;}
._54{width:87.791400px;}
._13{width:93.456000px;}
._35{width:95.376960px;}
._41{width:118.924680px;}
._4c{width:125.712000px;}
._3d{width:138.815760px;}
._6{width:146.324880px;}
._56{width:151.531200px;}
._52{width:154.103400px;}
._5{width:193.330800px;}
._57{width:197.461440px;}
._53{width:199.251720px;}
._4d{width:229.230000px;}
._51{width:326.058840px;}
._44{width:343.768920px;}
._3e{width:370.942320px;}
._4f{width:380.544840px;}
._4e{width:459.816840px;}
._42{width:540.162600px;}
.fc5{color:rgb(156,101,0);}
.fc4{color:rgb(192,80,77);}
.fc3{color:rgb(79,129,189);}
.fc2{color:transparent;}
.fc6{color:rgb(63,63,63);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs0{font-size:120.240000px;}
.fs6{font-size:131.760000px;}
.fsa{font-size:156.240000px;}
.fs1{font-size:167.760000px;}
.y2c4{bottom:-15.480000px;}
.y0{bottom:0.000000px;}
.y28e{bottom:4.500000px;}
.y28c{bottom:4.680000px;}
.ye7{bottom:16.920000px;}
.y6e{bottom:18.180000px;}
.y2c2{bottom:24.840000px;}
.y18{bottom:39.960000px;}
.y1b{bottom:57.786480px;}
.y1a{bottom:77.940000px;}
.ye6{bottom:100.080000px;}
.y143{bottom:102.780000px;}
.y1c2{bottom:106.920000px;}
.y26e{bottom:107.820000px;}
.y190{bottom:108.000000px;}
.y124{bottom:109.620000px;}
.y58{bottom:110.700000px;}
.y1b0{bottom:111.600000px;}
.y2ad{bottom:113.400000px;}
.y2d4{bottom:113.934240px;}
.y9f{bottom:116.280000px;}
.y17e{bottom:122.400000px;}
.yd0{bottom:124.020000px;}
.ydb{bottom:127.260000px;}
.y8b{bottom:127.440000px;}
.y6c{bottom:128.700000px;}
.y3a{bottom:132.294240px;}
.y219{bottom:132.300000px;}
.y16{bottom:133.560000px;}
.y257{bottom:135.000000px;}
.y142{bottom:135.720000px;}
.y2ac{bottom:136.620000px;}
.y15c{bottom:138.060000px;}
.y1c1{bottom:139.860000px;}
.y26d{bottom:140.760000px;}
.y18f{bottom:140.940000px;}
.y123{bottom:142.560000px;}
.ye5{bottom:142.707000px;}
.y57{bottom:143.460000px;}
.y1f5{bottom:143.640000px;}
.y1af{bottom:144.360000px;}
.y2d3{bottom:147.766320px;}
.y23e{bottom:147.780000px;}
.y9e{bottom:149.220000px;}
.y17d{bottom:155.340000px;}
.ycf{bottom:156.960000px;}
.y2ab{bottom:159.840000px;}
.y8a{bottom:160.380000px;}
.y218{bottom:165.060000px;}
.y39{bottom:166.126320px;}
.y256{bottom:167.940000px;}
.ye4{bottom:168.019650px;}
.y141{bottom:168.660000px;}
.y230{bottom:171.720000px;}
.y1c0{bottom:172.800000px;}
.y6b{bottom:173.700000px;}
.y18e{bottom:173.880000px;}
.y127{bottom:174.780000px;}
.y56{bottom:176.400000px;}
.y1f4{bottom:176.580000px;}
.y1ae{bottom:177.480000px;}
.y122{bottom:179.280000px;}
.y2d2{bottom:181.432800px;}
.y15{bottom:181.620000px;}
.y9d{bottom:182.160000px;}
.y15b{bottom:183.060000px;}
.y2aa{bottom:183.240000px;}
.y17c{bottom:188.280000px;}
.yce{bottom:189.900000px;}
.y23d{bottom:192.600000px;}
.y126{bottom:192.960000px;}
.y89{bottom:193.320000px;}
.yfd{bottom:196.740000px;}
.y38{bottom:199.792800px;}
.y255{bottom:200.880000px;}
.y140{bottom:201.600000px;}
.y22f{bottom:204.480000px;}
.y1bf{bottom:205.740000px;}
.y2a9{bottom:206.460000px;}
.y18d{bottom:206.820000px;}
.y55{bottom:209.340000px;}
.y1f3{bottom:209.520000px;}
.y26c{bottom:209.880000px;}
.y217{bottom:210.240000px;}
.y2d1{bottom:215.264880px;}
.y15a{bottom:215.820000px;}
.y106{bottom:216.039300px;}
.y6a{bottom:218.520000px;}
.y1ff{bottom:219.780000px;}
.y14{bottom:220.320000px;}
.y17b{bottom:221.220000px;}
.y1ad{bottom:222.480000px;}
.ycd{bottom:222.840000px;}
.y88{bottom:226.260000px;}
.yfc{bottom:229.500000px;}
.y2a8{bottom:229.680000px;}
.y37{bottom:233.624880px;}
.y254{bottom:233.820000px;}
.y13f{bottom:234.540000px;}
.y9c{bottom:235.080000px;}
.y23c{bottom:237.600000px;}
.y1be{bottom:238.680000px;}
.y18c{bottom:239.940000px;}
.y54{bottom:242.280000px;}
.y1f2{bottom:242.460000px;}
.y26b{bottom:248.400000px;}
.y2d0{bottom:248.931360px;}
.y22e{bottom:249.660000px;}
.y69{bottom:251.460000px;}
.y2a7{bottom:252.900000px;}
.y17a{bottom:254.160000px;}
.y216{bottom:255.060000px;}
.y1ac{bottom:255.240000px;}
.ycc{bottom:255.780000px;}
.y13{bottom:257.064120px;}
.y87{bottom:259.200000px;}
.y159{bottom:261.000000px;}
.y1fe{bottom:264.600000px;}
.yb6{bottom:265.140000px;}
.y253{bottom:266.940000px;}
.y36{bottom:267.291360px;}
.y13e{bottom:267.480000px;}
.y1bd{bottom:271.620000px;}
.y18b{bottom:272.880000px;}
.yfb{bottom:274.680000px;}
.y53{bottom:275.220000px;}
.y1f1{bottom:275.580000px;}
.y2a6{bottom:276.120000px;}
.y22d{bottom:282.420000px;}
.y2cf{bottom:282.597840px;}
.y23b{bottom:282.600000px;}
.y68{bottom:284.400000px;}
.y26a{bottom:285.300000px;}
.y179{bottom:287.100000px;}
.y215{bottom:287.820000px;}
.y1ab{bottom:288.360000px;}
.y9b{bottom:288.720000px;}
.y86{bottom:292.140000px;}
.y158{bottom:293.760000px;}
.y12{bottom:296.656920px;}
.y2a5{bottom:299.340000px;}
.y252{bottom:299.880000px;}
.y13d{bottom:300.420000px;}
.y35{bottom:300.957840px;}
.y1bc{bottom:304.740000px;}
.y18a{bottom:305.820000px;}
.yfa{bottom:307.440000px;}
.y52{bottom:308.160000px;}
.ydf{bottom:309.253050px;}
.y1fd{bottom:309.600000px;}
.yb5{bottom:310.140000px;}
.y2ce{bottom:316.429920px;}
.y67{bottom:317.340000px;}
.y178{bottom:320.040000px;}
.y1f0{bottom:320.580000px;}
.y1aa{bottom:321.300000px;}
.ycb{bottom:321.840000px;}
.y269{bottom:322.200000px;}
.y2a4{bottom:322.740000px;}
.y85{bottom:325.260000px;}
.yde{bottom:325.817550px;}
.y157{bottom:326.700000px;}
.y103{bottom:326.776500px;}
.y22c{bottom:327.600000px;}
.y251{bottom:332.820000px;}
.y214{bottom:333.000000px;}
.y13c{bottom:333.360000px;}
.y9a{bottom:333.720000px;}
.y34{bottom:334.789920px;}
.y11{bottom:336.249720px;}
.y1bb{bottom:337.680000px;}
.y189{bottom:338.760000px;}
.yf9{bottom:340.380000px;}
.y51{bottom:341.100000px;}
.yb4{bottom:342.900000px;}
.y102{bottom:343.341000px;}
.y268{bottom:344.160000px;}
.y2a3{bottom:345.960000px;}
.y1ef{bottom:349.740000px;}
.y2cd{bottom:350.096400px;}
.y66{bottom:350.280000px;}
.y177{bottom:352.980000px;}
.y282{bottom:353.332080px;}
.y1a9{bottom:354.240000px;}
.y1fc{bottom:354.600000px;}
.yca{bottom:354.780000px;}
.y156{bottom:359.640000px;}
.y84{bottom:364.140000px;}
.y250{bottom:365.760000px;}
.y267{bottom:366.120000px;}
.y99{bottom:366.480000px;}
.y33{bottom:368.456400px;}
.y2a2{bottom:369.180000px;}
.y1ba{bottom:370.620000px;}
.y188{bottom:371.700000px;}
.y22b{bottom:372.420000px;}
.yf8{bottom:373.320000px;}
.y50{bottom:374.040000px;}
.yb3{bottom:375.840000px;}
.y10{bottom:376.032060px;}
.y213{bottom:378.000000px;}
.y13b{bottom:378.540000px;}
.y65{bottom:383.220000px;}
.y2cc{bottom:383.928480px;}
.y176{bottom:386.100000px;}
.ydd{bottom:386.878050px;}
.y281{bottom:386.998560px;}
.y1a8{bottom:387.180000px;}
.yc9{bottom:387.720000px;}
.y2a1{bottom:392.400000px;}
.y24f{bottom:398.700000px;}
.y98{bottom:399.420000px;}
.y1fb{bottom:399.600000px;}
.y32{bottom:402.288480px;}
.y266{bottom:403.200000px;}
.ydc{bottom:403.442550px;}
.y1b9{bottom:403.560000px;}
.y187{bottom:404.640000px;}
.y155{bottom:404.820000px;}
.y22a{bottom:405.360000px;}
.y101{bottom:405.535500px;}
.yf7{bottom:406.260000px;}
.y4f{bottom:406.980000px;}
.yb2{bottom:408.780000px;}
.y13a{bottom:411.300000px;}
.y2a0{bottom:415.620000px;}
.yf{bottom:415.624860px;}
.y64{bottom:416.160000px;}
.y23a{bottom:417.420000px;}
.y2cb{bottom:417.594960px;}
.y83{bottom:417.960000px;}
.y175{bottom:419.040000px;}
.yc8{bottom:420.660000px;}
.y280{bottom:420.830640px;}
.y100{bottom:422.100000px;}
.y212{bottom:423.000000px;}
.y24e{bottom:431.640000px;}
.y97{bottom:432.360000px;}
.y1ee{bottom:433.080000px;}
.y31{bottom:435.954960px;}
.y1b8{bottom:436.500000px;}
.y154{bottom:437.580000px;}
.y29f{bottom:438.840000px;}
.yf6{bottom:439.200000px;}
.y4e{bottom:440.100000px;}
.yb1{bottom:441.720000px;}
.y139{bottom:444.240000px;}
.y1fa{bottom:444.420000px;}
.ye1{bottom:446.494050px;}
.y19a{bottom:449.820000px;}
.y229{bottom:450.360000px;}
.y265{bottom:451.080000px;}
.y2ca{bottom:451.427040px;}
.y174{bottom:451.980000px;}
.y27f{bottom:454.497120px;}
.ye{bottom:455.217660px;}
.y211{bottom:455.760000px;}
.y63{bottom:461.340000px;}
.y6d{bottom:462.060000px;}
.y29e{bottom:462.240000px;}
.y239{bottom:462.420000px;}
.y82{bottom:462.780000px;}
.ye0{bottom:463.058550px;}
.y24d{bottom:464.580000px;}
.y1a7{bottom:465.120000px;}
.y96{bottom:465.300000px;}
.yc7{bottom:465.840000px;}
.y1b7{bottom:469.440000px;}
.y30{bottom:469.787040px;}
.y153{bottom:470.520000px;}
.yf5{bottom:472.140000px;}
.y4d{bottom:473.040000px;}
.yb0{bottom:474.660000px;}
.y199{bottom:482.580000px;}
.y228{bottom:483.120000px;}
.y264{bottom:484.020000px;}
.y2c9{bottom:485.093520px;}
.y29d{bottom:485.460000px;}
.ye3{bottom:486.994050px;}
.y27e{bottom:488.163600px;}
.y138{bottom:489.420000px;}
.yd{bottom:495.000000px;}
.y81{bottom:495.720000px;}
.y173{bottom:497.160000px;}
.y24c{bottom:497.520000px;}
.y1a6{bottom:498.060000px;}
.y95{bottom:498.240000px;}
.y1ed{bottom:498.780000px;}
.y210{bottom:500.940000px;}
.y62{bottom:501.300000px;}
.y1b6{bottom:502.380000px;}
.y105{bottom:503.397000px;}
.y2f{bottom:503.453520px;}
.y152{bottom:503.460000px;}
.ye2{bottom:503.558550px;}
.yf4{bottom:505.080000px;}
.y4c{bottom:505.980000px;}
.yc6{bottom:506.520000px;}
.y238{bottom:507.420000px;}
.yaf{bottom:507.600000px;}
.y29c{bottom:508.680000px;}
.yff{bottom:510.160500px;}
.y198{bottom:515.520000px;}
.y263{bottom:517.140000px;}
.y2c8{bottom:518.760000px;}
.y104{bottom:519.961500px;}
.y27d{bottom:521.995680px;}
.y137{bottom:522.180000px;}
.yfe{bottom:526.725000px;}
.y227{bottom:528.300000px;}
.y80{bottom:528.660000px;}
.y172{bottom:529.920000px;}
.y24b{bottom:530.460000px;}
.y1a5{bottom:531.000000px;}
.y94{bottom:531.180000px;}
.y1ec{bottom:531.720000px;}
.y29b{bottom:531.900000px;}
.y20f{bottom:533.700000px;}
.y1f9{bottom:534.420000px;}
.y2c7{bottom:535.140000px;}
.y1b5{bottom:535.320000px;}
.y186{bottom:536.580000px;}
.y2e{bottom:537.120000px;}
.yc{bottom:537.994440px;}
.yf3{bottom:538.200000px;}
.y4b{bottom:538.920000px;}
.yae{bottom:540.540000px;}
.y197{bottom:548.460000px;}
.y151{bottom:548.640000px;}
.y262{bottom:550.080000px;}
.y237{bottom:552.420000px;}
.y136{bottom:555.120000px;}
.y27c{bottom:555.662160px;}
.y2c6{bottom:558.360000px;}
.yc5{bottom:560.160000px;}
.y7f{bottom:561.600000px;}
.y171{bottom:562.860000px;}
.y1a4{bottom:563.940000px;}
.y93{bottom:564.120000px;}
.y1eb{bottom:564.660000px;}
.y24a{bottom:566.820000px;}
.y2d{bottom:567.000000px;}
.y1f8{bottom:567.180000px;}
.y1b4{bottom:568.260000px;}
.yda{bottom:569.160000px;}
.y185{bottom:569.520000px;}
.yf2{bottom:571.140000px;}
.y4a{bottom:571.860000px;}
.y226{bottom:573.300000px;}
.yad{bottom:573.480000px;}
.y121{bottom:577.980000px;}
.y29a{bottom:578.340000px;}
.y20e{bottom:578.880000px;}
.y150{bottom:581.400000px;}
.y2c5{bottom:581.580000px;}
.y261{bottom:583.020000px;}
.y236{bottom:585.180000px;}
.y135{bottom:588.240000px;}
.yb{bottom:589.487220px;}
.y27b{bottom:589.494240px;}
.y7e{bottom:594.540000px;}
.y170{bottom:595.800000px;}
.y92{bottom:597.060000px;}
.y1ea{bottom:597.600000px;}
.y2c{bottom:598.140000px;}
.y1a3{bottom:599.220000px;}
.y1f7{bottom:600.120000px;}
.y1b3{bottom:601.200000px;}
.y299{bottom:601.740000px;}
.yd9{bottom:601.920000px;}
.y184{bottom:602.460000px;}
.yf1{bottom:604.080000px;}
.y49{bottom:604.800000px;}
.yc4{bottom:605.160000px;}
.y225{bottom:606.060000px;}
.yac{bottom:606.600000px;}
.y20d{bottom:611.640000px;}
.y14f{bottom:614.340000px;}
.y260{bottom:615.960000px;}
.y249{bottom:616.140000px;}
.y120{bottom:617.580000px;}
.y27a{bottom:623.160720px;}
.y1a2{bottom:623.700000px;}
.y298{bottom:624.960000px;}
.y2c3{bottom:628.020000px;}
.y16f{bottom:628.740000px;}
.y2b{bottom:629.460000px;}
.y235{bottom:630.180000px;}
.y1e9{bottom:630.720000px;}
.y1f6{bottom:633.060000px;}
.y134{bottom:633.240000px;}
.yd8{bottom:634.860000px;}
.y1b2{bottom:636.660000px;}
.yf0{bottom:637.020000px;}
.y48{bottom:637.740000px;}
.yab{bottom:639.540000px;}
.y7d{bottom:639.720000px;}
.ya{bottom:640.980000px;}
.y20c{bottom:644.580000px;}
.y11f{bottom:646.560000px;}
.y14e{bottom:647.460000px;}
.y183{bottom:647.640000px;}
.y297{bottom:648.180000px;}
.y25f{bottom:648.900000px;}
.y248{bottom:649.080000px;}
.y91{bottom:650.160000px;}
.y224{bottom:651.240000px;}
.y279{bottom:656.992800px;}
.y2a{bottom:660.600000px;}
.y16e{bottom:661.680000px;}
.y234{bottom:663.120000px;}
.y1e8{bottom:663.660000px;}
.y2df{bottom:663.900480px;}
.y133{bottom:666.000000px;}
.yd7{bottom:667.800000px;}
.yef{bottom:669.960000px;}
.y47{bottom:670.680000px;}
.y296{bottom:671.400000px;}
.y7c{bottom:672.480000px;}
.y1b1{bottom:675.360000px;}
.y14d{bottom:680.400000px;}
.y25e{bottom:681.840000px;}
.y247{bottom:682.020000px;}
.yc3{bottom:682.920000px;}
.y2de{bottom:684.054000px;}
.y1a1{bottom:688.680000px;}
.y20b{bottom:689.760000px;}
.y278{bottom:690.659280px;}
.y1e1{bottom:690.714300px;}
.y29{bottom:691.740000px;}
.y2c1{bottom:692.280000px;}
.y16d{bottom:694.620000px;}
.y233{bottom:696.060000px;}
.y223{bottom:696.240000px;}
.y1e7{bottom:696.600000px;}
.y9{bottom:696.938400px;}
.y132{bottom:699.120000px;}
.yd6{bottom:700.740000px;}
.yee{bottom:702.900000px;}
.y46{bottom:703.620000px;}
.y90{bottom:703.800000px;}
.ya0{bottom:705.060000px;}
.y7b{bottom:705.420000px;}
.y14c{bottom:713.340000px;}
.y25d{bottom:714.780000px;}
.y246{bottom:715.140000px;}
.y2c0{bottom:715.680000px;}
.yc2{bottom:715.860000px;}
.y1e0{bottom:716.026950px;}
.y295{bottom:717.840000px;}
.y11e{bottom:721.260000px;}
.y20a{bottom:722.520000px;}
.y28{bottom:723.060000px;}
.y277{bottom:724.325760px;}
.y2dd{bottom:726.348240px;}
.y222{bottom:729.000000px;}
.y1e6{bottom:729.540000px;}
.y17f{bottom:731.700000px;}
.y131{bottom:732.060000px;}
.y1a0{bottom:732.240000px;}
.yd5{bottom:733.680000px;}
.y125{bottom:734.040000px;}
.yed{bottom:735.840000px;}
.y45{bottom:736.740000px;}
.yaa{bottom:738.360000px;}
.y2bf{bottom:738.900000px;}
.y16c{bottom:739.800000px;}
.y294{bottom:741.240000px;}
.y1df{bottom:741.339600px;}
.y8f{bottom:743.760000px;}
.y14b{bottom:746.280000px;}
.y25c{bottom:747.720000px;}
.y245{bottom:748.080000px;}
.yc1{bottom:748.800000px;}
.y7a{bottom:750.600000px;}
.y8{bottom:752.383080px;}
.y27{bottom:754.200000px;}
.y276{bottom:758.157840px;}
.y221{bottom:761.940000px;}
.y2be{bottom:762.120000px;}
.y1e5{bottom:762.480000px;}
.y293{bottom:764.460000px;}
.y130{bottom:765.000000px;}
.y11d{bottom:766.080000px;}
.y1de{bottom:766.652400px;}
.yd4{bottom:766.800000px;}
.y209{bottom:767.520000px;}
.y2dc{bottom:768.460320px;}
.yec{bottom:768.780000px;}
.y11c{bottom:769.102650px;}
.y44{bottom:769.680000px;}
.ya9{bottom:771.300000px;}
.y16b{bottom:772.314150px;}
.y232{bottom:774.180000px;}
.y14a{bottom:779.220000px;}
.y25b{bottom:780.660000px;}
.y244{bottom:781.020000px;}
.yc0{bottom:781.740000px;}
.y79{bottom:783.360000px;}
.y2bd{bottom:785.340000px;}
.y26{bottom:785.520000px;}
.y292{bottom:787.680000px;}
.y275{bottom:791.824320px;}
.y1dd{bottom:791.964900px;}
.y1e4{bottom:795.420000px;}
.y16a{bottom:797.626800px;}
.y12f{bottom:797.940000px;}
.y208{bottom:800.280000px;}
.yeb{bottom:801.720000px;}
.y43{bottom:802.620000px;}
.ya8{bottom:804.240000px;}
.y231{bottom:806.940000px;}
.y220{bottom:807.120000px;}
.y7{bottom:807.660000px;}
.y2bc{bottom:808.560000px;}
.y2db{bottom:810.754560px;}
.y291{bottom:810.900000px;}
.yd3{bottom:811.800000px;}
.y149{bottom:812.160000px;}
.ybf{bottom:814.680000px;}
.y78{bottom:816.300000px;}
.y25{bottom:816.660000px;}
.y25a{bottom:817.032240px;}
.y243{bottom:817.200000px;}
.y169{bottom:822.939450px;}
.y61{bottom:824.040000px;}
.y274{bottom:825.656400px;}
.y1e3{bottom:828.360000px;}
.y1c6{bottom:830.255850px;}
.y19f{bottom:830.880000px;}
.y2bb{bottom:831.780000px;}
.y290{bottom:834.120000px;}
.yea{bottom:834.660000px;}
.y42{bottom:835.560000px;}
.ya7{bottom:837.180000px;}
.yd2{bottom:838.620000px;}
.y21f{bottom:839.880000px;}
.y12e{bottom:843.120000px;}
.y148{bottom:845.100000px;}
.y207{bottom:845.460000px;}
.y1c5{bottom:846.820350px;}
.ybe{bottom:847.620000px;}
.y24{bottom:847.800000px;}
.y182{bottom:848.880000px;}
.y2da{bottom:852.866640px;}
.y259{bottom:854.648640px;}
.y2ba{bottom:855.180000px;}
.y242{bottom:855.540000px;}
.y60{bottom:856.800000px;}
.y28f{bottom:857.340000px;}
.y273{bottom:859.322880px;}
.y77{bottom:861.480000px;}
.y19e{bottom:863.820000px;}
.y41{bottom:868.500000px;}
.ya6{bottom:870.120000px;}
.y6{bottom:870.415380px;}
.y12d{bottom:875.880000px;}
.y147{bottom:878.040000px;}
.y206{bottom:878.220000px;}
.y2b9{bottom:878.400000px;}
.y23{bottom:879.120000px;}
.ybd{bottom:880.560000px;}
.y28d{bottom:880.740000px;}
.y21e{bottom:885.060000px;}
.y1e2{bottom:888.300000px;}
.y5f{bottom:889.740000px;}
.y258{bottom:892.440000px;}
.y272{bottom:893.154960px;}
.y76{bottom:894.240000px;}
.ye9{bottom:894.600000px;}
.y2d9{bottom:895.160880px;}
.y19d{bottom:896.760000px;}
.y181{bottom:896.940000px;}
.y107{bottom:898.174200px;}
.y112{bottom:898.189140px;}
.y166{bottom:898.346700px;}
.y40{bottom:901.440000px;}
.y2b8{bottom:901.620000px;}
.y164{bottom:901.721700px;}
.y241{bottom:901.828440px;}
.ya5{bottom:903.060000px;}
.y28b{bottom:903.960000px;}
.y12c{bottom:908.820000px;}
.y22{bottom:910.260000px;}
.y196{bottom:910.980000px;}
.y1c8{bottom:912.376350px;}
.yd1{bottom:912.600000px;}
.ybc{bottom:913.500000px;}
.y165{bottom:914.911200px;}
.y146{bottom:914.940000px;}
.y21d{bottom:917.820000px;}
.y163{bottom:918.286200px;}
.y108{bottom:921.913860px;}
.y5{bottom:922.088520px;}
.y5e{bottom:922.680000px;}
.y205{bottom:923.400000px;}
.y113{bottom:924.558240px;}
.y2b7{bottom:924.840000px;}
.y271{bottom:926.821440px;}
.y75{bottom:927.180000px;}
.y1c7{bottom:928.940850px;}
.y288{bottom:929.520000px;}
.y19c{bottom:929.700000px;}
.y162{bottom:933.230700px;}
.y3f{bottom:934.380000px;}
.y285{bottom:936.526320px;}
.y2d8{bottom:937.272960px;}
.y21{bottom:941.580000px;}
.y12b{bottom:941.760000px;}
.y180{bottom:941.940000px;}
.ya4{bottom:942.120000px;}
.y195{bottom:943.920000px;}
.y109{bottom:945.653520px;}
.ybb{bottom:946.620000px;}
.y2b6{bottom:948.060000px;}
.y161{bottom:949.795200px;}
.y21c{bottom:950.760000px;}
.y114{bottom:950.927340px;}
.y240{bottom:953.114220px;}
.y28a{bottom:955.435680px;}
.y5d{bottom:955.620000px;}
.y284{bottom:957.954960px;}
.y74{bottom:960.120000px;}
.y270{bottom:960.487920px;}
.y19b{bottom:962.640000px;}
.y145{bottom:962.820000px;}
.ye8{bottom:963.000000px;}
.y1ca{bottom:963.001350px;}
.y3e{bottom:967.320000px;}
.y204{bottom:968.400000px;}
.y10a{bottom:969.393180px;}
.y2b5{bottom:971.280000px;}
.y20{bottom:972.720000px;}
.y4{bottom:973.581300px;}
.y12a{bottom:974.700000px;}
.y287{bottom:975.376080px;}
.y194{bottom:977.040000px;}
.y115{bottom:977.296440px;}
.y289{bottom:977.940720px;}
.y286{bottom:978.621840px;}
.yba{bottom:979.560000px;}
.y1c9{bottom:979.565850px;}
.y2d7{bottom:979.567200px;}
.y1cc{bottom:984.371850px;}
.y283{bottom:984.600000px;}
.y5c{bottom:988.560000px;}
.y73{bottom:993.060000px;}
.y10b{bottom:993.132840px;}
.y26f{bottom:994.320000px;}
.y2b4{bottom:994.680000px;}
.ya3{bottom:995.760000px;}
.y1c4{bottom:997.885350px;}
.y3d{bottom:1000.260000px;}
.y1cb{bottom:1000.936350px;}
.y203{bottom:1001.160000px;}
.y116{bottom:1003.680480px;}
.y1f{bottom:1003.860000px;}
.y23f{bottom:1004.400000px;}
.y1ce{bottom:1004.621850px;}
.y129{bottom:1007.640000px;}
.y144{bottom:1007.820000px;}
.y160{bottom:1010.855700px;}
.y193{bottom:1013.760000px;}
.y1c3{bottom:1014.449850px;}
.y10c{bottom:1016.872500px;}
.y2b3{bottom:1017.900000px;}
.y1cd{bottom:1021.186350px;}
.y5b{bottom:1021.500000px;}
.y2d6{bottom:1021.679280px;}
.yb9{bottom:1024.560000px;}
.y3{bottom:1025.074080px;}
.y72{bottom:1026.000000px;}
.y15f{bottom:1027.420200px;}
.y21b{bottom:1028.700000px;}
.y1d0{bottom:1029.367350px;}
.y117{bottom:1030.049580px;}
.y3c{bottom:1033.200000px;}
.y202{bottom:1034.100000px;}
.y1e{bottom:1035.180000px;}
.y128{bottom:1040.580000px;}
.y10d{bottom:1040.612160px;}
.ya2{bottom:1040.760000px;}
.y2b2{bottom:1041.120000px;}
.y17{bottom:1041.660000px;}
.y168{bottom:1042.891200px;}
.y1d2{bottom:1045.108350px;}
.y1cf{bottom:1045.931850px;}
.yb8{bottom:1051.380000px;}
.y118{bottom:1056.418680px;}
.y1d4{bottom:1057.474350px;}
.y71{bottom:1058.940000px;}
.y167{bottom:1059.455700px;}
.y19{bottom:1059.840000px;}
.y5a{bottom:1060.560000px;}
.y21a{bottom:1061.640000px;}
.y1d1{bottom:1061.672850px;}
.y192{bottom:1061.820000px;}
.y2d5{bottom:1063.973520px;}
.y2b1{bottom:1064.340000px;}
.y10e{bottom:1064.351820px;}
.y1d{bottom:1066.320000px;}
.y1dc{bottom:1068.692850px;}
.y1d6{bottom:1069.840350px;}
.ya1{bottom:1073.520000px;}
.y8e{bottom:1073.700000px;}
.y1d3{bottom:1074.038850px;}
.y2{bottom:1076.566860px;}
.y201{bottom:1079.280000px;}
.y119{bottom:1082.802720px;}
.y1d5{bottom:1086.404850px;}
.y2b0{bottom:1087.560000px;}
.y10f{bottom:1088.091480px;}
.y70{bottom:1091.880000px;}
.y1d9{bottom:1092.331350px;}
.y1c{bottom:1097.640000px;}
.y1db{bottom:1097.947350px;}
.y3b{bottom:1101.600000px;}
.y59{bottom:1104.480000px;}
.y8d{bottom:1106.460000px;}
.y191{bottom:1106.640000px;}
.y11a{bottom:1109.171820px;}
.y1d8{bottom:1109.206350px;}
.y2af{bottom:1110.780000px;}
.y15e{bottom:1110.985200px;}
.y110{bottom:1111.831140px;}
.y1da{bottom:1114.511850px;}
.y200{bottom:1125.180000px;}
.yb7{bottom:1125.360000px;}
.y1d7{bottom:1125.770850px;}
.y15d{bottom:1127.549700px;}
.y1{bottom:1128.240000px;}
.y6f{bottom:1130.940000px;}
.y2ae{bottom:1134.180000px;}
.y11b{bottom:1135.540920px;}
.y111{bottom:1135.570800px;}
.y8c{bottom:1139.580000px;}
.h23{height:22.498500px;}
.h22{height:22.500000px;}
.h16{height:29.700000px;}
.h10{height:33.660000px;}
.h1b{height:36.914062px;}
.h24{height:40.320000px;}
.h19{height:40.851562px;}
.h15{height:42.820312px;}
.h14{height:43.664062px;}
.hb{height:45.281250px;}
.h1a{height:47.387813px;}
.h7{height:49.218750px;}
.h9{height:52.526250px;}
.h20{height:53.156250px;}
.ha{height:53.561250px;}
.h8{height:55.440000px;}
.hd{height:57.093750px;}
.h6{height:57.585938px;}
.h1e{height:61.661250px;}
.h17{height:65.460938px;}
.h5{height:66.799687px;}
.h1d{height:68.115938px;}
.hf{height:73.828125px;}
.h1f{height:75.093750px;}
.h2{height:82.195312px;}
.h11{height:90.070312px;}
.h4{height:95.346562px;}
.h18{height:99.874688px;}
.h13{height:112.640625px;}
.h1c{height:123.893438px;}
.he{height:125.406562px;}
.h3{height:133.028437px;}
.h12{height:137.421562px;}
.h21{height:192.420000px;}
.hc{height:1262.866500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:31.320000px;}
.w18{width:31.680000px;}
.wd{width:43.560000px;}
.w15{width:43.920000px;}
.w8{width:50.220000px;}
.we{width:50.580000px;}
.w16{width:50.941500px;}
.wa{width:59.580000px;}
.w12{width:59.940000px;}
.wc{width:67.140000px;}
.w14{width:67.500000px;}
.wb{width:74.700000px;}
.w13{width:75.060000px;}
.wf{width:110.700000px;}
.w17{width:111.058500px;}
.w9{width:185.220000px;}
.w11{width:185.940000px;}
.w19{width:201.778500px;}
.w5{width:245.518500px;}
.w4{width:245.520000px;}
.w7{width:245.700000px;}
.w2{width:327.960000px;}
.w6{width:524.160000px;}
.w3{width:892.965000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5a{left:4.860000px;}
.x6a{left:5.940000px;}
.x68{left:7.200000px;}
.x5c{left:8.820000px;}
.x4{left:10.800000px;}
.x66{left:13.860000px;}
.x70{left:15.840000px;}
.x6b{left:16.920000px;}
.x62{left:19.980000px;}
.x6e{left:21.780000px;}
.x63{left:23.580000px;}
.x6f{left:25.380000px;}
.x69{left:27.720000px;}
.x56{left:30.420000px;}
.x60{left:31.860000px;}
.x6d{left:33.660000px;}
.x5e{left:35.640000px;}
.x6c{left:37.620000px;}
.x73{left:48.780000px;}
.x72{left:54.720000px;}
.x29{left:66.420000px;}
.x3{left:99.180000px;}
.x5{left:109.980000px;}
.x71{left:119.700000px;}
.x26{left:167.245200px;}
.x1{left:170.100000px;}
.x25{left:174.849660px;}
.xb{left:178.920000px;}
.x4a{left:190.620000px;}
.x24{left:197.663040px;}
.x4b{left:206.460000px;}
.x19{left:208.260000px;}
.x6{left:212.760000px;}
.x4d{left:214.380000px;}
.x49{left:220.500000px;}
.x74{left:222.300000px;}
.x4e{left:224.100000px;}
.x3f{left:225.172350px;}
.x3e{left:230.207850px;}
.x7{left:234.900000px;}
.xc{left:237.060000px;}
.x8{left:239.760000px;}
.x40{left:243.181350px;}
.x4c{left:244.620000px;}
.xd{left:246.060000px;}
.x36{left:247.500000px;}
.x4f{left:251.100000px;}
.x3d{left:254.413350px;}
.x1a{left:260.100000px;}
.xe{left:266.760000px;}
.x48{left:268.040250px;}
.x28{left:271.260000px;}
.x41{left:276.350850px;}
.x50{left:278.100000px;}
.x22{left:283.861500px;}
.x18{left:287.414100px;}
.x3c{left:290.404350px;}
.x13{left:292.622850px;}
.x3b{left:295.439850px;}
.x12{left:297.658350px;}
.x15{left:299.386350px;}
.x75{left:303.308640px;}
.x14{left:304.421850px;}
.x35{left:306.505500px;}
.x34{left:311.365500px;}
.x43{left:321.940350px;}
.x42{left:326.975850px;}
.x51{left:332.100000px;}
.x44{left:352.328850px;}
.x5b{left:355.320000px;}
.x27{left:362.910600px;}
.x46{left:378.208350px;}
.x21{left:380.215500px;}
.x45{left:383.243850px;}
.x20{left:385.075500px;}
.x52{left:390.237120px;}
.x9{left:398.340000px;}
.x3a{left:399.511350px;}
.x17{left:401.770350px;}
.x1f{left:403.071000px;}
.x39{left:404.546850px;}
.x16{left:406.805850px;}
.x5d{left:415.260000px;}
.x47{left:450.217350px;}
.x33{left:456.666000px;}
.x53{left:457.735680px;}
.x32{left:461.526000px;}
.x2{left:478.425420px;}
.x5f{left:490.320000px;}
.x31{left:511.786500px;}
.x30{left:516.646500px;}
.x76{left:521.321040px;}
.x1c{left:526.447500px;}
.x54{left:529.009920px;}
.x1b{left:531.307500px;}
.x2b{left:539.907000px;}
.x2a{left:548.182500px;}
.x61{left:557.820000px;}
.x2f{left:584.902500px;}
.x2e{left:589.762500px;}
.x11{left:596.359350px;}
.x10{left:601.394850px;}
.x1e{left:608.581500px;}
.x1d{left:613.441500px;}
.x2d{left:631.032000px;}
.x55{left:632.160000px;}
.x38{left:633.506850px;}
.x2c{left:639.307500px;}
.x64{left:652.680000px;}
.xf{left:710.100000px;}
.x57{left:713.160000px;}
.x23{left:726.374700px;}
.x65{left:763.740000px;}
.x58{left:784.434240px;}
.xa{left:786.600000px;}
.x67{left:795.420000px;}
.x37{left:796.680000px;}
.x59{left:816.113520px;}
@media print{
.v2{vertical-align:-45.120000pt;}
.v1{vertical-align:-1.104000pt;}
.v0{vertical-align:0.000000pt;}
.ls7b{letter-spacing:-5.632000pt;}
.lse{letter-spacing:-4.945920pt;}
.ls6f{letter-spacing:-3.008000pt;}
.ls4c{letter-spacing:-2.400000pt;}
.ls7e{letter-spacing:-2.360960pt;}
.ls31{letter-spacing:-2.240000pt;}
.ls5e{letter-spacing:-2.016000pt;}
.ls51{letter-spacing:-1.991040pt;}
.ls74{letter-spacing:-1.872640pt;}
.ls61{letter-spacing:-1.600000pt;}
.ls35{letter-spacing:-1.344000pt;}
.ls46{letter-spacing:-1.248000pt;}
.ls32{letter-spacing:-1.216000pt;}
.ls30{letter-spacing:-1.175680pt;}
.ls50{letter-spacing:-1.171200pt;}
.ls54{letter-spacing:-1.152000pt;}
.lsc{letter-spacing:-1.123200pt;}
.ls2f{letter-spacing:-1.068800pt;}
.ls80{letter-spacing:-1.036800pt;}
.ls41{letter-spacing:-0.961920pt;}
.ls37{letter-spacing:-0.960000pt;}
.ls55{letter-spacing:-0.936960pt;}
.ls5f{letter-spacing:-0.936320pt;}
.ls36{letter-spacing:-0.832000pt;}
.ls86{letter-spacing:-0.824320pt;}
.ls6b{letter-spacing:-0.768000pt;}
.ls81{letter-spacing:-0.760320pt;}
.ls43{letter-spacing:-0.704000pt;}
.ls78{letter-spacing:-0.702720pt;}
.ls60{letter-spacing:-0.680960pt;}
.ls52{letter-spacing:-0.672000pt;}
.ls34{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.534400pt;}
.ls8c{letter-spacing:-0.529920pt;}
.ls67{letter-spacing:-0.524160pt;}
.ls33{letter-spacing:-0.512000pt;}
.ls88{letter-spacing:-0.471040pt;}
.ls7a{letter-spacing:-0.468480pt;}
.ls44{letter-spacing:-0.448000pt;}
.ls66{letter-spacing:-0.425600pt;}
.ls83{letter-spacing:-0.412160pt;}
.ls53{letter-spacing:-0.384000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.299520pt;}
.ls5{letter-spacing:-0.298240pt;}
.ls87{letter-spacing:-0.294400pt;}
.ls76{letter-spacing:-0.288000pt;}
.ls75{letter-spacing:-0.256000pt;}
.ls57{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.235520pt;}
.lsa{letter-spacing:-0.224640pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls84{letter-spacing:-0.176640pt;}
.lsb{letter-spacing:-0.149760pt;}
.ls6e{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls85{letter-spacing:-0.117760pt;}
.ls7{letter-spacing:-0.106880pt;}
.ls62{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls82{letter-spacing:-0.058880pt;}
.ls63{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls56{letter-spacing:0.048000pt;}
.ls65{letter-spacing:0.053120pt;}
.ls8b{letter-spacing:0.058880pt;}
.ls1b{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.117760pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls7f{letter-spacing:0.138240pt;}
.ls8{letter-spacing:0.149760pt;}
.ls89{letter-spacing:0.176640pt;}
.ls12{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.224640pt;}
.ls5d{letter-spacing:0.235520pt;}
.ls2b{letter-spacing:0.256000pt;}
.ls64{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.294400pt;}
.ls6{letter-spacing:0.298240pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.447360pt;}
.ls24{letter-spacing:0.896000pt;}
.ls22{letter-spacing:1.536000pt;}
.ls49{letter-spacing:2.176000pt;}
.ls23{letter-spacing:2.816000pt;}
.ls6a{letter-spacing:3.456000pt;}
.ls20{letter-spacing:4.096000pt;}
.ls1f{letter-spacing:4.736000pt;}
.ls3a{letter-spacing:6.016000pt;}
.ls21{letter-spacing:6.656000pt;}
.ls40{letter-spacing:7.296000pt;}
.ls3f{letter-spacing:7.936000pt;}
.ls28{letter-spacing:8.576000pt;}
.ls42{letter-spacing:9.216000pt;}
.ls3d{letter-spacing:9.856000pt;}
.ls3e{letter-spacing:10.496000pt;}
.ls5b{letter-spacing:11.136000pt;}
.ls47{letter-spacing:11.776000pt;}
.ls4b{letter-spacing:12.416000pt;}
.ls26{letter-spacing:13.056000pt;}
.ls27{letter-spacing:13.696000pt;}
.ls69{letter-spacing:14.336000pt;}
.ls68{letter-spacing:14.976000pt;}
.ls6d{letter-spacing:15.616000pt;}
.ls73{letter-spacing:16.256000pt;}
.ls77{letter-spacing:17.536000pt;}
.ls3b{letter-spacing:18.176000pt;}
.ls3c{letter-spacing:18.816000pt;}
.ls4d{letter-spacing:19.456000pt;}
.ls6c{letter-spacing:20.096000pt;}
.ls58{letter-spacing:21.376000pt;}
.ls5a{letter-spacing:22.016000pt;}
.ls25{letter-spacing:22.656000pt;}
.ls79{letter-spacing:23.296000pt;}
.ls59{letter-spacing:23.936000pt;}
.ls72{letter-spacing:24.576000pt;}
.ls5c{letter-spacing:25.856000pt;}
.ls45{letter-spacing:27.136000pt;}
.ls71{letter-spacing:27.776000pt;}
.ls4a{letter-spacing:29.696000pt;}
.ls38{letter-spacing:30.976000pt;}
.ls39{letter-spacing:31.616000pt;}
.ls29{letter-spacing:32.896000pt;}
.ls2a{letter-spacing:33.536000pt;}
.ls2e{letter-spacing:34.816000pt;}
.ls2d{letter-spacing:36.736000pt;}
.ls4e{letter-spacing:37.376000pt;}
.ls7d{letter-spacing:39.808000pt;}
.ls48{letter-spacing:39.936000pt;}
.ls4f{letter-spacing:41.216000pt;}
.ls70{letter-spacing:43.776000pt;}
.ls7c{letter-spacing:48.768000pt;}
.ls11{letter-spacing:54.016000pt;}
.ls2c{letter-spacing:56.576000pt;}
.ls15{letter-spacing:70.656000pt;}
.ls3{letter-spacing:79.822080pt;}
.ls13{letter-spacing:80.256000pt;}
.ls14{letter-spacing:90.496000pt;}
.ls16{letter-spacing:96.896000pt;}
.ls1{letter-spacing:130.890240pt;}
.ls8a{letter-spacing:175.521280pt;}
.ws0{word-spacing:-94.392960pt;}
.ws81{word-spacing:-85.272320pt;}
.ws1{word-spacing:-67.334400pt;}
.ws30{word-spacing:-56.576000pt;}
.ws2{word-spacing:-47.399040pt;}
.ws6{word-spacing:-47.099520pt;}
.ws5{word-spacing:-46.949760pt;}
.ws7{word-spacing:-46.126080pt;}
.ws79{word-spacing:-45.442560pt;}
.ws4b{word-spacing:-45.208320pt;}
.ws83{word-spacing:-43.752960pt;}
.ws86{word-spacing:-42.854400pt;}
.ws19{word-spacing:-40.704000pt;}
.ws12{word-spacing:-40.576000pt;}
.ws25{word-spacing:-40.512000pt;}
.ws14{word-spacing:-40.448000pt;}
.ws1a{word-spacing:-40.384000pt;}
.ws15{word-spacing:-40.320000pt;}
.ws17{word-spacing:-40.256000pt;}
.ws4a{word-spacing:-40.192000pt;}
.ws13{word-spacing:-40.064000pt;}
.ws7a{word-spacing:-39.872000pt;}
.ws26{word-spacing:-39.808000pt;}
.ws73{word-spacing:-39.680000pt;}
.ws7f{word-spacing:-39.616000pt;}
.ws27{word-spacing:-39.552000pt;}
.ws45{word-spacing:-39.424000pt;}
.ws48{word-spacing:-39.232000pt;}
.ws23{word-spacing:-39.168000pt;}
.ws24{word-spacing:-39.040000pt;}
.ws87{word-spacing:-37.728000pt;}
.ws64{word-spacing:-37.388800pt;}
.ws68{word-spacing:-37.376000pt;}
.ws8c{word-spacing:-37.271040pt;}
.ws44{word-spacing:-37.248000pt;}
.ws96{word-spacing:-37.212160pt;}
.ws1f{word-spacing:-37.153280pt;}
.ws89{word-spacing:-37.094400pt;}
.ws8f{word-spacing:-36.976640pt;}
.ws88{word-spacing:-36.917760pt;}
.ws8a{word-spacing:-36.741120pt;}
.ws97{word-spacing:-36.623360pt;}
.ws98{word-spacing:-36.328960pt;}
.ws5c{word-spacing:-33.571840pt;}
.ws5a{word-spacing:-33.465600pt;}
.ws74{word-spacing:-31.664640pt;}
.ws5f{word-spacing:-30.048000pt;}
.ws5e{word-spacing:-28.978560pt;}
.ws7c{word-spacing:-25.766400pt;}
.ws42{word-spacing:-24.478080pt;}
.ws11{word-spacing:-23.620480pt;}
.ws20{word-spacing:-23.086080pt;}
.ws21{word-spacing:-22.979200pt;}
.ws47{word-spacing:-21.312000pt;}
.ws36{word-spacing:-21.120000pt;}
.ws43{word-spacing:-21.024000pt;}
.ws3b{word-spacing:-20.448000pt;}
.ws4f{word-spacing:-19.680000pt;}
.ws75{word-spacing:-19.237120pt;}
.ws5d{word-spacing:-18.556160pt;}
.ws50{word-spacing:-18.300800pt;}
.ws82{word-spacing:-17.072640pt;}
.ws4{word-spacing:-16.922880pt;}
.ws3{word-spacing:-16.698240pt;}
.ws70{word-spacing:-16.398720pt;}
.ws6f{word-spacing:-15.799680pt;}
.ws51{word-spacing:-14.784000pt;}
.ws16{word-spacing:-14.656000pt;}
.ws6e{word-spacing:-14.592000pt;}
.ws84{word-spacing:-14.584320pt;}
.ws3f{word-spacing:-14.528000pt;}
.ws18{word-spacing:-14.464000pt;}
.ws61{word-spacing:-14.400000pt;}
.ws3a{word-spacing:-14.336000pt;}
.ws3e{word-spacing:-14.272000pt;}
.ws22{word-spacing:-14.144000pt;}
.ws37{word-spacing:-14.016000pt;}
.ws52{word-spacing:-13.952000pt;}
.ws72{word-spacing:-13.888000pt;}
.ws71{word-spacing:-13.760000pt;}
.ws4e{word-spacing:-13.542400pt;}
.ws80{word-spacing:-13.504000pt;}
.ws90{word-spacing:-13.483520pt;}
.ws9a{word-spacing:-13.424640pt;}
.ws8{word-spacing:-13.306880pt;}
.ws46{word-spacing:-13.248000pt;}
.ws8e{word-spacing:-13.189120pt;}
.ws8b{word-spacing:-13.071360pt;}
.ws8d{word-spacing:-12.894720pt;}
.ws59{word-spacing:-11.952000pt;}
.ws85{word-spacing:-11.456000pt;}
.ws29{word-spacing:-0.320000pt;}
.wsf{word-spacing:-0.294400pt;}
.ws39{word-spacing:-0.256000pt;}
.ws2b{word-spacing:-0.192000pt;}
.ws1c{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.117760pt;}
.ws1e{word-spacing:-0.064000pt;}
.ws4c{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.ws92{word-spacing:0.058880pt;}
.ws34{word-spacing:0.064000pt;}
.ws69{word-spacing:0.096000pt;}
.ws99{word-spacing:0.117760pt;}
.ws1b{word-spacing:0.128000pt;}
.ws6a{word-spacing:0.144000pt;}
.ws91{word-spacing:0.176640pt;}
.ws1d{word-spacing:0.192000pt;}
.wsc{word-spacing:0.224640pt;}
.ws35{word-spacing:0.235520pt;}
.ws4d{word-spacing:0.240000pt;}
.ws77{word-spacing:0.256000pt;}
.ws78{word-spacing:0.288000pt;}
.wsa{word-spacing:0.298240pt;}
.wsb{word-spacing:0.299520pt;}
.ws2e{word-spacing:0.320000pt;}
.ws10{word-spacing:0.353280pt;}
.ws62{word-spacing:0.384000pt;}
.ws94{word-spacing:0.412160pt;}
.ws60{word-spacing:0.425600pt;}
.ws54{word-spacing:0.448000pt;}
.ws7d{word-spacing:0.468480pt;}
.ws2d{word-spacing:0.512000pt;}
.ws65{word-spacing:0.524160pt;}
.ws2f{word-spacing:0.576000pt;}
.ws95{word-spacing:0.588800pt;}
.ws3c{word-spacing:0.672000pt;}
.ws53{word-spacing:0.680960pt;}
.ws6b{word-spacing:0.704000pt;}
.ws67{word-spacing:0.768000pt;}
.ws93{word-spacing:0.824320pt;}
.ws41{word-spacing:0.832000pt;}
.ws32{word-spacing:0.960000pt;}
.ws33{word-spacing:0.961920pt;}
.ws28{word-spacing:1.068800pt;}
.ws6c{word-spacing:1.152000pt;}
.ws49{word-spacing:1.171200pt;}
.ws66{word-spacing:1.216000pt;}
.ws55{word-spacing:1.600000pt;}
.ws40{word-spacing:1.824000pt;}
.ws2c{word-spacing:2.240000pt;}
.ws7b{word-spacing:3.136000pt;}
.ws38{word-spacing:4.160000pt;}
.wse{word-spacing:5.063680pt;}
.ws7e{word-spacing:5.632000pt;}
.ws2a{word-spacing:10.176000pt;}
.ws56{word-spacing:10.816000pt;}
.ws6d{word-spacing:12.928000pt;}
.ws63{word-spacing:22.336000pt;}
.ws57{word-spacing:22.528000pt;}
.ws3d{word-spacing:27.456000pt;}
.ws31{word-spacing:36.672000pt;}
.ws58{word-spacing:74.818667pt;}
.ws5b{word-spacing:177.904213pt;}
.ws76{word-spacing:424.260800pt;}
._26{margin-left:-57.088000pt;}
._27{margin-left:-56.064000pt;}
._d{margin-left:-14.076160pt;}
._e{margin-left:-12.734720pt;}
._11{margin-left:-11.116160pt;}
._8{margin-left:-7.351680pt;}
._f{margin-left:-6.380160pt;}
._12{margin-left:-5.112320pt;}
._3{margin-left:-4.193280pt;}
._10{margin-left:-3.049600pt;}
._1{margin-left:-1.938560pt;}
._2{margin-left:-0.894720pt;}
._0{width:0.894720pt;}
._1e{width:1.923840pt;}
._1d{width:2.916480pt;}
._c{width:3.886080pt;}
._a{width:5.004800pt;}
._b{width:6.123520pt;}
._1a{width:7.422720pt;}
._2f{width:8.344320pt;}
._18{width:9.267840pt;}
._19{width:10.538880pt;}
._1b{width:11.904000pt;}
._47{width:12.818560pt;}
._1c{width:13.714560pt;}
._2e{width:14.999040pt;}
._3a{width:16.147200pt;}
._22{width:17.062400pt;}
._21{width:18.432000pt;}
._31{width:19.834880pt;}
._25{width:21.382400pt;}
._23{width:22.546560pt;}
._24{width:23.521280pt;}
._3f{width:24.803840pt;}
._40{width:26.138880pt;}
._32{width:27.155840pt;}
._33{width:28.177280pt;}
._29{width:29.906560pt;}
._2d{width:30.993280pt;}
._30{width:31.964160pt;}
._1f{width:33.152000pt;}
._20{width:34.350080pt;}
._2c{width:35.380480pt;}
._2a{width:36.670720pt;}
._2b{width:37.577600pt;}
._34{width:39.303680pt;}
._3b{width:41.922560pt;}
._45{width:43.282560pt;}
._46{width:44.194560pt;}
._48{width:45.162880pt;}
._3c{width:46.119680pt;}
._17{width:47.018880pt;}
._16{width:48.146560pt;}
._15{width:49.122560pt;}
._55{width:52.741120pt;}
._43{width:53.754773pt;}
._4a{width:55.232000pt;}
._28{width:56.640000pt;}
._4b{width:58.300160pt;}
._49{width:59.541760pt;}
._4{width:60.711040pt;}
._36{width:61.701760pt;}
._37{width:62.674560pt;}
._50{width:65.251520pt;}
._14{width:66.177280pt;}
._9{width:68.766720pt;}
._39{width:70.369280pt;}
._38{width:71.333120pt;}
._7{width:74.647040pt;}
._54{width:78.036800pt;}
._13{width:83.072000pt;}
._35{width:84.779520pt;}
._41{width:105.710827pt;}
._4c{width:111.744000pt;}
._3d{width:123.391787pt;}
._6{width:130.066560pt;}
._56{width:134.694400pt;}
._52{width:136.980800pt;}
._5{width:171.849600pt;}
._57{width:175.521280pt;}
._53{width:177.112640pt;}
._4d{width:203.760000pt;}
._51{width:289.830080pt;}
._44{width:305.572373pt;}
._3e{width:329.726507pt;}
._4f{width:338.262080pt;}
._4e{width:408.726080pt;}
._42{width:480.144533pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs0{font-size:106.880000pt;}
.fs6{font-size:117.120000pt;}
.fsa{font-size:138.880000pt;}
.fs1{font-size:149.120000pt;}
.y2c4{bottom:-13.760000pt;}
.y0{bottom:0.000000pt;}
.y28e{bottom:4.000000pt;}
.y28c{bottom:4.160000pt;}
.ye7{bottom:15.040000pt;}
.y6e{bottom:16.160000pt;}
.y2c2{bottom:22.080000pt;}
.y18{bottom:35.520000pt;}
.y1b{bottom:51.365760pt;}
.y1a{bottom:69.280000pt;}
.ye6{bottom:88.960000pt;}
.y143{bottom:91.360000pt;}
.y1c2{bottom:95.040000pt;}
.y26e{bottom:95.840000pt;}
.y190{bottom:96.000000pt;}
.y124{bottom:97.440000pt;}
.y58{bottom:98.400000pt;}
.y1b0{bottom:99.200000pt;}
.y2ad{bottom:100.800000pt;}
.y2d4{bottom:101.274880pt;}
.y9f{bottom:103.360000pt;}
.y17e{bottom:108.800000pt;}
.yd0{bottom:110.240000pt;}
.ydb{bottom:113.120000pt;}
.y8b{bottom:113.280000pt;}
.y6c{bottom:114.400000pt;}
.y3a{bottom:117.594880pt;}
.y219{bottom:117.600000pt;}
.y16{bottom:118.720000pt;}
.y257{bottom:120.000000pt;}
.y142{bottom:120.640000pt;}
.y2ac{bottom:121.440000pt;}
.y15c{bottom:122.720000pt;}
.y1c1{bottom:124.320000pt;}
.y26d{bottom:125.120000pt;}
.y18f{bottom:125.280000pt;}
.y123{bottom:126.720000pt;}
.ye5{bottom:126.850667pt;}
.y57{bottom:127.520000pt;}
.y1f5{bottom:127.680000pt;}
.y1af{bottom:128.320000pt;}
.y2d3{bottom:131.347840pt;}
.y23e{bottom:131.360000pt;}
.y9e{bottom:132.640000pt;}
.y17d{bottom:138.080000pt;}
.ycf{bottom:139.520000pt;}
.y2ab{bottom:142.080000pt;}
.y8a{bottom:142.560000pt;}
.y218{bottom:146.720000pt;}
.y39{bottom:147.667840pt;}
.y256{bottom:149.280000pt;}
.ye4{bottom:149.350800pt;}
.y141{bottom:149.920000pt;}
.y230{bottom:152.640000pt;}
.y1c0{bottom:153.600000pt;}
.y6b{bottom:154.400000pt;}
.y18e{bottom:154.560000pt;}
.y127{bottom:155.360000pt;}
.y56{bottom:156.800000pt;}
.y1f4{bottom:156.960000pt;}
.y1ae{bottom:157.760000pt;}
.y122{bottom:159.360000pt;}
.y2d2{bottom:161.273600pt;}
.y15{bottom:161.440000pt;}
.y9d{bottom:161.920000pt;}
.y15b{bottom:162.720000pt;}
.y2aa{bottom:162.880000pt;}
.y17c{bottom:167.360000pt;}
.yce{bottom:168.800000pt;}
.y23d{bottom:171.200000pt;}
.y126{bottom:171.520000pt;}
.y89{bottom:171.840000pt;}
.yfd{bottom:174.880000pt;}
.y38{bottom:177.593600pt;}
.y255{bottom:178.560000pt;}
.y140{bottom:179.200000pt;}
.y22f{bottom:181.760000pt;}
.y1bf{bottom:182.880000pt;}
.y2a9{bottom:183.520000pt;}
.y18d{bottom:183.840000pt;}
.y55{bottom:186.080000pt;}
.y1f3{bottom:186.240000pt;}
.y26c{bottom:186.560000pt;}
.y217{bottom:186.880000pt;}
.y2d1{bottom:191.346560pt;}
.y15a{bottom:191.840000pt;}
.y106{bottom:192.034933pt;}
.y6a{bottom:194.240000pt;}
.y1ff{bottom:195.360000pt;}
.y14{bottom:195.840000pt;}
.y17b{bottom:196.640000pt;}
.y1ad{bottom:197.760000pt;}
.ycd{bottom:198.080000pt;}
.y88{bottom:201.120000pt;}
.yfc{bottom:204.000000pt;}
.y2a8{bottom:204.160000pt;}
.y37{bottom:207.666560pt;}
.y254{bottom:207.840000pt;}
.y13f{bottom:208.480000pt;}
.y9c{bottom:208.960000pt;}
.y23c{bottom:211.200000pt;}
.y1be{bottom:212.160000pt;}
.y18c{bottom:213.280000pt;}
.y54{bottom:215.360000pt;}
.y1f2{bottom:215.520000pt;}
.y26b{bottom:220.800000pt;}
.y2d0{bottom:221.272320pt;}
.y22e{bottom:221.920000pt;}
.y69{bottom:223.520000pt;}
.y2a7{bottom:224.800000pt;}
.y17a{bottom:225.920000pt;}
.y216{bottom:226.720000pt;}
.y1ac{bottom:226.880000pt;}
.ycc{bottom:227.360000pt;}
.y13{bottom:228.501440pt;}
.y87{bottom:230.400000pt;}
.y159{bottom:232.000000pt;}
.y1fe{bottom:235.200000pt;}
.yb6{bottom:235.680000pt;}
.y253{bottom:237.280000pt;}
.y36{bottom:237.592320pt;}
.y13e{bottom:237.760000pt;}
.y1bd{bottom:241.440000pt;}
.y18b{bottom:242.560000pt;}
.yfb{bottom:244.160000pt;}
.y53{bottom:244.640000pt;}
.y1f1{bottom:244.960000pt;}
.y2a6{bottom:245.440000pt;}
.y22d{bottom:251.040000pt;}
.y2cf{bottom:251.198080pt;}
.y23b{bottom:251.200000pt;}
.y68{bottom:252.800000pt;}
.y26a{bottom:253.600000pt;}
.y179{bottom:255.200000pt;}
.y215{bottom:255.840000pt;}
.y1ab{bottom:256.320000pt;}
.y9b{bottom:256.640000pt;}
.y86{bottom:259.680000pt;}
.y158{bottom:261.120000pt;}
.y12{bottom:263.695040pt;}
.y2a5{bottom:266.080000pt;}
.y252{bottom:266.560000pt;}
.y13d{bottom:267.040000pt;}
.y35{bottom:267.518080pt;}
.y1bc{bottom:270.880000pt;}
.y18a{bottom:271.840000pt;}
.yfa{bottom:273.280000pt;}
.y52{bottom:273.920000pt;}
.ydf{bottom:274.891600pt;}
.y1fd{bottom:275.200000pt;}
.yb5{bottom:275.680000pt;}
.y2ce{bottom:281.271040pt;}
.y67{bottom:282.080000pt;}
.y178{bottom:284.480000pt;}
.y1f0{bottom:284.960000pt;}
.y1aa{bottom:285.600000pt;}
.ycb{bottom:286.080000pt;}
.y269{bottom:286.400000pt;}
.y2a4{bottom:286.880000pt;}
.y85{bottom:289.120000pt;}
.yde{bottom:289.615600pt;}
.y157{bottom:290.400000pt;}
.y103{bottom:290.468000pt;}
.y22c{bottom:291.200000pt;}
.y251{bottom:295.840000pt;}
.y214{bottom:296.000000pt;}
.y13c{bottom:296.320000pt;}
.y9a{bottom:296.640000pt;}
.y34{bottom:297.591040pt;}
.y11{bottom:298.888640pt;}
.y1bb{bottom:300.160000pt;}
.y189{bottom:301.120000pt;}
.yf9{bottom:302.560000pt;}
.y51{bottom:303.200000pt;}
.yb4{bottom:304.800000pt;}
.y102{bottom:305.192000pt;}
.y268{bottom:305.920000pt;}
.y2a3{bottom:307.520000pt;}
.y1ef{bottom:310.880000pt;}
.y2cd{bottom:311.196800pt;}
.y66{bottom:311.360000pt;}
.y177{bottom:313.760000pt;}
.y282{bottom:314.072960pt;}
.y1a9{bottom:314.880000pt;}
.y1fc{bottom:315.200000pt;}
.yca{bottom:315.360000pt;}
.y156{bottom:319.680000pt;}
.y84{bottom:323.680000pt;}
.y250{bottom:325.120000pt;}
.y267{bottom:325.440000pt;}
.y99{bottom:325.760000pt;}
.y33{bottom:327.516800pt;}
.y2a2{bottom:328.160000pt;}
.y1ba{bottom:329.440000pt;}
.y188{bottom:330.400000pt;}
.y22b{bottom:331.040000pt;}
.yf8{bottom:331.840000pt;}
.y50{bottom:332.480000pt;}
.yb3{bottom:334.080000pt;}
.y10{bottom:334.250720pt;}
.y213{bottom:336.000000pt;}
.y13b{bottom:336.480000pt;}
.y65{bottom:340.640000pt;}
.y2cc{bottom:341.269760pt;}
.y176{bottom:343.200000pt;}
.ydd{bottom:343.891600pt;}
.y281{bottom:343.998720pt;}
.y1a8{bottom:344.160000pt;}
.yc9{bottom:344.640000pt;}
.y2a1{bottom:348.800000pt;}
.y24f{bottom:354.400000pt;}
.y98{bottom:355.040000pt;}
.y1fb{bottom:355.200000pt;}
.y32{bottom:357.589760pt;}
.y266{bottom:358.400000pt;}
.ydc{bottom:358.615600pt;}
.y1b9{bottom:358.720000pt;}
.y187{bottom:359.680000pt;}
.y155{bottom:359.840000pt;}
.y22a{bottom:360.320000pt;}
.y101{bottom:360.476000pt;}
.yf7{bottom:361.120000pt;}
.y4f{bottom:361.760000pt;}
.yb2{bottom:363.360000pt;}
.y13a{bottom:365.600000pt;}
.y2a0{bottom:369.440000pt;}
.yf{bottom:369.444320pt;}
.y64{bottom:369.920000pt;}
.y23a{bottom:371.040000pt;}
.y2cb{bottom:371.195520pt;}
.y83{bottom:371.520000pt;}
.y175{bottom:372.480000pt;}
.yc8{bottom:373.920000pt;}
.y280{bottom:374.071680pt;}
.y100{bottom:375.200000pt;}
.y212{bottom:376.000000pt;}
.y24e{bottom:383.680000pt;}
.y97{bottom:384.320000pt;}
.y1ee{bottom:384.960000pt;}
.y31{bottom:387.515520pt;}
.y1b8{bottom:388.000000pt;}
.y154{bottom:388.960000pt;}
.y29f{bottom:390.080000pt;}
.yf6{bottom:390.400000pt;}
.y4e{bottom:391.200000pt;}
.yb1{bottom:392.640000pt;}
.y139{bottom:394.880000pt;}
.y1fa{bottom:395.040000pt;}
.ye1{bottom:396.883600pt;}
.y19a{bottom:399.840000pt;}
.y229{bottom:400.320000pt;}
.y265{bottom:400.960000pt;}
.y2ca{bottom:401.268480pt;}
.y174{bottom:401.760000pt;}
.y27f{bottom:403.997440pt;}
.ye{bottom:404.637920pt;}
.y211{bottom:405.120000pt;}
.y63{bottom:410.080000pt;}
.y6d{bottom:410.720000pt;}
.y29e{bottom:410.880000pt;}
.y239{bottom:411.040000pt;}
.y82{bottom:411.360000pt;}
.ye0{bottom:411.607600pt;}
.y24d{bottom:412.960000pt;}
.y1a7{bottom:413.440000pt;}
.y96{bottom:413.600000pt;}
.yc7{bottom:414.080000pt;}
.y1b7{bottom:417.280000pt;}
.y30{bottom:417.588480pt;}
.y153{bottom:418.240000pt;}
.yf5{bottom:419.680000pt;}
.y4d{bottom:420.480000pt;}
.yb0{bottom:421.920000pt;}
.y199{bottom:428.960000pt;}
.y228{bottom:429.440000pt;}
.y264{bottom:430.240000pt;}
.y2c9{bottom:431.194240pt;}
.y29d{bottom:431.520000pt;}
.ye3{bottom:432.883600pt;}
.y27e{bottom:433.923200pt;}
.y138{bottom:435.040000pt;}
.yd{bottom:440.000000pt;}
.y81{bottom:440.640000pt;}
.y173{bottom:441.920000pt;}
.y24c{bottom:442.240000pt;}
.y1a6{bottom:442.720000pt;}
.y95{bottom:442.880000pt;}
.y1ed{bottom:443.360000pt;}
.y210{bottom:445.280000pt;}
.y62{bottom:445.600000pt;}
.y1b6{bottom:446.560000pt;}
.y105{bottom:447.464000pt;}
.y2f{bottom:447.514240pt;}
.y152{bottom:447.520000pt;}
.ye2{bottom:447.607600pt;}
.yf4{bottom:448.960000pt;}
.y4c{bottom:449.760000pt;}
.yc6{bottom:450.240000pt;}
.y238{bottom:451.040000pt;}
.yaf{bottom:451.200000pt;}
.y29c{bottom:452.160000pt;}
.yff{bottom:453.476000pt;}
.y198{bottom:458.240000pt;}
.y263{bottom:459.680000pt;}
.y2c8{bottom:461.120000pt;}
.y104{bottom:462.188000pt;}
.y27d{bottom:463.996160pt;}
.y137{bottom:464.160000pt;}
.yfe{bottom:468.200000pt;}
.y227{bottom:469.600000pt;}
.y80{bottom:469.920000pt;}
.y172{bottom:471.040000pt;}
.y24b{bottom:471.520000pt;}
.y1a5{bottom:472.000000pt;}
.y94{bottom:472.160000pt;}
.y1ec{bottom:472.640000pt;}
.y29b{bottom:472.800000pt;}
.y20f{bottom:474.400000pt;}
.y1f9{bottom:475.040000pt;}
.y2c7{bottom:475.680000pt;}
.y1b5{bottom:475.840000pt;}
.y186{bottom:476.960000pt;}
.y2e{bottom:477.440000pt;}
.yc{bottom:478.217280pt;}
.yf3{bottom:478.400000pt;}
.y4b{bottom:479.040000pt;}
.yae{bottom:480.480000pt;}
.y197{bottom:487.520000pt;}
.y151{bottom:487.680000pt;}
.y262{bottom:488.960000pt;}
.y237{bottom:491.040000pt;}
.y136{bottom:493.440000pt;}
.y27c{bottom:493.921920pt;}
.y2c6{bottom:496.320000pt;}
.yc5{bottom:497.920000pt;}
.y7f{bottom:499.200000pt;}
.y171{bottom:500.320000pt;}
.y1a4{bottom:501.280000pt;}
.y93{bottom:501.440000pt;}
.y1eb{bottom:501.920000pt;}
.y24a{bottom:503.840000pt;}
.y2d{bottom:504.000000pt;}
.y1f8{bottom:504.160000pt;}
.y1b4{bottom:505.120000pt;}
.yda{bottom:505.920000pt;}
.y185{bottom:506.240000pt;}
.yf2{bottom:507.680000pt;}
.y4a{bottom:508.320000pt;}
.y226{bottom:509.600000pt;}
.yad{bottom:509.760000pt;}
.y121{bottom:513.760000pt;}
.y29a{bottom:514.080000pt;}
.y20e{bottom:514.560000pt;}
.y150{bottom:516.800000pt;}
.y2c5{bottom:516.960000pt;}
.y261{bottom:518.240000pt;}
.y236{bottom:520.160000pt;}
.y135{bottom:522.880000pt;}
.yb{bottom:523.988640pt;}
.y27b{bottom:523.994880pt;}
.y7e{bottom:528.480000pt;}
.y170{bottom:529.600000pt;}
.y92{bottom:530.720000pt;}
.y1ea{bottom:531.200000pt;}
.y2c{bottom:531.680000pt;}
.y1a3{bottom:532.640000pt;}
.y1f7{bottom:533.440000pt;}
.y1b3{bottom:534.400000pt;}
.y299{bottom:534.880000pt;}
.yd9{bottom:535.040000pt;}
.y184{bottom:535.520000pt;}
.yf1{bottom:536.960000pt;}
.y49{bottom:537.600000pt;}
.yc4{bottom:537.920000pt;}
.y225{bottom:538.720000pt;}
.yac{bottom:539.200000pt;}
.y20d{bottom:543.680000pt;}
.y14f{bottom:546.080000pt;}
.y260{bottom:547.520000pt;}
.y249{bottom:547.680000pt;}
.y120{bottom:548.960000pt;}
.y27a{bottom:553.920640pt;}
.y1a2{bottom:554.400000pt;}
.y298{bottom:555.520000pt;}
.y2c3{bottom:558.240000pt;}
.y16f{bottom:558.880000pt;}
.y2b{bottom:559.520000pt;}
.y235{bottom:560.160000pt;}
.y1e9{bottom:560.640000pt;}
.y1f6{bottom:562.720000pt;}
.y134{bottom:562.880000pt;}
.yd8{bottom:564.320000pt;}
.y1b2{bottom:565.920000pt;}
.yf0{bottom:566.240000pt;}
.y48{bottom:566.880000pt;}
.yab{bottom:568.480000pt;}
.y7d{bottom:568.640000pt;}
.ya{bottom:569.760000pt;}
.y20c{bottom:572.960000pt;}
.y11f{bottom:574.720000pt;}
.y14e{bottom:575.520000pt;}
.y183{bottom:575.680000pt;}
.y297{bottom:576.160000pt;}
.y25f{bottom:576.800000pt;}
.y248{bottom:576.960000pt;}
.y91{bottom:577.920000pt;}
.y224{bottom:578.880000pt;}
.y279{bottom:583.993600pt;}
.y2a{bottom:587.200000pt;}
.y16e{bottom:588.160000pt;}
.y234{bottom:589.440000pt;}
.y1e8{bottom:589.920000pt;}
.y2df{bottom:590.133760pt;}
.y133{bottom:592.000000pt;}
.yd7{bottom:593.600000pt;}
.yef{bottom:595.520000pt;}
.y47{bottom:596.160000pt;}
.y296{bottom:596.800000pt;}
.y7c{bottom:597.760000pt;}
.y1b1{bottom:600.320000pt;}
.y14d{bottom:604.800000pt;}
.y25e{bottom:606.080000pt;}
.y247{bottom:606.240000pt;}
.yc3{bottom:607.040000pt;}
.y2de{bottom:608.048000pt;}
.y1a1{bottom:612.160000pt;}
.y20b{bottom:613.120000pt;}
.y278{bottom:613.919360pt;}
.y1e1{bottom:613.968267pt;}
.y29{bottom:614.880000pt;}
.y2c1{bottom:615.360000pt;}
.y16d{bottom:617.440000pt;}
.y233{bottom:618.720000pt;}
.y223{bottom:618.880000pt;}
.y1e7{bottom:619.200000pt;}
.y9{bottom:619.500800pt;}
.y132{bottom:621.440000pt;}
.yd6{bottom:622.880000pt;}
.yee{bottom:624.800000pt;}
.y46{bottom:625.440000pt;}
.y90{bottom:625.600000pt;}
.ya0{bottom:626.720000pt;}
.y7b{bottom:627.040000pt;}
.y14c{bottom:634.080000pt;}
.y25d{bottom:635.360000pt;}
.y246{bottom:635.680000pt;}
.y2c0{bottom:636.160000pt;}
.yc2{bottom:636.320000pt;}
.y1e0{bottom:636.468400pt;}
.y295{bottom:638.080000pt;}
.y11e{bottom:641.120000pt;}
.y20a{bottom:642.240000pt;}
.y28{bottom:642.720000pt;}
.y277{bottom:643.845120pt;}
.y2dd{bottom:645.642880pt;}
.y222{bottom:648.000000pt;}
.y1e6{bottom:648.480000pt;}
.y17f{bottom:650.400000pt;}
.y131{bottom:650.720000pt;}
.y1a0{bottom:650.880000pt;}
.yd5{bottom:652.160000pt;}
.y125{bottom:652.480000pt;}
.yed{bottom:654.080000pt;}
.y45{bottom:654.880000pt;}
.yaa{bottom:656.320000pt;}
.y2bf{bottom:656.800000pt;}
.y16c{bottom:657.600000pt;}
.y294{bottom:658.880000pt;}
.y1df{bottom:658.968533pt;}
.y8f{bottom:661.120000pt;}
.y14b{bottom:663.360000pt;}
.y25c{bottom:664.640000pt;}
.y245{bottom:664.960000pt;}
.yc1{bottom:665.600000pt;}
.y7a{bottom:667.200000pt;}
.y8{bottom:668.784960pt;}
.y27{bottom:670.400000pt;}
.y276{bottom:673.918080pt;}
.y221{bottom:677.280000pt;}
.y2be{bottom:677.440000pt;}
.y1e5{bottom:677.760000pt;}
.y293{bottom:679.520000pt;}
.y130{bottom:680.000000pt;}
.y11d{bottom:680.960000pt;}
.y1de{bottom:681.468800pt;}
.yd4{bottom:681.600000pt;}
.y209{bottom:682.240000pt;}
.y2dc{bottom:683.075840pt;}
.yec{bottom:683.360000pt;}
.y11c{bottom:683.646800pt;}
.y44{bottom:684.160000pt;}
.ya9{bottom:685.600000pt;}
.y16b{bottom:686.501467pt;}
.y232{bottom:688.160000pt;}
.y14a{bottom:692.640000pt;}
.y25b{bottom:693.920000pt;}
.y244{bottom:694.240000pt;}
.yc0{bottom:694.880000pt;}
.y79{bottom:696.320000pt;}
.y2bd{bottom:698.080000pt;}
.y26{bottom:698.240000pt;}
.y292{bottom:700.160000pt;}
.y275{bottom:703.843840pt;}
.y1dd{bottom:703.968800pt;}
.y1e4{bottom:707.040000pt;}
.y16a{bottom:709.001600pt;}
.y12f{bottom:709.280000pt;}
.y208{bottom:711.360000pt;}
.yeb{bottom:712.640000pt;}
.y43{bottom:713.440000pt;}
.ya8{bottom:714.880000pt;}
.y231{bottom:717.280000pt;}
.y220{bottom:717.440000pt;}
.y7{bottom:717.920000pt;}
.y2bc{bottom:718.720000pt;}
.y2db{bottom:720.670720pt;}
.y291{bottom:720.800000pt;}
.yd3{bottom:721.600000pt;}
.y149{bottom:721.920000pt;}
.ybf{bottom:724.160000pt;}
.y78{bottom:725.600000pt;}
.y25{bottom:725.920000pt;}
.y25a{bottom:726.250880pt;}
.y243{bottom:726.400000pt;}
.y169{bottom:731.501733pt;}
.y61{bottom:732.480000pt;}
.y274{bottom:733.916800pt;}
.y1e3{bottom:736.320000pt;}
.y1c6{bottom:738.005200pt;}
.y19f{bottom:738.560000pt;}
.y2bb{bottom:739.360000pt;}
.y290{bottom:741.440000pt;}
.yea{bottom:741.920000pt;}
.y42{bottom:742.720000pt;}
.ya7{bottom:744.160000pt;}
.yd2{bottom:745.440000pt;}
.y21f{bottom:746.560000pt;}
.y12e{bottom:749.440000pt;}
.y148{bottom:751.200000pt;}
.y207{bottom:751.520000pt;}
.y1c5{bottom:752.729200pt;}
.ybe{bottom:753.440000pt;}
.y24{bottom:753.600000pt;}
.y182{bottom:754.560000pt;}
.y2da{bottom:758.103680pt;}
.y259{bottom:759.687680pt;}
.y2ba{bottom:760.160000pt;}
.y242{bottom:760.480000pt;}
.y60{bottom:761.600000pt;}
.y28f{bottom:762.080000pt;}
.y273{bottom:763.842560pt;}
.y77{bottom:765.760000pt;}
.y19e{bottom:767.840000pt;}
.y41{bottom:772.000000pt;}
.ya6{bottom:773.440000pt;}
.y6{bottom:773.702560pt;}
.y12d{bottom:778.560000pt;}
.y147{bottom:780.480000pt;}
.y206{bottom:780.640000pt;}
.y2b9{bottom:780.800000pt;}
.y23{bottom:781.440000pt;}
.ybd{bottom:782.720000pt;}
.y28d{bottom:782.880000pt;}
.y21e{bottom:786.720000pt;}
.y1e2{bottom:789.600000pt;}
.y5f{bottom:790.880000pt;}
.y258{bottom:793.280000pt;}
.y272{bottom:793.915520pt;}
.y76{bottom:794.880000pt;}
.ye9{bottom:795.200000pt;}
.y2d9{bottom:795.698560pt;}
.y19d{bottom:797.120000pt;}
.y181{bottom:797.280000pt;}
.y107{bottom:798.377067pt;}
.y112{bottom:798.390347pt;}
.y166{bottom:798.530400pt;}
.y40{bottom:801.280000pt;}
.y2b8{bottom:801.440000pt;}
.y164{bottom:801.530400pt;}
.y241{bottom:801.625280pt;}
.ya5{bottom:802.720000pt;}
.y28b{bottom:803.520000pt;}
.y12c{bottom:807.840000pt;}
.y22{bottom:809.120000pt;}
.y196{bottom:809.760000pt;}
.y1c8{bottom:811.001200pt;}
.yd1{bottom:811.200000pt;}
.ybc{bottom:812.000000pt;}
.y165{bottom:813.254400pt;}
.y146{bottom:813.280000pt;}
.y21d{bottom:815.840000pt;}
.y163{bottom:816.254400pt;}
.y108{bottom:819.478987pt;}
.y5{bottom:819.634240pt;}
.y5e{bottom:820.160000pt;}
.y205{bottom:820.800000pt;}
.y113{bottom:821.829547pt;}
.y2b7{bottom:822.080000pt;}
.y271{bottom:823.841280pt;}
.y75{bottom:824.160000pt;}
.y1c7{bottom:825.725200pt;}
.y288{bottom:826.240000pt;}
.y19c{bottom:826.400000pt;}
.y162{bottom:829.538400pt;}
.y3f{bottom:830.560000pt;}
.y285{bottom:832.467840pt;}
.y2d8{bottom:833.131520pt;}
.y21{bottom:836.960000pt;}
.y12b{bottom:837.120000pt;}
.y180{bottom:837.280000pt;}
.ya4{bottom:837.440000pt;}
.y195{bottom:839.040000pt;}
.y109{bottom:840.580907pt;}
.ybb{bottom:841.440000pt;}
.y2b6{bottom:842.720000pt;}
.y161{bottom:844.262400pt;}
.y21c{bottom:845.120000pt;}
.y114{bottom:845.268747pt;}
.y240{bottom:847.212640pt;}
.y28a{bottom:849.276160pt;}
.y5d{bottom:849.440000pt;}
.y284{bottom:851.515520pt;}
.y74{bottom:853.440000pt;}
.y270{bottom:853.767040pt;}
.y19b{bottom:855.680000pt;}
.y145{bottom:855.840000pt;}
.ye8{bottom:856.000000pt;}
.y1ca{bottom:856.001200pt;}
.y3e{bottom:859.840000pt;}
.y204{bottom:860.800000pt;}
.y10a{bottom:861.682827pt;}
.y2b5{bottom:863.360000pt;}
.y20{bottom:864.640000pt;}
.y4{bottom:865.405600pt;}
.y12a{bottom:866.400000pt;}
.y287{bottom:867.000960pt;}
.y194{bottom:868.480000pt;}
.y115{bottom:868.707947pt;}
.y289{bottom:869.280640pt;}
.y286{bottom:869.886080pt;}
.yba{bottom:870.720000pt;}
.y1c9{bottom:870.725200pt;}
.y2d7{bottom:870.726400pt;}
.y1cc{bottom:874.997200pt;}
.y283{bottom:875.200000pt;}
.y5c{bottom:878.720000pt;}
.y73{bottom:882.720000pt;}
.y10b{bottom:882.784747pt;}
.y26f{bottom:883.840000pt;}
.y2b4{bottom:884.160000pt;}
.ya3{bottom:885.120000pt;}
.y1c4{bottom:887.009200pt;}
.y3d{bottom:889.120000pt;}
.y1cb{bottom:889.721200pt;}
.y203{bottom:889.920000pt;}
.y116{bottom:892.160427pt;}
.y1f{bottom:892.320000pt;}
.y23f{bottom:892.800000pt;}
.y1ce{bottom:892.997200pt;}
.y129{bottom:895.680000pt;}
.y144{bottom:895.840000pt;}
.y160{bottom:898.538400pt;}
.y193{bottom:901.120000pt;}
.y1c3{bottom:901.733200pt;}
.y10c{bottom:903.886667pt;}
.y2b3{bottom:904.800000pt;}
.y1cd{bottom:907.721200pt;}
.y5b{bottom:908.000000pt;}
.y2d6{bottom:908.159360pt;}
.yb9{bottom:910.720000pt;}
.y3{bottom:911.176960pt;}
.y72{bottom:912.000000pt;}
.y15f{bottom:913.262400pt;}
.y21b{bottom:914.400000pt;}
.y1d0{bottom:914.993200pt;}
.y117{bottom:915.599627pt;}
.y3c{bottom:918.400000pt;}
.y202{bottom:919.200000pt;}
.y1e{bottom:920.160000pt;}
.y128{bottom:924.960000pt;}
.y10d{bottom:924.988587pt;}
.ya2{bottom:925.120000pt;}
.y2b2{bottom:925.440000pt;}
.y17{bottom:925.920000pt;}
.y168{bottom:927.014400pt;}
.y1d2{bottom:928.985200pt;}
.y1cf{bottom:929.717200pt;}
.yb8{bottom:934.560000pt;}
.y118{bottom:939.038827pt;}
.y1d4{bottom:939.977200pt;}
.y71{bottom:941.280000pt;}
.y167{bottom:941.738400pt;}
.y19{bottom:942.080000pt;}
.y5a{bottom:942.720000pt;}
.y21a{bottom:943.680000pt;}
.y1d1{bottom:943.709200pt;}
.y192{bottom:943.840000pt;}
.y2d5{bottom:945.754240pt;}
.y2b1{bottom:946.080000pt;}
.y10e{bottom:946.090507pt;}
.y1d{bottom:947.840000pt;}
.y1dc{bottom:949.949200pt;}
.y1d6{bottom:950.969200pt;}
.ya1{bottom:954.240000pt;}
.y8e{bottom:954.400000pt;}
.y1d3{bottom:954.701200pt;}
.y2{bottom:956.948320pt;}
.y201{bottom:959.360000pt;}
.y119{bottom:962.491307pt;}
.y1d5{bottom:965.693200pt;}
.y2b0{bottom:966.720000pt;}
.y10f{bottom:967.192427pt;}
.y70{bottom:970.560000pt;}
.y1d9{bottom:970.961200pt;}
.y1c{bottom:975.680000pt;}
.y1db{bottom:975.953200pt;}
.y3b{bottom:979.200000pt;}
.y59{bottom:981.760000pt;}
.y8d{bottom:983.520000pt;}
.y191{bottom:983.680000pt;}
.y11a{bottom:985.930507pt;}
.y1d8{bottom:985.961200pt;}
.y2af{bottom:987.360000pt;}
.y15e{bottom:987.542400pt;}
.y110{bottom:988.294347pt;}
.y1da{bottom:990.677200pt;}
.y200{bottom:1000.160000pt;}
.yb7{bottom:1000.320000pt;}
.y1d7{bottom:1000.685200pt;}
.y15d{bottom:1002.266400pt;}
.y1{bottom:1002.880000pt;}
.y6f{bottom:1005.280000pt;}
.y2ae{bottom:1008.160000pt;}
.y11b{bottom:1009.369707pt;}
.y111{bottom:1009.396267pt;}
.y8c{bottom:1012.960000pt;}
.h23{height:19.998667pt;}
.h22{height:20.000000pt;}
.h16{height:26.400000pt;}
.h10{height:29.920000pt;}
.h1b{height:32.812500pt;}
.h24{height:35.840000pt;}
.h19{height:36.312500pt;}
.h15{height:38.062500pt;}
.h14{height:38.812500pt;}
.hb{height:40.250000pt;}
.h1a{height:42.122500pt;}
.h7{height:43.750000pt;}
.h9{height:46.690000pt;}
.h20{height:47.250000pt;}
.ha{height:47.610000pt;}
.h8{height:49.280000pt;}
.hd{height:50.750000pt;}
.h6{height:51.187500pt;}
.h1e{height:54.810000pt;}
.h17{height:58.187500pt;}
.h5{height:59.377500pt;}
.h1d{height:60.547500pt;}
.hf{height:65.625000pt;}
.h1f{height:66.750000pt;}
.h2{height:73.062500pt;}
.h11{height:80.062500pt;}
.h4{height:84.752500pt;}
.h18{height:88.777500pt;}
.h13{height:100.125000pt;}
.h1c{height:110.127500pt;}
.he{height:111.472500pt;}
.h3{height:118.247500pt;}
.h12{height:122.152500pt;}
.h21{height:171.040000pt;}
.hc{height:1122.548000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:27.840000pt;}
.w18{width:28.160000pt;}
.wd{width:38.720000pt;}
.w15{width:39.040000pt;}
.w8{width:44.640000pt;}
.we{width:44.960000pt;}
.w16{width:45.281333pt;}
.wa{width:52.960000pt;}
.w12{width:53.280000pt;}
.wc{width:59.680000pt;}
.w14{width:60.000000pt;}
.wb{width:66.400000pt;}
.w13{width:66.720000pt;}
.wf{width:98.400000pt;}
.w17{width:98.718667pt;}
.w9{width:164.640000pt;}
.w11{width:165.280000pt;}
.w19{width:179.358667pt;}
.w5{width:218.238667pt;}
.w4{width:218.240000pt;}
.w7{width:218.400000pt;}
.w2{width:291.520000pt;}
.w6{width:465.920000pt;}
.w3{width:793.746667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5a{left:4.320000pt;}
.x6a{left:5.280000pt;}
.x68{left:6.400000pt;}
.x5c{left:7.840000pt;}
.x4{left:9.600000pt;}
.x66{left:12.320000pt;}
.x70{left:14.080000pt;}
.x6b{left:15.040000pt;}
.x62{left:17.760000pt;}
.x6e{left:19.360000pt;}
.x63{left:20.960000pt;}
.x6f{left:22.560000pt;}
.x69{left:24.640000pt;}
.x56{left:27.040000pt;}
.x60{left:28.320000pt;}
.x6d{left:29.920000pt;}
.x5e{left:31.680000pt;}
.x6c{left:33.440000pt;}
.x73{left:43.360000pt;}
.x72{left:48.640000pt;}
.x29{left:59.040000pt;}
.x3{left:88.160000pt;}
.x5{left:97.760000pt;}
.x71{left:106.400000pt;}
.x26{left:148.662400pt;}
.x1{left:151.200000pt;}
.x25{left:155.421920pt;}
.xb{left:159.040000pt;}
.x4a{left:169.440000pt;}
.x24{left:175.700480pt;}
.x4b{left:183.520000pt;}
.x19{left:185.120000pt;}
.x6{left:189.120000pt;}
.x4d{left:190.560000pt;}
.x49{left:196.000000pt;}
.x74{left:197.600000pt;}
.x4e{left:199.200000pt;}
.x3f{left:200.153200pt;}
.x3e{left:204.629200pt;}
.x7{left:208.800000pt;}
.xc{left:210.720000pt;}
.x8{left:213.120000pt;}
.x40{left:216.161200pt;}
.x4c{left:217.440000pt;}
.xd{left:218.720000pt;}
.x36{left:220.000000pt;}
.x4f{left:223.200000pt;}
.x3d{left:226.145200pt;}
.x1a{left:231.200000pt;}
.xe{left:237.120000pt;}
.x48{left:238.258000pt;}
.x28{left:241.120000pt;}
.x41{left:245.645200pt;}
.x50{left:247.200000pt;}
.x22{left:252.321333pt;}
.x18{left:255.479200pt;}
.x3c{left:258.137200pt;}
.x13{left:260.109200pt;}
.x3b{left:262.613200pt;}
.x12{left:264.585200pt;}
.x15{left:266.121200pt;}
.x75{left:269.607680pt;}
.x14{left:270.597200pt;}
.x35{left:272.449333pt;}
.x34{left:276.769333pt;}
.x43{left:286.169200pt;}
.x42{left:290.645200pt;}
.x51{left:295.200000pt;}
.x44{left:313.181200pt;}
.x5b{left:315.840000pt;}
.x27{left:322.587200pt;}
.x46{left:336.185200pt;}
.x21{left:337.969333pt;}
.x45{left:340.661200pt;}
.x20{left:342.289333pt;}
.x52{left:346.877440pt;}
.x9{left:354.080000pt;}
.x3a{left:355.121200pt;}
.x17{left:357.129200pt;}
.x1f{left:358.285333pt;}
.x39{left:359.597200pt;}
.x16{left:361.605200pt;}
.x5d{left:369.120000pt;}
.x47{left:400.193200pt;}
.x33{left:405.925333pt;}
.x53{left:406.876160pt;}
.x32{left:410.245333pt;}
.x2{left:425.267040pt;}
.x5f{left:435.840000pt;}
.x31{left:454.921333pt;}
.x30{left:459.241333pt;}
.x76{left:463.396480pt;}
.x1c{left:467.953333pt;}
.x54{left:470.231040pt;}
.x1b{left:472.273333pt;}
.x2b{left:479.917333pt;}
.x2a{left:487.273333pt;}
.x61{left:495.840000pt;}
.x2f{left:519.913333pt;}
.x2e{left:524.233333pt;}
.x11{left:530.097200pt;}
.x10{left:534.573200pt;}
.x1e{left:540.961333pt;}
.x1d{left:545.281333pt;}
.x2d{left:560.917333pt;}
.x55{left:561.920000pt;}
.x38{left:563.117200pt;}
.x2c{left:568.273333pt;}
.x64{left:580.160000pt;}
.xf{left:631.200000pt;}
.x57{left:633.920000pt;}
.x23{left:645.666400pt;}
.x65{left:678.880000pt;}
.x58{left:697.274880pt;}
.xa{left:699.200000pt;}
.x67{left:707.040000pt;}
.x37{left:708.160000pt;}
.x59{left:725.434240pt;}
}




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