
    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_d0ae4d4f259df41bec7ffb77.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_81ea8adce230f16830d5a704.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c0bf0f712f87ece4a7d5e5da.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_290458f68de08f8b24235c51.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_3ae3d9ca0d434e18d7399fa0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_548da3dd648f48288ace250f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_72953a236ead6979405fa3b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c29e7866b1cbde4e7d89fd19.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_47bbd05a3d601410d2b13d31.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v7{vertical-align:-11.677200px;}
.v5{vertical-align:-6.528000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.620000px;}
.v6{vertical-align:17.516400px;}
.v3{vertical-align:28.230000px;}
.v1{vertical-align:30.381600px;}
.v4{vertical-align:39.692400px;}
.ls9a{letter-spacing:-2.640000px;}
.ls9c{letter-spacing:-0.816000px;}
.ls4{letter-spacing:-0.780000px;}
.ls9b{letter-spacing:-0.528000px;}
.ls57{letter-spacing:-0.480000px;}
.ls6b{letter-spacing:-0.360000px;}
.lsaf{letter-spacing:-0.336000px;}
.ls6{letter-spacing:-0.300000px;}
.ls98{letter-spacing:-0.288000px;}
.ls51{letter-spacing:-0.240000px;}
.ls97{letter-spacing:-0.192000px;}
.ls31{letter-spacing:-0.180000px;}
.ls99{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.120000px;}
.ls96{letter-spacing:-0.096000px;}
.ls3f{letter-spacing:-0.060000px;}
.lsac{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls49{letter-spacing:0.006000px;}
.ls40{letter-spacing:0.048000px;}
.lsd{letter-spacing:0.060000px;}
.ls41{letter-spacing:0.096000px;}
.lse{letter-spacing:0.120000px;}
.ls93{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.180000px;}
.ls67{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.240000px;}
.ls60{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.300000px;}
.ls73{letter-spacing:0.336000px;}
.ls2e{letter-spacing:0.360000px;}
.ls88{letter-spacing:0.384000px;}
.ls26{letter-spacing:0.420000px;}
.ls8c{letter-spacing:0.432000px;}
.ls50{letter-spacing:0.454740px;}
.ls17{letter-spacing:0.480000px;}
.ls76{letter-spacing:0.528000px;}
.ls20{letter-spacing:0.540000px;}
.lsa1{letter-spacing:0.576000px;}
.ls44{letter-spacing:0.600000px;}
.ls84{letter-spacing:0.624000px;}
.ls8{letter-spacing:0.660000px;}
.lsab{letter-spacing:0.672000px;}
.ls1c{letter-spacing:0.720000px;}
.lsa6{letter-spacing:0.768000px;}
.lsa{letter-spacing:0.780000px;}
.ls8b{letter-spacing:0.816000px;}
.lsb{letter-spacing:0.840000px;}
.ls75{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.900000px;}
.ls74{letter-spacing:0.912000px;}
.ls35{letter-spacing:0.960000px;}
.ls7e{letter-spacing:1.008000px;}
.ls1b{letter-spacing:1.020000px;}
.ls83{letter-spacing:1.056000px;}
.ls12{letter-spacing:1.080000px;}
.ls82{letter-spacing:1.104000px;}
.ls30{letter-spacing:1.140000px;}
.ls7f{letter-spacing:1.152000px;}
.ls3b{letter-spacing:1.200000px;}
.ls92{letter-spacing:1.248000px;}
.ls7{letter-spacing:1.260000px;}
.ls68{letter-spacing:1.296000px;}
.ls1e{letter-spacing:1.320000px;}
.ls16{letter-spacing:1.380000px;}
.ls8f{letter-spacing:1.392000px;}
.ls29{letter-spacing:1.440000px;}
.ls79{letter-spacing:1.488000px;}
.ls1f{letter-spacing:1.500000px;}
.ls7d{letter-spacing:1.536000px;}
.ls9{letter-spacing:1.560000px;}
.lsa3{letter-spacing:1.584000px;}
.ls32{letter-spacing:1.620000px;}
.ls7a{letter-spacing:1.632000px;}
.ls18{letter-spacing:1.680000px;}
.ls95{letter-spacing:1.728000px;}
.ls24{letter-spacing:1.740000px;}
.ls91{letter-spacing:1.776000px;}
.ls3d{letter-spacing:1.800000px;}
.ls72{letter-spacing:1.824000px;}
.ls15{letter-spacing:1.860000px;}
.ls7b{letter-spacing:1.872000px;}
.ls2c{letter-spacing:1.920000px;}
.lsa4{letter-spacing:1.968000px;}
.ls23{letter-spacing:1.980000px;}
.ls69{letter-spacing:2.016000px;}
.lsf{letter-spacing:2.040000px;}
.lsa9{letter-spacing:2.064000px;}
.ls33{letter-spacing:2.100000px;}
.ls90{letter-spacing:2.112000px;}
.ls2a{letter-spacing:2.160000px;}
.ls9d{letter-spacing:2.208000px;}
.ls36{letter-spacing:2.220000px;}
.ls2f{letter-spacing:2.280000px;}
.ls8d{letter-spacing:2.304000px;}
.ls13{letter-spacing:2.340000px;}
.lsad{letter-spacing:2.352000px;}
.ls11{letter-spacing:2.400000px;}
.ls4e{letter-spacing:2.460000px;}
.ls52{letter-spacing:2.520000px;}
.lsa2{letter-spacing:2.544000px;}
.ls42{letter-spacing:2.580000px;}
.ls8a{letter-spacing:2.592000px;}
.lsc{letter-spacing:2.640000px;}
.ls2d{letter-spacing:2.700000px;}
.ls8e{letter-spacing:2.736000px;}
.ls3a{letter-spacing:2.760000px;}
.ls78{letter-spacing:2.784000px;}
.ls1d{letter-spacing:2.820000px;}
.ls87{letter-spacing:2.832000px;}
.ls4d{letter-spacing:2.880000px;}
.lsa8{letter-spacing:2.928000px;}
.ls2b{letter-spacing:2.940000px;}
.ls77{letter-spacing:2.976000px;}
.ls37{letter-spacing:3.000000px;}
.ls81{letter-spacing:3.024000px;}
.ls54{letter-spacing:3.060000px;}
.ls7c{letter-spacing:3.072000px;}
.ls5f{letter-spacing:3.120000px;}
.ls9e{letter-spacing:3.168000px;}
.ls45{letter-spacing:3.180000px;}
.ls25{letter-spacing:3.240000px;}
.lsaa{letter-spacing:3.360000px;}
.ls38{letter-spacing:3.420000px;}
.lsa0{letter-spacing:3.456000px;}
.ls3e{letter-spacing:3.480000px;}
.lsa5{letter-spacing:3.504000px;}
.ls39{letter-spacing:3.540000px;}
.ls19{letter-spacing:3.600000px;}
.ls62{letter-spacing:3.660000px;}
.ls80{letter-spacing:3.744000px;}
.ls3c{letter-spacing:3.780000px;}
.lsa7{letter-spacing:3.792000px;}
.ls34{letter-spacing:3.900000px;}
.ls85{letter-spacing:3.936000px;}
.ls43{letter-spacing:3.960000px;}
.ls27{letter-spacing:4.020000px;}
.ls55{letter-spacing:4.080000px;}
.ls86{letter-spacing:4.176000px;}
.ls9f{letter-spacing:4.320000px;}
.ls89{letter-spacing:4.368000px;}
.ls6d{letter-spacing:4.380000px;}
.ls64{letter-spacing:4.500000px;}
.ls53{letter-spacing:4.560000px;}
.ls6a{letter-spacing:4.680000px;}
.ls47{letter-spacing:4.740000px;}
.ls46{letter-spacing:4.800000px;}
.ls1a{letter-spacing:4.980000px;}
.ls4c{letter-spacing:5.160000px;}
.ls4f{letter-spacing:5.400000px;}
.ls66{letter-spacing:5.460000px;}
.ls58{letter-spacing:5.520000px;}
.ls4b{letter-spacing:5.700000px;}
.ls6e{letter-spacing:5.760000px;}
.ls6c{letter-spacing:6.060000px;}
.ls59{letter-spacing:6.120000px;}
.ls56{letter-spacing:6.300000px;}
.lsae{letter-spacing:6.336000px;}
.ls70{letter-spacing:6.420000px;}
.ls22{letter-spacing:6.480000px;}
.ls61{letter-spacing:6.660000px;}
.ls94{letter-spacing:6.720000px;}
.ls65{letter-spacing:6.840000px;}
.ls71{letter-spacing:7.620000px;}
.ls4a{letter-spacing:9.814860px;}
.ls6f{letter-spacing:10.680000px;}
.ls48{letter-spacing:11.160000px;}
.ls1{letter-spacing:59.532876px;}
.ls0{letter-spacing:59.533476px;}
.ls63{letter-spacing:186.864000px;}
.ls5c{letter-spacing:211.152000px;}
.ls5d{letter-spacing:212.016000px;}
.ls5a{letter-spacing:223.152000px;}
.ls5b{letter-spacing:235.152000px;}
.ls5e{letter-spacing:277.152000px;}
.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;}
}
.ws77{word-spacing:-21.840000px;}
.wsa{word-spacing:-19.980000px;}
.ws88{word-spacing:-18.180000px;}
.ws7c{word-spacing:-18.060000px;}
.ws7b{word-spacing:-17.820000px;}
.ws1{word-spacing:-17.514000px;}
.ws9{word-spacing:-17.340000px;}
.ws47{word-spacing:-17.220000px;}
.ws72{word-spacing:-17.160000px;}
.wse{word-spacing:-17.040000px;}
.ws10{word-spacing:-16.980000px;}
.ws2{word-spacing:-16.680000px;}
.wsb{word-spacing:-16.560000px;}
.wsc4{word-spacing:-16.320000px;}
.ws33{word-spacing:-16.200000px;}
.ws7d{word-spacing:-15.960000px;}
.wsc{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.660000px;}
.wsc8{word-spacing:-15.360000px;}
.wsd{word-spacing:-15.240000px;}
.ws87{word-spacing:-15.120000px;}
.ws36{word-spacing:-15.060000px;}
.wsf{word-spacing:-15.000000px;}
.ws91{word-spacing:-14.976000px;}
.ws23{word-spacing:-14.940000px;}
.wsa4{word-spacing:-14.832000px;}
.wsaa{word-spacing:-14.784000px;}
.ws8f{word-spacing:-14.640000px;}
.wse6{word-spacing:-14.352000px;}
.wsa8{word-spacing:-14.112000px;}
.wscb{word-spacing:-14.016000px;}
.wsab{word-spacing:-13.728000px;}
.ws90{word-spacing:-13.440000px;}
.ws4{word-spacing:-13.344000px;}
.wsc6{word-spacing:-13.296000px;}
.wsa9{word-spacing:-13.200000px;}
.ws92{word-spacing:-13.152000px;}
.wse7{word-spacing:-13.056000px;}
.wsa3{word-spacing:-12.960000px;}
.wsa2{word-spacing:-12.912000px;}
.wsc5{word-spacing:-12.768000px;}
.wsc3{word-spacing:-12.720000px;}
.wsc7{word-spacing:-12.624000px;}
.ws3{word-spacing:-12.510000px;}
.wsa5{word-spacing:-12.384000px;}
.wsa6{word-spacing:-12.336000px;}
.wse5{word-spacing:-12.240000px;}
.wsc9{word-spacing:-12.192000px;}
.ws4e{word-spacing:-12.000000px;}
.wsca{word-spacing:-11.904000px;}
.ws0{word-spacing:-10.210662px;}
.wsa7{word-spacing:-9.360000px;}
.ws35{word-spacing:-9.199740px;}
.ws32{word-spacing:-8.745000px;}
.ws9a{word-spacing:-5.760000px;}
.ws34{word-spacing:-5.072100px;}
.ws3f{word-spacing:-4.980000px;}
.ws3e{word-spacing:-4.740000px;}
.wscc{word-spacing:-4.320000px;}
.wsef{word-spacing:-3.936000px;}
.wsd7{word-spacing:-3.456000px;}
.wsdc{word-spacing:-3.408000px;}
.ws8a{word-spacing:-3.180000px;}
.ws9f{word-spacing:-2.976000px;}
.wsdb{word-spacing:-2.928000px;}
.ws6{word-spacing:-2.886000px;}
.wsae{word-spacing:-2.832000px;}
.ws9b{word-spacing:-2.784000px;}
.wsb6{word-spacing:-2.736000px;}
.ws98{word-spacing:-2.700000px;}
.ws86{word-spacing:-2.640000px;}
.wsed{word-spacing:-2.352000px;}
.ws94{word-spacing:-2.340000px;}
.ws25{word-spacing:-2.220000px;}
.ws73{word-spacing:-2.160000px;}
.wsb9{word-spacing:-2.112000px;}
.wse8{word-spacing:-2.064000px;}
.wse4{word-spacing:-1.920000px;}
.wsb4{word-spacing:-1.632000px;}
.wsd6{word-spacing:-1.584000px;}
.ws9e{word-spacing:-1.536000px;}
.ws1a{word-spacing:-1.500000px;}
.wsa1{word-spacing:-1.488000px;}
.ws9d{word-spacing:-1.440000px;}
.wsbc{word-spacing:-1.392000px;}
.wsd8{word-spacing:-1.296000px;}
.ws40{word-spacing:-1.200000px;}
.wsbf{word-spacing:-1.152000px;}
.wsee{word-spacing:-1.056000px;}
.wse2{word-spacing:-1.008000px;}
.ws82{word-spacing:-0.960000px;}
.wsac{word-spacing:-0.912000px;}
.ws71{word-spacing:-0.864000px;}
.wsd5{word-spacing:-0.768000px;}
.ws99{word-spacing:-0.720000px;}
.ws80{word-spacing:-0.660000px;}
.wsd9{word-spacing:-0.624000px;}
.ws60{word-spacing:-0.480000px;}
.wsec{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.420000px;}
.wsaf{word-spacing:-0.384000px;}
.ws76{word-spacing:-0.360000px;}
.wsd0{word-spacing:-0.336000px;}
.wse3{word-spacing:-0.288000px;}
.ws29{word-spacing:-0.240000px;}
.wsb3{word-spacing:-0.192000px;}
.ws1b{word-spacing:-0.180000px;}
.wse9{word-spacing:-0.144000px;}
.ws48{word-spacing:-0.120000px;}
.ws31{word-spacing:-0.096000px;}
.ws61{word-spacing:-0.060000px;}
.wsdf{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wse0{word-spacing:0.048000px;}
.ws3c{word-spacing:0.060000px;}
.wsd3{word-spacing:0.096000px;}
.ws7{word-spacing:0.120000px;}
.wsb7{word-spacing:0.144000px;}
.ws7f{word-spacing:0.240000px;}
.ws93{word-spacing:0.360000px;}
.wsda{word-spacing:0.384000px;}
.ws15{word-spacing:0.420000px;}
.wsba{word-spacing:0.432000px;}
.ws6d{word-spacing:0.480000px;}
.ws45{word-spacing:0.540000px;}
.ws19{word-spacing:0.600000px;}
.ws89{word-spacing:0.660000px;}
.wsbb{word-spacing:0.672000px;}
.ws1f{word-spacing:0.720000px;}
.wsc2{word-spacing:0.816000px;}
.ws2a{word-spacing:0.840000px;}
.ws8b{word-spacing:0.900000px;}
.wsd1{word-spacing:0.912000px;}
.ws79{word-spacing:0.960000px;}
.ws8d{word-spacing:1.020000px;}
.wseb{word-spacing:1.056000px;}
.ws22{word-spacing:1.140000px;}
.wsea{word-spacing:1.152000px;}
.ws8c{word-spacing:1.260000px;}
.ws9c{word-spacing:1.296000px;}
.wsad{word-spacing:1.344000px;}
.ws20{word-spacing:1.380000px;}
.wsc1{word-spacing:1.392000px;}
.ws27{word-spacing:1.440000px;}
.wsb5{word-spacing:1.536000px;}
.ws16{word-spacing:1.560000px;}
.ws11{word-spacing:1.620000px;}
.ws37{word-spacing:1.680000px;}
.wsc0{word-spacing:1.728000px;}
.ws2c{word-spacing:1.740000px;}
.wscf{word-spacing:1.776000px;}
.ws46{word-spacing:1.800000px;}
.ws85{word-spacing:1.824000px;}
.ws2e{word-spacing:1.860000px;}
.ws59{word-spacing:1.872000px;}
.ws1c{word-spacing:1.920000px;}
.wsbd{word-spacing:1.968000px;}
.ws81{word-spacing:2.160000px;}
.ws42{word-spacing:2.220000px;}
.ws38{word-spacing:2.280000px;}
.wsb1{word-spacing:2.304000px;}
.ws8e{word-spacing:2.340000px;}
.ws4d{word-spacing:2.400000px;}
.ws26{word-spacing:2.460000px;}
.wsce{word-spacing:2.496000px;}
.ws6f{word-spacing:2.520000px;}
.ws2d{word-spacing:2.580000px;}
.ws6a{word-spacing:2.592000px;}
.ws17{word-spacing:2.700000px;}
.ws43{word-spacing:2.760000px;}
.wscd{word-spacing:2.784000px;}
.ws75{word-spacing:2.820000px;}
.wsb0{word-spacing:2.832000px;}
.ws4b{word-spacing:2.880000px;}
.ws68{word-spacing:2.940000px;}
.wsb2{word-spacing:2.976000px;}
.ws2f{word-spacing:3.000000px;}
.ws78{word-spacing:3.060000px;}
.ws28{word-spacing:3.120000px;}
.ws67{word-spacing:3.180000px;}
.ws18{word-spacing:3.240000px;}
.wse1{word-spacing:3.264000px;}
.ws95{word-spacing:3.300000px;}
.wsdd{word-spacing:3.312000px;}
.ws1e{word-spacing:3.420000px;}
.ws3a{word-spacing:3.480000px;}
.wsde{word-spacing:3.504000px;}
.ws6e{word-spacing:3.600000px;}
.wsd4{word-spacing:3.648000px;}
.ws44{word-spacing:3.660000px;}
.ws14{word-spacing:3.720000px;}
.wsa0{word-spacing:3.744000px;}
.ws21{word-spacing:3.780000px;}
.wsd2{word-spacing:3.792000px;}
.ws66{word-spacing:3.900000px;}
.ws30{word-spacing:3.936000px;}
.ws4a{word-spacing:3.960000px;}
.ws83{word-spacing:3.984000px;}
.ws49{word-spacing:4.020000px;}
.ws6b{word-spacing:4.032000px;}
.ws63{word-spacing:4.080000px;}
.ws2b{word-spacing:4.140000px;}
.ws84{word-spacing:4.176000px;}
.ws64{word-spacing:4.200000px;}
.ws69{word-spacing:4.224000px;}
.ws74{word-spacing:4.260000px;}
.ws62{word-spacing:4.320000px;}
.ws70{word-spacing:4.380000px;}
.ws3b{word-spacing:4.440000px;}
.ws57{word-spacing:4.500000px;}
.ws41{word-spacing:4.560000px;}
.ws4c{word-spacing:4.620000px;}
.ws65{word-spacing:4.680000px;}
.ws3d{word-spacing:4.740000px;}
.ws58{word-spacing:4.800000px;}
.ws39{word-spacing:4.860000px;}
.ws13{word-spacing:4.920000px;}
.ws12{word-spacing:4.980000px;}
.wsb8{word-spacing:5.136000px;}
.wsbe{word-spacing:5.232000px;}
.ws96{word-spacing:5.460000px;}
.ws97{word-spacing:5.520000px;}
.ws7a{word-spacing:5.580000px;}
.ws1d{word-spacing:6.960000px;}
.ws5d{word-spacing:76.567800px;}
.ws5f{word-spacing:96.096000px;}
.ws5b{word-spacing:108.096000px;}
.ws6c{word-spacing:148.608000px;}
.ws52{word-spacing:170.160000px;}
.ws51{word-spacing:178.128000px;}
.ws53{word-spacing:186.144000px;}
.ws5e{word-spacing:192.096000px;}
.ws5c{word-spacing:201.648000px;}
.ws50{word-spacing:207.456000px;}
.ws5a{word-spacing:225.648000px;}
.ws7e{word-spacing:331.248000px;}
.ws55{word-spacing:418.416000px;}
.ws54{word-spacing:431.760000px;}
.ws56{word-spacing:516.288000px;}
.ws4f{word-spacing:517.584000px;}
._a{margin-left:-2898.096000px;}
._c{margin-left:-2874.288000px;}
._d{margin-left:-9.240000px;}
._6{margin-left:-7.380000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-4.305000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.080000px;}
._4{width:1.056000px;}
._9{width:2.730000px;}
._b{width:3.810000px;}
._8{width:5.160000px;}
._7{width:6.240000px;}
._3c{width:7.380000px;}
._4e{width:10.278000px;}
._2{width:59.563014px;}
._26{width:76.560000px;}
._28{width:77.958000px;}
._2e{width:85.920000px;}
._22{width:88.560000px;}
._23{width:100.560000px;}
._1e{width:101.760000px;}
._2a{width:111.606000px;}
._27{width:114.294000px;}
._1f{width:116.496000px;}
._4c{width:120.336000px;}
._e{width:122.640000px;}
._25{width:124.950000px;}
._29{width:132.966000px;}
._4a{width:144.288000px;}
._21{width:151.638000px;}
._47{width:156.288000px;}
._40{width:157.728000px;}
._2c{width:159.456000px;}
._30{width:160.608000px;}
._41{width:167.898000px;}
._44{width:169.728000px;}
._20{width:178.752000px;}
._34{width:180.768000px;}
._11{width:182.160000px;}
._1d{width:183.360000px;}
._13{width:190.128000px;}
._2f{width:192.054000px;}
._31{width:193.152000px;}
._3d{width:194.832000px;}
._10{width:198.144000px;}
._4b{width:200.688000px;}
._2d{width:203.040000px;}
._37{width:204.768000px;}
._49{width:209.568000px;}
._24{width:213.648000px;}
._3e{width:218.448000px;}
._43{width:222.912000px;}
._46{width:226.464000px;}
._42{width:228.240000px;}
._45{width:232.272000px;}
._3f{width:233.568000px;}
._3b{width:242.550000px;}
._32{width:253.632000px;}
._38{width:255.030000px;}
._3a{width:258.048000px;}
._2b{width:260.736000px;}
._36{width:265.686000px;}
._39{width:273.702000px;}
._18{width:287.808000px;}
._1a{width:293.136000px;}
._48{width:311.760000px;}
._35{width:342.576000px;}
._33{width:347.184000px;}
._15{width:433.104000px;}
._17{width:438.432000px;}
._14{width:443.760000px;}
._16{width:451.776000px;}
._f{width:454.416000px;}
._4d{width:466.944000px;}
._12{width:470.448000px;}
._19{width:504.288000px;}
._1b{width:516.288000px;}
._1c{width:528.288000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:20.288400px;}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2e{bottom:47.777250px;}
.y2ad{bottom:80.263500px;}
.y18d{bottom:83.236050px;}
.y243{bottom:83.635350px;}
.y137{bottom:83.650350px;}
.y75{bottom:83.770350px;}
.y63{bottom:83.772600px;}
.ybe{bottom:83.839200px;}
.yd2{bottom:83.912100px;}
.yb9{bottom:83.920350px;}
.y17e{bottom:84.273300px;}
.y14b{bottom:84.828000px;}
.y1de{bottom:85.446450px;}
.y2b{bottom:88.333800px;}
.y1b2{bottom:91.615350px;}
.y103{bottom:91.692000px;}
.y1f5{bottom:92.725800px;}
.y26b{bottom:95.121900px;}
.y2ac{bottom:95.263500px;}
.y18c{bottom:98.980050px;}
.ybd{bottom:99.583200px;}
.y17d{bottom:100.773300px;}
.y14a{bottom:101.328000px;}
.y242{bottom:101.635350px;}
.y136{bottom:101.650350px;}
.y74{bottom:101.770350px;}
.y62{bottom:101.772600px;}
.yd1{bottom:101.912100px;}
.yb8{bottom:101.920350px;}
.y1dd{bottom:101.946450px;}
.y2a{bottom:103.330050px;}
.y1b1{bottom:108.115350px;}
.y1f4{bottom:108.973800px;}
.y102{bottom:109.692000px;}
.y26a{bottom:110.121900px;}
.y2ab{bottom:110.263500px;}
.y18b{bottom:114.724050px;}
.ybc{bottom:115.327200px;}
.y17c{bottom:117.273300px;}
.y29{bottom:118.330050px;}
.y1dc{bottom:118.446450px;}
.y241{bottom:119.635350px;}
.y135{bottom:119.650350px;}
.y73{bottom:119.770350px;}
.y61{bottom:119.772600px;}
.yd0{bottom:119.912100px;}
.yb7{bottom:119.920350px;}
.y269{bottom:125.121900px;}
.y1f3{bottom:125.221800px;}
.y2aa{bottom:125.263500px;}
.y149{bottom:126.840000px;}
.y101{bottom:127.692000px;}
.ybb{bottom:131.071200px;}
.y1b0{bottom:133.627350px;}
.y240{bottom:137.635350px;}
.y134{bottom:137.650350px;}
.y72{bottom:137.770350px;}
.y60{bottom:137.772600px;}
.y21e{bottom:137.912100px;}
.yb6{bottom:137.920350px;}
.y268{bottom:140.121900px;}
.y2a9{bottom:140.263500px;}
.y17b{bottom:142.785300px;}
.y148{bottom:143.088000px;}
.y1db{bottom:143.958450px;}
.y100{bottom:145.692000px;}
.yba{bottom:146.815200px;}
.y1af{bottom:149.875350px;}
.y1f2{bottom:154.225800px;}
.y267{bottom:155.121900px;}
.y2a8{bottom:155.263500px;}
.y23f{bottom:155.635350px;}
.y133{bottom:155.650350px;}
.y71{bottom:155.770350px;}
.y5f{bottom:155.772600px;}
.y21d{bottom:155.912100px;}
.yb5{bottom:155.920350px;}
.y17a{bottom:159.033300px;}
.y1da{bottom:160.206450px;}
.yff{bottom:163.692000px;}
.y1ae{bottom:166.123350px;}
.y1f0{bottom:168.721800px;}
.y266{bottom:170.121900px;}
.y2a7{bottom:170.263500px;}
.y147{bottom:172.092000px;}
.y23e{bottom:173.635350px;}
.y132{bottom:173.650350px;}
.y70{bottom:173.770350px;}
.y5e{bottom:173.772600px;}
.y21c{bottom:173.912100px;}
.yb4{bottom:173.920350px;}
.y179{bottom:175.281300px;}
.y1d9{bottom:176.454450px;}
.yfe{bottom:181.692000px;}
.y1ad{bottom:182.371350px;}
.y1f1{bottom:183.229800px;}
.y265{bottom:185.121900px;}
.y2a6{bottom:185.263500px;}
.y146{bottom:188.340000px;}
.y178{bottom:191.529300px;}
.y23d{bottom:191.635350px;}
.y131{bottom:191.650350px;}
.y6f{bottom:191.770350px;}
.y5d{bottom:191.772600px;}
.yb3{bottom:191.920350px;}
.y21b{bottom:191.935350px;}
.y1d8{bottom:192.702450px;}
.yfd{bottom:199.692000px;}
.y264{bottom:200.121900px;}
.y2a5{bottom:200.263500px;}
.y145{bottom:204.588000px;}
.y177{bottom:207.777300px;}
.y1d7{bottom:208.950450px;}
.y23c{bottom:209.635350px;}
.y130{bottom:209.650350px;}
.y6e{bottom:209.770350px;}
.y5c{bottom:209.772600px;}
.yb2{bottom:209.920350px;}
.y21a{bottom:209.935350px;}
.y1ac{bottom:211.375350px;}
.y263{bottom:215.121900px;}
.y2a4{bottom:215.263500px;}
.y1ef{bottom:215.616900px;}
.y28{bottom:216.064200px;}
.yfc{bottom:217.692000px;}
.y144{bottom:220.836000px;}
.y176{bottom:224.025300px;}
.y1d6{bottom:225.198450px;}
.y1ab{bottom:227.623350px;}
.y23b{bottom:227.635350px;}
.y12f{bottom:227.650350px;}
.y6d{bottom:227.770350px;}
.y5b{bottom:227.772600px;}
.yb1{bottom:227.920350px;}
.y219{bottom:227.935350px;}
.y262{bottom:230.121900px;}
.y2a3{bottom:230.263500px;}
.y1ee{bottom:235.116900px;}
.yfb{bottom:235.692000px;}
.y143{bottom:237.084000px;}
.y175{bottom:240.273300px;}
.y1d5{bottom:241.446450px;}
.y27{bottom:243.409200px;}
.y1aa{bottom:243.871350px;}
.y261{bottom:245.121900px;}
.y2a2{bottom:245.263500px;}
.y23a{bottom:245.635350px;}
.y12e{bottom:245.650350px;}
.y6c{bottom:245.770350px;}
.y5a{bottom:245.772600px;}
.yb0{bottom:245.920350px;}
.y218{bottom:245.935350px;}
.y142{bottom:253.332000px;}
.yfa{bottom:253.692000px;}
.y1ed{bottom:254.616900px;}
.y174{bottom:256.521300px;}
.y1d4{bottom:257.694450px;}
.y1a9{bottom:260.119350px;}
.y260{bottom:260.121900px;}
.y2a1{bottom:260.263500px;}
.y26{bottom:261.409200px;}
.y239{bottom:263.635350px;}
.y12d{bottom:263.650350px;}
.y6b{bottom:263.770350px;}
.y59{bottom:263.772600px;}
.yaf{bottom:263.920350px;}
.y217{bottom:263.935350px;}
.y141{bottom:269.580000px;}
.yf9{bottom:271.692000px;}
.y173{bottom:272.769300px;}
.y1ec{bottom:274.116900px;}
.y25f{bottom:275.121900px;}
.y2a0{bottom:275.263500px;}
.y25{bottom:279.409200px;}
.y238{bottom:281.635350px;}
.y12c{bottom:281.650350px;}
.y6a{bottom:281.770350px;}
.y58{bottom:281.772600px;}
.yae{bottom:281.920350px;}
.y216{bottom:281.935350px;}
.y140{bottom:285.828000px;}
.y1d3{bottom:286.698450px;}
.y172{bottom:289.017300px;}
.y1a8{bottom:289.123350px;}
.yf8{bottom:289.692000px;}
.y25e{bottom:290.121900px;}
.y29f{bottom:290.263500px;}
.y24{bottom:297.409200px;}
.y237{bottom:299.635350px;}
.y12b{bottom:299.650350px;}
.y69{bottom:299.770350px;}
.y57{bottom:299.772600px;}
.yad{bottom:299.920350px;}
.y215{bottom:299.935350px;}
.y1d2{bottom:302.946450px;}
.y25d{bottom:305.121900px;}
.y29e{bottom:305.263500px;}
.y171{bottom:305.265300px;}
.y1a7{bottom:305.371350px;}
.yf7{bottom:307.692000px;}
.y13f{bottom:314.832000px;}
.y23{bottom:315.409200px;}
.y236{bottom:317.230350px;}
.y68{bottom:317.770350px;}
.y56{bottom:317.772600px;}
.yac{bottom:317.920350px;}
.y214{bottom:317.935350px;}
.y1d1{bottom:319.194450px;}
.y1eb{bottom:319.822950px;}
.y25c{bottom:320.121900px;}
.y29d{bottom:320.263500px;}
.y170{bottom:321.513300px;}
.y1a6{bottom:321.619350px;}
.yf6{bottom:325.692000px;}
.y13d{bottom:329.328000px;}
.y22{bottom:333.409200px;}
.y25b{bottom:335.121900px;}
.y12a{bottom:335.245350px;}
.y29c{bottom:335.263500px;}
.y1d0{bottom:335.442450px;}
.y1ea{bottom:335.566950px;}
.y67{bottom:335.770350px;}
.y55{bottom:335.772600px;}
.yab{bottom:335.920350px;}
.y213{bottom:335.935350px;}
.y16f{bottom:337.761300px;}
.y1a5{bottom:337.867350px;}
.yf5{bottom:343.692000px;}
.y13e{bottom:343.836000px;}
.y25a{bottom:350.121900px;}
.y29b{bottom:350.263500px;}
.y1e9{bottom:351.310950px;}
.y21{bottom:351.409200px;}
.y1cf{bottom:351.690450px;}
.y235{bottom:353.635350px;}
.y66{bottom:353.770350px;}
.y54{bottom:353.772600px;}
.yaa{bottom:353.920350px;}
.y212{bottom:353.935350px;}
.y16e{bottom:354.009300px;}
.yf4{bottom:361.692000px;}
.y259{bottom:365.121900px;}
.y29a{bottom:365.263500px;}
.y1a4{bottom:366.871350px;}
.y1e8{bottom:367.054950px;}
.y1ce{bottom:367.938450px;}
.y20{bottom:369.409200px;}
.y16d{bottom:370.257300px;}
.y234{bottom:371.635350px;}
.y98{bottom:371.770350px;}
.y53{bottom:371.772600px;}
.ya9{bottom:371.920350px;}
.y211{bottom:371.935350px;}
.y13c{bottom:376.223100px;}
.yf3{bottom:379.692000px;}
.y258{bottom:380.121900px;}
.y299{bottom:380.263500px;}
.y1e7{bottom:382.798950px;}
.y1a3{bottom:383.119350px;}
.y1cd{bottom:384.186450px;}
.y16c{bottom:386.608200px;}
.y1f{bottom:387.409200px;}
.y233{bottom:389.635350px;}
.y1e5{bottom:389.770350px;}
.y52{bottom:389.772600px;}
.y129{bottom:389.785350px;}
.ya8{bottom:389.920350px;}
.y210{bottom:389.935350px;}
.y257{bottom:395.121900px;}
.y298{bottom:395.263500px;}
.y13b{bottom:395.723100px;}
.yf2{bottom:397.692000px;}
.y1e6{bottom:398.542950px;}
.y1a2{bottom:399.418500px;}
.y1cc{bottom:400.434450px;}
.y16b{bottom:402.856200px;}
.y1e{bottom:405.409200px;}
.y97{bottom:407.365350px;}
.y232{bottom:407.635350px;}
.y1e4{bottom:407.770350px;}
.y51{bottom:407.772600px;}
.y128{bottom:407.785350px;}
.ya7{bottom:407.920350px;}
.y20f{bottom:407.935350px;}
.y256{bottom:410.121900px;}
.y297{bottom:410.263500px;}
.y1a1{bottom:415.666500px;}
.yf1{bottom:415.692000px;}
.y16a{bottom:419.104200px;}
.y18f{bottom:422.596050px;}
.y1d{bottom:423.409200px;}
.y255{bottom:425.121900px;}
.y296{bottom:425.263500px;}
.y231{bottom:425.635350px;}
.y1e3{bottom:425.770350px;}
.y50{bottom:425.772600px;}
.y127{bottom:425.785350px;}
.ya6{bottom:425.920350px;}
.y20e{bottom:425.935350px;}
.y1cb{bottom:429.438450px;}
.yf0{bottom:433.692000px;}
.y169{bottom:435.352200px;}
.y18e{bottom:438.340050px;}
.y254{bottom:440.121900px;}
.y295{bottom:440.263500px;}
.y1c{bottom:441.409200px;}
.y13a{bottom:442.679700px;}
.y96{bottom:443.230350px;}
.y230{bottom:443.635350px;}
.y1e2{bottom:443.770350px;}
.y4f{bottom:443.772600px;}
.y126{bottom:443.785350px;}
.ya5{bottom:443.920350px;}
.y20d{bottom:443.935350px;}
.y1a0{bottom:444.670500px;}
.y1ca{bottom:445.686450px;}
.y168{bottom:451.600200px;}
.yef{bottom:451.692000px;}
.y253{bottom:455.121900px;}
.y294{bottom:455.263500px;}
.y139{bottom:458.423700px;}
.y1b{bottom:459.409200px;}
.y19f{bottom:460.918500px;}
.y22f{bottom:461.635350px;}
.y1e1{bottom:461.770350px;}
.y4e{bottom:461.772600px;}
.y125{bottom:461.785350px;}
.ya4{bottom:461.920350px;}
.y1c9{bottom:461.934450px;}
.y20c{bottom:461.935350px;}
.y167{bottom:467.848200px;}
.yee{bottom:469.692000px;}
.y252{bottom:470.121900px;}
.y293{bottom:470.263500px;}
.y19e{bottom:477.166500px;}
.y1a{bottom:477.409200px;}
.y1c8{bottom:478.182450px;}
.y22e{bottom:479.635350px;}
.y1e0{bottom:479.770350px;}
.y4d{bottom:479.772600px;}
.y124{bottom:479.785350px;}
.ya3{bottom:479.920350px;}
.y20b{bottom:479.935350px;}
.y166{bottom:484.096200px;}
.y251{bottom:485.121900px;}
.y292{bottom:485.263500px;}
.yed{bottom:487.692000px;}
.y19d{bottom:493.414500px;}
.y1c7{bottom:494.430450px;}
.y19{bottom:495.409200px;}
.y22d{bottom:497.635350px;}
.y95{bottom:497.770350px;}
.y4c{bottom:497.772600px;}
.y123{bottom:497.785350px;}
.ya2{bottom:497.920350px;}
.y20a{bottom:497.935350px;}
.y250{bottom:500.121900px;}
.y291{bottom:500.263500px;}
.y165{bottom:500.344200px;}
.yec{bottom:505.692000px;}
.y1c6{bottom:510.678450px;}
.y18{bottom:513.409200px;}
.y24f{bottom:515.121900px;}
.y290{bottom:515.263500px;}
.y22c{bottom:515.635350px;}
.y94{bottom:515.770350px;}
.y4b{bottom:515.772600px;}
.y122{bottom:515.785350px;}
.ya1{bottom:515.920350px;}
.y209{bottom:515.935350px;}
.y164{bottom:516.592200px;}
.y19c{bottom:522.418500px;}
.yeb{bottom:523.692000px;}
.y1c5{bottom:526.926450px;}
.y24e{bottom:530.121900px;}
.y28f{bottom:530.263500px;}
.y17{bottom:531.409200px;}
.y163{bottom:532.840200px;}
.y22b{bottom:533.635350px;}
.y93{bottom:533.770350px;}
.y4a{bottom:533.772600px;}
.y121{bottom:533.785350px;}
.ya0{bottom:533.920350px;}
.y208{bottom:533.935350px;}
.y19b{bottom:538.666500px;}
.yea{bottom:541.692000px;}
.y1c4{bottom:543.174450px;}
.y24d{bottom:545.121900px;}
.y28e{bottom:545.263500px;}
.y162{bottom:549.088200px;}
.y16{bottom:549.409200px;}
.y22a{bottom:551.635350px;}
.y92{bottom:551.770350px;}
.y49{bottom:551.772600px;}
.y120{bottom:551.785350px;}
.y9f{bottom:551.920350px;}
.y207{bottom:551.935350px;}
.y19a{bottom:554.914500px;}
.y24c{bottom:560.121900px;}
.y28d{bottom:560.263500px;}
.y161{bottom:565.336200px;}
.y15{bottom:567.409200px;}
.y229{bottom:569.635350px;}
.y91{bottom:569.770350px;}
.y48{bottom:569.772600px;}
.y11f{bottom:569.785350px;}
.y9e{bottom:569.920350px;}
.y206{bottom:569.935350px;}
.y199{bottom:571.162500px;}
.y1c3{bottom:572.178450px;}
.y24b{bottom:575.121900px;}
.y28c{bottom:575.263500px;}
.ye9{bottom:577.287000px;}
.y160{bottom:581.584200px;}
.y14{bottom:585.409200px;}
.y228{bottom:587.635350px;}
.y90{bottom:587.770350px;}
.y47{bottom:587.772600px;}
.y11e{bottom:587.785350px;}
.y9d{bottom:587.920350px;}
.y205{bottom:587.935350px;}
.y1c2{bottom:588.426450px;}
.y24a{bottom:590.121900px;}
.y28b{bottom:590.263500px;}
.y15f{bottom:597.832200px;}
.y198{bottom:600.166500px;}
.y13{bottom:603.409200px;}
.y1c1{bottom:604.674450px;}
.y28a{bottom:605.263500px;}
.y227{bottom:605.635350px;}
.y8f{bottom:605.770350px;}
.y46{bottom:605.772600px;}
.y11d{bottom:605.785350px;}
.y9c{bottom:605.920350px;}
.y204{bottom:605.935350px;}
.ye8{bottom:613.542000px;}
.y15e{bottom:614.080200px;}
.y197{bottom:616.414500px;}
.y289{bottom:620.263500px;}
.y1c0{bottom:620.922450px;}
.y12{bottom:621.409200px;}
.y249{bottom:623.230350px;}
.y226{bottom:623.635350px;}
.y8e{bottom:623.770350px;}
.y45{bottom:623.772600px;}
.y11c{bottom:623.785350px;}
.y9b{bottom:623.920350px;}
.y203{bottom:623.935350px;}
.y15d{bottom:630.328200px;}
.ye7{bottom:631.537050px;}
.y196{bottom:632.662500px;}
.y288{bottom:635.263500px;}
.y1bf{bottom:637.170450px;}
.y11{bottom:639.409200px;}
.y225{bottom:641.635350px;}
.y8d{bottom:641.770350px;}
.y44{bottom:641.772600px;}
.y11b{bottom:641.785350px;}
.y9a{bottom:641.920350px;}
.y202{bottom:641.935350px;}
.y15c{bottom:646.576200px;}
.y195{bottom:648.910500px;}
.y287{bottom:650.263500px;}
.ye6{bottom:652.285200px;}
.y1be{bottom:653.418450px;}
.y224{bottom:659.635350px;}
.y8c{bottom:659.770350px;}
.y43{bottom:659.772600px;}
.y11a{bottom:659.785350px;}
.ycf{bottom:659.920350px;}
.y201{bottom:659.935350px;}
.y15b{bottom:662.824200px;}
.ye5{bottom:663.737100px;}
.y286{bottom:665.263500px;}
.y1bd{bottom:669.666450px;}
.y99{bottom:677.515350px;}
.y223{bottom:677.635350px;}
.y8b{bottom:677.770350px;}
.y42{bottom:677.772600px;}
.y119{bottom:677.785350px;}
.yce{bottom:677.920350px;}
.y200{bottom:677.935350px;}
.y15a{bottom:679.072200px;}
.y285{bottom:680.263500px;}
.y194{bottom:680.422500px;}
.y10{bottom:684.567300px;}
.y1bc{bottom:685.914450px;}
.y284{bottom:695.263500px;}
.y159{bottom:695.320200px;}
.y248{bottom:695.365350px;}
.y222{bottom:695.635350px;}
.y8a{bottom:695.770350px;}
.y41{bottom:695.772600px;}
.y118{bottom:695.785350px;}
.ycd{bottom:695.920350px;}
.ye4{bottom:695.927100px;}
.y1ff{bottom:695.935350px;}
.yf{bottom:697.018050px;}
.y283{bottom:710.263500px;}
.y158{bottom:711.568200px;}
.y221{bottom:713.635350px;}
.y89{bottom:713.770350px;}
.y40{bottom:713.772600px;}
.y117{bottom:713.785350px;}
.ycc{bottom:713.920350px;}
.ye3{bottom:713.927100px;}
.y1fe{bottom:713.935350px;}
.y193{bottom:715.315350px;}
.y1bb{bottom:717.426450px;}
.y282{bottom:725.263500px;}
.y157{bottom:727.816200px;}
.ye{bottom:728.733600px;}
.y247{bottom:731.365350px;}
.y220{bottom:731.635350px;}
.y88{bottom:731.770350px;}
.y3f{bottom:731.772600px;}
.y116{bottom:731.785350px;}
.ycb{bottom:731.920350px;}
.ye2{bottom:731.927100px;}
.y1fd{bottom:731.935350px;}
.y192{bottom:734.815350px;}
.y281{bottom:740.263500px;}
.y156{bottom:744.064200px;}
.yd{bottom:747.658800px;}
.y87{bottom:749.770350px;}
.y3e{bottom:749.772600px;}
.y115{bottom:749.785350px;}
.yca{bottom:749.920350px;}
.ye1{bottom:749.927100px;}
.y1fc{bottom:749.935350px;}
.y1ba{bottom:752.335350px;}
.y280{bottom:755.263500px;}
.yc{bottom:755.733600px;}
.y155{bottom:760.312200px;}
.y21f{bottom:767.230350px;}
.y86{bottom:767.770350px;}
.y3d{bottom:767.772600px;}
.y114{bottom:767.785350px;}
.yc9{bottom:767.920350px;}
.ye0{bottom:767.927100px;}
.y1fb{bottom:767.935350px;}
.yb{bottom:769.233600px;}
.y27f{bottom:770.263500px;}
.y1b9{bottom:771.835350px;}
.y154{bottom:776.560200px;}
.ya{bottom:782.733600px;}
.y27e{bottom:785.263500px;}
.y14d{bottom:785.515350px;}
.y85{bottom:785.770350px;}
.y3c{bottom:785.772600px;}
.y113{bottom:785.785350px;}
.yc8{bottom:785.920350px;}
.ydf{bottom:785.927100px;}
.y1fa{bottom:785.935350px;}
.y1b8{bottom:791.335350px;}
.y153{bottom:792.808200px;}
.y27d{bottom:800.263500px;}
.y9{bottom:801.658950px;}
.y246{bottom:803.365350px;}
.y84{bottom:803.770350px;}
.y3b{bottom:803.772600px;}
.y112{bottom:803.785350px;}
.yc7{bottom:803.920350px;}
.yde{bottom:803.927100px;}
.y18a{bottom:803.935350px;}
.y152{bottom:809.056200px;}
.y1b7{bottom:810.835350px;}
.y27c{bottom:815.263500px;}
.y1f7{bottom:821.515350px;}
.y83{bottom:821.770350px;}
.y3a{bottom:821.772600px;}
.y111{bottom:821.785350px;}
.yc6{bottom:821.920350px;}
.ydd{bottom:821.927100px;}
.y189{bottom:821.935350px;}
.y27b{bottom:830.263500px;}
.y8{bottom:830.386200px;}
.y82{bottom:839.770350px;}
.y39{bottom:839.772600px;}
.y110{bottom:839.785350px;}
.yc5{bottom:839.920350px;}
.ydc{bottom:839.927100px;}
.y188{bottom:839.935350px;}
.y151{bottom:840.568200px;}
.y27a{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y245{bottom:857.365350px;}
.y180{bottom:857.515350px;}
.y81{bottom:857.770350px;}
.y38{bottom:857.772600px;}
.y10f{bottom:857.785350px;}
.yc4{bottom:857.920350px;}
.y187{bottom:857.935350px;}
.y279{bottom:860.263500px;}
.y278{bottom:875.263500px;}
.y150{bottom:875.470350px;}
.ydb{bottom:875.522100px;}
.y80{bottom:875.770350px;}
.y37{bottom:875.772600px;}
.y10e{bottom:875.785350px;}
.yc3{bottom:875.920350px;}
.y186{bottom:875.935350px;}
.y277{bottom:890.263500px;}
.y7f{bottom:893.770350px;}
.y36{bottom:893.772600px;}
.y10d{bottom:893.785350px;}
.yc2{bottom:893.920350px;}
.y185{bottom:893.935350px;}
.y14f{bottom:894.970350px;}
.y6{bottom:897.543600px;}
.y276{bottom:905.263500px;}
.y7e{bottom:911.770350px;}
.y35{bottom:911.772600px;}
.yda{bottom:911.777100px;}
.y10c{bottom:911.785350px;}
.yc1{bottom:911.920350px;}
.y184{bottom:911.935350px;}
.y14e{bottom:914.470350px;}
.y275{bottom:920.263500px;}
.y138{bottom:929.515350px;}
.y7d{bottom:929.770350px;}
.y34{bottom:929.772600px;}
.yd9{bottom:929.777100px;}
.y10b{bottom:929.785350px;}
.yc0{bottom:929.920350px;}
.y183{bottom:929.935350px;}
.y5{bottom:934.004400px;}
.y274{bottom:935.263500px;}
.y104{bottom:947.515350px;}
.y7c{bottom:947.770350px;}
.y33{bottom:947.772600px;}
.yd8{bottom:947.777100px;}
.y10a{bottom:947.785350px;}
.y1b6{bottom:947.920350px;}
.y182{bottom:947.935350px;}
.y273{bottom:950.263500px;}
.y272{bottom:965.263500px;}
.ybf{bottom:965.515350px;}
.y7b{bottom:965.770350px;}
.y32{bottom:965.772600px;}
.yd7{bottom:965.777100px;}
.y109{bottom:965.785350px;}
.y1b5{bottom:965.920350px;}
.y1f9{bottom:965.935350px;}
.y4{bottom:970.465200px;}
.y271{bottom:980.263500px;}
.y181{bottom:983.530350px;}
.y7a{bottom:983.770350px;}
.y31{bottom:983.772600px;}
.yd6{bottom:983.777100px;}
.y108{bottom:983.785350px;}
.y270{bottom:995.263500px;}
.y244{bottom:1001.365350px;}
.y1b4{bottom:1001.515350px;}
.y1f8{bottom:1001.530350px;}
.y79{bottom:1001.770350px;}
.y30{bottom:1001.772600px;}
.yd5{bottom:1001.777100px;}
.y107{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y26f{bottom:1010.263500px;}
.y78{bottom:1019.770350px;}
.y65{bottom:1019.772600px;}
.yd4{bottom:1019.777100px;}
.y106{bottom:1019.785350px;}
.y26e{bottom:1025.263500px;}
.y191{bottom:1037.365350px;}
.y2f{bottom:1037.367600px;}
.y77{bottom:1037.770350px;}
.y64{bottom:1037.772600px;}
.yd3{bottom:1037.777100px;}
.y105{bottom:1037.785350px;}
.y26d{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y26c{bottom:1132.413900px;}
.y76{bottom:1132.418700px;}
.y2ae{bottom:1132.423500px;}
.y190{bottom:1132.432050px;}
.y1f6{bottom:1132.441800px;}
.y14c{bottom:1132.464000px;}
.y1b3{bottom:1132.471350px;}
.y17f{bottom:1132.473300px;}
.y1df{bottom:1132.530450px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h8{height:32.805176px;}
.h11{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h10{height:41.689453px;}
.h15{height:41.709253px;}
.hc{height:43.681641px;}
.ha{height:43.710938px;}
.hb{height:43.740234px;}
.h12{height:52.517871px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h13{height:81.381853px;}
.h14{height:87.456853px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:76.535400px;}
.x18{left:78.661350px;}
.x5{left:96.094500px;}
.x1{left:97.795200px;}
.x15{left:99.921300px;}
.x26{left:102.047400px;}
.x4{left:106.299300px;}
.x9{left:110.558550px;}
.x28{left:123.307050px;}
.x3{left:125.428050px;}
.xe{left:131.811000px;}
.x1a{left:156.337350px;}
.xf{left:166.011000px;}
.x8{left:190.553550px;}
.x1f{left:191.865300px;}
.x1e{left:193.197300px;}
.x20{left:194.205300px;}
.x1d{left:196.533300px;}
.x23{left:211.405350px;}
.x17{left:232.185300px;}
.x22{left:249.957300px;}
.x19{left:262.753350px;}
.x16{left:270.285300px;}
.x21{left:284.169300px;}
.x6{left:455.041500px;}
.xa{left:457.133550px;}
.x10{left:478.371000px;}
.x27{left:482.615400px;}
.xb{left:491.138550px;}
.x25{left:503.858400px;}
.x11{left:512.391000px;}
.x1b{left:579.425400px;}
.x14{left:591.650400px;}
.x24{left:596.095350px;}
.xd{left:663.492300px;}
.x2{left:693.365400px;}
.x1c{left:721.641450px;}
.xc{left:728.391600px;}
.x13{left:743.841900px;}
.x12{left:749.651400px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v7{vertical-align:-10.379733pt;}
.v5{vertical-align:-5.802667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.440000pt;}
.v6{vertical-align:15.570133pt;}
.v3{vertical-align:25.093333pt;}
.v1{vertical-align:27.005867pt;}
.v4{vertical-align:35.282133pt;}
.ls9a{letter-spacing:-2.346667pt;}
.ls9c{letter-spacing:-0.725333pt;}
.ls4{letter-spacing:-0.693333pt;}
.ls9b{letter-spacing:-0.469333pt;}
.ls57{letter-spacing:-0.426667pt;}
.ls6b{letter-spacing:-0.320000pt;}
.lsaf{letter-spacing:-0.298667pt;}
.ls6{letter-spacing:-0.266667pt;}
.ls98{letter-spacing:-0.256000pt;}
.ls51{letter-spacing:-0.213333pt;}
.ls97{letter-spacing:-0.170667pt;}
.ls31{letter-spacing:-0.160000pt;}
.ls99{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls96{letter-spacing:-0.085333pt;}
.ls3f{letter-spacing:-0.053333pt;}
.lsac{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls49{letter-spacing:0.005333pt;}
.ls40{letter-spacing:0.042667pt;}
.lsd{letter-spacing:0.053333pt;}
.ls41{letter-spacing:0.085333pt;}
.lse{letter-spacing:0.106667pt;}
.ls93{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.160000pt;}
.ls67{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.213333pt;}
.ls60{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.266667pt;}
.ls73{letter-spacing:0.298667pt;}
.ls2e{letter-spacing:0.320000pt;}
.ls88{letter-spacing:0.341333pt;}
.ls26{letter-spacing:0.373333pt;}
.ls8c{letter-spacing:0.384000pt;}
.ls50{letter-spacing:0.404213pt;}
.ls17{letter-spacing:0.426667pt;}
.ls76{letter-spacing:0.469333pt;}
.ls20{letter-spacing:0.480000pt;}
.lsa1{letter-spacing:0.512000pt;}
.ls44{letter-spacing:0.533333pt;}
.ls84{letter-spacing:0.554667pt;}
.ls8{letter-spacing:0.586667pt;}
.lsab{letter-spacing:0.597333pt;}
.ls1c{letter-spacing:0.640000pt;}
.lsa6{letter-spacing:0.682667pt;}
.lsa{letter-spacing:0.693333pt;}
.ls8b{letter-spacing:0.725333pt;}
.lsb{letter-spacing:0.746667pt;}
.ls75{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls74{letter-spacing:0.810667pt;}
.ls35{letter-spacing:0.853333pt;}
.ls7e{letter-spacing:0.896000pt;}
.ls1b{letter-spacing:0.906667pt;}
.ls83{letter-spacing:0.938667pt;}
.ls12{letter-spacing:0.960000pt;}
.ls82{letter-spacing:0.981333pt;}
.ls30{letter-spacing:1.013333pt;}
.ls7f{letter-spacing:1.024000pt;}
.ls3b{letter-spacing:1.066667pt;}
.ls92{letter-spacing:1.109333pt;}
.ls7{letter-spacing:1.120000pt;}
.ls68{letter-spacing:1.152000pt;}
.ls1e{letter-spacing:1.173333pt;}
.ls16{letter-spacing:1.226667pt;}
.ls8f{letter-spacing:1.237333pt;}
.ls29{letter-spacing:1.280000pt;}
.ls79{letter-spacing:1.322667pt;}
.ls1f{letter-spacing:1.333333pt;}
.ls7d{letter-spacing:1.365333pt;}
.ls9{letter-spacing:1.386667pt;}
.lsa3{letter-spacing:1.408000pt;}
.ls32{letter-spacing:1.440000pt;}
.ls7a{letter-spacing:1.450667pt;}
.ls18{letter-spacing:1.493333pt;}
.ls95{letter-spacing:1.536000pt;}
.ls24{letter-spacing:1.546667pt;}
.ls91{letter-spacing:1.578667pt;}
.ls3d{letter-spacing:1.600000pt;}
.ls72{letter-spacing:1.621333pt;}
.ls15{letter-spacing:1.653333pt;}
.ls7b{letter-spacing:1.664000pt;}
.ls2c{letter-spacing:1.706667pt;}
.lsa4{letter-spacing:1.749333pt;}
.ls23{letter-spacing:1.760000pt;}
.ls69{letter-spacing:1.792000pt;}
.lsf{letter-spacing:1.813333pt;}
.lsa9{letter-spacing:1.834667pt;}
.ls33{letter-spacing:1.866667pt;}
.ls90{letter-spacing:1.877333pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls9d{letter-spacing:1.962667pt;}
.ls36{letter-spacing:1.973333pt;}
.ls2f{letter-spacing:2.026667pt;}
.ls8d{letter-spacing:2.048000pt;}
.ls13{letter-spacing:2.080000pt;}
.lsad{letter-spacing:2.090667pt;}
.ls11{letter-spacing:2.133333pt;}
.ls4e{letter-spacing:2.186667pt;}
.ls52{letter-spacing:2.240000pt;}
.lsa2{letter-spacing:2.261333pt;}
.ls42{letter-spacing:2.293333pt;}
.ls8a{letter-spacing:2.304000pt;}
.lsc{letter-spacing:2.346667pt;}
.ls2d{letter-spacing:2.400000pt;}
.ls8e{letter-spacing:2.432000pt;}
.ls3a{letter-spacing:2.453333pt;}
.ls78{letter-spacing:2.474667pt;}
.ls1d{letter-spacing:2.506667pt;}
.ls87{letter-spacing:2.517333pt;}
.ls4d{letter-spacing:2.560000pt;}
.lsa8{letter-spacing:2.602667pt;}
.ls2b{letter-spacing:2.613333pt;}
.ls77{letter-spacing:2.645333pt;}
.ls37{letter-spacing:2.666667pt;}
.ls81{letter-spacing:2.688000pt;}
.ls54{letter-spacing:2.720000pt;}
.ls7c{letter-spacing:2.730667pt;}
.ls5f{letter-spacing:2.773333pt;}
.ls9e{letter-spacing:2.816000pt;}
.ls45{letter-spacing:2.826667pt;}
.ls25{letter-spacing:2.880000pt;}
.lsaa{letter-spacing:2.986667pt;}
.ls38{letter-spacing:3.040000pt;}
.lsa0{letter-spacing:3.072000pt;}
.ls3e{letter-spacing:3.093333pt;}
.lsa5{letter-spacing:3.114667pt;}
.ls39{letter-spacing:3.146667pt;}
.ls19{letter-spacing:3.200000pt;}
.ls62{letter-spacing:3.253333pt;}
.ls80{letter-spacing:3.328000pt;}
.ls3c{letter-spacing:3.360000pt;}
.lsa7{letter-spacing:3.370667pt;}
.ls34{letter-spacing:3.466667pt;}
.ls85{letter-spacing:3.498667pt;}
.ls43{letter-spacing:3.520000pt;}
.ls27{letter-spacing:3.573333pt;}
.ls55{letter-spacing:3.626667pt;}
.ls86{letter-spacing:3.712000pt;}
.ls9f{letter-spacing:3.840000pt;}
.ls89{letter-spacing:3.882667pt;}
.ls6d{letter-spacing:3.893333pt;}
.ls64{letter-spacing:4.000000pt;}
.ls53{letter-spacing:4.053333pt;}
.ls6a{letter-spacing:4.160000pt;}
.ls47{letter-spacing:4.213333pt;}
.ls46{letter-spacing:4.266667pt;}
.ls1a{letter-spacing:4.426667pt;}
.ls4c{letter-spacing:4.586667pt;}
.ls4f{letter-spacing:4.800000pt;}
.ls66{letter-spacing:4.853333pt;}
.ls58{letter-spacing:4.906667pt;}
.ls4b{letter-spacing:5.066667pt;}
.ls6e{letter-spacing:5.120000pt;}
.ls6c{letter-spacing:5.386667pt;}
.ls59{letter-spacing:5.440000pt;}
.ls56{letter-spacing:5.600000pt;}
.lsae{letter-spacing:5.632000pt;}
.ls70{letter-spacing:5.706667pt;}
.ls22{letter-spacing:5.760000pt;}
.ls61{letter-spacing:5.920000pt;}
.ls94{letter-spacing:5.973333pt;}
.ls65{letter-spacing:6.080000pt;}
.ls71{letter-spacing:6.773333pt;}
.ls4a{letter-spacing:8.724320pt;}
.ls6f{letter-spacing:9.493333pt;}
.ls48{letter-spacing:9.920000pt;}
.ls1{letter-spacing:52.918112pt;}
.ls0{letter-spacing:52.918645pt;}
.ls63{letter-spacing:166.101333pt;}
.ls5c{letter-spacing:187.690667pt;}
.ls5d{letter-spacing:188.458667pt;}
.ls5a{letter-spacing:198.357333pt;}
.ls5b{letter-spacing:209.024000pt;}
.ls5e{letter-spacing:246.357333pt;}
.ws77{word-spacing:-19.413333pt;}
.wsa{word-spacing:-17.760000pt;}
.ws88{word-spacing:-16.160000pt;}
.ws7c{word-spacing:-16.053333pt;}
.ws7b{word-spacing:-15.840000pt;}
.ws1{word-spacing:-15.568000pt;}
.ws9{word-spacing:-15.413333pt;}
.ws47{word-spacing:-15.306667pt;}
.ws72{word-spacing:-15.253333pt;}
.wse{word-spacing:-15.146667pt;}
.ws10{word-spacing:-15.093333pt;}
.ws2{word-spacing:-14.826667pt;}
.wsb{word-spacing:-14.720000pt;}
.wsc4{word-spacing:-14.506667pt;}
.ws33{word-spacing:-14.400000pt;}
.ws7d{word-spacing:-14.186667pt;}
.wsc{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.920000pt;}
.wsc8{word-spacing:-13.653333pt;}
.wsd{word-spacing:-13.546667pt;}
.ws87{word-spacing:-13.440000pt;}
.ws36{word-spacing:-13.386667pt;}
.wsf{word-spacing:-13.333333pt;}
.ws91{word-spacing:-13.312000pt;}
.ws23{word-spacing:-13.280000pt;}
.wsa4{word-spacing:-13.184000pt;}
.wsaa{word-spacing:-13.141333pt;}
.ws8f{word-spacing:-13.013333pt;}
.wse6{word-spacing:-12.757333pt;}
.wsa8{word-spacing:-12.544000pt;}
.wscb{word-spacing:-12.458667pt;}
.wsab{word-spacing:-12.202667pt;}
.ws90{word-spacing:-11.946667pt;}
.ws4{word-spacing:-11.861333pt;}
.wsc6{word-spacing:-11.818667pt;}
.wsa9{word-spacing:-11.733333pt;}
.ws92{word-spacing:-11.690667pt;}
.wse7{word-spacing:-11.605333pt;}
.wsa3{word-spacing:-11.520000pt;}
.wsa2{word-spacing:-11.477333pt;}
.wsc5{word-spacing:-11.349333pt;}
.wsc3{word-spacing:-11.306667pt;}
.wsc7{word-spacing:-11.221333pt;}
.ws3{word-spacing:-11.120000pt;}
.wsa5{word-spacing:-11.008000pt;}
.wsa6{word-spacing:-10.965333pt;}
.wse5{word-spacing:-10.880000pt;}
.wsc9{word-spacing:-10.837333pt;}
.ws4e{word-spacing:-10.666667pt;}
.wsca{word-spacing:-10.581333pt;}
.ws0{word-spacing:-9.076144pt;}
.wsa7{word-spacing:-8.320000pt;}
.ws35{word-spacing:-8.177547pt;}
.ws32{word-spacing:-7.773333pt;}
.ws9a{word-spacing:-5.120000pt;}
.ws34{word-spacing:-4.508533pt;}
.ws3f{word-spacing:-4.426667pt;}
.ws3e{word-spacing:-4.213333pt;}
.wscc{word-spacing:-3.840000pt;}
.wsef{word-spacing:-3.498667pt;}
.wsd7{word-spacing:-3.072000pt;}
.wsdc{word-spacing:-3.029333pt;}
.ws8a{word-spacing:-2.826667pt;}
.ws9f{word-spacing:-2.645333pt;}
.wsdb{word-spacing:-2.602667pt;}
.ws6{word-spacing:-2.565333pt;}
.wsae{word-spacing:-2.517333pt;}
.ws9b{word-spacing:-2.474667pt;}
.wsb6{word-spacing:-2.432000pt;}
.ws98{word-spacing:-2.400000pt;}
.ws86{word-spacing:-2.346667pt;}
.wsed{word-spacing:-2.090667pt;}
.ws94{word-spacing:-2.080000pt;}
.ws25{word-spacing:-1.973333pt;}
.ws73{word-spacing:-1.920000pt;}
.wsb9{word-spacing:-1.877333pt;}
.wse8{word-spacing:-1.834667pt;}
.wse4{word-spacing:-1.706667pt;}
.wsb4{word-spacing:-1.450667pt;}
.wsd6{word-spacing:-1.408000pt;}
.ws9e{word-spacing:-1.365333pt;}
.ws1a{word-spacing:-1.333333pt;}
.wsa1{word-spacing:-1.322667pt;}
.ws9d{word-spacing:-1.280000pt;}
.wsbc{word-spacing:-1.237333pt;}
.wsd8{word-spacing:-1.152000pt;}
.ws40{word-spacing:-1.066667pt;}
.wsbf{word-spacing:-1.024000pt;}
.wsee{word-spacing:-0.938667pt;}
.wse2{word-spacing:-0.896000pt;}
.ws82{word-spacing:-0.853333pt;}
.wsac{word-spacing:-0.810667pt;}
.ws71{word-spacing:-0.768000pt;}
.wsd5{word-spacing:-0.682667pt;}
.ws99{word-spacing:-0.640000pt;}
.ws80{word-spacing:-0.586667pt;}
.wsd9{word-spacing:-0.554667pt;}
.ws60{word-spacing:-0.426667pt;}
.wsec{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.373333pt;}
.wsaf{word-spacing:-0.341333pt;}
.ws76{word-spacing:-0.320000pt;}
.wsd0{word-spacing:-0.298667pt;}
.wse3{word-spacing:-0.256000pt;}
.ws29{word-spacing:-0.213333pt;}
.wsb3{word-spacing:-0.170667pt;}
.ws1b{word-spacing:-0.160000pt;}
.wse9{word-spacing:-0.128000pt;}
.ws48{word-spacing:-0.106667pt;}
.ws31{word-spacing:-0.085333pt;}
.ws61{word-spacing:-0.053333pt;}
.wsdf{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wse0{word-spacing:0.042667pt;}
.ws3c{word-spacing:0.053333pt;}
.wsd3{word-spacing:0.085333pt;}
.ws7{word-spacing:0.106667pt;}
.wsb7{word-spacing:0.128000pt;}
.ws7f{word-spacing:0.213333pt;}
.ws93{word-spacing:0.320000pt;}
.wsda{word-spacing:0.341333pt;}
.ws15{word-spacing:0.373333pt;}
.wsba{word-spacing:0.384000pt;}
.ws6d{word-spacing:0.426667pt;}
.ws45{word-spacing:0.480000pt;}
.ws19{word-spacing:0.533333pt;}
.ws89{word-spacing:0.586667pt;}
.wsbb{word-spacing:0.597333pt;}
.ws1f{word-spacing:0.640000pt;}
.wsc2{word-spacing:0.725333pt;}
.ws2a{word-spacing:0.746667pt;}
.ws8b{word-spacing:0.800000pt;}
.wsd1{word-spacing:0.810667pt;}
.ws79{word-spacing:0.853333pt;}
.ws8d{word-spacing:0.906667pt;}
.wseb{word-spacing:0.938667pt;}
.ws22{word-spacing:1.013333pt;}
.wsea{word-spacing:1.024000pt;}
.ws8c{word-spacing:1.120000pt;}
.ws9c{word-spacing:1.152000pt;}
.wsad{word-spacing:1.194667pt;}
.ws20{word-spacing:1.226667pt;}
.wsc1{word-spacing:1.237333pt;}
.ws27{word-spacing:1.280000pt;}
.wsb5{word-spacing:1.365333pt;}
.ws16{word-spacing:1.386667pt;}
.ws11{word-spacing:1.440000pt;}
.ws37{word-spacing:1.493333pt;}
.wsc0{word-spacing:1.536000pt;}
.ws2c{word-spacing:1.546667pt;}
.wscf{word-spacing:1.578667pt;}
.ws46{word-spacing:1.600000pt;}
.ws85{word-spacing:1.621333pt;}
.ws2e{word-spacing:1.653333pt;}
.ws59{word-spacing:1.664000pt;}
.ws1c{word-spacing:1.706667pt;}
.wsbd{word-spacing:1.749333pt;}
.ws81{word-spacing:1.920000pt;}
.ws42{word-spacing:1.973333pt;}
.ws38{word-spacing:2.026667pt;}
.wsb1{word-spacing:2.048000pt;}
.ws8e{word-spacing:2.080000pt;}
.ws4d{word-spacing:2.133333pt;}
.ws26{word-spacing:2.186667pt;}
.wsce{word-spacing:2.218667pt;}
.ws6f{word-spacing:2.240000pt;}
.ws2d{word-spacing:2.293333pt;}
.ws6a{word-spacing:2.304000pt;}
.ws17{word-spacing:2.400000pt;}
.ws43{word-spacing:2.453333pt;}
.wscd{word-spacing:2.474667pt;}
.ws75{word-spacing:2.506667pt;}
.wsb0{word-spacing:2.517333pt;}
.ws4b{word-spacing:2.560000pt;}
.ws68{word-spacing:2.613333pt;}
.wsb2{word-spacing:2.645333pt;}
.ws2f{word-spacing:2.666667pt;}
.ws78{word-spacing:2.720000pt;}
.ws28{word-spacing:2.773333pt;}
.ws67{word-spacing:2.826667pt;}
.ws18{word-spacing:2.880000pt;}
.wse1{word-spacing:2.901333pt;}
.ws95{word-spacing:2.933333pt;}
.wsdd{word-spacing:2.944000pt;}
.ws1e{word-spacing:3.040000pt;}
.ws3a{word-spacing:3.093333pt;}
.wsde{word-spacing:3.114667pt;}
.ws6e{word-spacing:3.200000pt;}
.wsd4{word-spacing:3.242667pt;}
.ws44{word-spacing:3.253333pt;}
.ws14{word-spacing:3.306667pt;}
.wsa0{word-spacing:3.328000pt;}
.ws21{word-spacing:3.360000pt;}
.wsd2{word-spacing:3.370667pt;}
.ws66{word-spacing:3.466667pt;}
.ws30{word-spacing:3.498667pt;}
.ws4a{word-spacing:3.520000pt;}
.ws83{word-spacing:3.541333pt;}
.ws49{word-spacing:3.573333pt;}
.ws6b{word-spacing:3.584000pt;}
.ws63{word-spacing:3.626667pt;}
.ws2b{word-spacing:3.680000pt;}
.ws84{word-spacing:3.712000pt;}
.ws64{word-spacing:3.733333pt;}
.ws69{word-spacing:3.754667pt;}
.ws74{word-spacing:3.786667pt;}
.ws62{word-spacing:3.840000pt;}
.ws70{word-spacing:3.893333pt;}
.ws3b{word-spacing:3.946667pt;}
.ws57{word-spacing:4.000000pt;}
.ws41{word-spacing:4.053333pt;}
.ws4c{word-spacing:4.106667pt;}
.ws65{word-spacing:4.160000pt;}
.ws3d{word-spacing:4.213333pt;}
.ws58{word-spacing:4.266667pt;}
.ws39{word-spacing:4.320000pt;}
.ws13{word-spacing:4.373333pt;}
.ws12{word-spacing:4.426667pt;}
.wsb8{word-spacing:4.565333pt;}
.wsbe{word-spacing:4.650667pt;}
.ws96{word-spacing:4.853333pt;}
.ws97{word-spacing:4.906667pt;}
.ws7a{word-spacing:4.960000pt;}
.ws1d{word-spacing:6.186667pt;}
.ws5d{word-spacing:68.060267pt;}
.ws5f{word-spacing:85.418667pt;}
.ws5b{word-spacing:96.085333pt;}
.ws6c{word-spacing:132.096000pt;}
.ws52{word-spacing:151.253333pt;}
.ws51{word-spacing:158.336000pt;}
.ws53{word-spacing:165.461333pt;}
.ws5e{word-spacing:170.752000pt;}
.ws5c{word-spacing:179.242667pt;}
.ws50{word-spacing:184.405333pt;}
.ws5a{word-spacing:200.576000pt;}
.ws7e{word-spacing:294.442667pt;}
.ws55{word-spacing:371.925333pt;}
.ws54{word-spacing:383.786667pt;}
.ws56{word-spacing:458.922667pt;}
.ws4f{word-spacing:460.074667pt;}
._a{margin-left:-2576.085333pt;}
._c{margin-left:-2554.922667pt;}
._d{margin-left:-8.213333pt;}
._6{margin-left:-6.560000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.826667pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-0.960000pt;}
._4{width:0.938667pt;}
._9{width:2.426667pt;}
._b{width:3.386667pt;}
._8{width:4.586667pt;}
._7{width:5.546667pt;}
._3c{width:6.560000pt;}
._4e{width:9.136000pt;}
._2{width:52.944901pt;}
._26{width:68.053333pt;}
._28{width:69.296000pt;}
._2e{width:76.373333pt;}
._22{width:78.720000pt;}
._23{width:89.386667pt;}
._1e{width:90.453333pt;}
._2a{width:99.205333pt;}
._27{width:101.594667pt;}
._1f{width:103.552000pt;}
._4c{width:106.965333pt;}
._e{width:109.013333pt;}
._25{width:111.066667pt;}
._29{width:118.192000pt;}
._4a{width:128.256000pt;}
._21{width:134.789333pt;}
._47{width:138.922667pt;}
._40{width:140.202667pt;}
._2c{width:141.738667pt;}
._30{width:142.762667pt;}
._41{width:149.242667pt;}
._44{width:150.869333pt;}
._20{width:158.890667pt;}
._34{width:160.682667pt;}
._11{width:161.920000pt;}
._1d{width:162.986667pt;}
._13{width:169.002667pt;}
._2f{width:170.714667pt;}
._31{width:171.690667pt;}
._3d{width:173.184000pt;}
._10{width:176.128000pt;}
._4b{width:178.389333pt;}
._2d{width:180.480000pt;}
._37{width:182.016000pt;}
._49{width:186.282667pt;}
._24{width:189.909333pt;}
._3e{width:194.176000pt;}
._43{width:198.144000pt;}
._46{width:201.301333pt;}
._42{width:202.880000pt;}
._45{width:206.464000pt;}
._3f{width:207.616000pt;}
._3b{width:215.600000pt;}
._32{width:225.450667pt;}
._38{width:226.693333pt;}
._3a{width:229.376000pt;}
._2b{width:231.765333pt;}
._36{width:236.165333pt;}
._39{width:243.290667pt;}
._18{width:255.829333pt;}
._1a{width:260.565333pt;}
._48{width:277.120000pt;}
._35{width:304.512000pt;}
._33{width:308.608000pt;}
._15{width:384.981333pt;}
._17{width:389.717333pt;}
._14{width:394.453333pt;}
._16{width:401.578667pt;}
._f{width:403.925333pt;}
._4d{width:415.061333pt;}
._12{width:418.176000pt;}
._19{width:448.256000pt;}
._1b{width:458.922667pt;}
._1c{width:469.589333pt;}
.fsb{font-size:18.034133pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2e{bottom:42.468667pt;}
.y2ad{bottom:71.345333pt;}
.y18d{bottom:73.987600pt;}
.y243{bottom:74.342533pt;}
.y137{bottom:74.355867pt;}
.y75{bottom:74.462533pt;}
.y63{bottom:74.464533pt;}
.ybe{bottom:74.523733pt;}
.yd2{bottom:74.588533pt;}
.yb9{bottom:74.595867pt;}
.y17e{bottom:74.909600pt;}
.y14b{bottom:75.402667pt;}
.y1de{bottom:75.952400pt;}
.y2b{bottom:78.518933pt;}
.y1b2{bottom:81.435867pt;}
.y103{bottom:81.504000pt;}
.y1f5{bottom:82.422933pt;}
.y26b{bottom:84.552800pt;}
.y2ac{bottom:84.678667pt;}
.y18c{bottom:87.982267pt;}
.ybd{bottom:88.518400pt;}
.y17d{bottom:89.576267pt;}
.y14a{bottom:90.069333pt;}
.y242{bottom:90.342533pt;}
.y136{bottom:90.355867pt;}
.y74{bottom:90.462533pt;}
.y62{bottom:90.464533pt;}
.yd1{bottom:90.588533pt;}
.yb8{bottom:90.595867pt;}
.y1dd{bottom:90.619067pt;}
.y2a{bottom:91.848933pt;}
.y1b1{bottom:96.102533pt;}
.y1f4{bottom:96.865600pt;}
.y102{bottom:97.504000pt;}
.y26a{bottom:97.886133pt;}
.y2ab{bottom:98.012000pt;}
.y18b{bottom:101.976933pt;}
.ybc{bottom:102.513067pt;}
.y17c{bottom:104.242933pt;}
.y29{bottom:105.182267pt;}
.y1dc{bottom:105.285733pt;}
.y241{bottom:106.342533pt;}
.y135{bottom:106.355867pt;}
.y73{bottom:106.462533pt;}
.y61{bottom:106.464533pt;}
.yd0{bottom:106.588533pt;}
.yb7{bottom:106.595867pt;}
.y269{bottom:111.219467pt;}
.y1f3{bottom:111.308267pt;}
.y2aa{bottom:111.345333pt;}
.y149{bottom:112.746667pt;}
.y101{bottom:113.504000pt;}
.ybb{bottom:116.507733pt;}
.y1b0{bottom:118.779867pt;}
.y240{bottom:122.342533pt;}
.y134{bottom:122.355867pt;}
.y72{bottom:122.462533pt;}
.y60{bottom:122.464533pt;}
.y21e{bottom:122.588533pt;}
.yb6{bottom:122.595867pt;}
.y268{bottom:124.552800pt;}
.y2a9{bottom:124.678667pt;}
.y17b{bottom:126.920267pt;}
.y148{bottom:127.189333pt;}
.y1db{bottom:127.963067pt;}
.y100{bottom:129.504000pt;}
.yba{bottom:130.502400pt;}
.y1af{bottom:133.222533pt;}
.y1f2{bottom:137.089600pt;}
.y267{bottom:137.886133pt;}
.y2a8{bottom:138.012000pt;}
.y23f{bottom:138.342533pt;}
.y133{bottom:138.355867pt;}
.y71{bottom:138.462533pt;}
.y5f{bottom:138.464533pt;}
.y21d{bottom:138.588533pt;}
.yb5{bottom:138.595867pt;}
.y17a{bottom:141.362933pt;}
.y1da{bottom:142.405733pt;}
.yff{bottom:145.504000pt;}
.y1ae{bottom:147.665200pt;}
.y1f0{bottom:149.974933pt;}
.y266{bottom:151.219467pt;}
.y2a7{bottom:151.345333pt;}
.y147{bottom:152.970667pt;}
.y23e{bottom:154.342533pt;}
.y132{bottom:154.355867pt;}
.y70{bottom:154.462533pt;}
.y5e{bottom:154.464533pt;}
.y21c{bottom:154.588533pt;}
.yb4{bottom:154.595867pt;}
.y179{bottom:155.805600pt;}
.y1d9{bottom:156.848400pt;}
.yfe{bottom:161.504000pt;}
.y1ad{bottom:162.107867pt;}
.y1f1{bottom:162.870933pt;}
.y265{bottom:164.552800pt;}
.y2a6{bottom:164.678667pt;}
.y146{bottom:167.413333pt;}
.y178{bottom:170.248267pt;}
.y23d{bottom:170.342533pt;}
.y131{bottom:170.355867pt;}
.y6f{bottom:170.462533pt;}
.y5d{bottom:170.464533pt;}
.yb3{bottom:170.595867pt;}
.y21b{bottom:170.609200pt;}
.y1d8{bottom:171.291067pt;}
.yfd{bottom:177.504000pt;}
.y264{bottom:177.886133pt;}
.y2a5{bottom:178.012000pt;}
.y145{bottom:181.856000pt;}
.y177{bottom:184.690933pt;}
.y1d7{bottom:185.733733pt;}
.y23c{bottom:186.342533pt;}
.y130{bottom:186.355867pt;}
.y6e{bottom:186.462533pt;}
.y5c{bottom:186.464533pt;}
.yb2{bottom:186.595867pt;}
.y21a{bottom:186.609200pt;}
.y1ac{bottom:187.889200pt;}
.y263{bottom:191.219467pt;}
.y2a4{bottom:191.345333pt;}
.y1ef{bottom:191.659467pt;}
.y28{bottom:192.057067pt;}
.yfc{bottom:193.504000pt;}
.y144{bottom:196.298667pt;}
.y176{bottom:199.133600pt;}
.y1d6{bottom:200.176400pt;}
.y1ab{bottom:202.331867pt;}
.y23b{bottom:202.342533pt;}
.y12f{bottom:202.355867pt;}
.y6d{bottom:202.462533pt;}
.y5b{bottom:202.464533pt;}
.yb1{bottom:202.595867pt;}
.y219{bottom:202.609200pt;}
.y262{bottom:204.552800pt;}
.y2a3{bottom:204.678667pt;}
.y1ee{bottom:208.992800pt;}
.yfb{bottom:209.504000pt;}
.y143{bottom:210.741333pt;}
.y175{bottom:213.576267pt;}
.y1d5{bottom:214.619067pt;}
.y27{bottom:216.363733pt;}
.y1aa{bottom:216.774533pt;}
.y261{bottom:217.886133pt;}
.y2a2{bottom:218.012000pt;}
.y23a{bottom:218.342533pt;}
.y12e{bottom:218.355867pt;}
.y6c{bottom:218.462533pt;}
.y5a{bottom:218.464533pt;}
.yb0{bottom:218.595867pt;}
.y218{bottom:218.609200pt;}
.y142{bottom:225.184000pt;}
.yfa{bottom:225.504000pt;}
.y1ed{bottom:226.326133pt;}
.y174{bottom:228.018933pt;}
.y1d4{bottom:229.061733pt;}
.y1a9{bottom:231.217200pt;}
.y260{bottom:231.219467pt;}
.y2a1{bottom:231.345333pt;}
.y26{bottom:232.363733pt;}
.y239{bottom:234.342533pt;}
.y12d{bottom:234.355867pt;}
.y6b{bottom:234.462533pt;}
.y59{bottom:234.464533pt;}
.yaf{bottom:234.595867pt;}
.y217{bottom:234.609200pt;}
.y141{bottom:239.626667pt;}
.yf9{bottom:241.504000pt;}
.y173{bottom:242.461600pt;}
.y1ec{bottom:243.659467pt;}
.y25f{bottom:244.552800pt;}
.y2a0{bottom:244.678667pt;}
.y25{bottom:248.363733pt;}
.y238{bottom:250.342533pt;}
.y12c{bottom:250.355867pt;}
.y6a{bottom:250.462533pt;}
.y58{bottom:250.464533pt;}
.yae{bottom:250.595867pt;}
.y216{bottom:250.609200pt;}
.y140{bottom:254.069333pt;}
.y1d3{bottom:254.843067pt;}
.y172{bottom:256.904267pt;}
.y1a8{bottom:256.998533pt;}
.yf8{bottom:257.504000pt;}
.y25e{bottom:257.886133pt;}
.y29f{bottom:258.012000pt;}
.y24{bottom:264.363733pt;}
.y237{bottom:266.342533pt;}
.y12b{bottom:266.355867pt;}
.y69{bottom:266.462533pt;}
.y57{bottom:266.464533pt;}
.yad{bottom:266.595867pt;}
.y215{bottom:266.609200pt;}
.y1d2{bottom:269.285733pt;}
.y25d{bottom:271.219467pt;}
.y29e{bottom:271.345333pt;}
.y171{bottom:271.346933pt;}
.y1a7{bottom:271.441200pt;}
.yf7{bottom:273.504000pt;}
.y13f{bottom:279.850667pt;}
.y23{bottom:280.363733pt;}
.y236{bottom:281.982533pt;}
.y68{bottom:282.462533pt;}
.y56{bottom:282.464533pt;}
.yac{bottom:282.595867pt;}
.y214{bottom:282.609200pt;}
.y1d1{bottom:283.728400pt;}
.y1eb{bottom:284.287067pt;}
.y25c{bottom:284.552800pt;}
.y29d{bottom:284.678667pt;}
.y170{bottom:285.789600pt;}
.y1a6{bottom:285.883867pt;}
.yf6{bottom:289.504000pt;}
.y13d{bottom:292.736000pt;}
.y22{bottom:296.363733pt;}
.y25b{bottom:297.886133pt;}
.y12a{bottom:297.995867pt;}
.y29c{bottom:298.012000pt;}
.y1d0{bottom:298.171067pt;}
.y1ea{bottom:298.281733pt;}
.y67{bottom:298.462533pt;}
.y55{bottom:298.464533pt;}
.yab{bottom:298.595867pt;}
.y213{bottom:298.609200pt;}
.y16f{bottom:300.232267pt;}
.y1a5{bottom:300.326533pt;}
.yf5{bottom:305.504000pt;}
.y13e{bottom:305.632000pt;}
.y25a{bottom:311.219467pt;}
.y29b{bottom:311.345333pt;}
.y1e9{bottom:312.276400pt;}
.y21{bottom:312.363733pt;}
.y1cf{bottom:312.613733pt;}
.y235{bottom:314.342533pt;}
.y66{bottom:314.462533pt;}
.y54{bottom:314.464533pt;}
.yaa{bottom:314.595867pt;}
.y212{bottom:314.609200pt;}
.y16e{bottom:314.674933pt;}
.yf4{bottom:321.504000pt;}
.y259{bottom:324.552800pt;}
.y29a{bottom:324.678667pt;}
.y1a4{bottom:326.107867pt;}
.y1e8{bottom:326.271067pt;}
.y1ce{bottom:327.056400pt;}
.y20{bottom:328.363733pt;}
.y16d{bottom:329.117600pt;}
.y234{bottom:330.342533pt;}
.y98{bottom:330.462533pt;}
.y53{bottom:330.464533pt;}
.ya9{bottom:330.595867pt;}
.y211{bottom:330.609200pt;}
.y13c{bottom:334.420533pt;}
.yf3{bottom:337.504000pt;}
.y258{bottom:337.886133pt;}
.y299{bottom:338.012000pt;}
.y1e7{bottom:340.265733pt;}
.y1a3{bottom:340.550533pt;}
.y1cd{bottom:341.499067pt;}
.y16c{bottom:343.651733pt;}
.y1f{bottom:344.363733pt;}
.y233{bottom:346.342533pt;}
.y1e5{bottom:346.462533pt;}
.y52{bottom:346.464533pt;}
.y129{bottom:346.475867pt;}
.ya8{bottom:346.595867pt;}
.y210{bottom:346.609200pt;}
.y257{bottom:351.219467pt;}
.y298{bottom:351.345333pt;}
.y13b{bottom:351.753867pt;}
.yf2{bottom:353.504000pt;}
.y1e6{bottom:354.260400pt;}
.y1a2{bottom:355.038667pt;}
.y1cc{bottom:355.941733pt;}
.y16b{bottom:358.094400pt;}
.y1e{bottom:360.363733pt;}
.y97{bottom:362.102533pt;}
.y232{bottom:362.342533pt;}
.y1e4{bottom:362.462533pt;}
.y51{bottom:362.464533pt;}
.y128{bottom:362.475867pt;}
.ya7{bottom:362.595867pt;}
.y20f{bottom:362.609200pt;}
.y256{bottom:364.552800pt;}
.y297{bottom:364.678667pt;}
.y1a1{bottom:369.481333pt;}
.yf1{bottom:369.504000pt;}
.y16a{bottom:372.537067pt;}
.y18f{bottom:375.640933pt;}
.y1d{bottom:376.363733pt;}
.y255{bottom:377.886133pt;}
.y296{bottom:378.012000pt;}
.y231{bottom:378.342533pt;}
.y1e3{bottom:378.462533pt;}
.y50{bottom:378.464533pt;}
.y127{bottom:378.475867pt;}
.ya6{bottom:378.595867pt;}
.y20e{bottom:378.609200pt;}
.y1cb{bottom:381.723067pt;}
.yf0{bottom:385.504000pt;}
.y169{bottom:386.979733pt;}
.y18e{bottom:389.635600pt;}
.y254{bottom:391.219467pt;}
.y295{bottom:391.345333pt;}
.y1c{bottom:392.363733pt;}
.y13a{bottom:393.493067pt;}
.y96{bottom:393.982533pt;}
.y230{bottom:394.342533pt;}
.y1e2{bottom:394.462533pt;}
.y4f{bottom:394.464533pt;}
.y126{bottom:394.475867pt;}
.ya5{bottom:394.595867pt;}
.y20d{bottom:394.609200pt;}
.y1a0{bottom:395.262667pt;}
.y1ca{bottom:396.165733pt;}
.y168{bottom:401.422400pt;}
.yef{bottom:401.504000pt;}
.y253{bottom:404.552800pt;}
.y294{bottom:404.678667pt;}
.y139{bottom:407.487733pt;}
.y1b{bottom:408.363733pt;}
.y19f{bottom:409.705333pt;}
.y22f{bottom:410.342533pt;}
.y1e1{bottom:410.462533pt;}
.y4e{bottom:410.464533pt;}
.y125{bottom:410.475867pt;}
.ya4{bottom:410.595867pt;}
.y1c9{bottom:410.608400pt;}
.y20c{bottom:410.609200pt;}
.y167{bottom:415.865067pt;}
.yee{bottom:417.504000pt;}
.y252{bottom:417.886133pt;}
.y293{bottom:418.012000pt;}
.y19e{bottom:424.148000pt;}
.y1a{bottom:424.363733pt;}
.y1c8{bottom:425.051067pt;}
.y22e{bottom:426.342533pt;}
.y1e0{bottom:426.462533pt;}
.y4d{bottom:426.464533pt;}
.y124{bottom:426.475867pt;}
.ya3{bottom:426.595867pt;}
.y20b{bottom:426.609200pt;}
.y166{bottom:430.307733pt;}
.y251{bottom:431.219467pt;}
.y292{bottom:431.345333pt;}
.yed{bottom:433.504000pt;}
.y19d{bottom:438.590667pt;}
.y1c7{bottom:439.493733pt;}
.y19{bottom:440.363733pt;}
.y22d{bottom:442.342533pt;}
.y95{bottom:442.462533pt;}
.y4c{bottom:442.464533pt;}
.y123{bottom:442.475867pt;}
.ya2{bottom:442.595867pt;}
.y20a{bottom:442.609200pt;}
.y250{bottom:444.552800pt;}
.y291{bottom:444.678667pt;}
.y165{bottom:444.750400pt;}
.yec{bottom:449.504000pt;}
.y1c6{bottom:453.936400pt;}
.y18{bottom:456.363733pt;}
.y24f{bottom:457.886133pt;}
.y290{bottom:458.012000pt;}
.y22c{bottom:458.342533pt;}
.y94{bottom:458.462533pt;}
.y4b{bottom:458.464533pt;}
.y122{bottom:458.475867pt;}
.ya1{bottom:458.595867pt;}
.y209{bottom:458.609200pt;}
.y164{bottom:459.193067pt;}
.y19c{bottom:464.372000pt;}
.yeb{bottom:465.504000pt;}
.y1c5{bottom:468.379067pt;}
.y24e{bottom:471.219467pt;}
.y28f{bottom:471.345333pt;}
.y17{bottom:472.363733pt;}
.y163{bottom:473.635733pt;}
.y22b{bottom:474.342533pt;}
.y93{bottom:474.462533pt;}
.y4a{bottom:474.464533pt;}
.y121{bottom:474.475867pt;}
.ya0{bottom:474.595867pt;}
.y208{bottom:474.609200pt;}
.y19b{bottom:478.814667pt;}
.yea{bottom:481.504000pt;}
.y1c4{bottom:482.821733pt;}
.y24d{bottom:484.552800pt;}
.y28e{bottom:484.678667pt;}
.y162{bottom:488.078400pt;}
.y16{bottom:488.363733pt;}
.y22a{bottom:490.342533pt;}
.y92{bottom:490.462533pt;}
.y49{bottom:490.464533pt;}
.y120{bottom:490.475867pt;}
.y9f{bottom:490.595867pt;}
.y207{bottom:490.609200pt;}
.y19a{bottom:493.257333pt;}
.y24c{bottom:497.886133pt;}
.y28d{bottom:498.012000pt;}
.y161{bottom:502.521067pt;}
.y15{bottom:504.363733pt;}
.y229{bottom:506.342533pt;}
.y91{bottom:506.462533pt;}
.y48{bottom:506.464533pt;}
.y11f{bottom:506.475867pt;}
.y9e{bottom:506.595867pt;}
.y206{bottom:506.609200pt;}
.y199{bottom:507.700000pt;}
.y1c3{bottom:508.603067pt;}
.y24b{bottom:511.219467pt;}
.y28c{bottom:511.345333pt;}
.ye9{bottom:513.144000pt;}
.y160{bottom:516.963733pt;}
.y14{bottom:520.363733pt;}
.y228{bottom:522.342533pt;}
.y90{bottom:522.462533pt;}
.y47{bottom:522.464533pt;}
.y11e{bottom:522.475867pt;}
.y9d{bottom:522.595867pt;}
.y205{bottom:522.609200pt;}
.y1c2{bottom:523.045733pt;}
.y24a{bottom:524.552800pt;}
.y28b{bottom:524.678667pt;}
.y15f{bottom:531.406400pt;}
.y198{bottom:533.481333pt;}
.y13{bottom:536.363733pt;}
.y1c1{bottom:537.488400pt;}
.y28a{bottom:538.012000pt;}
.y227{bottom:538.342533pt;}
.y8f{bottom:538.462533pt;}
.y46{bottom:538.464533pt;}
.y11d{bottom:538.475867pt;}
.y9c{bottom:538.595867pt;}
.y204{bottom:538.609200pt;}
.ye8{bottom:545.370667pt;}
.y15e{bottom:545.849067pt;}
.y197{bottom:547.924000pt;}
.y289{bottom:551.345333pt;}
.y1c0{bottom:551.931067pt;}
.y12{bottom:552.363733pt;}
.y249{bottom:553.982533pt;}
.y226{bottom:554.342533pt;}
.y8e{bottom:554.462533pt;}
.y45{bottom:554.464533pt;}
.y11c{bottom:554.475867pt;}
.y9b{bottom:554.595867pt;}
.y203{bottom:554.609200pt;}
.y15d{bottom:560.291733pt;}
.ye7{bottom:561.366267pt;}
.y196{bottom:562.366667pt;}
.y288{bottom:564.678667pt;}
.y1bf{bottom:566.373733pt;}
.y11{bottom:568.363733pt;}
.y225{bottom:570.342533pt;}
.y8d{bottom:570.462533pt;}
.y44{bottom:570.464533pt;}
.y11b{bottom:570.475867pt;}
.y9a{bottom:570.595867pt;}
.y202{bottom:570.609200pt;}
.y15c{bottom:574.734400pt;}
.y195{bottom:576.809333pt;}
.y287{bottom:578.012000pt;}
.ye6{bottom:579.809067pt;}
.y1be{bottom:580.816400pt;}
.y224{bottom:586.342533pt;}
.y8c{bottom:586.462533pt;}
.y43{bottom:586.464533pt;}
.y11a{bottom:586.475867pt;}
.ycf{bottom:586.595867pt;}
.y201{bottom:586.609200pt;}
.y15b{bottom:589.177067pt;}
.ye5{bottom:589.988533pt;}
.y286{bottom:591.345333pt;}
.y1bd{bottom:595.259067pt;}
.y99{bottom:602.235867pt;}
.y223{bottom:602.342533pt;}
.y8b{bottom:602.462533pt;}
.y42{bottom:602.464533pt;}
.y119{bottom:602.475867pt;}
.yce{bottom:602.595867pt;}
.y200{bottom:602.609200pt;}
.y15a{bottom:603.619733pt;}
.y285{bottom:604.678667pt;}
.y194{bottom:604.820000pt;}
.y10{bottom:608.504267pt;}
.y1bc{bottom:609.701733pt;}
.y284{bottom:618.012000pt;}
.y159{bottom:618.062400pt;}
.y248{bottom:618.102533pt;}
.y222{bottom:618.342533pt;}
.y8a{bottom:618.462533pt;}
.y41{bottom:618.464533pt;}
.y118{bottom:618.475867pt;}
.ycd{bottom:618.595867pt;}
.ye4{bottom:618.601867pt;}
.y1ff{bottom:618.609200pt;}
.yf{bottom:619.571600pt;}
.y283{bottom:631.345333pt;}
.y158{bottom:632.505067pt;}
.y221{bottom:634.342533pt;}
.y89{bottom:634.462533pt;}
.y40{bottom:634.464533pt;}
.y117{bottom:634.475867pt;}
.ycc{bottom:634.595867pt;}
.ye3{bottom:634.601867pt;}
.y1fe{bottom:634.609200pt;}
.y193{bottom:635.835867pt;}
.y1bb{bottom:637.712400pt;}
.y282{bottom:644.678667pt;}
.y157{bottom:646.947733pt;}
.ye{bottom:647.763200pt;}
.y247{bottom:650.102533pt;}
.y220{bottom:650.342533pt;}
.y88{bottom:650.462533pt;}
.y3f{bottom:650.464533pt;}
.y116{bottom:650.475867pt;}
.ycb{bottom:650.595867pt;}
.ye2{bottom:650.601867pt;}
.y1fd{bottom:650.609200pt;}
.y192{bottom:653.169200pt;}
.y281{bottom:658.012000pt;}
.y156{bottom:661.390400pt;}
.yd{bottom:664.585600pt;}
.y87{bottom:666.462533pt;}
.y3e{bottom:666.464533pt;}
.y115{bottom:666.475867pt;}
.yca{bottom:666.595867pt;}
.ye1{bottom:666.601867pt;}
.y1fc{bottom:666.609200pt;}
.y1ba{bottom:668.742533pt;}
.y280{bottom:671.345333pt;}
.yc{bottom:671.763200pt;}
.y155{bottom:675.833067pt;}
.y21f{bottom:681.982533pt;}
.y86{bottom:682.462533pt;}
.y3d{bottom:682.464533pt;}
.y114{bottom:682.475867pt;}
.yc9{bottom:682.595867pt;}
.ye0{bottom:682.601867pt;}
.y1fb{bottom:682.609200pt;}
.yb{bottom:683.763200pt;}
.y27f{bottom:684.678667pt;}
.y1b9{bottom:686.075867pt;}
.y154{bottom:690.275733pt;}
.ya{bottom:695.763200pt;}
.y27e{bottom:698.012000pt;}
.y14d{bottom:698.235867pt;}
.y85{bottom:698.462533pt;}
.y3c{bottom:698.464533pt;}
.y113{bottom:698.475867pt;}
.yc8{bottom:698.595867pt;}
.ydf{bottom:698.601867pt;}
.y1fa{bottom:698.609200pt;}
.y1b8{bottom:703.409200pt;}
.y153{bottom:704.718400pt;}
.y27d{bottom:711.345333pt;}
.y9{bottom:712.585733pt;}
.y246{bottom:714.102533pt;}
.y84{bottom:714.462533pt;}
.y3b{bottom:714.464533pt;}
.y112{bottom:714.475867pt;}
.yc7{bottom:714.595867pt;}
.yde{bottom:714.601867pt;}
.y18a{bottom:714.609200pt;}
.y152{bottom:719.161067pt;}
.y1b7{bottom:720.742533pt;}
.y27c{bottom:724.678667pt;}
.y1f7{bottom:730.235867pt;}
.y83{bottom:730.462533pt;}
.y3a{bottom:730.464533pt;}
.y111{bottom:730.475867pt;}
.yc6{bottom:730.595867pt;}
.ydd{bottom:730.601867pt;}
.y189{bottom:730.609200pt;}
.y27b{bottom:738.012000pt;}
.y8{bottom:738.121067pt;}
.y82{bottom:746.462533pt;}
.y39{bottom:746.464533pt;}
.y110{bottom:746.475867pt;}
.yc5{bottom:746.595867pt;}
.ydc{bottom:746.601867pt;}
.y188{bottom:746.609200pt;}
.y151{bottom:747.171733pt;}
.y27a{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y245{bottom:762.102533pt;}
.y180{bottom:762.235867pt;}
.y81{bottom:762.462533pt;}
.y38{bottom:762.464533pt;}
.y10f{bottom:762.475867pt;}
.yc4{bottom:762.595867pt;}
.y187{bottom:762.609200pt;}
.y279{bottom:764.678667pt;}
.y278{bottom:778.012000pt;}
.y150{bottom:778.195867pt;}
.ydb{bottom:778.241867pt;}
.y80{bottom:778.462533pt;}
.y37{bottom:778.464533pt;}
.y10e{bottom:778.475867pt;}
.yc3{bottom:778.595867pt;}
.y186{bottom:778.609200pt;}
.y277{bottom:791.345333pt;}
.y7f{bottom:794.462533pt;}
.y36{bottom:794.464533pt;}
.y10d{bottom:794.475867pt;}
.yc2{bottom:794.595867pt;}
.y185{bottom:794.609200pt;}
.y14f{bottom:795.529200pt;}
.y6{bottom:797.816533pt;}
.y276{bottom:804.678667pt;}
.y7e{bottom:810.462533pt;}
.y35{bottom:810.464533pt;}
.yda{bottom:810.468533pt;}
.y10c{bottom:810.475867pt;}
.yc1{bottom:810.595867pt;}
.y184{bottom:810.609200pt;}
.y14e{bottom:812.862533pt;}
.y275{bottom:818.012000pt;}
.y138{bottom:826.235867pt;}
.y7d{bottom:826.462533pt;}
.y34{bottom:826.464533pt;}
.yd9{bottom:826.468533pt;}
.y10b{bottom:826.475867pt;}
.yc0{bottom:826.595867pt;}
.y183{bottom:826.609200pt;}
.y5{bottom:830.226133pt;}
.y274{bottom:831.345333pt;}
.y104{bottom:842.235867pt;}
.y7c{bottom:842.462533pt;}
.y33{bottom:842.464533pt;}
.yd8{bottom:842.468533pt;}
.y10a{bottom:842.475867pt;}
.y1b6{bottom:842.595867pt;}
.y182{bottom:842.609200pt;}
.y273{bottom:844.678667pt;}
.y272{bottom:858.012000pt;}
.ybf{bottom:858.235867pt;}
.y7b{bottom:858.462533pt;}
.y32{bottom:858.464533pt;}
.yd7{bottom:858.468533pt;}
.y109{bottom:858.475867pt;}
.y1b5{bottom:858.595867pt;}
.y1f9{bottom:858.609200pt;}
.y4{bottom:862.635733pt;}
.y271{bottom:871.345333pt;}
.y181{bottom:874.249200pt;}
.y7a{bottom:874.462533pt;}
.y31{bottom:874.464533pt;}
.yd6{bottom:874.468533pt;}
.y108{bottom:874.475867pt;}
.y270{bottom:884.678667pt;}
.y244{bottom:890.102533pt;}
.y1b4{bottom:890.235867pt;}
.y1f8{bottom:890.249200pt;}
.y79{bottom:890.462533pt;}
.y30{bottom:890.464533pt;}
.yd5{bottom:890.468533pt;}
.y107{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y26f{bottom:898.012000pt;}
.y78{bottom:906.462533pt;}
.y65{bottom:906.464533pt;}
.yd4{bottom:906.468533pt;}
.y106{bottom:906.475867pt;}
.y26e{bottom:911.345333pt;}
.y191{bottom:922.102533pt;}
.y2f{bottom:922.104533pt;}
.y77{bottom:922.462533pt;}
.y64{bottom:922.464533pt;}
.yd3{bottom:922.468533pt;}
.y105{bottom:922.475867pt;}
.y26d{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y26c{bottom:1006.590133pt;}
.y76{bottom:1006.594400pt;}
.y2ae{bottom:1006.598667pt;}
.y190{bottom:1006.606267pt;}
.y1f6{bottom:1006.614933pt;}
.y14c{bottom:1006.634667pt;}
.y1b3{bottom:1006.641200pt;}
.y17f{bottom:1006.642933pt;}
.y1df{bottom:1006.693733pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h8{height:29.160156pt;}
.h11{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h10{height:37.057292pt;}
.h15{height:37.074892pt;}
.hc{height:38.828125pt;}
.ha{height:38.854167pt;}
.hb{height:38.880208pt;}
.h12{height:46.682552pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h13{height:72.339425pt;}
.h14{height:77.739425pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:68.031467pt;}
.x18{left:69.921200pt;}
.x5{left:85.417333pt;}
.x1{left:86.929067pt;}
.x15{left:88.818933pt;}
.x26{left:90.708800pt;}
.x4{left:94.488267pt;}
.x9{left:98.274267pt;}
.x28{left:109.606267pt;}
.x3{left:111.491600pt;}
.xe{left:117.165333pt;}
.x1a{left:138.966533pt;}
.xf{left:147.565333pt;}
.x8{left:169.380933pt;}
.x1f{left:170.546933pt;}
.x1e{left:171.730933pt;}
.x20{left:172.626933pt;}
.x1d{left:174.696267pt;}
.x23{left:187.915867pt;}
.x17{left:206.386933pt;}
.x22{left:222.184267pt;}
.x19{left:233.558533pt;}
.x16{left:240.253600pt;}
.x21{left:252.594933pt;}
.x6{left:404.481333pt;}
.xa{left:406.340933pt;}
.x10{left:425.218667pt;}
.x27{left:428.991467pt;}
.xb{left:436.567600pt;}
.x25{left:447.874133pt;}
.x11{left:455.458667pt;}
.x1b{left:515.044800pt;}
.x14{left:525.911467pt;}
.x24{left:529.862533pt;}
.xd{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1c{left:641.459067pt;}
.xc{left:647.459200pt;}
.x13{left:661.192800pt;}
.x12{left:666.356800pt;}
}




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