
    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_28869f07c910e1c19ab3f99f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.920410;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_ef1e838a36c6a6a2fafe8455.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_16e4ef701e42fd46b2beb03e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115723;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_11c733598c5ed46ac81e2c13.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3349d65610a1014ea731384e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115723;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_421ca5bcedd052619e6b0177.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.940000;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_269a50572f4252ce4c1271f5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6b023b75504a93f531f8ed3f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908691;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_2f63719c0af2dcd836ef6d9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.667480;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_01c5a75ebb0660abcd11eaaa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_808b55d4edfab09ff24bdb1a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.905762;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);}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.372800px;}
.v5{vertical-align:17.879400px;}
.v2{vertical-align:18.973200px;}
.v1{vertical-align:32.400000px;}
.ls32{letter-spacing:-9.760500px;}
.ls29{letter-spacing:-9.598500px;}
.ls33{letter-spacing:-8.262000px;}
.ls2a{letter-spacing:-8.100000px;}
.ls43{letter-spacing:-1.998000px;}
.ls28{letter-spacing:-1.350000px;}
.ls17{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.009000px;}
.ls6e{letter-spacing:0.037800px;}
.ls14{letter-spacing:0.054000px;}
.ls18{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.127200px;}
.ls13{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.240000px;}
.ls56{letter-spacing:0.270000px;}
.ls1f{letter-spacing:0.300000px;}
.ls72{letter-spacing:0.302400px;}
.ls26{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls60{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.420000px;}
.lsf{letter-spacing:0.432000px;}
.ls19{letter-spacing:0.480000px;}
.ls5b{letter-spacing:0.486000px;}
.ls2{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.594000px;}
.ls1e{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.648000px;}
.lse{letter-spacing:0.660000px;}
.ls5c{letter-spacing:0.702000px;}
.ls21{letter-spacing:0.720000px;}
.ls61{letter-spacing:0.756000px;}
.ls1{letter-spacing:0.780000px;}
.ls5f{letter-spacing:0.810000px;}
.ls22{letter-spacing:0.840000px;}
.ls15{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.900000px;}
.ls69{letter-spacing:0.918000px;}
.ls5{letter-spacing:0.960000px;}
.ls5d{letter-spacing:0.972000px;}
.ls2c{letter-spacing:1.020000px;}
.ls67{letter-spacing:1.026000px;}
.ls1c{letter-spacing:1.080000px;}
.ls12{letter-spacing:1.134000px;}
.ls31{letter-spacing:1.140000px;}
.ls5e{letter-spacing:1.188000px;}
.ls7{letter-spacing:1.200000px;}
.ls68{letter-spacing:1.242000px;}
.lsd{letter-spacing:1.260000px;}
.ls5a{letter-spacing:1.309200px;}
.ls24{letter-spacing:1.320000px;}
.ls6c{letter-spacing:1.350000px;}
.ls3{letter-spacing:1.380000px;}
.ls62{letter-spacing:1.404000px;}
.lsc{letter-spacing:1.440000px;}
.ls27{letter-spacing:1.458000px;}
.ls52{letter-spacing:1.500000px;}
.ls59{letter-spacing:1.560000px;}
.ls4{letter-spacing:1.620000px;}
.ls65{letter-spacing:1.674000px;}
.ls4f{letter-spacing:1.680000px;}
.ls66{letter-spacing:1.728000px;}
.ls1d{letter-spacing:1.740000px;}
.ls6b{letter-spacing:1.782000px;}
.ls23{letter-spacing:1.800000px;}
.lsa{letter-spacing:1.860000px;}
.ls6f{letter-spacing:1.890000px;}
.ls30{letter-spacing:1.920000px;}
.ls73{letter-spacing:1.944000px;}
.ls50{letter-spacing:1.980000px;}
.ls70{letter-spacing:1.998000px;}
.ls20{letter-spacing:2.040000px;}
.ls2d{letter-spacing:2.100000px;}
.ls63{letter-spacing:2.106000px;}
.ls57{letter-spacing:2.160000px;}
.ls64{letter-spacing:2.214000px;}
.ls25{letter-spacing:2.220000px;}
.ls71{letter-spacing:2.268000px;}
.ls2f{letter-spacing:2.280000px;}
.ls6a{letter-spacing:2.322000px;}
.ls51{letter-spacing:2.340000px;}
.ls6d{letter-spacing:2.376000px;}
.ls44{letter-spacing:2.580000px;}
.ls53{letter-spacing:2.700000px;}
.ls4e{letter-spacing:2.940000px;}
.ls4d{letter-spacing:3.480000px;}
.ls58{letter-spacing:3.540000px;}
.ls54{letter-spacing:3.600000px;}
.ls2e{letter-spacing:4.800000px;}
.ls55{letter-spacing:7.260000px;}
.ls49{letter-spacing:61.182000px;}
.ls47{letter-spacing:74.682000px;}
.ls46{letter-spacing:82.188000px;}
.ls4a{letter-spacing:87.534000px;}
.ls36{letter-spacing:88.182000px;}
.ls38{letter-spacing:88.884000px;}
.ls4b{letter-spacing:95.040000px;}
.ls3c{letter-spacing:101.682000px;}
.ls48{letter-spacing:108.540000px;}
.ls4c{letter-spacing:109.350000px;}
.ls3a{letter-spacing:109.512000px;}
.ls45{letter-spacing:118.206000px;}
.ls37{letter-spacing:122.040000px;}
.ls35{letter-spacing:122.688000px;}
.ls42{letter-spacing:122.850000px;}
.ls3b{letter-spacing:131.004000px;}
.ls41{letter-spacing:133.355400px;}
.ls3d{letter-spacing:251.154000px;}
.ls3e{letter-spacing:265.356000px;}
.ls39{letter-spacing:455.976000px;}
.ls3f{letter-spacing:507.006000px;}
.ls40{letter-spacing:813.510000px;}
.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;}
}
.ws61{word-spacing:-16.680000px;}
.ws63{word-spacing:-15.900000px;}
.ws60{word-spacing:-15.780000px;}
.ws65{word-spacing:-15.660000px;}
.ws66{word-spacing:-15.540000px;}
.ws62{word-spacing:-15.240000px;}
.ws7{word-spacing:-15.180000px;}
.ws64{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.000000px;}
.ws6d{word-spacing:-14.850000px;}
.ws69{word-spacing:-14.472000px;}
.ws6c{word-spacing:-14.418000px;}
.ws68{word-spacing:-14.364000px;}
.ws6e{word-spacing:-14.256000px;}
.ws1{word-spacing:-14.094000px;}
.ws2{word-spacing:-14.040000px;}
.ws67{word-spacing:-13.986000px;}
.ws6a{word-spacing:-13.662000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.000000px;}
.ws70{word-spacing:-10.584000px;}
.ws6f{word-spacing:-9.752400px;}
.ws6b{word-spacing:-9.487800px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:6.196500px;}
.wsa{word-spacing:6.398700px;}
.ws5{word-spacing:9.193500px;}
.ws9{word-spacing:9.396000px;}
.ws55{word-spacing:21.708000px;}
.ws54{word-spacing:23.706000px;}
.ws24{word-spacing:30.078000px;}
.wse{word-spacing:32.940000px;}
.ws21{word-spacing:34.182000px;}
.ws17{word-spacing:35.208000px;}
.ws51{word-spacing:37.206000px;}
.ws22{word-spacing:41.850000px;}
.ws16{word-spacing:47.682000px;}
.ws53{word-spacing:48.384000px;}
.ws5f{word-spacing:48.708000px;}
.ws15{word-spacing:50.706000px;}
.ws46{word-spacing:51.678000px;}
.ws52{word-spacing:55.350000px;}
.ws4b{word-spacing:56.052000px;}
.ws18{word-spacing:61.020000px;}
.ws2d{word-spacing:61.182000px;}
.ws1b{word-spacing:64.206000px;}
.ws1e{word-spacing:66.204000px;}
.wsf{word-spacing:66.420000px;}
.ws2b{word-spacing:68.850000px;}
.ws26{word-spacing:74.682000px;}
.wsc{word-spacing:76.464000px;}
.ws28{word-spacing:77.706000px;}
.ws4a{word-spacing:80.406000px;}
.ws1c{word-spacing:82.350000px;}
.ws1f{word-spacing:88.182000px;}
.ws39{word-spacing:90.504000px;}
.ws1a{word-spacing:91.206000px;}
.ws29{word-spacing:95.850000px;}
.ws1d{word-spacing:104.004000px;}
.ws20{word-spacing:104.706000px;}
.ws3d{word-spacing:106.974000px;}
.ws5d{word-spacing:108.864000px;}
.ws40{word-spacing:114.102000px;}
.ws14{word-spacing:123.066000px;}
.ws2f{word-spacing:129.006000px;}
.ws5e{word-spacing:132.840000px;}
.ws2a{word-spacing:138.024000px;}
.ws43{word-spacing:141.102000px;}
.ws34{word-spacing:143.964000px;}
.ws10{word-spacing:144.612000px;}
.ws3e{word-spacing:150.066000px;}
.ws42{word-spacing:152.982000px;}
.ws33{word-spacing:158.976000px;}
.ws27{word-spacing:161.838000px;}
.ws41{word-spacing:162.000000px;}
.ws45{word-spacing:162.864000px;}
.ws25{word-spacing:165.024000px;}
.ws44{word-spacing:165.078000px;}
.ws35{word-spacing:167.940000px;}
.ws11{word-spacing:173.016000px;}
.ws30{word-spacing:175.338000px;}
.ws49{word-spacing:176.364000px;}
.ws37{word-spacing:180.090000px;}
.ws57{word-spacing:188.838000px;}
.ws5b{word-spacing:192.024000px;}
.ws4f{word-spacing:195.048000px;}
.ws19{word-spacing:198.072000px;}
.ws5a{word-spacing:199.962000px;}
.ws3f{word-spacing:202.338000px;}
.ws32{word-spacing:207.036000px;}
.wsd{word-spacing:209.088000px;}
.ws4c{word-spacing:210.060000px;}
.ws2e{word-spacing:212.976000px;}
.ws3c{word-spacing:213.084000px;}
.ws4d{word-spacing:221.994000px;}
.ws56{word-spacing:224.856000px;}
.ws4e{word-spacing:225.018000px;}
.ws48{word-spacing:225.072000px;}
.ws12{word-spacing:227.016000px;}
.ws2c{word-spacing:231.012000px;}
.ws5c{word-spacing:234.036000px;}
.ws31{word-spacing:236.952000px;}
.ws23{word-spacing:238.356000px;}
.ws47{word-spacing:249.048000px;}
.ws36{word-spacing:252.072000px;}
.ws3b{word-spacing:258.012000px;}
.ws58{word-spacing:260.982000px;}
.ws59{word-spacing:264.060000px;}
.ws50{word-spacing:267.030000px;}
.ws38{word-spacing:273.024000px;}
.wsb{word-spacing:293.544000px;}
.ws3a{word-spacing:401.760000px;}
.ws13{word-spacing:466.452000px;}
._79{margin-left:-102.624000px;}
._2{margin-left:-9.792000px;}
._3{margin-left:-7.680000px;}
._6{margin-left:-6.120000px;}
._4{margin-left:-4.800000px;}
._5{margin-left:-3.744000px;}
._0{margin-left:-2.400000px;}
._1{margin-left:-1.056000px;}
._b{width:1.140000px;}
._9{width:3.000000px;}
._f{width:4.140000px;}
._a{width:5.400000px;}
._88{width:6.654000px;}
._7{width:8.586000px;}
._2d{width:33.858000px;}
._2e{width:40.662000px;}
._30{width:41.724000px;}
._8{width:44.550000px;}
._2f{width:48.708000px;}
._2c{width:53.784000px;}
._3f{width:55.362000px;}
._1e{width:58.824000px;}
._1d{width:60.534000px;}
._4a{width:62.286000px;}
._17{width:65.706000px;}
._48{width:68.850000px;}
._6c{width:70.446000px;}
._44{width:73.968000px;}
._54{width:75.384000px;}
._52{width:77.706000px;}
._27{width:82.368000px;}
._50{width:83.616000px;}
._1b{width:88.224000px;}
._49{width:89.322000px;}
._37{width:95.850000px;}
._35{width:101.682000px;}
._69{width:102.870000px;}
._22{width:103.890000px;}
._1f{width:107.556000px;}
._3d{width:109.350000px;}
._2b{width:110.484000px;}
._42{width:113.766000px;}
._36{width:115.182000px;}
._14{width:117.528000px;}
._4f{width:118.854000px;}
._3a{width:121.998000px;}
._60{width:123.072000px;}
._1c{width:124.308000px;}
._19{width:125.352000px;}
._5c{width:128.010000px;}
._25{width:129.090000px;}
._6b{width:130.698000px;}
._33{width:131.706000px;}
._5d{width:135.540000px;}
._1a{width:137.082000px;}
._26{width:138.378000px;}
._7a{width:141.510000px;}
._34{width:143.124000px;}
._64{width:144.666000px;}
._47{width:148.338000px;}
._83{width:151.278000px;}
._16{width:152.784000px;}
._39{width:161.838000px;}
._20{width:163.182000px;}
._13{width:170.100000px;}
._18{width:174.204000px;}
._3c{width:175.338000px;}
._4c{width:176.766000px;}
._23{width:179.148000px;}
._15{width:185.370000px;}
._6a{width:186.810000px;}
._55{width:187.950000px;}
._21{width:189.138000px;}
._24{width:190.878000px;}
._78{width:192.696000px;}
._3b{width:196.884000px;}
._11{width:200.202000px;}
._10{width:203.094000px;}
._46{width:204.906000px;}
._5b{width:206.472000px;}
._41{width:215.838000px;}
._3e{width:216.948000px;}
._87{width:221.316000px;}
._38{width:223.602000px;}
._4d{width:227.364000px;}
._67{width:231.906000px;}
._86{width:234.726000px;}
._7c{width:236.328000px;}
._72{width:240.702000px;}
._65{width:247.314000px;}
._7e{width:248.484000px;}
._51{width:260.418000px;}
._66{width:261.762000px;}
._73{width:266.868000px;}
._2a{width:275.022000px;}
._32{width:278.856000px;}
._7f{width:279.858000px;}
._57{width:286.848000px;}
._68{width:290.334000px;}
._53{width:296.436000px;}
._62{width:301.860000px;}
._81{width:312.738000px;}
._40{width:314.472000px;}
._6d{width:317.442000px;}
._56{width:321.330000px;}
._74{width:327.804000px;}
._12{width:329.454000px;}
._29{width:338.742000px;}
._28{width:341.196000px;}
._75{width:345.900000px;}
._5f{width:350.382000px;}
._77{width:357.264000px;}
._5e{width:365.394000px;}
._61{width:374.412000px;}
._59{width:383.430000px;}
._5a{width:386.232000px;}
._4e{width:392.280000px;}
._84{width:393.282000px;}
._80{width:400.788000px;}
._43{width:408.972000px;}
._76{width:410.376000px;}
._71{width:413.346000px;}
._6f{width:423.822000px;}
._7d{width:426.900000px;}
._58{width:434.352000px;}
._4b{width:436.830000px;}
._45{width:439.830000px;}
._6e{width:443.478000px;}
._82{width:461.124000px;}
._63{width:470.310000px;}
._7b{width:473.394000px;}
._85{width:481.758000px;}
._31{width:524.124000px;}
._70{width:812.670000px;}
._c{width:1592.496000px;}
._e{width:1603.254600px;}
._d{width:2451.114000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:36.000000px;}
.fs7{font-size:37.800000px;}
.fs5{font-size:40.500000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:75.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:95.669250px;}
.y136{bottom:95.673900px;}
.y3d{bottom:95.674050px;}
.yc0{bottom:95.674200px;}
.y281{bottom:95.674650px;}
.y11{bottom:139.278150px;}
.y33f{bottom:142.106850px;}
.y2bf{bottom:142.161000px;}
.y8d{bottom:142.265100px;}
.yb4{bottom:142.400100px;}
.y104{bottom:142.410300px;}
.y300{bottom:142.422300px;}
.y380{bottom:142.437900px;}
.y166{bottom:142.440900px;}
.y67{bottom:142.441050px;}
.y1fc{bottom:142.452450px;}
.y27f{bottom:142.463550px;}
.y113{bottom:142.500300px;}
.y198{bottom:142.644600px;}
.y22e{bottom:142.647450px;}
.y1ca{bottom:142.854600px;}
.yf4{bottom:148.709250px;}
.y10{bottom:154.897650px;}
.y165{bottom:155.940900px;}
.y66{bottom:155.941050px;}
.y2ff{bottom:156.016800px;}
.y37f{bottom:156.032400px;}
.y33e{bottom:156.214350px;}
.y2be{bottom:156.498000px;}
.y27e{bottom:156.503550px;}
.y8c{bottom:160.280100px;}
.y1fb{bottom:160.467450px;}
.y197{bottom:160.659600px;}
.y1c9{bottom:160.869600px;}
.yb3{bottom:160.880100px;}
.y22d{bottom:161.397450px;}
.y103{bottom:161.640300px;}
.y112{bottom:163.095300px;}
.yf3{bottom:167.163750px;}
.yf{bottom:168.397650px;}
.y164{bottom:169.440900px;}
.y2fe{bottom:169.611300px;}
.y37e{bottom:169.626900px;}
.y33d{bottom:170.321850px;}
.y27d{bottom:170.543550px;}
.y2bd{bottom:170.835000px;}
.y8b{bottom:178.295100px;}
.y1fa{bottom:178.482450px;}
.y196{bottom:178.674600px;}
.y1c8{bottom:178.884600px;}
.yb2{bottom:179.360100px;}
.y22c{bottom:180.147450px;}
.y102{bottom:180.870300px;}
.y2fd{bottom:183.205800px;}
.y37d{bottom:183.221400px;}
.y111{bottom:183.690300px;}
.ye{bottom:184.017150px;}
.y33c{bottom:184.429350px;}
.yf2{bottom:185.618250px;}
.y27c{bottom:188.836050px;}
.y2bc{bottom:189.424500px;}
.y8a{bottom:196.310100px;}
.y1f9{bottom:196.674750px;}
.y195{bottom:196.689600px;}
.y2fc{bottom:196.800300px;}
.y37c{bottom:196.815900px;}
.y1c7{bottom:196.899600px;}
.yd{bottom:197.517150px;}
.yb1{bottom:197.840100px;}
.y22b{bottom:198.897450px;}
.y101{bottom:200.100300px;}
.y33b{bottom:202.789350px;}
.y27b{bottom:202.876050px;}
.y2bb{bottom:203.761500px;}
.yf1{bottom:204.072750px;}
.y110{bottom:204.285300px;}
.yc{bottom:213.136650px;}
.y89{bottom:214.325100px;}
.y2fb{bottom:214.647300px;}
.y37b{bottom:214.662900px;}
.y1f8{bottom:214.689750px;}
.y194{bottom:214.704600px;}
.y1c6{bottom:214.914600px;}
.yb0{bottom:216.320100px;}
.y33a{bottom:216.896850px;}
.y27a{bottom:216.916050px;}
.y22a{bottom:217.647450px;}
.y2ba{bottom:218.098500px;}
.y100{bottom:219.330300px;}
.yf0{bottom:222.527250px;}
.y10f{bottom:224.880300px;}
.yb{bottom:226.636650px;}
.y2fa{bottom:228.241800px;}
.y37a{bottom:228.257400px;}
.y279{bottom:230.956050px;}
.y339{bottom:231.004350px;}
.y88{bottom:232.340100px;}
.y1f7{bottom:232.704750px;}
.y193{bottom:232.719600px;}
.y1c5{bottom:232.929600px;}
.yaf{bottom:234.800100px;}
.y229{bottom:236.397450px;}
.y2b9{bottom:236.688000px;}
.yff{bottom:238.560300px;}
.yef{bottom:240.981750px;}
.y2f9{bottom:241.836300px;}
.y379{bottom:241.851900px;}
.ya{bottom:242.256150px;}
.y278{bottom:244.996050px;}
.y338{bottom:245.111850px;}
.y10e{bottom:245.475300px;}
.y87{bottom:250.355100px;}
.y1f6{bottom:250.719750px;}
.y192{bottom:250.734600px;}
.y1c4{bottom:250.944600px;}
.y2b8{bottom:251.025000px;}
.yae{bottom:253.280100px;}
.y228{bottom:255.147450px;}
.y2f8{bottom:255.430800px;}
.y378{bottom:255.446400px;}
.y9{bottom:255.756150px;}
.yfe{bottom:257.790300px;}
.y337{bottom:259.219350px;}
.yee{bottom:259.436250px;}
.y277{bottom:263.288550px;}
.y2b7{bottom:265.362000px;}
.y10d{bottom:266.070300px;}
.y86{bottom:268.370100px;}
.y1f5{bottom:268.734750px;}
.y191{bottom:268.749600px;}
.y1c3{bottom:268.959600px;}
.y377{bottom:269.040900px;}
.y8{bottom:269.256150px;}
.yad{bottom:271.760100px;}
.y2f7{bottom:273.277800px;}
.y227{bottom:273.897450px;}
.yfd{bottom:277.020300px;}
.y276{bottom:277.328550px;}
.y336{bottom:277.565850px;}
.yed{bottom:277.890750px;}
.y2b6{bottom:279.699000px;}
.y85{bottom:286.385100px;}
.y10c{bottom:286.665300px;}
.y1f4{bottom:286.749750px;}
.y190{bottom:286.764600px;}
.y2f6{bottom:286.872300px;}
.y376{bottom:286.887900px;}
.y1c2{bottom:286.974600px;}
.y275{bottom:291.368550px;}
.y335{bottom:291.673350px;}
.y226{bottom:292.647450px;}
.yfc{bottom:296.250300px;}
.yec{bottom:296.345250px;}
.y2b5{bottom:298.288500px;}
.y2f5{bottom:300.466800px;}
.y375{bottom:300.467550px;}
.y84{bottom:304.400100px;}
.y1f3{bottom:304.764750px;}
.y18f{bottom:304.779600px;}
.y1c1{bottom:304.989600px;}
.y274{bottom:305.408550px;}
.y334{bottom:305.780850px;}
.y10b{bottom:307.260300px;}
.yac{bottom:308.240100px;}
.y225{bottom:311.397450px;}
.y2b4{bottom:312.625500px;}
.y2f4{bottom:314.061300px;}
.y374{bottom:314.062050px;}
.yeb{bottom:314.799750px;}
.yfb{bottom:315.480300px;}
.y83{bottom:322.415100px;}
.y1f2{bottom:322.779750px;}
.y18e{bottom:322.794600px;}
.y1c0{bottom:323.004600px;}
.y333{bottom:324.140850px;}
.y1f{bottom:326.286150px;}
.yab{bottom:326.720100px;}
.y2b3{bottom:326.962500px;}
.y373{bottom:327.656550px;}
.y10a{bottom:327.855300px;}
.y224{bottom:330.147450px;}
.y2f3{bottom:331.908300px;}
.y273{bottom:332.705550px;}
.yea{bottom:333.254250px;}
.yfa{bottom:334.710300px;}
.y332{bottom:338.248350px;}
.y82{bottom:340.430100px;}
.y1f1{bottom:340.794750px;}
.y18d{bottom:340.809600px;}
.y372{bottom:341.251050px;}
.y1e{bottom:344.286150px;}
.yaa{bottom:345.200100px;}
.y2f2{bottom:345.502800px;}
.y2b2{bottom:345.552000px;}
.y109{bottom:348.450300px;}
.y223{bottom:348.897450px;}
.ye9{bottom:351.708750px;}
.y331{bottom:352.355850px;}
.yf9{bottom:353.940300px;}
.y81{bottom:358.445100px;}
.y1f0{bottom:358.809750px;}
.y18c{bottom:358.824600px;}
.y1bf{bottom:359.019600px;}
.y2f1{bottom:359.097300px;}
.y371{bottom:359.098050px;}
.y2b1{bottom:359.889000px;}
.y1d{bottom:362.286150px;}
.ya9{bottom:363.680100px;}
.y222{bottom:367.647450px;}
.y108{bottom:369.045300px;}
.ye8{bottom:370.163250px;}
.y330{bottom:370.715850px;}
.y370{bottom:372.692550px;}
.yf8{bottom:373.170300px;}
.y2b0{bottom:374.226000px;}
.y80{bottom:376.460100px;}
.y1ef{bottom:376.824750px;}
.y18b{bottom:376.839600px;}
.y2f0{bottom:376.944300px;}
.y1be{bottom:377.034600px;}
.y1c{bottom:380.286150px;}
.ya8{bottom:382.160100px;}
.y272{bottom:382.750050px;}
.y32f{bottom:384.823350px;}
.y36f{bottom:386.287050px;}
.y221{bottom:386.397450px;}
.y2af{bottom:388.563000px;}
.ye7{bottom:388.617750px;}
.y107{bottom:389.640300px;}
.y2ef{bottom:390.538800px;}
.yf7{bottom:392.400300px;}
.y7f{bottom:394.475100px;}
.y1ee{bottom:394.839750px;}
.y18a{bottom:394.854600px;}
.y1bd{bottom:395.049600px;}
.y271{bottom:396.790050px;}
.y1b{bottom:398.286150px;}
.y32e{bottom:398.930850px;}
.ya7{bottom:400.640100px;}
.y2ee{bottom:404.133300px;}
.y36e{bottom:404.134050px;}
.y220{bottom:405.147450px;}
.ye6{bottom:407.072250px;}
.y2ae{bottom:407.152500px;}
.y106{bottom:410.235300px;}
.y270{bottom:410.830050px;}
.yf6{bottom:411.630300px;}
.y7e{bottom:412.490100px;}
.y1ed{bottom:412.854750px;}
.y189{bottom:412.869600px;}
.y1bc{bottom:413.064600px;}
.y1a{bottom:416.286150px;}
.y32d{bottom:417.290850px;}
.y36d{bottom:417.728550px;}
.ya6{bottom:419.120100px;}
.y2ad{bottom:421.489500px;}
.y2ed{bottom:421.980300px;}
.y21f{bottom:423.897450px;}
.y26f{bottom:424.870050px;}
.ye5{bottom:425.526750px;}
.y105{bottom:430.830300px;}
.yf5{bottom:430.860300px;}
.y1ec{bottom:430.869750px;}
.y24a{bottom:430.884600px;}
.y1bb{bottom:431.079600px;}
.y32c{bottom:431.398350px;}
.y19{bottom:434.286150px;}
.y2ec{bottom:435.574800px;}
.y36c{bottom:435.575550px;}
.y2ac{bottom:435.826500px;}
.ya5{bottom:437.600100px;}
.y26e{bottom:438.910050px;}
.y21e{bottom:442.647450px;}
.ye4{bottom:444.116550px;}
.y32b{bottom:445.505850px;}
.y7d{bottom:448.505100px;}
.y188{bottom:448.884600px;}
.y1eb{bottom:448.884750px;}
.y249{bottom:448.899600px;}
.y1ba{bottom:449.094600px;}
.y2eb{bottom:449.169300px;}
.y36b{bottom:449.170050px;}
.y18{bottom:452.286150px;}
.y26d{bottom:452.950050px;}
.y2ab{bottom:454.416000px;}
.ya4{bottom:456.080100px;}
.y21d{bottom:461.397450px;}
.ye3{bottom:462.571050px;}
.y2ea{bottom:462.763800px;}
.y36a{bottom:462.764550px;}
.y32a{bottom:463.865850px;}
.y7c{bottom:466.520100px;}
.y187{bottom:466.899600px;}
.y1ea{bottom:466.899750px;}
.y248{bottom:466.914600px;}
.y26c{bottom:466.990050px;}
.y1b9{bottom:467.109600px;}
.y2aa{bottom:468.753000px;}
.y17{bottom:470.286150px;}
.ya3{bottom:474.560100px;}
.y369{bottom:476.359050px;}
.y329{bottom:477.973350px;}
.y21c{bottom:480.147450px;}
.y2e9{bottom:480.610800px;}
.ye2{bottom:481.025550px;}
.y26b{bottom:481.030050px;}
.y2a9{bottom:483.090000px;}
.y7b{bottom:484.535100px;}
.y186{bottom:484.914600px;}
.y1e9{bottom:484.914750px;}
.y247{bottom:484.929600px;}
.y1b8{bottom:485.124600px;}
.y16{bottom:488.286150px;}
.y133{bottom:489.415050px;}
.y328{bottom:492.080850px;}
.ya2{bottom:493.040100px;}
.y2e8{bottom:494.205300px;}
.y368{bottom:494.206050px;}
.y26a{bottom:495.070050px;}
.y2a8{bottom:497.427000px;}
.y21b{bottom:498.897450px;}
.ye1{bottom:499.480050px;}
.y7a{bottom:502.550100px;}
.y185{bottom:502.929600px;}
.y1e8{bottom:502.929750px;}
.y246{bottom:502.944600px;}
.y1b7{bottom:503.139600px;}
.y327{bottom:506.188350px;}
.y15{bottom:506.286150px;}
.y2e7{bottom:507.799800px;}
.y367{bottom:507.800550px;}
.y132{bottom:508.085550px;}
.y269{bottom:509.110050px;}
.ya1{bottom:511.520100px;}
.y2a7{bottom:511.764000px;}
.y21a{bottom:517.647450px;}
.ye0{bottom:517.934550px;}
.y79{bottom:520.565100px;}
.y184{bottom:520.944600px;}
.y1e7{bottom:520.944750px;}
.y245{bottom:520.959600px;}
.y1b6{bottom:521.154600px;}
.y2e6{bottom:521.394300px;}
.y366{bottom:521.395050px;}
.y268{bottom:523.150050px;}
.y14{bottom:524.286150px;}
.y326{bottom:524.548350px;}
.y131{bottom:526.756050px;}
.ya0{bottom:530.000100px;}
.y2a6{bottom:530.353500px;}
.y365{bottom:534.989550px;}
.ydf{bottom:536.389050px;}
.y219{bottom:536.397450px;}
.y267{bottom:537.190050px;}
.y78{bottom:538.580100px;}
.y325{bottom:538.655850px;}
.y183{bottom:538.959600px;}
.y1e6{bottom:538.959750px;}
.y244{bottom:538.974600px;}
.y1b5{bottom:539.169600px;}
.y2e5{bottom:539.241300px;}
.y13{bottom:542.286150px;}
.y2a5{bottom:544.690500px;}
.y130{bottom:545.426550px;}
.y9f{bottom:548.480100px;}
.y266{bottom:551.230050px;}
.y324{bottom:552.763350px;}
.y2e4{bottom:552.835800px;}
.y364{bottom:552.836550px;}
.yde{bottom:554.843550px;}
.y218{bottom:555.147450px;}
.y77{bottom:556.595100px;}
.y182{bottom:556.974600px;}
.y1e5{bottom:556.974750px;}
.y243{bottom:556.989600px;}
.y1b4{bottom:557.184600px;}
.y2a4{bottom:559.027500px;}
.y12{bottom:560.286150px;}
.y12f{bottom:564.097050px;}
.y265{bottom:565.270050px;}
.y2e3{bottom:566.430300px;}
.y363{bottom:566.431050px;}
.y323{bottom:566.870850px;}
.y9e{bottom:566.960100px;}
.ydd{bottom:573.298050px;}
.y2a3{bottom:573.364500px;}
.y217{bottom:573.897450px;}
.y76{bottom:574.610100px;}
.y181{bottom:574.989600px;}
.y1e4{bottom:574.989750px;}
.y242{bottom:575.004600px;}
.y1b3{bottom:575.199600px;}
.y264{bottom:579.310050px;}
.y362{bottom:580.025550px;}
.y12e{bottom:582.767550px;}
.y2e2{bottom:584.277300px;}
.y322{bottom:585.230850px;}
.y9d{bottom:585.440100px;}
.ydc{bottom:591.752550px;}
.y2a2{bottom:591.954000px;}
.y216{bottom:592.647450px;}
.y180{bottom:593.004600px;}
.y1e3{bottom:593.004750px;}
.y241{bottom:593.019600px;}
.y1b2{bottom:593.214600px;}
.y263{bottom:593.350050px;}
.y361{bottom:593.620050px;}
.y2e1{bottom:597.871800px;}
.y321{bottom:599.338350px;}
.y12d{bottom:601.438050px;}
.y9c{bottom:603.920100px;}
.y2a1{bottom:606.291000px;}
.y360{bottom:607.214550px;}
.ydb{bottom:610.207050px;}
.y75{bottom:610.625100px;}
.y17f{bottom:611.019600px;}
.y1e2{bottom:611.019750px;}
.y240{bottom:611.034600px;}
.y1b1{bottom:611.229600px;}
.y215{bottom:611.397450px;}
.y2e0{bottom:611.466300px;}
.y3b{bottom:612.086550px;}
.y320{bottom:617.698350px;}
.y12c{bottom:620.108550px;}
.y2a0{bottom:620.628000px;}
.y35f{bottom:620.809050px;}
.y9b{bottom:622.400100px;}
.y2df{bottom:625.060800px;}
.y3a{bottom:625.586550px;}
.yda{bottom:628.661550px;}
.y17e{bottom:629.034600px;}
.y1e1{bottom:629.034750px;}
.y23f{bottom:629.049600px;}
.y1b0{bottom:629.244600px;}
.y214{bottom:630.147450px;}
.y31f{bottom:631.805850px;}
.y262{bottom:634.629600px;}
.y29f{bottom:634.965000px;}
.y2de{bottom:638.655300px;}
.y35e{bottom:638.656050px;}
.y12b{bottom:638.779050px;}
.y39{bottom:639.086550px;}
.y9a{bottom:640.880100px;}
.y31e{bottom:645.913350px;}
.y17d{bottom:647.049600px;}
.y23e{bottom:647.064600px;}
.yd9{bottom:647.116050px;}
.y1af{bottom:647.259600px;}
.y31{bottom:648.222150px;}
.y213{bottom:648.897450px;}
.y35d{bottom:652.250550px;}
.y38{bottom:652.586550px;}
.y261{bottom:653.169600px;}
.y29e{bottom:653.554500px;}
.y2dd{bottom:656.502300px;}
.y12a{bottom:657.449550px;}
.y99{bottom:659.360100px;}
.y31d{bottom:660.020850px;}
.y30{bottom:661.722150px;}
.y14e{bottom:664.344750px;}
.y163{bottom:664.449750px;}
.y74{bottom:664.640100px;}
.y1e0{bottom:665.049750px;}
.y17c{bottom:665.064600px;}
.y23d{bottom:665.079600px;}
.y1ae{bottom:665.274600px;}
.yd8{bottom:665.570550px;}
.y35c{bottom:665.845050px;}
.y37{bottom:666.086550px;}
.y212{bottom:667.647450px;}
.y29d{bottom:667.891500px;}
.y2dc{bottom:670.096800px;}
.y260{bottom:671.709600px;}
.y2f{bottom:675.222150px;}
.y129{bottom:676.120050px;}
.y98{bottom:677.840100px;}
.y31c{bottom:678.367350px;}
.y35b{bottom:679.439550px;}
.y29c{bottom:682.228500px;}
.y14d{bottom:682.389750px;}
.y73{bottom:682.655100px;}
.y1df{bottom:683.064750px;}
.y17b{bottom:683.079600px;}
.y23c{bottom:683.094600px;}
.y162{bottom:683.394750px;}
.y2db{bottom:683.691300px;}
.y36{bottom:683.834550px;}
.yd7{bottom:684.025050px;}
.y211{bottom:686.397450px;}
.y2e{bottom:688.722150px;}
.y50{bottom:688.959900px;}
.y65{bottom:689.094900px;}
.y25f{bottom:690.249600px;}
.y31b{bottom:692.474850px;}
.y35a{bottom:693.034050px;}
.y128{bottom:694.790550px;}
.y97{bottom:696.320100px;}
.y29b{bottom:696.565500px;}
.y14c{bottom:700.434750px;}
.y72{bottom:700.670100px;}
.y1de{bottom:701.079750px;}
.y23b{bottom:701.109600px;}
.y1ad{bottom:701.289600px;}
.y2da{bottom:701.538300px;}
.y2d{bottom:702.222150px;}
.y161{bottom:702.339750px;}
.yd6{bottom:702.479550px;}
.y210{bottom:705.147450px;}
.y31a{bottom:706.582350px;}
.y4f{bottom:707.649900px;}
.y64{bottom:707.679900px;}
.y25e{bottom:708.789600px;}
.y359{bottom:710.881050px;}
.y127{bottom:713.461050px;}
.y96{bottom:714.800100px;}
.y2d9{bottom:715.132800px;}
.y29a{bottom:715.155000px;}
.y2c{bottom:715.722150px;}
.y14b{bottom:718.479750px;}
.y71{bottom:718.685100px;}
.y17a{bottom:719.094600px;}
.y1dd{bottom:719.094750px;}
.y23a{bottom:719.124600px;}
.y1ac{bottom:719.304600px;}
.y319{bottom:720.689850px;}
.yd5{bottom:720.934050px;}
.y160{bottom:721.284750px;}
.y20f{bottom:723.897450px;}
.y358{bottom:724.475550px;}
.y63{bottom:726.264900px;}
.y4e{bottom:726.339900px;}
.y25d{bottom:727.329600px;}
.y2d8{bottom:728.727300px;}
.y2b{bottom:729.222150px;}
.y299{bottom:729.492000px;}
.y126{bottom:732.131550px;}
.y95{bottom:733.280100px;}
.y318{bottom:734.797350px;}
.y14a{bottom:736.524750px;}
.y70{bottom:736.700100px;}
.y179{bottom:737.109600px;}
.y1dc{bottom:737.109750px;}
.y239{bottom:737.139600px;}
.y1ab{bottom:737.319600px;}
.y357{bottom:738.070050px;}
.y35{bottom:738.102300px;}
.yd4{bottom:739.388550px;}
.y15f{bottom:740.229750px;}
.y2d7{bottom:742.321800px;}
.y20e{bottom:742.647450px;}
.y2a{bottom:742.722150px;}
.y298{bottom:743.829000px;}
.y62{bottom:744.849900px;}
.y4d{bottom:745.029900px;}
.y25c{bottom:745.869600px;}
.y34{bottom:748.902300px;}
.y125{bottom:750.802050px;}
.y356{bottom:751.664550px;}
.y94{bottom:751.760100px;}
.y317{bottom:753.157350px;}
.y149{bottom:754.569750px;}
.y6f{bottom:754.715100px;}
.y178{bottom:755.124600px;}
.y1db{bottom:755.124750px;}
.y238{bottom:755.154600px;}
.y1aa{bottom:755.334600px;}
.yd3{bottom:757.843050px;}
.y297{bottom:758.166000px;}
.y33{bottom:759.702300px;}
.y2d6{bottom:760.168800px;}
.y20d{bottom:761.397450px;}
.y61{bottom:763.434900px;}
.y4c{bottom:763.719900px;}
.y25b{bottom:764.409600px;}
.y29{bottom:764.700150px;}
.y355{bottom:765.259050px;}
.y316{bottom:767.264850px;}
.y124{bottom:769.472550px;}
.y93{bottom:770.240100px;}
.y32{bottom:770.502300px;}
.y296{bottom:772.503000px;}
.y148{bottom:772.614750px;}
.y6e{bottom:772.730100px;}
.y177{bottom:773.139600px;}
.y1da{bottom:773.139750px;}
.y237{bottom:773.169600px;}
.y1a9{bottom:773.349600px;}
.y2d5{bottom:773.763300px;}
.yd2{bottom:776.297550px;}
.y15e{bottom:777.174750px;}
.y28{bottom:778.200150px;}
.y20c{bottom:780.147450px;}
.y315{bottom:781.372350px;}
.y60{bottom:782.019900px;}
.y4b{bottom:782.409900px;}
.y25a{bottom:782.949600px;}
.y354{bottom:783.106050px;}
.y2d4{bottom:787.357800px;}
.y123{bottom:788.143050px;}
.y147{bottom:790.659750px;}
.y6d{bottom:790.745100px;}
.y295{bottom:791.092500px;}
.y176{bottom:791.154600px;}
.y1d9{bottom:791.154750px;}
.y1a8{bottom:791.364600px;}
.yd1{bottom:794.752050px;}
.y15d{bottom:796.119750px;}
.y353{bottom:796.700550px;}
.y20b{bottom:798.897450px;}
.y314{bottom:799.718850px;}
.y5f{bottom:800.604900px;}
.y2d3{bottom:800.952300px;}
.y4a{bottom:801.099900px;}
.y259{bottom:801.489600px;}
.y294{bottom:805.429500px;}
.y92{bottom:806.720100px;}
.y122{bottom:806.813550px;}
.y146{bottom:808.704750px;}
.y6c{bottom:808.760100px;}
.y175{bottom:809.169600px;}
.y1d8{bottom:809.169750px;}
.y236{bottom:809.184600px;}
.y1a7{bottom:809.379600px;}
.yd0{bottom:813.206550px;}
.y313{bottom:813.826350px;}
.y352{bottom:814.547550px;}
.y15c{bottom:815.064750px;}
.y27{bottom:817.201650px;}
.y20a{bottom:817.647450px;}
.y2d2{bottom:818.799300px;}
.y5e{bottom:819.189900px;}
.y293{bottom:819.766500px;}
.y49{bottom:819.789900px;}
.y258{bottom:820.029600px;}
.y91{bottom:825.200100px;}
.y121{bottom:825.484050px;}
.y145{bottom:826.749750px;}
.y6b{bottom:826.775100px;}
.y174{bottom:827.184600px;}
.y1d7{bottom:827.184750px;}
.y1a6{bottom:827.394600px;}
.y312{bottom:827.933850px;}
.y351{bottom:828.142050px;}
.y26{bottom:830.701650px;}
.ycf{bottom:831.661050px;}
.y2d1{bottom:832.393800px;}
.y15b{bottom:834.009750px;}
.y292{bottom:834.103500px;}
.y209{bottom:836.397450px;}
.y5d{bottom:837.774900px;}
.y48{bottom:838.479900px;}
.y257{bottom:838.569600px;}
.y350{bottom:841.736550px;}
.y311{bottom:842.041350px;}
.y90{bottom:843.680100px;}
.y120{bottom:844.154550px;}
.y25{bottom:844.201650px;}
.y6a{bottom:844.790100px;}
.y144{bottom:844.794750px;}
.y173{bottom:845.199600px;}
.y1d6{bottom:845.199750px;}
.y1a5{bottom:845.409600px;}
.y2d0{bottom:845.988300px;}
.y291{bottom:848.440500px;}
.yce{bottom:850.115550px;}
.y15a{bottom:852.954750px;}
.y208{bottom:855.147450px;}
.y310{bottom:856.148850px;}
.y5c{bottom:856.359900px;}
.y256{bottom:857.109600px;}
.y47{bottom:857.169900px;}
.y24{bottom:857.701650px;}
.y34f{bottom:859.583550px;}
.y8f{bottom:862.160100px;}
.y69{bottom:862.805100px;}
.y11f{bottom:862.825050px;}
.y143{bottom:862.839750px;}
.y235{bottom:863.199600px;}
.y172{bottom:863.214600px;}
.y1d5{bottom:863.214750px;}
.y1a4{bottom:863.424600px;}
.y2cf{bottom:863.835300px;}
.y290{bottom:867.030000px;}
.ycd{bottom:868.570050px;}
.y23{bottom:871.201650px;}
.y159{bottom:871.899750px;}
.y34e{bottom:872.834850px;}
.y30f{bottom:874.508850px;}
.y5b{bottom:874.944900px;}
.y255{bottom:875.649600px;}
.y2ce{bottom:877.141500px;}
.y8e{bottom:880.640100px;}
.y68{bottom:880.820100px;}
.y142{bottom:880.884750px;}
.y234{bottom:881.214600px;}
.y171{bottom:881.229600px;}
.y1d4{bottom:881.229750px;}
.y28f{bottom:881.367000px;}
.y1a3{bottom:881.439600px;}
.y11e{bottom:881.495550px;}
.y22{bottom:884.701650px;}
.ycc{bottom:887.024550px;}
.y30e{bottom:888.616350px;}
.y34d{bottom:890.681850px;}
.y2cd{bottom:890.736000px;}
.y158{bottom:890.844750px;}
.y207{bottom:891.897450px;}
.y5a{bottom:893.529900px;}
.y46{bottom:893.859900px;}
.y254{bottom:894.189600px;}
.y28e{bottom:895.704000px;}
.y21{bottom:898.201650px;}
.y141{bottom:898.929750px;}
.y233{bottom:899.229600px;}
.y170{bottom:899.244600px;}
.y1a2{bottom:899.454600px;}
.y11d{bottom:900.166050px;}
.y30d{bottom:902.723850px;}
.y34c{bottom:904.276350px;}
.y2cc{bottom:904.330500px;}
.ycb{bottom:905.479050px;}
.y157{bottom:909.789750px;}
.y206{bottom:910.647450px;}
.y20{bottom:911.701650px;}
.y59{bottom:912.114900px;}
.y253{bottom:912.729600px;}
.y28d{bottom:914.293500px;}
.y30c{bottom:916.831350px;}
.y140{bottom:916.974750px;}
.y232{bottom:917.244600px;}
.y1d3{bottom:917.244750px;}
.y16f{bottom:917.259600px;}
.y1a1{bottom:917.469600px;}
.y34b{bottom:917.870850px;}
.ybe{bottom:918.006900px;}
.y11c{bottom:918.836550px;}
.y2cb{bottom:922.177500px;}
.yca{bottom:923.933550px;}
.y28c{bottom:928.630500px;}
.y156{bottom:928.734750px;}
.y205{bottom:929.397450px;}
.y58{bottom:930.699900px;}
.y30b{bottom:930.938850px;}
.y252{bottom:931.269600px;}
.y13f{bottom:935.019750px;}
.y231{bottom:935.259600px;}
.y1d2{bottom:935.259750px;}
.y16e{bottom:935.274600px;}
.y1a0{bottom:935.484600px;}
.y34a{bottom:935.717850px;}
.y2ca{bottom:935.772000px;}
.ybd{bottom:936.677400px;}
.y11b{bottom:937.507050px;}
.yc9{bottom:942.388050px;}
.y28b{bottom:942.967500px;}
.y155{bottom:947.679750px;}
.y204{bottom:948.147450px;}
.y45{bottom:948.549900px;}
.y57{bottom:949.284900px;}
.y30a{bottom:949.285350px;}
.y349{bottom:949.312350px;}
.y2c9{bottom:949.366500px;}
.y251{bottom:949.809600px;}
.y38a{bottom:950.507400px;}
.y13e{bottom:953.064750px;}
.y230{bottom:953.274600px;}
.y1d1{bottom:953.274750px;}
.y16d{bottom:953.289600px;}
.ybc{bottom:955.347900px;}
.y11a{bottom:956.177550px;}
.y28a{bottom:957.304500px;}
.yc8{bottom:960.842550px;}
.y348{bottom:962.906850px;}
.y2c8{bottom:962.961000px;}
.y309{bottom:963.392850px;}
.y389{bottom:964.007400px;}
.y6{bottom:964.249800px;}
.y154{bottom:966.624750px;}
.y203{bottom:966.897450px;}
.y44{bottom:967.239900px;}
.y56{bottom:967.869900px;}
.y250{bottom:968.349600px;}
.y13d{bottom:971.109750px;}
.y22f{bottom:971.289600px;}
.y1d0{bottom:971.289750px;}
.y19f{bottom:971.499600px;}
.ybb{bottom:974.018400px;}
.y119{bottom:974.848050px;}
.y289{bottom:975.894000px;}
.y2c7{bottom:976.555500px;}
.y308{bottom:977.500350px;}
.y388{bottom:977.507400px;}
.yc7{bottom:979.297050px;}
.y347{bottom:980.753850px;}
.y5{bottom:982.249800px;}
.y153{bottom:985.569750px;}
.y202{bottom:985.647450px;}
.y43{bottom:985.929900px;}
.y55{bottom:986.454900px;}
.y24f{bottom:986.889600px;}
.y13c{bottom:989.154750px;}
.y16c{bottom:989.304600px;}
.y1cf{bottom:989.304750px;}
.y19e{bottom:989.514600px;}
.y288{bottom:990.231000px;}
.y307{bottom:991.607850px;}
.yba{bottom:992.688900px;}
.y118{bottom:993.518550px;}
.y346{bottom:994.348350px;}
.y2c6{bottom:994.402500px;}
.y387{bottom:995.259900px;}
.yc6{bottom:997.859550px;}
.y4{bottom:1000.249800px;}
.y201{bottom:1004.397450px;}
.y287{bottom:1004.568000px;}
.y42{bottom:1004.619900px;}
.y54{bottom:1005.039900px;}
.y24e{bottom:1005.429600px;}
.y306{bottom:1005.715350px;}
.yc5{bottom:1005.959550px;}
.y13b{bottom:1007.199750px;}
.y16b{bottom:1007.319600px;}
.y1ce{bottom:1007.319750px;}
.y19d{bottom:1007.529600px;}
.y345{bottom:1007.942850px;}
.y2c5{bottom:1007.997000px;}
.y386{bottom:1008.759900px;}
.yb9{bottom:1011.359400px;}
.y117{bottom:1012.189050px;}
.y344{bottom:1021.537350px;}
.y2c4{bottom:1021.591500px;}
.y385{bottom:1022.259900px;}
.y152{bottom:1022.514750px;}
.y200{bottom:1023.147450px;}
.y286{bottom:1023.157500px;}
.y41{bottom:1023.309900px;}
.y53{bottom:1023.624900px;}
.y24d{bottom:1023.969600px;}
.y305{bottom:1024.075350px;}
.y13a{bottom:1025.244750px;}
.y16a{bottom:1025.334600px;}
.y1cd{bottom:1025.334750px;}
.y19c{bottom:1025.544600px;}
.yb8{bottom:1030.029900px;}
.y116{bottom:1030.859550px;}
.yc4{bottom:1032.730050px;}
.y343{bottom:1035.131850px;}
.y3{bottom:1035.259800px;}
.y38b{bottom:1035.759900px;}
.y285{bottom:1037.494500px;}
.yb7{bottom:1038.129900px;}
.y304{bottom:1038.182850px;}
.y115{bottom:1038.959550px;}
.y2c3{bottom:1039.438500px;}
.y384{bottom:1040.012400px;}
.y151{bottom:1041.459750px;}
.y1ff{bottom:1041.897450px;}
.y40{bottom:1041.999900px;}
.y52{bottom:1042.209900px;}
.y24c{bottom:1042.509600px;}
.y139{bottom:1043.289750px;}
.y169{bottom:1043.349600px;}
.y1cc{bottom:1043.349750px;}
.y19b{bottom:1043.559600px;}
.y284{bottom:1051.831500px;}
.y303{bottom:1052.290350px;}
.y342{bottom:1052.978850px;}
.y2c2{bottom:1053.033000px;}
.yc3{bottom:1053.505050px;}
.y383{bottom:1053.512400px;}
.y150{bottom:1060.404750px;}
.y1fe{bottom:1060.647450px;}
.y3f{bottom:1060.689900px;}
.y51{bottom:1060.794900px;}
.y24b{bottom:1061.049600px;}
.y138{bottom:1061.334750px;}
.y168{bottom:1061.364600px;}
.y1cb{bottom:1061.364750px;}
.y19a{bottom:1061.574600px;}
.y114{bottom:1065.730050px;}
.y283{bottom:1066.168500px;}
.y302{bottom:1066.397850px;}
.y341{bottom:1066.573350px;}
.y2c1{bottom:1066.627500px;}
.yb6{bottom:1067.004750px;}
.yc2{bottom:1067.005050px;}
.y382{bottom:1067.012400px;}
.y2{bottom:1070.267700px;}
.y14f{bottom:1079.349750px;}
.y167{bottom:1079.379600px;}
.y137{bottom:1079.379750px;}
.y3e{bottom:1079.379900px;}
.y1fd{bottom:1079.397450px;}
.y199{bottom:1079.589600px;}
.y340{bottom:1080.167850px;}
.y2c0{bottom:1080.222000px;}
.yb5{bottom:1080.504750px;}
.yc1{bottom:1080.505050px;}
.y301{bottom:1080.505350px;}
.y282{bottom:1080.505500px;}
.y381{bottom:1080.512400px;}
.y134{bottom:1080.634050px;}
.y1{bottom:1100.267700px;}
.y135{bottom:1127.276400px;}
.y3c{bottom:1127.276550px;}
.ybf{bottom:1127.276700px;}
.y280{bottom:1127.277150px;}
.h7{height:26.316000px;}
.h8{height:33.328125px;}
.h5{height:36.993164px;}
.he{height:38.496094px;}
.hb{height:42.773438px;}
.h9{height:43.054688px;}
.hf{height:44.868415px;}
.ha{height:48.304688px;}
.h6{height:48.436523px;}
.h11{height:48.495923px;}
.h10{height:53.098366px;}
.h4{height:53.818359px;}
.hd{height:66.563749px;}
.h3{height:66.656250px;}
.h2{height:68.437500px;}
.hc{height:80.836523px;}
.h1{height:1233.000000px;}
.h0{height:1233.070500px;}
.w2{width:914.172000px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.xe{left:21.259500px;}
.xf{left:74.409900px;}
.x7{left:95.668200px;}
.x5{left:98.146050px;}
.x12{left:106.304550px;}
.x1a{left:108.056550px;}
.x14{left:109.058550px;}
.x13{left:115.430550px;}
.x8{left:116.944200px;}
.x18{left:121.300050px;}
.x16{left:129.589050px;}
.x1{left:130.680300px;}
.x10{left:133.709550px;}
.x4{left:150.601050px;}
.x19{left:172.370550px;}
.xd{left:178.544250px;}
.x1b{left:225.509250px;}
.xb{left:235.984200px;}
.x6{left:249.376050px;}
.xc{left:257.273700px;}
.x2{left:303.696300px;}
.x17{left:438.928050px;}
.x3{left:460.216050px;}
.xa{left:478.363800px;}
.x9{left:499.663800px;}
.x15{left:507.980550px;}
.x1c{left:613.683900px;}
.x11{left:760.163550px;}
@media print{
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.220267pt;}
.v5{vertical-align:15.892800pt;}
.v2{vertical-align:16.865067pt;}
.v1{vertical-align:28.800000pt;}
.ls32{letter-spacing:-8.676000pt;}
.ls29{letter-spacing:-8.532000pt;}
.ls33{letter-spacing:-7.344000pt;}
.ls2a{letter-spacing:-7.200000pt;}
.ls43{letter-spacing:-1.776000pt;}
.ls28{letter-spacing:-1.200000pt;}
.ls17{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.008000pt;}
.ls6e{letter-spacing:0.033600pt;}
.ls14{letter-spacing:0.048000pt;}
.ls18{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.113067pt;}
.ls13{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.213333pt;}
.ls56{letter-spacing:0.240000pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls72{letter-spacing:0.268800pt;}
.ls26{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls60{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.373333pt;}
.lsf{letter-spacing:0.384000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls5b{letter-spacing:0.432000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.528000pt;}
.ls1e{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.576000pt;}
.lse{letter-spacing:0.586667pt;}
.ls5c{letter-spacing:0.624000pt;}
.ls21{letter-spacing:0.640000pt;}
.ls61{letter-spacing:0.672000pt;}
.ls1{letter-spacing:0.693333pt;}
.ls5f{letter-spacing:0.720000pt;}
.ls22{letter-spacing:0.746667pt;}
.ls15{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls69{letter-spacing:0.816000pt;}
.ls5{letter-spacing:0.853333pt;}
.ls5d{letter-spacing:0.864000pt;}
.ls2c{letter-spacing:0.906667pt;}
.ls67{letter-spacing:0.912000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls12{letter-spacing:1.008000pt;}
.ls31{letter-spacing:1.013333pt;}
.ls5e{letter-spacing:1.056000pt;}
.ls7{letter-spacing:1.066667pt;}
.ls68{letter-spacing:1.104000pt;}
.lsd{letter-spacing:1.120000pt;}
.ls5a{letter-spacing:1.163733pt;}
.ls24{letter-spacing:1.173333pt;}
.ls6c{letter-spacing:1.200000pt;}
.ls3{letter-spacing:1.226667pt;}
.ls62{letter-spacing:1.248000pt;}
.lsc{letter-spacing:1.280000pt;}
.ls27{letter-spacing:1.296000pt;}
.ls52{letter-spacing:1.333333pt;}
.ls59{letter-spacing:1.386667pt;}
.ls4{letter-spacing:1.440000pt;}
.ls65{letter-spacing:1.488000pt;}
.ls4f{letter-spacing:1.493333pt;}
.ls66{letter-spacing:1.536000pt;}
.ls1d{letter-spacing:1.546667pt;}
.ls6b{letter-spacing:1.584000pt;}
.ls23{letter-spacing:1.600000pt;}
.lsa{letter-spacing:1.653333pt;}
.ls6f{letter-spacing:1.680000pt;}
.ls30{letter-spacing:1.706667pt;}
.ls73{letter-spacing:1.728000pt;}
.ls50{letter-spacing:1.760000pt;}
.ls70{letter-spacing:1.776000pt;}
.ls20{letter-spacing:1.813333pt;}
.ls2d{letter-spacing:1.866667pt;}
.ls63{letter-spacing:1.872000pt;}
.ls57{letter-spacing:1.920000pt;}
.ls64{letter-spacing:1.968000pt;}
.ls25{letter-spacing:1.973333pt;}
.ls71{letter-spacing:2.016000pt;}
.ls2f{letter-spacing:2.026667pt;}
.ls6a{letter-spacing:2.064000pt;}
.ls51{letter-spacing:2.080000pt;}
.ls6d{letter-spacing:2.112000pt;}
.ls44{letter-spacing:2.293333pt;}
.ls53{letter-spacing:2.400000pt;}
.ls4e{letter-spacing:2.613333pt;}
.ls4d{letter-spacing:3.093333pt;}
.ls58{letter-spacing:3.146667pt;}
.ls54{letter-spacing:3.200000pt;}
.ls2e{letter-spacing:4.266667pt;}
.ls55{letter-spacing:6.453333pt;}
.ls49{letter-spacing:54.384000pt;}
.ls47{letter-spacing:66.384000pt;}
.ls46{letter-spacing:73.056000pt;}
.ls4a{letter-spacing:77.808000pt;}
.ls36{letter-spacing:78.384000pt;}
.ls38{letter-spacing:79.008000pt;}
.ls4b{letter-spacing:84.480000pt;}
.ls3c{letter-spacing:90.384000pt;}
.ls48{letter-spacing:96.480000pt;}
.ls4c{letter-spacing:97.200000pt;}
.ls3a{letter-spacing:97.344000pt;}
.ls45{letter-spacing:105.072000pt;}
.ls37{letter-spacing:108.480000pt;}
.ls35{letter-spacing:109.056000pt;}
.ls42{letter-spacing:109.200000pt;}
.ls3b{letter-spacing:116.448000pt;}
.ls41{letter-spacing:118.538133pt;}
.ls3d{letter-spacing:223.248000pt;}
.ls3e{letter-spacing:235.872000pt;}
.ls39{letter-spacing:405.312000pt;}
.ls3f{letter-spacing:450.672000pt;}
.ls40{letter-spacing:723.120000pt;}
.ws61{word-spacing:-14.826667pt;}
.ws63{word-spacing:-14.133333pt;}
.ws60{word-spacing:-14.026667pt;}
.ws65{word-spacing:-13.920000pt;}
.ws66{word-spacing:-13.813333pt;}
.ws62{word-spacing:-13.546667pt;}
.ws7{word-spacing:-13.493333pt;}
.ws64{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.333333pt;}
.ws6d{word-spacing:-13.200000pt;}
.ws69{word-spacing:-12.864000pt;}
.ws6c{word-spacing:-12.816000pt;}
.ws68{word-spacing:-12.768000pt;}
.ws6e{word-spacing:-12.672000pt;}
.ws1{word-spacing:-12.528000pt;}
.ws2{word-spacing:-12.480000pt;}
.ws67{word-spacing:-12.432000pt;}
.ws6a{word-spacing:-12.144000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws70{word-spacing:-9.408000pt;}
.ws6f{word-spacing:-8.668800pt;}
.ws6b{word-spacing:-8.433600pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:5.508000pt;}
.wsa{word-spacing:5.687733pt;}
.ws5{word-spacing:8.172000pt;}
.ws9{word-spacing:8.352000pt;}
.ws55{word-spacing:19.296000pt;}
.ws54{word-spacing:21.072000pt;}
.ws24{word-spacing:26.736000pt;}
.wse{word-spacing:29.280000pt;}
.ws21{word-spacing:30.384000pt;}
.ws17{word-spacing:31.296000pt;}
.ws51{word-spacing:33.072000pt;}
.ws22{word-spacing:37.200000pt;}
.ws16{word-spacing:42.384000pt;}
.ws53{word-spacing:43.008000pt;}
.ws5f{word-spacing:43.296000pt;}
.ws15{word-spacing:45.072000pt;}
.ws46{word-spacing:45.936000pt;}
.ws52{word-spacing:49.200000pt;}
.ws4b{word-spacing:49.824000pt;}
.ws18{word-spacing:54.240000pt;}
.ws2d{word-spacing:54.384000pt;}
.ws1b{word-spacing:57.072000pt;}
.ws1e{word-spacing:58.848000pt;}
.wsf{word-spacing:59.040000pt;}
.ws2b{word-spacing:61.200000pt;}
.ws26{word-spacing:66.384000pt;}
.wsc{word-spacing:67.968000pt;}
.ws28{word-spacing:69.072000pt;}
.ws4a{word-spacing:71.472000pt;}
.ws1c{word-spacing:73.200000pt;}
.ws1f{word-spacing:78.384000pt;}
.ws39{word-spacing:80.448000pt;}
.ws1a{word-spacing:81.072000pt;}
.ws29{word-spacing:85.200000pt;}
.ws1d{word-spacing:92.448000pt;}
.ws20{word-spacing:93.072000pt;}
.ws3d{word-spacing:95.088000pt;}
.ws5d{word-spacing:96.768000pt;}
.ws40{word-spacing:101.424000pt;}
.ws14{word-spacing:109.392000pt;}
.ws2f{word-spacing:114.672000pt;}
.ws5e{word-spacing:118.080000pt;}
.ws2a{word-spacing:122.688000pt;}
.ws43{word-spacing:125.424000pt;}
.ws34{word-spacing:127.968000pt;}
.ws10{word-spacing:128.544000pt;}
.ws3e{word-spacing:133.392000pt;}
.ws42{word-spacing:135.984000pt;}
.ws33{word-spacing:141.312000pt;}
.ws27{word-spacing:143.856000pt;}
.ws41{word-spacing:144.000000pt;}
.ws45{word-spacing:144.768000pt;}
.ws25{word-spacing:146.688000pt;}
.ws44{word-spacing:146.736000pt;}
.ws35{word-spacing:149.280000pt;}
.ws11{word-spacing:153.792000pt;}
.ws30{word-spacing:155.856000pt;}
.ws49{word-spacing:156.768000pt;}
.ws37{word-spacing:160.080000pt;}
.ws57{word-spacing:167.856000pt;}
.ws5b{word-spacing:170.688000pt;}
.ws4f{word-spacing:173.376000pt;}
.ws19{word-spacing:176.064000pt;}
.ws5a{word-spacing:177.744000pt;}
.ws3f{word-spacing:179.856000pt;}
.ws32{word-spacing:184.032000pt;}
.wsd{word-spacing:185.856000pt;}
.ws4c{word-spacing:186.720000pt;}
.ws2e{word-spacing:189.312000pt;}
.ws3c{word-spacing:189.408000pt;}
.ws4d{word-spacing:197.328000pt;}
.ws56{word-spacing:199.872000pt;}
.ws4e{word-spacing:200.016000pt;}
.ws48{word-spacing:200.064000pt;}
.ws12{word-spacing:201.792000pt;}
.ws2c{word-spacing:205.344000pt;}
.ws5c{word-spacing:208.032000pt;}
.ws31{word-spacing:210.624000pt;}
.ws23{word-spacing:211.872000pt;}
.ws47{word-spacing:221.376000pt;}
.ws36{word-spacing:224.064000pt;}
.ws3b{word-spacing:229.344000pt;}
.ws58{word-spacing:231.984000pt;}
.ws59{word-spacing:234.720000pt;}
.ws50{word-spacing:237.360000pt;}
.ws38{word-spacing:242.688000pt;}
.wsb{word-spacing:260.928000pt;}
.ws3a{word-spacing:357.120000pt;}
.ws13{word-spacing:414.624000pt;}
._79{margin-left:-91.221333pt;}
._2{margin-left:-8.704000pt;}
._3{margin-left:-6.826667pt;}
._6{margin-left:-5.440000pt;}
._4{margin-left:-4.266667pt;}
._5{margin-left:-3.328000pt;}
._0{margin-left:-2.133333pt;}
._1{margin-left:-0.938667pt;}
._b{width:1.013333pt;}
._9{width:2.666667pt;}
._f{width:3.680000pt;}
._a{width:4.800000pt;}
._88{width:5.914667pt;}
._7{width:7.632000pt;}
._2d{width:30.096000pt;}
._2e{width:36.144000pt;}
._30{width:37.088000pt;}
._8{width:39.600000pt;}
._2f{width:43.296000pt;}
._2c{width:47.808000pt;}
._3f{width:49.210667pt;}
._1e{width:52.288000pt;}
._1d{width:53.808000pt;}
._4a{width:55.365333pt;}
._17{width:58.405333pt;}
._48{width:61.200000pt;}
._6c{width:62.618667pt;}
._44{width:65.749333pt;}
._54{width:67.008000pt;}
._52{width:69.072000pt;}
._27{width:73.216000pt;}
._50{width:74.325333pt;}
._1b{width:78.421333pt;}
._49{width:79.397333pt;}
._37{width:85.200000pt;}
._35{width:90.384000pt;}
._69{width:91.440000pt;}
._22{width:92.346667pt;}
._1f{width:95.605333pt;}
._3d{width:97.200000pt;}
._2b{width:98.208000pt;}
._42{width:101.125333pt;}
._36{width:102.384000pt;}
._14{width:104.469333pt;}
._4f{width:105.648000pt;}
._3a{width:108.442667pt;}
._60{width:109.397333pt;}
._1c{width:110.496000pt;}
._19{width:111.424000pt;}
._5c{width:113.786667pt;}
._25{width:114.746667pt;}
._6b{width:116.176000pt;}
._33{width:117.072000pt;}
._5d{width:120.480000pt;}
._1a{width:121.850667pt;}
._26{width:123.002667pt;}
._7a{width:125.786667pt;}
._34{width:127.221333pt;}
._64{width:128.592000pt;}
._47{width:131.856000pt;}
._83{width:134.469333pt;}
._16{width:135.808000pt;}
._39{width:143.856000pt;}
._20{width:145.050667pt;}
._13{width:151.200000pt;}
._18{width:154.848000pt;}
._3c{width:155.856000pt;}
._4c{width:157.125333pt;}
._23{width:159.242667pt;}
._15{width:164.773333pt;}
._6a{width:166.053333pt;}
._55{width:167.066667pt;}
._21{width:168.122667pt;}
._24{width:169.669333pt;}
._78{width:171.285333pt;}
._3b{width:175.008000pt;}
._11{width:177.957333pt;}
._10{width:180.528000pt;}
._46{width:182.138667pt;}
._5b{width:183.530667pt;}
._41{width:191.856000pt;}
._3e{width:192.842667pt;}
._87{width:196.725333pt;}
._38{width:198.757333pt;}
._4d{width:202.101333pt;}
._67{width:206.138667pt;}
._86{width:208.645333pt;}
._7c{width:210.069333pt;}
._72{width:213.957333pt;}
._65{width:219.834667pt;}
._7e{width:220.874667pt;}
._51{width:231.482667pt;}
._66{width:232.677333pt;}
._73{width:237.216000pt;}
._2a{width:244.464000pt;}
._32{width:247.872000pt;}
._7f{width:248.762667pt;}
._57{width:254.976000pt;}
._68{width:258.074667pt;}
._53{width:263.498667pt;}
._62{width:268.320000pt;}
._81{width:277.989333pt;}
._40{width:279.530667pt;}
._6d{width:282.170667pt;}
._56{width:285.626667pt;}
._74{width:291.381333pt;}
._12{width:292.848000pt;}
._29{width:301.104000pt;}
._28{width:303.285333pt;}
._75{width:307.466667pt;}
._5f{width:311.450667pt;}
._77{width:317.568000pt;}
._5e{width:324.794667pt;}
._61{width:332.810667pt;}
._59{width:340.826667pt;}
._5a{width:343.317333pt;}
._4e{width:348.693333pt;}
._84{width:349.584000pt;}
._80{width:356.256000pt;}
._43{width:363.530667pt;}
._76{width:364.778667pt;}
._71{width:367.418667pt;}
._6f{width:376.730667pt;}
._7d{width:379.466667pt;}
._58{width:386.090667pt;}
._4b{width:388.293333pt;}
._45{width:390.960000pt;}
._6e{width:394.202667pt;}
._82{width:409.888000pt;}
._63{width:418.053333pt;}
._7b{width:420.794667pt;}
._85{width:428.229333pt;}
._31{width:465.888000pt;}
._70{width:722.373333pt;}
._c{width:1415.552000pt;}
._e{width:1425.115200pt;}
._d{width:2178.768000pt;}
.fs3{font-size:32.000000pt;}
.fs7{font-size:33.600000pt;}
.fs5{font-size:36.000000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:66.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:85.039333pt;}
.y136{bottom:85.043467pt;}
.y3d{bottom:85.043600pt;}
.yc0{bottom:85.043733pt;}
.y281{bottom:85.044133pt;}
.y11{bottom:123.802800pt;}
.y33f{bottom:126.317200pt;}
.y2bf{bottom:126.365333pt;}
.y8d{bottom:126.457867pt;}
.yb4{bottom:126.577867pt;}
.y104{bottom:126.586933pt;}
.y300{bottom:126.597600pt;}
.y380{bottom:126.611467pt;}
.y166{bottom:126.614133pt;}
.y67{bottom:126.614267pt;}
.y1fc{bottom:126.624400pt;}
.y27f{bottom:126.634267pt;}
.y113{bottom:126.666933pt;}
.y198{bottom:126.795200pt;}
.y22e{bottom:126.797733pt;}
.y1ca{bottom:126.981867pt;}
.yf4{bottom:132.186000pt;}
.y10{bottom:137.686800pt;}
.y165{bottom:138.614133pt;}
.y66{bottom:138.614267pt;}
.y2ff{bottom:138.681600pt;}
.y37f{bottom:138.695467pt;}
.y33e{bottom:138.857200pt;}
.y2be{bottom:139.109333pt;}
.y27e{bottom:139.114267pt;}
.y8c{bottom:142.471200pt;}
.y1fb{bottom:142.637733pt;}
.y197{bottom:142.808533pt;}
.y1c9{bottom:142.995200pt;}
.yb3{bottom:143.004533pt;}
.y22d{bottom:143.464400pt;}
.y103{bottom:143.680267pt;}
.y112{bottom:144.973600pt;}
.yf3{bottom:148.590000pt;}
.yf{bottom:149.686800pt;}
.y164{bottom:150.614133pt;}
.y2fe{bottom:150.765600pt;}
.y37e{bottom:150.779467pt;}
.y33d{bottom:151.397200pt;}
.y27d{bottom:151.594267pt;}
.y2bd{bottom:151.853333pt;}
.y8b{bottom:158.484533pt;}
.y1fa{bottom:158.651067pt;}
.y196{bottom:158.821867pt;}
.y1c8{bottom:159.008533pt;}
.yb2{bottom:159.431200pt;}
.y22c{bottom:160.131067pt;}
.y102{bottom:160.773600pt;}
.y2fd{bottom:162.849600pt;}
.y37d{bottom:162.863467pt;}
.y111{bottom:163.280267pt;}
.ye{bottom:163.570800pt;}
.y33c{bottom:163.937200pt;}
.yf2{bottom:164.994000pt;}
.y27c{bottom:167.854267pt;}
.y2bc{bottom:168.377333pt;}
.y8a{bottom:174.497867pt;}
.y1f9{bottom:174.822000pt;}
.y195{bottom:174.835200pt;}
.y2fc{bottom:174.933600pt;}
.y37c{bottom:174.947467pt;}
.y1c7{bottom:175.021867pt;}
.yd{bottom:175.570800pt;}
.yb1{bottom:175.857867pt;}
.y22b{bottom:176.797733pt;}
.y101{bottom:177.866933pt;}
.y33b{bottom:180.257200pt;}
.y27b{bottom:180.334267pt;}
.y2bb{bottom:181.121333pt;}
.yf1{bottom:181.398000pt;}
.y110{bottom:181.586933pt;}
.yc{bottom:189.454800pt;}
.y89{bottom:190.511200pt;}
.y2fb{bottom:190.797600pt;}
.y37b{bottom:190.811467pt;}
.y1f8{bottom:190.835333pt;}
.y194{bottom:190.848533pt;}
.y1c6{bottom:191.035200pt;}
.yb0{bottom:192.284533pt;}
.y33a{bottom:192.797200pt;}
.y27a{bottom:192.814267pt;}
.y22a{bottom:193.464400pt;}
.y2ba{bottom:193.865333pt;}
.y100{bottom:194.960267pt;}
.yf0{bottom:197.802000pt;}
.y10f{bottom:199.893600pt;}
.yb{bottom:201.454800pt;}
.y2fa{bottom:202.881600pt;}
.y37a{bottom:202.895467pt;}
.y279{bottom:205.294267pt;}
.y339{bottom:205.337200pt;}
.y88{bottom:206.524533pt;}
.y1f7{bottom:206.848667pt;}
.y193{bottom:206.861867pt;}
.y1c5{bottom:207.048533pt;}
.yaf{bottom:208.711200pt;}
.y229{bottom:210.131067pt;}
.y2b9{bottom:210.389333pt;}
.yff{bottom:212.053600pt;}
.yef{bottom:214.206000pt;}
.y2f9{bottom:214.965600pt;}
.y379{bottom:214.979467pt;}
.ya{bottom:215.338800pt;}
.y278{bottom:217.774267pt;}
.y338{bottom:217.877200pt;}
.y10e{bottom:218.200267pt;}
.y87{bottom:222.537867pt;}
.y1f6{bottom:222.862000pt;}
.y192{bottom:222.875200pt;}
.y1c4{bottom:223.061867pt;}
.y2b8{bottom:223.133333pt;}
.yae{bottom:225.137867pt;}
.y228{bottom:226.797733pt;}
.y2f8{bottom:227.049600pt;}
.y378{bottom:227.063467pt;}
.y9{bottom:227.338800pt;}
.yfe{bottom:229.146933pt;}
.y337{bottom:230.417200pt;}
.yee{bottom:230.610000pt;}
.y277{bottom:234.034267pt;}
.y2b7{bottom:235.877333pt;}
.y10d{bottom:236.506933pt;}
.y86{bottom:238.551200pt;}
.y1f5{bottom:238.875333pt;}
.y191{bottom:238.888533pt;}
.y1c3{bottom:239.075200pt;}
.y377{bottom:239.147467pt;}
.y8{bottom:239.338800pt;}
.yad{bottom:241.564533pt;}
.y2f7{bottom:242.913600pt;}
.y227{bottom:243.464400pt;}
.yfd{bottom:246.240267pt;}
.y276{bottom:246.514267pt;}
.y336{bottom:246.725200pt;}
.yed{bottom:247.014000pt;}
.y2b6{bottom:248.621333pt;}
.y85{bottom:254.564533pt;}
.y10c{bottom:254.813600pt;}
.y1f4{bottom:254.888667pt;}
.y190{bottom:254.901867pt;}
.y2f6{bottom:254.997600pt;}
.y376{bottom:255.011467pt;}
.y1c2{bottom:255.088533pt;}
.y275{bottom:258.994267pt;}
.y335{bottom:259.265200pt;}
.y226{bottom:260.131067pt;}
.yfc{bottom:263.333600pt;}
.yec{bottom:263.418000pt;}
.y2b5{bottom:265.145333pt;}
.y2f5{bottom:267.081600pt;}
.y375{bottom:267.082267pt;}
.y84{bottom:270.577867pt;}
.y1f3{bottom:270.902000pt;}
.y18f{bottom:270.915200pt;}
.y1c1{bottom:271.101867pt;}
.y274{bottom:271.474267pt;}
.y334{bottom:271.805200pt;}
.y10b{bottom:273.120267pt;}
.yac{bottom:273.991200pt;}
.y225{bottom:276.797733pt;}
.y2b4{bottom:277.889333pt;}
.y2f4{bottom:279.165600pt;}
.y374{bottom:279.166267pt;}
.yeb{bottom:279.822000pt;}
.yfb{bottom:280.426933pt;}
.y83{bottom:286.591200pt;}
.y1f2{bottom:286.915333pt;}
.y18e{bottom:286.928533pt;}
.y1c0{bottom:287.115200pt;}
.y333{bottom:288.125200pt;}
.y1f{bottom:290.032133pt;}
.yab{bottom:290.417867pt;}
.y2b3{bottom:290.633333pt;}
.y373{bottom:291.250267pt;}
.y10a{bottom:291.426933pt;}
.y224{bottom:293.464400pt;}
.y2f3{bottom:295.029600pt;}
.y273{bottom:295.738267pt;}
.yea{bottom:296.226000pt;}
.yfa{bottom:297.520267pt;}
.y332{bottom:300.665200pt;}
.y82{bottom:302.604533pt;}
.y1f1{bottom:302.928667pt;}
.y18d{bottom:302.941867pt;}
.y372{bottom:303.334267pt;}
.y1e{bottom:306.032133pt;}
.yaa{bottom:306.844533pt;}
.y2f2{bottom:307.113600pt;}
.y2b2{bottom:307.157333pt;}
.y109{bottom:309.733600pt;}
.y223{bottom:310.131067pt;}
.ye9{bottom:312.630000pt;}
.y331{bottom:313.205200pt;}
.yf9{bottom:314.613600pt;}
.y81{bottom:318.617867pt;}
.y1f0{bottom:318.942000pt;}
.y18c{bottom:318.955200pt;}
.y1bf{bottom:319.128533pt;}
.y2f1{bottom:319.197600pt;}
.y371{bottom:319.198267pt;}
.y2b1{bottom:319.901333pt;}
.y1d{bottom:322.032133pt;}
.ya9{bottom:323.271200pt;}
.y222{bottom:326.797733pt;}
.y108{bottom:328.040267pt;}
.ye8{bottom:329.034000pt;}
.y330{bottom:329.525200pt;}
.y370{bottom:331.282267pt;}
.yf8{bottom:331.706933pt;}
.y2b0{bottom:332.645333pt;}
.y80{bottom:334.631200pt;}
.y1ef{bottom:334.955333pt;}
.y18b{bottom:334.968533pt;}
.y2f0{bottom:335.061600pt;}
.y1be{bottom:335.141867pt;}
.y1c{bottom:338.032133pt;}
.ya8{bottom:339.697867pt;}
.y272{bottom:340.222267pt;}
.y32f{bottom:342.065200pt;}
.y36f{bottom:343.366267pt;}
.y221{bottom:343.464400pt;}
.y2af{bottom:345.389333pt;}
.ye7{bottom:345.438000pt;}
.y107{bottom:346.346933pt;}
.y2ef{bottom:347.145600pt;}
.yf7{bottom:348.800267pt;}
.y7f{bottom:350.644533pt;}
.y1ee{bottom:350.968667pt;}
.y18a{bottom:350.981867pt;}
.y1bd{bottom:351.155200pt;}
.y271{bottom:352.702267pt;}
.y1b{bottom:354.032133pt;}
.y32e{bottom:354.605200pt;}
.ya7{bottom:356.124533pt;}
.y2ee{bottom:359.229600pt;}
.y36e{bottom:359.230267pt;}
.y220{bottom:360.131067pt;}
.ye6{bottom:361.842000pt;}
.y2ae{bottom:361.913333pt;}
.y106{bottom:364.653600pt;}
.y270{bottom:365.182267pt;}
.yf6{bottom:365.893600pt;}
.y7e{bottom:366.657867pt;}
.y1ed{bottom:366.982000pt;}
.y189{bottom:366.995200pt;}
.y1bc{bottom:367.168533pt;}
.y1a{bottom:370.032133pt;}
.y32d{bottom:370.925200pt;}
.y36d{bottom:371.314267pt;}
.ya6{bottom:372.551200pt;}
.y2ad{bottom:374.657333pt;}
.y2ed{bottom:375.093600pt;}
.y21f{bottom:376.797733pt;}
.y26f{bottom:377.662267pt;}
.ye5{bottom:378.246000pt;}
.y105{bottom:382.960267pt;}
.yf5{bottom:382.986933pt;}
.y1ec{bottom:382.995333pt;}
.y24a{bottom:383.008533pt;}
.y1bb{bottom:383.181867pt;}
.y32c{bottom:383.465200pt;}
.y19{bottom:386.032133pt;}
.y2ec{bottom:387.177600pt;}
.y36c{bottom:387.178267pt;}
.y2ac{bottom:387.401333pt;}
.ya5{bottom:388.977867pt;}
.y26e{bottom:390.142267pt;}
.y21e{bottom:393.464400pt;}
.ye4{bottom:394.770267pt;}
.y32b{bottom:396.005200pt;}
.y7d{bottom:398.671200pt;}
.y188{bottom:399.008533pt;}
.y1eb{bottom:399.008667pt;}
.y249{bottom:399.021867pt;}
.y1ba{bottom:399.195200pt;}
.y2eb{bottom:399.261600pt;}
.y36b{bottom:399.262267pt;}
.y18{bottom:402.032133pt;}
.y26d{bottom:402.622267pt;}
.y2ab{bottom:403.925333pt;}
.ya4{bottom:405.404533pt;}
.y21d{bottom:410.131067pt;}
.ye3{bottom:411.174267pt;}
.y2ea{bottom:411.345600pt;}
.y36a{bottom:411.346267pt;}
.y32a{bottom:412.325200pt;}
.y7c{bottom:414.684533pt;}
.y187{bottom:415.021867pt;}
.y1ea{bottom:415.022000pt;}
.y248{bottom:415.035200pt;}
.y26c{bottom:415.102267pt;}
.y1b9{bottom:415.208533pt;}
.y2aa{bottom:416.669333pt;}
.y17{bottom:418.032133pt;}
.ya3{bottom:421.831200pt;}
.y369{bottom:423.430267pt;}
.y329{bottom:424.865200pt;}
.y21c{bottom:426.797733pt;}
.y2e9{bottom:427.209600pt;}
.ye2{bottom:427.578267pt;}
.y26b{bottom:427.582267pt;}
.y2a9{bottom:429.413333pt;}
.y7b{bottom:430.697867pt;}
.y186{bottom:431.035200pt;}
.y1e9{bottom:431.035333pt;}
.y247{bottom:431.048533pt;}
.y1b8{bottom:431.221867pt;}
.y16{bottom:434.032133pt;}
.y133{bottom:435.035600pt;}
.y328{bottom:437.405200pt;}
.ya2{bottom:438.257867pt;}
.y2e8{bottom:439.293600pt;}
.y368{bottom:439.294267pt;}
.y26a{bottom:440.062267pt;}
.y2a8{bottom:442.157333pt;}
.y21b{bottom:443.464400pt;}
.ye1{bottom:443.982267pt;}
.y7a{bottom:446.711200pt;}
.y185{bottom:447.048533pt;}
.y1e8{bottom:447.048667pt;}
.y246{bottom:447.061867pt;}
.y1b7{bottom:447.235200pt;}
.y327{bottom:449.945200pt;}
.y15{bottom:450.032133pt;}
.y2e7{bottom:451.377600pt;}
.y367{bottom:451.378267pt;}
.y132{bottom:451.631600pt;}
.y269{bottom:452.542267pt;}
.ya1{bottom:454.684533pt;}
.y2a7{bottom:454.901333pt;}
.y21a{bottom:460.131067pt;}
.ye0{bottom:460.386267pt;}
.y79{bottom:462.724533pt;}
.y184{bottom:463.061867pt;}
.y1e7{bottom:463.062000pt;}
.y245{bottom:463.075200pt;}
.y1b6{bottom:463.248533pt;}
.y2e6{bottom:463.461600pt;}
.y366{bottom:463.462267pt;}
.y268{bottom:465.022267pt;}
.y14{bottom:466.032133pt;}
.y326{bottom:466.265200pt;}
.y131{bottom:468.227600pt;}
.ya0{bottom:471.111200pt;}
.y2a6{bottom:471.425333pt;}
.y365{bottom:475.546267pt;}
.ydf{bottom:476.790267pt;}
.y219{bottom:476.797733pt;}
.y267{bottom:477.502267pt;}
.y78{bottom:478.737867pt;}
.y325{bottom:478.805200pt;}
.y183{bottom:479.075200pt;}
.y1e6{bottom:479.075333pt;}
.y244{bottom:479.088533pt;}
.y1b5{bottom:479.261867pt;}
.y2e5{bottom:479.325600pt;}
.y13{bottom:482.032133pt;}
.y2a5{bottom:484.169333pt;}
.y130{bottom:484.823600pt;}
.y9f{bottom:487.537867pt;}
.y266{bottom:489.982267pt;}
.y324{bottom:491.345200pt;}
.y2e4{bottom:491.409600pt;}
.y364{bottom:491.410267pt;}
.yde{bottom:493.194267pt;}
.y218{bottom:493.464400pt;}
.y77{bottom:494.751200pt;}
.y182{bottom:495.088533pt;}
.y1e5{bottom:495.088667pt;}
.y243{bottom:495.101867pt;}
.y1b4{bottom:495.275200pt;}
.y2a4{bottom:496.913333pt;}
.y12{bottom:498.032133pt;}
.y12f{bottom:501.419600pt;}
.y265{bottom:502.462267pt;}
.y2e3{bottom:503.493600pt;}
.y363{bottom:503.494267pt;}
.y323{bottom:503.885200pt;}
.y9e{bottom:503.964533pt;}
.ydd{bottom:509.598267pt;}
.y2a3{bottom:509.657333pt;}
.y217{bottom:510.131067pt;}
.y76{bottom:510.764533pt;}
.y181{bottom:511.101867pt;}
.y1e4{bottom:511.102000pt;}
.y242{bottom:511.115200pt;}
.y1b3{bottom:511.288533pt;}
.y264{bottom:514.942267pt;}
.y362{bottom:515.578267pt;}
.y12e{bottom:518.015600pt;}
.y2e2{bottom:519.357600pt;}
.y322{bottom:520.205200pt;}
.y9d{bottom:520.391200pt;}
.ydc{bottom:526.002267pt;}
.y2a2{bottom:526.181333pt;}
.y216{bottom:526.797733pt;}
.y180{bottom:527.115200pt;}
.y1e3{bottom:527.115333pt;}
.y241{bottom:527.128533pt;}
.y1b2{bottom:527.301867pt;}
.y263{bottom:527.422267pt;}
.y361{bottom:527.662267pt;}
.y2e1{bottom:531.441600pt;}
.y321{bottom:532.745200pt;}
.y12d{bottom:534.611600pt;}
.y9c{bottom:536.817867pt;}
.y2a1{bottom:538.925333pt;}
.y360{bottom:539.746267pt;}
.ydb{bottom:542.406267pt;}
.y75{bottom:542.777867pt;}
.y17f{bottom:543.128533pt;}
.y1e2{bottom:543.128667pt;}
.y240{bottom:543.141867pt;}
.y1b1{bottom:543.315200pt;}
.y215{bottom:543.464400pt;}
.y2e0{bottom:543.525600pt;}
.y3b{bottom:544.076933pt;}
.y320{bottom:549.065200pt;}
.y12c{bottom:551.207600pt;}
.y2a0{bottom:551.669333pt;}
.y35f{bottom:551.830267pt;}
.y9b{bottom:553.244533pt;}
.y2df{bottom:555.609600pt;}
.y3a{bottom:556.076933pt;}
.yda{bottom:558.810267pt;}
.y17e{bottom:559.141867pt;}
.y1e1{bottom:559.142000pt;}
.y23f{bottom:559.155200pt;}
.y1b0{bottom:559.328533pt;}
.y214{bottom:560.131067pt;}
.y31f{bottom:561.605200pt;}
.y262{bottom:564.115200pt;}
.y29f{bottom:564.413333pt;}
.y2de{bottom:567.693600pt;}
.y35e{bottom:567.694267pt;}
.y12b{bottom:567.803600pt;}
.y39{bottom:568.076933pt;}
.y9a{bottom:569.671200pt;}
.y31e{bottom:574.145200pt;}
.y17d{bottom:575.155200pt;}
.y23e{bottom:575.168533pt;}
.yd9{bottom:575.214267pt;}
.y1af{bottom:575.341867pt;}
.y31{bottom:576.197467pt;}
.y213{bottom:576.797733pt;}
.y35d{bottom:579.778267pt;}
.y38{bottom:580.076933pt;}
.y261{bottom:580.595200pt;}
.y29e{bottom:580.937333pt;}
.y2dd{bottom:583.557600pt;}
.y12a{bottom:584.399600pt;}
.y99{bottom:586.097867pt;}
.y31d{bottom:586.685200pt;}
.y30{bottom:588.197467pt;}
.y14e{bottom:590.528667pt;}
.y163{bottom:590.622000pt;}
.y74{bottom:590.791200pt;}
.y1e0{bottom:591.155333pt;}
.y17c{bottom:591.168533pt;}
.y23d{bottom:591.181867pt;}
.y1ae{bottom:591.355200pt;}
.yd8{bottom:591.618267pt;}
.y35c{bottom:591.862267pt;}
.y37{bottom:592.076933pt;}
.y212{bottom:593.464400pt;}
.y29d{bottom:593.681333pt;}
.y2dc{bottom:595.641600pt;}
.y260{bottom:597.075200pt;}
.y2f{bottom:600.197467pt;}
.y129{bottom:600.995600pt;}
.y98{bottom:602.524533pt;}
.y31c{bottom:602.993200pt;}
.y35b{bottom:603.946267pt;}
.y29c{bottom:606.425333pt;}
.y14d{bottom:606.568667pt;}
.y73{bottom:606.804533pt;}
.y1df{bottom:607.168667pt;}
.y17b{bottom:607.181867pt;}
.y23c{bottom:607.195200pt;}
.y162{bottom:607.462000pt;}
.y2db{bottom:607.725600pt;}
.y36{bottom:607.852933pt;}
.yd7{bottom:608.022267pt;}
.y211{bottom:610.131067pt;}
.y2e{bottom:612.197467pt;}
.y50{bottom:612.408800pt;}
.y65{bottom:612.528800pt;}
.y25f{bottom:613.555200pt;}
.y31b{bottom:615.533200pt;}
.y35a{bottom:616.030267pt;}
.y128{bottom:617.591600pt;}
.y97{bottom:618.951200pt;}
.y29b{bottom:619.169333pt;}
.y14c{bottom:622.608667pt;}
.y72{bottom:622.817867pt;}
.y1de{bottom:623.182000pt;}
.y23b{bottom:623.208533pt;}
.y1ad{bottom:623.368533pt;}
.y2da{bottom:623.589600pt;}
.y2d{bottom:624.197467pt;}
.y161{bottom:624.302000pt;}
.yd6{bottom:624.426267pt;}
.y210{bottom:626.797733pt;}
.y31a{bottom:628.073200pt;}
.y4f{bottom:629.022133pt;}
.y64{bottom:629.048800pt;}
.y25e{bottom:630.035200pt;}
.y359{bottom:631.894267pt;}
.y127{bottom:634.187600pt;}
.y96{bottom:635.377867pt;}
.y2d9{bottom:635.673600pt;}
.y29a{bottom:635.693333pt;}
.y2c{bottom:636.197467pt;}
.y14b{bottom:638.648667pt;}
.y71{bottom:638.831200pt;}
.y17a{bottom:639.195200pt;}
.y1dd{bottom:639.195333pt;}
.y23a{bottom:639.221867pt;}
.y1ac{bottom:639.381867pt;}
.y319{bottom:640.613200pt;}
.yd5{bottom:640.830267pt;}
.y160{bottom:641.142000pt;}
.y20f{bottom:643.464400pt;}
.y358{bottom:643.978267pt;}
.y63{bottom:645.568800pt;}
.y4e{bottom:645.635467pt;}
.y25d{bottom:646.515200pt;}
.y2d8{bottom:647.757600pt;}
.y2b{bottom:648.197467pt;}
.y299{bottom:648.437333pt;}
.y126{bottom:650.783600pt;}
.y95{bottom:651.804533pt;}
.y318{bottom:653.153200pt;}
.y14a{bottom:654.688667pt;}
.y70{bottom:654.844533pt;}
.y179{bottom:655.208533pt;}
.y1dc{bottom:655.208667pt;}
.y239{bottom:655.235200pt;}
.y1ab{bottom:655.395200pt;}
.y357{bottom:656.062267pt;}
.y35{bottom:656.090933pt;}
.yd4{bottom:657.234267pt;}
.y15f{bottom:657.982000pt;}
.y2d7{bottom:659.841600pt;}
.y20e{bottom:660.131067pt;}
.y2a{bottom:660.197467pt;}
.y298{bottom:661.181333pt;}
.y62{bottom:662.088800pt;}
.y4d{bottom:662.248800pt;}
.y25c{bottom:662.995200pt;}
.y34{bottom:665.690933pt;}
.y125{bottom:667.379600pt;}
.y356{bottom:668.146267pt;}
.y94{bottom:668.231200pt;}
.y317{bottom:669.473200pt;}
.y149{bottom:670.728667pt;}
.y6f{bottom:670.857867pt;}
.y178{bottom:671.221867pt;}
.y1db{bottom:671.222000pt;}
.y238{bottom:671.248533pt;}
.y1aa{bottom:671.408533pt;}
.yd3{bottom:673.638267pt;}
.y297{bottom:673.925333pt;}
.y33{bottom:675.290933pt;}
.y2d6{bottom:675.705600pt;}
.y20d{bottom:676.797733pt;}
.y61{bottom:678.608800pt;}
.y4c{bottom:678.862133pt;}
.y25b{bottom:679.475200pt;}
.y29{bottom:679.733467pt;}
.y355{bottom:680.230267pt;}
.y316{bottom:682.013200pt;}
.y124{bottom:683.975600pt;}
.y93{bottom:684.657867pt;}
.y32{bottom:684.890933pt;}
.y296{bottom:686.669333pt;}
.y148{bottom:686.768667pt;}
.y6e{bottom:686.871200pt;}
.y177{bottom:687.235200pt;}
.y1da{bottom:687.235333pt;}
.y237{bottom:687.261867pt;}
.y1a9{bottom:687.421867pt;}
.y2d5{bottom:687.789600pt;}
.yd2{bottom:690.042267pt;}
.y15e{bottom:690.822000pt;}
.y28{bottom:691.733467pt;}
.y20c{bottom:693.464400pt;}
.y315{bottom:694.553200pt;}
.y60{bottom:695.128800pt;}
.y4b{bottom:695.475467pt;}
.y25a{bottom:695.955200pt;}
.y354{bottom:696.094267pt;}
.y2d4{bottom:699.873600pt;}
.y123{bottom:700.571600pt;}
.y147{bottom:702.808667pt;}
.y6d{bottom:702.884533pt;}
.y295{bottom:703.193333pt;}
.y176{bottom:703.248533pt;}
.y1d9{bottom:703.248667pt;}
.y1a8{bottom:703.435200pt;}
.yd1{bottom:706.446267pt;}
.y15d{bottom:707.662000pt;}
.y353{bottom:708.178267pt;}
.y20b{bottom:710.131067pt;}
.y314{bottom:710.861200pt;}
.y5f{bottom:711.648800pt;}
.y2d3{bottom:711.957600pt;}
.y4a{bottom:712.088800pt;}
.y259{bottom:712.435200pt;}
.y294{bottom:715.937333pt;}
.y92{bottom:717.084533pt;}
.y122{bottom:717.167600pt;}
.y146{bottom:718.848667pt;}
.y6c{bottom:718.897867pt;}
.y175{bottom:719.261867pt;}
.y1d8{bottom:719.262000pt;}
.y236{bottom:719.275200pt;}
.y1a7{bottom:719.448533pt;}
.yd0{bottom:722.850267pt;}
.y313{bottom:723.401200pt;}
.y352{bottom:724.042267pt;}
.y15c{bottom:724.502000pt;}
.y27{bottom:726.401467pt;}
.y20a{bottom:726.797733pt;}
.y2d2{bottom:727.821600pt;}
.y5e{bottom:728.168800pt;}
.y293{bottom:728.681333pt;}
.y49{bottom:728.702133pt;}
.y258{bottom:728.915200pt;}
.y91{bottom:733.511200pt;}
.y121{bottom:733.763600pt;}
.y145{bottom:734.888667pt;}
.y6b{bottom:734.911200pt;}
.y174{bottom:735.275200pt;}
.y1d7{bottom:735.275333pt;}
.y1a6{bottom:735.461867pt;}
.y312{bottom:735.941200pt;}
.y351{bottom:736.126267pt;}
.y26{bottom:738.401467pt;}
.ycf{bottom:739.254267pt;}
.y2d1{bottom:739.905600pt;}
.y15b{bottom:741.342000pt;}
.y292{bottom:741.425333pt;}
.y209{bottom:743.464400pt;}
.y5d{bottom:744.688800pt;}
.y48{bottom:745.315467pt;}
.y257{bottom:745.395200pt;}
.y350{bottom:748.210267pt;}
.y311{bottom:748.481200pt;}
.y90{bottom:749.937867pt;}
.y120{bottom:750.359600pt;}
.y25{bottom:750.401467pt;}
.y6a{bottom:750.924533pt;}
.y144{bottom:750.928667pt;}
.y173{bottom:751.288533pt;}
.y1d6{bottom:751.288667pt;}
.y1a5{bottom:751.475200pt;}
.y2d0{bottom:751.989600pt;}
.y291{bottom:754.169333pt;}
.yce{bottom:755.658267pt;}
.y15a{bottom:758.182000pt;}
.y208{bottom:760.131067pt;}
.y310{bottom:761.021200pt;}
.y5c{bottom:761.208800pt;}
.y256{bottom:761.875200pt;}
.y47{bottom:761.928800pt;}
.y24{bottom:762.401467pt;}
.y34f{bottom:764.074267pt;}
.y8f{bottom:766.364533pt;}
.y69{bottom:766.937867pt;}
.y11f{bottom:766.955600pt;}
.y143{bottom:766.968667pt;}
.y235{bottom:767.288533pt;}
.y172{bottom:767.301867pt;}
.y1d5{bottom:767.302000pt;}
.y1a4{bottom:767.488533pt;}
.y2cf{bottom:767.853600pt;}
.y290{bottom:770.693333pt;}
.ycd{bottom:772.062267pt;}
.y23{bottom:774.401467pt;}
.y159{bottom:775.022000pt;}
.y34e{bottom:775.853200pt;}
.y30f{bottom:777.341200pt;}
.y5b{bottom:777.728800pt;}
.y255{bottom:778.355200pt;}
.y2ce{bottom:779.681333pt;}
.y8e{bottom:782.791200pt;}
.y68{bottom:782.951200pt;}
.y142{bottom:783.008667pt;}
.y234{bottom:783.301867pt;}
.y171{bottom:783.315200pt;}
.y1d4{bottom:783.315333pt;}
.y28f{bottom:783.437333pt;}
.y1a3{bottom:783.501867pt;}
.y11e{bottom:783.551600pt;}
.y22{bottom:786.401467pt;}
.ycc{bottom:788.466267pt;}
.y30e{bottom:789.881200pt;}
.y34d{bottom:791.717200pt;}
.y2cd{bottom:791.765333pt;}
.y158{bottom:791.862000pt;}
.y207{bottom:792.797733pt;}
.y5a{bottom:794.248800pt;}
.y46{bottom:794.542133pt;}
.y254{bottom:794.835200pt;}
.y28e{bottom:796.181333pt;}
.y21{bottom:798.401467pt;}
.y141{bottom:799.048667pt;}
.y233{bottom:799.315200pt;}
.y170{bottom:799.328533pt;}
.y1a2{bottom:799.515200pt;}
.y11d{bottom:800.147600pt;}
.y30d{bottom:802.421200pt;}
.y34c{bottom:803.801200pt;}
.y2cc{bottom:803.849333pt;}
.ycb{bottom:804.870267pt;}
.y157{bottom:808.702000pt;}
.y206{bottom:809.464400pt;}
.y20{bottom:810.401467pt;}
.y59{bottom:810.768800pt;}
.y253{bottom:811.315200pt;}
.y28d{bottom:812.705333pt;}
.y30c{bottom:814.961200pt;}
.y140{bottom:815.088667pt;}
.y232{bottom:815.328533pt;}
.y1d3{bottom:815.328667pt;}
.y16f{bottom:815.341867pt;}
.y1a1{bottom:815.528533pt;}
.y34b{bottom:815.885200pt;}
.ybe{bottom:816.006133pt;}
.y11c{bottom:816.743600pt;}
.y2cb{bottom:819.713333pt;}
.yca{bottom:821.274267pt;}
.y28c{bottom:825.449333pt;}
.y156{bottom:825.542000pt;}
.y205{bottom:826.131067pt;}
.y58{bottom:827.288800pt;}
.y30b{bottom:827.501200pt;}
.y252{bottom:827.795200pt;}
.y13f{bottom:831.128667pt;}
.y231{bottom:831.341867pt;}
.y1d2{bottom:831.342000pt;}
.y16e{bottom:831.355200pt;}
.y1a0{bottom:831.541867pt;}
.y34a{bottom:831.749200pt;}
.y2ca{bottom:831.797333pt;}
.ybd{bottom:832.602133pt;}
.y11b{bottom:833.339600pt;}
.yc9{bottom:837.678267pt;}
.y28b{bottom:838.193333pt;}
.y155{bottom:842.382000pt;}
.y204{bottom:842.797733pt;}
.y45{bottom:843.155467pt;}
.y57{bottom:843.808800pt;}
.y30a{bottom:843.809200pt;}
.y349{bottom:843.833200pt;}
.y2c9{bottom:843.881333pt;}
.y251{bottom:844.275200pt;}
.y38a{bottom:844.895467pt;}
.y13e{bottom:847.168667pt;}
.y230{bottom:847.355200pt;}
.y1d1{bottom:847.355333pt;}
.y16d{bottom:847.368533pt;}
.ybc{bottom:849.198133pt;}
.y11a{bottom:849.935600pt;}
.y28a{bottom:850.937333pt;}
.yc8{bottom:854.082267pt;}
.y348{bottom:855.917200pt;}
.y2c8{bottom:855.965333pt;}
.y309{bottom:856.349200pt;}
.y389{bottom:856.895467pt;}
.y6{bottom:857.110933pt;}
.y154{bottom:859.222000pt;}
.y203{bottom:859.464400pt;}
.y44{bottom:859.768800pt;}
.y56{bottom:860.328800pt;}
.y250{bottom:860.755200pt;}
.y13d{bottom:863.208667pt;}
.y22f{bottom:863.368533pt;}
.y1d0{bottom:863.368667pt;}
.y19f{bottom:863.555200pt;}
.ybb{bottom:865.794133pt;}
.y119{bottom:866.531600pt;}
.y289{bottom:867.461333pt;}
.y2c7{bottom:868.049333pt;}
.y308{bottom:868.889200pt;}
.y388{bottom:868.895467pt;}
.yc7{bottom:870.486267pt;}
.y347{bottom:871.781200pt;}
.y5{bottom:873.110933pt;}
.y153{bottom:876.062000pt;}
.y202{bottom:876.131067pt;}
.y43{bottom:876.382133pt;}
.y55{bottom:876.848800pt;}
.y24f{bottom:877.235200pt;}
.y13c{bottom:879.248667pt;}
.y16c{bottom:879.381867pt;}
.y1cf{bottom:879.382000pt;}
.y19e{bottom:879.568533pt;}
.y288{bottom:880.205333pt;}
.y307{bottom:881.429200pt;}
.yba{bottom:882.390133pt;}
.y118{bottom:883.127600pt;}
.y346{bottom:883.865200pt;}
.y2c6{bottom:883.913333pt;}
.y387{bottom:884.675467pt;}
.yc6{bottom:886.986267pt;}
.y4{bottom:889.110933pt;}
.y201{bottom:892.797733pt;}
.y287{bottom:892.949333pt;}
.y42{bottom:892.995467pt;}
.y54{bottom:893.368800pt;}
.y24e{bottom:893.715200pt;}
.y306{bottom:893.969200pt;}
.yc5{bottom:894.186267pt;}
.y13b{bottom:895.288667pt;}
.y16b{bottom:895.395200pt;}
.y1ce{bottom:895.395333pt;}
.y19d{bottom:895.581867pt;}
.y345{bottom:895.949200pt;}
.y2c5{bottom:895.997333pt;}
.y386{bottom:896.675467pt;}
.yb9{bottom:898.986133pt;}
.y117{bottom:899.723600pt;}
.y344{bottom:908.033200pt;}
.y2c4{bottom:908.081333pt;}
.y385{bottom:908.675467pt;}
.y152{bottom:908.902000pt;}
.y200{bottom:909.464400pt;}
.y286{bottom:909.473333pt;}
.y41{bottom:909.608800pt;}
.y53{bottom:909.888800pt;}
.y24d{bottom:910.195200pt;}
.y305{bottom:910.289200pt;}
.y13a{bottom:911.328667pt;}
.y16a{bottom:911.408533pt;}
.y1cd{bottom:911.408667pt;}
.y19c{bottom:911.595200pt;}
.yb8{bottom:915.582133pt;}
.y116{bottom:916.319600pt;}
.yc4{bottom:917.982267pt;}
.y343{bottom:920.117200pt;}
.y3{bottom:920.230933pt;}
.y38b{bottom:920.675467pt;}
.y285{bottom:922.217333pt;}
.yb7{bottom:922.782133pt;}
.y304{bottom:922.829200pt;}
.y115{bottom:923.519600pt;}
.y2c3{bottom:923.945333pt;}
.y384{bottom:924.455467pt;}
.y151{bottom:925.742000pt;}
.y1ff{bottom:926.131067pt;}
.y40{bottom:926.222133pt;}
.y52{bottom:926.408800pt;}
.y24c{bottom:926.675200pt;}
.y139{bottom:927.368667pt;}
.y169{bottom:927.421867pt;}
.y1cc{bottom:927.422000pt;}
.y19b{bottom:927.608533pt;}
.y284{bottom:934.961333pt;}
.y303{bottom:935.369200pt;}
.y342{bottom:935.981200pt;}
.y2c2{bottom:936.029333pt;}
.yc3{bottom:936.448933pt;}
.y383{bottom:936.455467pt;}
.y150{bottom:942.582000pt;}
.y1fe{bottom:942.797733pt;}
.y3f{bottom:942.835467pt;}
.y51{bottom:942.928800pt;}
.y24b{bottom:943.155200pt;}
.y138{bottom:943.408667pt;}
.y168{bottom:943.435200pt;}
.y1cb{bottom:943.435333pt;}
.y19a{bottom:943.621867pt;}
.y114{bottom:947.315600pt;}
.y283{bottom:947.705333pt;}
.y302{bottom:947.909200pt;}
.y341{bottom:948.065200pt;}
.y2c1{bottom:948.113333pt;}
.yb6{bottom:948.448667pt;}
.yc2{bottom:948.448933pt;}
.y382{bottom:948.455467pt;}
.y2{bottom:951.349067pt;}
.y14f{bottom:959.422000pt;}
.y167{bottom:959.448533pt;}
.y137{bottom:959.448667pt;}
.y3e{bottom:959.448800pt;}
.y1fd{bottom:959.464400pt;}
.y199{bottom:959.635200pt;}
.y340{bottom:960.149200pt;}
.y2c0{bottom:960.197333pt;}
.yb5{bottom:960.448667pt;}
.yc1{bottom:960.448933pt;}
.y301{bottom:960.449200pt;}
.y282{bottom:960.449333pt;}
.y381{bottom:960.455467pt;}
.y134{bottom:960.563600pt;}
.y1{bottom:978.015733pt;}
.y135{bottom:1002.023467pt;}
.y3c{bottom:1002.023600pt;}
.ybf{bottom:1002.023733pt;}
.y280{bottom:1002.024133pt;}
.h7{height:23.392000pt;}
.h8{height:29.625000pt;}
.h5{height:32.882812pt;}
.he{height:34.218750pt;}
.hb{height:38.020833pt;}
.h9{height:38.270833pt;}
.hf{height:39.883035pt;}
.ha{height:42.937500pt;}
.h6{height:43.054688pt;}
.h11{height:43.107488pt;}
.h10{height:47.198548pt;}
.h4{height:47.838542pt;}
.hd{height:59.167777pt;}
.h3{height:59.250000pt;}
.h2{height:60.833333pt;}
.hc{height:71.854687pt;}
.h1{height:1096.000000pt;}
.h0{height:1096.062667pt;}
.w2{width:812.597333pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.xe{left:18.897333pt;}
.xf{left:66.142133pt;}
.x7{left:85.038400pt;}
.x5{left:87.240933pt;}
.x12{left:94.492933pt;}
.x1a{left:96.050267pt;}
.x14{left:96.940933pt;}
.x13{left:102.604933pt;}
.x8{left:103.950400pt;}
.x18{left:107.822267pt;}
.x16{left:115.190267pt;}
.x1{left:116.160267pt;}
.x10{left:118.852933pt;}
.x4{left:133.867600pt;}
.x19{left:153.218267pt;}
.xd{left:158.706000pt;}
.x1b{left:200.452667pt;}
.xb{left:209.763733pt;}
.x6{left:221.667600pt;}
.xc{left:228.687733pt;}
.x2{left:269.952267pt;}
.x17{left:390.158267pt;}
.x3{left:409.080933pt;}
.xa{left:425.212267pt;}
.x9{left:444.145600pt;}
.x15{left:451.538267pt;}
.x1c{left:545.496800pt;}
.x11{left:675.700933pt;}
}




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