
    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_fbf59b44fa14a68891792076.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_800da6fd39052f52ef8b995b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101562;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_7a4e4505f6962863c60d22a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_beb4d864658fc0903672954f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_1a8cd2f566bab9870caef876.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1fbb6a328d411ddb7c3bed61.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c2a0a12472d4a07fc3ddb148.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b5cdfa4e17cef95f515489a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.092773;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_152b1aba6268118a2c23d7f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102539;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_344e1c37722fd521f2f92b34.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7618a89b06bed6ab1112ed1e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1f4b81f877952712d2cf084b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4cd29c9e6397b965020a0673.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fa4083d297337cdeefbc6259.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-34.541280px;}
.v1{vertical-align:-5.760000px;}
.v7{vertical-align:-1.733040px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.346560px;}
.v9{vertical-align:7.709040px;}
.v8{vertical-align:10.338480px;}
.v6{vertical-align:14.222880px;}
.v5{vertical-align:21.453840px;}
.v2{vertical-align:41.040000px;}
.v3{vertical-align:82.800000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.926640px;}
.lsd{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.702000px;}
.ls55{letter-spacing:-0.673920px;}
.ls37{letter-spacing:-0.597600px;}
.ls41{letter-spacing:-0.486000px;}
.ls40{letter-spacing:-0.378000px;}
.ls50{letter-spacing:-0.336960px;}
.ls1c{letter-spacing:-0.289440px;}
.ls9{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.287280px;}
.ls3b{letter-spacing:-0.270000px;}
.ls2c{letter-spacing:-0.239040px;}
.lsc{letter-spacing:-0.216000px;}
.ls3a{letter-spacing:-0.179280px;}
.ls3f{letter-spacing:-0.162000px;}
.lsa{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.119520px;}
.ls3e{letter-spacing:-0.108000px;}
.ls2b{letter-spacing:-0.072000px;}
.ls2d{letter-spacing:-0.059760px;}
.ls42{letter-spacing:-0.054000px;}
.ls7{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.036000px;}
.ls3c{letter-spacing:0.054000px;}
.ls29{letter-spacing:0.059760px;}
.ls5{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.173304px;}
.ls35{letter-spacing:0.179280px;}
.ls36{letter-spacing:0.216000px;}
.ls30{letter-spacing:0.239040px;}
.ls18{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.336960px;}
.ls27{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.383040px;}
.ls65{letter-spacing:0.504000px;}
.ls66{letter-spacing:0.576000px;}
.ls1{letter-spacing:0.720000px;}
.lse{letter-spacing:0.727200px;}
.ls54{letter-spacing:1.440000px;}
.ls4{letter-spacing:2.160000px;}
.ls12{letter-spacing:2.880000px;}
.ls6{letter-spacing:3.600000px;}
.ls11{letter-spacing:4.320000px;}
.ls4c{letter-spacing:5.040000px;}
.ls43{letter-spacing:5.760000px;}
.ls61{letter-spacing:6.480000px;}
.ls5d{letter-spacing:7.200000px;}
.ls59{letter-spacing:7.920000px;}
.ls19{letter-spacing:8.640000px;}
.ls17{letter-spacing:9.360000px;}
.ls13{letter-spacing:10.080000px;}
.ls58{letter-spacing:10.800000px;}
.ls60{letter-spacing:11.520000px;}
.ls39{letter-spacing:12.240000px;}
.ls10{letter-spacing:12.960000px;}
.ls3{letter-spacing:14.400000px;}
.ls53{letter-spacing:15.120000px;}
.ls38{letter-spacing:15.840000px;}
.ls56{letter-spacing:17.280000px;}
.ls5f{letter-spacing:18.720000px;}
.ls63{letter-spacing:20.160000px;}
.ls4f{letter-spacing:21.600000px;}
.ls62{letter-spacing:22.320000px;}
.lsf{letter-spacing:23.040000px;}
.ls5b{letter-spacing:23.760000px;}
.ls46{letter-spacing:25.920000px;}
.ls51{letter-spacing:28.080000px;}
.ls49{letter-spacing:28.800000px;}
.ls52{letter-spacing:29.520000px;}
.ls5c{letter-spacing:30.960000px;}
.ls2{letter-spacing:38.880000px;}
.ls5a{letter-spacing:44.640000px;}
.ls4b{letter-spacing:45.360000px;}
.ls15{letter-spacing:46.080000px;}
.ls5e{letter-spacing:59.904000px;}
.ls26{letter-spacing:64.224000px;}
.ls14{letter-spacing:64.800000px;}
.ls57{letter-spacing:95.904000px;}
.ls1f{letter-spacing:132.480000px;}
.ls1e{letter-spacing:140.400000px;}
.ls4a{letter-spacing:161.352000px;}
.ls48{letter-spacing:180.900000px;}
.ls45{letter-spacing:220.752000px;}
.ls24{letter-spacing:239.040000px;}
.ls64{letter-spacing:267.840000px;}
.ls4d{letter-spacing:284.400000px;}
.ls4e{letter-spacing:286.560000px;}
.ls25{letter-spacing:308.160000px;}
.ls31{letter-spacing:310.320000px;}
.ls23{letter-spacing:363.600000px;}
.ls47{letter-spacing:391.009680px;}
.ls44{letter-spacing:392.563440px;}
.ls33{letter-spacing:403.200000px;}
.ls32{letter-spacing:552.960000px;}
.ls20{letter-spacing:555.120000px;}
.ls34{letter-spacing:567.360000px;}
.ls21{letter-spacing:606.960000px;}
.ls22{letter-spacing:637.200000px;}
.ls2a{letter-spacing:846.000000px;}
.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;}
}
.ws86{word-spacing:-232.956000px;}
.ws8d{word-spacing:-193.104000px;}
.ws94{word-spacing:-173.556000px;}
.ws1{word-spacing:-23.940000px;}
.ws9f{word-spacing:-20.723040px;}
.wsac{word-spacing:-20.386080px;}
.ws5f{word-spacing:-18.720000px;}
.ws51{word-spacing:-18.288000px;}
.ws5c{word-spacing:-18.216000px;}
.ws1f{word-spacing:-18.144000px;}
.wsa3{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws50{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.wsc5{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.560000px;}
.ws52{word-spacing:-15.298560px;}
.ws5d{word-spacing:-14.700960px;}
.ws5e{word-spacing:-14.342400px;}
.ws6c{word-spacing:-13.505760px;}
.ws71{word-spacing:-12.258000px;}
.ws72{word-spacing:-12.150000px;}
.ws3f{word-spacing:-12.060000px;}
.ws73{word-spacing:-11.934000px;}
.ws17{word-spacing:-4.320000px;}
.ws2e{word-spacing:-4.032000px;}
.ws82{word-spacing:-3.744000px;}
.ws18{word-spacing:-3.600000px;}
.ws81{word-spacing:-3.312000px;}
.ws62{word-spacing:-3.024000px;}
.wsb8{word-spacing:-2.952000px;}
.ws63{word-spacing:-2.880000px;}
.wsb7{word-spacing:-2.736000px;}
.wsb3{word-spacing:-2.592000px;}
.ws48{word-spacing:-2.304000px;}
.ws36{word-spacing:-2.160000px;}
.wsc4{word-spacing:-2.016000px;}
.wse1{word-spacing:-1.944000px;}
.ws64{word-spacing:-1.872000px;}
.ws39{word-spacing:-1.440000px;}
.ws3a{word-spacing:-1.152000px;}
.ws7a{word-spacing:-0.918000px;}
.ws3b{word-spacing:-0.864000px;}
.ws1d{word-spacing:-0.720000px;}
.ws7d{word-spacing:-0.594000px;}
.wsde{word-spacing:-0.576000px;}
.ws41{word-spacing:-0.505440px;}
.ws88{word-spacing:-0.504000px;}
.wsc3{word-spacing:-0.432000px;}
.ws54{word-spacing:-0.358560px;}
.wsb0{word-spacing:-0.336960px;}
.ws45{word-spacing:-0.288000px;}
.ws5b{word-spacing:-0.239040px;}
.ws78{word-spacing:-0.216000px;}
.ws55{word-spacing:-0.179280px;}
.ws12{word-spacing:-0.144000px;}
.ws5a{word-spacing:-0.119520px;}
.ws59{word-spacing:-0.059760px;}
.ws76{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws74{word-spacing:0.054000px;}
.ws57{word-spacing:0.059760px;}
.wsdd{word-spacing:0.072000px;}
.ws79{word-spacing:0.108000px;}
.ws58{word-spacing:0.119520px;}
.ws53{word-spacing:0.144000px;}
.ws7b{word-spacing:0.162000px;}
.ws46{word-spacing:0.216000px;}
.ws56{word-spacing:0.239040px;}
.ws7f{word-spacing:0.270000px;}
.ws7{word-spacing:0.287280px;}
.ws8{word-spacing:0.288000px;}
.ws4a{word-spacing:0.289440px;}
.ws75{word-spacing:0.324000px;}
.ws7c{word-spacing:0.378000px;}
.ws7e{word-spacing:0.486000px;}
.wse{word-spacing:0.576000px;}
.ws77{word-spacing:0.702000px;}
.ws22{word-spacing:0.720000px;}
.wse0{word-spacing:0.864000px;}
.ws40{word-spacing:0.926640px;}
.ws49{word-spacing:0.936000px;}
.ws96{word-spacing:1.008000px;}
.ws1a{word-spacing:1.440000px;}
.wsc0{word-spacing:1.584000px;}
.wsc1{word-spacing:1.728000px;}
.wsa9{word-spacing:2.016000px;}
.ws1b{word-spacing:2.160000px;}
.ws1c{word-spacing:2.448000px;}
.wsdf{word-spacing:2.736000px;}
.ws4f{word-spacing:2.808000px;}
.ws19{word-spacing:2.880000px;}
.ws29{word-spacing:3.168000px;}
.ws1e{word-spacing:3.600000px;}
.wsbb{word-spacing:3.744000px;}
.wsc7{word-spacing:3.888000px;}
.ws26{word-spacing:4.176000px;}
.ws27{word-spacing:4.320000px;}
.wsda{word-spacing:4.464000px;}
.wsc6{word-spacing:4.536000px;}
.ws28{word-spacing:4.608000px;}
.ws80{word-spacing:5.040000px;}
.wsd0{word-spacing:5.184000px;}
.wseb{word-spacing:5.256000px;}
.wse2{word-spacing:5.328000px;}
.wse4{word-spacing:5.616000px;}
.ws69{word-spacing:5.760000px;}
.wse5{word-spacing:5.904000px;}
.ws8f{word-spacing:6.048000px;}
.wsd1{word-spacing:6.336000px;}
.ws42{word-spacing:6.480000px;}
.wsee{word-spacing:6.552000px;}
.wse6{word-spacing:6.624000px;}
.wse7{word-spacing:6.768000px;}
.ws30{word-spacing:7.200000px;}
.wsbf{word-spacing:7.344000px;}
.ws60{word-spacing:7.920000px;}
.wsba{word-spacing:8.064000px;}
.wsaf{word-spacing:8.208000px;}
.ws47{word-spacing:8.640000px;}
.ws43{word-spacing:9.360000px;}
.wscc{word-spacing:9.504000px;}
.wsed{word-spacing:9.648000px;}
.wsdc{word-spacing:9.792000px;}
.ws2c{word-spacing:10.080000px;}
.ws3e{word-spacing:10.800000px;}
.wsb9{word-spacing:10.944000px;}
.wse3{word-spacing:11.016000px;}
.ws3d{word-spacing:11.088000px;}
.wsef{word-spacing:11.376000px;}
.ws3c{word-spacing:11.520000px;}
.wsd5{word-spacing:11.592000px;}
.wscb{word-spacing:11.664000px;}
.ws2a{word-spacing:12.240000px;}
.ws2b{word-spacing:12.528000px;}
.ws9{word-spacing:12.960000px;}
.ws25{word-spacing:13.248000px;}
.ws2f{word-spacing:13.680000px;}
.wsc2{word-spacing:14.256000px;}
.ws14{word-spacing:14.400000px;}
.wsd6{word-spacing:14.472000px;}
.wscf{word-spacing:14.544000px;}
.wsd8{word-spacing:14.688000px;}
.ws15{word-spacing:15.120000px;}
.wsd7{word-spacing:15.264000px;}
.ws20{word-spacing:15.408000px;}
.ws24{word-spacing:15.840000px;}
.ws23{word-spacing:16.128000px;}
.wsa1{word-spacing:16.416000px;}
.ws38{word-spacing:16.560000px;}
.wsb2{word-spacing:17.136000px;}
.ws4c{word-spacing:17.280000px;}
.wsd2{word-spacing:17.352000px;}
.wsca{word-spacing:17.424000px;}
.ws4d{word-spacing:17.568000px;}
.ws4e{word-spacing:18.000000px;}
.wse8{word-spacing:18.216000px;}
.wsd{word-spacing:18.288000px;}
.ws6a{word-spacing:18.720000px;}
.wsc8{word-spacing:18.864000px;}
.wsc9{word-spacing:19.008000px;}
.wsa4{word-spacing:19.296000px;}
.ws34{word-spacing:19.440000px;}
.wsf{word-spacing:20.160000px;}
.wsdb{word-spacing:20.736000px;}
.ws87{word-spacing:20.880000px;}
.wsd9{word-spacing:21.024000px;}
.ws8e{word-spacing:21.456000px;}
.ws66{word-spacing:21.600000px;}
.ws95{word-spacing:21.744000px;}
.ws83{word-spacing:21.888000px;}
.ws33{word-spacing:22.320000px;}
.wsd4{word-spacing:22.392000px;}
.wsd3{word-spacing:22.464000px;}
.ws32{word-spacing:22.608000px;}
.ws21{word-spacing:23.040000px;}
.wse9{word-spacing:23.184000px;}
.wsea{word-spacing:23.328000px;}
.ws9e{word-spacing:23.760000px;}
.wsb5{word-spacing:23.832000px;}
.wsbc{word-spacing:23.904000px;}
.wsbd{word-spacing:24.048000px;}
.ws68{word-spacing:24.480000px;}
.ws67{word-spacing:24.624000px;}
.wsec{word-spacing:25.056000px;}
.wsc{word-spacing:25.200000px;}
.ws89{word-spacing:25.920000px;}
.wsa2{word-spacing:26.640000px;}
.wsb6{word-spacing:26.928000px;}
.wsab{word-spacing:27.216000px;}
.wsaa{word-spacing:27.360000px;}
.ws61{word-spacing:28.368000px;}
.ws4b{word-spacing:28.800000px;}
.wsa6{word-spacing:29.520000px;}
.wsa5{word-spacing:29.808000px;}
.ws16{word-spacing:30.960000px;}
.wsbe{word-spacing:31.104000px;}
.wsa8{word-spacing:31.680000px;}
.wsa7{word-spacing:31.968000px;}
.ws13{word-spacing:32.400000px;}
.ws44{word-spacing:32.688000px;}
.wsad{word-spacing:32.976000px;}
.wsae{word-spacing:33.408000px;}
.wsa{word-spacing:33.840000px;}
.wsb{word-spacing:34.416000px;}
.wsb1{word-spacing:36.720000px;}
.ws31{word-spacing:37.440000px;}
.ws10{word-spacing:38.880000px;}
.ws11{word-spacing:39.168000px;}
.ws8a{word-spacing:40.320000px;}
.ws90{word-spacing:42.480000px;}
.wsa0{word-spacing:44.640000px;}
.ws37{word-spacing:46.080000px;}
.wsce{word-spacing:47.520000px;}
.wscd{word-spacing:47.664000px;}
.wsb4{word-spacing:48.240000px;}
.ws2d{word-spacing:60.048000px;}
.ws35{word-spacing:65.088000px;}
.ws65{word-spacing:66.240000px;}
.ws6b{word-spacing:187.825680px;}
.ws6f{word-spacing:195.966000px;}
.ws9a{word-spacing:205.038000px;}
.ws8b{word-spacing:213.701760px;}
.ws97{word-spacing:214.777440px;}
.ws84{word-spacing:215.255520px;}
.ws91{word-spacing:215.733600px;}
.ws6e{word-spacing:267.186960px;}
.ws6d{word-spacing:297.246240px;}
.ws99{word-spacing:348.460560px;}
.ws93{word-spacing:349.416720px;}
.ws9d{word-spacing:356.421000px;}
.ws8c{word-spacing:362.504160px;}
.ws98{word-spacing:363.579840px;}
.ws85{word-spacing:364.057920px;}
.ws92{word-spacing:364.536000px;}
.ws9c{word-spacing:419.584800px;}
.ws9b{word-spacing:466.041000px;}
.ws70{word-spacing:493.942800px;}
._33{margin-left:-220.752000px;}
._39{margin-left:-180.900000px;}
._3a{margin-left:-161.352000px;}
._12{margin-left:-4.680000px;}
._11{margin-left:-3.600000px;}
._13{margin-left:-2.592000px;}
._0{margin-left:-1.066464px;}
._1{width:1.076040px;}
._2{width:2.087064px;}
._19{width:3.246048px;}
._6{width:4.248000px;}
._7{width:5.259960px;}
._1d{width:6.840000px;}
._c{width:8.784000px;}
._d{width:10.440000px;}
._1a{width:11.861136px;}
._9{width:12.946464px;}
._f{width:14.071032px;}
._e{width:15.322464px;}
._1b{width:16.721496px;}
._3{width:19.080000px;}
._5{width:20.222424px;}
._1e{width:21.675960px;}
._17{width:22.752000px;}
._16{width:23.818464px;}
._4{width:25.272000px;}
._18{width:26.571960px;}
._22{width:27.644040px;}
._23{width:29.091960px;}
._10{width:30.514464px;}
._b{width:31.676040px;}
._a{width:33.055920px;}
._35{width:34.128000px;}
._31{width:35.770464px;}
._14{width:37.008000px;}
._15{width:38.235960px;}
._8{width:39.586464px;}
._36{width:40.981536px;}
._44{width:42.768000px;}
._3b{width:44.554464px;}
._21{width:45.936000px;}
._42{width:47.002464px;}
._41{width:48.240000px;}
._27{width:50.112000px;}
._28{width:51.624000px;}
._40{width:58.104000px;}
._1c{width:60.505200px;}
._20{width:64.008000px;}
._1f{width:65.603880px;}
._37{width:68.328000px;}
._29{width:73.440000px;}
._3f{width:77.098464px;}
._2a{width:91.440000px;}
._30{width:105.432600px;}
._38{width:109.898640px;}
._32{width:111.452400px;}
._2b{width:131.269440px;}
._2d{width:180.792000px;}
._2e{width:184.808040px;}
._3d{width:189.864000px;}
._2c{width:194.454000px;}
._3c{width:203.580000px;}
._43{width:268.056000px;}
._2f{width:299.782560px;}
._26{width:308.880000px;}
._34{width:492.700800px;}
._25{width:564.696000px;}
._24{width:627.192000px;}
._3e{width:846.000000px;}
.fcb{color:rgb(0,0,255);}
.fc7{color:rgb(238,0,0);}
.fc6{color:transparent;}
.fc5{color:rgb(59,56,56);}
.fc2{color:rgb(255,0,0);}
.fca{color:rgb(127,127,127);}
.fc9{color:rgb(64,64,64);}
.fc8{color:rgb(89,89,89);}
.fc4{color:rgb(166,166,166);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y68{bottom:3.960000px;}
.y1d1{bottom:21.600000px;}
.y67{bottom:24.660000px;}
.y75{bottom:45.360000px;}
.y2{bottom:57.060000px;}
.yc7{bottom:57.240000px;}
.y72{bottom:66.060000px;}
.y1{bottom:77.760000px;}
.yc6{bottom:77.940000px;}
.ya9{bottom:107.460000px;}
.y287{bottom:111.780000px;}
.y285{bottom:113.580000px;}
.y19f{bottom:114.120000px;}
.y23b{bottom:115.200000px;}
.y46{bottom:116.100000px;}
.y248{bottom:126.180000px;}
.y169{bottom:127.080000px;}
.y80{bottom:128.160000px;}
.y19e{bottom:132.120000px;}
.ye7{bottom:132.840000px;}
.y235{bottom:135.180000px;}
.y1f1{bottom:140.760000px;}
.y286{bottom:142.740000px;}
.y284{bottom:143.640000px;}
.y23a{bottom:146.340000px;}
.y45{bottom:147.060000px;}
.y147{bottom:147.780000px;}
.y215{bottom:155.340000px;}
.y247{bottom:157.140000px;}
.y168{bottom:158.040000px;}
.y23{bottom:160.380000px;}
.ye6{bottom:163.980000px;}
.y265{bottom:165.420000px;}
.y234{bottom:166.140000px;}
.y13c{bottom:169.740000px;}
.y19d{bottom:171.180000px;}
.y283{bottom:173.880000px;}
.y107{bottom:177.120000px;}
.y239{bottom:177.300000px;}
.y44{bottom:178.200000px;}
.y146{bottom:178.740000px;}
.y64{bottom:181.980000px;}
.y1f0{bottom:182.520000px;}
.y1b5{bottom:187.036950px;}
.y246{bottom:188.280000px;}
.yb5{bottom:190.260000px;}
.y22{bottom:191.340000px;}
.ye5{bottom:194.940000px;}
.y264{bottom:195.480000px;}
.y106{bottom:196.560000px;}
.y167{bottom:196.740000px;}
.y233{bottom:197.280000px;}
.y214{bottom:198.360000px;}
.y13b{bottom:200.700000px;}
.y282{bottom:204.120000px;}
.y238{bottom:208.440000px;}
.y43{bottom:209.160000px;}
.y145{bottom:209.880000px;}
.y1ef{bottom:212.220000px;}
.y1b4{bottom:212.349750px;}
.y63{bottom:212.940000px;}
.y245{bottom:219.240000px;}
.y21{bottom:222.480000px;}
.y263{bottom:225.720000px;}
.ye4{bottom:226.080000px;}
.y232{bottom:228.240000px;}
.y213{bottom:229.320000px;}
.y1ee{bottom:229.680000px;}
.y13a{bottom:231.840000px;}
.y281{bottom:234.180000px;}
.y105{bottom:235.620000px;}
.y166{bottom:237.240000px;}
.y1b3{bottom:237.662400px;}
.y237{bottom:239.400000px;}
.y42{bottom:240.300000px;}
.y62{bottom:244.080000px;}
.y144{bottom:248.580000px;}
.y244{bottom:250.380000px;}
.y1ea{bottom:250.740000px;}
.y1ed{bottom:251.280000px;}
.y11e{bottom:252.158850px;}
.y20{bottom:253.440000px;}
.y165{bottom:255.240000px;}
.y262{bottom:255.960000px;}
.ye3{bottom:257.040000px;}
.y231{bottom:259.380000px;}
.y212{bottom:260.460000px;}
.y139{bottom:262.800000px;}
.y280{bottom:264.420000px;}
.y1a6{bottom:267.563100px;}
.y236{bottom:270.540000px;}
.y41{bottom:271.260000px;}
.y1ec{bottom:272.700000px;}
.y61{bottom:275.040000px;}
.yc5{bottom:276.475680px;}
.y11d{bottom:277.471500px;}
.y243{bottom:281.340000px;}
.y1e9{bottom:281.700000px;}
.y183{bottom:283.140000px;}
.y1f{bottom:284.580000px;}
.y261{bottom:286.020000px;}
.ye2{bottom:288.180000px;}
.y143{bottom:289.080000px;}
.y230{bottom:290.340000px;}
.y211{bottom:291.420000px;}
.y138{bottom:293.940000px;}
.y1eb{bottom:294.120000px;}
.y1a7{bottom:294.144600px;}
.y164{bottom:294.300000px;}
.y27f{bottom:294.660000px;}
.y199{bottom:300.346200px;}
.y15f{bottom:301.500000px;}
.yc4{bottom:302.396580px;}
.y40{bottom:302.400000px;}
.y11c{bottom:302.784150px;}
.y60{bottom:306.180000px;}
.y142{bottom:307.080000px;}
.y17f{bottom:310.171200px;}
.y1a8{bottom:312.207600px;}
.y242{bottom:312.480000px;}
.y1e8{bottom:312.840000px;}
.y1e{bottom:315.540000px;}
.y260{bottom:316.260000px;}
.ya0{bottom:318.960000px;}
.ye1{bottom:319.140000px;}
.y22f{bottom:321.480000px;}
.y210{bottom:322.560000px;}
.y27e{bottom:324.720000px;}
.y137{bottom:324.900000px;}
.y198{bottom:325.658850px;}
.yc3{bottom:328.138200px;}
.y1a9{bottom:330.270600px;}
.y15e{bottom:332.640000px;}
.y10f{bottom:332.685000px;}
.y3f{bottom:333.360000px;}
.y17e{bottom:335.483850px;}
.y1e7{bottom:336.960000px;}
.y5f{bottom:337.140000px;}
.y241{bottom:343.440000px;}
.y141{bottom:346.140000px;}
.y25f{bottom:346.500000px;}
.y1d{bottom:346.680000px;}
.y98{bottom:347.559300px;}
.y8f{bottom:347.574240px;}
.y1aa{bottom:348.333600px;}
.ye0{bottom:350.280000px;}
.y197{bottom:350.971500px;}
.y22e{bottom:352.440000px;}
.y20f{bottom:353.520000px;}
.yc2{bottom:354.059100px;}
.y27d{bottom:354.960000px;}
.y136{bottom:356.040000px;}
.y1e3{bottom:358.020000px;}
.y1e6{bottom:358.380000px;}
.y17d{bottom:360.796500px;}
.y15d{bottom:363.421200px;}
.y100{bottom:363.600000px;}
.y3e{bottom:364.500000px;}
.y110{bottom:365.233500px;}
.y1ab{bottom:366.396600px;}
.y5e{bottom:368.280000px;}
.y97{bottom:373.300920px;}
.y8e{bottom:373.315860px;}
.y240{bottom:374.580000px;}
.y25e{bottom:376.740000px;}
.y1c{bottom:377.640000px;}
.yc1{bottom:379.980000px;}
.y18a{bottom:380.872350px;}
.ydf{bottom:381.240000px;}
.y22d{bottom:383.580000px;}
.y1ac{bottom:384.459600px;}
.y20e{bottom:384.480000px;}
.y27c{bottom:385.200000px;}
.y9f{bottom:386.280000px;}
.y135{bottom:387.000000px;}
.y15c{bottom:388.733850px;}
.y1e2{bottom:388.980000px;}
.y170{bottom:390.697200px;}
.yff{bottom:394.740000px;}
.y111{bottom:395.230500px;}
.y3d{bottom:395.460000px;}
.y96{bottom:399.221820px;}
.y8d{bottom:399.236760px;}
.y5d{bottom:399.240000px;}
.y1e5{bottom:401.400000px;}
.y1ad{bottom:402.522600px;}
.y23f{bottom:405.540000px;}
.yc0{bottom:405.900900px;}
.y25d{bottom:406.800000px;}
.y1b{bottom:408.780000px;}
.y18b{bottom:409.573350px;}
.yde{bottom:412.380000px;}
.y15b{bottom:414.046500px;}
.y22c{bottom:414.540000px;}
.y27b{bottom:415.440000px;}
.y9e{bottom:417.240000px;}
.y134{bottom:417.960000px;}
.y1e1{bottom:420.120000px;}
.y171{bottom:420.491700px;}
.y1ae{bottom:420.585600px;}
.y1e4{bottom:422.820000px;}
.y95{bottom:425.142720px;}
.y8c{bottom:425.157660px;}
.y112{bottom:425.227500px;}
.yfe{bottom:425.700000px;}
.y3c{bottom:426.600000px;}
.y5c{bottom:430.380000px;}
.ybf{bottom:431.642520px;}
.y18c{bottom:431.861850px;}
.y20d{bottom:432.360000px;}
.y23e{bottom:436.680000px;}
.y25c{bottom:437.040000px;}
.y1af{bottom:438.648600px;}
.y1a{bottom:439.740000px;}
.ydd{bottom:443.340000px;}
.y14e{bottom:443.947350px;}
.y1e0{bottom:444.240000px;}
.y172{bottom:444.967200px;}
.y27a{bottom:445.500000px;}
.y22b{bottom:445.680000px;}
.y9d{bottom:448.380000px;}
.y133{bottom:449.100000px;}
.y94{bottom:451.063620px;}
.y8b{bottom:451.078560px;}
.y18d{bottom:454.150350px;}
.y113{bottom:455.224500px;}
.yfd{bottom:456.660000px;}
.y1b0{bottom:456.711600px;}
.y3b{bottom:457.560000px;}
.y5b{bottom:461.340000px;}
.y20c{bottom:462.060000px;}
.y1db{bottom:465.300000px;}
.y1df{bottom:465.660000px;}
.y25b{bottom:467.280000px;}
.y23d{bottom:467.640000px;}
.y173{bottom:469.442700px;}
.ybe{bottom:469.620000px;}
.y19{bottom:470.880000px;}
.y14f{bottom:471.770850px;}
.ydc{bottom:474.480000px;}
.y1b1{bottom:474.774600px;}
.y279{bottom:475.740000px;}
.y18e{bottom:476.438850px;}
.y22a{bottom:476.640000px;}
.y9c{bottom:476.790300px;}
.y93{bottom:476.805240px;}
.y8a{bottom:476.820180px;}
.y20b{bottom:479.700000px;}
.y132{bottom:480.060000px;}
.yb4{bottom:484.380000px;}
.y114{bottom:485.221500px;}
.y1de{bottom:487.080000px;}
.yfc{bottom:487.800000px;}
.y3a{bottom:488.700000px;}
.y5a{bottom:492.300000px;}
.y150{bottom:492.317850px;}
.y1b2{bottom:492.837600px;}
.y174{bottom:493.918200px;}
.y206{bottom:495.360000px;}
.y1da{bottom:496.260000px;}
.y25a{bottom:497.340000px;}
.y18f{bottom:498.727350px;}
.y20a{bottom:501.120000px;}
.y18{bottom:501.840000px;}
.y9b{bottom:502.711200px;}
.y92{bottom:502.726140px;}
.y89{bottom:502.741080px;}
.y278{bottom:505.980000px;}
.y23c{bottom:506.880000px;}
.y229{bottom:507.780000px;}
.y1dd{bottom:508.500000px;}
.ybd{bottom:509.040000px;}
.y131{bottom:511.200000px;}
.y151{bottom:512.864850px;}
.ydb{bottom:513.180000px;}
.y115{bottom:515.218500px;}
.y205{bottom:516.060000px;}
.y175{bottom:518.393700px;}
.yfb{bottom:518.760000px;}
.y39{bottom:519.660000px;}
.y190{bottom:521.015850px;}
.y209{bottom:522.540000px;}
.y59{bottom:526.680000px;}
.y1d9{bottom:527.400000px;}
.y259{bottom:527.580000px;}
.y9a{bottom:528.632100px;}
.y91{bottom:528.647040px;}
.y88{bottom:528.661980px;}
.ybc{bottom:529.740000px;}
.y1dc{bottom:530.100000px;}
.y17{bottom:532.980000px;}
.y152{bottom:533.411850px;}
.y277{bottom:536.040000px;}
.y204{bottom:536.760000px;}
.y228{bottom:538.740000px;}
.y130{bottom:542.160000px;}
.y176{bottom:542.869200px;}
.y191{bottom:543.304350px;}
.y208{bottom:543.960000px;}
.y116{bottom:545.215500px;}
.y19c{bottom:545.940000px;}
.yfa{bottom:549.900000px;}
.ybb{bottom:550.440000px;}
.y38{bottom:550.800000px;}
.y1d2{bottom:551.520000px;}
.yda{bottom:552.420000px;}
.y153{bottom:553.958850px;}
.y99{bottom:554.553000px;}
.y90{bottom:554.567940px;}
.y87{bottom:554.582880px;}
.y203{bottom:557.460000px;}
.y58{bottom:557.820000px;}
.y16{bottom:563.940000px;}
.y207{bottom:565.380000px;}
.y192{bottom:565.592850px;}
.y1d5{bottom:565.740000px;}
.y276{bottom:566.280000px;}
.y177{bottom:567.344700px;}
.y227{bottom:569.880000px;}
.yba{bottom:571.140000px;}
.y12f{bottom:573.300000px;}
.y154{bottom:574.505850px;}
.y117{bottom:575.212500px;}
.yf9{bottom:580.860000px;}
.y37{bottom:581.760000px;}
.y19b{bottom:584.640000px;}
.y86{bottom:585.180000px;}
.y202{bottom:586.800000px;}
.y258{bottom:587.880000px;}
.y193{bottom:587.881350px;}
.y57{bottom:588.780000px;}
.y1d8{bottom:590.580000px;}
.y178{bottom:591.820200px;}
.yb9{bottom:591.840000px;}
.y155{bottom:595.052850px;}
.y15{bottom:595.080000px;}
.yd9{bottom:595.260000px;}
.y275{bottom:596.520000px;}
.y1d4{bottom:596.880000px;}
.y7f{bottom:599.940000px;}
.y226{bottom:600.840000px;}
.y12e{bottom:604.260000px;}
.y118{bottom:605.209500px;}
.y201{bottom:608.400000px;}
.y194{bottom:610.169850px;}
.yf8{bottom:612.000000px;}
.yb8{bottom:612.540000px;}
.y36{bottom:612.900000px;}
.y1fd{bottom:613.080000px;}
.y156{bottom:615.599850px;}
.y179{bottom:616.295700px;}
.y257{bottom:618.120000px;}
.y56{bottom:619.920000px;}
.y19a{bottom:623.700000px;}
.y85{bottom:624.600000px;}
.y14{bottom:626.040000px;}
.yd8{bottom:626.400000px;}
.y274{bottom:626.580000px;}
.y1d3{bottom:627.840000px;}
.y200{bottom:629.820000px;}
.y225{bottom:631.980000px;}
.y195{bottom:632.458350px;}
.yb7{bottom:633.240000px;}
.y1d7{bottom:633.600000px;}
.y1fc{bottom:633.780000px;}
.y119{bottom:635.206500px;}
.y12d{bottom:635.400000px;}
.y157{bottom:636.146850px;}
.y17a{bottom:640.771200px;}
.y1a5{bottom:642.880350px;}
.yf7{bottom:642.960000px;}
.y35{bottom:643.860000px;}
.y84{bottom:645.300000px;}
.y256{bottom:648.360000px;}
.y55{bottom:650.880000px;}
.y1ff{bottom:651.240000px;}
.yb6{bottom:653.940000px;}
.y1fb{bottom:654.480000px;}
.y196{bottom:654.746850px;}
.y1d6{bottom:655.020000px;}
.y7e{bottom:655.560000px;}
.y158{bottom:656.693850px;}
.y273{bottom:656.820000px;}
.y13{bottom:657.180000px;}
.yd7{bottom:657.360000px;}
.y224{bottom:662.940000px;}
.y11a{bottom:665.203500px;}
.y17b{bottom:665.246700px;}
.y83{bottom:666.000000px;}
.y12c{bottom:666.360000px;}
.y1fe{bottom:672.660000px;}
.yf6{bottom:674.100000px;}
.y34{bottom:674.820000px;}
.y7d{bottom:676.260000px;}
.y1c9{bottom:676.440000px;}
.y159{bottom:677.240850px;}
.y255{bottom:678.420000px;}
.y54{bottom:682.020000px;}
.y82{bottom:686.700000px;}
.y272{bottom:687.060000px;}
.y12{bottom:688.140000px;}
.yd6{bottom:688.500000px;}
.y17c{bottom:689.722200px;}
.y1cc{bottom:690.660000px;}
.y1a0{bottom:691.362450px;}
.yb0{bottom:692.100000px;}
.y1fa{bottom:694.080000px;}
.y11b{bottom:695.200500px;}
.y12b{bottom:697.500000px;}
.y15a{bottom:697.787850px;}
.yf5{bottom:705.060000px;}
.y33{bottom:705.960000px;}
.yb3{bottom:706.320000px;}
.y81{bottom:707.400000px;}
.y254{bottom:708.660000px;}
.y53{bottom:712.980000px;}
.y1d0{bottom:715.500000px;}
.yb1{bottom:716.760000px;}
.y271{bottom:717.120000px;}
.y11{bottom:719.280000px;}
.yd5{bottom:719.460000px;}
.y1f9{bottom:720.360000px;}
.y1cb{bottom:721.800000px;}
.y223{bottom:725.040000px;}
.yb2{bottom:727.020000px;}
.y12a{bottom:728.460000px;}
.y182{bottom:732.240000px;}
.yf4{bottom:736.200000px;}
.y32{bottom:736.920000px;}
.y1cf{bottom:737.100000px;}
.y253{bottom:738.900000px;}
.y1f8{bottom:741.060000px;}
.y1a2{bottom:741.934350px;}
.y77{bottom:745.560000px;}
.y52{bottom:747.360000px;}
.y10{bottom:750.240000px;}
.yd4{bottom:750.600000px;}
.y1ca{bottom:752.760000px;}
.yae{bottom:754.920000px;}
.y104{bottom:755.640000px;}
.y222{bottom:756.180000px;}
.y1ce{bottom:758.520000px;}
.y129{bottom:759.600000px;}
.y7c{bottom:759.780000px;}
.y1f7{bottom:761.760000px;}
.y1a1{bottom:763.179030px;}
.yf3{bottom:767.160000px;}
.y31{bottom:768.060000px;}
.y252{bottom:769.140000px;}
.y79{bottom:770.220000px;}
.y163{bottom:770.580000px;}
.y181{bottom:770.940000px;}
.y140{bottom:772.740000px;}
.y103{bottom:775.080000px;}
.y270{bottom:777.600000px;}
.yaf{bottom:779.580000px;}
.y1cd{bottom:779.940000px;}
.y7b{bottom:780.480000px;}
.yf{bottom:781.380000px;}
.yd3{bottom:781.560000px;}
.y51{bottom:786.060000px;}
.y221{bottom:787.140000px;}
.y162{bottom:788.580000px;}
.y128{bottom:790.560000px;}
.y13f{bottom:790.740000px;}
.y78{bottom:790.920000px;}
.y102{bottom:795.780000px;}
.yf2{bottom:798.300000px;}
.y30{bottom:799.020000px;}
.y251{bottom:799.200000px;}
.y7a{bottom:801.180000px;}
.y1c8{bottom:801.360000px;}
.y1a4{bottom:802.501110px;}
.y26f{bottom:807.840000px;}
.y161{bottom:809.280000px;}
.y180{bottom:810.000000px;}
.y13e{bottom:811.440000px;}
.ye{bottom:812.340000px;}
.yd2{bottom:812.700000px;}
.ya6{bottom:817.740000px;}
.y220{bottom:818.280000px;}
.y127{bottom:821.700000px;}
.y1c3{bottom:822.420000px;}
.y1c7{bottom:822.780000px;}
.y50{bottom:826.020000px;}
.y1f6{bottom:827.460000px;}
.y189{bottom:827.964600px;}
.y74{bottom:829.080000px;}
.yf1{bottom:829.260000px;}
.y250{bottom:829.440000px;}
.y2f{bottom:830.160000px;}
.y101{bottom:834.660000px;}
.y26e{bottom:837.900000px;}
.yad{bottom:842.400000px;}
.yd{bottom:843.479850px;}
.yd1{bottom:843.660000px;}
.y1c6{bottom:844.200000px;}
.y160{bottom:848.160000px;}
.y21f{bottom:849.240000px;}
.y13d{bottom:850.500000px;}
.y126{bottom:852.660000px;}
.y1c2{bottom:853.380000px;}
.y76{bottom:853.740000px;}
.y10e{bottom:853.989600px;}
.y4f{bottom:857.160000px;}
.y24f{bottom:859.680000px;}
.yf0{bottom:860.400000px;}
.y2e{bottom:861.120000px;}
.yac{bottom:863.100000px;}
.y1c5{bottom:865.620000px;}
.y16f{bottom:867.039600px;}
.y26d{bottom:868.140000px;}
.y1f5{bottom:868.860000px;}
.y14d{bottom:869.439450px;}
.ya8{bottom:873.540000px;}
.yc{bottom:874.440000px;}
.yd0{bottom:874.800000px;}
.y184{bottom:876.603000px;}
.y21e{bottom:880.380000px;}
.yab{bottom:883.800000px;}
.y1c1{bottom:884.520000px;}
.y1c4{bottom:887.220000px;}
.y4e{bottom:888.120000px;}
.y24e{bottom:889.740000px;}
.y109{bottom:889.988250px;}
.yef{bottom:891.360000px;}
.y71{bottom:891.900000px;}
.y2d{bottom:892.260000px;}
.ya7{bottom:894.240000px;}
.y26c{bottom:898.380000px;}
.yaa{bottom:904.500000px;}
.yb{bottom:905.580000px;}
.ycf{bottom:905.760000px;}
.y108{bottom:908.289750px;}
.y16a{bottom:908.614500px;}
.y1c0{bottom:908.640000px;}
.y148{bottom:910.469550px;}
.y21d{bottom:911.340000px;}
.y125{bottom:914.760000px;}
.y70{bottom:916.560000px;}
.y4d{bottom:919.260000px;}
.y24d{bottom:919.980000px;}
.yee{bottom:922.500000px;}
.y2c{bottom:923.220000px;}
.y186{bottom:926.412960px;}
.y73{bottom:927.000000px;}
.y26b{bottom:928.440000px;}
.y1a3{bottom:928.968210px;}
.y1bb{bottom:929.520000px;}
.y1bf{bottom:930.060000px;}
.y1f4{bottom:934.740000px;}
.ya{bottom:936.540000px;}
.yce{bottom:936.900000px;}
.y6f{bottom:937.260000px;}
.y21c{bottom:942.480000px;}
.y124{bottom:945.900000px;}
.y185{bottom:949.838880px;}
.y4c{bottom:950.220000px;}
.y1be{bottom:951.480000px;}
.yed{bottom:953.460000px;}
.y2b{bottom:954.360000px;}
.y1f3{bottom:955.440000px;}
.y16c{bottom:957.856740px;}
.y26a{bottom:958.680000px;}
.y14a{bottom:958.680930px;}
.y10b{bottom:960.639510px;}
.y1ba{bottom:960.660000px;}
.ya4{bottom:963.360000px;}
.y9{bottom:967.680000px;}
.ycd{bottom:967.860000px;}
.y1bd{bottom:972.900000px;}
.y21b{bottom:973.440000px;}
.y1f2{bottom:976.140000px;}
.y123{bottom:976.860000px;}
.y10a{bottom:977.207970px;}
.y149{bottom:977.654730px;}
.ya5{bottom:977.760000px;}
.y16b{bottom:979.743840px;}
.y24c{bottom:980.280000px;}
.y4b{bottom:981.360000px;}
.y188{bottom:984.275580px;}
.y6e{bottom:984.600000px;}
.y2a{bottom:985.320000px;}
.y269{bottom:988.920000px;}
.y1b9{bottom:991.620000px;}
.y1bc{bottom:994.320000px;}
.y10d{bottom:997.481550px;}
.ycc{bottom:999.000000px;}
.y21a{bottom:1004.580000px;}
.y6d{bottom:1005.300000px;}
.ya2{bottom:1005.480000px;}
.y8{bottom:1006.380000px;}
.y16e{bottom:1007.606940px;}
.y122{bottom:1008.000000px;}
.y14c{bottom:1010.343450px;}
.y24b{bottom:1010.520000px;}
.y4a{bottom:1012.320000px;}
.yec{bottom:1015.560000px;}
.y1b8{bottom:1015.920000px;}
.y29{bottom:1016.460000px;}
.y268{bottom:1018.980000px;}
.ycb{bottom:1029.960000px;}
.ya3{bottom:1030.140000px;}
.y219{bottom:1035.540000px;}
.y6c{bottom:1037.340000px;}
.y121{bottom:1038.960000px;}
.y24a{bottom:1040.760000px;}
.y49{bottom:1043.460000px;}
.y7{bottom:1046.355480px;}
.yeb{bottom:1046.700000px;}
.y28{bottom:1047.420000px;}
.y267{bottom:1049.220000px;}
.yca{bottom:1061.100000px;}
.y1b7{bottom:1062.000000px;}
.y218{bottom:1066.680000px;}
.y6a{bottom:1068.300000px;}
.ya1{bottom:1068.480000px;}
.y120{bottom:1070.100000px;}
.y249{bottom:1070.820000px;}
.y6{bottom:1073.886480px;}
.yea{bottom:1077.660000px;}
.y27{bottom:1078.560000px;}
.y69{bottom:1078.740000px;}
.y266{bottom:1079.460000px;}
.y48{bottom:1082.700000px;}
.y6b{bottom:1089.000000px;}
.yc9{bottom:1092.060000px;}
.y217{bottom:1097.640000px;}
.y11f{bottom:1101.060000px;}
.y5{bottom:1101.609000px;}
.ye9{bottom:1108.800000px;}
.y26{bottom:1109.520000px;}
.y10c{bottom:1110.188910px;}
.y66{bottom:1110.600000px;}
.y14b{bottom:1115.760090px;}
.y16d{bottom:1116.220740px;}
.y1b6{bottom:1119.060000px;}
.y187{bottom:1121.230560px;}
.y65{bottom:1124.820000px;}
.y47{bottom:1128.600000px;}
.y4{bottom:1129.140000px;}
.yc8{bottom:1130.760000px;}
.y216{bottom:1136.880000px;}
.ye8{bottom:1139.760000px;}
.y25{bottom:1140.660000px;}
.y24{bottom:1171.620000px;}
.y3{bottom:1172.880000px;}
.h22{height:20.700000px;}
.h21{height:20.701500px;}
.h24{height:38.340000px;}
.h18{height:40.968281px;}
.h9{height:41.398500px;}
.h14{height:41.400000px;}
.h1c{height:44.534180px;}
.h19{height:49.284492px;}
.h13{height:52.435898px;}
.h1a{height:52.631052px;}
.h12{height:52.931953px;}
.h20{height:56.993532px;}
.h3{height:58.671562px;}
.h1e{height:59.622972px;}
.h1f{height:60.280332px;}
.hd{height:62.100000px;}
.h2{height:63.175781px;}
.h7{height:63.351562px;}
.h1d{height:63.507372px;}
.h6{height:63.773438px;}
.he{height:63.843750px;}
.h5{height:64.160156px;}
.h1b{height:70.738332px;}
.h8{height:75.067383px;}
.hc{height:82.800000px;}
.h4{height:85.333008px;}
.ha{height:104.813437px;}
.hf{height:104.883750px;}
.h16{height:105.533438px;}
.h10{height:105.603750px;}
.h23{height:124.200000px;}
.h11{height:144.900000px;}
.h15{height:144.901500px;}
.hb{height:146.573438px;}
.h17{height:207.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:111.598500px;}
.wd{width:112.680000px;}
.wf{width:119.880000px;}
.w4{width:124.560000px;}
.w13{width:132.658500px;}
.we{width:133.380000px;}
.w10{width:136.080000px;}
.wa{width:136.800000px;}
.w11{width:151.740000px;}
.wb{width:151.920000px;}
.w8{width:169.020000px;}
.w6{width:169.200000px;}
.w9{width:173.698500px;}
.w3{width:176.761500px;}
.w5{width:177.841500px;}
.w7{width:186.840000px;}
.w2{width:216.900000px;}
.wc{width:657.538500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x8{left:9.540000px;}
.x38{left:10.980000px;}
.x18{left:13.140000px;}
.x15{left:14.940000px;}
.x1f{left:17.460000px;}
.x31{left:18.540000px;}
.x84{left:25.200000px;}
.x3c{left:27.900000px;}
.x26{left:32.760000px;}
.x1b{left:36.720000px;}
.x93{left:37.800000px;}
.x3a{left:38.880000px;}
.x2e{left:39.960000px;}
.x82{left:41.220000px;}
.x1c{left:46.800000px;}
.x80{left:47.880000px;}
.x35{left:49.500000px;}
.x43{left:52.200000px;}
.x78{left:55.080000px;}
.x21{left:59.400000px;}
.x33{left:60.480000px;}
.x32{left:62.640000px;}
.x81{left:63.720000px;}
.x30{left:64.800000px;}
.x83{left:66.960000px;}
.x86{left:68.220000px;}
.x34{left:69.300000px;}
.x7f{left:71.460000px;}
.x87{left:75.960000px;}
.x48{left:80.460000px;}
.x9{left:84.420000px;}
.x2{left:106.200000px;}
.xb{left:114.840000px;}
.x56{left:127.620000px;}
.x6{left:136.260000px;}
.x89{left:142.020000px;}
.x8c{left:145.800000px;}
.x94{left:146.880000px;}
.x5{left:149.400000px;}
.x8b{left:151.200000px;}
.x88{left:152.460000px;}
.x7c{left:153.540000px;}
.x8a{left:155.700000px;}
.x7d{left:156.960000px;}
.x91{left:158.220000px;}
.x4{left:159.300000px;}
.x85{left:160.560000px;}
.x74{left:162.720000px;}
.x8d{left:164.160000px;}
.x62{left:169.396050px;}
.x57{left:180.720000px;}
.x66{left:185.029050px;}
.x95{left:192.240000px;}
.x5b{left:198.226710px;}
.x60{left:200.459550px;}
.x59{left:203.993550px;}
.x6c{left:207.234450px;}
.x63{left:209.194050px;}
.x64{left:214.337550px;}
.x61{left:217.213050px;}
.x65{left:224.300550px;}
.x67{left:226.217550px;}
.x5f{left:228.175050px;}
.x14{left:232.380000px;}
.x16{left:243.360000px;}
.x7e{left:248.940000px;}
.x92{left:251.460000px;}
.x69{left:253.253730px;}
.x6e{left:256.632090px;}
.x24{left:259.020000px;}
.x25{left:268.740000px;}
.x7b{left:270.900000px;}
.x17{left:272.520000px;}
.x11{left:276.300000px;}
.x90{left:279.000000px;}
.x12{left:284.220000px;}
.x6b{left:287.191200px;}
.x4d{left:289.620000px;}
.x4c{left:292.140000px;}
.x5c{left:293.558850px;}
.x3{left:295.380000px;}
.xc{left:296.640000px;}
.x4a{left:303.840000px;}
.x5e{left:305.219550px;}
.x36{left:307.260000px;}
.x49{left:314.820000px;}
.x45{left:316.980000px;}
.x4b{left:321.480000px;}
.x3b{left:324.000000px;}
.x4e{left:330.120000px;}
.x71{left:336.854160px;}
.x46{left:338.760000px;}
.x68{left:340.488390px;}
.x5d{left:343.936530px;}
.x2b{left:350.812620px;}
.x5a{left:353.034990px;}
.x75{left:362.340000px;}
.x8e{left:363.960000px;}
.x73{left:370.184670px;}
.x6a{left:374.148210px;}
.x76{left:386.640000px;}
.x8f{left:387.900000px;}
.x7{left:409.860000px;}
.x1{left:432.900000px;}
.xd{left:438.120000px;}
.x55{left:443.520000px;}
.x2d{left:451.260000px;}
.x50{left:463.500000px;}
.x19{left:466.200000px;}
.x3f{left:468.360000px;}
.x39{left:469.980000px;}
.x3e{left:474.120000px;}
.x40{left:487.620000px;}
.x3d{left:492.480000px;}
.xe{left:494.280000px;}
.x77{left:499.860000px;}
.x4f{left:502.380000px;}
.x79{left:515.340000px;}
.x1d{left:518.400000px;}
.x37{left:524.880000px;}
.x2c{left:595.245960px;}
.x2f{left:621.180000px;}
.x1e{left:627.660000px;}
.x53{left:632.160000px;}
.x41{left:638.100000px;}
.x47{left:639.360000px;}
.x27{left:640.980000px;}
.x42{left:643.500000px;}
.x2a{left:645.480000px;}
.x54{left:647.100000px;}
.xf{left:648.360000px;}
.x28{left:652.320000px;}
.x23{left:653.580000px;}
.x52{left:655.920000px;}
.x44{left:658.080000px;}
.x20{left:664.560000px;}
.x51{left:669.600000px;}
.x29{left:673.920000px;}
.x7a{left:676.980000px;}
.xa{left:678.060000px;}
.x13{left:679.680000px;}
.x58{left:686.520000px;}
.x6d{left:689.400000px;}
.x10{left:692.640000px;}
.x6f{left:693.900000px;}
.x72{left:700.020000px;}
.x22{left:703.080000px;}
.x70{left:706.860000px;}
@media print{
.va{vertical-align:-30.703360pt;}
.v1{vertical-align:-5.120000pt;}
.v7{vertical-align:-1.540480pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.974720pt;}
.v9{vertical-align:6.852480pt;}
.v8{vertical-align:9.189760pt;}
.v6{vertical-align:12.642560pt;}
.v5{vertical-align:19.070080pt;}
.v2{vertical-align:36.480000pt;}
.v3{vertical-align:73.600000pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.823680pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.624000pt;}
.ls55{letter-spacing:-0.599040pt;}
.ls37{letter-spacing:-0.531200pt;}
.ls41{letter-spacing:-0.432000pt;}
.ls40{letter-spacing:-0.336000pt;}
.ls50{letter-spacing:-0.299520pt;}
.ls1c{letter-spacing:-0.257280pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.255360pt;}
.ls3b{letter-spacing:-0.240000pt;}
.ls2c{letter-spacing:-0.212480pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls3a{letter-spacing:-0.159360pt;}
.ls3f{letter-spacing:-0.144000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.106240pt;}
.ls3e{letter-spacing:-0.096000pt;}
.ls2b{letter-spacing:-0.064000pt;}
.ls2d{letter-spacing:-0.053120pt;}
.ls42{letter-spacing:-0.048000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.032000pt;}
.ls3c{letter-spacing:0.048000pt;}
.ls29{letter-spacing:0.053120pt;}
.ls5{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.154048pt;}
.ls35{letter-spacing:0.159360pt;}
.ls36{letter-spacing:0.192000pt;}
.ls30{letter-spacing:0.212480pt;}
.ls18{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.299520pt;}
.ls27{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.340480pt;}
.ls65{letter-spacing:0.448000pt;}
.ls66{letter-spacing:0.512000pt;}
.ls1{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.646400pt;}
.ls54{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.920000pt;}
.ls12{letter-spacing:2.560000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls11{letter-spacing:3.840000pt;}
.ls4c{letter-spacing:4.480000pt;}
.ls43{letter-spacing:5.120000pt;}
.ls61{letter-spacing:5.760000pt;}
.ls5d{letter-spacing:6.400000pt;}
.ls59{letter-spacing:7.040000pt;}
.ls19{letter-spacing:7.680000pt;}
.ls17{letter-spacing:8.320000pt;}
.ls13{letter-spacing:8.960000pt;}
.ls58{letter-spacing:9.600000pt;}
.ls60{letter-spacing:10.240000pt;}
.ls39{letter-spacing:10.880000pt;}
.ls10{letter-spacing:11.520000pt;}
.ls3{letter-spacing:12.800000pt;}
.ls53{letter-spacing:13.440000pt;}
.ls38{letter-spacing:14.080000pt;}
.ls56{letter-spacing:15.360000pt;}
.ls5f{letter-spacing:16.640000pt;}
.ls63{letter-spacing:17.920000pt;}
.ls4f{letter-spacing:19.200000pt;}
.ls62{letter-spacing:19.840000pt;}
.lsf{letter-spacing:20.480000pt;}
.ls5b{letter-spacing:21.120000pt;}
.ls46{letter-spacing:23.040000pt;}
.ls51{letter-spacing:24.960000pt;}
.ls49{letter-spacing:25.600000pt;}
.ls52{letter-spacing:26.240000pt;}
.ls5c{letter-spacing:27.520000pt;}
.ls2{letter-spacing:34.560000pt;}
.ls5a{letter-spacing:39.680000pt;}
.ls4b{letter-spacing:40.320000pt;}
.ls15{letter-spacing:40.960000pt;}
.ls5e{letter-spacing:53.248000pt;}
.ls26{letter-spacing:57.088000pt;}
.ls14{letter-spacing:57.600000pt;}
.ls57{letter-spacing:85.248000pt;}
.ls1f{letter-spacing:117.760000pt;}
.ls1e{letter-spacing:124.800000pt;}
.ls4a{letter-spacing:143.424000pt;}
.ls48{letter-spacing:160.800000pt;}
.ls45{letter-spacing:196.224000pt;}
.ls24{letter-spacing:212.480000pt;}
.ls64{letter-spacing:238.080000pt;}
.ls4d{letter-spacing:252.800000pt;}
.ls4e{letter-spacing:254.720000pt;}
.ls25{letter-spacing:273.920000pt;}
.ls31{letter-spacing:275.840000pt;}
.ls23{letter-spacing:323.200000pt;}
.ls47{letter-spacing:347.564160pt;}
.ls44{letter-spacing:348.945280pt;}
.ls33{letter-spacing:358.400000pt;}
.ls32{letter-spacing:491.520000pt;}
.ls20{letter-spacing:493.440000pt;}
.ls34{letter-spacing:504.320000pt;}
.ls21{letter-spacing:539.520000pt;}
.ls22{letter-spacing:566.400000pt;}
.ls2a{letter-spacing:752.000000pt;}
.ws86{word-spacing:-207.072000pt;}
.ws8d{word-spacing:-171.648000pt;}
.ws94{word-spacing:-154.272000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws9f{word-spacing:-18.420480pt;}
.wsac{word-spacing:-18.120960pt;}
.ws5f{word-spacing:-16.640000pt;}
.ws51{word-spacing:-16.256000pt;}
.ws5c{word-spacing:-16.192000pt;}
.ws1f{word-spacing:-16.128000pt;}
.wsa3{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws50{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsc5{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws52{word-spacing:-13.598720pt;}
.ws5d{word-spacing:-13.067520pt;}
.ws5e{word-spacing:-12.748800pt;}
.ws6c{word-spacing:-12.005120pt;}
.ws71{word-spacing:-10.896000pt;}
.ws72{word-spacing:-10.800000pt;}
.ws3f{word-spacing:-10.720000pt;}
.ws73{word-spacing:-10.608000pt;}
.ws17{word-spacing:-3.840000pt;}
.ws2e{word-spacing:-3.584000pt;}
.ws82{word-spacing:-3.328000pt;}
.ws18{word-spacing:-3.200000pt;}
.ws81{word-spacing:-2.944000pt;}
.ws62{word-spacing:-2.688000pt;}
.wsb8{word-spacing:-2.624000pt;}
.ws63{word-spacing:-2.560000pt;}
.wsb7{word-spacing:-2.432000pt;}
.wsb3{word-spacing:-2.304000pt;}
.ws48{word-spacing:-2.048000pt;}
.ws36{word-spacing:-1.920000pt;}
.wsc4{word-spacing:-1.792000pt;}
.wse1{word-spacing:-1.728000pt;}
.ws64{word-spacing:-1.664000pt;}
.ws39{word-spacing:-1.280000pt;}
.ws3a{word-spacing:-1.024000pt;}
.ws7a{word-spacing:-0.816000pt;}
.ws3b{word-spacing:-0.768000pt;}
.ws1d{word-spacing:-0.640000pt;}
.ws7d{word-spacing:-0.528000pt;}
.wsde{word-spacing:-0.512000pt;}
.ws41{word-spacing:-0.449280pt;}
.ws88{word-spacing:-0.448000pt;}
.wsc3{word-spacing:-0.384000pt;}
.ws54{word-spacing:-0.318720pt;}
.wsb0{word-spacing:-0.299520pt;}
.ws45{word-spacing:-0.256000pt;}
.ws5b{word-spacing:-0.212480pt;}
.ws78{word-spacing:-0.192000pt;}
.ws55{word-spacing:-0.159360pt;}
.ws12{word-spacing:-0.128000pt;}
.ws5a{word-spacing:-0.106240pt;}
.ws59{word-spacing:-0.053120pt;}
.ws76{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws74{word-spacing:0.048000pt;}
.ws57{word-spacing:0.053120pt;}
.wsdd{word-spacing:0.064000pt;}
.ws79{word-spacing:0.096000pt;}
.ws58{word-spacing:0.106240pt;}
.ws53{word-spacing:0.128000pt;}
.ws7b{word-spacing:0.144000pt;}
.ws46{word-spacing:0.192000pt;}
.ws56{word-spacing:0.212480pt;}
.ws7f{word-spacing:0.240000pt;}
.ws7{word-spacing:0.255360pt;}
.ws8{word-spacing:0.256000pt;}
.ws4a{word-spacing:0.257280pt;}
.ws75{word-spacing:0.288000pt;}
.ws7c{word-spacing:0.336000pt;}
.ws7e{word-spacing:0.432000pt;}
.wse{word-spacing:0.512000pt;}
.ws77{word-spacing:0.624000pt;}
.ws22{word-spacing:0.640000pt;}
.wse0{word-spacing:0.768000pt;}
.ws40{word-spacing:0.823680pt;}
.ws49{word-spacing:0.832000pt;}
.ws96{word-spacing:0.896000pt;}
.ws1a{word-spacing:1.280000pt;}
.wsc0{word-spacing:1.408000pt;}
.wsc1{word-spacing:1.536000pt;}
.wsa9{word-spacing:1.792000pt;}
.ws1b{word-spacing:1.920000pt;}
.ws1c{word-spacing:2.176000pt;}
.wsdf{word-spacing:2.432000pt;}
.ws4f{word-spacing:2.496000pt;}
.ws19{word-spacing:2.560000pt;}
.ws29{word-spacing:2.816000pt;}
.ws1e{word-spacing:3.200000pt;}
.wsbb{word-spacing:3.328000pt;}
.wsc7{word-spacing:3.456000pt;}
.ws26{word-spacing:3.712000pt;}
.ws27{word-spacing:3.840000pt;}
.wsda{word-spacing:3.968000pt;}
.wsc6{word-spacing:4.032000pt;}
.ws28{word-spacing:4.096000pt;}
.ws80{word-spacing:4.480000pt;}
.wsd0{word-spacing:4.608000pt;}
.wseb{word-spacing:4.672000pt;}
.wse2{word-spacing:4.736000pt;}
.wse4{word-spacing:4.992000pt;}
.ws69{word-spacing:5.120000pt;}
.wse5{word-spacing:5.248000pt;}
.ws8f{word-spacing:5.376000pt;}
.wsd1{word-spacing:5.632000pt;}
.ws42{word-spacing:5.760000pt;}
.wsee{word-spacing:5.824000pt;}
.wse6{word-spacing:5.888000pt;}
.wse7{word-spacing:6.016000pt;}
.ws30{word-spacing:6.400000pt;}
.wsbf{word-spacing:6.528000pt;}
.ws60{word-spacing:7.040000pt;}
.wsba{word-spacing:7.168000pt;}
.wsaf{word-spacing:7.296000pt;}
.ws47{word-spacing:7.680000pt;}
.ws43{word-spacing:8.320000pt;}
.wscc{word-spacing:8.448000pt;}
.wsed{word-spacing:8.576000pt;}
.wsdc{word-spacing:8.704000pt;}
.ws2c{word-spacing:8.960000pt;}
.ws3e{word-spacing:9.600000pt;}
.wsb9{word-spacing:9.728000pt;}
.wse3{word-spacing:9.792000pt;}
.ws3d{word-spacing:9.856000pt;}
.wsef{word-spacing:10.112000pt;}
.ws3c{word-spacing:10.240000pt;}
.wsd5{word-spacing:10.304000pt;}
.wscb{word-spacing:10.368000pt;}
.ws2a{word-spacing:10.880000pt;}
.ws2b{word-spacing:11.136000pt;}
.ws9{word-spacing:11.520000pt;}
.ws25{word-spacing:11.776000pt;}
.ws2f{word-spacing:12.160000pt;}
.wsc2{word-spacing:12.672000pt;}
.ws14{word-spacing:12.800000pt;}
.wsd6{word-spacing:12.864000pt;}
.wscf{word-spacing:12.928000pt;}
.wsd8{word-spacing:13.056000pt;}
.ws15{word-spacing:13.440000pt;}
.wsd7{word-spacing:13.568000pt;}
.ws20{word-spacing:13.696000pt;}
.ws24{word-spacing:14.080000pt;}
.ws23{word-spacing:14.336000pt;}
.wsa1{word-spacing:14.592000pt;}
.ws38{word-spacing:14.720000pt;}
.wsb2{word-spacing:15.232000pt;}
.ws4c{word-spacing:15.360000pt;}
.wsd2{word-spacing:15.424000pt;}
.wsca{word-spacing:15.488000pt;}
.ws4d{word-spacing:15.616000pt;}
.ws4e{word-spacing:16.000000pt;}
.wse8{word-spacing:16.192000pt;}
.wsd{word-spacing:16.256000pt;}
.ws6a{word-spacing:16.640000pt;}
.wsc8{word-spacing:16.768000pt;}
.wsc9{word-spacing:16.896000pt;}
.wsa4{word-spacing:17.152000pt;}
.ws34{word-spacing:17.280000pt;}
.wsf{word-spacing:17.920000pt;}
.wsdb{word-spacing:18.432000pt;}
.ws87{word-spacing:18.560000pt;}
.wsd9{word-spacing:18.688000pt;}
.ws8e{word-spacing:19.072000pt;}
.ws66{word-spacing:19.200000pt;}
.ws95{word-spacing:19.328000pt;}
.ws83{word-spacing:19.456000pt;}
.ws33{word-spacing:19.840000pt;}
.wsd4{word-spacing:19.904000pt;}
.wsd3{word-spacing:19.968000pt;}
.ws32{word-spacing:20.096000pt;}
.ws21{word-spacing:20.480000pt;}
.wse9{word-spacing:20.608000pt;}
.wsea{word-spacing:20.736000pt;}
.ws9e{word-spacing:21.120000pt;}
.wsb5{word-spacing:21.184000pt;}
.wsbc{word-spacing:21.248000pt;}
.wsbd{word-spacing:21.376000pt;}
.ws68{word-spacing:21.760000pt;}
.ws67{word-spacing:21.888000pt;}
.wsec{word-spacing:22.272000pt;}
.wsc{word-spacing:22.400000pt;}
.ws89{word-spacing:23.040000pt;}
.wsa2{word-spacing:23.680000pt;}
.wsb6{word-spacing:23.936000pt;}
.wsab{word-spacing:24.192000pt;}
.wsaa{word-spacing:24.320000pt;}
.ws61{word-spacing:25.216000pt;}
.ws4b{word-spacing:25.600000pt;}
.wsa6{word-spacing:26.240000pt;}
.wsa5{word-spacing:26.496000pt;}
.ws16{word-spacing:27.520000pt;}
.wsbe{word-spacing:27.648000pt;}
.wsa8{word-spacing:28.160000pt;}
.wsa7{word-spacing:28.416000pt;}
.ws13{word-spacing:28.800000pt;}
.ws44{word-spacing:29.056000pt;}
.wsad{word-spacing:29.312000pt;}
.wsae{word-spacing:29.696000pt;}
.wsa{word-spacing:30.080000pt;}
.wsb{word-spacing:30.592000pt;}
.wsb1{word-spacing:32.640000pt;}
.ws31{word-spacing:33.280000pt;}
.ws10{word-spacing:34.560000pt;}
.ws11{word-spacing:34.816000pt;}
.ws8a{word-spacing:35.840000pt;}
.ws90{word-spacing:37.760000pt;}
.wsa0{word-spacing:39.680000pt;}
.ws37{word-spacing:40.960000pt;}
.wsce{word-spacing:42.240000pt;}
.wscd{word-spacing:42.368000pt;}
.wsb4{word-spacing:42.880000pt;}
.ws2d{word-spacing:53.376000pt;}
.ws35{word-spacing:57.856000pt;}
.ws65{word-spacing:58.880000pt;}
.ws6b{word-spacing:166.956160pt;}
.ws6f{word-spacing:174.192000pt;}
.ws9a{word-spacing:182.256000pt;}
.ws8b{word-spacing:189.957120pt;}
.ws97{word-spacing:190.913280pt;}
.ws84{word-spacing:191.338240pt;}
.ws91{word-spacing:191.763200pt;}
.ws6e{word-spacing:237.499520pt;}
.ws6d{word-spacing:264.218880pt;}
.ws99{word-spacing:309.742720pt;}
.ws93{word-spacing:310.592640pt;}
.ws9d{word-spacing:316.818667pt;}
.ws8c{word-spacing:322.225920pt;}
.ws98{word-spacing:323.182080pt;}
.ws85{word-spacing:323.607040pt;}
.ws92{word-spacing:324.032000pt;}
.ws9c{word-spacing:372.964267pt;}
.ws9b{word-spacing:414.258667pt;}
.ws70{word-spacing:439.060267pt;}
._33{margin-left:-196.224000pt;}
._39{margin-left:-160.800000pt;}
._3a{margin-left:-143.424000pt;}
._12{margin-left:-4.160000pt;}
._11{margin-left:-3.200000pt;}
._13{margin-left:-2.304000pt;}
._0{margin-left:-0.947968pt;}
._1{width:0.956480pt;}
._2{width:1.855168pt;}
._19{width:2.885376pt;}
._6{width:3.776000pt;}
._7{width:4.675520pt;}
._1d{width:6.080000pt;}
._c{width:7.808000pt;}
._d{width:9.280000pt;}
._1a{width:10.543232pt;}
._9{width:11.507968pt;}
._f{width:12.507584pt;}
._e{width:13.619968pt;}
._1b{width:14.863552pt;}
._3{width:16.960000pt;}
._5{width:17.975488pt;}
._1e{width:19.267520pt;}
._17{width:20.224000pt;}
._16{width:21.171968pt;}
._4{width:22.464000pt;}
._18{width:23.619520pt;}
._22{width:24.572480pt;}
._23{width:25.859520pt;}
._10{width:27.123968pt;}
._b{width:28.156480pt;}
._a{width:29.383040pt;}
._35{width:30.336000pt;}
._31{width:31.795968pt;}
._14{width:32.896000pt;}
._15{width:33.987520pt;}
._8{width:35.187968pt;}
._36{width:36.428032pt;}
._44{width:38.016000pt;}
._3b{width:39.603968pt;}
._21{width:40.832000pt;}
._42{width:41.779968pt;}
._41{width:42.880000pt;}
._27{width:44.544000pt;}
._28{width:45.888000pt;}
._40{width:51.648000pt;}
._1c{width:53.782400pt;}
._20{width:56.896000pt;}
._1f{width:58.314560pt;}
._37{width:60.736000pt;}
._29{width:65.280000pt;}
._3f{width:68.531968pt;}
._2a{width:81.280000pt;}
._30{width:93.717867pt;}
._38{width:97.687680pt;}
._32{width:99.068800pt;}
._2b{width:116.683947pt;}
._2d{width:160.704000pt;}
._2e{width:164.273813pt;}
._3d{width:168.768000pt;}
._2c{width:172.848000pt;}
._3c{width:180.960000pt;}
._43{width:238.272000pt;}
._2f{width:266.473387pt;}
._26{width:274.560000pt;}
._34{width:437.956267pt;}
._25{width:501.952000pt;}
._24{width:557.504000pt;}
._3e{width:752.000000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:3.520000pt;}
.y1d1{bottom:19.200000pt;}
.y67{bottom:21.920000pt;}
.y75{bottom:40.320000pt;}
.y2{bottom:50.720000pt;}
.yc7{bottom:50.880000pt;}
.y72{bottom:58.720000pt;}
.y1{bottom:69.120000pt;}
.yc6{bottom:69.280000pt;}
.ya9{bottom:95.520000pt;}
.y287{bottom:99.360000pt;}
.y285{bottom:100.960000pt;}
.y19f{bottom:101.440000pt;}
.y23b{bottom:102.400000pt;}
.y46{bottom:103.200000pt;}
.y248{bottom:112.160000pt;}
.y169{bottom:112.960000pt;}
.y80{bottom:113.920000pt;}
.y19e{bottom:117.440000pt;}
.ye7{bottom:118.080000pt;}
.y235{bottom:120.160000pt;}
.y1f1{bottom:125.120000pt;}
.y286{bottom:126.880000pt;}
.y284{bottom:127.680000pt;}
.y23a{bottom:130.080000pt;}
.y45{bottom:130.720000pt;}
.y147{bottom:131.360000pt;}
.y215{bottom:138.080000pt;}
.y247{bottom:139.680000pt;}
.y168{bottom:140.480000pt;}
.y23{bottom:142.560000pt;}
.ye6{bottom:145.760000pt;}
.y265{bottom:147.040000pt;}
.y234{bottom:147.680000pt;}
.y13c{bottom:150.880000pt;}
.y19d{bottom:152.160000pt;}
.y283{bottom:154.560000pt;}
.y107{bottom:157.440000pt;}
.y239{bottom:157.600000pt;}
.y44{bottom:158.400000pt;}
.y146{bottom:158.880000pt;}
.y64{bottom:161.760000pt;}
.y1f0{bottom:162.240000pt;}
.y1b5{bottom:166.255067pt;}
.y246{bottom:167.360000pt;}
.yb5{bottom:169.120000pt;}
.y22{bottom:170.080000pt;}
.ye5{bottom:173.280000pt;}
.y264{bottom:173.760000pt;}
.y106{bottom:174.720000pt;}
.y167{bottom:174.880000pt;}
.y233{bottom:175.360000pt;}
.y214{bottom:176.320000pt;}
.y13b{bottom:178.400000pt;}
.y282{bottom:181.440000pt;}
.y238{bottom:185.280000pt;}
.y43{bottom:185.920000pt;}
.y145{bottom:186.560000pt;}
.y1ef{bottom:188.640000pt;}
.y1b4{bottom:188.755333pt;}
.y63{bottom:189.280000pt;}
.y245{bottom:194.880000pt;}
.y21{bottom:197.760000pt;}
.y263{bottom:200.640000pt;}
.ye4{bottom:200.960000pt;}
.y232{bottom:202.880000pt;}
.y213{bottom:203.840000pt;}
.y1ee{bottom:204.160000pt;}
.y13a{bottom:206.080000pt;}
.y281{bottom:208.160000pt;}
.y105{bottom:209.440000pt;}
.y166{bottom:210.880000pt;}
.y1b3{bottom:211.255467pt;}
.y237{bottom:212.800000pt;}
.y42{bottom:213.600000pt;}
.y62{bottom:216.960000pt;}
.y144{bottom:220.960000pt;}
.y244{bottom:222.560000pt;}
.y1ea{bottom:222.880000pt;}
.y1ed{bottom:223.360000pt;}
.y11e{bottom:224.141200pt;}
.y20{bottom:225.280000pt;}
.y165{bottom:226.880000pt;}
.y262{bottom:227.520000pt;}
.ye3{bottom:228.480000pt;}
.y231{bottom:230.560000pt;}
.y212{bottom:231.520000pt;}
.y139{bottom:233.600000pt;}
.y280{bottom:235.040000pt;}
.y1a6{bottom:237.833867pt;}
.y236{bottom:240.480000pt;}
.y41{bottom:241.120000pt;}
.y1ec{bottom:242.400000pt;}
.y61{bottom:244.480000pt;}
.yc5{bottom:245.756160pt;}
.y11d{bottom:246.641333pt;}
.y243{bottom:250.080000pt;}
.y1e9{bottom:250.400000pt;}
.y183{bottom:251.680000pt;}
.y1f{bottom:252.960000pt;}
.y261{bottom:254.240000pt;}
.ye2{bottom:256.160000pt;}
.y143{bottom:256.960000pt;}
.y230{bottom:258.080000pt;}
.y211{bottom:259.040000pt;}
.y138{bottom:261.280000pt;}
.y1eb{bottom:261.440000pt;}
.y1a7{bottom:261.461867pt;}
.y164{bottom:261.600000pt;}
.y27f{bottom:261.920000pt;}
.y199{bottom:266.974400pt;}
.y15f{bottom:268.000000pt;}
.yc4{bottom:268.796960pt;}
.y40{bottom:268.800000pt;}
.y11c{bottom:269.141467pt;}
.y60{bottom:272.160000pt;}
.y142{bottom:272.960000pt;}
.y17f{bottom:275.707733pt;}
.y1a8{bottom:277.517867pt;}
.y242{bottom:277.760000pt;}
.y1e8{bottom:278.080000pt;}
.y1e{bottom:280.480000pt;}
.y260{bottom:281.120000pt;}
.ya0{bottom:283.520000pt;}
.ye1{bottom:283.680000pt;}
.y22f{bottom:285.760000pt;}
.y210{bottom:286.720000pt;}
.y27e{bottom:288.640000pt;}
.y137{bottom:288.800000pt;}
.y198{bottom:289.474533pt;}
.yc3{bottom:291.678400pt;}
.y1a9{bottom:293.573867pt;}
.y15e{bottom:295.680000pt;}
.y10f{bottom:295.720000pt;}
.y3f{bottom:296.320000pt;}
.y17e{bottom:298.207867pt;}
.y1e7{bottom:299.520000pt;}
.y5f{bottom:299.680000pt;}
.y241{bottom:305.280000pt;}
.y141{bottom:307.680000pt;}
.y25f{bottom:308.000000pt;}
.y1d{bottom:308.160000pt;}
.y98{bottom:308.941600pt;}
.y8f{bottom:308.954880pt;}
.y1aa{bottom:309.629867pt;}
.ye0{bottom:311.360000pt;}
.y197{bottom:311.974667pt;}
.y22e{bottom:313.280000pt;}
.y20f{bottom:314.240000pt;}
.yc2{bottom:314.719200pt;}
.y27d{bottom:315.520000pt;}
.y136{bottom:316.480000pt;}
.y1e3{bottom:318.240000pt;}
.y1e6{bottom:318.560000pt;}
.y17d{bottom:320.708000pt;}
.y15d{bottom:323.041067pt;}
.y100{bottom:323.200000pt;}
.y3e{bottom:324.000000pt;}
.y110{bottom:324.652000pt;}
.y1ab{bottom:325.685867pt;}
.y5e{bottom:327.360000pt;}
.y97{bottom:331.823040pt;}
.y8e{bottom:331.836320pt;}
.y240{bottom:332.960000pt;}
.y25e{bottom:334.880000pt;}
.y1c{bottom:335.680000pt;}
.yc1{bottom:337.760000pt;}
.y18a{bottom:338.553200pt;}
.ydf{bottom:338.880000pt;}
.y22d{bottom:340.960000pt;}
.y1ac{bottom:341.741867pt;}
.y20e{bottom:341.760000pt;}
.y27c{bottom:342.400000pt;}
.y9f{bottom:343.360000pt;}
.y135{bottom:344.000000pt;}
.y15c{bottom:345.541200pt;}
.y1e2{bottom:345.760000pt;}
.y170{bottom:347.286400pt;}
.yff{bottom:350.880000pt;}
.y111{bottom:351.316000pt;}
.y3d{bottom:351.520000pt;}
.y96{bottom:354.863840pt;}
.y8d{bottom:354.877120pt;}
.y5d{bottom:354.880000pt;}
.y1e5{bottom:356.800000pt;}
.y1ad{bottom:357.797867pt;}
.y23f{bottom:360.480000pt;}
.yc0{bottom:360.800800pt;}
.y25d{bottom:361.600000pt;}
.y1b{bottom:363.360000pt;}
.y18b{bottom:364.065200pt;}
.yde{bottom:366.560000pt;}
.y15b{bottom:368.041333pt;}
.y22c{bottom:368.480000pt;}
.y27b{bottom:369.280000pt;}
.y9e{bottom:370.880000pt;}
.y134{bottom:371.520000pt;}
.y1e1{bottom:373.440000pt;}
.y171{bottom:373.770400pt;}
.y1ae{bottom:373.853867pt;}
.y1e4{bottom:375.840000pt;}
.y95{bottom:377.904640pt;}
.y8c{bottom:377.917920pt;}
.y112{bottom:377.980000pt;}
.yfe{bottom:378.400000pt;}
.y3c{bottom:379.200000pt;}
.y5c{bottom:382.560000pt;}
.ybf{bottom:383.682240pt;}
.y18c{bottom:383.877200pt;}
.y20d{bottom:384.320000pt;}
.y23e{bottom:388.160000pt;}
.y25c{bottom:388.480000pt;}
.y1af{bottom:389.909867pt;}
.y1a{bottom:390.880000pt;}
.ydd{bottom:394.080000pt;}
.y14e{bottom:394.619867pt;}
.y1e0{bottom:394.880000pt;}
.y172{bottom:395.526400pt;}
.y27a{bottom:396.000000pt;}
.y22b{bottom:396.160000pt;}
.y9d{bottom:398.560000pt;}
.y133{bottom:399.200000pt;}
.y94{bottom:400.945440pt;}
.y8b{bottom:400.958720pt;}
.y18d{bottom:403.689200pt;}
.y113{bottom:404.644000pt;}
.yfd{bottom:405.920000pt;}
.y1b0{bottom:405.965867pt;}
.y3b{bottom:406.720000pt;}
.y5b{bottom:410.080000pt;}
.y20c{bottom:410.720000pt;}
.y1db{bottom:413.600000pt;}
.y1df{bottom:413.920000pt;}
.y25b{bottom:415.360000pt;}
.y23d{bottom:415.680000pt;}
.y173{bottom:417.282400pt;}
.ybe{bottom:417.440000pt;}
.y19{bottom:418.560000pt;}
.y14f{bottom:419.351867pt;}
.ydc{bottom:421.760000pt;}
.y1b1{bottom:422.021867pt;}
.y279{bottom:422.880000pt;}
.y18e{bottom:423.501200pt;}
.y22a{bottom:423.680000pt;}
.y9c{bottom:423.813600pt;}
.y93{bottom:423.826880pt;}
.y8a{bottom:423.840160pt;}
.y20b{bottom:426.400000pt;}
.y132{bottom:426.720000pt;}
.yb4{bottom:430.560000pt;}
.y114{bottom:431.308000pt;}
.y1de{bottom:432.960000pt;}
.yfc{bottom:433.600000pt;}
.y3a{bottom:434.400000pt;}
.y5a{bottom:437.600000pt;}
.y150{bottom:437.615867pt;}
.y1b2{bottom:438.077867pt;}
.y174{bottom:439.038400pt;}
.y206{bottom:440.320000pt;}
.y1da{bottom:441.120000pt;}
.y25a{bottom:442.080000pt;}
.y18f{bottom:443.313200pt;}
.y20a{bottom:445.440000pt;}
.y18{bottom:446.080000pt;}
.y9b{bottom:446.854400pt;}
.y92{bottom:446.867680pt;}
.y89{bottom:446.880960pt;}
.y278{bottom:449.760000pt;}
.y23c{bottom:450.560000pt;}
.y229{bottom:451.360000pt;}
.y1dd{bottom:452.000000pt;}
.ybd{bottom:452.480000pt;}
.y131{bottom:454.400000pt;}
.y151{bottom:455.879867pt;}
.ydb{bottom:456.160000pt;}
.y115{bottom:457.972000pt;}
.y205{bottom:458.720000pt;}
.y175{bottom:460.794400pt;}
.yfb{bottom:461.120000pt;}
.y39{bottom:461.920000pt;}
.y190{bottom:463.125200pt;}
.y209{bottom:464.480000pt;}
.y59{bottom:468.160000pt;}
.y1d9{bottom:468.800000pt;}
.y259{bottom:468.960000pt;}
.y9a{bottom:469.895200pt;}
.y91{bottom:469.908480pt;}
.y88{bottom:469.921760pt;}
.ybc{bottom:470.880000pt;}
.y1dc{bottom:471.200000pt;}
.y17{bottom:473.760000pt;}
.y152{bottom:474.143867pt;}
.y277{bottom:476.480000pt;}
.y204{bottom:477.120000pt;}
.y228{bottom:478.880000pt;}
.y130{bottom:481.920000pt;}
.y176{bottom:482.550400pt;}
.y191{bottom:482.937200pt;}
.y208{bottom:483.520000pt;}
.y116{bottom:484.636000pt;}
.y19c{bottom:485.280000pt;}
.yfa{bottom:488.800000pt;}
.ybb{bottom:489.280000pt;}
.y38{bottom:489.600000pt;}
.y1d2{bottom:490.240000pt;}
.yda{bottom:491.040000pt;}
.y153{bottom:492.407867pt;}
.y99{bottom:492.936000pt;}
.y90{bottom:492.949280pt;}
.y87{bottom:492.962560pt;}
.y203{bottom:495.520000pt;}
.y58{bottom:495.840000pt;}
.y16{bottom:501.280000pt;}
.y207{bottom:502.560000pt;}
.y192{bottom:502.749200pt;}
.y1d5{bottom:502.880000pt;}
.y276{bottom:503.360000pt;}
.y177{bottom:504.306400pt;}
.y227{bottom:506.560000pt;}
.yba{bottom:507.680000pt;}
.y12f{bottom:509.600000pt;}
.y154{bottom:510.671867pt;}
.y117{bottom:511.300000pt;}
.yf9{bottom:516.320000pt;}
.y37{bottom:517.120000pt;}
.y19b{bottom:519.680000pt;}
.y86{bottom:520.160000pt;}
.y202{bottom:521.600000pt;}
.y258{bottom:522.560000pt;}
.y193{bottom:522.561200pt;}
.y57{bottom:523.360000pt;}
.y1d8{bottom:524.960000pt;}
.y178{bottom:526.062400pt;}
.yb9{bottom:526.080000pt;}
.y155{bottom:528.935867pt;}
.y15{bottom:528.960000pt;}
.yd9{bottom:529.120000pt;}
.y275{bottom:530.240000pt;}
.y1d4{bottom:530.560000pt;}
.y7f{bottom:533.280000pt;}
.y226{bottom:534.080000pt;}
.y12e{bottom:537.120000pt;}
.y118{bottom:537.964000pt;}
.y201{bottom:540.800000pt;}
.y194{bottom:542.373200pt;}
.yf8{bottom:544.000000pt;}
.yb8{bottom:544.480000pt;}
.y36{bottom:544.800000pt;}
.y1fd{bottom:544.960000pt;}
.y156{bottom:547.199867pt;}
.y179{bottom:547.818400pt;}
.y257{bottom:549.440000pt;}
.y56{bottom:551.040000pt;}
.y19a{bottom:554.400000pt;}
.y85{bottom:555.200000pt;}
.y14{bottom:556.480000pt;}
.yd8{bottom:556.800000pt;}
.y274{bottom:556.960000pt;}
.y1d3{bottom:558.080000pt;}
.y200{bottom:559.840000pt;}
.y225{bottom:561.760000pt;}
.y195{bottom:562.185200pt;}
.yb7{bottom:562.880000pt;}
.y1d7{bottom:563.200000pt;}
.y1fc{bottom:563.360000pt;}
.y119{bottom:564.628000pt;}
.y12d{bottom:564.800000pt;}
.y157{bottom:565.463867pt;}
.y17a{bottom:569.574400pt;}
.y1a5{bottom:571.449200pt;}
.yf7{bottom:571.520000pt;}
.y35{bottom:572.320000pt;}
.y84{bottom:573.600000pt;}
.y256{bottom:576.320000pt;}
.y55{bottom:578.560000pt;}
.y1ff{bottom:578.880000pt;}
.yb6{bottom:581.280000pt;}
.y1fb{bottom:581.760000pt;}
.y196{bottom:581.997200pt;}
.y1d6{bottom:582.240000pt;}
.y7e{bottom:582.720000pt;}
.y158{bottom:583.727867pt;}
.y273{bottom:583.840000pt;}
.y13{bottom:584.160000pt;}
.yd7{bottom:584.320000pt;}
.y224{bottom:589.280000pt;}
.y11a{bottom:591.292000pt;}
.y17b{bottom:591.330400pt;}
.y83{bottom:592.000000pt;}
.y12c{bottom:592.320000pt;}
.y1fe{bottom:597.920000pt;}
.yf6{bottom:599.200000pt;}
.y34{bottom:599.840000pt;}
.y7d{bottom:601.120000pt;}
.y1c9{bottom:601.280000pt;}
.y159{bottom:601.991867pt;}
.y255{bottom:603.040000pt;}
.y54{bottom:606.240000pt;}
.y82{bottom:610.400000pt;}
.y272{bottom:610.720000pt;}
.y12{bottom:611.680000pt;}
.yd6{bottom:612.000000pt;}
.y17c{bottom:613.086400pt;}
.y1cc{bottom:613.920000pt;}
.y1a0{bottom:614.544400pt;}
.yb0{bottom:615.200000pt;}
.y1fa{bottom:616.960000pt;}
.y11b{bottom:617.956000pt;}
.y12b{bottom:620.000000pt;}
.y15a{bottom:620.255867pt;}
.yf5{bottom:626.720000pt;}
.y33{bottom:627.520000pt;}
.yb3{bottom:627.840000pt;}
.y81{bottom:628.800000pt;}
.y254{bottom:629.920000pt;}
.y53{bottom:633.760000pt;}
.y1d0{bottom:636.000000pt;}
.yb1{bottom:637.120000pt;}
.y271{bottom:637.440000pt;}
.y11{bottom:639.360000pt;}
.yd5{bottom:639.520000pt;}
.y1f9{bottom:640.320000pt;}
.y1cb{bottom:641.600000pt;}
.y223{bottom:644.480000pt;}
.yb2{bottom:646.240000pt;}
.y12a{bottom:647.520000pt;}
.y182{bottom:650.880000pt;}
.yf4{bottom:654.400000pt;}
.y32{bottom:655.040000pt;}
.y1cf{bottom:655.200000pt;}
.y253{bottom:656.800000pt;}
.y1f8{bottom:658.720000pt;}
.y1a2{bottom:659.497200pt;}
.y77{bottom:662.720000pt;}
.y52{bottom:664.320000pt;}
.y10{bottom:666.880000pt;}
.yd4{bottom:667.200000pt;}
.y1ca{bottom:669.120000pt;}
.yae{bottom:671.040000pt;}
.y104{bottom:671.680000pt;}
.y222{bottom:672.160000pt;}
.y1ce{bottom:674.240000pt;}
.y129{bottom:675.200000pt;}
.y7c{bottom:675.360000pt;}
.y1f7{bottom:677.120000pt;}
.y1a1{bottom:678.381360pt;}
.yf3{bottom:681.920000pt;}
.y31{bottom:682.720000pt;}
.y252{bottom:683.680000pt;}
.y79{bottom:684.640000pt;}
.y163{bottom:684.960000pt;}
.y181{bottom:685.280000pt;}
.y140{bottom:686.880000pt;}
.y103{bottom:688.960000pt;}
.y270{bottom:691.200000pt;}
.yaf{bottom:692.960000pt;}
.y1cd{bottom:693.280000pt;}
.y7b{bottom:693.760000pt;}
.yf{bottom:694.560000pt;}
.yd3{bottom:694.720000pt;}
.y51{bottom:698.720000pt;}
.y221{bottom:699.680000pt;}
.y162{bottom:700.960000pt;}
.y128{bottom:702.720000pt;}
.y13f{bottom:702.880000pt;}
.y78{bottom:703.040000pt;}
.y102{bottom:707.360000pt;}
.yf2{bottom:709.600000pt;}
.y30{bottom:710.240000pt;}
.y251{bottom:710.400000pt;}
.y7a{bottom:712.160000pt;}
.y1c8{bottom:712.320000pt;}
.y1a4{bottom:713.334320pt;}
.y26f{bottom:718.080000pt;}
.y161{bottom:719.360000pt;}
.y180{bottom:720.000000pt;}
.y13e{bottom:721.280000pt;}
.ye{bottom:722.080000pt;}
.yd2{bottom:722.400000pt;}
.ya6{bottom:726.880000pt;}
.y220{bottom:727.360000pt;}
.y127{bottom:730.400000pt;}
.y1c3{bottom:731.040000pt;}
.y1c7{bottom:731.360000pt;}
.y50{bottom:734.240000pt;}
.y1f6{bottom:735.520000pt;}
.y189{bottom:735.968533pt;}
.y74{bottom:736.960000pt;}
.yf1{bottom:737.120000pt;}
.y250{bottom:737.280000pt;}
.y2f{bottom:737.920000pt;}
.y101{bottom:741.920000pt;}
.y26e{bottom:744.800000pt;}
.yad{bottom:748.800000pt;}
.yd{bottom:749.759867pt;}
.yd1{bottom:749.920000pt;}
.y1c6{bottom:750.400000pt;}
.y160{bottom:753.920000pt;}
.y21f{bottom:754.880000pt;}
.y13d{bottom:756.000000pt;}
.y126{bottom:757.920000pt;}
.y1c2{bottom:758.560000pt;}
.y76{bottom:758.880000pt;}
.y10e{bottom:759.101867pt;}
.y4f{bottom:761.920000pt;}
.y24f{bottom:764.160000pt;}
.yf0{bottom:764.800000pt;}
.y2e{bottom:765.440000pt;}
.yac{bottom:767.200000pt;}
.y1c5{bottom:769.440000pt;}
.y16f{bottom:770.701867pt;}
.y26d{bottom:771.680000pt;}
.y1f5{bottom:772.320000pt;}
.y14d{bottom:772.835067pt;}
.ya8{bottom:776.480000pt;}
.yc{bottom:777.280000pt;}
.yd0{bottom:777.600000pt;}
.y184{bottom:779.202667pt;}
.y21e{bottom:782.560000pt;}
.yab{bottom:785.600000pt;}
.y1c1{bottom:786.240000pt;}
.y1c4{bottom:788.640000pt;}
.y4e{bottom:789.440000pt;}
.y24e{bottom:790.880000pt;}
.y109{bottom:791.100667pt;}
.yef{bottom:792.320000pt;}
.y71{bottom:792.800000pt;}
.y2d{bottom:793.120000pt;}
.ya7{bottom:794.880000pt;}
.y26c{bottom:798.560000pt;}
.yaa{bottom:804.000000pt;}
.yb{bottom:804.960000pt;}
.ycf{bottom:805.120000pt;}
.y108{bottom:807.368667pt;}
.y16a{bottom:807.657333pt;}
.y1c0{bottom:807.680000pt;}
.y148{bottom:809.306267pt;}
.y21d{bottom:810.080000pt;}
.y125{bottom:813.120000pt;}
.y70{bottom:814.720000pt;}
.y4d{bottom:817.120000pt;}
.y24d{bottom:817.760000pt;}
.yee{bottom:820.000000pt;}
.y2c{bottom:820.640000pt;}
.y186{bottom:823.478187pt;}
.y73{bottom:824.000000pt;}
.y26b{bottom:825.280000pt;}
.y1a3{bottom:825.749520pt;}
.y1bb{bottom:826.240000pt;}
.y1bf{bottom:826.720000pt;}
.y1f4{bottom:830.880000pt;}
.ya{bottom:832.480000pt;}
.yce{bottom:832.800000pt;}
.y6f{bottom:833.120000pt;}
.y21c{bottom:837.760000pt;}
.y124{bottom:840.800000pt;}
.y185{bottom:844.301227pt;}
.y4c{bottom:844.640000pt;}
.y1be{bottom:845.760000pt;}
.yed{bottom:847.520000pt;}
.y2b{bottom:848.320000pt;}
.y1f3{bottom:849.280000pt;}
.y16c{bottom:851.428213pt;}
.y26a{bottom:852.160000pt;}
.y14a{bottom:852.160827pt;}
.y10b{bottom:853.901787pt;}
.y1ba{bottom:853.920000pt;}
.ya4{bottom:856.320000pt;}
.y9{bottom:860.160000pt;}
.ycd{bottom:860.320000pt;}
.y1bd{bottom:864.800000pt;}
.y21b{bottom:865.280000pt;}
.y1f2{bottom:867.680000pt;}
.y123{bottom:868.320000pt;}
.y10a{bottom:868.629307pt;}
.y149{bottom:869.026427pt;}
.ya5{bottom:869.120000pt;}
.y16b{bottom:870.883413pt;}
.y24c{bottom:871.360000pt;}
.y4b{bottom:872.320000pt;}
.y188{bottom:874.911627pt;}
.y6e{bottom:875.200000pt;}
.y2a{bottom:875.840000pt;}
.y269{bottom:879.040000pt;}
.y1b9{bottom:881.440000pt;}
.y1bc{bottom:883.840000pt;}
.y10d{bottom:886.650267pt;}
.ycc{bottom:888.000000pt;}
.y21a{bottom:892.960000pt;}
.y6d{bottom:893.600000pt;}
.ya2{bottom:893.760000pt;}
.y8{bottom:894.560000pt;}
.y16e{bottom:895.650613pt;}
.y122{bottom:896.000000pt;}
.y14c{bottom:898.083067pt;}
.y24b{bottom:898.240000pt;}
.y4a{bottom:899.840000pt;}
.yec{bottom:902.720000pt;}
.y1b8{bottom:903.040000pt;}
.y29{bottom:903.520000pt;}
.y268{bottom:905.760000pt;}
.ycb{bottom:915.520000pt;}
.ya3{bottom:915.680000pt;}
.y219{bottom:920.480000pt;}
.y6c{bottom:922.080000pt;}
.y121{bottom:923.520000pt;}
.y24a{bottom:925.120000pt;}
.y49{bottom:927.520000pt;}
.y7{bottom:930.093760pt;}
.yeb{bottom:930.400000pt;}
.y28{bottom:931.040000pt;}
.y267{bottom:932.640000pt;}
.yca{bottom:943.200000pt;}
.y1b7{bottom:944.000000pt;}
.y218{bottom:948.160000pt;}
.y6a{bottom:949.600000pt;}
.ya1{bottom:949.760000pt;}
.y120{bottom:951.200000pt;}
.y249{bottom:951.840000pt;}
.y6{bottom:954.565760pt;}
.yea{bottom:957.920000pt;}
.y27{bottom:958.720000pt;}
.y69{bottom:958.880000pt;}
.y266{bottom:959.520000pt;}
.y48{bottom:962.400000pt;}
.y6b{bottom:968.000000pt;}
.yc9{bottom:970.720000pt;}
.y217{bottom:975.680000pt;}
.y11f{bottom:978.720000pt;}
.y5{bottom:979.208000pt;}
.ye9{bottom:985.600000pt;}
.y26{bottom:986.240000pt;}
.y10c{bottom:986.834587pt;}
.y66{bottom:987.200000pt;}
.y14b{bottom:991.786747pt;}
.y16d{bottom:992.196213pt;}
.y1b6{bottom:994.720000pt;}
.y187{bottom:996.649387pt;}
.y65{bottom:999.840000pt;}
.y47{bottom:1003.200000pt;}
.y4{bottom:1003.680000pt;}
.yc8{bottom:1005.120000pt;}
.y216{bottom:1010.560000pt;}
.ye8{bottom:1013.120000pt;}
.y25{bottom:1013.920000pt;}
.y24{bottom:1041.440000pt;}
.y3{bottom:1042.560000pt;}
.h22{height:18.400000pt;}
.h21{height:18.401333pt;}
.h24{height:34.080000pt;}
.h18{height:36.416250pt;}
.h9{height:36.798667pt;}
.h14{height:36.800000pt;}
.h1c{height:39.585938pt;}
.h19{height:43.808438pt;}
.h13{height:46.609688pt;}
.h1a{height:46.783158pt;}
.h12{height:47.050625pt;}
.h20{height:50.660917pt;}
.h3{height:52.152500pt;}
.h1e{height:52.998197pt;}
.h1f{height:53.582518pt;}
.hd{height:55.200000pt;}
.h2{height:56.156250pt;}
.h7{height:56.312500pt;}
.h1d{height:56.450998pt;}
.h6{height:56.687500pt;}
.he{height:56.750000pt;}
.h5{height:57.031250pt;}
.h1b{height:62.878518pt;}
.h8{height:66.726562pt;}
.hc{height:73.600000pt;}
.h4{height:75.851562pt;}
.ha{height:93.167500pt;}
.hf{height:93.230000pt;}
.h16{height:93.807500pt;}
.h10{height:93.870000pt;}
.h23{height:110.400000pt;}
.h11{height:128.800000pt;}
.h15{height:128.801333pt;}
.hb{height:130.287500pt;}
.h17{height:184.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:99.198667pt;}
.wd{width:100.160000pt;}
.wf{width:106.560000pt;}
.w4{width:110.720000pt;}
.w13{width:117.918667pt;}
.we{width:118.560000pt;}
.w10{width:120.960000pt;}
.wa{width:121.600000pt;}
.w11{width:134.880000pt;}
.wb{width:135.040000pt;}
.w8{width:150.240000pt;}
.w6{width:150.400000pt;}
.w9{width:154.398667pt;}
.w3{width:157.121333pt;}
.w5{width:158.081333pt;}
.w7{width:166.080000pt;}
.w2{width:192.800000pt;}
.wc{width:584.478667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x8{left:8.480000pt;}
.x38{left:9.760000pt;}
.x18{left:11.680000pt;}
.x15{left:13.280000pt;}
.x1f{left:15.520000pt;}
.x31{left:16.480000pt;}
.x84{left:22.400000pt;}
.x3c{left:24.800000pt;}
.x26{left:29.120000pt;}
.x1b{left:32.640000pt;}
.x93{left:33.600000pt;}
.x3a{left:34.560000pt;}
.x2e{left:35.520000pt;}
.x82{left:36.640000pt;}
.x1c{left:41.600000pt;}
.x80{left:42.560000pt;}
.x35{left:44.000000pt;}
.x43{left:46.400000pt;}
.x78{left:48.960000pt;}
.x21{left:52.800000pt;}
.x33{left:53.760000pt;}
.x32{left:55.680000pt;}
.x81{left:56.640000pt;}
.x30{left:57.600000pt;}
.x83{left:59.520000pt;}
.x86{left:60.640000pt;}
.x34{left:61.600000pt;}
.x7f{left:63.520000pt;}
.x87{left:67.520000pt;}
.x48{left:71.520000pt;}
.x9{left:75.040000pt;}
.x2{left:94.400000pt;}
.xb{left:102.080000pt;}
.x56{left:113.440000pt;}
.x6{left:121.120000pt;}
.x89{left:126.240000pt;}
.x8c{left:129.600000pt;}
.x94{left:130.560000pt;}
.x5{left:132.800000pt;}
.x8b{left:134.400000pt;}
.x88{left:135.520000pt;}
.x7c{left:136.480000pt;}
.x8a{left:138.400000pt;}
.x7d{left:139.520000pt;}
.x91{left:140.640000pt;}
.x4{left:141.600000pt;}
.x85{left:142.720000pt;}
.x74{left:144.640000pt;}
.x8d{left:145.920000pt;}
.x62{left:150.574267pt;}
.x57{left:160.640000pt;}
.x66{left:164.470267pt;}
.x95{left:170.880000pt;}
.x5b{left:176.201520pt;}
.x60{left:178.186267pt;}
.x59{left:181.327600pt;}
.x6c{left:184.208400pt;}
.x63{left:185.950267pt;}
.x64{left:190.522267pt;}
.x61{left:193.078267pt;}
.x65{left:199.378267pt;}
.x67{left:201.082267pt;}
.x5f{left:202.822267pt;}
.x14{left:206.560000pt;}
.x16{left:216.320000pt;}
.x7e{left:221.280000pt;}
.x92{left:223.520000pt;}
.x69{left:225.114427pt;}
.x6e{left:228.117413pt;}
.x24{left:230.240000pt;}
.x25{left:238.880000pt;}
.x7b{left:240.800000pt;}
.x17{left:242.240000pt;}
.x11{left:245.600000pt;}
.x90{left:248.000000pt;}
.x12{left:252.640000pt;}
.x6b{left:255.281067pt;}
.x4d{left:257.440000pt;}
.x4c{left:259.680000pt;}
.x5c{left:260.941200pt;}
.x3{left:262.560000pt;}
.xc{left:263.680000pt;}
.x4a{left:270.080000pt;}
.x5e{left:271.306267pt;}
.x36{left:273.120000pt;}
.x49{left:279.840000pt;}
.x45{left:281.760000pt;}
.x4b{left:285.760000pt;}
.x3b{left:288.000000pt;}
.x4e{left:293.440000pt;}
.x71{left:299.425920pt;}
.x46{left:301.120000pt;}
.x68{left:302.656347pt;}
.x5d{left:305.721360pt;}
.x2b{left:311.833440pt;}
.x5a{left:313.808880pt;}
.x75{left:322.080000pt;}
.x8e{left:323.520000pt;}
.x73{left:329.053040pt;}
.x6a{left:332.576187pt;}
.x76{left:343.680000pt;}
.x8f{left:344.800000pt;}
.x7{left:364.320000pt;}
.x1{left:384.800000pt;}
.xd{left:389.440000pt;}
.x55{left:394.240000pt;}
.x2d{left:401.120000pt;}
.x50{left:412.000000pt;}
.x19{left:414.400000pt;}
.x3f{left:416.320000pt;}
.x39{left:417.760000pt;}
.x3e{left:421.440000pt;}
.x40{left:433.440000pt;}
.x3d{left:437.760000pt;}
.xe{left:439.360000pt;}
.x77{left:444.320000pt;}
.x4f{left:446.560000pt;}
.x79{left:458.080000pt;}
.x1d{left:460.800000pt;}
.x37{left:466.560000pt;}
.x2c{left:529.107520pt;}
.x2f{left:552.160000pt;}
.x1e{left:557.920000pt;}
.x53{left:561.920000pt;}
.x41{left:567.200000pt;}
.x47{left:568.320000pt;}
.x27{left:569.760000pt;}
.x42{left:572.000000pt;}
.x2a{left:573.760000pt;}
.x54{left:575.200000pt;}
.xf{left:576.320000pt;}
.x28{left:579.840000pt;}
.x23{left:580.960000pt;}
.x52{left:583.040000pt;}
.x44{left:584.960000pt;}
.x20{left:590.720000pt;}
.x51{left:595.200000pt;}
.x29{left:599.040000pt;}
.x7a{left:601.760000pt;}
.xa{left:602.720000pt;}
.x13{left:604.160000pt;}
.x58{left:610.240000pt;}
.x6d{left:612.800000pt;}
.x10{left:615.680000pt;}
.x6f{left:616.800000pt;}
.x72{left:622.240000pt;}
.x22{left:624.960000pt;}
.x70{left:628.320000pt;}
}




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