
    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_3675b5ee6519dc868a87cdf3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929000;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_9af2e780c8c2931e7f10f05d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935000;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_204a92c9a70f031031b5a2e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.070312;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_9e80abe505255369896b0edf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a799bf9d343aa5d16323ae95.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_3f0411c16d2843598260d2ab.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_89d1ef1877fa2c1d5f9b748b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.704102;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_5ae79545a945dbcab4fd7a95.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.523438;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_4ac62e8b190f010f2887b34a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1af1165a83e3854104f882c5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_0916a80af609bf06324eab1d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070312;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;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,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:-29.880000px;}
.v7{vertical-align:-20.462400px;}
.vb{vertical-align:-17.975880px;}
.v9{vertical-align:-12.207960px;}
.v5{vertical-align:-2.525040px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:20.880000px;}
.v1{vertical-align:29.936160px;}
.v6{vertical-align:40.316040px;}
.v4{vertical-align:45.330480px;}
.v3{vertical-align:47.855520px;}
.va{vertical-align:52.560000px;}
.ls4c{letter-spacing:-0.480960px;}
.ls28{letter-spacing:-0.420840px;}
.lsb{letter-spacing:-0.378000px;}
.ls35{letter-spacing:-0.360720px;}
.ls8{letter-spacing:-0.300600px;}
.ls29{letter-spacing:-0.240480px;}
.ls14{letter-spacing:-0.180360px;}
.ls31{letter-spacing:-0.168480px;}
.lsa{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.120240px;}
.ls57{letter-spacing:-0.119520px;}
.ls55{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.060120px;}
.ls3e{letter-spacing:-0.038880px;}
.ls0{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.042084px;}
.ls54{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.060120px;}
.lse{letter-spacing:0.065880px;}
.ls51{letter-spacing:0.072144px;}
.ls1{letter-spacing:0.078156px;}
.ls4f{letter-spacing:0.102204px;}
.ls5{letter-spacing:0.108000px;}
.ls44{letter-spacing:0.108216px;}
.ls3{letter-spacing:0.120240px;}
.ls52{letter-spacing:0.140040px;}
.ls3c{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.150300px;}
.ls53{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.180360px;}
.ls2c{letter-spacing:0.255960px;}
.ls56{letter-spacing:0.259920px;}
.ls4d{letter-spacing:0.300600px;}
.ls3a{letter-spacing:0.652680px;}
.ls2a{letter-spacing:0.703404px;}
.ls23{letter-spacing:1.563120px;}
.ls1f{letter-spacing:1.863720px;}
.ls4e{letter-spacing:2.308608px;}
.ls38{letter-spacing:3.066120px;}
.ls26{letter-spacing:3.426840px;}
.ls32{letter-spacing:3.733452px;}
.ls3d{letter-spacing:4.148280px;}
.ls34{letter-spacing:4.869720px;}
.ls49{letter-spacing:6.270516px;}
.ls2f{letter-spacing:6.312600px;}
.ls45{letter-spacing:7.028028px;}
.ls21{letter-spacing:7.394760px;}
.ls22{letter-spacing:9.198360px;}
.ls33{letter-spacing:9.859680px;}
.ls48{letter-spacing:9.931824px;}
.ls2b{letter-spacing:10.280520px;}
.ls30{letter-spacing:11.001960px;}
.ls1d{letter-spacing:13.046040px;}
.ls27{letter-spacing:13.094136px;}
.ls1e{letter-spacing:13.406760px;}
.ls3f{letter-spacing:13.527000px;}
.ls2{letter-spacing:15.330600px;}
.ls2d{letter-spacing:18.396720px;}
.ls4a{letter-spacing:20.019960px;}
.ls40{letter-spacing:22.905720px;}
.ls46{letter-spacing:24.348600px;}
.ls13{letter-spacing:25.071120px;}
.ls3b{letter-spacing:25.791480px;}
.ls37{letter-spacing:32.585040px;}
.lsf{letter-spacing:33.730560px;}
.ls41{letter-spacing:35.831520px;}
.ls39{letter-spacing:36.498852px;}
.ls36{letter-spacing:36.913680px;}
.ls12{letter-spacing:38.391120px;}
.ls2e{letter-spacing:49.418640px;}
.ls11{letter-spacing:58.191120px;}
.ls1b{letter-spacing:58.496760px;}
.ls1a{letter-spacing:58.556880px;}
.ls24{letter-spacing:65.711160px;}
.ls47{letter-spacing:68.596920px;}
.ls1c{letter-spacing:70.039800px;}
.ls10{letter-spacing:71.511120px;}
.ls15{letter-spacing:93.408444px;}
.ls20{letter-spacing:109.572480px;}
.ls43{letter-spacing:128.356200px;}
.ls16{letter-spacing:230.259600px;}
.ls17{letter-spacing:283.886640px;}
.ls42{letter-spacing:296.511840px;}
.ls18{letter-spacing:310.159080px;}
.ls19{letter-spacing:317.012760px;}
.ls4b{letter-spacing:847.511280px;}
.lsc{letter-spacing:1606.887360px;}
.lsd{letter-spacing:2383.758000px;}
.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;}
}
.ws42{word-spacing:-60.120000px;}
.ws6d{word-spacing:-41.951520px;}
.ws0{word-spacing:-30.024000px;}
.ws1d{word-spacing:-18.380520px;}
.ws1f{word-spacing:-16.893720px;}
.ws53{word-spacing:-16.863660px;}
.wsb5{word-spacing:-16.853400px;}
.ws41{word-spacing:-16.833600px;}
.ws4{word-spacing:-16.773480px;}
.ws5{word-spacing:-16.713360px;}
.ws6{word-spacing:-16.653240px;}
.ws2{word-spacing:-16.593120px;}
.ws1c{word-spacing:-16.533000px;}
.wsb9{word-spacing:-16.493760px;}
.ws91{word-spacing:-16.472880px;}
.ws54{word-spacing:-16.412760px;}
.ws7e{word-spacing:-16.352640px;}
.ws9c{word-spacing:-16.292520px;}
.wsb6{word-spacing:-16.232400px;}
.ws7{word-spacing:-14.850000px;}
.ws8{word-spacing:-14.634000px;}
.ws3{word-spacing:-10.808640px;}
.ws8b{word-spacing:-10.769760px;}
.wsb8{word-spacing:-0.601200px;}
.ws1a{word-spacing:-0.541080px;}
.wsa1{word-spacing:-0.480960px;}
.ws1e{word-spacing:-0.395280px;}
.wsab{word-spacing:-0.300600px;}
.ws9e{word-spacing:-0.240480px;}
.wse{word-spacing:-0.180360px;}
.ws19{word-spacing:-0.120240px;}
.ws20{word-spacing:-0.065880px;}
.wsd{word-spacing:-0.060120px;}
.ws1{word-spacing:0.000000px;}
.wsbb{word-spacing:0.059760px;}
.ws37{word-spacing:0.060120px;}
.ws17{word-spacing:0.108000px;}
.ws1b{word-spacing:0.120240px;}
.ws16{word-spacing:0.180360px;}
.wsb7{word-spacing:0.216000px;}
.ws6c{word-spacing:0.240480px;}
.ws18{word-spacing:0.270000px;}
.ws11{word-spacing:0.300600px;}
.ws93{word-spacing:0.360720px;}
.ws60{word-spacing:0.420840px;}
.wsaa{word-spacing:0.480960px;}
.ws62{word-spacing:0.541080px;}
.wsba{word-spacing:0.776880px;}
.ws27{word-spacing:0.901800px;}
.ws6a{word-spacing:1.262520px;}
.wsac{word-spacing:1.382760px;}
.ws99{word-spacing:1.503000px;}
.ws29{word-spacing:1.623240px;}
.ws39{word-spacing:1.983960px;}
.ws64{word-spacing:2.344680px;}
.ws81{word-spacing:2.705400px;}
.ws6e{word-spacing:3.066120px;}
.ws26{word-spacing:3.426840px;}
.ws25{word-spacing:3.547080px;}
.ws56{word-spacing:3.787560px;}
.ws97{word-spacing:3.907800px;}
.ws87{word-spacing:4.148280px;}
.ws2e{word-spacing:4.509000px;}
.ws67{word-spacing:4.809600px;}
.ws22{word-spacing:5.170320px;}
.ws9f{word-spacing:5.531040px;}
.ws66{word-spacing:5.891760px;}
.ws36{word-spacing:6.252480px;}
.ws69{word-spacing:6.613200px;}
.ws51{word-spacing:6.973920px;}
.wsb1{word-spacing:7.094160px;}
.ws52{word-spacing:7.334640px;}
.ws4e{word-spacing:7.695360px;}
.ws34{word-spacing:8.056080px;}
.ws2d{word-spacing:8.416800px;}
.ws50{word-spacing:8.777520px;}
.ws9d{word-spacing:8.897760px;}
.ws3a{word-spacing:9.138240px;}
.ws5b{word-spacing:9.498960px;}
.ws57{word-spacing:9.859680px;}
.ws46{word-spacing:10.220400px;}
.ws38{word-spacing:10.581120px;}
.ws13{word-spacing:10.941840px;}
.ws4a{word-spacing:11.302560px;}
.ws68{word-spacing:11.663280px;}
.ws5a{word-spacing:12.024000px;}
.ws4c{word-spacing:12.384720px;}
.ws4d{word-spacing:12.745440px;}
.wsb4{word-spacing:12.925800px;}
.ws47{word-spacing:13.106160px;}
.wsad{word-spacing:13.466880px;}
.ws92{word-spacing:13.827600px;}
.ws70{word-spacing:14.188320px;}
.ws55{word-spacing:14.549040px;}
.ws75{word-spacing:14.909760px;}
.wsb{word-spacing:15.270480px;}
.wsc{word-spacing:15.450840px;}
.ws12{word-spacing:15.631200px;}
.ws28{word-spacing:15.991920px;}
.ws33{word-spacing:16.352640px;}
.wsae{word-spacing:16.713360px;}
.wsaf{word-spacing:16.773480px;}
.ws98{word-spacing:17.074080px;}
.ws84{word-spacing:17.434800px;}
.ws5f{word-spacing:17.795520px;}
.ws63{word-spacing:18.156240px;}
.wsa0{word-spacing:18.516960px;}
.ws95{word-spacing:18.877680px;}
.ws65{word-spacing:19.238400px;}
.ws88{word-spacing:19.599120px;}
.ws85{word-spacing:19.959840px;}
.ws86{word-spacing:20.320560px;}
.ws49{word-spacing:20.681280px;}
.ws48{word-spacing:21.042000px;}
.ws5d{word-spacing:21.402720px;}
.ws77{word-spacing:21.763440px;}
.ws72{word-spacing:22.124160px;}
.ws10{word-spacing:22.484880px;}
.wsf{word-spacing:22.845600px;}
.ws3d{word-spacing:23.206320px;}
.ws6b{word-spacing:23.567040px;}
.ws30{word-spacing:23.927760px;}
.ws90{word-spacing:24.288480px;}
.ws71{word-spacing:24.649200px;}
.ws4f{word-spacing:25.370640px;}
.ws8a{word-spacing:25.731360px;}
.ws96{word-spacing:26.452800px;}
.ws82{word-spacing:26.813520px;}
.ws24{word-spacing:27.174240px;}
.ws61{word-spacing:27.534960px;}
.ws3b{word-spacing:27.895680px;}
.ws5e{word-spacing:28.977840px;}
.wsa7{word-spacing:29.338560px;}
.ws35{word-spacing:29.699280px;}
.wsa{word-spacing:30.420720px;}
.ws9{word-spacing:30.781440px;}
.ws9b{word-spacing:31.142160px;}
.ws5c{word-spacing:31.502880px;}
.ws8d{word-spacing:31.863600px;}
.ws3c{word-spacing:32.585040px;}
.wsa9{word-spacing:32.705280px;}
.ws6f{word-spacing:32.945760px;}
.ws78{word-spacing:33.306480px;}
.ws59{word-spacing:33.667200px;}
.wsa8{word-spacing:33.847560px;}
.ws58{word-spacing:34.027920px;}
.ws7b{word-spacing:34.388640px;}
.wsa4{word-spacing:35.110080px;}
.ws43{word-spacing:35.410680px;}
.ws8e{word-spacing:36.132120px;}
.ws8f{word-spacing:36.492840px;}
.ws3f{word-spacing:37.214280px;}
.ws44{word-spacing:39.378600px;}
.ws4b{word-spacing:39.739320px;}
.ws32{word-spacing:40.100040px;}
.ws31{word-spacing:40.460760px;}
.ws74{word-spacing:41.542920px;}
.ws73{word-spacing:41.903640px;}
.ws79{word-spacing:42.985800px;}
.wsb3{word-spacing:44.428680px;}
.wsb2{word-spacing:44.789400px;}
.ws76{word-spacing:45.150120px;}
.ws3e{word-spacing:45.510840px;}
.wsa2{word-spacing:45.871560px;}
.ws2c{word-spacing:46.232280px;}
.ws21{word-spacing:47.314440px;}
.ws89{word-spacing:48.757320px;}
.ws83{word-spacing:49.839480px;}
.ws9a{word-spacing:50.200200px;}
.ws80{word-spacing:50.560920px;}
.ws94{word-spacing:50.921640px;}
.wsa3{word-spacing:52.003800px;}
.ws45{word-spacing:53.085960px;}
.ws2a{word-spacing:53.446680px;}
.ws2b{word-spacing:53.807400px;}
.ws7d{word-spacing:55.971720px;}
.ws7c{word-spacing:56.332440px;}
.wsa6{word-spacing:60.300360px;}
.wsa5{word-spacing:60.661080px;}
.ws8c{word-spacing:62.464680px;}
.ws40{word-spacing:62.825400px;}
.ws7a{word-spacing:76.111920px;}
.ws7f{word-spacing:78.636960px;}
.wsb0{word-spacing:80.801280px;}
.ws2f{word-spacing:97.695000px;}
.ws23{word-spacing:112.484520px;}
.ws14{word-spacing:113.566680px;}
.ws15{word-spacing:113.927400px;}
._5{margin-left:-14.220000px;}
._7{margin-left:-10.980000px;}
._2{margin-left:-8.280000px;}
._6{margin-left:-7.214400px;}
._4{margin-left:-5.400000px;}
._1{margin-left:-3.600000px;}
._0{margin-left:-1.440000px;}
._3{width:1.440000px;}
._8{width:2.880000px;}
._9{width:5.209200px;}
._22{width:6.487200px;}
._20{width:8.116200px;}
._21{width:9.252720px;}
._c{width:10.758600px;}
._14{width:11.783520px;}
._12{width:12.925800px;}
._a{width:15.382080px;}
._11{width:17.383320px;}
._17{width:20.432160px;}
._b{width:22.118400px;}
._19{width:25.664040px;}
._e{width:30.370680px;}
._18{width:31.743360px;}
._10{width:33.005880px;}
._1a{width:36.312480px;}
._f{width:40.515120px;}
._15{width:42.373080px;}
._23{width:45.213120px;}
._13{width:66.192120px;}
._16{width:70.340400px;}
._1f{width:122.106600px;}
._1e{width:166.887360px;}
._1d{width:194.247720px;}
._1c{width:199.718640px;}
._1b{width:416.866320px;}
._d{width:847.271160px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fsa{font-size:42.120000px;}
.fs7{font-size:47.880000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs5{font-size:60.120000px;}
.fsb{font-size:63.372044px;}
.fs9{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y34c{bottom:2.700000px;}
.y31{bottom:3.330000px;}
.y32d{bottom:3.420000px;}
.yd4{bottom:7.830000px;}
.y316{bottom:20.610000px;}
.y32f{bottom:20.700000px;}
.ya2{bottom:25.110000px;}
.y9{bottom:45.893520px;}
.y33{bottom:45.900000px;}
.y356{bottom:55.890000px;}
.y8d{bottom:59.670000px;}
.y389{bottom:66.780000px;}
.y374{bottom:72.450000px;}
.y9f{bottom:76.860000px;}
.y30{bottom:85.140000px;}
.yd3{bottom:87.210000px;}
.y368{bottom:88.752240px;}
.y36e{bottom:89.640000px;}
.y26e{bottom:89.754750px;}
.y35c{bottom:91.080000px;}
.y2cc{bottom:91.223820px;}
.y210{bottom:91.752390px;}
.y9e{bottom:94.049850px;}
.y388{bottom:94.320000px;}
.y145{bottom:94.446900px;}
.yd1{bottom:94.902840px;}
.y1b0{bottom:98.144280px;}
.y38c{bottom:99.365580px;}
.y10c{bottom:100.249740px;}
.y367{bottom:102.517740px;}
.y17b{bottom:105.161760px;}
.y2f{bottom:105.708090px;}
.y379{bottom:106.920000px;}
.y26d{bottom:107.039250px;}
.y240{bottom:107.132400px;}
.y1e6{bottom:111.501540px;}
.y144{bottom:111.641220px;}
.yd0{bottom:112.187340px;}
.yd2{bottom:112.320000px;}
.y2cb{bottom:112.912110px;}
.y20f{bottom:114.522840px;}
.y366{bottom:116.283240px;}
.y10b{bottom:117.894960px;}
.y68{bottom:118.260000px;}
.y1af{bottom:120.914730px;}
.y17a{bottom:122.446260px;}
.y38b{bottom:122.940900px;}
.y2e{bottom:122.992590px;}
.y26c{bottom:124.233570px;}
.y23f{bottom:124.326720px;}
.y1e5{bottom:128.786040px;}
.y143{bottom:128.925720px;}
.y365{bottom:130.144500px;}
.y2ca{bottom:130.196610px;}
.y108{bottom:135.450000px;}
.y67{bottom:135.540000px;}
.y20e{bottom:137.203110px;}
.y10a{bottom:138.330000px;}
.y109{bottom:138.335760px;}
.ycd{bottom:138.459780px;}
.ycf{bottom:138.549960px;}
.y179{bottom:139.640580px;}
.y2d{bottom:140.186910px;}
.y23e{bottom:141.611220px;}
.y38a{bottom:141.840000px;}
.y1ae{bottom:143.685180px;}
.y364{bottom:143.910000px;}
.y26b{bottom:146.012040px;}
.y1e4{bottom:146.070540px;}
.y142{bottom:146.210220px;}
.y331{bottom:147.870000px;}
.y2c9{bottom:151.975080px;}
.y20d{bottom:154.487610px;}
.ycc{bottom:155.654100px;}
.y363{bottom:155.700000px;}
.yce{bottom:155.744280px;}
.y66{bottom:157.230000px;}
.y2c{bottom:157.471410px;}
.y107{bottom:158.040000px;}
.y23d{bottom:158.805540px;}
.y1ad{bottom:160.879500px;}
.y178{bottom:161.419050px;}
.y26a{bottom:163.296540px;}
.y1e3{bottom:167.668650px;}
.y141{bottom:167.898510px;}
.y2c8{bottom:169.169400px;}
.y20c{bottom:171.681930px;}
.y2b{bottom:174.665730px;}
.y1ac{bottom:178.164000px;}
.y65{bottom:179.010000px;}
.y269{bottom:180.490860px;}
.y23c{bottom:180.493830px;}
.y106{bottom:180.990990px;}
.yc9{bottom:181.926540px;}
.ycb{bottom:182.016720px;}
.y177{bottom:183.197520px;}
.y140{bottom:185.183010px;}
.y2c7{bottom:186.453900px;}
.y20b{bottom:188.966430px;}
.y362{bottom:190.980000px;}
.y103{bottom:191.077290px;}
.y2a{bottom:191.950230px;}
.y1e2{bottom:194.031270px;}
.yc8{bottom:199.211040px;}
.yca{bottom:199.301220px;}
.y176{bottom:200.391840px;}
.y64{bottom:200.700000px;}
.y1ab{bottom:200.934450px;}
.y268{bottom:202.179150px;}
.y13f{bottom:202.377330px;}
.y105{bottom:203.040000px;}
.y104{bottom:205.290000px;}
.y20a{bottom:206.250930px;}
.y23b{bottom:206.856450px;}
.y2c6{bottom:208.232370px;}
.y29{bottom:209.234730px;}
.y1e1{bottom:211.315770px;}
.y175{bottom:217.676340px;}
.y1aa{bottom:218.128770px;}
.y63{bottom:222.480000px;}
.y209{bottom:223.445250px;}
.y23a{bottom:224.050770px;}
.y13e{bottom:224.155800px;}
.y102{bottom:225.000000px;}
.y2c5{bottom:225.426690px;}
.yc7{bottom:225.483480px;}
.y35b{bottom:226.260000px;}
.y28{bottom:226.429050px;}
.y1e0{bottom:228.510090px;}
.y267{bottom:233.050770px;}
.y1a9{bottom:235.413270px;}
.y174{bottom:239.454810px;}
.y239{bottom:241.335270px;}
.y13d{bottom:241.440300px;}
.yc3{bottom:242.692830px;}
.y2c4{bottom:242.711190px;}
.yc6{bottom:242.767980px;}
.y27{bottom:243.713550px;}
.y62{bottom:244.260000px;}
.y208{bottom:245.133540px;}
.y1df{bottom:245.794590px;}
.y101{bottom:246.659310px;}
.y266{bottom:250.245090px;}
.y173{bottom:256.649130px;}
.y1a8{bottom:257.191740px;}
.y238{bottom:258.619770px;}
.y13c{bottom:258.634620px;}
.yc2{bottom:259.977330px;}
.yc5{bottom:260.052480px;}
.y26{bottom:260.998050px;}
.y361{bottom:261.450000px;}
.y100{bottom:263.943810px;}
.y2c3{bottom:264.489660px;}
.y1de{bottom:265.954230px;}
.y61{bottom:266.316120px;}
.y265{bottom:267.529590px;}
.y207{bottom:271.496160px;}
.y295{bottom:272.161620px;}
.y1a7{bottom:274.386060px;}
.y237{bottom:275.814090px;}
.y13b{bottom:275.919120px;}
.yc1{bottom:277.171650px;}
.yc4{bottom:277.246800px;}
.y25{bottom:278.192370px;}
.y172{bottom:278.427600px;}
.y35e{bottom:278.460000px;}
.yff{bottom:281.228310px;}
.y2c2{bottom:281.683980px;}
.y35f{bottom:282.870000px;}
.y1dd{bottom:283.238730px;}
.y264{bottom:284.814090px;}
.y206{bottom:288.690480px;}
.y60{bottom:289.440000px;}
.y1a6{bottom:291.670560px;}
.y236{bottom:293.098590px;}
.y294{bottom:295.473150px;}
.y24{bottom:295.476870px;}
.y171{bottom:295.712100px;}
.y360{bottom:296.730000px;}
.y13a{bottom:297.697590px;}
.y2c1{bottom:298.968480px;}
.y35d{bottom:300.150000px;}
.yfe{bottom:302.916600px;}
.yc0{bottom:303.444090px;}
.y1dc{bottom:304.927020px;}
.y205{bottom:305.974980px;}
.y263{bottom:306.412200px;}
.y235{bottom:310.383090px;}
.y5f{bottom:311.220000px;}
.y293{bottom:312.667470px;}
.y23{bottom:312.761370px;}
.y170{bottom:312.906420px;}
.y2f5{bottom:313.368210px;}
.y1a5{bottom:313.449030px;}
.y139{bottom:314.891910px;}
.y2c0{bottom:316.252980px;}
.yfd{bottom:320.201100px;}
.y1db{bottom:322.211520px;}
.y234{bottom:327.577410px;}
.y204{bottom:327.663270px;}
.ybf{bottom:329.806710px;}
.y22{bottom:329.865510px;}
.y1a4{bottom:330.643350px;}
.y138{bottom:332.176410px;}
.y5e{bottom:333.000000px;}
.y292{bottom:334.445940px;}
.y16f{bottom:334.684890px;}
.y2f4{bottom:335.146680px;}
.y35a{bottom:335.340000px;}
.y262{bottom:337.283820px;}
.yfc{bottom:337.485600px;}
.y2bf{bottom:337.851090px;}
.y1da{bottom:339.405840px;}
.ybe{bottom:347.001030px;}
.y21{bottom:347.240190px;}
.y233{bottom:349.265700px;}
.y359{bottom:350.010000px;}
.y291{bottom:351.730440px;}
.y16e{bottom:351.969390px;}
.y1a3{bottom:352.421820px;}
.y2f3{bottom:352.431180px;}
.y203{bottom:353.860560px;}
.y137{bottom:353.954880px;}
.y261{bottom:354.478140px;}
.yfb{bottom:354.679920px;}
.y5d{bottom:354.690000px;}
.y20{bottom:361.097850px;}
.y1d9{bottom:361.184310px;}
.ybd{bottom:364.195350px;}
.y2be{bottom:368.722710px;}
.y290{bottom:368.924760px;}
.y16d{bottom:369.163710px;}
.y2f2{bottom:369.625500px;}
.y1a2{bottom:369.706320px;}
.y136{bottom:371.149200px;}
.y260{bottom:371.762640px;}
.yfa{bottom:371.964420px;}
.y5c{bottom:371.970000px;}
.y232{bottom:375.628320px;}
.y1d8{bottom:378.468810px;}
.y202{bottom:384.732180px;}
.y355{bottom:385.200000px;}
.y2bd{bottom:385.917030px;}
.y16c{bottom:386.448210px;}
.y1a1{bottom:386.900640px;}
.y2f1{bottom:386.910000px;}
.y25f{bottom:389.047140px;}
.y5b{bottom:389.160000px;}
.yba{bottom:390.377610px;}
.ybc{bottom:390.467790px;}
.y28f{bottom:390.613050px;}
.y231{bottom:392.822640px;}
.y135{bottom:392.927670px;}
.yf9{bottom:393.742890px;}
.y1d7{bottom:395.663130px;}
.y201{bottom:402.016680px;}
.y2bc{bottom:403.201530px;}
.y16b{bottom:403.732710px;}
.y1a0{bottom:404.185140px;}
.y5a{bottom:406.440000px;}
.yb9{bottom:407.662110px;}
.ybb{bottom:407.752290px;}
.y2f0{bottom:408.870000px;}
.y230{bottom:410.107140px;}
.y134{bottom:410.212170px;}
.y25e{bottom:410.645250px;}
.yf8{bottom:410.937210px;}
.y1d6{bottom:412.947630px;}
.y200{bottom:419.211000px;}
.y358{bottom:420.480000px;}
.y16a{bottom:420.927030px;}
.y28e{bottom:421.484670px;}
.y357{bottom:423.810000px;}
.y2bb{bottom:424.889820px;}
.y19f{bottom:425.873430px;}
.y59{bottom:428.220000px;}
.yf7{bottom:428.221710px;}
.y1d5{bottom:430.232130px;}
.y22f{bottom:431.795430px;}
.y133{bottom:431.900460px;}
.yb8{bottom:434.024730px;}
.y1ff{bottom:436.495500px;}
.y351{bottom:437.301000px;}
.y169{bottom:438.211530px;}
.y28d{bottom:438.678990px;}
.y25d{bottom:441.516870px;}
.y58{bottom:445.410000px;}
.y2ef{bottom:445.509000px;}
.y1d4{bottom:447.426450px;}
.y132{bottom:449.184960px;}
.yf6{bottom:449.910000px;}
.yb7{bottom:451.128870px;}
.y1fe{bottom:453.780000px;}
.y353{bottom:454.570470px;}
.y350{bottom:454.585500px;}
.y354{bottom:455.670000px;}
.y2ba{bottom:455.671260px;}
.y28c{bottom:455.963490px;}
.y19e{bottom:456.654870px;}
.y22e{bottom:457.992720px;}
.y25c{bottom:458.801370px;}
.y168{bottom:459.990000px;}
.y57{bottom:462.690000px;}
.y2ee{bottom:462.793500px;}
.y131{bottom:466.469460px;}
.y1d3{bottom:469.114740px;}
.y352{bottom:471.854970px;}
.y34f{bottom:471.870000px;}
.y2b9{bottom:472.955760px;}
.y19d{bottom:473.939370px;}
.y1fd{bottom:475.650000px;}
.yb6{bottom:477.491490px;}
.y28b{bottom:477.741960px;}
.y56{bottom:479.970000px;}
.y2ed{bottom:480.078000px;}
.y25b{bottom:480.489660px;}
.yf5{bottom:480.870000px;}
.y167{bottom:483.471990px;}
.y130{bottom:483.663780px;}
.y22d{bottom:488.864340px;}
.y2b8{bottom:490.240260px;}
.y34e{bottom:490.950000px;}
.y19c{bottom:491.223870px;}
.y166{bottom:493.557120px;}
.yb3{bottom:494.685810px;}
.yb5{bottom:494.775990px;}
.y28a{bottom:494.936280px;}
.y1d2{bottom:495.477360px;}
.y55{bottom:497.160000px;}
.y2ec{bottom:497.272320px;}
.y25a{bottom:497.774160px;}
.y12f{bottom:500.948280px;}
.y22c{bottom:506.148840px;}
.y34d{bottom:511.560000px;}
.y2b7{bottom:511.838370px;}
.yb2{bottom:511.880130px;}
.yb4{bottom:511.970310px;}
.y289{bottom:512.220780px;}
.y1fc{bottom:512.448210px;}
.y1d1{bottom:512.671680px;}
.y19b{bottom:512.821980px;}
.y54{bottom:514.440000px;}
.yf4{bottom:517.649760px;}
.y12e{bottom:518.232780px;}
.y2eb{bottom:518.960610px;}
.y259{bottom:519.462450px;}
.y22b{bottom:523.343160px;}
.y165{bottom:525.060000px;}
.y1fb{bottom:529.732710px;}
.y1d0{bottom:529.956180px;}
.y34b{bottom:530.730000px;}
.y53{bottom:531.720000px;}
.y288{bottom:533.818890px;}
.yb1{bottom:538.242750px;}
.y12d{bottom:539.921070px;}
.yf3{bottom:540.420210px;}
.y22a{bottom:540.627660px;}
.y2b6{bottom:542.709990px;}
.y19a{bottom:543.693600px;}
.y34a{bottom:547.203240px;}
.y1cf{bottom:547.240680px;}
.y164{bottom:549.705600px;}
.y2ea{bottom:549.832230px;}
.y258{bottom:550.243890px;}
.y1fa{bottom:551.421000px;}
.y52{bottom:553.681080px;}
.yb0{bottom:555.437070px;}
.y12c{bottom:557.205570px;}
.yf2{bottom:557.704710px;}
.y229{bottom:557.821980px;}
.y2b5{bottom:559.994490px;}
.y287{bottom:560.181510px;}
.y199{bottom:560.887920px;}
.y349{bottom:561.064500px;}
.y163{bottom:566.899920px;}
.y2e9{bottom:567.026550px;}
.y257{bottom:567.528390px;}
.y313{bottom:568.545390px;}
.y1f9{bottom:568.705500px;}
.y1ce{bottom:568.838790px;}
.y12b{bottom:574.399890px;}
.y348{bottom:574.830000px;}
.y228{bottom:575.106480px;}
.y51{bottom:577.167300px;}
.y2b4{bottom:577.188810px;}
.y286{bottom:577.466010px;}
.yf1{bottom:580.384980px;}
.yaf{bottom:581.709510px;}
.y198{bottom:582.576210px;}
.y162{bottom:584.184420px;}
.y2e8{bottom:584.311050px;}
.y256{bottom:584.812890px;}
.y1f8{bottom:585.990000px;}
.y312{bottom:590.323860px;}
.y12a{bottom:591.684390px;}
.y227{bottom:592.390980px;}
.y347{bottom:593.732340px;}
.y285{bottom:594.660330px;}
.y1cd{bottom:595.201410px;}
.yf0{bottom:597.669480px;}
.y2b3{bottom:598.967280px;}
.yae{bottom:598.994010px;}
.y50{bottom:600.390000px;}
.y161{bottom:601.378740px;}
.y255{bottom:602.007210px;}
.y2e7{bottom:607.081500px;}
.y311{bottom:607.608360px;}
.y1f7{bottom:607.860000px;}
.y129{bottom:608.968890px;}
.y346{bottom:610.926660px;}
.y1cc{bottom:612.485910px;}
.y197{bottom:613.447830px;}
.y226{bottom:613.989090px;}
.y2b2{bottom:616.251780px;}
.yad{bottom:616.278510px;}
.y284{bottom:616.348620px;}
.y1f{bottom:617.058750px;}
.y160{bottom:618.663240px;}
.y254{bottom:619.291710px;}
.yef{bottom:619.447950px;}
.y4f{bottom:622.170000px;}
.y2e6{bottom:624.366000px;}
.y345{bottom:628.211160px;}
.y310{bottom:630.378810px;}
.y128{bottom:630.567000px;}
.y196{bottom:630.642150px;}
.y2b1{bottom:633.446100px;}
.yac{bottom:633.472830px;}
.y1cb{bottom:634.084020px;}
.y1e{bottom:635.335230px;}
.y15f{bottom:635.947740px;}
.yee{bottom:636.642270px;}
.y225{bottom:640.351710px;}
.y253{bottom:640.980000px;}
.y2e5{bottom:641.560320px;}
.y283{bottom:642.636090px;}
.y4e{bottom:643.860000px;}
.y1f6{bottom:644.620050px;}
.y344{bottom:645.495660px;}
.y30f{bottom:647.573130px;}
.y195{bottom:647.926650px;}
.y2b0{bottom:650.730600px;}
.yab{bottom:650.757330px;}
.y15e{bottom:653.142060px;}
.yed{bottom:653.926770px;}
.y127{bottom:656.929620px;}
.y1ca{bottom:660.446640px;}
.y1f5{bottom:661.904550px;}
.y1d{bottom:661.968390px;}
.y224{bottom:662.040000px;}
.y223{bottom:662.046750px;}
.y343{bottom:662.689980px;}
.y2e4{bottom:664.330770px;}
.y30e{bottom:664.857630px;}
.y194{bottom:665.211150px;}
.y4d{bottom:665.640000px;}
.y2af{bottom:668.015100px;}
.yaa{bottom:668.041830px;}
.y15d{bottom:670.426560px;}
.y252{bottom:671.940000px;}
.y282{bottom:673.417530px;}
.y126{bottom:674.214120px;}
.yec{bottom:675.705240px;}
.y80{bottom:676.187460px;}
.y1c9{bottom:677.731140px;}
.y342{bottom:679.974480px;}
.y2e3{bottom:681.615270px;}
.y193{bottom:682.405470px;}
.y4c{bottom:682.920000px;}
.y1f4{bottom:683.683020px;}
.y222{bottom:684.997560px;}
.ya6{bottom:685.161000px;}
.y2ae{bottom:685.209420px;}
.ya9{bottom:685.236150px;}
.y30d{bottom:687.628080px;}
.y15c{bottom:687.711060px;}
.y281{bottom:690.702030px;}
.y125{bottom:691.408440px;}
.yeb{bottom:692.899560px;}
.y1c{bottom:697.243800px;}
.y341{bottom:697.258980px;}
.y2e2{bottom:698.809590px;}
.y1c8{bottom:699.419430px;}
.y7f{bottom:699.673680px;}
.y192{bottom:699.689970px;}
.y4b{bottom:700.110000px;}
.ya5{bottom:702.445500px;}
.y2ad{bottom:702.493920px;}
.ya8{bottom:702.520650px;}
.y15b{bottom:704.905380px;}
.y30c{bottom:704.912580px;}
.y1f3{bottom:706.453470px;}
.y280{bottom:707.986530px;}
.y124{bottom:708.692940px;}
.y220{bottom:711.217980px;}
.y221{bottom:711.270000px;}
.y340{bottom:714.453300px;}
.yea{bottom:714.678030px;}
.y2e1{bottom:716.094090px;}
.y1c7{bottom:716.703930px;}
.y4a{bottom:717.390000px;}
.ya4{bottom:719.730000px;}
.ya7{bottom:719.805150px;}
.y191{bottom:721.378260px;}
.y15a{bottom:722.189880px;}
.y7e{bottom:723.159900px;}
.y2ac{bottom:724.272390px;}
.y7{bottom:724.970100px;}
.y123{bottom:725.977440px;}
.y30b{bottom:727.592850px;}
.y1f2{bottom:729.133740px;}
.y27f{bottom:729.584640px;}
.y33f{bottom:731.737800px;}
.ye9{bottom:731.962530px;}
.y1b{bottom:732.429030px;}
.y2e0{bottom:733.378590px;}
.y21f{bottom:733.898250px;}
.y49{bottom:734.670000px;}
.y9d{bottom:738.180000px;}
.y1c6{bottom:738.392220px;}
.y387{bottom:740.965500px;}
.y2ab{bottom:741.466710px;}
.y251{bottom:743.171760px;}
.y159{bottom:743.878170px;}
.y30a{bottom:744.877350px;}
.ya3{bottom:746.010000px;}
.y7d{bottom:746.646120px;}
.y122{bottom:747.575550px;}
.y190{bottom:747.650700px;}
.y33e{bottom:749.022300px;}
.y48{bottom:751.860000px;}
.y1f1{bottom:751.904190px;}
.ye8{bottom:753.741000px;}
.y2df{bottom:755.066880px;}
.y1c5{bottom:755.676720px;}
.y27e{bottom:755.947260px;}
.y386{bottom:758.250000px;}
.y250{bottom:760.456260px;}
.y2aa{bottom:763.155000px;}
.y18f{bottom:764.935200px;}
.y33d{bottom:766.216620px;}
.y336{bottom:766.246680px;}
.y309{bottom:767.647800px;}
.y1a{bottom:767.704440px;}
.y1f0{bottom:769.188690px;}
.y7c{bottom:769.770000px;}
.y2de{bottom:772.351380px;}
.y6{bottom:772.370100px;}
.y378{bottom:772.830000px;}
.y1c4{bottom:772.961220px;}
.y27d{bottom:773.231760px;}
.y47{bottom:773.640000px;}
.y121{bottom:773.938170px;}
.y158{bottom:774.659610px;}
.ye7{bottom:776.421270px;}
.y384{bottom:779.656680px;}
.ya1{bottom:780.475500px;}
.y18e{bottom:782.219700px;}
.y24f{bottom:782.234730px;}
.y33c{bottom:783.501120px;}
.y339{bottom:783.516150px;}
.y335{bottom:783.531180px;}
.y308{bottom:784.932300px;}
.y2dd{bottom:789.635880px;}
.y1c3{bottom:790.155540px;}
.y27c{bottom:790.426080px;}
.y120{bottom:791.222670px;}
.y7b{bottom:791.550000px;}
.y157{bottom:791.944110px;}
.y1ef{bottom:791.959140px;}
.y37e{bottom:793.512360px;}
.y2a9{bottom:793.936440px;}
.y46{bottom:795.330000px;}
.y383{bottom:796.941180px;}
.ya0{bottom:797.760000px;}
.ye6{bottom:799.191720px;}
.y18d{bottom:799.414020px;}
.y24e{bottom:799.429050px;}
.y33b{bottom:800.695440px;}
.y338{bottom:800.710470px;}
.y334{bottom:800.725500px;}
.y19{bottom:802.979850px;}
.y2dc{bottom:806.830200px;}
.y1c2{bottom:807.440040px;}
.y307{bottom:807.612570px;}
.y27b{bottom:807.710580px;}
.y11f{bottom:808.416990px;}
.y156{bottom:809.228610px;}
.y37d{bottom:810.706680px;}
.y2a8{bottom:811.220940px;}
.y7a{bottom:813.330000px;}
.y382{bottom:814.225680px;}
.y1ee{bottom:814.639410px;}
.y18c{bottom:816.698520px;}
.y45{bottom:817.110000px;}
.y33a{bottom:817.979940px;}
.y337{bottom:817.994970px;}
.y333{bottom:818.010000px;}
.y24d{bottom:821.117340px;}
.ye5{bottom:821.962170px;}
.y1c1{bottom:824.724540px;}
.y306{bottom:824.897070px;}
.y11e{bottom:825.701490px;}
.y155{bottom:826.422930px;}
.y37c{bottom:827.991180px;}
.y2a7{bottom:828.505440px;}
.y2db{bottom:828.518490px;}
.y27a{bottom:829.398870px;}
.y381{bottom:831.420000px;}
.y1ed{bottom:831.923910px;}
.y9c{bottom:832.207680px;}
.y18b{bottom:833.983020px;}
.y79{bottom:835.020000px;}
.y330{bottom:837.090000px;}
.y44{bottom:838.890000px;}
.y1c0{bottom:841.918860px;}
.y305{bottom:842.181570px;}
.y11d{bottom:842.985990px;}
.y154{bottom:843.707430px;}
.y32a{bottom:844.414020px;}
.ye4{bottom:844.732620px;}
.y37b{bottom:845.275680px;}
.y385{bottom:845.280000px;}
.y18{bottom:845.640000px;}
.y380{bottom:848.335500px;}
.y9b{bottom:849.492180px;}
.y2a6{bottom:850.193730px;}
.y24c{bottom:851.988960px;}
.y1ec{bottom:854.694360px;}
.y18a{bottom:855.581130px;}
.y279{bottom:855.686340px;}
.y43{bottom:856.080000px;}
.y78{bottom:856.800000px;}
.y329{bottom:858.179520px;}
.y21e{bottom:859.203360px;}
.y2da{bottom:859.390110px;}
.y153{bottom:860.991930px;}
.y37a{bottom:862.470000px;}
.y17{bottom:862.920000px;}
.y1bf{bottom:863.697330px;}
.y37f{bottom:863.820000px;}
.y11c{bottom:864.674280px;}
.y304{bottom:864.861840px;}
.y9a{bottom:866.776680px;}
.y2a5{bottom:867.478230px;}
.ye3{bottom:867.503070px;}
.y24b{bottom:869.183280px;}
.y328{bottom:871.945020px;}
.y278{bottom:872.970840px;}
.y42{bottom:873.360000px;}
.y4{bottom:875.905500px;}
.y2d9{bottom:876.584430px;}
.y1eb{bottom:877.464810px;}
.y152{bottom:878.186250px;}
.y16{bottom:878.670000px;}
.y77{bottom:878.856120px;}
.y21d{bottom:880.891650px;}
.y1be{bottom:880.981830px;}
.y189{bottom:881.868600px;}
.y11b{bottom:881.958780px;}
.y303{bottom:882.146340px;}
.y99{bottom:883.971000px;}
.y2a4{bottom:884.762730px;}
.y327{bottom:885.806280px;}
.y24a{bottom:886.467780px;}
.ye2{bottom:889.191360px;}
.y277{bottom:890.255340px;}
.y373{bottom:894.330000px;}
.y1ea{bottom:894.749310px;}
.y41{bottom:895.140000px;}
.y1bd{bottom:898.176150px;}
.y2d8{bottom:898.272720px;}
.y11a{bottom:899.243280px;}
.y151{bottom:899.874540px;}
.y96{bottom:901.153710px;}
.y98{bottom:901.255500px;}
.y76{bottom:901.980000px;}
.y15{bottom:902.246310px;}
.y326{bottom:904.072500px;}
.y302{bottom:904.916790px;}
.y2a3{bottom:906.451020px;}
.y21c{bottom:907.179120px;}
.y276{bottom:907.449660px;}
.y249{bottom:908.156070px;}
.ye1{bottom:910.969830px;}
.y188{bottom:912.740220px;}
.y377{bottom:915.021180px;}
.y119{bottom:916.437600px;}
.y40{bottom:916.830000px;}
.y325{bottom:917.838000px;}
.y95{bottom:918.438210px;}
.y97{bottom:918.540000px;}
.y1bc{bottom:919.954620px;}
.y301{bottom:922.201290px;}
.y2a2{bottom:923.735520px;}
.y75{bottom:923.760000px;}
.y21b{bottom:924.463620px;}
.y150{bottom:926.237160px;}
.y275{bottom:929.137950px;}
.y2d7{bottom:929.144340px;}
.y187{bottom:929.934540px;}
.y324{bottom:931.699260px;}
.y376{bottom:932.215500px;}
.y118{bottom:933.722100px;}
.ye0{bottom:933.740280px;}
.y1bb{bottom:937.239120px;}
.y14{bottom:937.431540px;}
.y3f{bottom:938.610000px;}
.y248{bottom:938.937510px;}
.y21a{bottom:941.748120px;}
.y92{bottom:944.635500px;}
.y94{bottom:944.725680px;}
.y300{bottom:944.971740px;}
.y323{bottom:945.464760px;}
.y2a1{bottom:945.513990px;}
.y74{bottom:945.540000px;}
.y2d6{bottom:946.338660px;}
.y186{bottom:947.219040px;}
.y14f{bottom:947.925450px;}
.y375{bottom:949.500000px;}
.y117{bottom:950.916420px;}
.y1ba{bottom:954.433440px;}
.y274{bottom:955.410390px;}
.y3e{bottom:955.890000px;}
.y247{bottom:956.222010px;}
.ydf{bottom:956.510730px;}
.y219{bottom:958.942440px;}
.y91{bottom:961.920000px;}
.y93{bottom:962.010180px;}
.y2ff{bottom:962.166060px;}
.y2a0{bottom:962.708310px;}
.y2d5{bottom:963.623160px;}
.y322{bottom:963.730980px;}
.y185{bottom:964.413360px;}
.y14e{bottom:965.209950px;}
.y73{bottom:967.230000px;}
.y332{bottom:967.680000px;}
.y116{bottom:968.200920px;}
.y273{bottom:972.694890px;}
.y13{bottom:972.706950px;}
.y3d{bottom:973.080000px;}
.y1b9{bottom:976.121730px;}
.y321{bottom:977.592240px;}
.y246{bottom:977.910300px;}
.yde{bottom:979.281180px;}
.y29f{bottom:979.992810px;}
.y8c{bottom:980.370000px;}
.y218{bottom:980.630730px;}
.y2d4{bottom:980.907660px;}
.y36d{bottom:981.360000px;}
.y14d{bottom:982.404270px;}
.y2fe{bottom:984.936510px;}
.y184{bottom:986.191830px;}
.y90{bottom:988.281180px;}
.y72{bottom:989.010000px;}
.y115{bottom:989.889210px;}
.y272{bottom:989.979390px;}
.y12{bottom:989.991450px;}
.y3c{bottom:990.360000px;}
.y320{bottom:991.357740px;}
.y245{bottom:995.194800px;}
.ydd{bottom:996.475500px;}
.y2d3{bottom:998.101980px;}
.y32e{bottom:999.540000px;}
.y29e{bottom:1001.771280px;}
.y372{bottom:1001.956680px;}
.y2fd{bottom:1002.221010px;}
.y1b8{bottom:1002.484350px;}
.y183{bottom:1003.476330px;}
.y14c{bottom:1004.182740px;}
.y31f{bottom:1005.123240px;}
.y8f{bottom:1005.475500px;}
.y217{bottom:1006.993350px;}
.y11{bottom:1007.185770px;}
.y3b{bottom:1007.640000px;}
.y71{bottom:1011.066120px;}
.y271{bottom:1011.577500px;}
.ydc{bottom:1013.760000px;}
.y114{bottom:1016.086500px;}
.y244{bottom:1016.973270px;}
.y29d{bottom:1018.965600px;}
.y31e{bottom:1018.984500px;}
.y371{bottom:1019.241180px;}
.y2fc{bottom:1019.415330px;}
.y1b7{bottom:1019.678670px;}
.y2d2{bottom:1019.790270px;}
.y182{bottom:1020.670650px;}
.y14b{bottom:1021.467240px;}
.y8a{bottom:1022.635710px;}
.y8e{bottom:1022.760000px;}
.y216{bottom:1024.187670px;}
.y10{bottom:1024.470270px;}
.y3a{bottom:1029.330000px;}
.y31d{bottom:1032.750000px;}
.y243{bottom:1034.167590px;}
.y70{bottom:1034.190000px;}
.y32c{bottom:1034.820000px;}
.ydb{bottom:1035.720000px;}
.y29c{bottom:1036.250100px;}
.y370{bottom:1036.435500px;}
.y2fb{bottom:1036.699830px;}
.y1b6{bottom:1036.963170px;}
.y1e9{bottom:1037.955150px;}
.y14a{bottom:1038.661560px;}
.y89{bottom:1039.920210px;}
.y8b{bottom:1040.040000px;}
.yf{bottom:1041.754770px;}
.y181{bottom:1042.449120px;}
.y215{bottom:1045.875960px;}
.y113{bottom:1046.958120px;}
.y2d1{bottom:1050.571710px;}
.y39{bottom:1051.110000px;}
.y242{bottom:1051.452090px;}
.y31c{bottom:1051.716150px;}
.y319{bottom:1051.731180px;}
.y29b{bottom:1053.534600px;}
.y36f{bottom:1053.720000px;}
.y1b5{bottom:1054.247670px;}
.y1e8{bottom:1055.239650px;}
.y149{bottom:1055.946060px;}
.y6f{bottom:1055.970000px;}
.y2fa{bottom:1059.470280px;}
.y180{bottom:1059.733620px;}
.y112{bottom:1064.242620px;}
.y85{bottom:1066.132530px;}
.y88{bottom:1066.207680px;}
.y241{bottom:1068.736590px;}
.y31b{bottom:1068.910470px;}
.y318{bottom:1068.925500px;}
.y32b{bottom:1070.100000px;}
.y29a{bottom:1070.728920px;}
.y1b4{bottom:1071.441990px;}
.y214{bottom:1072.238580px;}
.y2d0{bottom:1072.260000px;}
.y38{bottom:1073.163780px;}
.y148{bottom:1073.230560px;}
.y6e{bottom:1073.250000px;}
.y1e7{bottom:1076.837760px;}
.yda{bottom:1076.853060px;}
.y17f{bottom:1076.927940px;}
.ye{bottom:1076.935500px;}
.y2f9{bottom:1082.240730px;}
.y84{bottom:1083.417030px;}
.y87{bottom:1083.492180px;}
.y2{bottom:1083.911850px;}
.y36c{bottom:1085.580000px;}
.y111{bottom:1085.930910px;}
.y31a{bottom:1086.194970px;}
.y317{bottom:1086.210000px;}
.y213{bottom:1089.432900px;}
.y147{bottom:1090.424880px;}
.y6d{bottom:1090.440000px;}
.y299{bottom:1092.507390px;}
.y1b3{bottom:1093.130280px;}
.yd{bottom:1094.205960px;}
.y17e{bottom:1094.212440px;}
.y37{bottom:1096.650000px;}
.y2f8{bottom:1099.525230px;}
.y83{bottom:1100.701530px;}
.y86{bottom:1100.776680px;}
.yd7{bottom:1103.125500px;}
.y110{bottom:1103.215410px;}
.yd9{bottom:1103.215680px;}
.y2cf{bottom:1103.310000px;}
.y315{bottom:1105.290000px;}
.y1{bottom:1105.511850px;}
.y36b{bottom:1106.185500px;}
.y212{bottom:1106.717400px;}
.y3{bottom:1107.401850px;}
.y146{bottom:1107.709380px;}
.y298{bottom:1109.791890px;}
.yc{bottom:1111.490460px;}
.y270{bottom:1111.496940px;}
.y6c{bottom:1112.220000px;}
.y17d{bottom:1115.900730px;}
.y36{bottom:1120.053870px;}
.yd6{bottom:1120.410000px;}
.yd8{bottom:1120.500180px;}
.y2f7{bottom:1122.205500px;}
.y82{bottom:1122.480000px;}
.y36a{bottom:1123.470000px;}
.y1b2{bottom:1123.911720px;}
.y10f{bottom:1124.993880px;}
.y38e{bottom:1128.970620px;}
.y6b{bottom:1129.500000px;}
.y5{bottom:1131.023550px;}
.y297{bottom:1131.390000px;}
.y26f{bottom:1133.095050px;}
.yd5{bottom:1138.860000px;}
.y2f6{bottom:1139.490000px;}
.y2ce{bottom:1140.114060px;}
.y1b1{bottom:1141.196220px;}
.y10e{bottom:1142.188200px;}
.y369{bottom:1142.550000px;}
.y314{bottom:1143.270000px;}
.y35{bottom:1143.457740px;}
.y81{bottom:1144.440000px;}
.yb{bottom:1146.675690px;}
.y17c{bottom:1146.682170px;}
.y6a{bottom:1146.690000px;}
.y296{bottom:1162.440000px;}
.y34{bottom:1162.530000px;}
.y2cd{bottom:1162.794330px;}
.y211{bottom:1162.974690px;}
.y10d{bottom:1163.876490px;}
.y38d{bottom:1163.885400px;}
.ya{bottom:1163.960190px;}
.y69{bottom:1163.966670px;}
.y32{bottom:1189.170000px;}
.y8{bottom:1206.450000px;}
.hc{height:33.431484px;}
.h22{height:34.470000px;}
.h23{height:34.471500px;}
.h21{height:34.560000px;}
.h26{height:38.968500px;}
.h18{height:38.970000px;}
.hd{height:40.070215px;}
.hb{height:41.170254px;}
.h17{height:43.470000px;}
.h13{height:43.769004px;}
.h1f{height:44.001488px;}
.h2d{height:46.432617px;}
.h30{height:51.385430px;}
.h8{height:51.694980px;}
.h12{height:51.708300px;}
.h1e{height:52.038060px;}
.h16{height:52.055700px;}
.h1d{height:52.112580px;}
.h2f{height:52.260820px;}
.he{height:52.575645px;}
.h2{height:53.064000px;}
.h29{height:56.250000px;}
.h10{height:56.647793px;}
.h11{height:57.612832px;}
.h20{height:57.966352px;}
.ha{height:63.329484px;}
.h9{height:63.367644px;}
.h27{height:69.750000px;}
.h14{height:78.030000px;}
.h6{height:79.596000px;}
.h2e{height:80.460000px;}
.h2b{height:86.310000px;}
.h1b{height:90.502440px;}
.h1a{height:93.027480px;}
.h2a{height:103.500000px;}
.h28{height:104.940000px;}
.h5{height:105.696000px;}
.h2c{height:120.778500px;}
.h4{height:132.660000px;}
.h1c{height:133.343520px;}
.h19{height:138.357960px;}
.h3{height:158.544000px;}
.h24{height:161.730000px;}
.h15{height:198.720000px;}
.hf{height:303.660000px;}
.h25{height:305.640000px;}
.h0{height:1262.835000px;}
.h7{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:3.510000px;}
.w6{width:3.598500px;}
.w9{width:3.600000px;}
.w14{width:84.330000px;}
.w12{width:125.010000px;}
.wf{width:145.530000px;}
.wc{width:146.251500px;}
.w10{width:148.048500px;}
.wb{width:157.228500px;}
.w13{width:158.671500px;}
.we{width:188.190000px;}
.wd{width:255.690000px;}
.w11{width:328.771500px;}
.w15{width:412.200000px;}
.w5{width:421.380000px;}
.w8{width:464.716500px;}
.w4{width:574.201500px;}
.wa{width:661.096500px;}
.w3{width:711.990000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.x15{left:-2.880000px;}
.x0{left:0.000000px;}
.x10{left:5.310000px;}
.x8{left:8.100000px;}
.x3e{left:10.800000px;}
.x32{left:28.620000px;}
.x3c{left:40.770000px;}
.x3a{left:49.050000px;}
.x37{left:54.090000px;}
.x1{left:74.873700px;}
.x3{left:76.535400px;}
.x7{left:98.280000px;}
.x5{left:106.380000px;}
.xa{left:127.710000px;}
.x11{left:133.388910px;}
.x22{left:135.990000px;}
.xb{left:170.190000px;}
.x6{left:187.376670px;}
.x20{left:189.810000px;}
.x21{left:198.090000px;}
.xf{left:209.250000px;}
.x1a{left:218.518830px;}
.x1b{left:224.910000px;}
.x1c{left:228.420000px;}
.x1d{left:231.840000px;}
.x1e{left:235.890000px;}
.x3d{left:241.380000px;}
.xd{left:244.530000px;}
.xc{left:249.826320px;}
.x2c{left:252.630000px;}
.x23{left:256.680000px;}
.x26{left:264.330270px;}
.x29{left:329.755860px;}
.x2a{left:393.840000px;}
.x2d{left:401.577300px;}
.x24{left:403.740000px;}
.x12{left:405.176400px;}
.x9{left:409.140000px;}
.x27{left:411.473970px;}
.x13{left:414.900000px;}
.x14{left:421.290000px;}
.x16{left:424.800000px;}
.x17{left:428.220000px;}
.x18{left:432.270000px;}
.x19{left:436.944330px;}
.x1f{left:439.925760px;}
.xe{left:453.330000px;}
.x2f{left:553.230000px;}
.x30{left:581.842440px;}
.x4{left:586.602750px;}
.x31{left:590.214150px;}
.x38{left:594.000000px;}
.x39{left:598.584150px;}
.x33{left:638.280000px;}
.x25{left:660.240000px;}
.x35{left:666.892440px;}
.x28{left:667.980000px;}
.x34{left:670.680000px;}
.x36{left:675.264150px;}
.x3b{left:679.050000px;}
.x2{left:717.077700px;}
.x2b{left:723.420000px;}
.x2e{left:731.064960px;}
@media print{
.v2{vertical-align:-26.560000pt;}
.v7{vertical-align:-18.188800pt;}
.vb{vertical-align:-15.978560pt;}
.v9{vertical-align:-10.851520pt;}
.v5{vertical-align:-2.244480pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:18.560000pt;}
.v1{vertical-align:26.609920pt;}
.v6{vertical-align:35.836480pt;}
.v4{vertical-align:40.293760pt;}
.v3{vertical-align:42.538240pt;}
.va{vertical-align:46.720000pt;}
.ls4c{letter-spacing:-0.427520pt;}
.ls28{letter-spacing:-0.374080pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls35{letter-spacing:-0.320640pt;}
.ls8{letter-spacing:-0.267200pt;}
.ls29{letter-spacing:-0.213760pt;}
.ls14{letter-spacing:-0.160320pt;}
.ls31{letter-spacing:-0.149760pt;}
.lsa{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.106880pt;}
.ls57{letter-spacing:-0.106240pt;}
.ls55{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.053440pt;}
.ls3e{letter-spacing:-0.034560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.037408pt;}
.ls54{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.053440pt;}
.lse{letter-spacing:0.058560pt;}
.ls51{letter-spacing:0.064128pt;}
.ls1{letter-spacing:0.069472pt;}
.ls4f{letter-spacing:0.090848pt;}
.ls5{letter-spacing:0.096000pt;}
.ls44{letter-spacing:0.096192pt;}
.ls3{letter-spacing:0.106880pt;}
.ls52{letter-spacing:0.124480pt;}
.ls3c{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.133600pt;}
.ls53{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.160320pt;}
.ls2c{letter-spacing:0.227520pt;}
.ls56{letter-spacing:0.231040pt;}
.ls4d{letter-spacing:0.267200pt;}
.ls3a{letter-spacing:0.580160pt;}
.ls2a{letter-spacing:0.625248pt;}
.ls23{letter-spacing:1.389440pt;}
.ls1f{letter-spacing:1.656640pt;}
.ls4e{letter-spacing:2.052096pt;}
.ls38{letter-spacing:2.725440pt;}
.ls26{letter-spacing:3.046080pt;}
.ls32{letter-spacing:3.318624pt;}
.ls3d{letter-spacing:3.687360pt;}
.ls34{letter-spacing:4.328640pt;}
.ls49{letter-spacing:5.573792pt;}
.ls2f{letter-spacing:5.611200pt;}
.ls45{letter-spacing:6.247136pt;}
.ls21{letter-spacing:6.573120pt;}
.ls22{letter-spacing:8.176320pt;}
.ls33{letter-spacing:8.764160pt;}
.ls48{letter-spacing:8.828288pt;}
.ls2b{letter-spacing:9.138240pt;}
.ls30{letter-spacing:9.779520pt;}
.ls1d{letter-spacing:11.596480pt;}
.ls27{letter-spacing:11.639232pt;}
.ls1e{letter-spacing:11.917120pt;}
.ls3f{letter-spacing:12.024000pt;}
.ls2{letter-spacing:13.627200pt;}
.ls2d{letter-spacing:16.352640pt;}
.ls4a{letter-spacing:17.795520pt;}
.ls40{letter-spacing:20.360640pt;}
.ls46{letter-spacing:21.643200pt;}
.ls13{letter-spacing:22.285440pt;}
.ls3b{letter-spacing:22.925760pt;}
.ls37{letter-spacing:28.964480pt;}
.lsf{letter-spacing:29.982720pt;}
.ls41{letter-spacing:31.850240pt;}
.ls39{letter-spacing:32.443424pt;}
.ls36{letter-spacing:32.812160pt;}
.ls12{letter-spacing:34.125440pt;}
.ls2e{letter-spacing:43.927680pt;}
.ls11{letter-spacing:51.725440pt;}
.ls1b{letter-spacing:51.997120pt;}
.ls1a{letter-spacing:52.050560pt;}
.ls24{letter-spacing:58.409920pt;}
.ls47{letter-spacing:60.975040pt;}
.ls1c{letter-spacing:62.257600pt;}
.ls10{letter-spacing:63.565440pt;}
.ls15{letter-spacing:83.029728pt;}
.ls20{letter-spacing:97.397760pt;}
.ls43{letter-spacing:114.094400pt;}
.ls16{letter-spacing:204.675200pt;}
.ls17{letter-spacing:252.343680pt;}
.ls42{letter-spacing:263.566080pt;}
.ls18{letter-spacing:275.696960pt;}
.ls19{letter-spacing:281.789120pt;}
.ls4b{letter-spacing:753.343360pt;}
.lsc{letter-spacing:1428.344320pt;}
.lsd{letter-spacing:2118.896000pt;}
.ws42{word-spacing:-53.440000pt;}
.ws6d{word-spacing:-37.290240pt;}
.ws0{word-spacing:-26.688000pt;}
.ws1d{word-spacing:-16.338240pt;}
.ws1f{word-spacing:-15.016640pt;}
.ws53{word-spacing:-14.989920pt;}
.wsb5{word-spacing:-14.980800pt;}
.ws41{word-spacing:-14.963200pt;}
.ws4{word-spacing:-14.909760pt;}
.ws5{word-spacing:-14.856320pt;}
.ws6{word-spacing:-14.802880pt;}
.ws2{word-spacing:-14.749440pt;}
.ws1c{word-spacing:-14.696000pt;}
.wsb9{word-spacing:-14.661120pt;}
.ws91{word-spacing:-14.642560pt;}
.ws54{word-spacing:-14.589120pt;}
.ws7e{word-spacing:-14.535680pt;}
.ws9c{word-spacing:-14.482240pt;}
.wsb6{word-spacing:-14.428800pt;}
.ws7{word-spacing:-13.200000pt;}
.ws8{word-spacing:-13.008000pt;}
.ws3{word-spacing:-9.607680pt;}
.ws8b{word-spacing:-9.573120pt;}
.wsb8{word-spacing:-0.534400pt;}
.ws1a{word-spacing:-0.480960pt;}
.wsa1{word-spacing:-0.427520pt;}
.ws1e{word-spacing:-0.351360pt;}
.wsab{word-spacing:-0.267200pt;}
.ws9e{word-spacing:-0.213760pt;}
.wse{word-spacing:-0.160320pt;}
.ws19{word-spacing:-0.106880pt;}
.ws20{word-spacing:-0.058560pt;}
.wsd{word-spacing:-0.053440pt;}
.ws1{word-spacing:0.000000pt;}
.wsbb{word-spacing:0.053120pt;}
.ws37{word-spacing:0.053440pt;}
.ws17{word-spacing:0.096000pt;}
.ws1b{word-spacing:0.106880pt;}
.ws16{word-spacing:0.160320pt;}
.wsb7{word-spacing:0.192000pt;}
.ws6c{word-spacing:0.213760pt;}
.ws18{word-spacing:0.240000pt;}
.ws11{word-spacing:0.267200pt;}
.ws93{word-spacing:0.320640pt;}
.ws60{word-spacing:0.374080pt;}
.wsaa{word-spacing:0.427520pt;}
.ws62{word-spacing:0.480960pt;}
.wsba{word-spacing:0.690560pt;}
.ws27{word-spacing:0.801600pt;}
.ws6a{word-spacing:1.122240pt;}
.wsac{word-spacing:1.229120pt;}
.ws99{word-spacing:1.336000pt;}
.ws29{word-spacing:1.442880pt;}
.ws39{word-spacing:1.763520pt;}
.ws64{word-spacing:2.084160pt;}
.ws81{word-spacing:2.404800pt;}
.ws6e{word-spacing:2.725440pt;}
.ws26{word-spacing:3.046080pt;}
.ws25{word-spacing:3.152960pt;}
.ws56{word-spacing:3.366720pt;}
.ws97{word-spacing:3.473600pt;}
.ws87{word-spacing:3.687360pt;}
.ws2e{word-spacing:4.008000pt;}
.ws67{word-spacing:4.275200pt;}
.ws22{word-spacing:4.595840pt;}
.ws9f{word-spacing:4.916480pt;}
.ws66{word-spacing:5.237120pt;}
.ws36{word-spacing:5.557760pt;}
.ws69{word-spacing:5.878400pt;}
.ws51{word-spacing:6.199040pt;}
.wsb1{word-spacing:6.305920pt;}
.ws52{word-spacing:6.519680pt;}
.ws4e{word-spacing:6.840320pt;}
.ws34{word-spacing:7.160960pt;}
.ws2d{word-spacing:7.481600pt;}
.ws50{word-spacing:7.802240pt;}
.ws9d{word-spacing:7.909120pt;}
.ws3a{word-spacing:8.122880pt;}
.ws5b{word-spacing:8.443520pt;}
.ws57{word-spacing:8.764160pt;}
.ws46{word-spacing:9.084800pt;}
.ws38{word-spacing:9.405440pt;}
.ws13{word-spacing:9.726080pt;}
.ws4a{word-spacing:10.046720pt;}
.ws68{word-spacing:10.367360pt;}
.ws5a{word-spacing:10.688000pt;}
.ws4c{word-spacing:11.008640pt;}
.ws4d{word-spacing:11.329280pt;}
.wsb4{word-spacing:11.489600pt;}
.ws47{word-spacing:11.649920pt;}
.wsad{word-spacing:11.970560pt;}
.ws92{word-spacing:12.291200pt;}
.ws70{word-spacing:12.611840pt;}
.ws55{word-spacing:12.932480pt;}
.ws75{word-spacing:13.253120pt;}
.wsb{word-spacing:13.573760pt;}
.wsc{word-spacing:13.734080pt;}
.ws12{word-spacing:13.894400pt;}
.ws28{word-spacing:14.215040pt;}
.ws33{word-spacing:14.535680pt;}
.wsae{word-spacing:14.856320pt;}
.wsaf{word-spacing:14.909760pt;}
.ws98{word-spacing:15.176960pt;}
.ws84{word-spacing:15.497600pt;}
.ws5f{word-spacing:15.818240pt;}
.ws63{word-spacing:16.138880pt;}
.wsa0{word-spacing:16.459520pt;}
.ws95{word-spacing:16.780160pt;}
.ws65{word-spacing:17.100800pt;}
.ws88{word-spacing:17.421440pt;}
.ws85{word-spacing:17.742080pt;}
.ws86{word-spacing:18.062720pt;}
.ws49{word-spacing:18.383360pt;}
.ws48{word-spacing:18.704000pt;}
.ws5d{word-spacing:19.024640pt;}
.ws77{word-spacing:19.345280pt;}
.ws72{word-spacing:19.665920pt;}
.ws10{word-spacing:19.986560pt;}
.wsf{word-spacing:20.307200pt;}
.ws3d{word-spacing:20.627840pt;}
.ws6b{word-spacing:20.948480pt;}
.ws30{word-spacing:21.269120pt;}
.ws90{word-spacing:21.589760pt;}
.ws71{word-spacing:21.910400pt;}
.ws4f{word-spacing:22.551680pt;}
.ws8a{word-spacing:22.872320pt;}
.ws96{word-spacing:23.513600pt;}
.ws82{word-spacing:23.834240pt;}
.ws24{word-spacing:24.154880pt;}
.ws61{word-spacing:24.475520pt;}
.ws3b{word-spacing:24.796160pt;}
.ws5e{word-spacing:25.758080pt;}
.wsa7{word-spacing:26.078720pt;}
.ws35{word-spacing:26.399360pt;}
.wsa{word-spacing:27.040640pt;}
.ws9{word-spacing:27.361280pt;}
.ws9b{word-spacing:27.681920pt;}
.ws5c{word-spacing:28.002560pt;}
.ws8d{word-spacing:28.323200pt;}
.ws3c{word-spacing:28.964480pt;}
.wsa9{word-spacing:29.071360pt;}
.ws6f{word-spacing:29.285120pt;}
.ws78{word-spacing:29.605760pt;}
.ws59{word-spacing:29.926400pt;}
.wsa8{word-spacing:30.086720pt;}
.ws58{word-spacing:30.247040pt;}
.ws7b{word-spacing:30.567680pt;}
.wsa4{word-spacing:31.208960pt;}
.ws43{word-spacing:31.476160pt;}
.ws8e{word-spacing:32.117440pt;}
.ws8f{word-spacing:32.438080pt;}
.ws3f{word-spacing:33.079360pt;}
.ws44{word-spacing:35.003200pt;}
.ws4b{word-spacing:35.323840pt;}
.ws32{word-spacing:35.644480pt;}
.ws31{word-spacing:35.965120pt;}
.ws74{word-spacing:36.927040pt;}
.ws73{word-spacing:37.247680pt;}
.ws79{word-spacing:38.209600pt;}
.wsb3{word-spacing:39.492160pt;}
.wsb2{word-spacing:39.812800pt;}
.ws76{word-spacing:40.133440pt;}
.ws3e{word-spacing:40.454080pt;}
.wsa2{word-spacing:40.774720pt;}
.ws2c{word-spacing:41.095360pt;}
.ws21{word-spacing:42.057280pt;}
.ws89{word-spacing:43.339840pt;}
.ws83{word-spacing:44.301760pt;}
.ws9a{word-spacing:44.622400pt;}
.ws80{word-spacing:44.943040pt;}
.ws94{word-spacing:45.263680pt;}
.wsa3{word-spacing:46.225600pt;}
.ws45{word-spacing:47.187520pt;}
.ws2a{word-spacing:47.508160pt;}
.ws2b{word-spacing:47.828800pt;}
.ws7d{word-spacing:49.752640pt;}
.ws7c{word-spacing:50.073280pt;}
.wsa6{word-spacing:53.600320pt;}
.wsa5{word-spacing:53.920960pt;}
.ws8c{word-spacing:55.524160pt;}
.ws40{word-spacing:55.844800pt;}
.ws7a{word-spacing:67.655040pt;}
.ws7f{word-spacing:69.899520pt;}
.wsb0{word-spacing:71.823360pt;}
.ws2f{word-spacing:86.840000pt;}
.ws23{word-spacing:99.986240pt;}
.ws14{word-spacing:100.948160pt;}
.ws15{word-spacing:101.268800pt;}
._5{margin-left:-12.640000pt;}
._7{margin-left:-9.760000pt;}
._2{margin-left:-7.360000pt;}
._6{margin-left:-6.412800pt;}
._4{margin-left:-4.800000pt;}
._1{margin-left:-3.200000pt;}
._0{margin-left:-1.280000pt;}
._3{width:1.280000pt;}
._8{width:2.560000pt;}
._9{width:4.630400pt;}
._22{width:5.766400pt;}
._20{width:7.214400pt;}
._21{width:8.224640pt;}
._c{width:9.563200pt;}
._14{width:10.474240pt;}
._12{width:11.489600pt;}
._a{width:13.672960pt;}
._11{width:15.451840pt;}
._17{width:18.161920pt;}
._b{width:19.660800pt;}
._19{width:22.812480pt;}
._e{width:26.996160pt;}
._18{width:28.216320pt;}
._10{width:29.338560pt;}
._1a{width:32.277760pt;}
._f{width:36.013440pt;}
._15{width:37.664960pt;}
._23{width:40.189440pt;}
._13{width:58.837440pt;}
._16{width:62.524800pt;}
._1f{width:108.539200pt;}
._1e{width:148.344320pt;}
._1d{width:172.664640pt;}
._1c{width:177.527680pt;}
._1b{width:370.547840pt;}
._d{width:753.129920pt;}
.fs6{font-size:34.560000pt;}
.fsa{font-size:37.440000pt;}
.fs7{font-size:42.560000pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs5{font-size:53.440000pt;}
.fsb{font-size:56.330706pt;}
.fs9{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y34c{bottom:2.400000pt;}
.y31{bottom:2.960000pt;}
.y32d{bottom:3.040000pt;}
.yd4{bottom:6.960000pt;}
.y316{bottom:18.320000pt;}
.y32f{bottom:18.400000pt;}
.ya2{bottom:22.320000pt;}
.y9{bottom:40.794240pt;}
.y33{bottom:40.800000pt;}
.y356{bottom:49.680000pt;}
.y8d{bottom:53.040000pt;}
.y389{bottom:59.360000pt;}
.y374{bottom:64.400000pt;}
.y9f{bottom:68.320000pt;}
.y30{bottom:75.680000pt;}
.yd3{bottom:77.520000pt;}
.y368{bottom:78.890880pt;}
.y36e{bottom:79.680000pt;}
.y26e{bottom:79.782000pt;}
.y35c{bottom:80.960000pt;}
.y2cc{bottom:81.087840pt;}
.y210{bottom:81.557680pt;}
.y9e{bottom:83.599867pt;}
.y388{bottom:83.840000pt;}
.y145{bottom:83.952800pt;}
.yd1{bottom:84.358080pt;}
.y1b0{bottom:87.239360pt;}
.y38c{bottom:88.324960pt;}
.y10c{bottom:89.110880pt;}
.y367{bottom:91.126880pt;}
.y17b{bottom:93.477120pt;}
.y2f{bottom:93.962747pt;}
.y379{bottom:95.040000pt;}
.y26d{bottom:95.146000pt;}
.y240{bottom:95.228800pt;}
.y1e6{bottom:99.112480pt;}
.y144{bottom:99.236640pt;}
.yd0{bottom:99.722080pt;}
.yd2{bottom:99.840000pt;}
.y2cb{bottom:100.366320pt;}
.y20f{bottom:101.798080pt;}
.y366{bottom:103.362880pt;}
.y10b{bottom:104.795520pt;}
.y68{bottom:105.120000pt;}
.y1af{bottom:107.479760pt;}
.y17a{bottom:108.841120pt;}
.y38b{bottom:109.280800pt;}
.y2e{bottom:109.326747pt;}
.y26c{bottom:110.429840pt;}
.y23f{bottom:110.512640pt;}
.y1e5{bottom:114.476480pt;}
.y143{bottom:114.600640pt;}
.y365{bottom:115.684000pt;}
.y2ca{bottom:115.730320pt;}
.y108{bottom:120.400000pt;}
.y67{bottom:120.480000pt;}
.y20e{bottom:121.958320pt;}
.y10a{bottom:122.960000pt;}
.y109{bottom:122.965120pt;}
.ycd{bottom:123.075360pt;}
.ycf{bottom:123.155520pt;}
.y179{bottom:124.124960pt;}
.y2d{bottom:124.610587pt;}
.y23e{bottom:125.876640pt;}
.y38a{bottom:126.080000pt;}
.y1ae{bottom:127.720160pt;}
.y364{bottom:127.920000pt;}
.y26b{bottom:129.788480pt;}
.y1e4{bottom:129.840480pt;}
.y142{bottom:129.964640pt;}
.y331{bottom:131.440000pt;}
.y2c9{bottom:135.088960pt;}
.y20d{bottom:137.322320pt;}
.ycc{bottom:138.359200pt;}
.y363{bottom:138.400000pt;}
.yce{bottom:138.439360pt;}
.y66{bottom:139.760000pt;}
.y2c{bottom:139.974587pt;}
.y107{bottom:140.480000pt;}
.y23d{bottom:141.160480pt;}
.y1ad{bottom:143.004000pt;}
.y178{bottom:143.483600pt;}
.y26a{bottom:145.152480pt;}
.y1e3{bottom:149.038800pt;}
.y141{bottom:149.243120pt;}
.y2c8{bottom:150.372800pt;}
.y20c{bottom:152.606160pt;}
.y2b{bottom:155.258427pt;}
.y1ac{bottom:158.368000pt;}
.y65{bottom:159.120000pt;}
.y269{bottom:160.436320pt;}
.y23c{bottom:160.438960pt;}
.y106{bottom:160.880880pt;}
.yc9{bottom:161.712480pt;}
.ycb{bottom:161.792640pt;}
.y177{bottom:162.842240pt;}
.y140{bottom:164.607120pt;}
.y2c7{bottom:165.736800pt;}
.y20b{bottom:167.970160pt;}
.y362{bottom:169.760000pt;}
.y103{bottom:169.846480pt;}
.y2a{bottom:170.622427pt;}
.y1e2{bottom:172.472240pt;}
.yc8{bottom:177.076480pt;}
.yca{bottom:177.156640pt;}
.y176{bottom:178.126080pt;}
.y64{bottom:178.400000pt;}
.y1ab{bottom:178.608400pt;}
.y268{bottom:179.714800pt;}
.y13f{bottom:179.890960pt;}
.y105{bottom:180.480000pt;}
.y104{bottom:182.480000pt;}
.y20a{bottom:183.334160pt;}
.y23b{bottom:183.872400pt;}
.y2c6{bottom:185.095440pt;}
.y29{bottom:185.986427pt;}
.y1e1{bottom:187.836240pt;}
.y175{bottom:193.490080pt;}
.y1aa{bottom:193.892240pt;}
.y63{bottom:197.760000pt;}
.y209{bottom:198.618000pt;}
.y23a{bottom:199.156240pt;}
.y13e{bottom:199.249600pt;}
.y102{bottom:200.000000pt;}
.y2c5{bottom:200.379280pt;}
.yc7{bottom:200.429760pt;}
.y35b{bottom:201.120000pt;}
.y28{bottom:201.270267pt;}
.y1e0{bottom:203.120080pt;}
.y267{bottom:207.156240pt;}
.y1a9{bottom:209.256240pt;}
.y174{bottom:212.848720pt;}
.y239{bottom:214.520240pt;}
.y13d{bottom:214.613600pt;}
.yc3{bottom:215.726960pt;}
.y2c4{bottom:215.743280pt;}
.yc6{bottom:215.793760pt;}
.y27{bottom:216.634267pt;}
.y62{bottom:217.120000pt;}
.y208{bottom:217.896480pt;}
.y1df{bottom:218.484080pt;}
.y101{bottom:219.252720pt;}
.y266{bottom:222.440080pt;}
.y173{bottom:228.132560pt;}
.y1a8{bottom:228.614880pt;}
.y238{bottom:229.884240pt;}
.y13c{bottom:229.897440pt;}
.yc2{bottom:231.090960pt;}
.yc5{bottom:231.157760pt;}
.y26{bottom:231.998267pt;}
.y361{bottom:232.400000pt;}
.y100{bottom:234.616720pt;}
.y2c3{bottom:235.101920pt;}
.y1de{bottom:236.403760pt;}
.y61{bottom:236.725440pt;}
.y265{bottom:237.804080pt;}
.y207{bottom:241.329920pt;}
.y295{bottom:241.921440pt;}
.y1a7{bottom:243.898720pt;}
.y237{bottom:245.168080pt;}
.y13b{bottom:245.261440pt;}
.yc1{bottom:246.374800pt;}
.yc4{bottom:246.441600pt;}
.y25{bottom:247.282107pt;}
.y172{bottom:247.491200pt;}
.y35e{bottom:247.520000pt;}
.yff{bottom:249.980720pt;}
.y2c2{bottom:250.385760pt;}
.y35f{bottom:251.440000pt;}
.y1dd{bottom:251.767760pt;}
.y264{bottom:253.168080pt;}
.y206{bottom:256.613760pt;}
.y60{bottom:257.280000pt;}
.y1a6{bottom:259.262720pt;}
.y236{bottom:260.532080pt;}
.y294{bottom:262.642800pt;}
.y24{bottom:262.646107pt;}
.y171{bottom:262.855200pt;}
.y360{bottom:263.760000pt;}
.y13a{bottom:264.620080pt;}
.y2c1{bottom:265.749760pt;}
.y35d{bottom:266.800000pt;}
.yfe{bottom:269.259200pt;}
.yc0{bottom:269.728080pt;}
.y1dc{bottom:271.046240pt;}
.y205{bottom:271.977760pt;}
.y263{bottom:272.366400pt;}
.y235{bottom:275.896080pt;}
.y5f{bottom:276.640000pt;}
.y293{bottom:277.926640pt;}
.y23{bottom:278.010107pt;}
.y170{bottom:278.139040pt;}
.y2f5{bottom:278.549520pt;}
.y1a5{bottom:278.621360pt;}
.y139{bottom:279.903920pt;}
.y2c0{bottom:281.113760pt;}
.yfd{bottom:284.623200pt;}
.y1db{bottom:286.410240pt;}
.y234{bottom:291.179920pt;}
.y204{bottom:291.256240pt;}
.ybf{bottom:293.161520pt;}
.y22{bottom:293.213787pt;}
.y1a4{bottom:293.905200pt;}
.y138{bottom:295.267920pt;}
.y5e{bottom:296.000000pt;}
.y292{bottom:297.285280pt;}
.y16f{bottom:297.497680pt;}
.y2f4{bottom:297.908160pt;}
.y35a{bottom:298.080000pt;}
.y262{bottom:299.807840pt;}
.yfc{bottom:299.987200pt;}
.y2bf{bottom:300.312080pt;}
.y1da{bottom:301.694080pt;}
.ybe{bottom:308.445360pt;}
.y21{bottom:308.657947pt;}
.y233{bottom:310.458400pt;}
.y359{bottom:311.120000pt;}
.y291{bottom:312.649280pt;}
.y16e{bottom:312.861680pt;}
.y1a3{bottom:313.263840pt;}
.y2f3{bottom:313.272160pt;}
.y203{bottom:314.542720pt;}
.y137{bottom:314.626560pt;}
.y261{bottom:315.091680pt;}
.yfb{bottom:315.271040pt;}
.y5d{bottom:315.280000pt;}
.y20{bottom:320.975867pt;}
.y1d9{bottom:321.052720pt;}
.ybd{bottom:323.729200pt;}
.y2be{bottom:327.753520pt;}
.y290{bottom:327.933120pt;}
.y16d{bottom:328.145520pt;}
.y2f2{bottom:328.556000pt;}
.y1a2{bottom:328.627840pt;}
.y136{bottom:329.910400pt;}
.y260{bottom:330.455680pt;}
.yfa{bottom:330.635040pt;}
.y5c{bottom:330.640000pt;}
.y232{bottom:333.891840pt;}
.y1d8{bottom:336.416720pt;}
.y202{bottom:341.984160pt;}
.y355{bottom:342.400000pt;}
.y2bd{bottom:343.037360pt;}
.y16c{bottom:343.509520pt;}
.y1a1{bottom:343.911680pt;}
.y2f1{bottom:343.920000pt;}
.y25f{bottom:345.819680pt;}
.y5b{bottom:345.920000pt;}
.yba{bottom:347.002320pt;}
.ybc{bottom:347.082480pt;}
.y28f{bottom:347.211600pt;}
.y231{bottom:349.175680pt;}
.y135{bottom:349.269040pt;}
.yf9{bottom:349.993680pt;}
.y1d7{bottom:351.700560pt;}
.y201{bottom:357.348160pt;}
.y2bc{bottom:358.401360pt;}
.y16b{bottom:358.873520pt;}
.y1a0{bottom:359.275680pt;}
.y5a{bottom:361.280000pt;}
.yb9{bottom:362.366320pt;}
.ybb{bottom:362.446480pt;}
.y2f0{bottom:363.440000pt;}
.y230{bottom:364.539680pt;}
.y134{bottom:364.633040pt;}
.y25e{bottom:365.018000pt;}
.yf8{bottom:365.277520pt;}
.y1d6{bottom:367.064560pt;}
.y200{bottom:372.632000pt;}
.y358{bottom:373.760000pt;}
.y16a{bottom:374.157360pt;}
.y28e{bottom:374.653040pt;}
.y357{bottom:376.720000pt;}
.y2bb{bottom:377.679840pt;}
.y19f{bottom:378.554160pt;}
.y59{bottom:380.640000pt;}
.yf7{bottom:380.641520pt;}
.y1d5{bottom:382.428560pt;}
.y22f{bottom:383.818160pt;}
.y133{bottom:383.911520pt;}
.yb8{bottom:385.799760pt;}
.y1ff{bottom:387.996000pt;}
.y351{bottom:388.712000pt;}
.y169{bottom:389.521360pt;}
.y28d{bottom:389.936880pt;}
.y25d{bottom:392.459440pt;}
.y58{bottom:395.920000pt;}
.y2ef{bottom:396.008000pt;}
.y1d4{bottom:397.712400pt;}
.y132{bottom:399.275520pt;}
.yf6{bottom:399.920000pt;}
.yb7{bottom:401.003440pt;}
.y1fe{bottom:403.360000pt;}
.y353{bottom:404.062640pt;}
.y350{bottom:404.076000pt;}
.y354{bottom:405.040000pt;}
.y2ba{bottom:405.041120pt;}
.y28c{bottom:405.300880pt;}
.y19e{bottom:405.915440pt;}
.y22e{bottom:407.104640pt;}
.y25c{bottom:407.823440pt;}
.y168{bottom:408.880000pt;}
.y57{bottom:411.280000pt;}
.y2ee{bottom:411.372000pt;}
.y131{bottom:414.639520pt;}
.y1d3{bottom:416.990880pt;}
.y352{bottom:419.426640pt;}
.y34f{bottom:419.440000pt;}
.y2b9{bottom:420.405120pt;}
.y19d{bottom:421.279440pt;}
.y1fd{bottom:422.800000pt;}
.yb6{bottom:424.436880pt;}
.y28b{bottom:424.659520pt;}
.y56{bottom:426.640000pt;}
.y2ed{bottom:426.736000pt;}
.y25b{bottom:427.101920pt;}
.yf5{bottom:427.440000pt;}
.y167{bottom:429.752880pt;}
.y130{bottom:429.923360pt;}
.y22d{bottom:434.546080pt;}
.y2b8{bottom:435.769120pt;}
.y34e{bottom:436.400000pt;}
.y19c{bottom:436.643440pt;}
.y166{bottom:438.717440pt;}
.yb3{bottom:439.720720pt;}
.yb5{bottom:439.800880pt;}
.y28a{bottom:439.943360pt;}
.y1d2{bottom:440.424320pt;}
.y55{bottom:441.920000pt;}
.y2ec{bottom:442.019840pt;}
.y25a{bottom:442.465920pt;}
.y12f{bottom:445.287360pt;}
.y22c{bottom:449.910080pt;}
.y34d{bottom:454.720000pt;}
.y2b7{bottom:454.967440pt;}
.yb2{bottom:455.004560pt;}
.yb4{bottom:455.084720pt;}
.y289{bottom:455.307360pt;}
.y1fc{bottom:455.509520pt;}
.y1d1{bottom:455.708160pt;}
.y19b{bottom:455.841760pt;}
.y54{bottom:457.280000pt;}
.yf4{bottom:460.133120pt;}
.y12e{bottom:460.651360pt;}
.y2eb{bottom:461.298320pt;}
.y259{bottom:461.744400pt;}
.y22b{bottom:465.193920pt;}
.y165{bottom:466.720000pt;}
.y1fb{bottom:470.873520pt;}
.y1d0{bottom:471.072160pt;}
.y34b{bottom:471.760000pt;}
.y53{bottom:472.640000pt;}
.y288{bottom:474.505680pt;}
.yb1{bottom:478.438000pt;}
.y12d{bottom:479.929840pt;}
.yf3{bottom:480.373520pt;}
.y22a{bottom:480.557920pt;}
.y2b6{bottom:482.408880pt;}
.y19a{bottom:483.283200pt;}
.y34a{bottom:486.402880pt;}
.y1cf{bottom:486.436160pt;}
.y164{bottom:488.627200pt;}
.y2ea{bottom:488.739760pt;}
.y258{bottom:489.105680pt;}
.y1fa{bottom:490.152000pt;}
.y52{bottom:492.160960pt;}
.yb0{bottom:493.721840pt;}
.y12c{bottom:495.293840pt;}
.yf2{bottom:495.737520pt;}
.y229{bottom:495.841760pt;}
.y2b5{bottom:497.772880pt;}
.y287{bottom:497.939120pt;}
.y199{bottom:498.567040pt;}
.y349{bottom:498.724000pt;}
.y163{bottom:503.911040pt;}
.y2e9{bottom:504.023600pt;}
.y257{bottom:504.469680pt;}
.y313{bottom:505.373680pt;}
.y1f9{bottom:505.516000pt;}
.y1ce{bottom:505.634480pt;}
.y12b{bottom:510.577680pt;}
.y348{bottom:510.960000pt;}
.y228{bottom:511.205760pt;}
.y51{bottom:513.037600pt;}
.y2b4{bottom:513.056720pt;}
.y286{bottom:513.303120pt;}
.yf1{bottom:515.897760pt;}
.yaf{bottom:517.075120pt;}
.y198{bottom:517.845520pt;}
.y162{bottom:519.275040pt;}
.y2e8{bottom:519.387600pt;}
.y256{bottom:519.833680pt;}
.y1f8{bottom:520.880000pt;}
.y312{bottom:524.732320pt;}
.y12a{bottom:525.941680pt;}
.y227{bottom:526.569760pt;}
.y347{bottom:527.762080pt;}
.y285{bottom:528.586960pt;}
.y1cd{bottom:529.067920pt;}
.yf0{bottom:531.261760pt;}
.y2b3{bottom:532.415360pt;}
.yae{bottom:532.439120pt;}
.y50{bottom:533.680000pt;}
.y161{bottom:534.558880pt;}
.y255{bottom:535.117520pt;}
.y2e7{bottom:539.628000pt;}
.y311{bottom:540.096320pt;}
.y1f7{bottom:540.320000pt;}
.y129{bottom:541.305680pt;}
.y346{bottom:543.045920pt;}
.y1cc{bottom:544.431920pt;}
.y197{bottom:545.286960pt;}
.y226{bottom:545.768080pt;}
.y2b2{bottom:547.779360pt;}
.yad{bottom:547.803120pt;}
.y284{bottom:547.865440pt;}
.y1f{bottom:548.496667pt;}
.y160{bottom:549.922880pt;}
.y254{bottom:550.481520pt;}
.yef{bottom:550.620400pt;}
.y4f{bottom:553.040000pt;}
.y2e6{bottom:554.992000pt;}
.y345{bottom:558.409920pt;}
.y310{bottom:560.336720pt;}
.y128{bottom:560.504000pt;}
.y196{bottom:560.570800pt;}
.y2b1{bottom:563.063200pt;}
.yac{bottom:563.086960pt;}
.y1cb{bottom:563.630240pt;}
.y1e{bottom:564.742427pt;}
.y15f{bottom:565.286880pt;}
.yee{bottom:565.904240pt;}
.y225{bottom:569.201520pt;}
.y253{bottom:569.760000pt;}
.y2e5{bottom:570.275840pt;}
.y283{bottom:571.232080pt;}
.y4e{bottom:572.320000pt;}
.y1f6{bottom:572.995600pt;}
.y344{bottom:573.773920pt;}
.y30f{bottom:575.620560pt;}
.y195{bottom:575.934800pt;}
.y2b0{bottom:578.427200pt;}
.yab{bottom:578.450960pt;}
.y15e{bottom:580.570720pt;}
.yed{bottom:581.268240pt;}
.y127{bottom:583.937440pt;}
.y1ca{bottom:587.063680pt;}
.y1f5{bottom:588.359600pt;}
.y1d{bottom:588.416347pt;}
.y224{bottom:588.480000pt;}
.y223{bottom:588.486000pt;}
.y343{bottom:589.057760pt;}
.y2e4{bottom:590.516240pt;}
.y30e{bottom:590.984560pt;}
.y194{bottom:591.298800pt;}
.y4d{bottom:591.680000pt;}
.y2af{bottom:593.791200pt;}
.yaa{bottom:593.814960pt;}
.y15d{bottom:595.934720pt;}
.y252{bottom:597.280000pt;}
.y282{bottom:598.593360pt;}
.y126{bottom:599.301440pt;}
.yec{bottom:600.626880pt;}
.y80{bottom:601.055520pt;}
.y1c9{bottom:602.427680pt;}
.y342{bottom:604.421760pt;}
.y2e3{bottom:605.880240pt;}
.y193{bottom:606.582640pt;}
.y4c{bottom:607.040000pt;}
.y1f4{bottom:607.718240pt;}
.y222{bottom:608.886720pt;}
.ya6{bottom:609.032000pt;}
.y2ae{bottom:609.075040pt;}
.ya9{bottom:609.098800pt;}
.y30d{bottom:611.224960pt;}
.y15c{bottom:611.298720pt;}
.y281{bottom:613.957360pt;}
.y125{bottom:614.585280pt;}
.yeb{bottom:615.910720pt;}
.y1c{bottom:619.772267pt;}
.y341{bottom:619.785760pt;}
.y2e2{bottom:621.164080pt;}
.y1c8{bottom:621.706160pt;}
.y7f{bottom:621.932160pt;}
.y192{bottom:621.946640pt;}
.y4b{bottom:622.320000pt;}
.ya5{bottom:624.396000pt;}
.y2ad{bottom:624.439040pt;}
.ya8{bottom:624.462800pt;}
.y15b{bottom:626.582560pt;}
.y30c{bottom:626.588960pt;}
.y1f3{bottom:627.958640pt;}
.y280{bottom:629.321360pt;}
.y124{bottom:629.949280pt;}
.y220{bottom:632.193760pt;}
.y221{bottom:632.240000pt;}
.y340{bottom:635.069600pt;}
.yea{bottom:635.269360pt;}
.y2e1{bottom:636.528080pt;}
.y1c7{bottom:637.070160pt;}
.y4a{bottom:637.680000pt;}
.ya4{bottom:639.760000pt;}
.ya7{bottom:639.826800pt;}
.y191{bottom:641.225120pt;}
.y15a{bottom:641.946560pt;}
.y7e{bottom:642.808800pt;}
.y2ac{bottom:643.797680pt;}
.y7{bottom:644.417867pt;}
.y123{bottom:645.313280pt;}
.y30b{bottom:646.749200pt;}
.y1f2{bottom:648.118880pt;}
.y27f{bottom:648.519680pt;}
.y33f{bottom:650.433600pt;}
.ye9{bottom:650.633360pt;}
.y1b{bottom:651.048027pt;}
.y2e0{bottom:651.892080pt;}
.y21f{bottom:652.354000pt;}
.y49{bottom:653.040000pt;}
.y9d{bottom:656.160000pt;}
.y1c6{bottom:656.348640pt;}
.y387{bottom:658.636000pt;}
.y2ab{bottom:659.081520pt;}
.y251{bottom:660.597120pt;}
.y159{bottom:661.225040pt;}
.y30a{bottom:662.113200pt;}
.ya3{bottom:663.120000pt;}
.y7d{bottom:663.685440pt;}
.y122{bottom:664.511600pt;}
.y190{bottom:664.578400pt;}
.y33e{bottom:665.797600pt;}
.y48{bottom:668.320000pt;}
.y1f1{bottom:668.359280pt;}
.ye8{bottom:669.992000pt;}
.y2df{bottom:671.170560pt;}
.y1c5{bottom:671.712640pt;}
.y27e{bottom:671.953120pt;}
.y386{bottom:674.000000pt;}
.y250{bottom:675.961120pt;}
.y2aa{bottom:678.360000pt;}
.y18f{bottom:679.942400pt;}
.y33d{bottom:681.081440pt;}
.y336{bottom:681.108160pt;}
.y309{bottom:682.353600pt;}
.y1a{bottom:682.403947pt;}
.y1f0{bottom:683.723280pt;}
.y7c{bottom:684.240000pt;}
.y2de{bottom:686.534560pt;}
.y6{bottom:686.551200pt;}
.y378{bottom:686.960000pt;}
.y1c4{bottom:687.076640pt;}
.y27d{bottom:687.317120pt;}
.y47{bottom:687.680000pt;}
.y121{bottom:687.945040pt;}
.y158{bottom:688.586320pt;}
.ye7{bottom:690.152240pt;}
.y384{bottom:693.028160pt;}
.ya1{bottom:693.756000pt;}
.y18e{bottom:695.306400pt;}
.y24f{bottom:695.319760pt;}
.y33c{bottom:696.445440pt;}
.y339{bottom:696.458800pt;}
.y335{bottom:696.472160pt;}
.y308{bottom:697.717600pt;}
.y2dd{bottom:701.898560pt;}
.y1c3{bottom:702.360480pt;}
.y27c{bottom:702.600960pt;}
.y120{bottom:703.309040pt;}
.y7b{bottom:703.600000pt;}
.y157{bottom:703.950320pt;}
.y1ef{bottom:703.963680pt;}
.y37e{bottom:705.344320pt;}
.y2a9{bottom:705.721280pt;}
.y46{bottom:706.960000pt;}
.y383{bottom:708.392160pt;}
.ya0{bottom:709.120000pt;}
.ye6{bottom:710.392640pt;}
.y18d{bottom:710.590240pt;}
.y24e{bottom:710.603600pt;}
.y33b{bottom:711.729280pt;}
.y338{bottom:711.742640pt;}
.y334{bottom:711.756000pt;}
.y19{bottom:713.759867pt;}
.y2dc{bottom:717.182400pt;}
.y1c2{bottom:717.724480pt;}
.y307{bottom:717.877840pt;}
.y27b{bottom:717.964960pt;}
.y11f{bottom:718.592880pt;}
.y156{bottom:719.314320pt;}
.y37d{bottom:720.628160pt;}
.y2a8{bottom:721.085280pt;}
.y7a{bottom:722.960000pt;}
.y382{bottom:723.756160pt;}
.y1ee{bottom:724.123920pt;}
.y18c{bottom:725.954240pt;}
.y45{bottom:726.320000pt;}
.y33a{bottom:727.093280pt;}
.y337{bottom:727.106640pt;}
.y333{bottom:727.120000pt;}
.y24d{bottom:729.882080pt;}
.ye5{bottom:730.633040pt;}
.y1c1{bottom:733.088480pt;}
.y306{bottom:733.241840pt;}
.y11e{bottom:733.956880pt;}
.y155{bottom:734.598160pt;}
.y37c{bottom:735.992160pt;}
.y2a7{bottom:736.449280pt;}
.y2db{bottom:736.460880pt;}
.y27a{bottom:737.243440pt;}
.y381{bottom:739.040000pt;}
.y1ed{bottom:739.487920pt;}
.y9c{bottom:739.740160pt;}
.y18b{bottom:741.318240pt;}
.y79{bottom:742.240000pt;}
.y330{bottom:744.080000pt;}
.y44{bottom:745.680000pt;}
.y1c0{bottom:748.372320pt;}
.y305{bottom:748.605840pt;}
.y11d{bottom:749.320880pt;}
.y154{bottom:749.962160pt;}
.y32a{bottom:750.590240pt;}
.ye4{bottom:750.873440pt;}
.y37b{bottom:751.356160pt;}
.y385{bottom:751.360000pt;}
.y18{bottom:751.680000pt;}
.y380{bottom:754.076000pt;}
.y9b{bottom:755.104160pt;}
.y2a6{bottom:755.727760pt;}
.y24c{bottom:757.323520pt;}
.y1ec{bottom:759.728320pt;}
.y18a{bottom:760.516560pt;}
.y279{bottom:760.610080pt;}
.y43{bottom:760.960000pt;}
.y78{bottom:761.600000pt;}
.y329{bottom:762.826240pt;}
.y21e{bottom:763.736320pt;}
.y2da{bottom:763.902320pt;}
.y153{bottom:765.326160pt;}
.y37a{bottom:766.640000pt;}
.y17{bottom:767.040000pt;}
.y1bf{bottom:767.730960pt;}
.y37f{bottom:767.840000pt;}
.y11c{bottom:768.599360pt;}
.y304{bottom:768.766080pt;}
.y9a{bottom:770.468160pt;}
.y2a5{bottom:771.091760pt;}
.ye3{bottom:771.113840pt;}
.y24b{bottom:772.607360pt;}
.y328{bottom:775.062240pt;}
.y278{bottom:775.974080pt;}
.y42{bottom:776.320000pt;}
.y4{bottom:778.582667pt;}
.y2d9{bottom:779.186160pt;}
.y1eb{bottom:779.968720pt;}
.y152{bottom:780.610000pt;}
.y16{bottom:781.040000pt;}
.y77{bottom:781.205440pt;}
.y21d{bottom:783.014800pt;}
.y1be{bottom:783.094960pt;}
.y189{bottom:783.883200pt;}
.y11b{bottom:783.963360pt;}
.y303{bottom:784.130080pt;}
.y99{bottom:785.752000pt;}
.y2a4{bottom:786.455760pt;}
.y327{bottom:787.383360pt;}
.y24a{bottom:787.971360pt;}
.ye2{bottom:790.392320pt;}
.y277{bottom:791.338080pt;}
.y373{bottom:794.960000pt;}
.y1ea{bottom:795.332720pt;}
.y41{bottom:795.680000pt;}
.y1bd{bottom:798.378800pt;}
.y2d8{bottom:798.464640pt;}
.y11a{bottom:799.327360pt;}
.y151{bottom:799.888480pt;}
.y96{bottom:801.025520pt;}
.y98{bottom:801.116000pt;}
.y76{bottom:801.760000pt;}
.y15{bottom:801.996720pt;}
.y326{bottom:803.620000pt;}
.y302{bottom:804.370480pt;}
.y2a3{bottom:805.734240pt;}
.y21c{bottom:806.381440pt;}
.y276{bottom:806.621920pt;}
.y249{bottom:807.249840pt;}
.ye1{bottom:809.750960pt;}
.y188{bottom:811.324640pt;}
.y377{bottom:813.352160pt;}
.y119{bottom:814.611200pt;}
.y40{bottom:814.960000pt;}
.y325{bottom:815.856000pt;}
.y95{bottom:816.389520pt;}
.y97{bottom:816.480000pt;}
.y1bc{bottom:817.737440pt;}
.y301{bottom:819.734480pt;}
.y2a2{bottom:821.098240pt;}
.y75{bottom:821.120000pt;}
.y21b{bottom:821.745440pt;}
.y150{bottom:823.321920pt;}
.y275{bottom:825.900400pt;}
.y2d7{bottom:825.906080pt;}
.y187{bottom:826.608480pt;}
.y324{bottom:828.177120pt;}
.y376{bottom:828.636000pt;}
.y118{bottom:829.975200pt;}
.ye0{bottom:829.991360pt;}
.y1bb{bottom:833.101440pt;}
.y14{bottom:833.272480pt;}
.y3f{bottom:834.320000pt;}
.y248{bottom:834.611120pt;}
.y21a{bottom:837.109440pt;}
.y92{bottom:839.676000pt;}
.y94{bottom:839.756160pt;}
.y300{bottom:839.974880pt;}
.y323{bottom:840.413120pt;}
.y2a1{bottom:840.456880pt;}
.y74{bottom:840.480000pt;}
.y2d6{bottom:841.189920pt;}
.y186{bottom:841.972480pt;}
.y14f{bottom:842.600400pt;}
.y375{bottom:844.000000pt;}
.y117{bottom:845.259040pt;}
.y1ba{bottom:848.385280pt;}
.y274{bottom:849.253680pt;}
.y3e{bottom:849.680000pt;}
.y247{bottom:849.975120pt;}
.ydf{bottom:850.231760pt;}
.y219{bottom:852.393280pt;}
.y91{bottom:855.040000pt;}
.y93{bottom:855.120160pt;}
.y2ff{bottom:855.258720pt;}
.y2a0{bottom:855.740720pt;}
.y2d5{bottom:856.553920pt;}
.y322{bottom:856.649760pt;}
.y185{bottom:857.256320pt;}
.y14e{bottom:857.964400pt;}
.y73{bottom:859.760000pt;}
.y332{bottom:860.160000pt;}
.y116{bottom:860.623040pt;}
.y273{bottom:864.617680pt;}
.y13{bottom:864.628400pt;}
.y3d{bottom:864.960000pt;}
.y1b9{bottom:867.663760pt;}
.y321{bottom:868.970880pt;}
.y246{bottom:869.253600pt;}
.yde{bottom:870.472160pt;}
.y29f{bottom:871.104720pt;}
.y8c{bottom:871.440000pt;}
.y218{bottom:871.671760pt;}
.y2d4{bottom:871.917920pt;}
.y36d{bottom:872.320000pt;}
.y14d{bottom:873.248240pt;}
.y2fe{bottom:875.499120pt;}
.y184{bottom:876.614960pt;}
.y90{bottom:878.472160pt;}
.y72{bottom:879.120000pt;}
.y115{bottom:879.901520pt;}
.y272{bottom:879.981680pt;}
.y12{bottom:879.992400pt;}
.y3c{bottom:880.320000pt;}
.y320{bottom:881.206880pt;}
.y245{bottom:884.617600pt;}
.ydd{bottom:885.756000pt;}
.y2d3{bottom:887.201760pt;}
.y32e{bottom:888.480000pt;}
.y29e{bottom:890.463360pt;}
.y372{bottom:890.628160pt;}
.y2fd{bottom:890.863120pt;}
.y1b8{bottom:891.097200pt;}
.y183{bottom:891.978960pt;}
.y14c{bottom:892.606880pt;}
.y31f{bottom:893.442880pt;}
.y8f{bottom:893.756000pt;}
.y217{bottom:895.105200pt;}
.y11{bottom:895.276240pt;}
.y3b{bottom:895.680000pt;}
.y71{bottom:898.725440pt;}
.y271{bottom:899.180000pt;}
.ydc{bottom:901.120000pt;}
.y114{bottom:903.188000pt;}
.y244{bottom:903.976240pt;}
.y29d{bottom:905.747200pt;}
.y31e{bottom:905.764000pt;}
.y371{bottom:905.992160pt;}
.y2fc{bottom:906.146960pt;}
.y1b7{bottom:906.381040pt;}
.y2d2{bottom:906.480240pt;}
.y182{bottom:907.262800pt;}
.y14b{bottom:907.970880pt;}
.y8a{bottom:909.009520pt;}
.y8e{bottom:909.120000pt;}
.y216{bottom:910.389040pt;}
.y10{bottom:910.640240pt;}
.y3a{bottom:914.960000pt;}
.y31d{bottom:918.000000pt;}
.y243{bottom:919.260080pt;}
.y70{bottom:919.280000pt;}
.y32c{bottom:919.840000pt;}
.ydb{bottom:920.640000pt;}
.y29c{bottom:921.111200pt;}
.y370{bottom:921.276000pt;}
.y2fb{bottom:921.510960pt;}
.y1b6{bottom:921.745040pt;}
.y1e9{bottom:922.626800pt;}
.y14a{bottom:923.254720pt;}
.y89{bottom:924.373520pt;}
.y8b{bottom:924.480000pt;}
.yf{bottom:926.004240pt;}
.y181{bottom:926.621440pt;}
.y215{bottom:929.667520pt;}
.y113{bottom:930.629440pt;}
.y2d1{bottom:933.841520pt;}
.y39{bottom:934.320000pt;}
.y242{bottom:934.624080pt;}
.y31c{bottom:934.858800pt;}
.y319{bottom:934.872160pt;}
.y29b{bottom:936.475200pt;}
.y36f{bottom:936.640000pt;}
.y1b5{bottom:937.109040pt;}
.y1e8{bottom:937.990800pt;}
.y149{bottom:938.618720pt;}
.y6f{bottom:938.640000pt;}
.y2fa{bottom:941.751360pt;}
.y180{bottom:941.985440pt;}
.y112{bottom:945.993440pt;}
.y85{bottom:947.673360pt;}
.y88{bottom:947.740160pt;}
.y241{bottom:949.988080pt;}
.y31b{bottom:950.142640pt;}
.y318{bottom:950.156000pt;}
.y32b{bottom:951.200000pt;}
.y29a{bottom:951.759040pt;}
.y1b4{bottom:952.392880pt;}
.y214{bottom:953.100960pt;}
.y2d0{bottom:953.120000pt;}
.y38{bottom:953.923360pt;}
.y148{bottom:953.982720pt;}
.y6e{bottom:954.000000pt;}
.y1e7{bottom:957.189120pt;}
.yda{bottom:957.202720pt;}
.y17f{bottom:957.269280pt;}
.ye{bottom:957.276000pt;}
.y2f9{bottom:961.991760pt;}
.y84{bottom:963.037360pt;}
.y87{bottom:963.104160pt;}
.y2{bottom:963.477200pt;}
.y36c{bottom:964.960000pt;}
.y111{bottom:965.271920pt;}
.y31a{bottom:965.506640pt;}
.y317{bottom:965.520000pt;}
.y213{bottom:968.384800pt;}
.y147{bottom:969.266560pt;}
.y6d{bottom:969.280000pt;}
.y299{bottom:971.117680pt;}
.y1b3{bottom:971.671360pt;}
.yd{bottom:972.627520pt;}
.y17e{bottom:972.633280pt;}
.y37{bottom:974.800000pt;}
.y2f8{bottom:977.355760pt;}
.y83{bottom:978.401360pt;}
.y86{bottom:978.468160pt;}
.yd7{bottom:980.556000pt;}
.y110{bottom:980.635920pt;}
.yd9{bottom:980.636160pt;}
.y2cf{bottom:980.720000pt;}
.y315{bottom:982.480000pt;}
.y1{bottom:982.677200pt;}
.y36b{bottom:983.276000pt;}
.y212{bottom:983.748800pt;}
.y3{bottom:984.357200pt;}
.y146{bottom:984.630560pt;}
.y298{bottom:986.481680pt;}
.yc{bottom:987.991520pt;}
.y270{bottom:987.997280pt;}
.y6c{bottom:988.640000pt;}
.y17d{bottom:991.911760pt;}
.y36{bottom:995.603440pt;}
.yd6{bottom:995.920000pt;}
.yd8{bottom:996.000160pt;}
.y2f7{bottom:997.516000pt;}
.y82{bottom:997.760000pt;}
.y36a{bottom:998.640000pt;}
.y1b2{bottom:999.032640pt;}
.y10f{bottom:999.994560pt;}
.y38e{bottom:1003.529440pt;}
.y6b{bottom:1004.000000pt;}
.y5{bottom:1005.354267pt;}
.y297{bottom:1005.680000pt;}
.y26f{bottom:1007.195600pt;}
.yd5{bottom:1012.320000pt;}
.y2f6{bottom:1012.880000pt;}
.y2ce{bottom:1013.434720pt;}
.y1b1{bottom:1014.396640pt;}
.y10e{bottom:1015.278400pt;}
.y369{bottom:1015.600000pt;}
.y314{bottom:1016.240000pt;}
.y35{bottom:1016.406880pt;}
.y81{bottom:1017.280000pt;}
.yb{bottom:1019.267280pt;}
.y17c{bottom:1019.273040pt;}
.y6a{bottom:1019.280000pt;}
.y296{bottom:1033.280000pt;}
.y34{bottom:1033.360000pt;}
.y2cd{bottom:1033.594960pt;}
.y211{bottom:1033.755280pt;}
.y10d{bottom:1034.556880pt;}
.y38d{bottom:1034.564800pt;}
.ya{bottom:1034.631280pt;}
.y69{bottom:1034.637040pt;}
.y32{bottom:1057.040000pt;}
.y8{bottom:1072.400000pt;}
.hc{height:29.716875pt;}
.h22{height:30.640000pt;}
.h23{height:30.641333pt;}
.h21{height:30.720000pt;}
.h26{height:34.638667pt;}
.h18{height:34.640000pt;}
.hd{height:35.617969pt;}
.hb{height:36.595781pt;}
.h17{height:38.640000pt;}
.h13{height:38.905781pt;}
.h1f{height:39.112434pt;}
.h2d{height:41.273438pt;}
.h30{height:45.675938pt;}
.h8{height:45.951094pt;}
.h12{height:45.962934pt;}
.h1e{height:46.256054pt;}
.h16{height:46.271734pt;}
.h1d{height:46.322294pt;}
.h2f{height:46.454062pt;}
.he{height:46.733906pt;}
.h2{height:47.168000pt;}
.h29{height:50.000000pt;}
.h10{height:50.353594pt;}
.h11{height:51.211406pt;}
.h20{height:51.525646pt;}
.ha{height:56.292875pt;}
.h9{height:56.326795pt;}
.h27{height:62.000000pt;}
.h14{height:69.360000pt;}
.h6{height:70.752000pt;}
.h2e{height:71.520000pt;}
.h2b{height:76.720000pt;}
.h1b{height:80.446614pt;}
.h1a{height:82.691094pt;}
.h2a{height:92.000000pt;}
.h28{height:93.280000pt;}
.h5{height:93.952000pt;}
.h2c{height:107.358667pt;}
.h4{height:117.920000pt;}
.h1c{height:118.527574pt;}
.h19{height:122.984854pt;}
.h3{height:140.928000pt;}
.h24{height:143.760000pt;}
.h15{height:176.640000pt;}
.hf{height:269.920000pt;}
.h25{height:271.680000pt;}
.h0{height:1122.520000pt;}
.h7{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:3.120000pt;}
.w6{width:3.198667pt;}
.w9{width:3.200000pt;}
.w14{width:74.960000pt;}
.w12{width:111.120000pt;}
.wf{width:129.360000pt;}
.wc{width:130.001333pt;}
.w10{width:131.598667pt;}
.wb{width:139.758667pt;}
.w13{width:141.041333pt;}
.we{width:167.280000pt;}
.wd{width:227.280000pt;}
.w11{width:292.241333pt;}
.w15{width:366.400000pt;}
.w5{width:374.560000pt;}
.w8{width:413.081333pt;}
.w4{width:510.401333pt;}
.wa{width:587.641333pt;}
.w3{width:632.880000pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.x15{left:-2.560000pt;}
.x0{left:0.000000pt;}
.x10{left:4.720000pt;}
.x8{left:7.200000pt;}
.x3e{left:9.600000pt;}
.x32{left:25.440000pt;}
.x3c{left:36.240000pt;}
.x3a{left:43.600000pt;}
.x37{left:48.080000pt;}
.x1{left:66.554400pt;}
.x3{left:68.031467pt;}
.x7{left:87.360000pt;}
.x5{left:94.560000pt;}
.xa{left:113.520000pt;}
.x11{left:118.567920pt;}
.x22{left:120.880000pt;}
.xb{left:151.280000pt;}
.x6{left:166.557040pt;}
.x20{left:168.720000pt;}
.x21{left:176.080000pt;}
.xf{left:186.000000pt;}
.x1a{left:194.238960pt;}
.x1b{left:199.920000pt;}
.x1c{left:203.040000pt;}
.x1d{left:206.080000pt;}
.x1e{left:209.680000pt;}
.x3d{left:214.560000pt;}
.xd{left:217.360000pt;}
.xc{left:222.067840pt;}
.x2c{left:224.560000pt;}
.x23{left:228.160000pt;}
.x26{left:234.960240pt;}
.x29{left:293.116320pt;}
.x2a{left:350.080000pt;}
.x2d{left:356.957600pt;}
.x24{left:358.880000pt;}
.x12{left:360.156800pt;}
.x9{left:363.680000pt;}
.x27{left:365.754640pt;}
.x13{left:368.800000pt;}
.x14{left:374.480000pt;}
.x16{left:377.600000pt;}
.x17{left:380.640000pt;}
.x18{left:384.240000pt;}
.x19{left:388.394960pt;}
.x1f{left:391.045120pt;}
.xe{left:402.960000pt;}
.x2f{left:491.760000pt;}
.x30{left:517.193280pt;}
.x4{left:521.424667pt;}
.x31{left:524.634800pt;}
.x38{left:528.000000pt;}
.x39{left:532.074800pt;}
.x33{left:567.360000pt;}
.x25{left:586.880000pt;}
.x35{left:592.793280pt;}
.x28{left:593.760000pt;}
.x34{left:596.160000pt;}
.x36{left:600.234800pt;}
.x3b{left:603.600000pt;}
.x2{left:637.402400pt;}
.x2b{left:643.040000pt;}
.x2e{left:649.835520pt;}
}




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