
    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_4963e972801f63ce8e69eee3.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_64cdf99972f5d08ba51fd6ed.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_dcb2082573932b9b7494a337.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_3aca00db2c01f63b858ef066.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_5f8e88d7aa47664bdb918289.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_58459e99bb37b528064bed61.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_511713c6df6831afb630ace8.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_6c38a4be8025cf6ac3683ee6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8c928a7ce8b21f182d7850a7.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b65b0b4335d1babf90692660.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.082520;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;}
.v6{vertical-align:-12.705000px;}
.v3{vertical-align:-11.019000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.620000px;}
.v5{vertical-align:12.645000px;}
.v4{vertical-align:28.254000px;}
.v1{vertical-align:30.381600px;}
.v8{vertical-align:32.976000px;}
.v7{vertical-align:59.976000px;}
.ls45{letter-spacing:-1.776000px;}
.ls57{letter-spacing:-1.554000px;}
.ls5{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.450000px;}
.ls59{letter-spacing:-0.420000px;}
.ls67{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.225000px;}
.ls24{letter-spacing:-0.180000px;}
.ls83{letter-spacing:-0.144000px;}
.ls25{letter-spacing:-0.120000px;}
.ls42{letter-spacing:-0.060000px;}
.ls44{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls3{letter-spacing:0.004920px;}
.ls21{letter-spacing:0.033600px;}
.ls63{letter-spacing:0.048000px;}
.lsf{letter-spacing:0.060000px;}
.ls85{letter-spacing:0.096000px;}
.ls2f{letter-spacing:0.120000px;}
.ls78{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls87{letter-spacing:0.192000px;}
.lsc{letter-spacing:0.240000px;}
.ls81{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.300000px;}
.ls4b{letter-spacing:0.303720px;}
.ls33{letter-spacing:0.330120px;}
.ls71{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.360000px;}
.ls7e{letter-spacing:0.384000px;}
.ls13{letter-spacing:0.420000px;}
.ls94{letter-spacing:0.432000px;}
.ls6e{letter-spacing:0.477600px;}
.ls49{letter-spacing:0.480000px;}
.ls86{letter-spacing:0.528000px;}
.ls22{letter-spacing:0.540000px;}
.ls6c{letter-spacing:0.555000px;}
.ls7b{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.600000px;}
.ls8a{letter-spacing:0.624000px;}
.ls62{letter-spacing:0.655800px;}
.ls28{letter-spacing:0.660000px;}
.ls4c{letter-spacing:0.672000px;}
.ls1d{letter-spacing:0.720000px;}
.ls7d{letter-spacing:0.768000px;}
.lsd{letter-spacing:0.780000px;}
.ls98{letter-spacing:0.816000px;}
.ls6d{letter-spacing:0.816600px;}
.ls2b{letter-spacing:0.840000px;}
.ls79{letter-spacing:0.864000px;}
.ls10{letter-spacing:0.900000px;}
.ls7c{letter-spacing:0.912000px;}
.ls6b{letter-spacing:0.918000px;}
.ls3e{letter-spacing:0.960000px;}
.ls8f{letter-spacing:1.008000px;}
.ls19{letter-spacing:1.020000px;}
.ls89{letter-spacing:1.056000px;}
.ls16{letter-spacing:1.080000px;}
.ls88{letter-spacing:1.104000px;}
.ls61{letter-spacing:1.123200px;}
.ls11{letter-spacing:1.140000px;}
.ls72{letter-spacing:1.152000px;}
.ls27{letter-spacing:1.200000px;}
.ls74{letter-spacing:1.248000px;}
.ls23{letter-spacing:1.260000px;}
.ls4d{letter-spacing:1.294260px;}
.ls77{letter-spacing:1.296000px;}
.lsb{letter-spacing:1.320000px;}
.ls95{letter-spacing:1.344000px;}
.ls12{letter-spacing:1.380000px;}
.ls96{letter-spacing:1.392000px;}
.ls40{letter-spacing:1.440000px;}
.ls75{letter-spacing:1.488000px;}
.lse{letter-spacing:1.500000px;}
.ls73{letter-spacing:1.536000px;}
.ls1e{letter-spacing:1.560000px;}
.ls76{letter-spacing:1.584000px;}
.ls4a{letter-spacing:1.614120px;}
.ls26{letter-spacing:1.620000px;}
.ls9c{letter-spacing:1.632000px;}
.ls41{letter-spacing:1.680000px;}
.ls80{letter-spacing:1.728000px;}
.ls39{letter-spacing:1.740000px;}
.ls14{letter-spacing:1.800000px;}
.ls8c{letter-spacing:1.824000px;}
.ls8d{letter-spacing:1.872000px;}
.ls37{letter-spacing:1.920000px;}
.ls84{letter-spacing:1.968000px;}
.ls3f{letter-spacing:1.980000px;}
.ls99{letter-spacing:2.016000px;}
.ls31{letter-spacing:2.040000px;}
.ls92{letter-spacing:2.064000px;}
.ls18{letter-spacing:2.100000px;}
.ls90{letter-spacing:2.112000px;}
.ls20{letter-spacing:2.160000px;}
.ls3b{letter-spacing:2.220000px;}
.ls1f{letter-spacing:2.280000px;}
.ls9b{letter-spacing:2.304000px;}
.ls2c{letter-spacing:2.340000px;}
.ls2e{letter-spacing:2.400000px;}
.lsa{letter-spacing:2.460000px;}
.ls68{letter-spacing:2.520000px;}
.ls7a{letter-spacing:2.544000px;}
.ls48{letter-spacing:2.580000px;}
.ls43{letter-spacing:2.640000px;}
.ls9e{letter-spacing:2.688000px;}
.ls36{letter-spacing:2.700000px;}
.ls46{letter-spacing:2.760000px;}
.ls29{letter-spacing:2.820000px;}
.ls9a{letter-spacing:2.832000px;}
.ls70{letter-spacing:2.880000px;}
.ls3c{letter-spacing:2.940000px;}
.ls8b{letter-spacing:2.976000px;}
.ls65{letter-spacing:3.000000px;}
.ls9d{letter-spacing:3.024000px;}
.ls3a{letter-spacing:3.060000px;}
.ls6a{letter-spacing:3.120000px;}
.ls69{letter-spacing:3.180000px;}
.ls30{letter-spacing:3.240000px;}
.ls7f{letter-spacing:3.264000px;}
.ls2a{letter-spacing:3.300000px;}
.ls32{letter-spacing:3.360000px;}
.ls8e{letter-spacing:3.408000px;}
.ls1a{letter-spacing:3.480000px;}
.ls60{letter-spacing:3.540000px;}
.ls93{letter-spacing:3.552000px;}
.ls5b{letter-spacing:3.600000px;}
.ls5a{letter-spacing:3.660000px;}
.ls2d{letter-spacing:3.840000px;}
.ls66{letter-spacing:3.900000px;}
.ls38{letter-spacing:3.960000px;}
.ls82{letter-spacing:3.984000px;}
.ls35{letter-spacing:4.020000px;}
.ls1b{letter-spacing:4.140000px;}
.ls3d{letter-spacing:4.200000px;}
.ls34{letter-spacing:4.380000px;}
.ls91{letter-spacing:4.416000px;}
.ls58{letter-spacing:4.464000px;}
.ls97{letter-spacing:4.560000px;}
.ls47{letter-spacing:4.680000px;}
.ls64{letter-spacing:6.240000px;}
.ls6f{letter-spacing:7.380000px;}
.ls1{letter-spacing:59.532876px;}
.ls0{letter-spacing:59.533476px;}
.ls55{letter-spacing:99.582000px;}
.ls56{letter-spacing:108.479400px;}
.ls53{letter-spacing:108.738000px;}
.ls51{letter-spacing:110.082000px;}
.ls50{letter-spacing:113.568000px;}
.ls52{letter-spacing:115.080000px;}
.ls4f{letter-spacing:117.222000px;}
.ls54{letter-spacing:122.001600px;}
.ls4e{letter-spacing:142.758000px;}
.ls5e{letter-spacing:397.632000px;}
.ls5f{letter-spacing:455.568000px;}
.ls5d{letter-spacing:455.616000px;}
.ls5c{letter-spacing:459.600000px;}
.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;}
}
.ws6a{word-spacing:-124.068000px;}
.ws6b{word-spacing:-115.542000px;}
.ws75{word-spacing:-94.878000px;}
.ws33{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws2{word-spacing:-17.514000px;}
.ws54{word-spacing:-16.680000px;}
.wsc0{word-spacing:-16.500000px;}
.wse9{word-spacing:-16.416000px;}
.wsa{word-spacing:-15.360000px;}
.ws27{word-spacing:-15.000000px;}
.wse5{word-spacing:-14.976000px;}
.wsc5{word-spacing:-14.544000px;}
.wse3{word-spacing:-14.160000px;}
.wse4{word-spacing:-13.968000px;}
.wse7{word-spacing:-13.872000px;}
.wsc9{word-spacing:-13.728000px;}
.ws103{word-spacing:-13.536000px;}
.wsc1{word-spacing:-13.488000px;}
.ws5{word-spacing:-13.344000px;}
.wsc3{word-spacing:-13.296000px;}
.wsc7{word-spacing:-13.248000px;}
.wsc6{word-spacing:-12.768000px;}
.wse6{word-spacing:-12.624000px;}
.wse8{word-spacing:-12.528000px;}
.ws104{word-spacing:-12.384000px;}
.wsea{word-spacing:-12.336000px;}
.ws4{word-spacing:-12.285000px;}
.wsc4{word-spacing:-12.144000px;}
.ws102{word-spacing:-12.096000px;}
.wsc2{word-spacing:-12.000000px;}
.wsc8{word-spacing:-11.760000px;}
.ws1{word-spacing:-10.210662px;}
.ws53{word-spacing:-10.039260px;}
.ws52{word-spacing:-8.745000px;}
.ws3{word-spacing:-7.293330px;}
.wsb1{word-spacing:-6.240000px;}
.ws57{word-spacing:-4.680000px;}
.ws105{word-spacing:-4.560000px;}
.wsfa{word-spacing:-4.416000px;}
.ws46{word-spacing:-4.260000px;}
.ws3a{word-spacing:-4.020000px;}
.wse2{word-spacing:-3.984000px;}
.ws3f{word-spacing:-3.960000px;}
.wsb6{word-spacing:-3.900000px;}
.wsbe{word-spacing:-3.840000px;}
.wsa2{word-spacing:-3.600000px;}
.ws38{word-spacing:-3.480000px;}
.wsf8{word-spacing:-3.408000px;}
.ws37{word-spacing:-3.360000px;}
.wse0{word-spacing:-3.312000px;}
.ws2a{word-spacing:-3.300000px;}
.ws4d{word-spacing:-3.240000px;}
.wsb9{word-spacing:-3.180000px;}
.ws41{word-spacing:-3.060000px;}
.wsb3{word-spacing:-3.000000px;}
.wsf4{word-spacing:-2.976000px;}
.ws44{word-spacing:-2.940000px;}
.ws7{word-spacing:-2.886000px;}
.wscb{word-spacing:-2.880000px;}
.ws2c{word-spacing:-2.820000px;}
.ws56{word-spacing:-2.760000px;}
.wsa9{word-spacing:-2.700000px;}
.ws10b{word-spacing:-2.688000px;}
.wsbd{word-spacing:-2.640000px;}
.ws59{word-spacing:-2.580000px;}
.wsdb{word-spacing:-2.544000px;}
.wsb8{word-spacing:-2.520000px;}
.ws30{word-spacing:-2.460000px;}
.ws31{word-spacing:-2.400000px;}
.ws2d{word-spacing:-2.340000px;}
.ws83{word-spacing:-2.310000px;}
.ws107{word-spacing:-2.304000px;}
.ws58{word-spacing:-2.280000px;}
.ws1d{word-spacing:-2.220000px;}
.ws1f{word-spacing:-2.160000px;}
.wsff{word-spacing:-2.112000px;}
.ws5b{word-spacing:-2.100000px;}
.wsfb{word-spacing:-2.064000px;}
.wsa3{word-spacing:-2.040000px;}
.wsa8{word-spacing:-1.980000px;}
.wsed{word-spacing:-1.968000px;}
.ws3d{word-spacing:-1.920000px;}
.wsf7{word-spacing:-1.872000px;}
.ws11{word-spacing:-1.860000px;}
.wsf5{word-spacing:-1.824000px;}
.wsb7{word-spacing:-1.800000px;}
.ws40{word-spacing:-1.740000px;}
.wsd9{word-spacing:-1.728000px;}
.ws39{word-spacing:-1.680000px;}
.ws108{word-spacing:-1.632000px;}
.ws47{word-spacing:-1.620000px;}
.wsd1{word-spacing:-1.584000px;}
.ws23{word-spacing:-1.560000px;}
.wsdf{word-spacing:-1.536000px;}
.ws21{word-spacing:-1.500000px;}
.wsd2{word-spacing:-1.488000px;}
.ws49{word-spacing:-1.440000px;}
.ws100{word-spacing:-1.392000px;}
.ws42{word-spacing:-1.380000px;}
.wsfd{word-spacing:-1.344000px;}
.wse{word-spacing:-1.320000px;}
.wsd4{word-spacing:-1.296000px;}
.ws43{word-spacing:-1.260000px;}
.wsd3{word-spacing:-1.248000px;}
.ws35{word-spacing:-1.200000px;}
.wsd0{word-spacing:-1.152000px;}
.ws1c{word-spacing:-1.140000px;}
.wseb{word-spacing:-1.104000px;}
.ws14{word-spacing:-1.080000px;}
.wsf2{word-spacing:-1.056000px;}
.ws29{word-spacing:-1.020000px;}
.ws4a{word-spacing:-0.960000px;}
.wsdd{word-spacing:-0.912000px;}
.ws45{word-spacing:-0.900000px;}
.wsda{word-spacing:-0.864000px;}
.ws2e{word-spacing:-0.840000px;}
.ws106{word-spacing:-0.816000px;}
.ws25{word-spacing:-0.780000px;}
.wsde{word-spacing:-0.768000px;}
.ws19{word-spacing:-0.720000px;}
.wsee{word-spacing:-0.672000px;}
.ws2b{word-spacing:-0.660000px;}
.wsec{word-spacing:-0.624000px;}
.ws24{word-spacing:-0.600000px;}
.wsdc{word-spacing:-0.576000px;}
.ws1e{word-spacing:-0.540000px;}
.wsad{word-spacing:-0.528000px;}
.ws5e{word-spacing:-0.480000px;}
.wsfc{word-spacing:-0.432000px;}
.ws8e{word-spacing:-0.420000px;}
.wscf{word-spacing:-0.384000px;}
.ws20{word-spacing:-0.360000px;}
.ws101{word-spacing:-0.336000px;}
.ws18{word-spacing:-0.300000px;}
.wse1{word-spacing:-0.288000px;}
.ws3e{word-spacing:-0.240000px;}
.wsef{word-spacing:-0.192000px;}
.ws32{word-spacing:-0.180000px;}
.wsd8{word-spacing:-0.144000px;}
.ws36{word-spacing:-0.120000px;}
.wsce{word-spacing:-0.096000px;}
.ws10{word-spacing:-0.060000px;}
.wsac{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws51{word-spacing:0.048000px;}
.ws3c{word-spacing:0.060000px;}
.ws28{word-spacing:0.120000px;}
.wsd6{word-spacing:0.144000px;}
.ws15{word-spacing:0.180000px;}
.ws9{word-spacing:0.225000px;}
.ws5a{word-spacing:0.240000px;}
.wsb2{word-spacing:0.300000px;}
.ws8c{word-spacing:0.420000px;}
.ws8{word-spacing:0.450000px;}
.wsa4{word-spacing:0.480000px;}
.wsa5{word-spacing:0.600000px;}
.wsf3{word-spacing:0.624000px;}
.wsd5{word-spacing:0.720000px;}
.wsaa{word-spacing:0.780000px;}
.wsa6{word-spacing:0.816000px;}
.ws3b{word-spacing:0.840000px;}
.wsb4{word-spacing:0.900000px;}
.ws10a{word-spacing:0.912000px;}
.wsb0{word-spacing:1.140000px;}
.ws17{word-spacing:1.200000px;}
.wsd7{word-spacing:1.296000px;}
.wsf1{word-spacing:1.392000px;}
.ws4f{word-spacing:1.440000px;}
.ws48{word-spacing:1.620000px;}
.wsb5{word-spacing:1.740000px;}
.wsf{word-spacing:1.800000px;}
.ws109{word-spacing:1.824000px;}
.wsbb{word-spacing:1.920000px;}
.ws1a{word-spacing:1.980000px;}
.wsf0{word-spacing:2.016000px;}
.ws50{word-spacing:2.040000px;}
.ws1b{word-spacing:2.100000px;}
.ws4e{word-spacing:2.160000px;}
.wsaf{word-spacing:2.220000px;}
.ws8f{word-spacing:2.460000px;}
.ws12{word-spacing:2.520000px;}
.wsf6{word-spacing:2.640000px;}
.wsbc{word-spacing:2.760000px;}
.ws34{word-spacing:2.820000px;}
.ws5c{word-spacing:2.880000px;}
.ws22{word-spacing:3.000000px;}
.wsfe{word-spacing:3.120000px;}
.ws13{word-spacing:3.180000px;}
.wsa7{word-spacing:3.240000px;}
.wsab{word-spacing:3.264000px;}
.ws5d{word-spacing:3.420000px;}
.wsbf{word-spacing:3.660000px;}
.wsb{word-spacing:3.720000px;}
.wsf9{word-spacing:3.840000px;}
.ws5f{word-spacing:3.936000px;}
.ws2f{word-spacing:3.960000px;}
.ws8d{word-spacing:3.984000px;}
.wsba{word-spacing:4.020000px;}
.ws26{word-spacing:4.080000px;}
.ws55{word-spacing:4.500000px;}
.wscd{word-spacing:4.560000px;}
.ws16{word-spacing:4.860000px;}
.wsd{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.wsca{word-spacing:5.460000px;}
.wscc{word-spacing:5.520000px;}
.ws67{word-spacing:18.228000px;}
.ws66{word-spacing:25.074000px;}
.ws60{word-spacing:26.796000px;}
.ws81{word-spacing:36.040800px;}
.ws6d{word-spacing:36.078000px;}
.ws6c{word-spacing:36.876000px;}
.ws62{word-spacing:52.332000px;}
.ws65{word-spacing:80.640000px;}
.ws82{word-spacing:83.328000px;}
.ws73{word-spacing:83.580000px;}
.ws80{word-spacing:84.210000px;}
.ws71{word-spacing:88.242000px;}
.ws77{word-spacing:89.082000px;}
.ws69{word-spacing:93.366000px;}
.ws63{word-spacing:93.618000px;}
.ws7a{word-spacing:94.710000px;}
.ws68{word-spacing:98.238000px;}
.ws72{word-spacing:103.068000px;}
.ws7b{word-spacing:104.454000px;}
.ws84{word-spacing:104.496000px;}
.ws6e{word-spacing:106.722000px;}
.ws64{word-spacing:108.738000px;}
.ws4c{word-spacing:110.064000px;}
.ws4b{word-spacing:115.392000px;}
.ws61{word-spacing:134.988000px;}
.ws89{word-spacing:196.032000px;}
.ws88{word-spacing:201.888000px;}
.ws7d{word-spacing:226.548000px;}
.ws87{word-spacing:252.576000px;}
.ws70{word-spacing:275.520000px;}
.ws86{word-spacing:285.168000px;}
.ws8a{word-spacing:289.584000px;}
.ws85{word-spacing:292.560000px;}
.ws7f{word-spacing:296.520000px;}
.ws8b{word-spacing:297.168000px;}
.ws95{word-spacing:300.960000px;}
.ws6f{word-spacing:310.506000px;}
.ws78{word-spacing:312.858000px;}
.ws76{word-spacing:322.182000px;}
.ws7e{word-spacing:324.492000px;}
.ws7c{word-spacing:333.816000px;}
.ws74{word-spacing:336.168000px;}
.ws79{word-spacing:336.210000px;}
.ws99{word-spacing:350.256000px;}
.ws96{word-spacing:358.272000px;}
.ws91{word-spacing:379.632000px;}
.wsa0{word-spacing:407.568000px;}
.ws92{word-spacing:419.568000px;}
.ws90{word-spacing:428.832000px;}
.ws9a{word-spacing:431.568000px;}
.ws9d{word-spacing:584.304000px;}
.ws93{word-spacing:587.664000px;}
.ws9b{word-spacing:595.632000px;}
.ws9f{word-spacing:595.680000px;}
.ws94{word-spacing:596.304000px;}
.ws9e{word-spacing:599.664000px;}
.ws9c{word-spacing:608.304000px;}
.ws97{word-spacing:613.680000px;}
.ws98{word-spacing:626.304000px;}
.wsa1{word-spacing:1373.568000px;}
.wsae{word-spacing:1416.021600px;}
._e{margin-left:-2898.096000px;}
._10{margin-left:-2874.288000px;}
._3e{margin-left:-114.021000px;}
._48{margin-left:-112.920000px;}
._2{margin-left:-9.368400px;}
._7{margin-left:-7.560000px;}
._1{margin-left:-5.376000px;}
._11{margin-left:-4.335000px;}
._4{margin-left:-3.330000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.080000px;}
._5{width:1.065000px;}
._c{width:2.115000px;}
._b{width:3.120000px;}
._9{width:4.260000px;}
._a{width:6.240000px;}
._d{width:7.500000px;}
._f{width:9.060000px;}
._30{width:10.440000px;}
._78{width:11.880000px;}
._32{width:18.228000px;}
._42{width:34.020000px;}
._8{width:36.982800px;}
._31{width:39.565200px;}
._38{width:46.578000px;}
._34{width:47.754000px;}
._3{width:60.152214px;}
._35{width:74.256000px;}
._61{width:75.852000px;}
._29{width:77.184000px;}
._62{width:85.554000px;}
._1f{width:90.495000px;}
._39{width:93.828000px;}
._4b{width:96.054000px;}
._64{width:98.064000px;}
._4c{width:99.582000px;}
._57{width:101.835000px;}
._52{width:103.866000px;}
._3c{width:105.210000px;}
._3b{width:106.554000px;}
._3d{width:108.738000px;}
._4e{width:110.082000px;}
._3a{width:111.090000px;}
._20{width:114.021000px;}
._36{width:115.080000px;}
._46{width:117.717000px;}
._63{width:119.574000px;}
._1e{width:122.064000px;}
._47{width:136.668000px;}
._45{width:137.946000px;}
._1c{width:141.135000px;}
._40{width:143.313000px;}
._14{width:146.064000px;}
._56{width:147.690000px;}
._5c{width:149.562000px;}
._19{width:154.383000px;}
._1d{width:165.087000px;}
._51{width:168.462000px;}
._58{width:181.272000px;}
._1a{width:183.567000px;}
._43{width:185.526000px;}
._41{width:193.872000px;}
._65{width:194.880000px;}
._37{width:203.196000px;}
._50{width:205.464000px;}
._27{width:207.360000px;}
._5f{width:208.698000px;}
._54{width:212.520000px;}
._3f{width:214.872000px;}
._4a{width:219.534000px;}
._55{width:224.238000px;}
._28{width:228.576000px;}
._60{width:232.608000px;}
._25{width:234.000000px;}
._4f{width:235.914000px;}
._69{width:237.648000px;}
._59{width:242.844000px;}
._5d{width:245.196000px;}
._67{width:249.648000px;}
._5a{width:251.034000px;}
._22{width:252.576000px;}
._44{width:254.290800px;}
._26{width:257.952000px;}
._4d{width:260.610000px;}
._49{width:264.096000px;}
._33{width:272.622000px;}
._23{width:276.528000px;}
._53{width:302.610000px;}
._66{width:309.168000px;}
._2f{width:320.688000px;}
._68{width:338.223000px;}
._1b{width:340.629000px;}
._15{width:351.663000px;}
._5b{width:358.596000px;}
._24{width:364.512000px;}
._5e{width:370.230000px;}
._18{width:392.943000px;}
._6a{width:404.226000px;}
._21{width:444.528000px;}
._76{width:452.976000px;}
._12{width:457.842000px;}
._16{width:464.592000px;}
._2d{width:475.248000px;}
._74{width:502.320000px;}
._77{width:510.336000px;}
._72{width:514.320000px;}
._2a{width:519.216000px;}
._6f{width:522.336000px;}
._6b{width:531.648000px;}
._75{width:537.648000px;}
._6d{width:571.632000px;}
._2c{width:576.576000px;}
._70{width:583.632000px;}
._6c{width:596.304000px;}
._71{width:608.304000px;}
._17{width:611.184000px;}
._6e{width:620.688000px;}
._73{width:638.304000px;}
._2b{width:649.920000px;}
._2e{width:727.248000px;}
._13{width:1148.208000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs9{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsa{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;}
.y2d{bottom:47.777250px;}
.y27b{bottom:80.263500px;}
.y1ff{bottom:83.223600px;}
.y1b1{bottom:83.368800px;}
.y1d7{bottom:83.460300px;}
.y161{bottom:83.661150px;}
.y1e4{bottom:83.770350px;}
.y62{bottom:83.772600px;}
.y14f{bottom:83.912100px;}
.y82{bottom:83.920350px;}
.y104{bottom:83.927100px;}
.yd0{bottom:84.197100px;}
.yac{bottom:84.216150px;}
.y1d4{bottom:84.393600px;}
.y2a{bottom:87.915150px;}
.y1aa{bottom:89.754900px;}
.y1cd{bottom:91.233750px;}
.y239{bottom:92.121900px;}
.y12f{bottom:92.710500px;}
.y27a{bottom:95.263500px;}
.y1d6{bottom:99.204300px;}
.y160{bottom:99.405150px;}
.y1d3{bottom:100.137600px;}
.y1e3{bottom:101.770350px;}
.y61{bottom:101.772600px;}
.y14e{bottom:101.912100px;}
.y81{bottom:101.920350px;}
.y103{bottom:101.927100px;}
.ycf{bottom:102.197100px;}
.y29{bottom:102.911400px;}
.y238{bottom:107.121900px;}
.y1cc{bottom:107.481750px;}
.y12e{bottom:108.958500px;}
.y279{bottom:110.263500px;}
.y19f{bottom:110.802900px;}
.y15f{bottom:115.149150px;}
.y1d2{bottom:115.881600px;}
.y28{bottom:117.904800px;}
.y1a9{bottom:118.758900px;}
.y1fe{bottom:119.628600px;}
.y1e2{bottom:119.770350px;}
.y60{bottom:119.772600px;}
.y14d{bottom:119.912100px;}
.y80{bottom:119.920350px;}
.y102{bottom:119.927100px;}
.yce{bottom:120.197100px;}
.y237{bottom:122.121900px;}
.y1cb{bottom:123.729750px;}
.y278{bottom:125.263500px;}
.y12d{bottom:125.458500px;}
.y1d1{bottom:131.625600px;}
.y1a8{bottom:135.006900px;}
.y236{bottom:137.121900px;}
.y1fd{bottom:137.223600px;}
.y1e1{bottom:137.770350px;}
.y5f{bottom:137.772600px;}
.y14c{bottom:137.912100px;}
.y101{bottom:137.927100px;}
.ycd{bottom:138.197100px;}
.y1ca{bottom:139.977750px;}
.y277{bottom:140.263500px;}
.y12c{bottom:141.706500px;}
.y19e{bottom:142.565400px;}
.y1a7{bottom:151.254900px;}
.y235{bottom:152.121900px;}
.y276{bottom:155.263500px;}
.y7f{bottom:155.515350px;}
.y1e0{bottom:155.770350px;}
.y5e{bottom:155.772600px;}
.y14b{bottom:155.912100px;}
.y100{bottom:155.927100px;}
.ycc{bottom:156.197100px;}
.y1c9{bottom:156.225750px;}
.y12b{bottom:157.954500px;}
.y19d{bottom:158.168400px;}
.y1c3{bottom:161.145750px;}
.y234{bottom:167.121900px;}
.y1a6{bottom:167.502900px;}
.y275{bottom:170.263500px;}
.y1c8{bottom:172.473750px;}
.y7e{bottom:173.515350px;}
.y1fc{bottom:173.628600px;}
.y19c{bottom:173.765700px;}
.y1df{bottom:173.770350px;}
.y5d{bottom:173.772600px;}
.y14a{bottom:173.912100px;}
.yff{bottom:173.927100px;}
.ycb{bottom:174.197100px;}
.y12a{bottom:174.202500px;}
.y233{bottom:182.121900px;}
.y274{bottom:185.263500px;}
.y1c7{bottom:188.721750px;}
.y19b{bottom:189.368700px;}
.y129{bottom:190.450500px;}
.y1fb{bottom:191.223600px;}
.y1de{bottom:191.770350px;}
.y5c{bottom:191.772600px;}
.y149{bottom:191.912100px;}
.yfe{bottom:191.927100px;}
.y1a4{bottom:196.518900px;}
.y232{bottom:197.121900px;}
.y273{bottom:200.263500px;}
.y1a3{bottom:204.774900px;}
.y1c6{bottom:204.969750px;}
.y19a{bottom:204.971700px;}
.y128{bottom:206.698500px;}
.y7d{bottom:209.770350px;}
.y5b{bottom:209.772600px;}
.yca{bottom:209.792100px;}
.y148{bottom:209.912100px;}
.yfd{bottom:209.927100px;}
.y231{bottom:212.121900px;}
.y1a5{bottom:213.018900px;}
.y272{bottom:215.263500px;}
.y199{bottom:220.574700px;}
.y1c5{bottom:221.217750px;}
.y127{bottom:222.946500px;}
.y230{bottom:227.121900px;}
.y1fa{bottom:227.628600px;}
.y7c{bottom:227.770350px;}
.y5a{bottom:227.772600px;}
.yc9{bottom:227.792100px;}
.y147{bottom:227.912100px;}
.yfc{bottom:227.927100px;}
.y27{bottom:229.554900px;}
.y271{bottom:230.263500px;}
.y198{bottom:236.177700px;}
.y1c4{bottom:237.465750px;}
.y126{bottom:239.446500px;}
.y22f{bottom:242.121900px;}
.y1d8{bottom:245.145450px;}
.y270{bottom:245.263500px;}
.y1a2{bottom:245.416050px;}
.y1f9{bottom:245.628600px;}
.y7b{bottom:245.770350px;}
.y59{bottom:245.772600px;}
.y146{bottom:245.912100px;}
.yfb{bottom:245.927100px;}
.y26{bottom:247.564200px;}
.y197{bottom:251.780700px;}
.y125{bottom:255.694500px;}
.y22e{bottom:257.121900px;}
.y26f{bottom:260.263500px;}
.y1f8{bottom:263.635350px;}
.yc8{bottom:263.657100px;}
.y7a{bottom:263.770350px;}
.y58{bottom:263.772600px;}
.yfa{bottom:263.927100px;}
.y1c2{bottom:266.481750px;}
.y196{bottom:267.383700px;}
.y22d{bottom:272.121900px;}
.y124{bottom:272.194500px;}
.y25{bottom:274.909200px;}
.y26e{bottom:275.263500px;}
.y145{bottom:281.507100px;}
.y1f7{bottom:281.635350px;}
.y79{bottom:281.770350px;}
.y57{bottom:281.772600px;}
.yf9{bottom:281.927100px;}
.y1c1{bottom:282.729750px;}
.y195{bottom:282.986700px;}
.y22c{bottom:287.121900px;}
.y1a1{bottom:287.554800px;}
.y123{bottom:288.442500px;}
.y26d{bottom:290.263500px;}
.y24{bottom:292.909200px;}
.y194{bottom:298.589700px;}
.y1c0{bottom:298.977750px;}
.y144{bottom:299.507100px;}
.y1f6{bottom:299.635350px;}
.y78{bottom:299.770350px;}
.y56{bottom:299.772600px;}
.yc7{bottom:299.912100px;}
.yf8{bottom:299.927100px;}
.y22b{bottom:302.121900px;}
.y1a0{bottom:303.298800px;}
.y122{bottom:304.942500px;}
.y26c{bottom:305.263500px;}
.y23{bottom:310.909200px;}
.y193{bottom:314.188200px;}
.y1bf{bottom:315.225750px;}
.y22a{bottom:317.121900px;}
.y1f5{bottom:317.230350px;}
.y77{bottom:317.770350px;}
.y55{bottom:317.772600px;}
.yc6{bottom:317.912100px;}
.yf7{bottom:317.927100px;}
.y26b{bottom:320.263500px;}
.y121{bottom:321.190500px;}
.y22{bottom:328.909200px;}
.y192{bottom:329.791200px;}
.y1be{bottom:331.473750px;}
.y229{bottom:332.121900px;}
.y26a{bottom:335.263500px;}
.y143{bottom:335.372100px;}
.y76{bottom:335.770350px;}
.y54{bottom:335.772600px;}
.yc5{bottom:335.912100px;}
.yf6{bottom:335.927100px;}
.y1b8{bottom:336.393750px;}
.y120{bottom:337.690500px;}
.y191{bottom:345.394200px;}
.y21{bottom:346.909200px;}
.y228{bottom:347.121900px;}
.y1bd{bottom:347.721750px;}
.y269{bottom:350.263500px;}
.y1f4{bottom:353.635350px;}
.y75{bottom:353.770350px;}
.y53{bottom:353.772600px;}
.yc4{bottom:353.912100px;}
.yf5{bottom:353.927100px;}
.y11f{bottom:353.938500px;}
.y190{bottom:360.997200px;}
.y227{bottom:362.121900px;}
.y1bc{bottom:363.969750px;}
.y1b0{bottom:364.814100px;}
.y20{bottom:364.909200px;}
.y268{bottom:365.263500px;}
.y11e{bottom:370.438500px;}
.y1f3{bottom:371.635350px;}
.y74{bottom:371.770350px;}
.y52{bottom:371.772600px;}
.yc3{bottom:371.912100px;}
.yf4{bottom:371.927100px;}
.y18f{bottom:376.600200px;}
.y226{bottom:377.121900px;}
.y1bb{bottom:380.217750px;}
.y267{bottom:380.263500px;}
.y1af{bottom:380.558100px;}
.y1f{bottom:382.909200px;}
.y11d{bottom:386.686500px;}
.y1f2{bottom:389.635350px;}
.y73{bottom:389.770350px;}
.y51{bottom:389.772600px;}
.yc2{bottom:389.912100px;}
.yf3{bottom:389.927100px;}
.y225{bottom:392.121900px;}
.y18e{bottom:392.203200px;}
.y266{bottom:395.263500px;}
.y1ba{bottom:396.465750px;}
.y1e{bottom:400.909200px;}
.y11c{bottom:403.186500px;}
.y224{bottom:407.121900px;}
.y1f1{bottom:407.635350px;}
.y72{bottom:407.770350px;}
.y50{bottom:407.772600px;}
.y18d{bottom:407.806200px;}
.yc1{bottom:407.912100px;}
.yf2{bottom:407.927100px;}
.y265{bottom:410.263500px;}
.y1b9{bottom:412.713750px;}
.y1d{bottom:418.909200px;}
.y11b{bottom:419.434500px;}
.y223{bottom:422.121900px;}
.y18c{bottom:423.403500px;}
.y1f0{bottom:425.230350px;}
.y264{bottom:425.263500px;}
.y71{bottom:425.770350px;}
.y4f{bottom:425.772600px;}
.yc0{bottom:425.912100px;}
.yf1{bottom:425.927100px;}
.y11a{bottom:435.934500px;}
.y1c{bottom:436.909200px;}
.y222{bottom:437.121900px;}
.y18b{bottom:439.006500px;}
.y263{bottom:440.263500px;}
.y70{bottom:443.770350px;}
.y4e{bottom:443.772600px;}
.ybf{bottom:443.912100px;}
.yf0{bottom:443.927100px;}
.y1b7{bottom:444.225750px;}
.y221{bottom:452.121900px;}
.y119{bottom:452.182500px;}
.y18a{bottom:454.609500px;}
.y1b{bottom:454.909200px;}
.y262{bottom:455.263500px;}
.ybe{bottom:458.750850px;}
.y1ef{bottom:461.635350px;}
.y6f{bottom:461.770350px;}
.y4d{bottom:461.772600px;}
.y142{bottom:461.912100px;}
.yef{bottom:461.927100px;}
.y220{bottom:467.121900px;}
.y118{bottom:468.430500px;}
.y189{bottom:470.212500px;}
.y261{bottom:470.263500px;}
.y1a{bottom:472.909200px;}
.y1b6{bottom:479.120700px;}
.y1ee{bottom:479.635350px;}
.y6e{bottom:479.770350px;}
.y4c{bottom:479.772600px;}
.y141{bottom:479.912100px;}
.ybd{bottom:479.920350px;}
.yee{bottom:479.927100px;}
.y21f{bottom:482.121900px;}
.y117{bottom:484.678500px;}
.y260{bottom:485.263500px;}
.y188{bottom:485.815500px;}
.y19{bottom:490.909200px;}
.y21e{bottom:497.121900px;}
.y1ed{bottom:497.635350px;}
.y6d{bottom:497.770350px;}
.y4b{bottom:497.772600px;}
.y140{bottom:497.912100px;}
.ybc{bottom:497.920350px;}
.yed{bottom:497.927100px;}
.y1b5{bottom:498.620700px;}
.y25f{bottom:500.263500px;}
.y116{bottom:501.178500px;}
.y187{bottom:501.418500px;}
.y18{bottom:508.909200px;}
.y21d{bottom:512.121900px;}
.y25e{bottom:515.263500px;}
.y1ec{bottom:515.635350px;}
.y6c{bottom:515.770350px;}
.y4a{bottom:515.772600px;}
.y13f{bottom:515.912100px;}
.ybb{bottom:515.920350px;}
.yec{bottom:515.927100px;}
.y15e{bottom:516.062100px;}
.y186{bottom:517.021500px;}
.y115{bottom:517.426500px;}
.y17{bottom:526.909200px;}
.y21c{bottom:527.121900px;}
.y25d{bottom:530.263500px;}
.y185{bottom:532.624500px;}
.y1eb{bottom:533.635350px;}
.y6b{bottom:533.770350px;}
.y49{bottom:533.772600px;}
.y13e{bottom:533.912100px;}
.yba{bottom:533.920350px;}
.y114{bottom:533.926500px;}
.yeb{bottom:533.927100px;}
.y15d{bottom:534.062100px;}
.y21b{bottom:542.121900px;}
.y1b4{bottom:544.458900px;}
.y16{bottom:544.909200px;}
.y25c{bottom:545.263500px;}
.y184{bottom:548.227500px;}
.y113{bottom:550.174500px;}
.y1ea{bottom:551.635350px;}
.y6a{bottom:551.770350px;}
.y48{bottom:551.772600px;}
.y13d{bottom:551.912100px;}
.yea{bottom:551.927100px;}
.y21a{bottom:557.121900px;}
.y1b3{bottom:560.202900px;}
.y25b{bottom:560.263500px;}
.y1ac{bottom:561.385650px;}
.y15{bottom:562.909200px;}
.y183{bottom:563.825250px;}
.y112{bottom:566.422500px;}
.y1e9{bottom:569.635350px;}
.y15c{bottom:569.657100px;}
.y69{bottom:569.770350px;}
.y47{bottom:569.772600px;}
.y13c{bottom:569.912100px;}
.yb9{bottom:569.920350px;}
.ye9{bottom:569.927100px;}
.y219{bottom:572.121900px;}
.y25a{bottom:575.263500px;}
.y182{bottom:579.428250px;}
.y14{bottom:580.909200px;}
.y111{bottom:582.922500px;}
.yad{bottom:586.472250px;}
.y218{bottom:587.121900px;}
.y1e8{bottom:587.635350px;}
.y68{bottom:587.770350px;}
.y46{bottom:587.772600px;}
.y13b{bottom:587.912100px;}
.ye8{bottom:587.927100px;}
.y259{bottom:590.263500px;}
.y181{bottom:595.031250px;}
.y13{bottom:598.909200px;}
.y110{bottom:599.170500px;}
.y217{bottom:602.121900px;}
.y258{bottom:605.263500px;}
.y1e7{bottom:605.635350px;}
.y67{bottom:605.770350px;}
.y45{bottom:605.772600px;}
.y13a{bottom:605.912100px;}
.yb8{bottom:605.920350px;}
.ye7{bottom:605.927100px;}
.y180{bottom:610.634250px;}
.y10f{bottom:615.670500px;}
.y12{bottom:616.909200px;}
.y216{bottom:617.121900px;}
.y257{bottom:620.263500px;}
.y1e6{bottom:623.635350px;}
.y1dd{bottom:623.770350px;}
.y44{bottom:623.772600px;}
.y139{bottom:623.912100px;}
.yb7{bottom:623.920350px;}
.ye6{bottom:623.927100px;}
.y17f{bottom:626.237250px;}
.y10e{bottom:631.918500px;}
.y215{bottom:632.121900px;}
.y11{bottom:634.909200px;}
.y256{bottom:635.263500px;}
.y1dc{bottom:641.770350px;}
.y43{bottom:641.772600px;}
.y17e{bottom:641.840250px;}
.y15b{bottom:641.912100px;}
.yb6{bottom:641.920350px;}
.ye5{bottom:641.927100px;}
.y214{bottom:647.121900px;}
.y10d{bottom:648.418500px;}
.y255{bottom:650.263500px;}
.y10{bottom:652.909200px;}
.y17d{bottom:657.443250px;}
.y1e5{bottom:659.230350px;}
.y1db{bottom:659.770350px;}
.y42{bottom:659.772600px;}
.yab{bottom:659.905350px;}
.y15a{bottom:659.912100px;}
.yb5{bottom:659.920350px;}
.ye4{bottom:659.927100px;}
.y213{bottom:662.121900px;}
.y10c{bottom:664.666500px;}
.y254{bottom:665.263500px;}
.y17c{bottom:673.046250px;}
.y212{bottom:677.121900px;}
.y1da{bottom:677.770350px;}
.y41{bottom:677.772600px;}
.yaa{bottom:677.905350px;}
.y159{bottom:677.912100px;}
.yb4{bottom:677.920350px;}
.ye3{bottom:677.927100px;}
.y253{bottom:680.263500px;}
.y10b{bottom:680.914500px;}
.y1ae{bottom:682.682100px;}
.y17b{bottom:688.644900px;}
.y211{bottom:692.121900px;}
.y252{bottom:695.263500px;}
.y97{bottom:695.770350px;}
.y40{bottom:695.772600px;}
.ya9{bottom:695.905350px;}
.y158{bottom:695.912100px;}
.yb3{bottom:695.920350px;}
.ye2{bottom:695.927100px;}
.y10a{bottom:697.162500px;}
.yf{bottom:698.067300px;}
.y17a{bottom:704.247900px;}
.y210{bottom:707.121900px;}
.y251{bottom:710.263500px;}
.ye{bottom:710.518050px;}
.y109{bottom:713.662500px;}
.y96{bottom:713.770350px;}
.y3f{bottom:713.772600px;}
.ya8{bottom:713.905350px;}
.y157{bottom:713.912100px;}
.yb2{bottom:713.920350px;}
.ye1{bottom:713.927100px;}
.y179{bottom:719.850900px;}
.y20f{bottom:722.121900px;}
.y250{bottom:725.263500px;}
.y108{bottom:729.910500px;}
.y95{bottom:731.770350px;}
.y3e{bottom:731.772600px;}
.ya7{bottom:731.905350px;}
.yb1{bottom:731.920350px;}
.ye0{bottom:731.927100px;}
.y178{bottom:735.453900px;}
.y20e{bottom:737.121900px;}
.y24f{bottom:740.263500px;}
.yd{bottom:747.658800px;}
.y94{bottom:749.770350px;}
.y3d{bottom:749.772600px;}
.ya6{bottom:749.905350px;}
.yb0{bottom:749.920350px;}
.ydf{bottom:749.927100px;}
.y177{bottom:751.056900px;}
.y20d{bottom:752.121900px;}
.y24e{bottom:755.263500px;}
.yc{bottom:761.158800px;}
.y107{bottom:761.422500px;}
.y176{bottom:766.659900px;}
.y20c{bottom:767.121900px;}
.y93{bottom:767.770350px;}
.y3c{bottom:767.772600px;}
.ya5{bottom:767.905350px;}
.y138{bottom:767.920350px;}
.yde{bottom:767.927100px;}
.yb{bottom:769.233600px;}
.y24d{bottom:770.263500px;}
.y20b{bottom:782.121900px;}
.y175{bottom:782.262900px;}
.ya{bottom:782.733600px;}
.y24c{bottom:785.263500px;}
.yaf{bottom:785.515350px;}
.y92{bottom:785.770350px;}
.y3b{bottom:785.772600px;}
.ya4{bottom:785.905350px;}
.y137{bottom:785.920350px;}
.ydd{bottom:785.927100px;}
.y106{bottom:796.317600px;}
.y20a{bottom:797.121900px;}
.y174{bottom:797.806350px;}
.y1ce{bottom:799.602150px;}
.y24b{bottom:800.263500px;}
.y9{bottom:801.658950px;}
.y66{bottom:803.367600px;}
.y91{bottom:803.770350px;}
.y3a{bottom:803.772600px;}
.ya3{bottom:803.905350px;}
.y136{bottom:803.920350px;}
.ydc{bottom:803.927100px;}
.y209{bottom:812.121900px;}
.y173{bottom:813.409350px;}
.y1ab{bottom:813.846300px;}
.y24a{bottom:815.263500px;}
.y105{bottom:815.817600px;}
.y90{bottom:821.770350px;}
.y39{bottom:821.772600px;}
.ya2{bottom:821.905350px;}
.y135{bottom:821.920350px;}
.ydb{bottom:821.927100px;}
.y208{bottom:827.121900px;}
.y172{bottom:829.012350px;}
.y249{bottom:830.263500px;}
.y8{bottom:830.386200px;}
.y65{bottom:839.232600px;}
.y8f{bottom:839.770350px;}
.y38{bottom:839.772600px;}
.ya1{bottom:839.905350px;}
.y134{bottom:839.920350px;}
.yda{bottom:839.927100px;}
.y207{bottom:842.121900px;}
.y171{bottom:844.615350px;}
.y248{bottom:845.263500px;}
.y7{bottom:851.380950px;}
.y156{bottom:857.522100px;}
.y8e{bottom:857.770350px;}
.y37{bottom:857.772600px;}
.ya0{bottom:857.905350px;}
.y133{bottom:857.920350px;}
.yd9{bottom:857.927100px;}
.y170{bottom:860.218350px;}
.y247{bottom:860.263500px;}
.y206{bottom:875.223600px;}
.y246{bottom:875.263500px;}
.y8d{bottom:875.770350px;}
.y36{bottom:875.772600px;}
.y16f{bottom:875.821350px;}
.y9f{bottom:875.905350px;}
.y132{bottom:875.920350px;}
.yd8{bottom:875.927100px;}
.y245{bottom:890.263500px;}
.y16e{bottom:891.424350px;}
.y8c{bottom:893.770350px;}
.y35{bottom:893.772600px;}
.y155{bottom:893.777100px;}
.y9e{bottom:893.905350px;}
.yd7{bottom:893.927100px;}
.y6{bottom:897.543600px;}
.y244{bottom:905.263500px;}
.y131{bottom:911.515350px;}
.y8b{bottom:911.770350px;}
.y34{bottom:911.772600px;}
.y154{bottom:911.777100px;}
.y9d{bottom:911.905350px;}
.yd6{bottom:911.927100px;}
.y243{bottom:920.263500px;}
.y16c{bottom:923.186850px;}
.y16b{bottom:923.197350px;}
.y205{bottom:929.763600px;}
.y8a{bottom:929.770350px;}
.y33{bottom:929.772600px;}
.y153{bottom:929.777100px;}
.y9c{bottom:929.905350px;}
.yd5{bottom:929.927100px;}
.y5{bottom:934.004400px;}
.y242{bottom:935.263500px;}
.y16d{bottom:938.191350px;}
.y16a{bottom:938.201850px;}
.y165{bottom:946.612350px;}
.y204{bottom:947.763600px;}
.y89{bottom:947.770350px;}
.y32{bottom:947.772600px;}
.y152{bottom:947.777100px;}
.y9b{bottom:947.905350px;}
.y241{bottom:950.263500px;}
.y164{bottom:954.119850px;}
.y240{bottom:965.263500px;}
.y203{bottom:965.358600px;}
.yd4{bottom:965.522100px;}
.y88{bottom:965.770350px;}
.y31{bottom:965.772600px;}
.y151{bottom:965.777100px;}
.y9a{bottom:965.905350px;}
.y169{bottom:969.964350px;}
.y168{bottom:969.974850px;}
.y167{bottom:969.985350px;}
.y4{bottom:970.465200px;}
.y166{bottom:977.492850px;}
.y23f{bottom:980.263500px;}
.y87{bottom:983.770350px;}
.y30{bottom:983.772600px;}
.y150{bottom:983.777100px;}
.y23e{bottom:995.263500px;}
.y99{bottom:1001.500350px;}
.y202{bottom:1001.763600px;}
.y86{bottom:1001.770350px;}
.y2f{bottom:1001.772600px;}
.yd3{bottom:1001.777100px;}
.y3{bottom:1006.926000px;}
.y23d{bottom:1010.263500px;}
.y163{bottom:1018.270350px;}
.y1d0{bottom:1019.367600px;}
.y201{bottom:1019.763600px;}
.y85{bottom:1019.770350px;}
.y64{bottom:1019.772600px;}
.yd2{bottom:1019.777100px;}
.y23c{bottom:1025.263500px;}
.y98{bottom:1037.365350px;}
.y2e{bottom:1037.367600px;}
.y200{bottom:1037.763600px;}
.y84{bottom:1037.770350px;}
.y63{bottom:1037.772600px;}
.yd1{bottom:1037.777100px;}
.y23b{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y1d9{bottom:1132.413450px;}
.y23a{bottom:1132.413900px;}
.y1ad{bottom:1132.417650px;}
.y83{bottom:1132.418700px;}
.y1b2{bottom:1132.420800px;}
.y1cf{bottom:1132.422150px;}
.y27c{bottom:1132.423500px;}
.yae{bottom:1132.424250px;}
.y162{bottom:1132.425150px;}
.y1d5{bottom:1132.437600px;}
.y130{bottom:1132.522500px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h7{height:19.125417px;}
.h9{height:28.412109px;}
.h19{height:29.182617px;}
.h2{height:30.597656px;}
.he{height:32.783203px;}
.h8{height:32.805176px;}
.hd{height:32.816576px;}
.h16{height:33.351562px;}
.h10{height:34.968750px;}
.hf{height:34.992188px;}
.h1c{height:36.852539px;}
.h1f{height:36.869939px;}
.h20{height:36.875339px;}
.h1e{height:37.090739px;}
.h11{height:41.689453px;}
.h14{height:42.117188px;}
.hc{height:43.681641px;}
.hb{height:43.710938px;}
.ha{height:43.740234px;}
.h17{height:52.586484px;}
.h12{height:52.646484px;}
.h24{height:54.266484px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h13{height:58.946900px;}
.h23{height:58.955900px;}
.h1a{height:59.170617px;}
.h15{height:65.291484px;}
.h21{height:66.327562px;}
.h18{height:66.840539px;}
.h22{height:75.093187px;}
.h1d{height:89.158617px;}
.h4{height:92.168262px;}
.h1b{height:96.828539px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:76.535400px;}
.x34{left:78.661350px;}
.x15{left:85.913850px;}
.x6{left:96.094500px;}
.x1{left:97.795200px;}
.x16{left:99.921300px;}
.x48{left:102.047400px;}
.x4{left:106.299150px;}
.x9{left:110.558550px;}
.x46{left:123.307050px;}
.x3{left:125.427900px;}
.xf{left:131.815350px;}
.x14{left:163.880400px;}
.x43{left:190.132650px;}
.x5{left:191.338500px;}
.x42{left:198.877650px;}
.x18{left:211.105200px;}
.x3f{left:236.401350px;}
.x3e{left:239.365350px;}
.x35{left:241.237350px;}
.x37{left:303.361350px;}
.x36{left:307.009350px;}
.x19{left:358.095300px;}
.x38{left:366.313350px;}
.x1e{left:395.475300px;}
.x1f{left:396.934800px;}
.x1a{left:411.991800px;}
.x17{left:414.549300px;}
.x20{left:420.370800px;}
.x21{left:422.712300px;}
.x7{left:455.041500px;}
.xa{left:457.088550px;}
.x22{left:459.262800px;}
.x23{left:460.722300px;}
.x1b{left:467.788800px;}
.x10{left:478.345350px;}
.x45{left:482.598600px;}
.x24{left:484.158300px;}
.x25{left:486.499800px;}
.xc{left:491.108550px;}
.x47{left:503.863050px;}
.x11{left:512.365350px;}
.xb{left:525.278550px;}
.x39{left:535.249350px;}
.x3a{left:564.025350px;}
.x26{left:567.024300px;}
.x44{left:574.820400px;}
.x27{left:590.460300px;}
.x28{left:592.801800px;}
.x29{left:629.352300px;}
.x2a{left:630.811800px;}
.x3c{left:636.457350px;}
.x1c{left:639.127800px;}
.x3b{left:648.337350px;}
.x2b{left:654.247800px;}
.x2c{left:656.589300px;}
.xe{left:663.492300px;}
.x2{left:693.365400px;}
.x2d{left:694.599300px;}
.x2e{left:718.035300px;}
.x2f{left:720.376800px;}
.x40{left:721.709700px;}
.xd{left:728.391600px;}
.x41{left:743.863350px;}
.x12{left:746.017950px;}
.x3d{left:747.506100px;}
.x13{left:749.653950px;}
.x30{left:756.927300px;}
.x31{left:758.386800px;}
.x1d{left:760.717800px;}
.x32{left:781.822800px;}
.x33{left:784.164300px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v6{vertical-align:-11.293333pt;}
.v3{vertical-align:-9.794667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.440000pt;}
.v5{vertical-align:11.240000pt;}
.v4{vertical-align:25.114667pt;}
.v1{vertical-align:27.005867pt;}
.v8{vertical-align:29.312000pt;}
.v7{vertical-align:53.312000pt;}
.ls45{letter-spacing:-1.578667pt;}
.ls57{letter-spacing:-1.381333pt;}
.ls5{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.400000pt;}
.ls59{letter-spacing:-0.373333pt;}
.ls67{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.200000pt;}
.ls24{letter-spacing:-0.160000pt;}
.ls83{letter-spacing:-0.128000pt;}
.ls25{letter-spacing:-0.106667pt;}
.ls42{letter-spacing:-0.053333pt;}
.ls44{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls3{letter-spacing:0.004373pt;}
.ls21{letter-spacing:0.029867pt;}
.ls63{letter-spacing:0.042667pt;}
.lsf{letter-spacing:0.053333pt;}
.ls85{letter-spacing:0.085333pt;}
.ls2f{letter-spacing:0.106667pt;}
.ls78{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls87{letter-spacing:0.170667pt;}
.lsc{letter-spacing:0.213333pt;}
.ls81{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls4b{letter-spacing:0.269973pt;}
.ls33{letter-spacing:0.293440pt;}
.ls71{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls7e{letter-spacing:0.341333pt;}
.ls13{letter-spacing:0.373333pt;}
.ls94{letter-spacing:0.384000pt;}
.ls6e{letter-spacing:0.424533pt;}
.ls49{letter-spacing:0.426667pt;}
.ls86{letter-spacing:0.469333pt;}
.ls22{letter-spacing:0.480000pt;}
.ls6c{letter-spacing:0.493333pt;}
.ls7b{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.533333pt;}
.ls8a{letter-spacing:0.554667pt;}
.ls62{letter-spacing:0.582933pt;}
.ls28{letter-spacing:0.586667pt;}
.ls4c{letter-spacing:0.597333pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls7d{letter-spacing:0.682667pt;}
.lsd{letter-spacing:0.693333pt;}
.ls98{letter-spacing:0.725333pt;}
.ls6d{letter-spacing:0.725867pt;}
.ls2b{letter-spacing:0.746667pt;}
.ls79{letter-spacing:0.768000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls7c{letter-spacing:0.810667pt;}
.ls6b{letter-spacing:0.816000pt;}
.ls3e{letter-spacing:0.853333pt;}
.ls8f{letter-spacing:0.896000pt;}
.ls19{letter-spacing:0.906667pt;}
.ls89{letter-spacing:0.938667pt;}
.ls16{letter-spacing:0.960000pt;}
.ls88{letter-spacing:0.981333pt;}
.ls61{letter-spacing:0.998400pt;}
.ls11{letter-spacing:1.013333pt;}
.ls72{letter-spacing:1.024000pt;}
.ls27{letter-spacing:1.066667pt;}
.ls74{letter-spacing:1.109333pt;}
.ls23{letter-spacing:1.120000pt;}
.ls4d{letter-spacing:1.150453pt;}
.ls77{letter-spacing:1.152000pt;}
.lsb{letter-spacing:1.173333pt;}
.ls95{letter-spacing:1.194667pt;}
.ls12{letter-spacing:1.226667pt;}
.ls96{letter-spacing:1.237333pt;}
.ls40{letter-spacing:1.280000pt;}
.ls75{letter-spacing:1.322667pt;}
.lse{letter-spacing:1.333333pt;}
.ls73{letter-spacing:1.365333pt;}
.ls1e{letter-spacing:1.386667pt;}
.ls76{letter-spacing:1.408000pt;}
.ls4a{letter-spacing:1.434773pt;}
.ls26{letter-spacing:1.440000pt;}
.ls9c{letter-spacing:1.450667pt;}
.ls41{letter-spacing:1.493333pt;}
.ls80{letter-spacing:1.536000pt;}
.ls39{letter-spacing:1.546667pt;}
.ls14{letter-spacing:1.600000pt;}
.ls8c{letter-spacing:1.621333pt;}
.ls8d{letter-spacing:1.664000pt;}
.ls37{letter-spacing:1.706667pt;}
.ls84{letter-spacing:1.749333pt;}
.ls3f{letter-spacing:1.760000pt;}
.ls99{letter-spacing:1.792000pt;}
.ls31{letter-spacing:1.813333pt;}
.ls92{letter-spacing:1.834667pt;}
.ls18{letter-spacing:1.866667pt;}
.ls90{letter-spacing:1.877333pt;}
.ls20{letter-spacing:1.920000pt;}
.ls3b{letter-spacing:1.973333pt;}
.ls1f{letter-spacing:2.026667pt;}
.ls9b{letter-spacing:2.048000pt;}
.ls2c{letter-spacing:2.080000pt;}
.ls2e{letter-spacing:2.133333pt;}
.lsa{letter-spacing:2.186667pt;}
.ls68{letter-spacing:2.240000pt;}
.ls7a{letter-spacing:2.261333pt;}
.ls48{letter-spacing:2.293333pt;}
.ls43{letter-spacing:2.346667pt;}
.ls9e{letter-spacing:2.389333pt;}
.ls36{letter-spacing:2.400000pt;}
.ls46{letter-spacing:2.453333pt;}
.ls29{letter-spacing:2.506667pt;}
.ls9a{letter-spacing:2.517333pt;}
.ls70{letter-spacing:2.560000pt;}
.ls3c{letter-spacing:2.613333pt;}
.ls8b{letter-spacing:2.645333pt;}
.ls65{letter-spacing:2.666667pt;}
.ls9d{letter-spacing:2.688000pt;}
.ls3a{letter-spacing:2.720000pt;}
.ls6a{letter-spacing:2.773333pt;}
.ls69{letter-spacing:2.826667pt;}
.ls30{letter-spacing:2.880000pt;}
.ls7f{letter-spacing:2.901333pt;}
.ls2a{letter-spacing:2.933333pt;}
.ls32{letter-spacing:2.986667pt;}
.ls8e{letter-spacing:3.029333pt;}
.ls1a{letter-spacing:3.093333pt;}
.ls60{letter-spacing:3.146667pt;}
.ls93{letter-spacing:3.157333pt;}
.ls5b{letter-spacing:3.200000pt;}
.ls5a{letter-spacing:3.253333pt;}
.ls2d{letter-spacing:3.413333pt;}
.ls66{letter-spacing:3.466667pt;}
.ls38{letter-spacing:3.520000pt;}
.ls82{letter-spacing:3.541333pt;}
.ls35{letter-spacing:3.573333pt;}
.ls1b{letter-spacing:3.680000pt;}
.ls3d{letter-spacing:3.733333pt;}
.ls34{letter-spacing:3.893333pt;}
.ls91{letter-spacing:3.925333pt;}
.ls58{letter-spacing:3.968000pt;}
.ls97{letter-spacing:4.053333pt;}
.ls47{letter-spacing:4.160000pt;}
.ls64{letter-spacing:5.546667pt;}
.ls6f{letter-spacing:6.560000pt;}
.ls1{letter-spacing:52.918112pt;}
.ls0{letter-spacing:52.918645pt;}
.ls55{letter-spacing:88.517333pt;}
.ls56{letter-spacing:96.426133pt;}
.ls53{letter-spacing:96.656000pt;}
.ls51{letter-spacing:97.850667pt;}
.ls50{letter-spacing:100.949333pt;}
.ls52{letter-spacing:102.293333pt;}
.ls4f{letter-spacing:104.197333pt;}
.ls54{letter-spacing:108.445867pt;}
.ls4e{letter-spacing:126.896000pt;}
.ls5e{letter-spacing:353.450667pt;}
.ls5f{letter-spacing:404.949333pt;}
.ls5d{letter-spacing:404.992000pt;}
.ls5c{letter-spacing:408.533333pt;}
.ws6a{word-spacing:-110.282667pt;}
.ws6b{word-spacing:-102.704000pt;}
.ws75{word-spacing:-84.336000pt;}
.ws33{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws2{word-spacing:-15.568000pt;}
.ws54{word-spacing:-14.826667pt;}
.wsc0{word-spacing:-14.666667pt;}
.wse9{word-spacing:-14.592000pt;}
.wsa{word-spacing:-13.653333pt;}
.ws27{word-spacing:-13.333333pt;}
.wse5{word-spacing:-13.312000pt;}
.wsc5{word-spacing:-12.928000pt;}
.wse3{word-spacing:-12.586667pt;}
.wse4{word-spacing:-12.416000pt;}
.wse7{word-spacing:-12.330667pt;}
.wsc9{word-spacing:-12.202667pt;}
.ws103{word-spacing:-12.032000pt;}
.wsc1{word-spacing:-11.989333pt;}
.ws5{word-spacing:-11.861333pt;}
.wsc3{word-spacing:-11.818667pt;}
.wsc7{word-spacing:-11.776000pt;}
.wsc6{word-spacing:-11.349333pt;}
.wse6{word-spacing:-11.221333pt;}
.wse8{word-spacing:-11.136000pt;}
.ws104{word-spacing:-11.008000pt;}
.wsea{word-spacing:-10.965333pt;}
.ws4{word-spacing:-10.920000pt;}
.wsc4{word-spacing:-10.794667pt;}
.ws102{word-spacing:-10.752000pt;}
.wsc2{word-spacing:-10.666667pt;}
.wsc8{word-spacing:-10.453333pt;}
.ws1{word-spacing:-9.076144pt;}
.ws53{word-spacing:-8.923787pt;}
.ws52{word-spacing:-7.773333pt;}
.ws3{word-spacing:-6.482960pt;}
.wsb1{word-spacing:-5.546667pt;}
.ws57{word-spacing:-4.160000pt;}
.ws105{word-spacing:-4.053333pt;}
.wsfa{word-spacing:-3.925333pt;}
.ws46{word-spacing:-3.786667pt;}
.ws3a{word-spacing:-3.573333pt;}
.wse2{word-spacing:-3.541333pt;}
.ws3f{word-spacing:-3.520000pt;}
.wsb6{word-spacing:-3.466667pt;}
.wsbe{word-spacing:-3.413333pt;}
.wsa2{word-spacing:-3.200000pt;}
.ws38{word-spacing:-3.093333pt;}
.wsf8{word-spacing:-3.029333pt;}
.ws37{word-spacing:-2.986667pt;}
.wse0{word-spacing:-2.944000pt;}
.ws2a{word-spacing:-2.933333pt;}
.ws4d{word-spacing:-2.880000pt;}
.wsb9{word-spacing:-2.826667pt;}
.ws41{word-spacing:-2.720000pt;}
.wsb3{word-spacing:-2.666667pt;}
.wsf4{word-spacing:-2.645333pt;}
.ws44{word-spacing:-2.613333pt;}
.ws7{word-spacing:-2.565333pt;}
.wscb{word-spacing:-2.560000pt;}
.ws2c{word-spacing:-2.506667pt;}
.ws56{word-spacing:-2.453333pt;}
.wsa9{word-spacing:-2.400000pt;}
.ws10b{word-spacing:-2.389333pt;}
.wsbd{word-spacing:-2.346667pt;}
.ws59{word-spacing:-2.293333pt;}
.wsdb{word-spacing:-2.261333pt;}
.wsb8{word-spacing:-2.240000pt;}
.ws30{word-spacing:-2.186667pt;}
.ws31{word-spacing:-2.133333pt;}
.ws2d{word-spacing:-2.080000pt;}
.ws83{word-spacing:-2.053333pt;}
.ws107{word-spacing:-2.048000pt;}
.ws58{word-spacing:-2.026667pt;}
.ws1d{word-spacing:-1.973333pt;}
.ws1f{word-spacing:-1.920000pt;}
.wsff{word-spacing:-1.877333pt;}
.ws5b{word-spacing:-1.866667pt;}
.wsfb{word-spacing:-1.834667pt;}
.wsa3{word-spacing:-1.813333pt;}
.wsa8{word-spacing:-1.760000pt;}
.wsed{word-spacing:-1.749333pt;}
.ws3d{word-spacing:-1.706667pt;}
.wsf7{word-spacing:-1.664000pt;}
.ws11{word-spacing:-1.653333pt;}
.wsf5{word-spacing:-1.621333pt;}
.wsb7{word-spacing:-1.600000pt;}
.ws40{word-spacing:-1.546667pt;}
.wsd9{word-spacing:-1.536000pt;}
.ws39{word-spacing:-1.493333pt;}
.ws108{word-spacing:-1.450667pt;}
.ws47{word-spacing:-1.440000pt;}
.wsd1{word-spacing:-1.408000pt;}
.ws23{word-spacing:-1.386667pt;}
.wsdf{word-spacing:-1.365333pt;}
.ws21{word-spacing:-1.333333pt;}
.wsd2{word-spacing:-1.322667pt;}
.ws49{word-spacing:-1.280000pt;}
.ws100{word-spacing:-1.237333pt;}
.ws42{word-spacing:-1.226667pt;}
.wsfd{word-spacing:-1.194667pt;}
.wse{word-spacing:-1.173333pt;}
.wsd4{word-spacing:-1.152000pt;}
.ws43{word-spacing:-1.120000pt;}
.wsd3{word-spacing:-1.109333pt;}
.ws35{word-spacing:-1.066667pt;}
.wsd0{word-spacing:-1.024000pt;}
.ws1c{word-spacing:-1.013333pt;}
.wseb{word-spacing:-0.981333pt;}
.ws14{word-spacing:-0.960000pt;}
.wsf2{word-spacing:-0.938667pt;}
.ws29{word-spacing:-0.906667pt;}
.ws4a{word-spacing:-0.853333pt;}
.wsdd{word-spacing:-0.810667pt;}
.ws45{word-spacing:-0.800000pt;}
.wsda{word-spacing:-0.768000pt;}
.ws2e{word-spacing:-0.746667pt;}
.ws106{word-spacing:-0.725333pt;}
.ws25{word-spacing:-0.693333pt;}
.wsde{word-spacing:-0.682667pt;}
.ws19{word-spacing:-0.640000pt;}
.wsee{word-spacing:-0.597333pt;}
.ws2b{word-spacing:-0.586667pt;}
.wsec{word-spacing:-0.554667pt;}
.ws24{word-spacing:-0.533333pt;}
.wsdc{word-spacing:-0.512000pt;}
.ws1e{word-spacing:-0.480000pt;}
.wsad{word-spacing:-0.469333pt;}
.ws5e{word-spacing:-0.426667pt;}
.wsfc{word-spacing:-0.384000pt;}
.ws8e{word-spacing:-0.373333pt;}
.wscf{word-spacing:-0.341333pt;}
.ws20{word-spacing:-0.320000pt;}
.ws101{word-spacing:-0.298667pt;}
.ws18{word-spacing:-0.266667pt;}
.wse1{word-spacing:-0.256000pt;}
.ws3e{word-spacing:-0.213333pt;}
.wsef{word-spacing:-0.170667pt;}
.ws32{word-spacing:-0.160000pt;}
.wsd8{word-spacing:-0.128000pt;}
.ws36{word-spacing:-0.106667pt;}
.wsce{word-spacing:-0.085333pt;}
.ws10{word-spacing:-0.053333pt;}
.wsac{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws51{word-spacing:0.042667pt;}
.ws3c{word-spacing:0.053333pt;}
.ws28{word-spacing:0.106667pt;}
.wsd6{word-spacing:0.128000pt;}
.ws15{word-spacing:0.160000pt;}
.ws9{word-spacing:0.200000pt;}
.ws5a{word-spacing:0.213333pt;}
.wsb2{word-spacing:0.266667pt;}
.ws8c{word-spacing:0.373333pt;}
.ws8{word-spacing:0.400000pt;}
.wsa4{word-spacing:0.426667pt;}
.wsa5{word-spacing:0.533333pt;}
.wsf3{word-spacing:0.554667pt;}
.wsd5{word-spacing:0.640000pt;}
.wsaa{word-spacing:0.693333pt;}
.wsa6{word-spacing:0.725333pt;}
.ws3b{word-spacing:0.746667pt;}
.wsb4{word-spacing:0.800000pt;}
.ws10a{word-spacing:0.810667pt;}
.wsb0{word-spacing:1.013333pt;}
.ws17{word-spacing:1.066667pt;}
.wsd7{word-spacing:1.152000pt;}
.wsf1{word-spacing:1.237333pt;}
.ws4f{word-spacing:1.280000pt;}
.ws48{word-spacing:1.440000pt;}
.wsb5{word-spacing:1.546667pt;}
.wsf{word-spacing:1.600000pt;}
.ws109{word-spacing:1.621333pt;}
.wsbb{word-spacing:1.706667pt;}
.ws1a{word-spacing:1.760000pt;}
.wsf0{word-spacing:1.792000pt;}
.ws50{word-spacing:1.813333pt;}
.ws1b{word-spacing:1.866667pt;}
.ws4e{word-spacing:1.920000pt;}
.wsaf{word-spacing:1.973333pt;}
.ws8f{word-spacing:2.186667pt;}
.ws12{word-spacing:2.240000pt;}
.wsf6{word-spacing:2.346667pt;}
.wsbc{word-spacing:2.453333pt;}
.ws34{word-spacing:2.506667pt;}
.ws5c{word-spacing:2.560000pt;}
.ws22{word-spacing:2.666667pt;}
.wsfe{word-spacing:2.773333pt;}
.ws13{word-spacing:2.826667pt;}
.wsa7{word-spacing:2.880000pt;}
.wsab{word-spacing:2.901333pt;}
.ws5d{word-spacing:3.040000pt;}
.wsbf{word-spacing:3.253333pt;}
.wsb{word-spacing:3.306667pt;}
.wsf9{word-spacing:3.413333pt;}
.ws5f{word-spacing:3.498667pt;}
.ws2f{word-spacing:3.520000pt;}
.ws8d{word-spacing:3.541333pt;}
.wsba{word-spacing:3.573333pt;}
.ws26{word-spacing:3.626667pt;}
.ws55{word-spacing:4.000000pt;}
.wscd{word-spacing:4.053333pt;}
.ws16{word-spacing:4.320000pt;}
.wsd{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.wsca{word-spacing:4.853333pt;}
.wscc{word-spacing:4.906667pt;}
.ws67{word-spacing:16.202667pt;}
.ws66{word-spacing:22.288000pt;}
.ws60{word-spacing:23.818667pt;}
.ws81{word-spacing:32.036267pt;}
.ws6d{word-spacing:32.069333pt;}
.ws6c{word-spacing:32.778667pt;}
.ws62{word-spacing:46.517333pt;}
.ws65{word-spacing:71.680000pt;}
.ws82{word-spacing:74.069333pt;}
.ws73{word-spacing:74.293333pt;}
.ws80{word-spacing:74.853333pt;}
.ws71{word-spacing:78.437333pt;}
.ws77{word-spacing:79.184000pt;}
.ws69{word-spacing:82.992000pt;}
.ws63{word-spacing:83.216000pt;}
.ws7a{word-spacing:84.186667pt;}
.ws68{word-spacing:87.322667pt;}
.ws72{word-spacing:91.616000pt;}
.ws7b{word-spacing:92.848000pt;}
.ws84{word-spacing:92.885333pt;}
.ws6e{word-spacing:94.864000pt;}
.ws64{word-spacing:96.656000pt;}
.ws4c{word-spacing:97.834667pt;}
.ws4b{word-spacing:102.570667pt;}
.ws61{word-spacing:119.989333pt;}
.ws89{word-spacing:174.250667pt;}
.ws88{word-spacing:179.456000pt;}
.ws7d{word-spacing:201.376000pt;}
.ws87{word-spacing:224.512000pt;}
.ws70{word-spacing:244.906667pt;}
.ws86{word-spacing:253.482667pt;}
.ws8a{word-spacing:257.408000pt;}
.ws85{word-spacing:260.053333pt;}
.ws7f{word-spacing:263.573333pt;}
.ws8b{word-spacing:264.149333pt;}
.ws95{word-spacing:267.520000pt;}
.ws6f{word-spacing:276.005333pt;}
.ws78{word-spacing:278.096000pt;}
.ws76{word-spacing:286.384000pt;}
.ws7e{word-spacing:288.437333pt;}
.ws7c{word-spacing:296.725333pt;}
.ws74{word-spacing:298.816000pt;}
.ws79{word-spacing:298.853333pt;}
.ws99{word-spacing:311.338667pt;}
.ws96{word-spacing:318.464000pt;}
.ws91{word-spacing:337.450667pt;}
.wsa0{word-spacing:362.282667pt;}
.ws92{word-spacing:372.949333pt;}
.ws90{word-spacing:381.184000pt;}
.ws9a{word-spacing:383.616000pt;}
.ws9d{word-spacing:519.381333pt;}
.ws93{word-spacing:522.368000pt;}
.ws9b{word-spacing:529.450667pt;}
.ws9f{word-spacing:529.493333pt;}
.ws94{word-spacing:530.048000pt;}
.ws9e{word-spacing:533.034667pt;}
.ws9c{word-spacing:540.714667pt;}
.ws97{word-spacing:545.493333pt;}
.ws98{word-spacing:556.714667pt;}
.wsa1{word-spacing:1220.949333pt;}
.wsae{word-spacing:1258.685867pt;}
._e{margin-left:-2576.085333pt;}
._10{margin-left:-2554.922667pt;}
._3e{margin-left:-101.352000pt;}
._48{margin-left:-100.373333pt;}
._2{margin-left:-8.327467pt;}
._7{margin-left:-6.720000pt;}
._1{margin-left:-4.778667pt;}
._11{margin-left:-3.853333pt;}
._4{margin-left:-2.960000pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-0.960000pt;}
._5{width:0.946667pt;}
._c{width:1.880000pt;}
._b{width:2.773333pt;}
._9{width:3.786667pt;}
._a{width:5.546667pt;}
._d{width:6.666667pt;}
._f{width:8.053333pt;}
._30{width:9.280000pt;}
._78{width:10.560000pt;}
._32{width:16.202667pt;}
._42{width:30.240000pt;}
._8{width:32.873600pt;}
._31{width:35.169067pt;}
._38{width:41.402667pt;}
._34{width:42.448000pt;}
._3{width:53.468635pt;}
._35{width:66.005333pt;}
._61{width:67.424000pt;}
._29{width:68.608000pt;}
._62{width:76.048000pt;}
._1f{width:80.440000pt;}
._39{width:83.402667pt;}
._4b{width:85.381333pt;}
._64{width:87.168000pt;}
._4c{width:88.517333pt;}
._57{width:90.520000pt;}
._52{width:92.325333pt;}
._3c{width:93.520000pt;}
._3b{width:94.714667pt;}
._3d{width:96.656000pt;}
._4e{width:97.850667pt;}
._3a{width:98.746667pt;}
._20{width:101.352000pt;}
._36{width:102.293333pt;}
._46{width:104.637333pt;}
._63{width:106.288000pt;}
._1e{width:108.501333pt;}
._47{width:121.482667pt;}
._45{width:122.618667pt;}
._1c{width:125.453333pt;}
._40{width:127.389333pt;}
._14{width:129.834667pt;}
._56{width:131.280000pt;}
._5c{width:132.944000pt;}
._19{width:137.229333pt;}
._1d{width:146.744000pt;}
._51{width:149.744000pt;}
._58{width:161.130667pt;}
._1a{width:163.170667pt;}
._43{width:164.912000pt;}
._41{width:172.330667pt;}
._65{width:173.226667pt;}
._37{width:180.618667pt;}
._50{width:182.634667pt;}
._27{width:184.320000pt;}
._5f{width:185.509333pt;}
._54{width:188.906667pt;}
._3f{width:190.997333pt;}
._4a{width:195.141333pt;}
._55{width:199.322667pt;}
._28{width:203.178667pt;}
._60{width:206.762667pt;}
._25{width:208.000000pt;}
._4f{width:209.701333pt;}
._69{width:211.242667pt;}
._59{width:215.861333pt;}
._5d{width:217.952000pt;}
._67{width:221.909333pt;}
._5a{width:223.141333pt;}
._22{width:224.512000pt;}
._44{width:226.036267pt;}
._26{width:229.290667pt;}
._4d{width:231.653333pt;}
._49{width:234.752000pt;}
._33{width:242.330667pt;}
._23{width:245.802667pt;}
._53{width:268.986667pt;}
._66{width:274.816000pt;}
._2f{width:285.056000pt;}
._68{width:300.642667pt;}
._1b{width:302.781333pt;}
._15{width:312.589333pt;}
._5b{width:318.752000pt;}
._24{width:324.010667pt;}
._5e{width:329.093333pt;}
._18{width:349.282667pt;}
._6a{width:359.312000pt;}
._21{width:395.136000pt;}
._76{width:402.645333pt;}
._12{width:406.970667pt;}
._16{width:412.970667pt;}
._2d{width:422.442667pt;}
._74{width:446.506667pt;}
._77{width:453.632000pt;}
._72{width:457.173333pt;}
._2a{width:461.525333pt;}
._6f{width:464.298667pt;}
._6b{width:472.576000pt;}
._75{width:477.909333pt;}
._6d{width:508.117333pt;}
._2c{width:512.512000pt;}
._70{width:518.784000pt;}
._6c{width:530.048000pt;}
._71{width:540.714667pt;}
._17{width:543.274667pt;}
._6e{width:551.722667pt;}
._73{width:567.381333pt;}
._2b{width:577.706667pt;}
._2e{width:646.442667pt;}
._13{width:1020.629333pt;}
.fs5{font-size:23.320000pt;}
.fs9{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsa{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;}
.y2d{bottom:42.468667pt;}
.y27b{bottom:71.345333pt;}
.y1ff{bottom:73.976533pt;}
.y1b1{bottom:74.105600pt;}
.y1d7{bottom:74.186933pt;}
.y161{bottom:74.365467pt;}
.y1e4{bottom:74.462533pt;}
.y62{bottom:74.464533pt;}
.y14f{bottom:74.588533pt;}
.y82{bottom:74.595867pt;}
.y104{bottom:74.601867pt;}
.yd0{bottom:74.841867pt;}
.yac{bottom:74.858800pt;}
.y1d4{bottom:75.016533pt;}
.y2a{bottom:78.146800pt;}
.y1aa{bottom:79.782133pt;}
.y1cd{bottom:81.096667pt;}
.y239{bottom:81.886133pt;}
.y12f{bottom:82.409333pt;}
.y27a{bottom:84.678667pt;}
.y1d6{bottom:88.181600pt;}
.y160{bottom:88.360133pt;}
.y1d3{bottom:89.011200pt;}
.y1e3{bottom:90.462533pt;}
.y61{bottom:90.464533pt;}
.y14e{bottom:90.588533pt;}
.y81{bottom:90.595867pt;}
.y103{bottom:90.601867pt;}
.ycf{bottom:90.841867pt;}
.y29{bottom:91.476800pt;}
.y238{bottom:95.219467pt;}
.y1cc{bottom:95.539333pt;}
.y12e{bottom:96.852000pt;}
.y279{bottom:98.012000pt;}
.y19f{bottom:98.491467pt;}
.y15f{bottom:102.354800pt;}
.y1d2{bottom:103.005867pt;}
.y28{bottom:104.804267pt;}
.y1a9{bottom:105.563467pt;}
.y1fe{bottom:106.336533pt;}
.y1e2{bottom:106.462533pt;}
.y60{bottom:106.464533pt;}
.y14d{bottom:106.588533pt;}
.y80{bottom:106.595867pt;}
.y102{bottom:106.601867pt;}
.yce{bottom:106.841867pt;}
.y237{bottom:108.552800pt;}
.y1cb{bottom:109.982000pt;}
.y278{bottom:111.345333pt;}
.y12d{bottom:111.518667pt;}
.y1d1{bottom:117.000533pt;}
.y1a8{bottom:120.006133pt;}
.y236{bottom:121.886133pt;}
.y1fd{bottom:121.976533pt;}
.y1e1{bottom:122.462533pt;}
.y5f{bottom:122.464533pt;}
.y14c{bottom:122.588533pt;}
.y101{bottom:122.601867pt;}
.ycd{bottom:122.841867pt;}
.y1ca{bottom:124.424667pt;}
.y277{bottom:124.678667pt;}
.y12c{bottom:125.961333pt;}
.y19e{bottom:126.724800pt;}
.y1a7{bottom:134.448800pt;}
.y235{bottom:135.219467pt;}
.y276{bottom:138.012000pt;}
.y7f{bottom:138.235867pt;}
.y1e0{bottom:138.462533pt;}
.y5e{bottom:138.464533pt;}
.y14b{bottom:138.588533pt;}
.y100{bottom:138.601867pt;}
.ycc{bottom:138.841867pt;}
.y1c9{bottom:138.867333pt;}
.y12b{bottom:140.404000pt;}
.y19d{bottom:140.594133pt;}
.y1c3{bottom:143.240667pt;}
.y234{bottom:148.552800pt;}
.y1a6{bottom:148.891467pt;}
.y275{bottom:151.345333pt;}
.y1c8{bottom:153.310000pt;}
.y7e{bottom:154.235867pt;}
.y1fc{bottom:154.336533pt;}
.y19c{bottom:154.458400pt;}
.y1df{bottom:154.462533pt;}
.y5d{bottom:154.464533pt;}
.y14a{bottom:154.588533pt;}
.yff{bottom:154.601867pt;}
.ycb{bottom:154.841867pt;}
.y12a{bottom:154.846667pt;}
.y233{bottom:161.886133pt;}
.y274{bottom:164.678667pt;}
.y1c7{bottom:167.752667pt;}
.y19b{bottom:168.327733pt;}
.y129{bottom:169.289333pt;}
.y1fb{bottom:169.976533pt;}
.y1de{bottom:170.462533pt;}
.y5c{bottom:170.464533pt;}
.y149{bottom:170.588533pt;}
.yfe{bottom:170.601867pt;}
.y1a4{bottom:174.683467pt;}
.y232{bottom:175.219467pt;}
.y273{bottom:178.012000pt;}
.y1a3{bottom:182.022133pt;}
.y1c6{bottom:182.195333pt;}
.y19a{bottom:182.197067pt;}
.y128{bottom:183.732000pt;}
.y7d{bottom:186.462533pt;}
.y5b{bottom:186.464533pt;}
.yca{bottom:186.481867pt;}
.y148{bottom:186.588533pt;}
.yfd{bottom:186.601867pt;}
.y231{bottom:188.552800pt;}
.y1a5{bottom:189.350133pt;}
.y272{bottom:191.345333pt;}
.y199{bottom:196.066400pt;}
.y1c5{bottom:196.638000pt;}
.y127{bottom:198.174667pt;}
.y230{bottom:201.886133pt;}
.y1fa{bottom:202.336533pt;}
.y7c{bottom:202.462533pt;}
.y5a{bottom:202.464533pt;}
.yc9{bottom:202.481867pt;}
.y147{bottom:202.588533pt;}
.yfc{bottom:202.601867pt;}
.y27{bottom:204.048800pt;}
.y271{bottom:204.678667pt;}
.y198{bottom:209.935733pt;}
.y1c4{bottom:211.080667pt;}
.y126{bottom:212.841333pt;}
.y22f{bottom:215.219467pt;}
.y1d8{bottom:217.907067pt;}
.y270{bottom:218.012000pt;}
.y1a2{bottom:218.147600pt;}
.y1f9{bottom:218.336533pt;}
.y7b{bottom:218.462533pt;}
.y59{bottom:218.464533pt;}
.y146{bottom:218.588533pt;}
.yfb{bottom:218.601867pt;}
.y26{bottom:220.057067pt;}
.y197{bottom:223.805067pt;}
.y125{bottom:227.284000pt;}
.y22e{bottom:228.552800pt;}
.y26f{bottom:231.345333pt;}
.y1f8{bottom:234.342533pt;}
.yc8{bottom:234.361867pt;}
.y7a{bottom:234.462533pt;}
.y58{bottom:234.464533pt;}
.yfa{bottom:234.601867pt;}
.y1c2{bottom:236.872667pt;}
.y196{bottom:237.674400pt;}
.y22d{bottom:241.886133pt;}
.y124{bottom:241.950667pt;}
.y25{bottom:244.363733pt;}
.y26e{bottom:244.678667pt;}
.y145{bottom:250.228533pt;}
.y1f7{bottom:250.342533pt;}
.y79{bottom:250.462533pt;}
.y57{bottom:250.464533pt;}
.yf9{bottom:250.601867pt;}
.y1c1{bottom:251.315333pt;}
.y195{bottom:251.543733pt;}
.y22c{bottom:255.219467pt;}
.y1a1{bottom:255.604267pt;}
.y123{bottom:256.393333pt;}
.y26d{bottom:258.012000pt;}
.y24{bottom:260.363733pt;}
.y194{bottom:265.413067pt;}
.y1c0{bottom:265.758000pt;}
.y144{bottom:266.228533pt;}
.y1f6{bottom:266.342533pt;}
.y78{bottom:266.462533pt;}
.y56{bottom:266.464533pt;}
.yc7{bottom:266.588533pt;}
.yf8{bottom:266.601867pt;}
.y22b{bottom:268.552800pt;}
.y1a0{bottom:269.598933pt;}
.y122{bottom:271.060000pt;}
.y26c{bottom:271.345333pt;}
.y23{bottom:276.363733pt;}
.y193{bottom:279.278400pt;}
.y1bf{bottom:280.200667pt;}
.y22a{bottom:281.886133pt;}
.y1f5{bottom:281.982533pt;}
.y77{bottom:282.462533pt;}
.y55{bottom:282.464533pt;}
.yc6{bottom:282.588533pt;}
.yf7{bottom:282.601867pt;}
.y26b{bottom:284.678667pt;}
.y121{bottom:285.502667pt;}
.y22{bottom:292.363733pt;}
.y192{bottom:293.147733pt;}
.y1be{bottom:294.643333pt;}
.y229{bottom:295.219467pt;}
.y26a{bottom:298.012000pt;}
.y143{bottom:298.108533pt;}
.y76{bottom:298.462533pt;}
.y54{bottom:298.464533pt;}
.yc5{bottom:298.588533pt;}
.yf6{bottom:298.601867pt;}
.y1b8{bottom:299.016667pt;}
.y120{bottom:300.169333pt;}
.y191{bottom:307.017067pt;}
.y21{bottom:308.363733pt;}
.y228{bottom:308.552800pt;}
.y1bd{bottom:309.086000pt;}
.y269{bottom:311.345333pt;}
.y1f4{bottom:314.342533pt;}
.y75{bottom:314.462533pt;}
.y53{bottom:314.464533pt;}
.yc4{bottom:314.588533pt;}
.yf5{bottom:314.601867pt;}
.y11f{bottom:314.612000pt;}
.y190{bottom:320.886400pt;}
.y227{bottom:321.886133pt;}
.y1bc{bottom:323.528667pt;}
.y1b0{bottom:324.279200pt;}
.y20{bottom:324.363733pt;}
.y268{bottom:324.678667pt;}
.y11e{bottom:329.278667pt;}
.y1f3{bottom:330.342533pt;}
.y74{bottom:330.462533pt;}
.y52{bottom:330.464533pt;}
.yc3{bottom:330.588533pt;}
.yf4{bottom:330.601867pt;}
.y18f{bottom:334.755733pt;}
.y226{bottom:335.219467pt;}
.y1bb{bottom:337.971333pt;}
.y267{bottom:338.012000pt;}
.y1af{bottom:338.273867pt;}
.y1f{bottom:340.363733pt;}
.y11d{bottom:343.721333pt;}
.y1f2{bottom:346.342533pt;}
.y73{bottom:346.462533pt;}
.y51{bottom:346.464533pt;}
.yc2{bottom:346.588533pt;}
.yf3{bottom:346.601867pt;}
.y225{bottom:348.552800pt;}
.y18e{bottom:348.625067pt;}
.y266{bottom:351.345333pt;}
.y1ba{bottom:352.414000pt;}
.y1e{bottom:356.363733pt;}
.y11c{bottom:358.388000pt;}
.y224{bottom:361.886133pt;}
.y1f1{bottom:362.342533pt;}
.y72{bottom:362.462533pt;}
.y50{bottom:362.464533pt;}
.y18d{bottom:362.494400pt;}
.yc1{bottom:362.588533pt;}
.yf2{bottom:362.601867pt;}
.y265{bottom:364.678667pt;}
.y1b9{bottom:366.856667pt;}
.y1d{bottom:372.363733pt;}
.y11b{bottom:372.830667pt;}
.y223{bottom:375.219467pt;}
.y18c{bottom:376.358667pt;}
.y1f0{bottom:377.982533pt;}
.y264{bottom:378.012000pt;}
.y71{bottom:378.462533pt;}
.y4f{bottom:378.464533pt;}
.yc0{bottom:378.588533pt;}
.yf1{bottom:378.601867pt;}
.y11a{bottom:387.497333pt;}
.y1c{bottom:388.363733pt;}
.y222{bottom:388.552800pt;}
.y18b{bottom:390.228000pt;}
.y263{bottom:391.345333pt;}
.y70{bottom:394.462533pt;}
.y4e{bottom:394.464533pt;}
.ybf{bottom:394.588533pt;}
.yf0{bottom:394.601867pt;}
.y1b7{bottom:394.867333pt;}
.y221{bottom:401.886133pt;}
.y119{bottom:401.940000pt;}
.y18a{bottom:404.097333pt;}
.y1b{bottom:404.363733pt;}
.y262{bottom:404.678667pt;}
.ybe{bottom:407.778533pt;}
.y1ef{bottom:410.342533pt;}
.y6f{bottom:410.462533pt;}
.y4d{bottom:410.464533pt;}
.y142{bottom:410.588533pt;}
.yef{bottom:410.601867pt;}
.y220{bottom:415.219467pt;}
.y118{bottom:416.382667pt;}
.y189{bottom:417.966667pt;}
.y261{bottom:418.012000pt;}
.y1a{bottom:420.363733pt;}
.y1b6{bottom:425.885067pt;}
.y1ee{bottom:426.342533pt;}
.y6e{bottom:426.462533pt;}
.y4c{bottom:426.464533pt;}
.y141{bottom:426.588533pt;}
.ybd{bottom:426.595867pt;}
.yee{bottom:426.601867pt;}
.y21f{bottom:428.552800pt;}
.y117{bottom:430.825333pt;}
.y260{bottom:431.345333pt;}
.y188{bottom:431.836000pt;}
.y19{bottom:436.363733pt;}
.y21e{bottom:441.886133pt;}
.y1ed{bottom:442.342533pt;}
.y6d{bottom:442.462533pt;}
.y4b{bottom:442.464533pt;}
.y140{bottom:442.588533pt;}
.ybc{bottom:442.595867pt;}
.yed{bottom:442.601867pt;}
.y1b5{bottom:443.218400pt;}
.y25f{bottom:444.678667pt;}
.y116{bottom:445.492000pt;}
.y187{bottom:445.705333pt;}
.y18{bottom:452.363733pt;}
.y21d{bottom:455.219467pt;}
.y25e{bottom:458.012000pt;}
.y1ec{bottom:458.342533pt;}
.y6c{bottom:458.462533pt;}
.y4a{bottom:458.464533pt;}
.y13f{bottom:458.588533pt;}
.ybb{bottom:458.595867pt;}
.yec{bottom:458.601867pt;}
.y15e{bottom:458.721867pt;}
.y186{bottom:459.574667pt;}
.y115{bottom:459.934667pt;}
.y17{bottom:468.363733pt;}
.y21c{bottom:468.552800pt;}
.y25d{bottom:471.345333pt;}
.y185{bottom:473.444000pt;}
.y1eb{bottom:474.342533pt;}
.y6b{bottom:474.462533pt;}
.y49{bottom:474.464533pt;}
.y13e{bottom:474.588533pt;}
.yba{bottom:474.595867pt;}
.y114{bottom:474.601333pt;}
.yeb{bottom:474.601867pt;}
.y15d{bottom:474.721867pt;}
.y21b{bottom:481.886133pt;}
.y1b4{bottom:483.963467pt;}
.y16{bottom:484.363733pt;}
.y25c{bottom:484.678667pt;}
.y184{bottom:487.313333pt;}
.y113{bottom:489.044000pt;}
.y1ea{bottom:490.342533pt;}
.y6a{bottom:490.462533pt;}
.y48{bottom:490.464533pt;}
.y13d{bottom:490.588533pt;}
.yea{bottom:490.601867pt;}
.y21a{bottom:495.219467pt;}
.y1b3{bottom:497.958133pt;}
.y25b{bottom:498.012000pt;}
.y1ac{bottom:499.009467pt;}
.y15{bottom:500.363733pt;}
.y183{bottom:501.178000pt;}
.y112{bottom:503.486667pt;}
.y1e9{bottom:506.342533pt;}
.y15c{bottom:506.361867pt;}
.y69{bottom:506.462533pt;}
.y47{bottom:506.464533pt;}
.y13c{bottom:506.588533pt;}
.yb9{bottom:506.595867pt;}
.ye9{bottom:506.601867pt;}
.y219{bottom:508.552800pt;}
.y25a{bottom:511.345333pt;}
.y182{bottom:515.047333pt;}
.y14{bottom:516.363733pt;}
.y111{bottom:518.153333pt;}
.yad{bottom:521.308667pt;}
.y218{bottom:521.886133pt;}
.y1e8{bottom:522.342533pt;}
.y68{bottom:522.462533pt;}
.y46{bottom:522.464533pt;}
.y13b{bottom:522.588533pt;}
.ye8{bottom:522.601867pt;}
.y259{bottom:524.678667pt;}
.y181{bottom:528.916667pt;}
.y13{bottom:532.363733pt;}
.y110{bottom:532.596000pt;}
.y217{bottom:535.219467pt;}
.y258{bottom:538.012000pt;}
.y1e7{bottom:538.342533pt;}
.y67{bottom:538.462533pt;}
.y45{bottom:538.464533pt;}
.y13a{bottom:538.588533pt;}
.yb8{bottom:538.595867pt;}
.ye7{bottom:538.601867pt;}
.y180{bottom:542.786000pt;}
.y10f{bottom:547.262667pt;}
.y12{bottom:548.363733pt;}
.y216{bottom:548.552800pt;}
.y257{bottom:551.345333pt;}
.y1e6{bottom:554.342533pt;}
.y1dd{bottom:554.462533pt;}
.y44{bottom:554.464533pt;}
.y139{bottom:554.588533pt;}
.yb7{bottom:554.595867pt;}
.ye6{bottom:554.601867pt;}
.y17f{bottom:556.655333pt;}
.y10e{bottom:561.705333pt;}
.y215{bottom:561.886133pt;}
.y11{bottom:564.363733pt;}
.y256{bottom:564.678667pt;}
.y1dc{bottom:570.462533pt;}
.y43{bottom:570.464533pt;}
.y17e{bottom:570.524667pt;}
.y15b{bottom:570.588533pt;}
.yb6{bottom:570.595867pt;}
.ye5{bottom:570.601867pt;}
.y214{bottom:575.219467pt;}
.y10d{bottom:576.372000pt;}
.y255{bottom:578.012000pt;}
.y10{bottom:580.363733pt;}
.y17d{bottom:584.394000pt;}
.y1e5{bottom:585.982533pt;}
.y1db{bottom:586.462533pt;}
.y42{bottom:586.464533pt;}
.yab{bottom:586.582533pt;}
.y15a{bottom:586.588533pt;}
.yb5{bottom:586.595867pt;}
.ye4{bottom:586.601867pt;}
.y213{bottom:588.552800pt;}
.y10c{bottom:590.814667pt;}
.y254{bottom:591.345333pt;}
.y17c{bottom:598.263333pt;}
.y212{bottom:601.886133pt;}
.y1da{bottom:602.462533pt;}
.y41{bottom:602.464533pt;}
.yaa{bottom:602.582533pt;}
.y159{bottom:602.588533pt;}
.yb4{bottom:602.595867pt;}
.ye3{bottom:602.601867pt;}
.y253{bottom:604.678667pt;}
.y10b{bottom:605.257333pt;}
.y1ae{bottom:606.828533pt;}
.y17b{bottom:612.128800pt;}
.y211{bottom:615.219467pt;}
.y252{bottom:618.012000pt;}
.y97{bottom:618.462533pt;}
.y40{bottom:618.464533pt;}
.ya9{bottom:618.582533pt;}
.y158{bottom:618.588533pt;}
.yb3{bottom:618.595867pt;}
.ye2{bottom:618.601867pt;}
.y10a{bottom:619.700000pt;}
.yf{bottom:620.504267pt;}
.y17a{bottom:625.998133pt;}
.y210{bottom:628.552800pt;}
.y251{bottom:631.345333pt;}
.ye{bottom:631.571600pt;}
.y109{bottom:634.366667pt;}
.y96{bottom:634.462533pt;}
.y3f{bottom:634.464533pt;}
.ya8{bottom:634.582533pt;}
.y157{bottom:634.588533pt;}
.yb2{bottom:634.595867pt;}
.ye1{bottom:634.601867pt;}
.y179{bottom:639.867467pt;}
.y20f{bottom:641.886133pt;}
.y250{bottom:644.678667pt;}
.y108{bottom:648.809333pt;}
.y95{bottom:650.462533pt;}
.y3e{bottom:650.464533pt;}
.ya7{bottom:650.582533pt;}
.yb1{bottom:650.595867pt;}
.ye0{bottom:650.601867pt;}
.y178{bottom:653.736800pt;}
.y20e{bottom:655.219467pt;}
.y24f{bottom:658.012000pt;}
.yd{bottom:664.585600pt;}
.y94{bottom:666.462533pt;}
.y3d{bottom:666.464533pt;}
.ya6{bottom:666.582533pt;}
.yb0{bottom:666.595867pt;}
.ydf{bottom:666.601867pt;}
.y177{bottom:667.606133pt;}
.y20d{bottom:668.552800pt;}
.y24e{bottom:671.345333pt;}
.yc{bottom:676.585600pt;}
.y107{bottom:676.820000pt;}
.y176{bottom:681.475467pt;}
.y20c{bottom:681.886133pt;}
.y93{bottom:682.462533pt;}
.y3c{bottom:682.464533pt;}
.ya5{bottom:682.582533pt;}
.y138{bottom:682.595867pt;}
.yde{bottom:682.601867pt;}
.yb{bottom:683.763200pt;}
.y24d{bottom:684.678667pt;}
.y20b{bottom:695.219467pt;}
.y175{bottom:695.344800pt;}
.ya{bottom:695.763200pt;}
.y24c{bottom:698.012000pt;}
.yaf{bottom:698.235867pt;}
.y92{bottom:698.462533pt;}
.y3b{bottom:698.464533pt;}
.ya4{bottom:698.582533pt;}
.y137{bottom:698.595867pt;}
.ydd{bottom:698.601867pt;}
.y106{bottom:707.837867pt;}
.y20a{bottom:708.552800pt;}
.y174{bottom:709.161200pt;}
.y1ce{bottom:710.757467pt;}
.y24b{bottom:711.345333pt;}
.y9{bottom:712.585733pt;}
.y66{bottom:714.104533pt;}
.y91{bottom:714.462533pt;}
.y3a{bottom:714.464533pt;}
.ya3{bottom:714.582533pt;}
.y136{bottom:714.595867pt;}
.ydc{bottom:714.601867pt;}
.y209{bottom:721.886133pt;}
.y173{bottom:723.030533pt;}
.y1ab{bottom:723.418933pt;}
.y24a{bottom:724.678667pt;}
.y105{bottom:725.171200pt;}
.y90{bottom:730.462533pt;}
.y39{bottom:730.464533pt;}
.ya2{bottom:730.582533pt;}
.y135{bottom:730.595867pt;}
.ydb{bottom:730.601867pt;}
.y208{bottom:735.219467pt;}
.y172{bottom:736.899867pt;}
.y249{bottom:738.012000pt;}
.y8{bottom:738.121067pt;}
.y65{bottom:745.984533pt;}
.y8f{bottom:746.462533pt;}
.y38{bottom:746.464533pt;}
.ya1{bottom:746.582533pt;}
.y134{bottom:746.595867pt;}
.yda{bottom:746.601867pt;}
.y207{bottom:748.552800pt;}
.y171{bottom:750.769200pt;}
.y248{bottom:751.345333pt;}
.y7{bottom:756.783067pt;}
.y156{bottom:762.241867pt;}
.y8e{bottom:762.462533pt;}
.y37{bottom:762.464533pt;}
.ya0{bottom:762.582533pt;}
.y133{bottom:762.595867pt;}
.yd9{bottom:762.601867pt;}
.y170{bottom:764.638533pt;}
.y247{bottom:764.678667pt;}
.y206{bottom:777.976533pt;}
.y246{bottom:778.012000pt;}
.y8d{bottom:778.462533pt;}
.y36{bottom:778.464533pt;}
.y16f{bottom:778.507867pt;}
.y9f{bottom:778.582533pt;}
.y132{bottom:778.595867pt;}
.yd8{bottom:778.601867pt;}
.y245{bottom:791.345333pt;}
.y16e{bottom:792.377200pt;}
.y8c{bottom:794.462533pt;}
.y35{bottom:794.464533pt;}
.y155{bottom:794.468533pt;}
.y9e{bottom:794.582533pt;}
.yd7{bottom:794.601867pt;}
.y6{bottom:797.816533pt;}
.y244{bottom:804.678667pt;}
.y131{bottom:810.235867pt;}
.y8b{bottom:810.462533pt;}
.y34{bottom:810.464533pt;}
.y154{bottom:810.468533pt;}
.y9d{bottom:810.582533pt;}
.yd6{bottom:810.601867pt;}
.y243{bottom:818.012000pt;}
.y16c{bottom:820.610533pt;}
.y16b{bottom:820.619867pt;}
.y205{bottom:826.456533pt;}
.y8a{bottom:826.462533pt;}
.y33{bottom:826.464533pt;}
.y153{bottom:826.468533pt;}
.y9c{bottom:826.582533pt;}
.yd5{bottom:826.601867pt;}
.y5{bottom:830.226133pt;}
.y242{bottom:831.345333pt;}
.y16d{bottom:833.947867pt;}
.y16a{bottom:833.957200pt;}
.y165{bottom:841.433200pt;}
.y204{bottom:842.456533pt;}
.y89{bottom:842.462533pt;}
.y32{bottom:842.464533pt;}
.y152{bottom:842.468533pt;}
.y9b{bottom:842.582533pt;}
.y241{bottom:844.678667pt;}
.y164{bottom:848.106533pt;}
.y240{bottom:858.012000pt;}
.y203{bottom:858.096533pt;}
.yd4{bottom:858.241867pt;}
.y88{bottom:858.462533pt;}
.y31{bottom:858.464533pt;}
.y151{bottom:858.468533pt;}
.y9a{bottom:858.582533pt;}
.y169{bottom:862.190533pt;}
.y168{bottom:862.199867pt;}
.y167{bottom:862.209200pt;}
.y4{bottom:862.635733pt;}
.y166{bottom:868.882533pt;}
.y23f{bottom:871.345333pt;}
.y87{bottom:874.462533pt;}
.y30{bottom:874.464533pt;}
.y150{bottom:874.468533pt;}
.y23e{bottom:884.678667pt;}
.y99{bottom:890.222533pt;}
.y202{bottom:890.456533pt;}
.y86{bottom:890.462533pt;}
.y2f{bottom:890.464533pt;}
.yd3{bottom:890.468533pt;}
.y3{bottom:895.045333pt;}
.y23d{bottom:898.012000pt;}
.y163{bottom:905.129200pt;}
.y1d0{bottom:906.104533pt;}
.y201{bottom:906.456533pt;}
.y85{bottom:906.462533pt;}
.y64{bottom:906.464533pt;}
.yd2{bottom:906.468533pt;}
.y23c{bottom:911.345333pt;}
.y98{bottom:922.102533pt;}
.y2e{bottom:922.104533pt;}
.y200{bottom:922.456533pt;}
.y84{bottom:922.462533pt;}
.y63{bottom:922.464533pt;}
.yd1{bottom:922.468533pt;}
.y23b{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y1d9{bottom:1006.589733pt;}
.y23a{bottom:1006.590133pt;}
.y1ad{bottom:1006.593467pt;}
.y83{bottom:1006.594400pt;}
.y1b2{bottom:1006.596267pt;}
.y1cf{bottom:1006.597467pt;}
.y27c{bottom:1006.598667pt;}
.yae{bottom:1006.599333pt;}
.y162{bottom:1006.600133pt;}
.y1d5{bottom:1006.611200pt;}
.y130{bottom:1006.686667pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h7{height:17.000371pt;}
.h9{height:25.255208pt;}
.h19{height:25.940104pt;}
.h2{height:27.197917pt;}
.he{height:29.140625pt;}
.h8{height:29.160156pt;}
.hd{height:29.170290pt;}
.h16{height:29.645833pt;}
.h10{height:31.083333pt;}
.hf{height:31.104167pt;}
.h1c{height:32.757812pt;}
.h1f{height:32.773279pt;}
.h20{height:32.778079pt;}
.h1e{height:32.969546pt;}
.h11{height:37.057292pt;}
.h14{height:37.437500pt;}
.hc{height:38.828125pt;}
.hb{height:38.854167pt;}
.ha{height:38.880208pt;}
.h17{height:46.743542pt;}
.h12{height:46.796875pt;}
.h24{height:48.236875pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h13{height:52.397245pt;}
.h23{height:52.405245pt;}
.h1a{height:52.596104pt;}
.h15{height:58.036875pt;}
.h21{height:58.957833pt;}
.h18{height:59.413812pt;}
.h22{height:66.749500pt;}
.h1d{height:79.252104pt;}
.h4{height:81.927344pt;}
.h1b{height:86.069813pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:68.031467pt;}
.x34{left:69.921200pt;}
.x15{left:76.367867pt;}
.x6{left:85.417333pt;}
.x1{left:86.929067pt;}
.x16{left:88.818933pt;}
.x48{left:90.708800pt;}
.x4{left:94.488133pt;}
.x9{left:98.274267pt;}
.x46{left:109.606267pt;}
.x3{left:111.491467pt;}
.xf{left:117.169200pt;}
.x14{left:145.671467pt;}
.x43{left:169.006800pt;}
.x5{left:170.078667pt;}
.x42{left:176.780133pt;}
.x18{left:187.649067pt;}
.x3f{left:210.134533pt;}
.x3e{left:212.769200pt;}
.x35{left:214.433200pt;}
.x37{left:269.654533pt;}
.x36{left:272.897200pt;}
.x19{left:318.306933pt;}
.x38{left:325.611867pt;}
.x1e{left:351.533600pt;}
.x1f{left:352.830933pt;}
.x1a{left:366.214933pt;}
.x17{left:368.488267pt;}
.x20{left:373.662933pt;}
.x21{left:375.744267pt;}
.x7{left:404.481333pt;}
.xa{left:406.300933pt;}
.x22{left:408.233600pt;}
.x23{left:409.530933pt;}
.x1b{left:415.812267pt;}
.x10{left:425.195867pt;}
.x45{left:428.976533pt;}
.x24{left:430.362933pt;}
.x25{left:432.444267pt;}
.xc{left:436.540933pt;}
.x47{left:447.878267pt;}
.x11{left:455.435867pt;}
.xb{left:466.914267pt;}
.x39{left:475.777200pt;}
.x3a{left:501.355867pt;}
.x26{left:504.021600pt;}
.x44{left:510.951467pt;}
.x27{left:524.853600pt;}
.x28{left:526.934933pt;}
.x29{left:559.424267pt;}
.x2a{left:560.721600pt;}
.x3c{left:565.739867pt;}
.x1c{left:568.113600pt;}
.x3b{left:576.299867pt;}
.x2b{left:581.553600pt;}
.x2c{left:583.634933pt;}
.xe{left:589.770933pt;}
.x2{left:616.324800pt;}
.x2d{left:617.421600pt;}
.x2e{left:638.253600pt;}
.x2f{left:640.334933pt;}
.x40{left:641.519733pt;}
.xd{left:647.459200pt;}
.x41{left:661.211867pt;}
.x12{left:663.127067pt;}
.x3d{left:664.449867pt;}
.x13{left:666.359067pt;}
.x30{left:672.824267pt;}
.x31{left:674.121600pt;}
.x1d{left:676.193600pt;}
.x32{left:694.953600pt;}
.x33{left:697.034933pt;}
}




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