
    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_80f37fd01e5a53f22d0ba9ce.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_3cc6117b26b153acee38aeef.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_bf8779dfb82cafd4c498560c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_daf95233aafe66b54d42b624.woff')format("woff");}.ff4{font-family:ff4;line-height:1.095215;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_3ee9b61b2a706b5e4205c20e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1bea10f8fbd442106c83837b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_e08f5a3b70a978665349b83c.woff')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_7f1e189752317aa860011792.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f26a2054cbcf52ab7c56a265.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_8b4b4c8b924a49fd0698835a.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v6{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.880000px;}
.v4{vertical-align:5.760000px;}
.v3{vertical-align:15.840000px;}
.v5{vertical-align:23.604480px;}
.v2{vertical-align:55.440000px;}
.ls5d{letter-spacing:-1.656000px;}
.ls60{letter-spacing:-1.589760px;}
.ls8a{letter-spacing:-1.457280px;}
.ls61{letter-spacing:-1.391040px;}
.ls2b{letter-spacing:-1.368000px;}
.ls5f{letter-spacing:-1.324800px;}
.ls73{letter-spacing:-1.258560px;}
.ls65{letter-spacing:-0.993600px;}
.ls5c{letter-spacing:-0.927360px;}
.ls72{letter-spacing:-0.861120px;}
.ls2d{letter-spacing:-0.794880px;}
.ls49{letter-spacing:-0.728640px;}
.ls30{letter-spacing:-0.662400px;}
.ls2f{letter-spacing:-0.596160px;}
.ls10{letter-spacing:-0.589680px;}
.ls1d{letter-spacing:-0.576000px;}
.ls5e{letter-spacing:-0.529920px;}
.ls1e{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.463680px;}
.ls2c{letter-spacing:-0.397440px;}
.ls2a{letter-spacing:-0.360000px;}
.ls3f{letter-spacing:-0.358560px;}
.ls39{letter-spacing:-0.336960px;}
.ls4a{letter-spacing:-0.331200px;}
.ls2{letter-spacing:-0.324000px;}
.ls8f{letter-spacing:-0.287280px;}
.ls76{letter-spacing:-0.270000px;}
.ls16{letter-spacing:-0.264960px;}
.ls11{letter-spacing:-0.252720px;}
.ls3d{letter-spacing:-0.241200px;}
.ls41{letter-spacing:-0.239040px;}
.ls55{letter-spacing:-0.226800px;}
.ls15{letter-spacing:-0.216000px;}
.ls47{letter-spacing:-0.198720px;}
.ls3a{letter-spacing:-0.179280px;}
.ls7f{letter-spacing:-0.162000px;}
.ls2e{letter-spacing:-0.132480px;}
.ls3b{letter-spacing:-0.119520px;}
.ls77{letter-spacing:-0.108000px;}
.ls54{letter-spacing:-0.090720px;}
.lsf{letter-spacing:-0.084240px;}
.ls29{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.066240px;}
.ls3c{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.033120px;}
.ls51{letter-spacing:0.045360px;}
.ls5a{letter-spacing:0.052992px;}
.ls75{letter-spacing:0.054000px;}
.ls3e{letter-spacing:0.059760px;}
.ls32{letter-spacing:0.064080px;}
.ls19{letter-spacing:0.066240px;}
.ls1a{letter-spacing:0.072000px;}
.ls67{letter-spacing:0.086112px;}
.ls1{letter-spacing:0.108000px;}
.ls6e{letter-spacing:0.119232px;}
.ls22{letter-spacing:0.132480px;}
.ls68{letter-spacing:0.139104px;}
.ls79{letter-spacing:0.145728px;}
.ls37{letter-spacing:0.149400px;}
.ls4d{letter-spacing:0.149760px;}
.ls87{letter-spacing:0.158976px;}
.ls3{letter-spacing:0.168480px;}
.ls8b{letter-spacing:0.172224px;}
.ls35{letter-spacing:0.179280px;}
.ls90{letter-spacing:0.191520px;}
.ls48{letter-spacing:0.198720px;}
.lsc{letter-spacing:0.216000px;}
.ls36{letter-spacing:0.239040px;}
.ls17{letter-spacing:0.264960px;}
.ls91{letter-spacing:0.287280px;}
.ls7{letter-spacing:0.288000px;}
.ls6f{letter-spacing:0.311328px;}
.ls7e{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.331200px;}
.ls8d{letter-spacing:0.336960px;}
.ls64{letter-spacing:0.337824px;}
.ls1c{letter-spacing:0.360000px;}
.ls8c{letter-spacing:0.470304px;}
.ls40{letter-spacing:0.657360px;}
.ls74{letter-spacing:0.756000px;}
.ls6d{letter-spacing:0.847872px;}
.ls38{letter-spacing:0.860544px;}
.ls26{letter-spacing:0.861120px;}
.ls4{letter-spacing:0.894240px;}
.ls33{letter-spacing:0.896400px;}
.ls5{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.152000px;}
.ls13{letter-spacing:1.170000px;}
.ls78{letter-spacing:1.458000px;}
.ls4c{letter-spacing:1.576512px;}
.ls83{letter-spacing:1.589760px;}
.ls82{letter-spacing:1.616256px;}
.ls14{letter-spacing:1.620000px;}
.ls53{letter-spacing:1.995840px;}
.ls81{letter-spacing:2.214000px;}
.ls58{letter-spacing:2.318400px;}
.ls89{letter-spacing:2.862000px;}
.ls52{letter-spacing:3.029760px;}
.ls27{letter-spacing:3.047040px;}
.ls7c{letter-spacing:3.618000px;}
.ls24{letter-spacing:3.775680px;}
.ls69{letter-spacing:3.881664px;}
.ls4f{letter-spacing:4.438080px;}
.ls23{letter-spacing:4.471200px;}
.ls6a{letter-spacing:4.915008px;}
.ls21{letter-spacing:5.166720px;}
.ls70{letter-spacing:5.895360px;}
.ls63{letter-spacing:6.624000px;}
.ls4b{letter-spacing:6.637248px;}
.ls50{letter-spacing:7.352640px;}
.ls28{letter-spacing:8.068032px;}
.ls56{letter-spacing:8.081280px;}
.ls7d{letter-spacing:8.694000px;}
.ls80{letter-spacing:8.809920px;}
.ls7b{letter-spacing:9.472320px;}
.ls71{letter-spacing:9.664416px;}
.ls8e{letter-spacing:10.200960px;}
.ls46{letter-spacing:10.929600px;}
.ls66{letter-spacing:11.658240px;}
.ls88{letter-spacing:12.386880px;}
.ls59{letter-spacing:14.572800px;}
.ls84{letter-spacing:15.174000px;}
.ls7a{letter-spacing:15.301440px;}
.ls86{letter-spacing:15.963840px;}
.ls25{letter-spacing:16.692480px;}
.ls85{letter-spacing:17.421120px;}
.ls6c{letter-spacing:18.149760px;}
.ls20{letter-spacing:18.288000px;}
.ls5b{letter-spacing:22.455360px;}
.ls6b{letter-spacing:23.912640px;}
.ls4e{letter-spacing:39.214080px;}
.ls57{letter-spacing:59.351040px;}
.ls62{letter-spacing:60.079680px;}
.ls45{letter-spacing:64.016640px;}
.ls6{letter-spacing:81.576000px;}
.ls31{letter-spacing:86.549760px;}
.lsa{letter-spacing:93.381120px;}
.ls34{letter-spacing:106.709760px;}
.ls43{letter-spacing:117.509760px;}
.ls42{letter-spacing:150.629760px;}
.ls9{letter-spacing:151.672320px;}
.lsd{letter-spacing:218.655360px;}
.lsb{letter-spacing:662.184000px;}
.lse{letter-spacing:806.688000px;}
.ls1f{letter-spacing:968.688000px;}
.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;}
}
.ws95{word-spacing:-66.240000px;}
.ws63{word-spacing:-59.760000px;}
.ws5c{word-spacing:-23.081760px;}
.ws128{word-spacing:-21.354480px;}
.ws1d{word-spacing:-19.728000px;}
.ws7{word-spacing:-19.038240px;}
.ws4{word-spacing:-18.954000px;}
.ws6{word-spacing:-18.785520px;}
.wsc9{word-spacing:-18.745920px;}
.ws5{word-spacing:-18.448560px;}
.wsc{word-spacing:-18.282240px;}
.wsc7{word-spacing:-18.083520px;}
.wsf{word-spacing:-16.632000px;}
.ws8{word-spacing:-16.488000px;}
.wse{word-spacing:-16.344000px;}
.wsd{word-spacing:-16.056000px;}
.ws1e{word-spacing:-15.912000px;}
.ws10{word-spacing:-15.768000px;}
.ws22{word-spacing:-15.301440px;}
.wsa{word-spacing:-15.235200px;}
.ws61{word-spacing:-15.168960px;}
.ws21{word-spacing:-15.102720px;}
.ws60{word-spacing:-15.036480px;}
.ws9{word-spacing:-14.970240px;}
.ws1f{word-spacing:-14.904000px;}
.ws5f{word-spacing:-14.837760px;}
.ws5d{word-spacing:-14.771520px;}
.ws20{word-spacing:-14.705280px;}
.ws64{word-spacing:-14.639040px;}
.ws5e{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.506560px;}
.wsc8{word-spacing:-14.440320px;}
.ws24{word-spacing:-14.374080px;}
.ws74{word-spacing:-14.307840px;}
.ws62{word-spacing:-14.241600px;}
.ws23{word-spacing:-14.175360px;}
.wsde{word-spacing:-14.109120px;}
.wsb9{word-spacing:-14.042880px;}
.ws123{word-spacing:-13.976640px;}
.ws4d{word-spacing:-13.505760px;}
.ws4e{word-spacing:-13.446000px;}
.ws4c{word-spacing:-13.326480px;}
.ws50{word-spacing:-13.266720px;}
.ws4f{word-spacing:-13.147200px;}
.wsfa{word-spacing:-12.528000px;}
.ws108{word-spacing:-12.204000px;}
.wse8{word-spacing:-12.096000px;}
.wsfb{word-spacing:-12.042000px;}
.wsec{word-spacing:-11.988000px;}
.wse0{word-spacing:-11.934000px;}
.wsdf{word-spacing:-11.880000px;}
.ws79{word-spacing:-10.296720px;}
.ws78{word-spacing:-10.251360px;}
.ws77{word-spacing:-9.437760px;}
.wsb6{word-spacing:-4.305600px;}
.wsd2{word-spacing:-4.106880px;}
.ws29{word-spacing:-3.576960px;}
.ws7e{word-spacing:-3.510720px;}
.ws2a{word-spacing:-3.378240px;}
.ws7f{word-spacing:-3.245760px;}
.wsb5{word-spacing:-3.179520px;}
.wscb{word-spacing:-2.848320px;}
.wscc{word-spacing:-2.649600px;}
.ws7c{word-spacing:-2.517120px;}
.wse2{word-spacing:-2.450880px;}
.ws7b{word-spacing:-2.119680px;}
.wsa3{word-spacing:-1.920960px;}
.wsa4{word-spacing:-1.722240px;}
.ws109{word-spacing:-1.589760px;}
.ws10f{word-spacing:-1.457280px;}
.ws44{word-spacing:-1.391040px;}
.ws11c{word-spacing:-1.258560px;}
.ws118{word-spacing:-1.242000px;}
.ws45{word-spacing:-1.192320px;}
.ws12{word-spacing:-1.170000px;}
.ws117{word-spacing:-1.134000px;}
.ws80{word-spacing:-1.059840px;}
.ws73{word-spacing:-0.993600px;}
.ws1c{word-spacing:-0.927360px;}
.wsb3{word-spacing:-0.861120px;}
.ws75{word-spacing:-0.728640px;}
.ws15{word-spacing:-0.648000px;}
.ws68{word-spacing:-0.596160px;}
.ws116{word-spacing:-0.540000px;}
.ws35{word-spacing:-0.529920px;}
.wse9{word-spacing:-0.486000px;}
.ws57{word-spacing:-0.478080px;}
.ws11e{word-spacing:-0.463680px;}
.wsea{word-spacing:-0.432000px;}
.ws7d{word-spacing:-0.397440px;}
.ws112{word-spacing:-0.378000px;}
.ws13{word-spacing:-0.360000px;}
.ws33{word-spacing:-0.331200px;}
.ws105{word-spacing:-0.324000px;}
.ws127{word-spacing:-0.287280px;}
.ws10e{word-spacing:-0.270000px;}
.ws76{word-spacing:-0.264960px;}
.ws92{word-spacing:-0.226800px;}
.ws1b{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.198720px;}
.ws126{word-spacing:-0.191520px;}
.ws19{word-spacing:-0.132480px;}
.ws91{word-spacing:-0.090720px;}
.ws11{word-spacing:-0.084240px;}
.ws3c{word-spacing:-0.066240px;}
.ws56{word-spacing:-0.059760px;}
.ws106{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws53{word-spacing:0.059760px;}
.ws2f{word-spacing:0.066240px;}
.ws7a{word-spacing:0.084240px;}
.ws52{word-spacing:0.119520px;}
.ws87{word-spacing:0.132480px;}
.ws55{word-spacing:0.144720px;}
.wsfe{word-spacing:0.162000px;}
.ws2e{word-spacing:0.198720px;}
.ws18{word-spacing:0.216000px;}
.ws59{word-spacing:0.239040px;}
.ws34{word-spacing:0.264960px;}
.wseb{word-spacing:0.270000px;}
.ws125{word-spacing:0.287280px;}
.ws54{word-spacing:0.298800px;}
.wse7{word-spacing:0.324000px;}
.ws83{word-spacing:0.331200px;}
.ws124{word-spacing:0.336960px;}
.ws58{word-spacing:0.358560px;}
.ws122{word-spacing:0.378000px;}
.ws16{word-spacing:0.397440px;}
.wsd9{word-spacing:0.421200px;}
.ws3{word-spacing:0.432000px;}
.wsbc{word-spacing:0.463680px;}
.ws14{word-spacing:0.504000px;}
.wse3{word-spacing:0.529920px;}
.ws5b{word-spacing:0.537840px;}
.ws1a{word-spacing:0.576000px;}
.ws65{word-spacing:0.596160px;}
.ws3a{word-spacing:0.662400px;}
.ws51{word-spacing:0.673920px;}
.ws46{word-spacing:0.728640px;}
.wsa1{word-spacing:0.794880px;}
.wsce{word-spacing:0.861120px;}
.ws40{word-spacing:0.927360px;}
.wse6{word-spacing:0.972000px;}
.ws39{word-spacing:0.993600px;}
.wse5{word-spacing:1.026000px;}
.ws82{word-spacing:1.059840px;}
.ws38{word-spacing:1.126080px;}
.ws5a{word-spacing:1.254960px;}
.wsc5{word-spacing:1.258560px;}
.wsa8{word-spacing:1.324800px;}
.ws27{word-spacing:1.368000px;}
.wsb4{word-spacing:1.391040px;}
.ws6f{word-spacing:1.457280px;}
.wsfc{word-spacing:1.458000px;}
.wsee{word-spacing:1.566000px;}
.wsb2{word-spacing:1.589760px;}
.wsa5{word-spacing:1.656000px;}
.wsef{word-spacing:1.674000px;}
.ws11b{word-spacing:1.722240px;}
.wsfd{word-spacing:1.728000px;}
.wsed{word-spacing:1.782000px;}
.ws81{word-spacing:1.788480px;}
.ws6e{word-spacing:1.854720px;}
.ws94{word-spacing:2.086560px;}
.wsa7{word-spacing:2.119680px;}
.ws72{word-spacing:2.185920px;}
.ws93{word-spacing:2.222640px;}
.ws111{word-spacing:2.318400px;}
.ws10c{word-spacing:2.322000px;}
.ws3d{word-spacing:2.384640px;}
.ws10d{word-spacing:2.430000px;}
.ws10b{word-spacing:2.484000px;}
.ws107{word-spacing:2.517120px;}
.ws10a{word-spacing:2.538000px;}
.wsa6{word-spacing:2.583360px;}
.ws99{word-spacing:2.715840px;}
.ws2d{word-spacing:2.914560px;}
.ws120{word-spacing:3.024000px;}
.ws3e{word-spacing:3.113280px;}
.ws3b{word-spacing:3.179520px;}
.ws121{word-spacing:3.186000px;}
.ws9d{word-spacing:3.245760px;}
.wsc4{word-spacing:3.312000px;}
.ws9a{word-spacing:3.444480px;}
.ws102{word-spacing:3.564000px;}
.wsd1{word-spacing:3.576960px;}
.ws43{word-spacing:3.643200px;}
.ws101{word-spacing:3.780000px;}
.ws32{word-spacing:3.841920px;}
.ws100{word-spacing:3.888000px;}
.wsff{word-spacing:3.942000px;}
.ws84{word-spacing:3.974400px;}
.ws30{word-spacing:4.040640px;}
.ws8c{word-spacing:4.173120px;}
.wsd3{word-spacing:4.305600px;}
.ws31{word-spacing:4.438080px;}
.wsc2{word-spacing:4.504320px;}
.ws9e{word-spacing:4.570560px;}
.ws88{word-spacing:4.636800px;}
.ws4b{word-spacing:4.703040px;}
.wsbd{word-spacing:5.034240px;}
.ws6c{word-spacing:5.232960px;}
.ws9c{word-spacing:5.299200px;}
.ws90{word-spacing:5.365440px;}
.ws4a{word-spacing:5.431680px;}
.wsf3{word-spacing:5.564160px;}
.wsbe{word-spacing:5.762880px;}
.ws2b{word-spacing:5.961600px;}
.ws89{word-spacing:6.094080px;}
.ws2c{word-spacing:6.160320px;}
.wsc0{word-spacing:6.491520px;}
.ws8b{word-spacing:6.557760px;}
.wsc1{word-spacing:6.690240px;}
.wse1{word-spacing:6.756480px;}
.ws8a{word-spacing:6.822720px;}
.ws110{word-spacing:6.888960px;}
.ws97{word-spacing:7.021440px;}
.wsbf{word-spacing:7.087680px;}
.ws2{word-spacing:7.128000px;}
.wsc6{word-spacing:7.220160px;}
.wsd8{word-spacing:7.418880px;}
.ws85{word-spacing:7.551360px;}
.ws3f{word-spacing:7.617600px;}
.ws98{word-spacing:7.750080px;}
.wsba{word-spacing:7.948800px;}
.wsad{word-spacing:8.147520px;}
.ws96{word-spacing:8.280000px;}
.wsbb{word-spacing:8.346240px;}
.ws104{word-spacing:8.640000px;}
.ws48{word-spacing:8.677440px;}
.ws47{word-spacing:8.876160px;}
.ws103{word-spacing:8.964000px;}
.ws49{word-spacing:9.074880px;}
.wsdd{word-spacing:9.406080px;}
.ws6d{word-spacing:9.604800px;}
.wsf7{word-spacing:9.803520px;}
.ws9f{word-spacing:10.068480px;}
.wsa0{word-spacing:10.267200px;}
.wscd{word-spacing:10.465920px;}
.wse4{word-spacing:10.797120px;}
.wsc3{word-spacing:10.995840px;}
.ws69{word-spacing:11.194560px;}
.ws6b{word-spacing:11.525760px;}
.wsa2{word-spacing:11.658240px;}
.wscf{word-spacing:11.724480px;}
.ws6a{word-spacing:11.923200px;}
.wsf0{word-spacing:12.055680px;}
.wsd0{word-spacing:12.453120px;}
.ws8d{word-spacing:12.585600px;}
.wsf1{word-spacing:12.983040px;}
.wsca{word-spacing:13.181760px;}
.wsf2{word-spacing:13.380480px;}
.ws28{word-spacing:13.608000px;}
.ws11f{word-spacing:13.910400px;}
.ws9b{word-spacing:14.042880px;}
.wsac{word-spacing:14.440320px;}
.wsaa{word-spacing:14.639040px;}
.wsab{word-spacing:14.837760px;}
.wsf5{word-spacing:15.168960px;}
.wsf4{word-spacing:15.367680px;}
.ws114{word-spacing:15.390000px;}
.ws115{word-spacing:15.444000px;}
.ws113{word-spacing:15.498000px;}
.ws8f{word-spacing:15.500160px;}
.wsf6{word-spacing:15.566400px;}
.wsf9{word-spacing:15.831360px;}
.wsf8{word-spacing:16.030080px;}
.ws37{word-spacing:16.560000px;}
.wsa9{word-spacing:16.758720px;}
.ws36{word-spacing:16.957440px;}
.ws26{word-spacing:17.208000px;}
.ws11a{word-spacing:17.487360px;}
.ws11d{word-spacing:17.619840px;}
.ws119{word-spacing:17.686080px;}
.ws25{word-spacing:18.216000px;}
.ws8e{word-spacing:18.348480px;}
.wsdc{word-spacing:18.745920px;}
.wsdb{word-spacing:18.944640px;}
.wsda{word-spacing:19.143360px;}
.ws42{word-spacing:19.872000px;}
.ws41{word-spacing:20.203200px;}
.ws66{word-spacing:20.401920px;}
.ws67{word-spacing:20.600640px;}
.wsb7{word-spacing:21.594240px;}
.wsae{word-spacing:21.792960px;}
.wsb8{word-spacing:21.859200px;}
.wsaf{word-spacing:22.521600px;}
.wsd6{word-spacing:23.184000px;}
.wsd7{word-spacing:23.250240px;}
.wsd4{word-spacing:24.177600px;}
.wsd5{word-spacing:24.707520px;}
.wsb0{word-spacing:26.827200px;}
.wsb1{word-spacing:27.025920px;}
.ws86{word-spacing:33.451200px;}
.ws70{word-spacing:34.511040px;}
.ws71{word-spacing:34.577280px;}
.ws1{word-spacing:39.528000px;}
._15{margin-left:-11.989440px;}
._11{margin-left:-8.347680px;}
._12{margin-left:-7.132320px;}
._2{margin-left:-5.756400px;}
._3{margin-left:-3.744000px;}
._5{margin-left:-2.217600px;}
._0{margin-left:-1.155600px;}
._1{width:1.296000px;}
._4{width:2.628000px;}
._c{width:4.325760px;}
._e{width:5.592960px;}
._1d{width:7.211520px;}
._16{width:8.441280px;}
._18{width:10.212480px;}
._17{width:11.652480px;}
._1e{width:13.312800px;}
._d{width:16.240320px;}
._1f{width:18.434592px;}
._14{width:20.054160px;}
._1a{width:21.529728px;}
._19{width:22.720320px;}
._1c{width:23.762880px;}
._1b{width:27.069840px;}
._b{width:95.976000px;}
._10{width:145.735200px;}
._13{width:190.401840px;}
._8{width:201.355920px;}
._6{width:437.728320px;}
._7{width:500.028480px;}
._9{width:577.814400px;}
._a{width:673.992000px;}
._f{width:848.998080px;}
.fc9{color:rgb(92,0,201);}
.fc8{color:rgb(119,29,135);}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(61,0,135);}
.fc4{color:rgb(30,73,125);}
.fc3{color:rgb(160,39,181);}
.fc5{color:transparent;}
.fc1{color:rgb(255,0,186);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs6{font-size:90.000000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:216.000000px;}
.fs3{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:3.780000px;}
.y34{bottom:3.960000px;}
.y2{bottom:8.460000px;}
.y1d{bottom:8.820000px;}
.y9c{bottom:8.999850px;}
.y9f{bottom:9.000000px;}
.yac{bottom:29.160000px;}
.y1c{bottom:33.120000px;}
.y46{bottom:35.100000px;}
.y6{bottom:46.080000px;}
.y1b{bottom:46.620000px;}
.yb5{bottom:49.320000px;}
.y5{bottom:69.480000px;}
.y15{bottom:75.779850px;}
.yfb{bottom:88.203780px;}
.y1cd{bottom:91.928160px;}
.y40{bottom:102.780000px;}
.y24a{bottom:107.107920px;}
.y274{bottom:107.332560px;}
.y240{bottom:107.501760px;}
.y208{bottom:107.555040px;}
.y214{bottom:108.720000px;}
.yfa{bottom:109.260000px;}
.y22a{bottom:111.951000px;}
.y1d9{bottom:111.975120px;}
.y1f0{bottom:112.003200px;}
.y129{bottom:112.340160px;}
.y153{bottom:112.591440px;}
.y1cc{bottom:116.586000px;}
.y163{bottom:124.945920px;}
.y229{bottom:128.515500px;}
.y191{bottom:128.776320px;}
.y166{bottom:129.240000px;}
.y3f{bottom:130.860000px;}
.y273{bottom:131.808240px;}
.y1d8{bottom:132.128640px;}
.y1ef{bottom:132.156720px;}
.y207{bottom:132.212880px;}
.y213{bottom:132.286500px;}
.y128{bottom:132.493680px;}
.yf9{bottom:133.920000px;}
.y152{bottom:137.249280px;}
.y249{bottom:140.940000px;}
.y23f{bottom:141.168240px;}
.y1cb{bottom:141.243840px;}
.y228{bottom:145.080000px;}
.y212{bottom:148.851000px;}
.y190{bottom:148.929840px;}
.y162{bottom:149.603760px;}
.y1d7{bottom:152.282160px;}
.y1ee{bottom:152.310240px;}
.y127{bottom:152.481600px;}
.y272{bottom:156.466080px;}
.y206{bottom:156.870720px;}
.yf8{bottom:157.140000px;}
.y165{bottom:157.320000px;}
.y151{bottom:161.907120px;}
.y227{bottom:162.638640px;}
.y211{bottom:165.415500px;}
.y1ca{bottom:165.901680px;}
.y3e{bottom:169.020000px;}
.y18f{bottom:169.083360px;}
.y159{bottom:169.759440px;}
.y126{bottom:172.635120px;}
.y248{bottom:173.344500px;}
.y161{bottom:174.261600px;}
.y23e{bottom:175.000320px;}
.y1d6{bottom:176.940000px;}
.y1ed{bottom:176.968080px;}
.y271{bottom:181.123920px;}
.y205{bottom:181.528560px;}
.y210{bottom:181.980000px;}
.y150{bottom:182.060640px;}
.y1a9{bottom:183.604320px;}
.y1c9{bottom:186.055200px;}
.y18e{bottom:189.236880px;}
.y158{bottom:189.747360px;}
.y247{bottom:190.989000px;}
.y164{bottom:192.063600px;}
.y125{bottom:192.788640px;}
.y1ec{bottom:197.121600px;}
.yf7{bottom:198.570960px;}
.y160{bottom:198.919440px;}
.y20f{bottom:199.260000px;}
.y1d5{bottom:200.511000px;}
.y204{bottom:201.682080px;}
.y14f{bottom:202.214160px;}
.y3d{bottom:203.222160px;}
.y270{bottom:205.781760px;}
.y1c8{bottom:206.208720px;}
.y1a8{bottom:208.262160px;}
.y23d{bottom:208.666800px;}
.y18d{bottom:209.390400px;}
.y124{bottom:212.942160px;}
.y1d4{bottom:217.075500px;}
.y1eb{bottom:217.275120px;}
.y246{bottom:217.624500px;}
.yf6{bottom:218.724480px;}
.y28f{bottom:219.822480px;}
.y203{bottom:221.835600px;}
.y14e{bottom:222.367680px;}
.y15f{bottom:223.577280px;}
.y16a{bottom:224.479440px;}
.y1c7{bottom:226.362240px;}
.y3c{bottom:227.880000px;}
.y26f{bottom:230.439600px;}
.y1a7{bottom:232.920000px;}
.y1d3{bottom:233.640000px;}
.y18c{bottom:234.048240px;}
.y1ae{bottom:235.264320px;}
.y1ea{bottom:237.428640px;}
.y123{bottom:237.600000px;}
.yf5{bottom:238.878000px;}
.y202{bottom:241.989120px;}
.y23c{bottom:242.498880px;}
.y14d{bottom:242.521200px;}
.y28e{bottom:244.480320px;}
.y169{bottom:244.632960px;}
.y1c6{bottom:246.515760px;}
.y15e{bottom:248.052960px;}
.y1d2{bottom:250.925040px;}
.y18b{bottom:254.201760px;}
.y26e{bottom:255.097440px;}
.y1a6{bottom:256.495500px;}
.y1e9{bottom:257.582160px;}
.yf4{bottom:259.031520px;}
.y1ad{bottom:259.922160px;}
.y3b{bottom:260.460000px;}
.y201{bottom:262.142640px;}
.y122{bottom:262.266480px;}
.y14c{bottom:262.674720px;}
.y168{bottom:264.786480px;}
.y1c5{bottom:266.669280px;}
.y28d{bottom:269.138160px;}
.y67{bottom:271.592640px;}
.y15d{bottom:272.710800px;}
.y1a5{bottom:273.060000px;}
.y23b{bottom:276.165360px;}
.y18a{bottom:278.859600px;}
.yf3{bottom:279.185040px;}
.y26d{bottom:279.755280px;}
.y1e8{bottom:282.240000px;}
.y200{bottom:282.296160px;}
.y121{bottom:282.420000px;}
.y14b{bottom:282.828240px;}
.y1ac{bottom:284.580000px;}
.y167{bottom:284.940000px;}
.y39{bottom:285.660000px;}
.y1c4{bottom:286.822800px;}
.y1a4{bottom:290.448720px;}
.y66{bottom:291.746160px;}
.y3a{bottom:293.580000px;}
.y28c{bottom:293.796000px;}
.y15c{bottom:297.368640px;}
.y23a{bottom:297.759600px;}
.yf2{bottom:299.172960px;}
.y120{bottom:302.580000px;}
.y189{bottom:303.517440px;}
.y26c{bottom:304.413120px;}
.y1e7{bottom:305.815500px;}
.y1ff{bottom:306.771840px;}
.y14a{bottom:307.303920px;}
.y1ab{bottom:308.335500px;}
.y1c3{bottom:311.298480px;}
.y65{bottom:311.899680px;}
.y36{bottom:314.820000px;}
.y28b{bottom:318.453840px;}
.yf1{bottom:319.326480px;}
.y239{bottom:319.353840px;}
.y15b{bottom:322.026480px;}
.y1e6{bottom:322.380000px;}
.y38{bottom:322.560000px;}
.y11f{bottom:322.751520px;}
.y188{bottom:323.670960px;}
.y1aa{bottom:324.900000px;}
.y1fe{bottom:326.925360px;}
.y26b{bottom:329.070960px;}
.y1c2{bottom:331.452000px;}
.y149{bottom:331.961760px;}
.y64{bottom:332.053200px;}
.yf0{bottom:339.480000px;}
.y1e5{bottom:339.764400px;}
.y238{bottom:341.130240px;}
.y15a{bottom:342.180000px;}
.y11e{bottom:342.905040px;}
.y28a{bottom:343.111680px;}
.y187{bottom:343.658880px;}
.y33{bottom:343.800000px;}
.y1fd{bottom:347.078880px;}
.y1c1{bottom:351.605520px;}
.y35{bottom:351.720000px;}
.y148{bottom:352.115280px;}
.y63{bottom:352.206720px;}
.y26a{bottom:353.728800px;}
.yef{bottom:359.640000px;}
.ycb{bottom:360.362160px;}
.y11d{bottom:362.892960px;}
.y237{bottom:362.906640px;}
.y186{bottom:363.812400px;}
.y1fc{bottom:367.232400px;}
.y289{bottom:367.769520px;}
.y1c0{bottom:371.759040px;}
.y147{bottom:372.268800px;}
.y62{bottom:372.360240px;}
.y269{bottom:378.204480px;}
.yee{bottom:379.806480px;}
.y32{bottom:381.960000px;}
.y11c{bottom:383.046480px;}
.y185{bottom:383.965920px;}
.y236{bottom:384.683040px;}
.yca{bottom:385.020000px;}
.y1fb{bottom:387.385920px;}
.y1bf{bottom:391.912560px;}
.y288{bottom:392.245200px;}
.y146{bottom:392.422320px;}
.y61{bottom:392.513760px;}
.y9a{bottom:393.485040px;}
.yed{bottom:399.960000px;}
.y268{bottom:402.862320px;}
.y11b{bottom:403.200000px;}
.y184{bottom:404.119440px;}
.yc8{bottom:406.260000px;}
.y31{bottom:411.480000px;}
.y1fa{bottom:412.043760px;}
.y1be{bottom:412.066080px;}
.y145{bottom:412.575840px;}
.y60{bottom:412.667280px;}
.y99{bottom:413.638560px;}
.yc9{bottom:415.260000px;}
.y287{bottom:416.903040px;}
.y235{bottom:418.515120px;}
.yec{bottom:420.120000px;}
.y183{bottom:424.272960px;}
.y267{bottom:427.520160px;}
.y11a{bottom:427.894560px;}
.y1f9{bottom:432.197280px;}
.y1bd{bottom:432.219600px;}
.y2e{bottom:432.720000px;}
.y5f{bottom:432.820800px;}
.y30{bottom:433.440000px;}
.y98{bottom:433.626480px;}
.yc6{bottom:436.500000px;}
.y144{bottom:437.233680px;}
.y234{bottom:440.109360px;}
.y286{bottom:441.560880px;}
.yeb{bottom:442.440000px;}
.y182{bottom:444.426480px;}
.yc7{bottom:445.500000px;}
.y266{bottom:452.178000px;}
.y1f8{bottom:452.350800px;}
.y1bc{bottom:452.373120px;}
.y119{bottom:452.552400px;}
.y5e{bottom:452.974320px;}
.y97{bottom:453.780000px;}
.y2f{bottom:455.400000px;}
.y233{bottom:461.885760px;}
.y143{bottom:461.891520px;}
.yea{bottom:462.600000px;}
.y181{bottom:464.580000px;}
.y285{bottom:466.218720px;}
.yc4{bottom:466.740000px;}
.y265{bottom:472.331520px;}
.y1f7{bottom:472.504320px;}
.y118{bottom:472.705920px;}
.y5d{bottom:472.962240px;}
.yc5{bottom:475.740000px;}
.y1bb{bottom:477.030960px;}
.y96{bottom:478.440000px;}
.y142{bottom:482.045040px;}
.ye9{bottom:482.760000px;}
.y232{bottom:483.480000px;}
.y2d{bottom:489.060000px;}
.y284{bottom:490.876560px;}
.y117{bottom:492.859440px;}
.y5c{bottom:493.115760px;}
.y1f6{bottom:496.980000px;}
.yc2{bottom:497.160000px;}
.y1ba{bottom:497.184480px;}
.y141{bottom:502.198560px;}
.ye8{bottom:502.920000px;}
.y95{bottom:503.100000px;}
.y180{bottom:505.080000px;}
.yc3{bottom:505.980000px;}
.y116{bottom:513.012960px;}
.y5b{bottom:513.269280px;}
.y283{bottom:515.534400px;}
.y231{bottom:516.240000px;}
.y1b9{bottom:517.172400px;}
.y279{bottom:518.778000px;}
.y1f5{bottom:520.735500px;}
.y140{bottom:522.352080px;}
.ye7{bottom:523.080000px;}
.y2c{bottom:523.980000px;}
.yc1{bottom:527.400000px;}
.y94{bottom:527.766480px;}
.y115{bottom:533.166480px;}
.y5a{bottom:533.422800px;}
.y2b{bottom:536.400000px;}
.y1f4{bottom:537.300000px;}
.y1b8{bottom:537.325920px;}
.y278{bottom:538.931520px;}
.y282{bottom:540.192240px;}
.y13f{bottom:542.340000px;}
.ye6{bottom:543.240000px;}
.y230{bottom:545.940000px;}
.y93{bottom:547.920000px;}
.y114{bottom:553.320000px;}
.y59{bottom:553.576320px;}
.y1f3{bottom:554.613840px;}
.ybf{bottom:557.640000px;}
.y277{bottom:559.085040px;}
.y17f{bottom:559.200960px;}
.y1b7{bottom:561.983760px;}
.ye5{bottom:563.400000px;}
.y281{bottom:564.850080px;}
.yc0{bottom:566.640000px;}
.y22f{bottom:572.417280px;}
.y92{bottom:572.580000px;}
.y58{bottom:573.729840px;}
.y17e{bottom:579.354480px;}
.y2a{bottom:581.400000px;}
.y1b6{bottom:582.137280px;}
.y13e{bottom:583.020000px;}
.ye4{bottom:583.380000px;}
.y276{bottom:583.742880px;}
.ybd{bottom:587.880000px;}
.y280{bottom:589.507920px;}
.y113{bottom:593.820000px;}
.y57{bottom:593.883360px;}
.y29{bottom:594.000000px;}
.ybe{bottom:596.880000px;}
.y91{bottom:597.245040px;}
.y17d{bottom:599.508000px;}
.y7b{bottom:600.126480px;}
.y1b5{bottom:602.290800px;}
.ye3{bottom:603.540000px;}
.y157{bottom:606.082320px;}
.y20e{bottom:612.351000px;}
.y56{bottom:614.036880px;}
.y27f{bottom:614.165760px;}
.y90{bottom:617.398560px;}
.ybb{bottom:618.120000px;}
.y17c{bottom:619.661520px;}
.y1b4{bottom:622.444320px;}
.ye2{bottom:623.700000px;}
.y7a{bottom:624.784320px;}
.y156{bottom:626.235840px;}
.ybc{bottom:627.120000px;}
.y20d{bottom:633.235500px;}
.y27e{bottom:634.153680px;}
.y55{bottom:634.190400px;}
.y13d{bottom:637.380000px;}
.y8f{bottom:637.552080px;}
.y17b{bottom:639.815040px;}
.y28{bottom:641.340000px;}
.y245{bottom:641.700000px;}
.y260{bottom:642.333600px;}
.ye1{bottom:644.040000px;}
.y1b3{bottom:647.102160px;}
.y112{bottom:647.820000px;}
.yb8{bottom:648.360000px;}
.y20c{bottom:649.800000px;}
.y79{bottom:653.400000px;}
.y54{bottom:654.343920px;}
.yba{bottom:657.360000px;}
.y8e{bottom:657.540000px;}
.y13c{bottom:663.517440px;}
.y17a{bottom:664.290720px;}
.y20b{bottom:666.364500px;}
.ye0{bottom:666.415440px;}
.y25f{bottom:666.991440px;}
.y1d1{bottom:667.260000px;}
.y111{bottom:670.140000px;}
.y244{bottom:671.575500px;}
.y1b2{bottom:671.760000px;}
.y53{bottom:674.331840px;}
.y226{bottom:675.452160px;}
.yb9{bottom:677.520000px;}
.y27{bottom:678.960000px;}
.y78{bottom:680.760000px;}
.y8d{bottom:682.243200px;}
.y20a{bottom:682.740000px;}
.y13b{bottom:683.670960px;}
.y179{bottom:684.444240px;}
.ydf{bottom:686.403360px;}
.y243{bottom:689.220000px;}
.y110{bottom:690.300000px;}
.y1d0{bottom:690.835500px;}
.y25e{bottom:691.467120px;}
.y52{bottom:694.485360px;}
.y1b1{bottom:695.335500px;}
.yb4{bottom:698.760000px;}
.y209{bottom:700.027200px;}
.y225{bottom:700.110000px;}
.y13a{bottom:703.824480px;}
.y178{bottom:704.597760px;}
.yde{bottom:706.556880px;}
.y1a3{bottom:706.783680px;}
.y8c{bottom:706.901040px;}
.y1cf{bottom:707.400000px;}
.yb7{bottom:707.760000px;}
.y77{bottom:707.940000px;}
.y10f{bottom:710.460000px;}
.y1b0{bottom:711.900000px;}
.y51{bottom:714.638880px;}
.y242{bottom:715.856400px;}
.y25d{bottom:716.124960px;}
.y26{bottom:716.400000px;}
.y224{bottom:720.263520px;}
.y139{bottom:723.812400px;}
.y1ce{bottom:724.685040px;}
.y177{bottom:724.751280px;}
.ydd{bottom:726.710400px;}
.y14{bottom:727.200000px;}
.y1af{bottom:729.172800px;}
.y10e{bottom:730.620000px;}
.y1a2{bottom:731.441520px;}
.y8b{bottom:731.558880px;}
.y50{bottom:734.792400px;}
.y76{bottom:735.300000px;}
.y17{bottom:737.100000px;}
.y223{bottom:740.417040px;}
.y25c{bottom:740.782800px;}
.y138{bottom:743.965920px;}
.y176{bottom:744.904800px;}
.ydc{bottom:746.863920px;}
.yb6{bottom:748.080000px;}
.y10d{bottom:750.780000px;}
.y25{bottom:750.962160px;}
.y4f{bottom:754.945920px;}
.y1a1{bottom:756.099360px;}
.y8a{bottom:756.216720px;}
.y222{bottom:760.570560px;}
.y25b{bottom:760.936320px;}
.y75{bottom:762.660000px;}
.y137{bottom:764.119440px;}
.ydb{bottom:767.017440px;}
.yb2{bottom:769.320000px;}
.y16{bottom:770.040000px;}
.y10c{bottom:770.940000px;}
.y175{bottom:773.172720px;}
.y4e{bottom:775.099440px;}
.y24{bottom:775.620000px;}
.y1a0{bottom:776.252880px;}
.yb3{bottom:778.320000px;}
.y221{bottom:780.724080px;}
.y1e4{bottom:780.757200px;}
.y89{bottom:780.874560px;}
.y25a{bottom:781.089840px;}
.y136{bottom:784.272960px;}
.yda{bottom:787.170960px;}
.y74{bottom:790.020000px;}
.y10b{bottom:793.276560px;}
.y4d{bottom:795.252960px;}
.y19f{bottom:796.406400px;}
.y174{bottom:797.466240px;}
.yaf{bottom:799.560000px;}
.y23{bottom:800.277840px;}
.y220{bottom:800.877600px;}
.y1e3{bottom:800.910720px;}
.y13{bottom:802.979850px;}
.y135{bottom:804.426480px;}
.y88{bottom:805.532400px;}
.y259{bottom:805.747680px;}
.yd9{bottom:807.324480px;}
.yb1{bottom:808.560000px;}
.y4c{bottom:815.406480px;}
.y10a{bottom:816.311520px;}
.y19e{bottom:816.559920px;}
.y73{bottom:817.200000px;}
.y21f{bottom:821.031120px;}
.y1e2{bottom:821.064240px;}
.y173{bottom:822.124080px;}
.y134{bottom:824.580000px;}
.y22{bottom:825.300000px;}
.y87{bottom:825.685920px;}
.y258{bottom:825.901200px;}
.yd8{bottom:827.478000px;}
.yb0{bottom:828.720000px;}
.y4b{bottom:835.560000px;}
.y19d{bottom:836.713440px;}
.y109{bottom:840.439440px;}
.y21e{bottom:841.184640px;}
.y1e1{bottom:841.217760px;}
.y172{bottom:842.277600px;}
.y72{bottom:844.560000px;}
.y257{bottom:846.054720px;}
.yd7{bottom:847.631520px;}
.yab{bottom:849.960000px;}
.y86{bottom:850.343760px;}
.y21{bottom:851.760000px;}
.y133{bottom:853.020000px;}
.y19{bottom:856.080000px;}
.yae{bottom:858.960000px;}
.y19c{bottom:861.189120px;}
.y21d{bottom:861.338160px;}
.y171{bottom:862.431120px;}
.y12{bottom:863.305920px;}
.y108{bottom:863.656560px;}
.y1e0{bottom:865.693440px;}
.y256{bottom:866.208240px;}
.y71{bottom:867.420000px;}
.yd6{bottom:867.785040px;}
.y85{bottom:874.819440px;}
.y4a{bottom:876.060000px;}
.yad{bottom:879.120000px;}
.y21c{bottom:881.326080px;}
.y170{bottom:882.584640px;}
.y19b{bottom:885.846960px;}
.y107{bottom:887.602320px;}
.y132{bottom:887.765040px;}
.yd5{bottom:887.772960px;}
.y11{bottom:887.963760px;}
.y255{bottom:890.866080px;}
.y70{bottom:894.600000px;}
.y84{bottom:899.477280px;}
.ya9{bottom:900.360000px;}
.y16f{bottom:902.738160px;}
.y21b{bottom:905.983920px;}
.y19a{bottom:906.000480px;}
.y131{bottom:907.752960px;}
.yd4{bottom:907.926480px;}
.yaa{bottom:909.360000px;}
.y254{bottom:911.019600px;}
.y106{bottom:911.730240px;}
.y10{bottom:912.439440px;}
.y6f{bottom:921.960000px;}
.y16e{bottom:922.891680px;}
.y83{bottom:924.135120px;}
.y20{bottom:924.300000px;}
.y199{bottom:926.154000px;}
.y130{bottom:927.906480px;}
.yd3{bottom:928.118880px;}
.y49{bottom:928.800180px;}
.y21a{bottom:930.641760px;}
.ya7{bottom:930.780000px;}
.y253{bottom:931.007520px;}
.y18{bottom:933.660000px;}
.y105{bottom:935.676000px;}
.yf{bottom:937.097280px;}
.ya8{bottom:939.780000px;}
.y16d{bottom:943.045200px;}
.y198{bottom:946.307520px;}
.y48{bottom:948.060000px;}
.yd2{bottom:948.272400px;}
.y82{bottom:948.792960px;}
.y6e{bottom:949.320000px;}
.y219{bottom:950.795280px;}
.y252{bottom:955.665360px;}
.y104{bottom:959.803920px;}
.ya5{bottom:961.020000px;}
.ye{bottom:961.755120px;}
.y45{bottom:963.900000px;}
.y1df{bottom:966.461040px;}
.yd1{bottom:968.425920px;}
.ya6{bottom:970.020000px;}
.y1f2{bottom:970.948800px;}
.y197{bottom:970.965360px;}
.y16c{bottom:971.313120px;}
.y81{bottom:973.450800px;}
.y251{bottom:975.818880px;}
.y12f{bottom:976.500000px;}
.y6d{bottom:976.680000px;}
.y47{bottom:977.040000px;}
.y103{bottom:979.957440px;}
.yd{bottom:986.412960px;}
.y1de{bottom:986.614560px;}
.yd0{bottom:988.579440px;}
.y218{bottom:991.102320px;}
.ya3{bottom:991.260000px;}
.y16b{bottom:995.606640px;}
.y196{bottom:995.623200px;}
.y250{bottom:995.972400px;}
.y22e{bottom:997.943040px;}
.y80{bottom:998.108640px;}
.y102{bottom:1000.110960px;}
.ya4{bottom:1000.260000px;}
.y6c{bottom:1003.860000px;}
.ycf{bottom:1008.732960px;}
.yc{bottom:1011.070800px;}
.y12e{bottom:1011.255840px;}
.y1dd{bottom:1011.272400px;}
.y1f1{bottom:1015.760160px;}
.y195{bottom:1015.776720px;}
.y24f{bottom:1016.125920px;}
.y22d{bottom:1019.537280px;}
.y101{bottom:1020.264480px;}
.y44{bottom:1021.140000px;}
.y264{bottom:1021.328640px;}
.ya1{bottom:1021.500000px;}
.y1f{bottom:1022.760000px;}
.y7f{bottom:1022.766480px;}
.yce{bottom:1028.886480px;}
.ya2{bottom:1030.500000px;}
.y6b{bottom:1031.220000px;}
.y217{bottom:1031.409360px;}
.y1dc{bottom:1031.425920px;}
.yb{bottom:1035.728640px;}
.y12d{bottom:1035.913680px;}
.y194{bottom:1035.930240px;}
.y24e{bottom:1036.279440px;}
.y100{bottom:1040.418000px;}
.y263{bottom:1041.482160px;}
.y155{bottom:1042.570800px;}
.y7e{bottom:1047.424320px;}
.ycd{bottom:1049.040000px;}
.y27d{bottom:1050.488640px;}
.y216{bottom:1051.562880px;}
.y1db{bottom:1051.579440px;}
.y9e{bottom:1051.740000px;}
.y22c{bottom:1053.369360px;}
.y43{bottom:1055.340000px;}
.y12c{bottom:1056.067200px;}
.y193{bottom:1056.083760px;}
.y24d{bottom:1056.432960px;}
.y6a{bottom:1058.580000px;}
.ya{bottom:1060.386480px;}
.yff{bottom:1060.571520px;}
.ya0{bottom:1060.740000px;}
.y262{bottom:1066.140000px;}
.y154{bottom:1067.046480px;}
.y27c{bottom:1070.642160px;}
.y275{bottom:1071.550800px;}
.y215{bottom:1071.716400px;}
.y1da{bottom:1071.732960px;}
.y7d{bottom:1072.082160px;}
.y22b{bottom:1074.963600px;}
.y12b{bottom:1076.220720px;}
.y192{bottom:1076.237280px;}
.y24c{bottom:1076.586480px;}
.yfe{bottom:1080.725040px;}
.y9b{bottom:1081.980000px;}
.y9{bottom:1085.044320px;}
.ycc{bottom:1086.660000px;}
.y69{bottom:1089.540000px;}
.y9d{bottom:1090.979850px;}
.y42{bottom:1091.704320px;}
.y27b{bottom:1095.300000px;}
.y12a{bottom:1096.208640px;}
.y7c{bottom:1096.740000px;}
.yfd{bottom:1100.712960px;}
.y261{bottom:1100.880000px;}
.y8{bottom:1109.702160px;}
.y41{bottom:1116.362160px;}
.yfc{bottom:1120.866480px;}
.y27a{bottom:1130.040000px;}
.y7{bottom:1134.360000px;}
.y24b{bottom:1137.060000px;}
.y68{bottom:1137.240000px;}
.y1e{bottom:1141.020000px;}
.y241{bottom:1141.200000px;}
.y4{bottom:1162.800000px;}
.y1{bottom:1181.700000px;}
.y1a{bottom:1184.580000px;}
.y3{bottom:1190.160000px;}
.h2{height:27.360000px;}
.h1b{height:28.978500px;}
.h11{height:28.980000px;}
.ha{height:29.160000px;}
.h21{height:29.974219px;}
.h16{height:35.025820px;}
.h24{height:38.759766px;}
.h23{height:39.208008px;}
.h3{height:42.894141px;}
.h22{height:47.530192px;}
.h4{height:47.545312px;}
.h5{height:48.095156px;}
.h20{height:48.224531px;}
.h19{height:49.320000px;}
.h1f{height:51.653767px;}
.hf{height:51.679688px;}
.hc{height:52.277344px;}
.h1c{height:52.417969px;}
.h1d{height:53.578699px;}
.h1e{height:53.734219px;}
.hd{height:56.957344px;}
.h13{height:57.439687px;}
.h9{height:61.164492px;}
.h17{height:61.329023px;}
.h14{height:61.910156px;}
.h18{height:63.824414px;}
.hb{height:65.346680px;}
.h12{height:67.519688px;}
.h1a{height:69.480000px;}
.h25{height:69.528867px;}
.h6{height:77.519531px;}
.h15{height:78.840000px;}
.h7{height:106.020000px;}
.he{height:107.119688px;}
.h10{height:107.839687px;}
.h8{height:209.109375px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:8.458500px;}
.wa{width:16.740000px;}
.w6{width:205.740000px;}
.w3{width:241.020000px;}
.w2{width:241.021500px;}
.w9{width:359.640000px;}
.w8{width:359.820000px;}
.w7{width:606.420000px;}
.w4{width:892.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.100000px;}
.x11{left:9.540000px;}
.x7{left:11.340000px;}
.xf{left:79.740000px;}
.x1{left:84.960000px;}
.x1d{left:86.220000px;}
.x3b{left:90.000000px;}
.x15{left:93.060000px;}
.x14{left:94.500000px;}
.x3d{left:95.580000px;}
.x1a{left:101.520000px;}
.x35{left:103.140000px;}
.x31{left:107.460000px;}
.x26{left:109.440000px;}
.x1c{left:111.960000px;}
.x20{left:113.940000px;}
.x28{left:116.280000px;}
.x2a{left:117.900000px;}
.x23{left:128.700000px;}
.x37{left:133.740000px;}
.x1b{left:136.980000px;}
.x19{left:138.960000px;}
.x17{left:143.280000px;}
.x16{left:151.380000px;}
.x3e{left:165.960000px;}
.x6{left:192.960000px;}
.xd{left:217.260000px;}
.x4{left:241.560000px;}
.x1e{left:244.440000px;}
.xb{left:246.420000px;}
.x10{left:249.840000px;}
.xa{left:285.840000px;}
.x13{left:298.800000px;}
.x12{left:300.240000px;}
.xe{left:321.487200px;}
.x2e{left:355.140000px;}
.x8{left:376.380000px;}
.xc{left:384.480000px;}
.x2{left:446.400000px;}
.x3c{left:482.400000px;}
.x2d{left:491.760000px;}
.x1f{left:507.600000px;}
.x33{left:531.900000px;}
.x27{left:542.340000px;}
.x30{left:558.180000px;}
.x3{left:567.000000px;}
.x25{left:569.700000px;}
.x3a{left:578.340000px;}
.x39{left:581.400000px;}
.x21{left:586.620000px;}
.x9{left:592.200000px;}
.x29{left:594.180000px;}
.x36{left:597.240000px;}
.x34{left:600.660000px;}
.x32{left:625.860000px;}
.x22{left:627.660000px;}
.x2c{left:651.960000px;}
.x2b{left:678.600000px;}
.x24{left:690.660000px;}
.x2f{left:747.000000px;}
.x38{left:755.280000px;}
.x41{left:789.488640px;}
.x3f{left:791.280000px;}
.x5{left:799.560000px;}
.x40{left:807.804000px;}
.x42{left:834.101280px;}
@media print{
.v6{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.560000pt;}
.v4{vertical-align:5.120000pt;}
.v3{vertical-align:14.080000pt;}
.v5{vertical-align:20.981760pt;}
.v2{vertical-align:49.280000pt;}
.ls5d{letter-spacing:-1.472000pt;}
.ls60{letter-spacing:-1.413120pt;}
.ls8a{letter-spacing:-1.295360pt;}
.ls61{letter-spacing:-1.236480pt;}
.ls2b{letter-spacing:-1.216000pt;}
.ls5f{letter-spacing:-1.177600pt;}
.ls73{letter-spacing:-1.118720pt;}
.ls65{letter-spacing:-0.883200pt;}
.ls5c{letter-spacing:-0.824320pt;}
.ls72{letter-spacing:-0.765440pt;}
.ls2d{letter-spacing:-0.706560pt;}
.ls49{letter-spacing:-0.647680pt;}
.ls30{letter-spacing:-0.588800pt;}
.ls2f{letter-spacing:-0.529920pt;}
.ls10{letter-spacing:-0.524160pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls5e{letter-spacing:-0.471040pt;}
.ls1e{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.412160pt;}
.ls2c{letter-spacing:-0.353280pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls3f{letter-spacing:-0.318720pt;}
.ls39{letter-spacing:-0.299520pt;}
.ls4a{letter-spacing:-0.294400pt;}
.ls2{letter-spacing:-0.288000pt;}
.ls8f{letter-spacing:-0.255360pt;}
.ls76{letter-spacing:-0.240000pt;}
.ls16{letter-spacing:-0.235520pt;}
.ls11{letter-spacing:-0.224640pt;}
.ls3d{letter-spacing:-0.214400pt;}
.ls41{letter-spacing:-0.212480pt;}
.ls55{letter-spacing:-0.201600pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls47{letter-spacing:-0.176640pt;}
.ls3a{letter-spacing:-0.159360pt;}
.ls7f{letter-spacing:-0.144000pt;}
.ls2e{letter-spacing:-0.117760pt;}
.ls3b{letter-spacing:-0.106240pt;}
.ls77{letter-spacing:-0.096000pt;}
.ls54{letter-spacing:-0.080640pt;}
.lsf{letter-spacing:-0.074880pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.058880pt;}
.ls3c{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.029440pt;}
.ls51{letter-spacing:0.040320pt;}
.ls5a{letter-spacing:0.047104pt;}
.ls75{letter-spacing:0.048000pt;}
.ls3e{letter-spacing:0.053120pt;}
.ls32{letter-spacing:0.056960pt;}
.ls19{letter-spacing:0.058880pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls67{letter-spacing:0.076544pt;}
.ls1{letter-spacing:0.096000pt;}
.ls6e{letter-spacing:0.105984pt;}
.ls22{letter-spacing:0.117760pt;}
.ls68{letter-spacing:0.123648pt;}
.ls79{letter-spacing:0.129536pt;}
.ls37{letter-spacing:0.132800pt;}
.ls4d{letter-spacing:0.133120pt;}
.ls87{letter-spacing:0.141312pt;}
.ls3{letter-spacing:0.149760pt;}
.ls8b{letter-spacing:0.153088pt;}
.ls35{letter-spacing:0.159360pt;}
.ls90{letter-spacing:0.170240pt;}
.ls48{letter-spacing:0.176640pt;}
.lsc{letter-spacing:0.192000pt;}
.ls36{letter-spacing:0.212480pt;}
.ls17{letter-spacing:0.235520pt;}
.ls91{letter-spacing:0.255360pt;}
.ls7{letter-spacing:0.256000pt;}
.ls6f{letter-spacing:0.276736pt;}
.ls7e{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.294400pt;}
.ls8d{letter-spacing:0.299520pt;}
.ls64{letter-spacing:0.300288pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls8c{letter-spacing:0.418048pt;}
.ls40{letter-spacing:0.584320pt;}
.ls74{letter-spacing:0.672000pt;}
.ls6d{letter-spacing:0.753664pt;}
.ls38{letter-spacing:0.764928pt;}
.ls26{letter-spacing:0.765440pt;}
.ls4{letter-spacing:0.794880pt;}
.ls33{letter-spacing:0.796800pt;}
.ls5{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.024000pt;}
.ls13{letter-spacing:1.040000pt;}
.ls78{letter-spacing:1.296000pt;}
.ls4c{letter-spacing:1.401344pt;}
.ls83{letter-spacing:1.413120pt;}
.ls82{letter-spacing:1.436672pt;}
.ls14{letter-spacing:1.440000pt;}
.ls53{letter-spacing:1.774080pt;}
.ls81{letter-spacing:1.968000pt;}
.ls58{letter-spacing:2.060800pt;}
.ls89{letter-spacing:2.544000pt;}
.ls52{letter-spacing:2.693120pt;}
.ls27{letter-spacing:2.708480pt;}
.ls7c{letter-spacing:3.216000pt;}
.ls24{letter-spacing:3.356160pt;}
.ls69{letter-spacing:3.450368pt;}
.ls4f{letter-spacing:3.944960pt;}
.ls23{letter-spacing:3.974400pt;}
.ls6a{letter-spacing:4.368896pt;}
.ls21{letter-spacing:4.592640pt;}
.ls70{letter-spacing:5.240320pt;}
.ls63{letter-spacing:5.888000pt;}
.ls4b{letter-spacing:5.899776pt;}
.ls50{letter-spacing:6.535680pt;}
.ls28{letter-spacing:7.171584pt;}
.ls56{letter-spacing:7.183360pt;}
.ls7d{letter-spacing:7.728000pt;}
.ls80{letter-spacing:7.831040pt;}
.ls7b{letter-spacing:8.419840pt;}
.ls71{letter-spacing:8.590592pt;}
.ls8e{letter-spacing:9.067520pt;}
.ls46{letter-spacing:9.715200pt;}
.ls66{letter-spacing:10.362880pt;}
.ls88{letter-spacing:11.010560pt;}
.ls59{letter-spacing:12.953600pt;}
.ls84{letter-spacing:13.488000pt;}
.ls7a{letter-spacing:13.601280pt;}
.ls86{letter-spacing:14.190080pt;}
.ls25{letter-spacing:14.837760pt;}
.ls85{letter-spacing:15.485440pt;}
.ls6c{letter-spacing:16.133120pt;}
.ls20{letter-spacing:16.256000pt;}
.ls5b{letter-spacing:19.960320pt;}
.ls6b{letter-spacing:21.255680pt;}
.ls4e{letter-spacing:34.856960pt;}
.ls57{letter-spacing:52.756480pt;}
.ls62{letter-spacing:53.404160pt;}
.ls45{letter-spacing:56.903680pt;}
.ls6{letter-spacing:72.512000pt;}
.ls31{letter-spacing:76.933120pt;}
.lsa{letter-spacing:83.005440pt;}
.ls34{letter-spacing:94.853120pt;}
.ls43{letter-spacing:104.453120pt;}
.ls42{letter-spacing:133.893120pt;}
.ls9{letter-spacing:134.819840pt;}
.lsd{letter-spacing:194.360320pt;}
.lsb{letter-spacing:588.608000pt;}
.lse{letter-spacing:717.056000pt;}
.ls1f{letter-spacing:861.056000pt;}
.ws95{word-spacing:-58.880000pt;}
.ws63{word-spacing:-53.120000pt;}
.ws5c{word-spacing:-20.517120pt;}
.ws128{word-spacing:-18.981760pt;}
.ws1d{word-spacing:-17.536000pt;}
.ws7{word-spacing:-16.922880pt;}
.ws4{word-spacing:-16.848000pt;}
.ws6{word-spacing:-16.698240pt;}
.wsc9{word-spacing:-16.663040pt;}
.ws5{word-spacing:-16.398720pt;}
.wsc{word-spacing:-16.250880pt;}
.wsc7{word-spacing:-16.074240pt;}
.wsf{word-spacing:-14.784000pt;}
.ws8{word-spacing:-14.656000pt;}
.wse{word-spacing:-14.528000pt;}
.wsd{word-spacing:-14.272000pt;}
.ws1e{word-spacing:-14.144000pt;}
.ws10{word-spacing:-14.016000pt;}
.ws22{word-spacing:-13.601280pt;}
.wsa{word-spacing:-13.542400pt;}
.ws61{word-spacing:-13.483520pt;}
.ws21{word-spacing:-13.424640pt;}
.ws60{word-spacing:-13.365760pt;}
.ws9{word-spacing:-13.306880pt;}
.ws1f{word-spacing:-13.248000pt;}
.ws5f{word-spacing:-13.189120pt;}
.ws5d{word-spacing:-13.130240pt;}
.ws20{word-spacing:-13.071360pt;}
.ws64{word-spacing:-13.012480pt;}
.ws5e{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.894720pt;}
.wsc8{word-spacing:-12.835840pt;}
.ws24{word-spacing:-12.776960pt;}
.ws74{word-spacing:-12.718080pt;}
.ws62{word-spacing:-12.659200pt;}
.ws23{word-spacing:-12.600320pt;}
.wsde{word-spacing:-12.541440pt;}
.wsb9{word-spacing:-12.482560pt;}
.ws123{word-spacing:-12.423680pt;}
.ws4d{word-spacing:-12.005120pt;}
.ws4e{word-spacing:-11.952000pt;}
.ws4c{word-spacing:-11.845760pt;}
.ws50{word-spacing:-11.792640pt;}
.ws4f{word-spacing:-11.686400pt;}
.wsfa{word-spacing:-11.136000pt;}
.ws108{word-spacing:-10.848000pt;}
.wse8{word-spacing:-10.752000pt;}
.wsfb{word-spacing:-10.704000pt;}
.wsec{word-spacing:-10.656000pt;}
.wse0{word-spacing:-10.608000pt;}
.wsdf{word-spacing:-10.560000pt;}
.ws79{word-spacing:-9.152640pt;}
.ws78{word-spacing:-9.112320pt;}
.ws77{word-spacing:-8.389120pt;}
.wsb6{word-spacing:-3.827200pt;}
.wsd2{word-spacing:-3.650560pt;}
.ws29{word-spacing:-3.179520pt;}
.ws7e{word-spacing:-3.120640pt;}
.ws2a{word-spacing:-3.002880pt;}
.ws7f{word-spacing:-2.885120pt;}
.wsb5{word-spacing:-2.826240pt;}
.wscb{word-spacing:-2.531840pt;}
.wscc{word-spacing:-2.355200pt;}
.ws7c{word-spacing:-2.237440pt;}
.wse2{word-spacing:-2.178560pt;}
.ws7b{word-spacing:-1.884160pt;}
.wsa3{word-spacing:-1.707520pt;}
.wsa4{word-spacing:-1.530880pt;}
.ws109{word-spacing:-1.413120pt;}
.ws10f{word-spacing:-1.295360pt;}
.ws44{word-spacing:-1.236480pt;}
.ws11c{word-spacing:-1.118720pt;}
.ws118{word-spacing:-1.104000pt;}
.ws45{word-spacing:-1.059840pt;}
.ws12{word-spacing:-1.040000pt;}
.ws117{word-spacing:-1.008000pt;}
.ws80{word-spacing:-0.942080pt;}
.ws73{word-spacing:-0.883200pt;}
.ws1c{word-spacing:-0.824320pt;}
.wsb3{word-spacing:-0.765440pt;}
.ws75{word-spacing:-0.647680pt;}
.ws15{word-spacing:-0.576000pt;}
.ws68{word-spacing:-0.529920pt;}
.ws116{word-spacing:-0.480000pt;}
.ws35{word-spacing:-0.471040pt;}
.wse9{word-spacing:-0.432000pt;}
.ws57{word-spacing:-0.424960pt;}
.ws11e{word-spacing:-0.412160pt;}
.wsea{word-spacing:-0.384000pt;}
.ws7d{word-spacing:-0.353280pt;}
.ws112{word-spacing:-0.336000pt;}
.ws13{word-spacing:-0.320000pt;}
.ws33{word-spacing:-0.294400pt;}
.ws105{word-spacing:-0.288000pt;}
.ws127{word-spacing:-0.255360pt;}
.ws10e{word-spacing:-0.240000pt;}
.ws76{word-spacing:-0.235520pt;}
.ws92{word-spacing:-0.201600pt;}
.ws1b{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.176640pt;}
.ws126{word-spacing:-0.170240pt;}
.ws19{word-spacing:-0.117760pt;}
.ws91{word-spacing:-0.080640pt;}
.ws11{word-spacing:-0.074880pt;}
.ws3c{word-spacing:-0.058880pt;}
.ws56{word-spacing:-0.053120pt;}
.ws106{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws53{word-spacing:0.053120pt;}
.ws2f{word-spacing:0.058880pt;}
.ws7a{word-spacing:0.074880pt;}
.ws52{word-spacing:0.106240pt;}
.ws87{word-spacing:0.117760pt;}
.ws55{word-spacing:0.128640pt;}
.wsfe{word-spacing:0.144000pt;}
.ws2e{word-spacing:0.176640pt;}
.ws18{word-spacing:0.192000pt;}
.ws59{word-spacing:0.212480pt;}
.ws34{word-spacing:0.235520pt;}
.wseb{word-spacing:0.240000pt;}
.ws125{word-spacing:0.255360pt;}
.ws54{word-spacing:0.265600pt;}
.wse7{word-spacing:0.288000pt;}
.ws83{word-spacing:0.294400pt;}
.ws124{word-spacing:0.299520pt;}
.ws58{word-spacing:0.318720pt;}
.ws122{word-spacing:0.336000pt;}
.ws16{word-spacing:0.353280pt;}
.wsd9{word-spacing:0.374400pt;}
.ws3{word-spacing:0.384000pt;}
.wsbc{word-spacing:0.412160pt;}
.ws14{word-spacing:0.448000pt;}
.wse3{word-spacing:0.471040pt;}
.ws5b{word-spacing:0.478080pt;}
.ws1a{word-spacing:0.512000pt;}
.ws65{word-spacing:0.529920pt;}
.ws3a{word-spacing:0.588800pt;}
.ws51{word-spacing:0.599040pt;}
.ws46{word-spacing:0.647680pt;}
.wsa1{word-spacing:0.706560pt;}
.wsce{word-spacing:0.765440pt;}
.ws40{word-spacing:0.824320pt;}
.wse6{word-spacing:0.864000pt;}
.ws39{word-spacing:0.883200pt;}
.wse5{word-spacing:0.912000pt;}
.ws82{word-spacing:0.942080pt;}
.ws38{word-spacing:1.000960pt;}
.ws5a{word-spacing:1.115520pt;}
.wsc5{word-spacing:1.118720pt;}
.wsa8{word-spacing:1.177600pt;}
.ws27{word-spacing:1.216000pt;}
.wsb4{word-spacing:1.236480pt;}
.ws6f{word-spacing:1.295360pt;}
.wsfc{word-spacing:1.296000pt;}
.wsee{word-spacing:1.392000pt;}
.wsb2{word-spacing:1.413120pt;}
.wsa5{word-spacing:1.472000pt;}
.wsef{word-spacing:1.488000pt;}
.ws11b{word-spacing:1.530880pt;}
.wsfd{word-spacing:1.536000pt;}
.wsed{word-spacing:1.584000pt;}
.ws81{word-spacing:1.589760pt;}
.ws6e{word-spacing:1.648640pt;}
.ws94{word-spacing:1.854720pt;}
.wsa7{word-spacing:1.884160pt;}
.ws72{word-spacing:1.943040pt;}
.ws93{word-spacing:1.975680pt;}
.ws111{word-spacing:2.060800pt;}
.ws10c{word-spacing:2.064000pt;}
.ws3d{word-spacing:2.119680pt;}
.ws10d{word-spacing:2.160000pt;}
.ws10b{word-spacing:2.208000pt;}
.ws107{word-spacing:2.237440pt;}
.ws10a{word-spacing:2.256000pt;}
.wsa6{word-spacing:2.296320pt;}
.ws99{word-spacing:2.414080pt;}
.ws2d{word-spacing:2.590720pt;}
.ws120{word-spacing:2.688000pt;}
.ws3e{word-spacing:2.767360pt;}
.ws3b{word-spacing:2.826240pt;}
.ws121{word-spacing:2.832000pt;}
.ws9d{word-spacing:2.885120pt;}
.wsc4{word-spacing:2.944000pt;}
.ws9a{word-spacing:3.061760pt;}
.ws102{word-spacing:3.168000pt;}
.wsd1{word-spacing:3.179520pt;}
.ws43{word-spacing:3.238400pt;}
.ws101{word-spacing:3.360000pt;}
.ws32{word-spacing:3.415040pt;}
.ws100{word-spacing:3.456000pt;}
.wsff{word-spacing:3.504000pt;}
.ws84{word-spacing:3.532800pt;}
.ws30{word-spacing:3.591680pt;}
.ws8c{word-spacing:3.709440pt;}
.wsd3{word-spacing:3.827200pt;}
.ws31{word-spacing:3.944960pt;}
.wsc2{word-spacing:4.003840pt;}
.ws9e{word-spacing:4.062720pt;}
.ws88{word-spacing:4.121600pt;}
.ws4b{word-spacing:4.180480pt;}
.wsbd{word-spacing:4.474880pt;}
.ws6c{word-spacing:4.651520pt;}
.ws9c{word-spacing:4.710400pt;}
.ws90{word-spacing:4.769280pt;}
.ws4a{word-spacing:4.828160pt;}
.wsf3{word-spacing:4.945920pt;}
.wsbe{word-spacing:5.122560pt;}
.ws2b{word-spacing:5.299200pt;}
.ws89{word-spacing:5.416960pt;}
.ws2c{word-spacing:5.475840pt;}
.wsc0{word-spacing:5.770240pt;}
.ws8b{word-spacing:5.829120pt;}
.wsc1{word-spacing:5.946880pt;}
.wse1{word-spacing:6.005760pt;}
.ws8a{word-spacing:6.064640pt;}
.ws110{word-spacing:6.123520pt;}
.ws97{word-spacing:6.241280pt;}
.wsbf{word-spacing:6.300160pt;}
.ws2{word-spacing:6.336000pt;}
.wsc6{word-spacing:6.417920pt;}
.wsd8{word-spacing:6.594560pt;}
.ws85{word-spacing:6.712320pt;}
.ws3f{word-spacing:6.771200pt;}
.ws98{word-spacing:6.888960pt;}
.wsba{word-spacing:7.065600pt;}
.wsad{word-spacing:7.242240pt;}
.ws96{word-spacing:7.360000pt;}
.wsbb{word-spacing:7.418880pt;}
.ws104{word-spacing:7.680000pt;}
.ws48{word-spacing:7.713280pt;}
.ws47{word-spacing:7.889920pt;}
.ws103{word-spacing:7.968000pt;}
.ws49{word-spacing:8.066560pt;}
.wsdd{word-spacing:8.360960pt;}
.ws6d{word-spacing:8.537600pt;}
.wsf7{word-spacing:8.714240pt;}
.ws9f{word-spacing:8.949760pt;}
.wsa0{word-spacing:9.126400pt;}
.wscd{word-spacing:9.303040pt;}
.wse4{word-spacing:9.597440pt;}
.wsc3{word-spacing:9.774080pt;}
.ws69{word-spacing:9.950720pt;}
.ws6b{word-spacing:10.245120pt;}
.wsa2{word-spacing:10.362880pt;}
.wscf{word-spacing:10.421760pt;}
.ws6a{word-spacing:10.598400pt;}
.wsf0{word-spacing:10.716160pt;}
.wsd0{word-spacing:11.069440pt;}
.ws8d{word-spacing:11.187200pt;}
.wsf1{word-spacing:11.540480pt;}
.wsca{word-spacing:11.717120pt;}
.wsf2{word-spacing:11.893760pt;}
.ws28{word-spacing:12.096000pt;}
.ws11f{word-spacing:12.364800pt;}
.ws9b{word-spacing:12.482560pt;}
.wsac{word-spacing:12.835840pt;}
.wsaa{word-spacing:13.012480pt;}
.wsab{word-spacing:13.189120pt;}
.wsf5{word-spacing:13.483520pt;}
.wsf4{word-spacing:13.660160pt;}
.ws114{word-spacing:13.680000pt;}
.ws115{word-spacing:13.728000pt;}
.ws113{word-spacing:13.776000pt;}
.ws8f{word-spacing:13.777920pt;}
.wsf6{word-spacing:13.836800pt;}
.wsf9{word-spacing:14.072320pt;}
.wsf8{word-spacing:14.248960pt;}
.ws37{word-spacing:14.720000pt;}
.wsa9{word-spacing:14.896640pt;}
.ws36{word-spacing:15.073280pt;}
.ws26{word-spacing:15.296000pt;}
.ws11a{word-spacing:15.544320pt;}
.ws11d{word-spacing:15.662080pt;}
.ws119{word-spacing:15.720960pt;}
.ws25{word-spacing:16.192000pt;}
.ws8e{word-spacing:16.309760pt;}
.wsdc{word-spacing:16.663040pt;}
.wsdb{word-spacing:16.839680pt;}
.wsda{word-spacing:17.016320pt;}
.ws42{word-spacing:17.664000pt;}
.ws41{word-spacing:17.958400pt;}
.ws66{word-spacing:18.135040pt;}
.ws67{word-spacing:18.311680pt;}
.wsb7{word-spacing:19.194880pt;}
.wsae{word-spacing:19.371520pt;}
.wsb8{word-spacing:19.430400pt;}
.wsaf{word-spacing:20.019200pt;}
.wsd6{word-spacing:20.608000pt;}
.wsd7{word-spacing:20.666880pt;}
.wsd4{word-spacing:21.491200pt;}
.wsd5{word-spacing:21.962240pt;}
.wsb0{word-spacing:23.846400pt;}
.wsb1{word-spacing:24.023040pt;}
.ws86{word-spacing:29.734400pt;}
.ws70{word-spacing:30.676480pt;}
.ws71{word-spacing:30.735360pt;}
.ws1{word-spacing:35.136000pt;}
._15{margin-left:-10.657280pt;}
._11{margin-left:-7.420160pt;}
._12{margin-left:-6.339840pt;}
._2{margin-left:-5.116800pt;}
._3{margin-left:-3.328000pt;}
._5{margin-left:-1.971200pt;}
._0{margin-left:-1.027200pt;}
._1{width:1.152000pt;}
._4{width:2.336000pt;}
._c{width:3.845120pt;}
._e{width:4.971520pt;}
._1d{width:6.410240pt;}
._16{width:7.503360pt;}
._18{width:9.077760pt;}
._17{width:10.357760pt;}
._1e{width:11.833600pt;}
._d{width:14.435840pt;}
._1f{width:16.386304pt;}
._14{width:17.825920pt;}
._1a{width:19.137536pt;}
._19{width:20.195840pt;}
._1c{width:21.122560pt;}
._1b{width:24.062080pt;}
._b{width:85.312000pt;}
._10{width:129.542400pt;}
._13{width:169.246080pt;}
._8{width:178.983040pt;}
._6{width:389.091840pt;}
._7{width:444.469760pt;}
._9{width:513.612800pt;}
._a{width:599.104000pt;}
._f{width:754.664960pt;}
.fsa{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs6{font-size:80.000000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:192.000000pt;}
.fs3{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:3.360000pt;}
.y34{bottom:3.520000pt;}
.y2{bottom:7.520000pt;}
.y1d{bottom:7.840000pt;}
.y9c{bottom:7.999867pt;}
.y9f{bottom:8.000000pt;}
.yac{bottom:25.920000pt;}
.y1c{bottom:29.440000pt;}
.y46{bottom:31.200000pt;}
.y6{bottom:40.960000pt;}
.y1b{bottom:41.440000pt;}
.yb5{bottom:43.840000pt;}
.y5{bottom:61.760000pt;}
.y15{bottom:67.359867pt;}
.yfb{bottom:78.403360pt;}
.y1cd{bottom:81.713920pt;}
.y40{bottom:91.360000pt;}
.y24a{bottom:95.207040pt;}
.y274{bottom:95.406720pt;}
.y240{bottom:95.557120pt;}
.y208{bottom:95.604480pt;}
.y214{bottom:96.640000pt;}
.yfa{bottom:97.120000pt;}
.y22a{bottom:99.512000pt;}
.y1d9{bottom:99.533440pt;}
.y1f0{bottom:99.558400pt;}
.y129{bottom:99.857920pt;}
.y153{bottom:100.081280pt;}
.y1cc{bottom:103.632000pt;}
.y163{bottom:111.063040pt;}
.y229{bottom:114.236000pt;}
.y191{bottom:114.467840pt;}
.y166{bottom:114.880000pt;}
.y3f{bottom:116.320000pt;}
.y273{bottom:117.162880pt;}
.y1d8{bottom:117.447680pt;}
.y1ef{bottom:117.472640pt;}
.y207{bottom:117.522560pt;}
.y213{bottom:117.588000pt;}
.y128{bottom:117.772160pt;}
.yf9{bottom:119.040000pt;}
.y152{bottom:121.999360pt;}
.y249{bottom:125.280000pt;}
.y23f{bottom:125.482880pt;}
.y1cb{bottom:125.550080pt;}
.y228{bottom:128.960000pt;}
.y212{bottom:132.312000pt;}
.y190{bottom:132.382080pt;}
.y162{bottom:132.981120pt;}
.y1d7{bottom:135.361920pt;}
.y1ee{bottom:135.386880pt;}
.y127{bottom:135.539200pt;}
.y272{bottom:139.080960pt;}
.y206{bottom:139.440640pt;}
.yf8{bottom:139.680000pt;}
.y165{bottom:139.840000pt;}
.y151{bottom:143.917440pt;}
.y227{bottom:144.567680pt;}
.y211{bottom:147.036000pt;}
.y1ca{bottom:147.468160pt;}
.y3e{bottom:150.240000pt;}
.y18f{bottom:150.296320pt;}
.y159{bottom:150.897280pt;}
.y126{bottom:153.453440pt;}
.y248{bottom:154.084000pt;}
.y161{bottom:154.899200pt;}
.y23e{bottom:155.555840pt;}
.y1d6{bottom:157.280000pt;}
.y1ed{bottom:157.304960pt;}
.y271{bottom:160.999040pt;}
.y205{bottom:161.358720pt;}
.y210{bottom:161.760000pt;}
.y150{bottom:161.831680pt;}
.y1a9{bottom:163.203840pt;}
.y1c9{bottom:165.382400pt;}
.y18e{bottom:168.210560pt;}
.y158{bottom:168.664320pt;}
.y247{bottom:169.768000pt;}
.y164{bottom:170.723200pt;}
.y125{bottom:171.367680pt;}
.y1ec{bottom:175.219200pt;}
.yf7{bottom:176.507520pt;}
.y160{bottom:176.817280pt;}
.y20f{bottom:177.120000pt;}
.y1d5{bottom:178.232000pt;}
.y204{bottom:179.272960pt;}
.y14f{bottom:179.745920pt;}
.y3d{bottom:180.641920pt;}
.y270{bottom:182.917120pt;}
.y1c8{bottom:183.296640pt;}
.y1a8{bottom:185.121920pt;}
.y23d{bottom:185.481600pt;}
.y18d{bottom:186.124800pt;}
.y124{bottom:189.281920pt;}
.y1d4{bottom:192.956000pt;}
.y1eb{bottom:193.133440pt;}
.y246{bottom:193.444000pt;}
.yf6{bottom:194.421760pt;}
.y28f{bottom:195.397760pt;}
.y203{bottom:197.187200pt;}
.y14e{bottom:197.660160pt;}
.y15f{bottom:198.735360pt;}
.y16a{bottom:199.537280pt;}
.y1c7{bottom:201.210880pt;}
.y3c{bottom:202.560000pt;}
.y26f{bottom:204.835200pt;}
.y1a7{bottom:207.040000pt;}
.y1d3{bottom:207.680000pt;}
.y18c{bottom:208.042880pt;}
.y1ae{bottom:209.123840pt;}
.y1ea{bottom:211.047680pt;}
.y123{bottom:211.200000pt;}
.yf5{bottom:212.336000pt;}
.y202{bottom:215.101440pt;}
.y23c{bottom:215.554560pt;}
.y14d{bottom:215.574400pt;}
.y28e{bottom:217.315840pt;}
.y169{bottom:217.451520pt;}
.y1c6{bottom:219.125120pt;}
.y15e{bottom:220.491520pt;}
.y1d2{bottom:223.044480pt;}
.y18b{bottom:225.957120pt;}
.y26e{bottom:226.753280pt;}
.y1a6{bottom:227.996000pt;}
.y1e9{bottom:228.961920pt;}
.yf4{bottom:230.250240pt;}
.y1ad{bottom:231.041920pt;}
.y3b{bottom:231.520000pt;}
.y201{bottom:233.015680pt;}
.y122{bottom:233.125760pt;}
.y14c{bottom:233.488640pt;}
.y168{bottom:235.365760pt;}
.y1c5{bottom:237.039360pt;}
.y28d{bottom:239.233920pt;}
.y67{bottom:241.415680pt;}
.y15d{bottom:242.409600pt;}
.y1a5{bottom:242.720000pt;}
.y23b{bottom:245.480320pt;}
.y18a{bottom:247.875200pt;}
.yf3{bottom:248.164480pt;}
.y26d{bottom:248.671360pt;}
.y1e8{bottom:250.880000pt;}
.y200{bottom:250.929920pt;}
.y121{bottom:251.040000pt;}
.y14b{bottom:251.402880pt;}
.y1ac{bottom:252.960000pt;}
.y167{bottom:253.280000pt;}
.y39{bottom:253.920000pt;}
.y1c4{bottom:254.953600pt;}
.y1a4{bottom:258.176640pt;}
.y66{bottom:259.329920pt;}
.y3a{bottom:260.960000pt;}
.y28c{bottom:261.152000pt;}
.y15c{bottom:264.327680pt;}
.y23a{bottom:264.675200pt;}
.yf2{bottom:265.931520pt;}
.y120{bottom:268.960000pt;}
.y189{bottom:269.793280pt;}
.y26c{bottom:270.589440pt;}
.y1e7{bottom:271.836000pt;}
.y1ff{bottom:272.686080pt;}
.y14a{bottom:273.159040pt;}
.y1ab{bottom:274.076000pt;}
.y1c3{bottom:276.709760pt;}
.y65{bottom:277.244160pt;}
.y36{bottom:279.840000pt;}
.y28b{bottom:283.070080pt;}
.yf1{bottom:283.845760pt;}
.y239{bottom:283.870080pt;}
.y15b{bottom:286.245760pt;}
.y1e6{bottom:286.560000pt;}
.y38{bottom:286.720000pt;}
.y11f{bottom:286.890240pt;}
.y188{bottom:287.707520pt;}
.y1aa{bottom:288.800000pt;}
.y1fe{bottom:290.600320pt;}
.y26b{bottom:292.507520pt;}
.y1c2{bottom:294.624000pt;}
.y149{bottom:295.077120pt;}
.y64{bottom:295.158400pt;}
.yf0{bottom:301.760000pt;}
.y1e5{bottom:302.012800pt;}
.y238{bottom:303.226880pt;}
.y15a{bottom:304.160000pt;}
.y11e{bottom:304.804480pt;}
.y28a{bottom:304.988160pt;}
.y187{bottom:305.474560pt;}
.y33{bottom:305.600000pt;}
.y1fd{bottom:308.514560pt;}
.y1c1{bottom:312.538240pt;}
.y35{bottom:312.640000pt;}
.y148{bottom:312.991360pt;}
.y63{bottom:313.072640pt;}
.y26a{bottom:314.425600pt;}
.yef{bottom:319.680000pt;}
.ycb{bottom:320.321920pt;}
.y11d{bottom:322.571520pt;}
.y237{bottom:322.583680pt;}
.y186{bottom:323.388800pt;}
.y1fc{bottom:326.428800pt;}
.y289{bottom:326.906240pt;}
.y1c0{bottom:330.452480pt;}
.y147{bottom:330.905600pt;}
.y62{bottom:330.986880pt;}
.y269{bottom:336.181760pt;}
.yee{bottom:337.605760pt;}
.y32{bottom:339.520000pt;}
.y11c{bottom:340.485760pt;}
.y185{bottom:341.303040pt;}
.y236{bottom:341.940480pt;}
.yca{bottom:342.240000pt;}
.y1fb{bottom:344.343040pt;}
.y1bf{bottom:348.366720pt;}
.y288{bottom:348.662400pt;}
.y146{bottom:348.819840pt;}
.y61{bottom:348.901120pt;}
.y9a{bottom:349.764480pt;}
.yed{bottom:355.520000pt;}
.y268{bottom:358.099840pt;}
.y11b{bottom:358.400000pt;}
.y184{bottom:359.217280pt;}
.yc8{bottom:361.120000pt;}
.y31{bottom:365.760000pt;}
.y1fa{bottom:366.261120pt;}
.y1be{bottom:366.280960pt;}
.y145{bottom:366.734080pt;}
.y60{bottom:366.815360pt;}
.y99{bottom:367.678720pt;}
.yc9{bottom:369.120000pt;}
.y287{bottom:370.580480pt;}
.y235{bottom:372.013440pt;}
.yec{bottom:373.440000pt;}
.y183{bottom:377.131520pt;}
.y267{bottom:380.017920pt;}
.y11a{bottom:380.350720pt;}
.y1f9{bottom:384.175360pt;}
.y1bd{bottom:384.195200pt;}
.y2e{bottom:384.640000pt;}
.y5f{bottom:384.729600pt;}
.y30{bottom:385.280000pt;}
.y98{bottom:385.445760pt;}
.yc6{bottom:388.000000pt;}
.y144{bottom:388.652160pt;}
.y234{bottom:391.208320pt;}
.y286{bottom:392.498560pt;}
.yeb{bottom:393.280000pt;}
.y182{bottom:395.045760pt;}
.yc7{bottom:396.000000pt;}
.y266{bottom:401.936000pt;}
.y1f8{bottom:402.089600pt;}
.y1bc{bottom:402.109440pt;}
.y119{bottom:402.268800pt;}
.y5e{bottom:402.643840pt;}
.y97{bottom:403.360000pt;}
.y2f{bottom:404.800000pt;}
.y233{bottom:410.565120pt;}
.y143{bottom:410.570240pt;}
.yea{bottom:411.200000pt;}
.y181{bottom:412.960000pt;}
.y285{bottom:414.416640pt;}
.yc4{bottom:414.880000pt;}
.y265{bottom:419.850240pt;}
.y1f7{bottom:420.003840pt;}
.y118{bottom:420.183040pt;}
.y5d{bottom:420.410880pt;}
.yc5{bottom:422.880000pt;}
.y1bb{bottom:424.027520pt;}
.y96{bottom:425.280000pt;}
.y142{bottom:428.484480pt;}
.ye9{bottom:429.120000pt;}
.y232{bottom:429.760000pt;}
.y2d{bottom:434.720000pt;}
.y284{bottom:436.334720pt;}
.y117{bottom:438.097280pt;}
.y5c{bottom:438.325120pt;}
.y1f6{bottom:441.760000pt;}
.yc2{bottom:441.920000pt;}
.y1ba{bottom:441.941760pt;}
.y141{bottom:446.398720pt;}
.ye8{bottom:447.040000pt;}
.y95{bottom:447.200000pt;}
.y180{bottom:448.960000pt;}
.yc3{bottom:449.760000pt;}
.y116{bottom:456.011520pt;}
.y5b{bottom:456.239360pt;}
.y283{bottom:458.252800pt;}
.y231{bottom:458.880000pt;}
.y1b9{bottom:459.708800pt;}
.y279{bottom:461.136000pt;}
.y1f5{bottom:462.876000pt;}
.y140{bottom:464.312960pt;}
.ye7{bottom:464.960000pt;}
.y2c{bottom:465.760000pt;}
.yc1{bottom:468.800000pt;}
.y94{bottom:469.125760pt;}
.y115{bottom:473.925760pt;}
.y5a{bottom:474.153600pt;}
.y2b{bottom:476.800000pt;}
.y1f4{bottom:477.600000pt;}
.y1b8{bottom:477.623040pt;}
.y278{bottom:479.050240pt;}
.y282{bottom:480.170880pt;}
.y13f{bottom:482.080000pt;}
.ye6{bottom:482.880000pt;}
.y230{bottom:485.280000pt;}
.y93{bottom:487.040000pt;}
.y114{bottom:491.840000pt;}
.y59{bottom:492.067840pt;}
.y1f3{bottom:492.990080pt;}
.ybf{bottom:495.680000pt;}
.y277{bottom:496.964480pt;}
.y17f{bottom:497.067520pt;}
.y1b7{bottom:499.541120pt;}
.ye5{bottom:500.800000pt;}
.y281{bottom:502.088960pt;}
.yc0{bottom:503.680000pt;}
.y22f{bottom:508.815360pt;}
.y92{bottom:508.960000pt;}
.y58{bottom:509.982080pt;}
.y17e{bottom:514.981760pt;}
.y2a{bottom:516.800000pt;}
.y1b6{bottom:517.455360pt;}
.y13e{bottom:518.240000pt;}
.ye4{bottom:518.560000pt;}
.y276{bottom:518.882560pt;}
.ybd{bottom:522.560000pt;}
.y280{bottom:524.007040pt;}
.y113{bottom:527.840000pt;}
.y57{bottom:527.896320pt;}
.y29{bottom:528.000000pt;}
.ybe{bottom:530.560000pt;}
.y91{bottom:530.884480pt;}
.y17d{bottom:532.896000pt;}
.y7b{bottom:533.445760pt;}
.y1b5{bottom:535.369600pt;}
.ye3{bottom:536.480000pt;}
.y157{bottom:538.739840pt;}
.y20e{bottom:544.312000pt;}
.y56{bottom:545.810560pt;}
.y27f{bottom:545.925120pt;}
.y90{bottom:548.798720pt;}
.ybb{bottom:549.440000pt;}
.y17c{bottom:550.810240pt;}
.y1b4{bottom:553.283840pt;}
.ye2{bottom:554.400000pt;}
.y7a{bottom:555.363840pt;}
.y156{bottom:556.654080pt;}
.ybc{bottom:557.440000pt;}
.y20d{bottom:562.876000pt;}
.y27e{bottom:563.692160pt;}
.y55{bottom:563.724800pt;}
.y13d{bottom:566.560000pt;}
.y8f{bottom:566.712960pt;}
.y17b{bottom:568.724480pt;}
.y28{bottom:570.080000pt;}
.y245{bottom:570.400000pt;}
.y260{bottom:570.963200pt;}
.ye1{bottom:572.480000pt;}
.y1b3{bottom:575.201920pt;}
.y112{bottom:575.840000pt;}
.yb8{bottom:576.320000pt;}
.y20c{bottom:577.600000pt;}
.y79{bottom:580.800000pt;}
.y54{bottom:581.639040pt;}
.yba{bottom:584.320000pt;}
.y8e{bottom:584.480000pt;}
.y13c{bottom:589.793280pt;}
.y17a{bottom:590.480640pt;}
.y20b{bottom:592.324000pt;}
.ye0{bottom:592.369280pt;}
.y25f{bottom:592.881280pt;}
.y1d1{bottom:593.120000pt;}
.y111{bottom:595.680000pt;}
.y244{bottom:596.956000pt;}
.y1b2{bottom:597.120000pt;}
.y53{bottom:599.406080pt;}
.y226{bottom:600.401920pt;}
.yb9{bottom:602.240000pt;}
.y27{bottom:603.520000pt;}
.y78{bottom:605.120000pt;}
.y8d{bottom:606.438400pt;}
.y20a{bottom:606.880000pt;}
.y13b{bottom:607.707520pt;}
.y179{bottom:608.394880pt;}
.ydf{bottom:610.136320pt;}
.y243{bottom:612.640000pt;}
.y110{bottom:613.600000pt;}
.y1d0{bottom:614.076000pt;}
.y25e{bottom:614.637440pt;}
.y52{bottom:617.320320pt;}
.y1b1{bottom:618.076000pt;}
.yb4{bottom:621.120000pt;}
.y209{bottom:622.246400pt;}
.y225{bottom:622.320000pt;}
.y13a{bottom:625.621760pt;}
.y178{bottom:626.309120pt;}
.yde{bottom:628.050560pt;}
.y1a3{bottom:628.252160pt;}
.y8c{bottom:628.356480pt;}
.y1cf{bottom:628.800000pt;}
.yb7{bottom:629.120000pt;}
.y77{bottom:629.280000pt;}
.y10f{bottom:631.520000pt;}
.y1b0{bottom:632.800000pt;}
.y51{bottom:635.234560pt;}
.y242{bottom:636.316800pt;}
.y25d{bottom:636.555520pt;}
.y26{bottom:636.800000pt;}
.y224{bottom:640.234240pt;}
.y139{bottom:643.388800pt;}
.y1ce{bottom:644.164480pt;}
.y177{bottom:644.223360pt;}
.ydd{bottom:645.964800pt;}
.y14{bottom:646.400000pt;}
.y1af{bottom:648.153600pt;}
.y10e{bottom:649.440000pt;}
.y1a2{bottom:650.170240pt;}
.y8b{bottom:650.274560pt;}
.y50{bottom:653.148800pt;}
.y76{bottom:653.600000pt;}
.y17{bottom:655.200000pt;}
.y223{bottom:658.148480pt;}
.y25c{bottom:658.473600pt;}
.y138{bottom:661.303040pt;}
.y176{bottom:662.137600pt;}
.ydc{bottom:663.879040pt;}
.yb6{bottom:664.960000pt;}
.y10d{bottom:667.360000pt;}
.y25{bottom:667.521920pt;}
.y4f{bottom:671.063040pt;}
.y1a1{bottom:672.088320pt;}
.y8a{bottom:672.192640pt;}
.y222{bottom:676.062720pt;}
.y25b{bottom:676.387840pt;}
.y75{bottom:677.920000pt;}
.y137{bottom:679.217280pt;}
.ydb{bottom:681.793280pt;}
.yb2{bottom:683.840000pt;}
.y16{bottom:684.480000pt;}
.y10c{bottom:685.280000pt;}
.y175{bottom:687.264640pt;}
.y4e{bottom:688.977280pt;}
.y24{bottom:689.440000pt;}
.y1a0{bottom:690.002560pt;}
.yb3{bottom:691.840000pt;}
.y221{bottom:693.976960pt;}
.y1e4{bottom:694.006400pt;}
.y89{bottom:694.110720pt;}
.y25a{bottom:694.302080pt;}
.y136{bottom:697.131520pt;}
.yda{bottom:699.707520pt;}
.y74{bottom:702.240000pt;}
.y10b{bottom:705.134720pt;}
.y4d{bottom:706.891520pt;}
.y19f{bottom:707.916800pt;}
.y174{bottom:708.858880pt;}
.yaf{bottom:710.720000pt;}
.y23{bottom:711.358080pt;}
.y220{bottom:711.891200pt;}
.y1e3{bottom:711.920640pt;}
.y13{bottom:713.759867pt;}
.y135{bottom:715.045760pt;}
.y88{bottom:716.028800pt;}
.y259{bottom:716.220160pt;}
.yd9{bottom:717.621760pt;}
.yb1{bottom:718.720000pt;}
.y4c{bottom:724.805760pt;}
.y10a{bottom:725.610240pt;}
.y19e{bottom:725.831040pt;}
.y73{bottom:726.400000pt;}
.y21f{bottom:729.805440pt;}
.y1e2{bottom:729.834880pt;}
.y173{bottom:730.776960pt;}
.y134{bottom:732.960000pt;}
.y22{bottom:733.600000pt;}
.y87{bottom:733.943040pt;}
.y258{bottom:734.134400pt;}
.yd8{bottom:735.536000pt;}
.yb0{bottom:736.640000pt;}
.y4b{bottom:742.720000pt;}
.y19d{bottom:743.745280pt;}
.y109{bottom:747.057280pt;}
.y21e{bottom:747.719680pt;}
.y1e1{bottom:747.749120pt;}
.y172{bottom:748.691200pt;}
.y72{bottom:750.720000pt;}
.y257{bottom:752.048640pt;}
.yd7{bottom:753.450240pt;}
.yab{bottom:755.520000pt;}
.y86{bottom:755.861120pt;}
.y21{bottom:757.120000pt;}
.y133{bottom:758.240000pt;}
.y19{bottom:760.960000pt;}
.yae{bottom:763.520000pt;}
.y19c{bottom:765.501440pt;}
.y21d{bottom:765.633920pt;}
.y171{bottom:766.605440pt;}
.y12{bottom:767.383040pt;}
.y108{bottom:767.694720pt;}
.y1e0{bottom:769.505280pt;}
.y256{bottom:769.962880pt;}
.y71{bottom:771.040000pt;}
.yd6{bottom:771.364480pt;}
.y85{bottom:777.617280pt;}
.y4a{bottom:778.720000pt;}
.yad{bottom:781.440000pt;}
.y21c{bottom:783.400960pt;}
.y170{bottom:784.519680pt;}
.y19b{bottom:787.419520pt;}
.y107{bottom:788.979840pt;}
.y132{bottom:789.124480pt;}
.yd5{bottom:789.131520pt;}
.y11{bottom:789.301120pt;}
.y255{bottom:791.880960pt;}
.y70{bottom:795.200000pt;}
.y84{bottom:799.535360pt;}
.ya9{bottom:800.320000pt;}
.y16f{bottom:802.433920pt;}
.y21b{bottom:805.319040pt;}
.y19a{bottom:805.333760pt;}
.y131{bottom:806.891520pt;}
.yd4{bottom:807.045760pt;}
.yaa{bottom:808.320000pt;}
.y254{bottom:809.795200pt;}
.y106{bottom:810.426880pt;}
.y10{bottom:811.057280pt;}
.y6f{bottom:819.520000pt;}
.y16e{bottom:820.348160pt;}
.y83{bottom:821.453440pt;}
.y20{bottom:821.600000pt;}
.y199{bottom:823.248000pt;}
.y130{bottom:824.805760pt;}
.yd3{bottom:824.994560pt;}
.y49{bottom:825.600160pt;}
.y21a{bottom:827.237120pt;}
.ya7{bottom:827.360000pt;}
.y253{bottom:827.562240pt;}
.y18{bottom:829.920000pt;}
.y105{bottom:831.712000pt;}
.yf{bottom:832.975360pt;}
.ya8{bottom:835.360000pt;}
.y16d{bottom:838.262400pt;}
.y198{bottom:841.162240pt;}
.y48{bottom:842.720000pt;}
.yd2{bottom:842.908800pt;}
.y82{bottom:843.371520pt;}
.y6e{bottom:843.840000pt;}
.y219{bottom:845.151360pt;}
.y252{bottom:849.480320pt;}
.y104{bottom:853.159040pt;}
.ya5{bottom:854.240000pt;}
.ye{bottom:854.893440pt;}
.y45{bottom:856.800000pt;}
.y1df{bottom:859.076480pt;}
.yd1{bottom:860.823040pt;}
.ya6{bottom:862.240000pt;}
.y1f2{bottom:863.065600pt;}
.y197{bottom:863.080320pt;}
.y16c{bottom:863.389440pt;}
.y81{bottom:865.289600pt;}
.y251{bottom:867.394560pt;}
.y12f{bottom:868.000000pt;}
.y6d{bottom:868.160000pt;}
.y47{bottom:868.480000pt;}
.y103{bottom:871.073280pt;}
.yd{bottom:876.811520pt;}
.y1de{bottom:876.990720pt;}
.yd0{bottom:878.737280pt;}
.y218{bottom:880.979840pt;}
.ya3{bottom:881.120000pt;}
.y16b{bottom:884.983680pt;}
.y196{bottom:884.998400pt;}
.y250{bottom:885.308800pt;}
.y22e{bottom:887.060480pt;}
.y80{bottom:887.207680pt;}
.y102{bottom:888.987520pt;}
.ya4{bottom:889.120000pt;}
.y6c{bottom:892.320000pt;}
.ycf{bottom:896.651520pt;}
.yc{bottom:898.729600pt;}
.y12e{bottom:898.894080pt;}
.y1dd{bottom:898.908800pt;}
.y1f1{bottom:902.897920pt;}
.y195{bottom:902.912640pt;}
.y24f{bottom:903.223040pt;}
.y22d{bottom:906.255360pt;}
.y101{bottom:906.901760pt;}
.y44{bottom:907.680000pt;}
.y264{bottom:907.847680pt;}
.ya1{bottom:908.000000pt;}
.y1f{bottom:909.120000pt;}
.y7f{bottom:909.125760pt;}
.yce{bottom:914.565760pt;}
.ya2{bottom:916.000000pt;}
.y6b{bottom:916.640000pt;}
.y217{bottom:916.808320pt;}
.y1dc{bottom:916.823040pt;}
.yb{bottom:920.647680pt;}
.y12d{bottom:920.812160pt;}
.y194{bottom:920.826880pt;}
.y24e{bottom:921.137280pt;}
.y100{bottom:924.816000pt;}
.y263{bottom:925.761920pt;}
.y155{bottom:926.729600pt;}
.y7e{bottom:931.043840pt;}
.ycd{bottom:932.480000pt;}
.y27d{bottom:933.767680pt;}
.y216{bottom:934.722560pt;}
.y1db{bottom:934.737280pt;}
.y9e{bottom:934.880000pt;}
.y22c{bottom:936.328320pt;}
.y43{bottom:938.080000pt;}
.y12c{bottom:938.726400pt;}
.y193{bottom:938.741120pt;}
.y24d{bottom:939.051520pt;}
.y6a{bottom:940.960000pt;}
.ya{bottom:942.565760pt;}
.yff{bottom:942.730240pt;}
.ya0{bottom:942.880000pt;}
.y262{bottom:947.680000pt;}
.y154{bottom:948.485760pt;}
.y27c{bottom:951.681920pt;}
.y275{bottom:952.489600pt;}
.y215{bottom:952.636800pt;}
.y1da{bottom:952.651520pt;}
.y7d{bottom:952.961920pt;}
.y22b{bottom:955.523200pt;}
.y12b{bottom:956.640640pt;}
.y192{bottom:956.655360pt;}
.y24c{bottom:956.965760pt;}
.yfe{bottom:960.644480pt;}
.y9b{bottom:961.760000pt;}
.y9{bottom:964.483840pt;}
.ycc{bottom:965.920000pt;}
.y69{bottom:968.480000pt;}
.y9d{bottom:969.759867pt;}
.y42{bottom:970.403840pt;}
.y27b{bottom:973.600000pt;}
.y12a{bottom:974.407680pt;}
.y7c{bottom:974.880000pt;}
.yfd{bottom:978.411520pt;}
.y261{bottom:978.560000pt;}
.y8{bottom:986.401920pt;}
.y41{bottom:992.321920pt;}
.yfc{bottom:996.325760pt;}
.y27a{bottom:1004.480000pt;}
.y7{bottom:1008.320000pt;}
.y24b{bottom:1010.720000pt;}
.y68{bottom:1010.880000pt;}
.y1e{bottom:1014.240000pt;}
.y241{bottom:1014.400000pt;}
.y4{bottom:1033.600000pt;}
.y1{bottom:1050.400000pt;}
.y1a{bottom:1052.960000pt;}
.y3{bottom:1057.920000pt;}
.h2{height:24.320000pt;}
.h1b{height:25.758667pt;}
.h11{height:25.760000pt;}
.ha{height:25.920000pt;}
.h21{height:26.643750pt;}
.h16{height:31.134062pt;}
.h24{height:34.453125pt;}
.h23{height:34.851562pt;}
.h3{height:38.128125pt;}
.h22{height:42.249060pt;}
.h4{height:42.262500pt;}
.h5{height:42.751250pt;}
.h20{height:42.866250pt;}
.h19{height:43.840000pt;}
.h1f{height:45.914460pt;}
.hf{height:45.937500pt;}
.hc{height:46.468750pt;}
.h1c{height:46.593750pt;}
.h1d{height:47.625510pt;}
.h1e{height:47.763750pt;}
.hd{height:50.628750pt;}
.h13{height:51.057500pt;}
.h9{height:54.368437pt;}
.h17{height:54.514687pt;}
.h14{height:55.031250pt;}
.h18{height:56.732813pt;}
.hb{height:58.085938pt;}
.h12{height:60.017500pt;}
.h1a{height:61.760000pt;}
.h25{height:61.803437pt;}
.h6{height:68.906250pt;}
.h15{height:70.080000pt;}
.h7{height:94.240000pt;}
.he{height:95.217500pt;}
.h10{height:95.857500pt;}
.h8{height:185.875000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:7.518667pt;}
.wa{width:14.880000pt;}
.w6{width:182.880000pt;}
.w3{width:214.240000pt;}
.w2{width:214.241333pt;}
.w9{width:319.680000pt;}
.w8{width:319.840000pt;}
.w7{width:539.040000pt;}
.w4{width:793.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.200000pt;}
.x11{left:8.480000pt;}
.x7{left:10.080000pt;}
.xf{left:70.880000pt;}
.x1{left:75.520000pt;}
.x1d{left:76.640000pt;}
.x3b{left:80.000000pt;}
.x15{left:82.720000pt;}
.x14{left:84.000000pt;}
.x3d{left:84.960000pt;}
.x1a{left:90.240000pt;}
.x35{left:91.680000pt;}
.x31{left:95.520000pt;}
.x26{left:97.280000pt;}
.x1c{left:99.520000pt;}
.x20{left:101.280000pt;}
.x28{left:103.360000pt;}
.x2a{left:104.800000pt;}
.x23{left:114.400000pt;}
.x37{left:118.880000pt;}
.x1b{left:121.760000pt;}
.x19{left:123.520000pt;}
.x17{left:127.360000pt;}
.x16{left:134.560000pt;}
.x3e{left:147.520000pt;}
.x6{left:171.520000pt;}
.xd{left:193.120000pt;}
.x4{left:214.720000pt;}
.x1e{left:217.280000pt;}
.xb{left:219.040000pt;}
.x10{left:222.080000pt;}
.xa{left:254.080000pt;}
.x13{left:265.600000pt;}
.x12{left:266.880000pt;}
.xe{left:285.766400pt;}
.x2e{left:315.680000pt;}
.x8{left:334.560000pt;}
.xc{left:341.760000pt;}
.x2{left:396.800000pt;}
.x3c{left:428.800000pt;}
.x2d{left:437.120000pt;}
.x1f{left:451.200000pt;}
.x33{left:472.800000pt;}
.x27{left:482.080000pt;}
.x30{left:496.160000pt;}
.x3{left:504.000000pt;}
.x25{left:506.400000pt;}
.x3a{left:514.080000pt;}
.x39{left:516.800000pt;}
.x21{left:521.440000pt;}
.x9{left:526.400000pt;}
.x29{left:528.160000pt;}
.x36{left:530.880000pt;}
.x34{left:533.920000pt;}
.x32{left:556.320000pt;}
.x22{left:557.920000pt;}
.x2c{left:579.520000pt;}
.x2b{left:603.200000pt;}
.x24{left:613.920000pt;}
.x2f{left:664.000000pt;}
.x38{left:671.360000pt;}
.x41{left:701.767680pt;}
.x3f{left:703.360000pt;}
.x5{left:710.720000pt;}
.x40{left:718.048000pt;}
.x42{left:741.423360pt;}
}




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