
    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_c07223de8a4d35667004481b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.147000;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_ad584732adf6a6f3d7627e1a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.179000;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_bfb5cd9c18ee1a429264578e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_92d0be52052f5e0106d5d8f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.148000;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_03f783d08373147919187cce.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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.224999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224999,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v4{vertical-align:-21.780000px;}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.829400px;}
.v3{vertical-align:21.726000px;}
.v5{vertical-align:34.506000px;}
.v6{vertical-align:69.012000px;}
.ls43{letter-spacing:-1.200000px;}
.ls27{letter-spacing:-0.990000px;}
.ls35{letter-spacing:-0.924000px;}
.ls44{letter-spacing:-0.900000px;}
.ls3c{letter-spacing:-0.792000px;}
.ls34{letter-spacing:-0.726000px;}
.ls21{letter-spacing:-0.660000px;}
.ls33{letter-spacing:-0.594000px;}
.ls3a{letter-spacing:-0.528000px;}
.ls42{letter-spacing:-0.480000px;}
.ls3d{letter-spacing:-0.462000px;}
.ls22{letter-spacing:-0.396000px;}
.ls19{letter-spacing:-0.330000px;}
.ls28{letter-spacing:-0.300000px;}
.ls18{letter-spacing:-0.264000px;}
.ls2d{letter-spacing:-0.240000px;}
.ls5{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.198000px;}
.ls2c{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.162000px;}
.ls17{letter-spacing:-0.132000px;}
.ls1d{letter-spacing:-0.120000px;}
.ls41{letter-spacing:-0.079200px;}
.ls16{letter-spacing:-0.066000px;}
.ls24{letter-spacing:-0.060000px;}
.ls6{letter-spacing:-0.054000px;}
.ls40{letter-spacing:-0.051000px;}
.ls3f{letter-spacing:-0.030600px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.108000px;}
.ls2b{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.132000px;}
.ls2a{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.216000px;}
.ls30{letter-spacing:0.226200px;}
.ls25{letter-spacing:0.240000px;}
.ls2e{letter-spacing:0.243600px;}
.lsd{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.270000px;}
.ls20{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.330000px;}
.ls31{letter-spacing:0.357000px;}
.ls1e{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.396000px;}
.ls1b{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.462000px;}
.ls29{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.486000px;}
.ls38{letter-spacing:0.495600px;}
.lse{letter-spacing:0.528000px;}
.ls1c{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.594000px;}
.ls3b{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.660000px;}
.ls1f{letter-spacing:0.720000px;}
.ls3e{letter-spacing:0.726000px;}
.ls26{letter-spacing:0.780000px;}
.ls37{letter-spacing:0.792000px;}
.ls36{letter-spacing:0.924000px;}
.ls23{letter-spacing:1.020000px;}
.ls39{letter-spacing:1.140000px;}
.ls2f{letter-spacing:1.188000px;}
.ls45{letter-spacing:6.540000px;}
.ls32{letter-spacing:12.852000px;}
.ls1{letter-spacing:94.545600px;}
.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;}
}
.wsb6{word-spacing:-16.764000px;}
.ws120{word-spacing:-16.698000px;}
.ws11c{word-spacing:-16.368000px;}
.wscb{word-spacing:-16.302000px;}
.ws87{word-spacing:-16.170000px;}
.ws1{word-spacing:-15.624000px;}
.ws146{word-spacing:-15.360000px;}
.ws13f{word-spacing:-15.240000px;}
.wsdb{word-spacing:-15.000000px;}
.ws8{word-spacing:-13.392000px;}
.ws3{word-spacing:-12.648000px;}
.ws2{word-spacing:-11.718000px;}
.ws0{word-spacing:-10.044000px;}
.ws121{word-spacing:-10.018800px;}
.wsca{word-spacing:-9.820800px;}
.ws125{word-spacing:-9.741600px;}
.ws4{word-spacing:-7.588800px;}
.ws122{word-spacing:-7.558200px;}
.ws11d{word-spacing:-2.640000px;}
.ws3f{word-spacing:-2.508000px;}
.ws35{word-spacing:-2.442000px;}
.ws132{word-spacing:-2.376000px;}
.wsdf{word-spacing:-2.310000px;}
.ws8d{word-spacing:-2.280000px;}
.ws6d{word-spacing:-2.244000px;}
.ws62{word-spacing:-2.220000px;}
.ws41{word-spacing:-2.178000px;}
.ws60{word-spacing:-2.160000px;}
.ws9a{word-spacing:-2.112000px;}
.ws63{word-spacing:-2.100000px;}
.ws25{word-spacing:-2.052000px;}
.wsfa{word-spacing:-2.046000px;}
.wsb{word-spacing:-1.998000px;}
.ws7f{word-spacing:-1.980000px;}
.ws124{word-spacing:-1.938000px;}
.ws96{word-spacing:-1.920000px;}
.ws4a{word-spacing:-1.914000px;}
.ws17{word-spacing:-1.890000px;}
.ws91{word-spacing:-1.860000px;}
.wsde{word-spacing:-1.848000px;}
.ws70{word-spacing:-1.800000px;}
.ws9e{word-spacing:-1.782000px;}
.wsd7{word-spacing:-1.740000px;}
.ws69{word-spacing:-1.716000px;}
.wsd6{word-spacing:-1.680000px;}
.wsb4{word-spacing:-1.650000px;}
.ws84{word-spacing:-1.620000px;}
.ws111{word-spacing:-1.584000px;}
.ws8e{word-spacing:-1.560000px;}
.wsfe{word-spacing:-1.518000px;}
.wsa9{word-spacing:-1.500000px;}
.wsb1{word-spacing:-1.452000px;}
.ws1f{word-spacing:-1.404000px;}
.ws9c{word-spacing:-1.386000px;}
.ws6e{word-spacing:-1.380000px;}
.ws12{word-spacing:-1.350000px;}
.ws3c{word-spacing:-1.320000px;}
.wsa8{word-spacing:-1.260000px;}
.ws54{word-spacing:-1.254000px;}
.ws22{word-spacing:-1.242000px;}
.ws89{word-spacing:-1.200000px;}
.wsd0{word-spacing:-1.188000px;}
.ws10e{word-spacing:-1.140000px;}
.ws1a{word-spacing:-1.134000px;}
.ws106{word-spacing:-1.122000px;}
.ws8c{word-spacing:-1.080000px;}
.ws7{word-spacing:-1.071000px;}
.ws119{word-spacing:-1.056000px;}
.wsaa{word-spacing:-1.020000px;}
.ws6a{word-spacing:-0.990000px;}
.ws143{word-spacing:-0.960000px;}
.ws56{word-spacing:-0.924000px;}
.ws16{word-spacing:-0.918000px;}
.ws71{word-spacing:-0.900000px;}
.ws29{word-spacing:-0.864000px;}
.ws6c{word-spacing:-0.858000px;}
.wsda{word-spacing:-0.840000px;}
.wsd2{word-spacing:-0.816000px;}
.ws1d{word-spacing:-0.810000px;}
.ws3b{word-spacing:-0.792000px;}
.ws10f{word-spacing:-0.780000px;}
.wsd5{word-spacing:-0.726000px;}
.ws131{word-spacing:-0.720000px;}
.ws14{word-spacing:-0.702000px;}
.wsd4{word-spacing:-0.660000px;}
.ws12b{word-spacing:-0.612000px;}
.wsa5{word-spacing:-0.594000px;}
.ws12a{word-spacing:-0.561000px;}
.ws15{word-spacing:-0.540000px;}
.ws36{word-spacing:-0.528000px;}
.wse4{word-spacing:-0.480000px;}
.wsb8{word-spacing:-0.462000px;}
.ws92{word-spacing:-0.420000px;}
.ws6b{word-spacing:-0.396000px;}
.ws97{word-spacing:-0.360000px;}
.wsc4{word-spacing:-0.330000px;}
.ws1b{word-spacing:-0.324000px;}
.wsd8{word-spacing:-0.300000px;}
.ws1c{word-spacing:-0.270000px;}
.wsa4{word-spacing:-0.264000px;}
.wsf7{word-spacing:-0.240000px;}
.ws1e{word-spacing:-0.216000px;}
.ws58{word-spacing:-0.198000px;}
.ws145{word-spacing:-0.180000px;}
.wsb9{word-spacing:-0.132000px;}
.ws138{word-spacing:-0.120000px;}
.wse{word-spacing:-0.108000px;}
.ws7e{word-spacing:-0.066000px;}
.ws5{word-spacing:0.000000px;}
.ws86{word-spacing:0.060000px;}
.ws45{word-spacing:0.066000px;}
.ws5d{word-spacing:0.120000px;}
.wsaf{word-spacing:0.132000px;}
.wsab{word-spacing:0.180000px;}
.ws33{word-spacing:0.198000px;}
.ws95{word-spacing:0.240000px;}
.wsbe{word-spacing:0.264000px;}
.ws28{word-spacing:0.270000px;}
.ws2c{word-spacing:0.324000px;}
.ws48{word-spacing:0.330000px;}
.wsb3{word-spacing:0.396000px;}
.ws85{word-spacing:0.420000px;}
.ws18{word-spacing:0.432000px;}
.wsc6{word-spacing:0.462000px;}
.ws99{word-spacing:0.480000px;}
.ws115{word-spacing:0.528000px;}
.wsa2{word-spacing:0.540000px;}
.wsf9{word-spacing:0.594000px;}
.wsf4{word-spacing:0.600000px;}
.ws2e{word-spacing:0.648000px;}
.ws8f{word-spacing:0.660000px;}
.ws8b{word-spacing:0.720000px;}
.wsc0{word-spacing:0.726000px;}
.ws129{word-spacing:0.765000px;}
.wsf5{word-spacing:0.780000px;}
.wsce{word-spacing:0.792000px;}
.wsf3{word-spacing:0.840000px;}
.ws40{word-spacing:0.858000px;}
.ws13{word-spacing:0.864000px;}
.wsc9{word-spacing:0.867000px;}
.ws12e{word-spacing:0.900000px;}
.wsc8{word-spacing:0.918000px;}
.wsf8{word-spacing:0.990000px;}
.ws76{word-spacing:1.020000px;}
.ws27{word-spacing:1.026000px;}
.wsbf{word-spacing:1.056000px;}
.ws2f{word-spacing:1.080000px;}
.wsff{word-spacing:1.122000px;}
.ws2b{word-spacing:1.134000px;}
.ws7b{word-spacing:1.140000px;}
.ws66{word-spacing:1.188000px;}
.ws140{word-spacing:1.200000px;}
.ws64{word-spacing:1.254000px;}
.wsf0{word-spacing:1.260000px;}
.wsae{word-spacing:1.320000px;}
.ws13a{word-spacing:1.380000px;}
.ws67{word-spacing:1.386000px;}
.ws9{word-spacing:1.404000px;}
.wse7{word-spacing:1.440000px;}
.ws88{word-spacing:1.452000px;}
.ws9d{word-spacing:1.518000px;}
.wse3{word-spacing:1.560000px;}
.ws19{word-spacing:1.566000px;}
.ws5b{word-spacing:1.584000px;}
.ws72{word-spacing:1.620000px;}
.ws4b{word-spacing:1.650000px;}
.ws141{word-spacing:1.680000px;}
.ws49{word-spacing:1.716000px;}
.wsad{word-spacing:1.740000px;}
.wsbd{word-spacing:1.782000px;}
.ws8a{word-spacing:1.800000px;}
.wsb0{word-spacing:1.848000px;}
.ws130{word-spacing:1.860000px;}
.ws26{word-spacing:1.890000px;}
.ws4f{word-spacing:1.914000px;}
.ws102{word-spacing:1.920000px;}
.wsd{word-spacing:1.944000px;}
.ws4e{word-spacing:1.980000px;}
.ws104{word-spacing:2.046000px;}
.ws30{word-spacing:2.052000px;}
.wse5{word-spacing:2.100000px;}
.ws51{word-spacing:2.112000px;}
.ws52{word-spacing:2.178000px;}
.ws9f{word-spacing:2.220000px;}
.ws11e{word-spacing:2.244000px;}
.ws10d{word-spacing:2.280000px;}
.wsee{word-spacing:2.340000px;}
.wsd1{word-spacing:2.376000px;}
.wsfd{word-spacing:2.442000px;}
.wsd9{word-spacing:2.460000px;}
.ws13b{word-spacing:2.508000px;}
.ws109{word-spacing:2.574000px;}
.wsed{word-spacing:2.640000px;}
.ws10c{word-spacing:2.700000px;}
.wsf2{word-spacing:2.706000px;}
.ws11b{word-spacing:2.754000px;}
.ws103{word-spacing:2.772000px;}
.wsc{word-spacing:2.808000px;}
.ws61{word-spacing:2.820000px;}
.ws55{word-spacing:2.838000px;}
.wsef{word-spacing:2.880000px;}
.ws3e{word-spacing:2.904000px;}
.ws10b{word-spacing:2.970000px;}
.ws79{word-spacing:3.000000px;}
.wsbc{word-spacing:3.036000px;}
.wse0{word-spacing:3.060000px;}
.ws23{word-spacing:3.078000px;}
.ws83{word-spacing:3.102000px;}
.wsa0{word-spacing:3.120000px;}
.ws110{word-spacing:3.168000px;}
.wsa7{word-spacing:3.180000px;}
.ws105{word-spacing:3.234000px;}
.ws57{word-spacing:3.300000px;}
.ws11{word-spacing:3.348000px;}
.wscd{word-spacing:3.366000px;}
.ws78{word-spacing:3.420000px;}
.ws75{word-spacing:3.432000px;}
.wsac{word-spacing:3.480000px;}
.wscf{word-spacing:3.498000px;}
.wsf{word-spacing:3.510000px;}
.ws44{word-spacing:3.564000px;}
.ws133{word-spacing:3.600000px;}
.wsa{word-spacing:3.618000px;}
.wsc7{word-spacing:3.630000px;}
.wsa1{word-spacing:3.660000px;}
.ws43{word-spacing:3.696000px;}
.ws5c{word-spacing:3.720000px;}
.ws46{word-spacing:3.762000px;}
.wse8{word-spacing:3.780000px;}
.ws31{word-spacing:3.828000px;}
.wse2{word-spacing:3.840000px;}
.ws2d{word-spacing:3.888000px;}
.ws68{word-spacing:3.894000px;}
.wseb{word-spacing:3.960000px;}
.ws82{word-spacing:4.026000px;}
.ws7a{word-spacing:4.080000px;}
.ws34{word-spacing:4.092000px;}
.ws77{word-spacing:4.140000px;}
.ws39{word-spacing:4.158000px;}
.ws6f{word-spacing:4.200000px;}
.wsc5{word-spacing:4.224000px;}
.ws4c{word-spacing:4.290000px;}
.ws24{word-spacing:4.320000px;}
.wsf6{word-spacing:4.380000px;}
.wsba{word-spacing:4.422000px;}
.ws144{word-spacing:4.440000px;}
.ws100{word-spacing:4.500000px;}
.ws4d{word-spacing:4.554000px;}
.wsfc{word-spacing:4.620000px;}
.ws90{word-spacing:4.680000px;}
.ws38{word-spacing:4.686000px;}
.ws2a{word-spacing:4.698000px;}
.wsa6{word-spacing:4.740000px;}
.wsc2{word-spacing:4.743000px;}
.ws32{word-spacing:4.752000px;}
.ws20{word-spacing:4.806000px;}
.ws81{word-spacing:4.818000px;}
.ws148{word-spacing:4.860000px;}
.wsa3{word-spacing:4.884000px;}
.wse1{word-spacing:4.920000px;}
.wsfb{word-spacing:4.950000px;}
.ws142{word-spacing:4.980000px;}
.ws12d{word-spacing:5.016000px;}
.ws13e{word-spacing:5.040000px;}
.wsbb{word-spacing:5.082000px;}
.ws5a{word-spacing:5.148000px;}
.ws9b{word-spacing:5.214000px;}
.ws5e{word-spacing:5.220000px;}
.ws74{word-spacing:5.280000px;}
.ws59{word-spacing:5.346000px;}
.ws137{word-spacing:5.400000px;}
.ws50{word-spacing:5.412000px;}
.ws80{word-spacing:5.478000px;}
.ws134{word-spacing:5.520000px;}
.ws107{word-spacing:5.544000px;}
.ws10a{word-spacing:5.610000px;}
.wsd3{word-spacing:5.676000px;}
.wse6{word-spacing:5.700000px;}
.ws47{word-spacing:5.742000px;}
.ws11f{word-spacing:5.808000px;}
.ws21{word-spacing:5.832000px;}
.wsf1{word-spacing:5.874000px;}
.ws98{word-spacing:5.940000px;}
.ws65{word-spacing:6.006000px;}
.ws94{word-spacing:6.060000px;}
.ws42{word-spacing:6.072000px;}
.wsb7{word-spacing:6.204000px;}
.ws37{word-spacing:6.270000px;}
.ws112{word-spacing:6.300000px;}
.ws10{word-spacing:6.318000px;}
.ws108{word-spacing:6.336000px;}
.ws113{word-spacing:6.540000px;}
.ws53{word-spacing:6.600000px;}
.ws5f{word-spacing:6.660000px;}
.wsc3{word-spacing:6.666000px;}
.wse9{word-spacing:6.780000px;}
.ws13d{word-spacing:6.864000px;}
.wscc{word-spacing:6.996000px;}
.ws3d{word-spacing:7.062000px;}
.ws136{word-spacing:7.140000px;}
.ws128{word-spacing:7.194000px;}
.ws135{word-spacing:7.200000px;}
.ws101{word-spacing:7.320000px;}
.wsb5{word-spacing:7.326000px;}
.ws12f{word-spacing:7.392000px;}
.ws7d{word-spacing:7.788000px;}
.ws12c{word-spacing:7.854000px;}
.ws3a{word-spacing:8.052000px;}
.wsb2{word-spacing:8.118000px;}
.ws127{word-spacing:8.316000px;}
.wsec{word-spacing:8.382000px;}
.ws73{word-spacing:8.700000px;}
.ws123{word-spacing:8.844000px;}
.ws139{word-spacing:9.240000px;}
.ws93{word-spacing:9.420000px;}
.ws114{word-spacing:9.504000px;}
.wsdd{word-spacing:10.362000px;}
.ws13c{word-spacing:11.814000px;}
.wsdc{word-spacing:12.012000px;}
.ws7c{word-spacing:12.720000px;}
.ws6{word-spacing:13.608000px;}
.wsea{word-spacing:14.040000px;}
.ws126{word-spacing:14.586000px;}
.wsc1{word-spacing:14.652000px;}
.ws11a{word-spacing:15.120000px;}
.ws147{word-spacing:45.060000px;}
.ws149{word-spacing:45.120000px;}
.ws116{word-spacing:52.596000px;}
.ws117{word-spacing:55.296000px;}
.ws118{word-spacing:193.740000px;}
._c{margin-left:-15.120000px;}
._2{margin-left:-1.784400px;}
._3{width:1.056000px;}
._6{width:2.508000px;}
._4{width:8.109000px;}
._f{width:10.098000px;}
._5{width:11.934000px;}
._0{width:13.923000px;}
._7{width:122.094000px;}
._8{width:167.778000px;}
._d{width:208.740000px;}
._a{width:223.620000px;}
._9{width:251.940000px;}
._b{width:264.120000px;}
._e{width:265.140000px;}
._1{width:1922.972400px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.600000px;}
.fs9{font-size:36.000000px;}
.fse{font-size:39.600000px;}
.fs1{font-size:40.500000px;}
.fs5{font-size:47.250000px;}
.fsa{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fsd{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fsc{font-size:66.000000px;}
.fsb{font-size:75.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y11{bottom:12.756000px;}
.y2{bottom:94.277250px;}
.y1{bottom:110.477250px;}
.y32a{bottom:171.672450px;}
.y37{bottom:171.747000px;}
.y374{bottom:171.779700px;}
.y24b{bottom:171.785550px;}
.y2eb{bottom:171.808050px;}
.yea{bottom:171.814950px;}
.y10{bottom:171.816600px;}
.y176{bottom:171.818100px;}
.y2ce{bottom:171.819600px;}
.y1fd{bottom:171.823950px;}
.yd1{bottom:171.828450px;}
.y33d{bottom:171.832950px;}
.y263{bottom:171.852450px;}
.y76{bottom:171.864450px;}
.yb3{bottom:171.870750px;}
.y27e{bottom:171.896550px;}
.y21d{bottom:171.917700px;}
.y97{bottom:171.941700px;}
.y151{bottom:171.953550px;}
.y1c4{bottom:176.022600px;}
.y175{bottom:188.316600px;}
.y2cd{bottom:188.318100px;}
.y36{bottom:189.000000px;}
.y373{bottom:190.529700px;}
.y24a{bottom:190.535550px;}
.y2ea{bottom:190.558050px;}
.ye9{bottom:190.564950px;}
.y329{bottom:191.917950px;}
.y1fc{bottom:192.069450px;}
.yd0{bottom:192.073950px;}
.y33c{bottom:192.078450px;}
.y262{bottom:192.097950px;}
.y75{bottom:192.109950px;}
.yb2{bottom:192.116250px;}
.y27d{bottom:192.142050px;}
.y21c{bottom:192.163200px;}
.y96{bottom:192.187200px;}
.y150{bottom:192.199050px;}
.yf{bottom:192.522600px;}
.y2cc{bottom:204.816600px;}
.y174{bottom:209.022600px;}
.y2e9{bottom:209.308050px;}
.ye8{bottom:209.314950px;}
.y2ba{bottom:209.316750px;}
.y2a9{bottom:209.316900px;}
.y249{bottom:211.715550px;}
.y1fb{bottom:212.314950px;}
.ycf{bottom:212.319450px;}
.y33b{bottom:212.323950px;}
.y261{bottom:212.343450px;}
.y74{bottom:212.355450px;}
.yb1{bottom:212.361750px;}
.y27c{bottom:212.387550px;}
.y21b{bottom:212.408700px;}
.y95{bottom:212.432700px;}
.y14f{bottom:212.444550px;}
.y372{bottom:219.179700px;}
.y328{bottom:220.248450px;}
.y1c3{bottom:222.179700px;}
.y2cb{bottom:225.522600px;}
.y2e8{bottom:228.058050px;}
.ye7{bottom:228.064950px;}
.y357{bottom:229.393200px;}
.y2b9{bottom:230.022750px;}
.y2a8{bottom:230.022900px;}
.y248{bottom:230.465550px;}
.yce{bottom:232.564950px;}
.y33a{bottom:232.569450px;}
.y260{bottom:232.588950px;}
.y73{bottom:232.600950px;}
.yb0{bottom:232.607250px;}
.y27b{bottom:232.633050px;}
.y94{bottom:232.678200px;}
.y14e{bottom:232.690050px;}
.y35{bottom:236.749500px;}
.y167{bottom:237.587700px;}
.y371{bottom:237.929700px;}
.y294{bottom:239.583000px;}
.y327{bottom:240.493950px;}
.y1c2{bottom:240.929700px;}
.y18f{bottom:242.042700px;}
.y21a{bottom:243.065700px;}
.y1fa{bottom:244.084050px;}
.ye6{bottom:246.814950px;}
.y2b8{bottom:246.817050px;}
.y2e7{bottom:247.588050px;}
.y247{bottom:251.645550px;}
.y339{bottom:252.814950px;}
.y25f{bottom:252.834450px;}
.y72{bottom:252.846450px;}
.yaf{bottom:252.852750px;}
.y27a{bottom:252.878550px;}
.y93{bottom:252.923700px;}
.y173{bottom:252.943500px;}
.y166{bottom:257.833200px;}
.y1c1{bottom:259.679700px;}
.y293{bottom:259.828500px;}
.y1e1{bottom:259.922400px;}
.y326{bottom:260.739450px;}
.y18e{bottom:262.288200px;}
.y1f9{bottom:262.834050px;}
.y219{bottom:263.311200px;}
.ye5{bottom:265.564950px;}
.ycd{bottom:265.808700px;}
.y2e6{bottom:266.338050px;}
.y370{bottom:266.579700px;}
.y34{bottom:267.246000px;}
.y14d{bottom:267.472050px;}
.y2b7{bottom:267.522900px;}
.y246{bottom:270.395550px;}
.y2ca{bottom:270.533700px;}
.y71{bottom:273.091950px;}
.y279{bottom:273.124050px;}
.y92{bottom:273.169200px;}
.y172{bottom:273.189000px;}
.y310{bottom:276.238050px;}
.y165{bottom:278.078700px;}
.y1c0{bottom:278.429700px;}
.y325{bottom:280.984950px;}
.y1f8{bottom:281.584050px;}
.y18d{bottom:282.533700px;}
.y218{bottom:283.556700px;}
.y57{bottom:284.006700px;}
.ye4{bottom:284.314950px;}
.y33{bottom:284.499000px;}
.ycc{bottom:284.558700px;}
.y2e5{bottom:285.088050px;}
.y36f{bottom:285.329700px;}
.yae{bottom:286.727250px;}
.y14c{bottom:287.717550px;}
.y292{bottom:289.083000px;}
.y245{bottom:289.145550px;}
.y2c9{bottom:289.283700px;}
.y2a7{bottom:289.310700px;}
.y356{bottom:290.048700px;}
.y1e0{bottom:293.219400px;}
.y70{bottom:293.337450px;}
.y278{bottom:293.369550px;}
.y171{bottom:293.434500px;}
.y25e{bottom:293.803950px;}
.y11a{bottom:294.428850px;}
.y338{bottom:294.908700px;}
.y30f{bottom:296.483550px;}
.y1bf{bottom:297.179700px;}
.y164{bottom:298.324200px;}
.y1f7{bottom:300.334050px;}
.y324{bottom:301.230450px;}
.y32{bottom:301.752000px;}
.ye3{bottom:303.064950px;}
.ycb{bottom:303.308700px;}
.y217{bottom:303.802200px;}
.y2e4{bottom:303.838050px;}
.yad{bottom:306.972750px;}
.y91{bottom:307.076700px;}
.y244{bottom:307.895550px;}
.y14b{bottom:307.963050px;}
.y2c8{bottom:308.033700px;}
.y291{bottom:309.328500px;}
.y2a6{bottom:309.556200px;}
.y56{bottom:310.250700px;}
.y355{bottom:310.294200px;}
.y1df{bottom:313.464900px;}
.y6f{bottom:313.582950px;}
.y277{bottom:313.615050px;}
.y170{bottom:313.680000px;}
.y36e{bottom:313.979700px;}
.y119{bottom:314.674350px;}
.y1be{bottom:315.929700px;}
.y132{bottom:315.996900px;}
.y30e{bottom:316.729050px;}
.y163{bottom:318.569700px;}
.y31{bottom:319.005000px;}
.y1f6{bottom:319.084050px;}
.y2f5{bottom:320.326200px;}
.y18c{bottom:320.783700px;}
.y323{bottom:321.475950px;}
.yfe{bottom:321.814950px;}
.yca{bottom:322.058700px;}
.y216{bottom:324.047700px;}
.y243{bottom:326.645550px;}
.y2c7{bottom:326.783700px;}
.yac{bottom:327.218250px;}
.y90{bottom:327.322200px;}
.y55{bottom:327.503700px;}
.y14a{bottom:328.208550px;}
.y290{bottom:329.574000px;}
.y354{bottom:330.539700px;}
.y2e3{bottom:332.427750px;}
.y36d{bottom:332.729700px;}
.ye2{bottom:332.833200px;}
.y1de{bottom:333.710400px;}
.y6e{bottom:333.828450px;}
.y16f{bottom:333.925500px;}
.y1bd{bottom:334.679700px;}
.y118{bottom:334.919850px;}
.y131{bottom:336.242400px;}
.y30{bottom:336.258000px;}
.y30d{bottom:336.974550px;}
.y1f5{bottom:337.834050px;}
.y2a5{bottom:338.810700px;}
.y162{bottom:338.815200px;}
.yfd{bottom:340.564950px;}
.y2f4{bottom:340.571700px;}
.yc9{bottom:340.808700px;}
.y322{bottom:341.721450px;}
.y215{bottom:344.293200px;}
.y54{bottom:344.756700px;}
.y2c6{bottom:345.533700px;}
.yab{bottom:347.463750px;}
.y8f{bottom:347.567700px;}
.y276{bottom:347.770050px;}
.y149{bottom:348.454050px;}
.y1a6{bottom:349.762200px;}
.y28f{bottom:349.833000px;}
.y353{bottom:350.785200px;}
.y36c{bottom:351.479700px;}
.y25d{bottom:352.015950px;}
.y2e2{bottom:352.673250px;}
.ye1{bottom:353.078700px;}
.y1bc{bottom:353.429700px;}
.y2f{bottom:353.511000px;}
.y1dd{bottom:353.955900px;}
.y6d{bottom:354.073950px;}
.y16e{bottom:354.171000px;}
.y117{bottom:355.165350px;}
.y130{bottom:356.487900px;}
.y1f4{bottom:356.584050px;}
.y242{bottom:356.825550px;}
.y30c{bottom:357.220050px;}
.y337{bottom:357.270450px;}
.y2a4{bottom:359.056200px;}
.yfc{bottom:359.314950px;}
.yc8{bottom:359.558700px;}
.y53{bottom:362.009700px;}
.y214{bottom:364.538700px;}
.yaa{bottom:367.709250px;}
.y8e{bottom:367.813200px;}
.y275{bottom:368.015550px;}
.y161{bottom:368.069700px;}
.y148{bottom:368.699550px;}
.y1a5{bottom:370.007700px;}
.y321{bottom:370.051950px;}
.y28e{bottom:370.078500px;}
.y2e{bottom:370.764000px;}
.y352{bottom:371.030700px;}
.y25c{bottom:372.261450px;}
.y2e1{bottom:372.918750px;}
.ye0{bottom:373.324200px;}
.y2c5{bottom:373.357200px;}
.y1dc{bottom:374.201400px;}
.y6c{bottom:374.319450px;}
.y1f3{bottom:375.334050px;}
.y116{bottom:375.410850px;}
.y30b{bottom:377.465550px;}
.y336{bottom:377.515950px;}
.y2f3{bottom:377.977200px;}
.yc7{bottom:378.308700px;}
.y52{bottom:379.262700px;}
.y2a3{bottom:379.301700px;}
.y18b{bottom:379.342200px;}
.y36b{bottom:380.129700px;}
.y1bb{bottom:381.238200px;}
.y213{bottom:384.784200px;}
.y2b6{bottom:386.042700px;}
.y241{bottom:387.005550px;}
.yfb{bottom:387.335700px;}
.ya9{bottom:387.954750px;}
.y2d{bottom:388.017000px;}
.y8d{bottom:388.058700px;}
.y274{bottom:388.261050px;}
.y160{bottom:388.315200px;}
.y147{bottom:388.945050px;}
.y12f{bottom:389.660850px;}
.y1a4{bottom:390.253200px;}
.y320{bottom:390.297450px;}
.y28d{bottom:390.324000px;}
.y351{bottom:391.276200px;}
.y25b{bottom:392.506950px;}
.y2e0{bottom:393.164250px;}
.ydf{bottom:393.569700px;}
.y2c4{bottom:393.602700px;}
.y1f2{bottom:394.084050px;}
.y1db{bottom:394.446900px;}
.y6b{bottom:394.564950px;}
.y115{bottom:395.656350px;}
.y51{bottom:396.515700px;}
.y16d{bottom:396.921000px;}
.yc6{bottom:397.058700px;}
.y30a{bottom:397.711050px;}
.y335{bottom:397.761450px;}
.y2f2{bottom:398.222700px;}
.y36a{bottom:398.879700px;}
.y18a{bottom:399.587700px;}
.y1ba{bottom:401.483700px;}
.y212{bottom:405.029700px;}
.y2c{bottom:405.270000px;}
.y240{bottom:405.755550px;}
.y2b5{bottom:406.288200px;}
.yfa{bottom:407.581200px;}
.ya8{bottom:408.200250px;}
.y8c{bottom:408.304200px;}
.y12e{bottom:408.410850px;}
.y273{bottom:408.506550px;}
.y2a2{bottom:408.556200px;}
.y15f{bottom:408.560700px;}
.y146{bottom:409.190550px;}
.y1a3{bottom:410.498700px;}
.y350{bottom:411.521700px;}
.y25a{bottom:412.752450px;}
.y50{bottom:413.768700px;}
.yde{bottom:413.815200px;}
.y2c3{bottom:413.848200px;}
.y1da{bottom:414.692400px;}
.y386{bottom:414.929700px;}
.yc5{bottom:415.808700px;}
.y114{bottom:415.901850px;}
.y309{bottom:417.956550px;}
.y334{bottom:418.006950px;}
.y2f1{bottom:418.468200px;}
.y31f{bottom:418.626300px;}
.y28c{bottom:419.578500px;}
.y189{bottom:419.833200px;}
.y1b9{bottom:421.729200px;}
.y2b{bottom:422.523000px;}
.y2df{bottom:423.194250px;}
.y1f1{bottom:424.391400px;}
.y211{bottom:425.275200px;}
.y22c{bottom:426.299400px;}
.y2b4{bottom:426.538200px;}
.y12d{bottom:427.160850px;}
.y369{bottom:427.529700px;}
.yf9{bottom:427.826700px;}
.ya7{bottom:428.445750px;}
.y8b{bottom:428.549700px;}
.y272{bottom:428.752050px;}
.y2a1{bottom:428.801700px;}
.y15e{bottom:428.806200px;}
.y145{bottom:429.436050px;}
.y4f{bottom:431.021700px;}
.y34f{bottom:431.767200px;}
.y259{bottom:432.997950px;}
.y385{bottom:433.679700px;}
.y6a{bottom:433.898250px;}
.ydd{bottom:434.060700px;}
.y2c2{bottom:434.093700px;}
.y1d9{bottom:434.937900px;}
.y23f{bottom:435.935550px;}
.y31e{bottom:437.376300px;}
.y308{bottom:438.202050px;}
.y333{bottom:438.252450px;}
.y2f0{bottom:438.713700px;}
.y2a{bottom:439.776000px;}
.y28b{bottom:439.824000px;}
.y1a2{bottom:439.835700px;}
.y188{bottom:440.078700px;}
.y1b8{bottom:441.974700px;}
.y2de{bottom:443.439750px;}
.y1f0{bottom:444.636900px;}
.y22b{bottom:445.049400px;}
.y210{bottom:445.520700px;}
.y12c{bottom:445.910850px;}
.y113{bottom:446.228850px;}
.y368{bottom:446.279700px;}
.y2b3{bottom:446.797200px;}
.yc4{bottom:447.570450px;}
.yf8{bottom:448.072200px;}
.y4e{bottom:448.274700px;}
.ya6{bottom:448.691250px;}
.y8a{bottom:448.795200px;}
.y271{bottom:448.997550px;}
.y2a0{bottom:449.047200px;}
.y15d{bottom:449.051700px;}
.y144{bottom:449.681550px;}
.y34e{bottom:452.012700px;}
.ydc{bottom:454.306200px;}
.y2c1{bottom:454.339200px;}
.y23e{bottom:454.685550px;}
.y1d8{bottom:455.183400px;}
.y31d{bottom:456.126300px;}
.y69{bottom:456.398250px;}
.y29{bottom:457.029000px;}
.y307{bottom:458.447550px;}
.y2ef{bottom:458.959200px;}
.y28a{bottom:460.069500px;}
.y1a1{bottom:460.081200px;}
.y187{bottom:460.324200px;}
.y384{bottom:461.429700px;}
.y1b7{bottom:462.220200px;}
.y2dd{bottom:463.685250px;}
.y22a{bottom:463.799400px;}
.y12b{bottom:464.660850px;}
.y258{bottom:464.958450px;}
.y367{bottom:465.029700px;}
.y4d{bottom:465.527700px;}
.y20f{bottom:465.766200px;}
.y112{bottom:466.474350px;}
.y2b2{bottom:467.042700px;}
.yc3{bottom:467.815950px;}
.yf7{bottom:468.317700px;}
.ya5{bottom:468.936750px;}
.y89{bottom:469.040700px;}
.y270{bottom:469.243050px;}
.y29f{bottom:469.292700px;}
.y15c{bottom:469.297200px;}
.y143{bottom:469.927050px;}
.y332{bottom:471.349950px;}
.y28{bottom:474.282000px;}
.ydb{bottom:474.551700px;}
.y2c0{bottom:474.584700px;}
.y31c{bottom:474.876300px;}
.y1d7{bottom:475.428900px;}
.y1ef{bottom:476.399400px;}
.y306{bottom:478.693050px;}
.y2ee{bottom:479.204700px;}
.y1a0{bottom:480.326700px;}
.y186{bottom:480.569700px;}
.y229{bottom:482.549400px;}
.y4c{bottom:482.780700px;}
.y34d{bottom:483.346200px;}
.y12a{bottom:483.410850px;}
.y366{bottom:483.779700px;}
.y2dc{bottom:483.930750px;}
.y23d{bottom:484.930200px;}
.y257{bottom:485.203950px;}
.y20e{bottom:486.011700px;}
.y111{bottom:486.719850px;}
.y2b1{bottom:487.288200px;}
.yc2{bottom:488.061450px;}
.yf6{bottom:488.563200px;}
.y383{bottom:489.179700px;}
.ya4{bottom:489.182250px;}
.y88{bottom:489.286200px;}
.y26f{bottom:489.488550px;}
.y29e{bottom:489.538200px;}
.y15b{bottom:489.542700px;}
.y331{bottom:490.099950px;}
.y142{bottom:490.172550px;}
.y1b6{bottom:491.474700px;}
.y27{bottom:491.535000px;}
.y31b{bottom:493.626300px;}
.yda{bottom:494.797200px;}
.y2bf{bottom:494.830200px;}
.y1d6{bottom:495.674400px;}
.y1ee{bottom:496.644900px;}
.y305{bottom:498.938550px;}
.y2ed{bottom:499.450200px;}
.y4b{bottom:500.033700px;}
.y19f{bottom:500.572200px;}
.y228{bottom:501.299400px;}
.y129{bottom:502.160850px;}
.y289{bottom:502.812600px;}
.y34c{bottom:503.591700px;}
.y2db{bottom:504.176250px;}
.y23c{bottom:505.175700px;}
.y256{bottom:505.449450px;}
.y20d{bottom:506.257200px;}
.y110{bottom:506.965350px;}
.y382{bottom:507.929700px;}
.yc1{bottom:508.306950px;}
.y26{bottom:508.788000px;}
.yf5{bottom:508.808700px;}
.y330{bottom:508.849950px;}
.y87{bottom:509.531700px;}
.y26e{bottom:509.734050px;}
.y185{bottom:509.824200px;}
.y29d{bottom:509.828700px;}
.y141{bottom:510.418050px;}
.y1b5{bottom:511.720200px;}
.y31a{bottom:512.376300px;}
.y365{bottom:512.429700px;}
.y2be{bottom:515.075700px;}
.y68{bottom:516.049050px;}
.y2b0{bottom:516.542700px;}
.y1ed{bottom:516.890400px;}
.y4a{bottom:517.286700px;}
.y15a{bottom:518.797200px;}
.y2ec{bottom:519.695700px;}
.y227{bottom:520.049400px;}
.y19e{bottom:520.817700px;}
.ya3{bottom:523.049400px;}
.y34b{bottom:523.837200px;}
.ye{bottom:524.263950px;}
.y2da{bottom:524.421750px;}
.y23b{bottom:525.421200px;}
.yd9{bottom:525.949200px;}
.y25{bottom:526.041000px;}
.y20c{bottom:526.502700px;}
.y288{bottom:526.812600px;}
.y10f{bottom:527.210850px;}
.yc0{bottom:528.552450px;}
.y1d5{bottom:528.979050px;}
.y304{bottom:529.822650px;}
.y184{bottom:530.069700px;}
.y29c{bottom:530.074200px;}
.y319{bottom:531.126300px;}
.y364{bottom:531.179700px;}
.y32f{bottom:531.439950px;}
.y1b4{bottom:531.965700px;}
.y128{bottom:533.895750px;}
.y49{bottom:534.539700px;}
.y2bd{bottom:535.321200px;}
.y381{bottom:535.679700px;}
.y67{bottom:536.294550px;}
.y2af{bottom:536.788200px;}
.y1ec{bottom:537.135900px;}
.y255{bottom:537.389700px;}
.yf4{bottom:538.302450px;}
.y226{bottom:538.799400px;}
.y159{bottom:539.042700px;}
.y19d{bottom:541.063200px;}
.ya2{bottom:541.799400px;}
.yd{bottom:542.261700px;}
.y24{bottom:543.294000px;}
.y86{bottom:543.439200px;}
.y26d{bottom:543.889050px;}
.y34a{bottom:544.082700px;}
.y2d9{bottom:544.667250px;}
.y140{bottom:545.200050px;}
.y23a{bottom:545.666700px;}
.yd8{bottom:546.194700px;}
.y20b{bottom:546.748200px;}
.y1d4{bottom:547.729050px;}
.y303{bottom:548.572650px;}
.y287{bottom:548.907600px;}
.y318{bottom:549.876300px;}
.y363{bottom:549.929700px;}
.y32e{bottom:550.189950px;}
.y183{bottom:550.315200px;}
.y48{bottom:551.792700px;}
.y1b3{bottom:552.211200px;}
.y127{bottom:554.141250px;}
.y380{bottom:554.429700px;}
.y2bc{bottom:555.566700px;}
.y254{bottom:556.139700px;}
.y66{bottom:556.540050px;}
.yf3{bottom:557.052450px;}
.y2ae{bottom:557.101200px;}
.y1eb{bottom:557.381400px;}
.y10e{bottom:557.533800px;}
.y225{bottom:557.549400px;}
.y158{bottom:559.288200px;}
.y29b{bottom:559.328700px;}
.y23{bottom:560.547000px;}
.ya1{bottom:560.549400px;}
.ybf{bottom:561.796200px;}
.y85{bottom:563.684700px;}
.y26c{bottom:564.134550px;}
.y349{bottom:564.328200px;}
.y13f{bottom:565.445550px;}
.y239{bottom:565.912200px;}
.yd7{bottom:566.440200px;}
.y1d3{bottom:566.479050px;}
.y20a{bottom:566.993700px;}
.y317{bottom:568.626300px;}
.y362{bottom:568.679700px;}
.y32d{bottom:568.939950px;}
.y302{bottom:568.942650px;}
.y47{bottom:569.045700px;}
.yc{bottom:569.261700px;}
.y19c{bottom:570.400200px;}
.y182{bottom:570.560700px;}
.y286{bottom:571.002600px;}
.y1b2{bottom:572.456700px;}
.y37f{bottom:573.179700px;}
.y126{bottom:574.386750px;}
.y2d8{bottom:574.697250px;}
.y253{bottom:574.889700px;}
.yf2{bottom:575.802450px;}
.y10d{bottom:576.283800px;}
.y224{bottom:576.299400px;}
.y65{bottom:576.785550px;}
.y2ad{bottom:577.346700px;}
.y1ea{bottom:577.626900px;}
.ya0{bottom:579.299400px;}
.y157{bottom:579.547200px;}
.y29a{bottom:579.574200px;}
.ybe{bottom:580.546200px;}
.y84{bottom:583.930200px;}
.y26b{bottom:584.380050px;}
.y348{bottom:584.573700px;}
.y1d2{bottom:585.229050px;}
.y13e{bottom:585.691050px;}
.yb{bottom:585.761700px;}
.y238{bottom:586.157700px;}
.y46{bottom:586.298700px;}
.yd6{bottom:586.685700px;}
.y209{bottom:587.239200px;}
.y316{bottom:587.376300px;}
.y32c{bottom:587.689950px;}
.y301{bottom:587.692650px;}
.y19b{bottom:590.645700px;}
.y181{bottom:590.806200px;}
.y37e{bottom:591.929700px;}
.y1b1{bottom:592.702200px;}
.y285{bottom:593.091150px;}
.y2bb{bottom:593.813700px;}
.yf1{bottom:594.552450px;}
.y2d7{bottom:594.942750px;}
.y10c{bottom:595.033800px;}
.y223{bottom:595.049400px;}
.y64{bottom:597.031050px;}
.y361{bottom:597.329700px;}
.y2ac{bottom:597.592200px;}
.y1e9{bottom:597.872400px;}
.y9f{bottom:598.049400px;}
.ybd{bottom:599.296200px;}
.y156{bottom:599.792700px;}
.y299{bottom:599.819700px;}
.y284{bottom:601.717650px;}
.y1d1{bottom:603.979050px;}
.y83{bottom:604.175700px;}
.y252{bottom:605.354700px;}
.y13d{bottom:605.936550px;}
.y315{bottom:606.126300px;}
.y237{bottom:606.403200px;}
.y32b{bottom:606.439950px;}
.y300{bottom:606.442650px;}
.yd5{bottom:606.931200px;}
.y208{bottom:607.484700px;}
.y125{bottom:607.551750px;}
.y22{bottom:608.296500px;}
.y19a{bottom:610.891200px;}
.y1b0{bottom:612.947700px;}
.yf0{bottom:613.302450px;}
.y10b{bottom:613.783800px;}
.y222{bottom:613.799400px;}
.y2d6{bottom:615.188250px;}
.y347{bottom:615.907200px;}
.y360{bottom:616.079700px;}
.y9e{bottom:616.799400px;}
.y63{bottom:617.276550px;}
.y2ab{bottom:617.837700px;}
.ybc{bottom:618.046200px;}
.y26a{bottom:618.535050px;}
.y37d{bottom:619.679700px;}
.y155{bottom:620.038200px;}
.y180{bottom:620.060700px;}
.y298{bottom:620.065200px;}
.y1d0{bottom:622.729050px;}
.ya{bottom:623.252700px;}
.y82{bottom:624.421200px;}
.y314{bottom:624.876300px;}
.y2ff{bottom:625.192650px;}
.y13c{bottom:626.182050px;}
.y236{bottom:626.648700px;}
.yd4{bottom:627.176700px;}
.y207{bottom:627.730200px;}
.y124{bottom:627.797250px;}
.y1e8{bottom:629.641500px;}
.y45{bottom:629.795700px;}
.y199{bottom:631.136700px;}
.yef{bottom:632.052450px;}
.y10a{bottom:632.533800px;}
.y221{bottom:632.549400px;}
.y1af{bottom:633.193200px;}
.y35f{bottom:634.829700px;}
.y2d5{bottom:635.433750px;}
.y9d{bottom:635.549400px;}
.y346{bottom:636.152700px;}
.ybb{bottom:636.796200px;}
.y62{bottom:637.522050px;}
.y2aa{bottom:638.083200px;}
.y37c{bottom:638.429700px;}
.y269{bottom:638.780550px;}
.y21{bottom:638.793000px;}
.y154{bottom:640.283700px;}
.y17f{bottom:640.306200px;}
.y283{bottom:640.310700px;}
.y1cf{bottom:641.479050px;}
.y313{bottom:643.626300px;}
.y2fe{bottom:645.562650px;}
.y13b{bottom:646.427550px;}
.y235{bottom:646.894200px;}
.y9{bottom:647.255700px;}
.yd3{bottom:647.422200px;}
.y206{bottom:647.975700px;}
.y123{bottom:648.042750px;}
.y1e7{bottom:648.391500px;}
.y297{bottom:649.319700px;}
.y109{bottom:651.283800px;}
.y220{bottom:651.299400px;}
.y198{bottom:651.382200px;}
.y1ae{bottom:653.438700px;}
.y35e{bottom:653.579700px;}
.y9c{bottom:654.299400px;}
.yba{bottom:655.546200px;}
.y2d4{bottom:655.679250px;}
.y44{bottom:656.039700px;}
.y20{bottom:656.046000px;}
.y345{bottom:656.398200px;}
.y251{bottom:657.284700px;}
.y61{bottom:657.767550px;}
.y81{bottom:658.328700px;}
.y268{bottom:659.026050px;}
.yee{bottom:660.050700px;}
.y1ce{bottom:660.229050px;}
.y17e{bottom:660.551700px;}
.y282{bottom:660.556200px;}
.y2fd{bottom:664.312650px;}
.y37b{bottom:666.179700px;}
.y13a{bottom:666.673050px;}
.y234{bottom:667.139700px;}
.y1e6{bottom:667.141500px;}
.yd2{bottom:667.667700px;}
.y205{bottom:668.221200px;}
.y122{bottom:668.288250px;}
.y296{bottom:669.565200px;}
.y108{bottom:670.033800px;}
.y21f{bottom:670.049400px;}
.y312{bottom:670.489200px;}
.y197{bottom:671.627700px;}
.y9b{bottom:673.049400px;}
.y43{bottom:673.292700px;}
.y1f{bottom:673.299000px;}
.y1ad{bottom:673.684200px;}
.yb9{bottom:674.296200px;}
.y2d3{bottom:675.924750px;}
.y344{bottom:676.643700px;}
.y60{bottom:678.013050px;}
.y153{bottom:678.533700px;}
.y80{bottom:678.574200px;}
.y250{bottom:678.749700px;}
.y1cd{bottom:678.979050px;}
.yed{bottom:680.296200px;}
.y17d{bottom:680.797200px;}
.y281{bottom:680.801700px;}
.y35d{bottom:682.229700px;}
.y2fc{bottom:683.062650px;}
.y1e5{bottom:685.891500px;}
.y139{bottom:686.918550px;}
.y233{bottom:687.385200px;}
.y121{bottom:688.533750px;}
.y107{bottom:688.783800px;}
.y21e{bottom:688.799400px;}
.y8{bottom:689.255700px;}
.y295{bottom:689.810700px;}
.y42{bottom:690.545700px;}
.y1e{bottom:690.552000px;}
.y311{bottom:690.734700px;}
.y267{bottom:693.179700px;}
.y37a{bottom:693.929700px;}
.y1ac{bottom:693.952200px;}
.y2d2{bottom:696.170250px;}
.y343{bottom:696.889200px;}
.y1cc{bottom:697.729050px;}
.y5f{bottom:698.258550px;}
.y7f{bottom:698.819700px;}
.y204{bottom:698.877450px;}
.y196{bottom:700.964700px;}
.y35c{bottom:700.979700px;}
.y152{bottom:701.033700px;}
.y17c{bottom:701.042700px;}
.y280{bottom:701.047200px;}
.y2fb{bottom:703.432650px;}
.y1e4{bottom:704.641500px;}
.y9a{bottom:705.436200px;}
.yb8{bottom:706.063200px;}
.y138{bottom:707.164050px;}
.y106{bottom:707.533800px;}
.y232{bottom:707.630700px;}
.y41{bottom:707.798700px;}
.y1d{bottom:707.805000px;}
.y120{bottom:708.779250px;}
.y24f{bottom:709.214700px;}
.y16c{bottom:710.056200px;}
.y266{bottom:711.929700px;}
.y379{bottom:712.679700px;}
.y7{bottom:713.258700px;}
.y1ab{bottom:714.197700px;}
.y2d1{bottom:716.415750px;}
.y1cb{bottom:716.479050px;}
.y342{bottom:717.134700px;}
.y203{bottom:717.627450px;}
.y5e{bottom:718.504050px;}
.yec{bottom:718.789950px;}
.y7e{bottom:719.065200px;}
.y195{bottom:721.210200px;}
.y17b{bottom:721.288200px;}
.y2fa{bottom:722.182650px;}
.y40{bottom:725.051700px;}
.y1c{bottom:725.058000px;}
.y99{bottom:725.681700px;}
.yb7{bottom:726.308700px;}
.y137{bottom:727.409550px;}
.y231{bottom:727.876200px;}
.y24e{bottom:727.964700px;}
.y11f{bottom:729.024750px;}
.y35b{bottom:729.629700px;}
.y16b{bottom:730.301700px;}
.y265{bottom:730.679700px;}
.y378{bottom:731.429700px;}
.y1aa{bottom:734.443200px;}
.y1e3{bottom:734.915100px;}
.y1ca{bottom:735.229050px;}
.y105{bottom:736.361250px;}
.y202{bottom:736.377450px;}
.y2d0{bottom:736.661250px;}
.y5d{bottom:738.749550px;}
.y7d{bottom:739.310700px;}
.yeb{bottom:741.289950px;}
.y194{bottom:741.455700px;}
.y17a{bottom:741.533700px;}
.y3f{bottom:742.304700px;}
.y1b{bottom:742.311000px;}
.y98{bottom:745.927200px;}
.yb6{bottom:746.554200px;}
.y24d{bottom:746.714700px;}
.y136{bottom:747.655050px;}
.y230{bottom:748.121700px;}
.y35a{bottom:748.379700px;}
.y341{bottom:748.468200px;}
.y11e{bottom:749.270250px;}
.y264{bottom:749.429700px;}
.y377{bottom:750.179700px;}
.y16a{bottom:750.547200px;}
.y2f9{bottom:751.569750px;}
.y1c9{bottom:753.979050px;}
.y1a9{bottom:754.688700px;}
.y201{bottom:755.127450px;}
.y1e2{bottom:755.160600px;}
.y6{bottom:755.258700px;}
.y104{bottom:756.606750px;}
.y2cf{bottom:756.906750px;}
.y5c{bottom:758.995050px;}
.y7c{bottom:759.556200px;}
.y3e{bottom:759.557700px;}
.y1a{bottom:759.564000px;}
.y193{bottom:761.701200px;}
.yb5{bottom:766.799700px;}
.y135{bottom:767.900550px;}
.y24c{bottom:768.179700px;}
.y22f{bottom:768.367200px;}
.y340{bottom:768.713700px;}
.y11d{bottom:769.515750px;}
.y179{bottom:770.788200px;}
.y169{bottom:770.792700px;}
.y2f8{bottom:771.815250px;}
.y1c8{bottom:772.729050px;}
.y200{bottom:773.877450px;}
.y1a8{bottom:774.934200px;}
.y3d{bottom:776.810700px;}
.y19{bottom:776.817000px;}
.y359{bottom:777.029700px;}
.y376{bottom:777.929700px;}
.y5b{bottom:779.240550px;}
.y5{bottom:779.261700px;}
.y7b{bottom:779.801700px;}
.y192{bottom:781.946700px;}
.y103{bottom:786.929700px;}
.yb4{bottom:787.045200px;}
.y134{bottom:788.146050px;}
.y22e{bottom:788.612700px;}
.y33f{bottom:788.959200px;}
.y11c{bottom:789.761250px;}
.y178{bottom:791.033700px;}
.y168{bottom:791.038200px;}
.y1c7{bottom:791.479050px;}
.y2f7{bottom:792.060750px;}
.y1ff{bottom:792.627450px;}
.y3c{bottom:794.063700px;}
.y18{bottom:794.070000px;}
.y1a7{bottom:795.179700px;}
.y358{bottom:795.779700px;}
.y375{bottom:796.679700px;}
.y5a{bottom:799.486050px;}
.y7a{bottom:800.047200px;}
.y191{bottom:802.192200px;}
.y102{bottom:805.679700px;}
.y133{bottom:808.391550px;}
.y22d{bottom:808.858200px;}
.y33e{bottom:809.204700px;}
.y11b{bottom:810.006750px;}
.y1c6{bottom:810.229050px;}
.y177{bottom:811.279200px;}
.y27f{bottom:811.283700px;}
.y3b{bottom:811.316700px;}
.y17{bottom:811.323000px;}
.y1fe{bottom:811.377450px;}
.y2f6{bottom:812.306250px;}
.y59{bottom:819.731550px;}
.y79{bottom:820.292700px;}
.y4{bottom:821.252700px;}
.y190{bottom:822.437700px;}
.y101{bottom:824.429700px;}
.y3a{bottom:828.569700px;}
.y16{bottom:828.576000px;}
.y1c5{bottom:828.979050px;}
.y78{bottom:840.538200px;}
.y100{bottom:843.179700px;}
.y39{bottom:845.822700px;}
.y15{bottom:845.829000px;}
.y3{bottom:852.761700px;}
.y58{bottom:859.064700px;}
.y77{bottom:860.783700px;}
.yff{bottom:861.929700px;}
.y38{bottom:863.075700px;}
.y14{bottom:863.082000px;}
.y12{bottom:930.737850px;}
.y13{bottom:936.738000px;}
.h9{height:26.525391px;}
.h8{height:31.263000px;}
.h12{height:31.263600px;}
.h6{height:48.093000px;}
.h2{height:50.922000px;}
.hb{height:50.976000px;}
.h7{height:53.751000px;}
.he{height:56.580000px;}
.h5{height:59.409000px;}
.hd{height:62.238000px;}
.hf{height:62.304000px;}
.hc{height:70.800000px;}
.h4{height:79.296000px;}
.h10{height:85.482000px;}
.ha{height:101.844000px;}
.h3{height:101.952000px;}
.h11{height:119.988000px;}
.h0{height:1066.464000px;}
.h1{height:1066.500000px;}
.w1{width:768.750000px;}
.w0{width:768.826500px;}
.x0{left:0.000000px;}
.x4{left:59.255850px;}
.x7{left:129.295350px;}
.x9{left:146.294400px;}
.x3{left:150.555000px;}
.x10{left:160.015800px;}
.x8{left:165.380100px;}
.xb{left:167.565000px;}
.xd{left:171.812850px;}
.xc{left:188.822850px;}
.xf{left:193.072650px;}
.xe{left:210.082650px;}
.x11{left:275.778300px;}
.x5{left:284.818200px;}
.x1{left:306.079200px;}
.x6{left:332.769300px;}
.x2{left:354.030150px;}
.x12{left:542.484300px;}
.xa{left:603.446550px;}
@media print{
.v4{vertical-align:-19.360000pt;}
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.959467pt;}
.v3{vertical-align:19.312000pt;}
.v5{vertical-align:30.672000pt;}
.v6{vertical-align:61.344000pt;}
.ls43{letter-spacing:-1.066667pt;}
.ls27{letter-spacing:-0.880000pt;}
.ls35{letter-spacing:-0.821333pt;}
.ls44{letter-spacing:-0.800000pt;}
.ls3c{letter-spacing:-0.704000pt;}
.ls34{letter-spacing:-0.645333pt;}
.ls21{letter-spacing:-0.586667pt;}
.ls33{letter-spacing:-0.528000pt;}
.ls3a{letter-spacing:-0.469333pt;}
.ls42{letter-spacing:-0.426667pt;}
.ls3d{letter-spacing:-0.410667pt;}
.ls22{letter-spacing:-0.352000pt;}
.ls19{letter-spacing:-0.293333pt;}
.ls28{letter-spacing:-0.266667pt;}
.ls18{letter-spacing:-0.234667pt;}
.ls2d{letter-spacing:-0.213333pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.176000pt;}
.ls2c{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.144000pt;}
.ls17{letter-spacing:-0.117333pt;}
.ls1d{letter-spacing:-0.106667pt;}
.ls41{letter-spacing:-0.070400pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls24{letter-spacing:-0.053333pt;}
.ls6{letter-spacing:-0.048000pt;}
.ls40{letter-spacing:-0.045333pt;}
.ls3f{letter-spacing:-0.027200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.096000pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.117333pt;}
.ls2a{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls30{letter-spacing:0.201067pt;}
.ls25{letter-spacing:0.213333pt;}
.ls2e{letter-spacing:0.216533pt;}
.lsd{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.240000pt;}
.ls20{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.293333pt;}
.ls31{letter-spacing:0.317333pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.352000pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.410667pt;}
.ls29{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.432000pt;}
.ls38{letter-spacing:0.440533pt;}
.lse{letter-spacing:0.469333pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.528000pt;}
.ls3b{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.586667pt;}
.ls1f{letter-spacing:0.640000pt;}
.ls3e{letter-spacing:0.645333pt;}
.ls26{letter-spacing:0.693333pt;}
.ls37{letter-spacing:0.704000pt;}
.ls36{letter-spacing:0.821333pt;}
.ls23{letter-spacing:0.906667pt;}
.ls39{letter-spacing:1.013333pt;}
.ls2f{letter-spacing:1.056000pt;}
.ls45{letter-spacing:5.813333pt;}
.ls32{letter-spacing:11.424000pt;}
.ls1{letter-spacing:84.040533pt;}
.wsb6{word-spacing:-14.901333pt;}
.ws120{word-spacing:-14.842667pt;}
.ws11c{word-spacing:-14.549333pt;}
.wscb{word-spacing:-14.490667pt;}
.ws87{word-spacing:-14.373333pt;}
.ws1{word-spacing:-13.888000pt;}
.ws146{word-spacing:-13.653333pt;}
.ws13f{word-spacing:-13.546667pt;}
.wsdb{word-spacing:-13.333333pt;}
.ws8{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.242667pt;}
.ws2{word-spacing:-10.416000pt;}
.ws0{word-spacing:-8.928000pt;}
.ws121{word-spacing:-8.905600pt;}
.wsca{word-spacing:-8.729600pt;}
.ws125{word-spacing:-8.659200pt;}
.ws4{word-spacing:-6.745600pt;}
.ws122{word-spacing:-6.718400pt;}
.ws11d{word-spacing:-2.346667pt;}
.ws3f{word-spacing:-2.229333pt;}
.ws35{word-spacing:-2.170667pt;}
.ws132{word-spacing:-2.112000pt;}
.wsdf{word-spacing:-2.053333pt;}
.ws8d{word-spacing:-2.026667pt;}
.ws6d{word-spacing:-1.994667pt;}
.ws62{word-spacing:-1.973333pt;}
.ws41{word-spacing:-1.936000pt;}
.ws60{word-spacing:-1.920000pt;}
.ws9a{word-spacing:-1.877333pt;}
.ws63{word-spacing:-1.866667pt;}
.ws25{word-spacing:-1.824000pt;}
.wsfa{word-spacing:-1.818667pt;}
.wsb{word-spacing:-1.776000pt;}
.ws7f{word-spacing:-1.760000pt;}
.ws124{word-spacing:-1.722667pt;}
.ws96{word-spacing:-1.706667pt;}
.ws4a{word-spacing:-1.701333pt;}
.ws17{word-spacing:-1.680000pt;}
.ws91{word-spacing:-1.653333pt;}
.wsde{word-spacing:-1.642667pt;}
.ws70{word-spacing:-1.600000pt;}
.ws9e{word-spacing:-1.584000pt;}
.wsd7{word-spacing:-1.546667pt;}
.ws69{word-spacing:-1.525333pt;}
.wsd6{word-spacing:-1.493333pt;}
.wsb4{word-spacing:-1.466667pt;}
.ws84{word-spacing:-1.440000pt;}
.ws111{word-spacing:-1.408000pt;}
.ws8e{word-spacing:-1.386667pt;}
.wsfe{word-spacing:-1.349333pt;}
.wsa9{word-spacing:-1.333333pt;}
.wsb1{word-spacing:-1.290667pt;}
.ws1f{word-spacing:-1.248000pt;}
.ws9c{word-spacing:-1.232000pt;}
.ws6e{word-spacing:-1.226667pt;}
.ws12{word-spacing:-1.200000pt;}
.ws3c{word-spacing:-1.173333pt;}
.wsa8{word-spacing:-1.120000pt;}
.ws54{word-spacing:-1.114667pt;}
.ws22{word-spacing:-1.104000pt;}
.ws89{word-spacing:-1.066667pt;}
.wsd0{word-spacing:-1.056000pt;}
.ws10e{word-spacing:-1.013333pt;}
.ws1a{word-spacing:-1.008000pt;}
.ws106{word-spacing:-0.997333pt;}
.ws8c{word-spacing:-0.960000pt;}
.ws7{word-spacing:-0.952000pt;}
.ws119{word-spacing:-0.938667pt;}
.wsaa{word-spacing:-0.906667pt;}
.ws6a{word-spacing:-0.880000pt;}
.ws143{word-spacing:-0.853333pt;}
.ws56{word-spacing:-0.821333pt;}
.ws16{word-spacing:-0.816000pt;}
.ws71{word-spacing:-0.800000pt;}
.ws29{word-spacing:-0.768000pt;}
.ws6c{word-spacing:-0.762667pt;}
.wsda{word-spacing:-0.746667pt;}
.wsd2{word-spacing:-0.725333pt;}
.ws1d{word-spacing:-0.720000pt;}
.ws3b{word-spacing:-0.704000pt;}
.ws10f{word-spacing:-0.693333pt;}
.wsd5{word-spacing:-0.645333pt;}
.ws131{word-spacing:-0.640000pt;}
.ws14{word-spacing:-0.624000pt;}
.wsd4{word-spacing:-0.586667pt;}
.ws12b{word-spacing:-0.544000pt;}
.wsa5{word-spacing:-0.528000pt;}
.ws12a{word-spacing:-0.498667pt;}
.ws15{word-spacing:-0.480000pt;}
.ws36{word-spacing:-0.469333pt;}
.wse4{word-spacing:-0.426667pt;}
.wsb8{word-spacing:-0.410667pt;}
.ws92{word-spacing:-0.373333pt;}
.ws6b{word-spacing:-0.352000pt;}
.ws97{word-spacing:-0.320000pt;}
.wsc4{word-spacing:-0.293333pt;}
.ws1b{word-spacing:-0.288000pt;}
.wsd8{word-spacing:-0.266667pt;}
.ws1c{word-spacing:-0.240000pt;}
.wsa4{word-spacing:-0.234667pt;}
.wsf7{word-spacing:-0.213333pt;}
.ws1e{word-spacing:-0.192000pt;}
.ws58{word-spacing:-0.176000pt;}
.ws145{word-spacing:-0.160000pt;}
.wsb9{word-spacing:-0.117333pt;}
.ws138{word-spacing:-0.106667pt;}
.wse{word-spacing:-0.096000pt;}
.ws7e{word-spacing:-0.058667pt;}
.ws5{word-spacing:0.000000pt;}
.ws86{word-spacing:0.053333pt;}
.ws45{word-spacing:0.058667pt;}
.ws5d{word-spacing:0.106667pt;}
.wsaf{word-spacing:0.117333pt;}
.wsab{word-spacing:0.160000pt;}
.ws33{word-spacing:0.176000pt;}
.ws95{word-spacing:0.213333pt;}
.wsbe{word-spacing:0.234667pt;}
.ws28{word-spacing:0.240000pt;}
.ws2c{word-spacing:0.288000pt;}
.ws48{word-spacing:0.293333pt;}
.wsb3{word-spacing:0.352000pt;}
.ws85{word-spacing:0.373333pt;}
.ws18{word-spacing:0.384000pt;}
.wsc6{word-spacing:0.410667pt;}
.ws99{word-spacing:0.426667pt;}
.ws115{word-spacing:0.469333pt;}
.wsa2{word-spacing:0.480000pt;}
.wsf9{word-spacing:0.528000pt;}
.wsf4{word-spacing:0.533333pt;}
.ws2e{word-spacing:0.576000pt;}
.ws8f{word-spacing:0.586667pt;}
.ws8b{word-spacing:0.640000pt;}
.wsc0{word-spacing:0.645333pt;}
.ws129{word-spacing:0.680000pt;}
.wsf5{word-spacing:0.693333pt;}
.wsce{word-spacing:0.704000pt;}
.wsf3{word-spacing:0.746667pt;}
.ws40{word-spacing:0.762667pt;}
.ws13{word-spacing:0.768000pt;}
.wsc9{word-spacing:0.770667pt;}
.ws12e{word-spacing:0.800000pt;}
.wsc8{word-spacing:0.816000pt;}
.wsf8{word-spacing:0.880000pt;}
.ws76{word-spacing:0.906667pt;}
.ws27{word-spacing:0.912000pt;}
.wsbf{word-spacing:0.938667pt;}
.ws2f{word-spacing:0.960000pt;}
.wsff{word-spacing:0.997333pt;}
.ws2b{word-spacing:1.008000pt;}
.ws7b{word-spacing:1.013333pt;}
.ws66{word-spacing:1.056000pt;}
.ws140{word-spacing:1.066667pt;}
.ws64{word-spacing:1.114667pt;}
.wsf0{word-spacing:1.120000pt;}
.wsae{word-spacing:1.173333pt;}
.ws13a{word-spacing:1.226667pt;}
.ws67{word-spacing:1.232000pt;}
.ws9{word-spacing:1.248000pt;}
.wse7{word-spacing:1.280000pt;}
.ws88{word-spacing:1.290667pt;}
.ws9d{word-spacing:1.349333pt;}
.wse3{word-spacing:1.386667pt;}
.ws19{word-spacing:1.392000pt;}
.ws5b{word-spacing:1.408000pt;}
.ws72{word-spacing:1.440000pt;}
.ws4b{word-spacing:1.466667pt;}
.ws141{word-spacing:1.493333pt;}
.ws49{word-spacing:1.525333pt;}
.wsad{word-spacing:1.546667pt;}
.wsbd{word-spacing:1.584000pt;}
.ws8a{word-spacing:1.600000pt;}
.wsb0{word-spacing:1.642667pt;}
.ws130{word-spacing:1.653333pt;}
.ws26{word-spacing:1.680000pt;}
.ws4f{word-spacing:1.701333pt;}
.ws102{word-spacing:1.706667pt;}
.wsd{word-spacing:1.728000pt;}
.ws4e{word-spacing:1.760000pt;}
.ws104{word-spacing:1.818667pt;}
.ws30{word-spacing:1.824000pt;}
.wse5{word-spacing:1.866667pt;}
.ws51{word-spacing:1.877333pt;}
.ws52{word-spacing:1.936000pt;}
.ws9f{word-spacing:1.973333pt;}
.ws11e{word-spacing:1.994667pt;}
.ws10d{word-spacing:2.026667pt;}
.wsee{word-spacing:2.080000pt;}
.wsd1{word-spacing:2.112000pt;}
.wsfd{word-spacing:2.170667pt;}
.wsd9{word-spacing:2.186667pt;}
.ws13b{word-spacing:2.229333pt;}
.ws109{word-spacing:2.288000pt;}
.wsed{word-spacing:2.346667pt;}
.ws10c{word-spacing:2.400000pt;}
.wsf2{word-spacing:2.405333pt;}
.ws11b{word-spacing:2.448000pt;}
.ws103{word-spacing:2.464000pt;}
.wsc{word-spacing:2.496000pt;}
.ws61{word-spacing:2.506667pt;}
.ws55{word-spacing:2.522667pt;}
.wsef{word-spacing:2.560000pt;}
.ws3e{word-spacing:2.581333pt;}
.ws10b{word-spacing:2.640000pt;}
.ws79{word-spacing:2.666667pt;}
.wsbc{word-spacing:2.698667pt;}
.wse0{word-spacing:2.720000pt;}
.ws23{word-spacing:2.736000pt;}
.ws83{word-spacing:2.757333pt;}
.wsa0{word-spacing:2.773333pt;}
.ws110{word-spacing:2.816000pt;}
.wsa7{word-spacing:2.826667pt;}
.ws105{word-spacing:2.874667pt;}
.ws57{word-spacing:2.933333pt;}
.ws11{word-spacing:2.976000pt;}
.wscd{word-spacing:2.992000pt;}
.ws78{word-spacing:3.040000pt;}
.ws75{word-spacing:3.050667pt;}
.wsac{word-spacing:3.093333pt;}
.wscf{word-spacing:3.109333pt;}
.wsf{word-spacing:3.120000pt;}
.ws44{word-spacing:3.168000pt;}
.ws133{word-spacing:3.200000pt;}
.wsa{word-spacing:3.216000pt;}
.wsc7{word-spacing:3.226667pt;}
.wsa1{word-spacing:3.253333pt;}
.ws43{word-spacing:3.285333pt;}
.ws5c{word-spacing:3.306667pt;}
.ws46{word-spacing:3.344000pt;}
.wse8{word-spacing:3.360000pt;}
.ws31{word-spacing:3.402667pt;}
.wse2{word-spacing:3.413333pt;}
.ws2d{word-spacing:3.456000pt;}
.ws68{word-spacing:3.461333pt;}
.wseb{word-spacing:3.520000pt;}
.ws82{word-spacing:3.578667pt;}
.ws7a{word-spacing:3.626667pt;}
.ws34{word-spacing:3.637333pt;}
.ws77{word-spacing:3.680000pt;}
.ws39{word-spacing:3.696000pt;}
.ws6f{word-spacing:3.733333pt;}
.wsc5{word-spacing:3.754667pt;}
.ws4c{word-spacing:3.813333pt;}
.ws24{word-spacing:3.840000pt;}
.wsf6{word-spacing:3.893333pt;}
.wsba{word-spacing:3.930667pt;}
.ws144{word-spacing:3.946667pt;}
.ws100{word-spacing:4.000000pt;}
.ws4d{word-spacing:4.048000pt;}
.wsfc{word-spacing:4.106667pt;}
.ws90{word-spacing:4.160000pt;}
.ws38{word-spacing:4.165333pt;}
.ws2a{word-spacing:4.176000pt;}
.wsa6{word-spacing:4.213333pt;}
.wsc2{word-spacing:4.216000pt;}
.ws32{word-spacing:4.224000pt;}
.ws20{word-spacing:4.272000pt;}
.ws81{word-spacing:4.282667pt;}
.ws148{word-spacing:4.320000pt;}
.wsa3{word-spacing:4.341333pt;}
.wse1{word-spacing:4.373333pt;}
.wsfb{word-spacing:4.400000pt;}
.ws142{word-spacing:4.426667pt;}
.ws12d{word-spacing:4.458667pt;}
.ws13e{word-spacing:4.480000pt;}
.wsbb{word-spacing:4.517333pt;}
.ws5a{word-spacing:4.576000pt;}
.ws9b{word-spacing:4.634667pt;}
.ws5e{word-spacing:4.640000pt;}
.ws74{word-spacing:4.693333pt;}
.ws59{word-spacing:4.752000pt;}
.ws137{word-spacing:4.800000pt;}
.ws50{word-spacing:4.810667pt;}
.ws80{word-spacing:4.869333pt;}
.ws134{word-spacing:4.906667pt;}
.ws107{word-spacing:4.928000pt;}
.ws10a{word-spacing:4.986667pt;}
.wsd3{word-spacing:5.045333pt;}
.wse6{word-spacing:5.066667pt;}
.ws47{word-spacing:5.104000pt;}
.ws11f{word-spacing:5.162667pt;}
.ws21{word-spacing:5.184000pt;}
.wsf1{word-spacing:5.221333pt;}
.ws98{word-spacing:5.280000pt;}
.ws65{word-spacing:5.338667pt;}
.ws94{word-spacing:5.386667pt;}
.ws42{word-spacing:5.397333pt;}
.wsb7{word-spacing:5.514667pt;}
.ws37{word-spacing:5.573333pt;}
.ws112{word-spacing:5.600000pt;}
.ws10{word-spacing:5.616000pt;}
.ws108{word-spacing:5.632000pt;}
.ws113{word-spacing:5.813333pt;}
.ws53{word-spacing:5.866667pt;}
.ws5f{word-spacing:5.920000pt;}
.wsc3{word-spacing:5.925333pt;}
.wse9{word-spacing:6.026667pt;}
.ws13d{word-spacing:6.101333pt;}
.wscc{word-spacing:6.218667pt;}
.ws3d{word-spacing:6.277333pt;}
.ws136{word-spacing:6.346667pt;}
.ws128{word-spacing:6.394667pt;}
.ws135{word-spacing:6.400000pt;}
.ws101{word-spacing:6.506667pt;}
.wsb5{word-spacing:6.512000pt;}
.ws12f{word-spacing:6.570667pt;}
.ws7d{word-spacing:6.922667pt;}
.ws12c{word-spacing:6.981333pt;}
.ws3a{word-spacing:7.157333pt;}
.wsb2{word-spacing:7.216000pt;}
.ws127{word-spacing:7.392000pt;}
.wsec{word-spacing:7.450667pt;}
.ws73{word-spacing:7.733333pt;}
.ws123{word-spacing:7.861333pt;}
.ws139{word-spacing:8.213333pt;}
.ws93{word-spacing:8.373333pt;}
.ws114{word-spacing:8.448000pt;}
.wsdd{word-spacing:9.210667pt;}
.ws13c{word-spacing:10.501333pt;}
.wsdc{word-spacing:10.677333pt;}
.ws7c{word-spacing:11.306667pt;}
.ws6{word-spacing:12.096000pt;}
.wsea{word-spacing:12.480000pt;}
.ws126{word-spacing:12.965333pt;}
.wsc1{word-spacing:13.024000pt;}
.ws11a{word-spacing:13.440000pt;}
.ws147{word-spacing:40.053333pt;}
.ws149{word-spacing:40.106667pt;}
.ws116{word-spacing:46.752000pt;}
.ws117{word-spacing:49.152000pt;}
.ws118{word-spacing:172.213333pt;}
._c{margin-left:-13.440000pt;}
._2{margin-left:-1.586133pt;}
._3{width:0.938667pt;}
._6{width:2.229333pt;}
._4{width:7.208000pt;}
._f{width:8.976000pt;}
._5{width:10.608000pt;}
._0{width:12.376000pt;}
._7{width:108.528000pt;}
._8{width:149.136000pt;}
._d{width:185.546667pt;}
._a{width:198.773333pt;}
._9{width:223.946667pt;}
._b{width:234.773333pt;}
._e{width:235.680000pt;}
._1{width:1709.308800pt;}
.fs7{font-size:27.200000pt;}
.fs9{font-size:32.000000pt;}
.fse{font-size:35.200000pt;}
.fs1{font-size:36.000000pt;}
.fs5{font-size:42.000000pt;}
.fsa{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fsd{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fsc{font-size:58.666667pt;}
.fsb{font-size:66.666667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:11.338667pt;}
.y2{bottom:83.802000pt;}
.y1{bottom:98.202000pt;}
.y32a{bottom:152.597733pt;}
.y37{bottom:152.664000pt;}
.y374{bottom:152.693067pt;}
.y24b{bottom:152.698267pt;}
.y2eb{bottom:152.718267pt;}
.yea{bottom:152.724400pt;}
.y10{bottom:152.725867pt;}
.y176{bottom:152.727200pt;}
.y2ce{bottom:152.728533pt;}
.y1fd{bottom:152.732400pt;}
.yd1{bottom:152.736400pt;}
.y33d{bottom:152.740400pt;}
.y263{bottom:152.757733pt;}
.y76{bottom:152.768400pt;}
.yb3{bottom:152.774000pt;}
.y27e{bottom:152.796933pt;}
.y21d{bottom:152.815733pt;}
.y97{bottom:152.837067pt;}
.y151{bottom:152.847600pt;}
.y1c4{bottom:156.464533pt;}
.y175{bottom:167.392533pt;}
.y2cd{bottom:167.393867pt;}
.y36{bottom:168.000000pt;}
.y373{bottom:169.359733pt;}
.y24a{bottom:169.364933pt;}
.y2ea{bottom:169.384933pt;}
.ye9{bottom:169.391067pt;}
.y329{bottom:170.593733pt;}
.y1fc{bottom:170.728400pt;}
.yd0{bottom:170.732400pt;}
.y33c{bottom:170.736400pt;}
.y262{bottom:170.753733pt;}
.y75{bottom:170.764400pt;}
.yb2{bottom:170.770000pt;}
.y27d{bottom:170.792933pt;}
.y21c{bottom:170.811733pt;}
.y96{bottom:170.833067pt;}
.y150{bottom:170.843600pt;}
.yf{bottom:171.131200pt;}
.y2cc{bottom:182.059200pt;}
.y174{bottom:185.797867pt;}
.y2e9{bottom:186.051600pt;}
.ye8{bottom:186.057733pt;}
.y2ba{bottom:186.059333pt;}
.y2a9{bottom:186.059467pt;}
.y249{bottom:188.191600pt;}
.y1fb{bottom:188.724400pt;}
.ycf{bottom:188.728400pt;}
.y33b{bottom:188.732400pt;}
.y261{bottom:188.749733pt;}
.y74{bottom:188.760400pt;}
.yb1{bottom:188.766000pt;}
.y27c{bottom:188.788933pt;}
.y21b{bottom:188.807733pt;}
.y95{bottom:188.829067pt;}
.y14f{bottom:188.839600pt;}
.y372{bottom:194.826400pt;}
.y328{bottom:195.776400pt;}
.y1c3{bottom:197.493067pt;}
.y2cb{bottom:200.464533pt;}
.y2e8{bottom:202.718267pt;}
.ye7{bottom:202.724400pt;}
.y357{bottom:203.905067pt;}
.y2b9{bottom:204.464667pt;}
.y2a8{bottom:204.464800pt;}
.y248{bottom:204.858267pt;}
.yce{bottom:206.724400pt;}
.y33a{bottom:206.728400pt;}
.y260{bottom:206.745733pt;}
.y73{bottom:206.756400pt;}
.yb0{bottom:206.762000pt;}
.y27b{bottom:206.784933pt;}
.y94{bottom:206.825067pt;}
.y14e{bottom:206.835600pt;}
.y35{bottom:210.444000pt;}
.y167{bottom:211.189067pt;}
.y371{bottom:211.493067pt;}
.y294{bottom:212.962667pt;}
.y327{bottom:213.772400pt;}
.y1c2{bottom:214.159733pt;}
.y18f{bottom:215.149067pt;}
.y21a{bottom:216.058400pt;}
.y1fa{bottom:216.963600pt;}
.ye6{bottom:219.391067pt;}
.y2b8{bottom:219.392933pt;}
.y2e7{bottom:220.078267pt;}
.y247{bottom:223.684933pt;}
.y339{bottom:224.724400pt;}
.y25f{bottom:224.741733pt;}
.y72{bottom:224.752400pt;}
.yaf{bottom:224.758000pt;}
.y27a{bottom:224.780933pt;}
.y93{bottom:224.821067pt;}
.y173{bottom:224.838667pt;}
.y166{bottom:229.185067pt;}
.y1c1{bottom:230.826400pt;}
.y293{bottom:230.958667pt;}
.y1e1{bottom:231.042133pt;}
.y326{bottom:231.768400pt;}
.y18e{bottom:233.145067pt;}
.y1f9{bottom:233.630267pt;}
.y219{bottom:234.054400pt;}
.ye5{bottom:236.057733pt;}
.ycd{bottom:236.274400pt;}
.y2e6{bottom:236.744933pt;}
.y370{bottom:236.959733pt;}
.y34{bottom:237.552000pt;}
.y14d{bottom:237.752933pt;}
.y2b7{bottom:237.798133pt;}
.y246{bottom:240.351600pt;}
.y2ca{bottom:240.474400pt;}
.y71{bottom:242.748400pt;}
.y279{bottom:242.776933pt;}
.y92{bottom:242.817067pt;}
.y172{bottom:242.834667pt;}
.y310{bottom:245.544933pt;}
.y165{bottom:247.181067pt;}
.y1c0{bottom:247.493067pt;}
.y325{bottom:249.764400pt;}
.y1f8{bottom:250.296933pt;}
.y18d{bottom:251.141067pt;}
.y218{bottom:252.050400pt;}
.y57{bottom:252.450400pt;}
.ye4{bottom:252.724400pt;}
.y33{bottom:252.888000pt;}
.ycc{bottom:252.941067pt;}
.y2e5{bottom:253.411600pt;}
.y36f{bottom:253.626400pt;}
.yae{bottom:254.868667pt;}
.y14c{bottom:255.748933pt;}
.y292{bottom:256.962667pt;}
.y245{bottom:257.018267pt;}
.y2c9{bottom:257.141067pt;}
.y2a7{bottom:257.165067pt;}
.y356{bottom:257.821067pt;}
.y1e0{bottom:260.639467pt;}
.y70{bottom:260.744400pt;}
.y278{bottom:260.772933pt;}
.y171{bottom:260.830667pt;}
.y25e{bottom:261.159067pt;}
.y11a{bottom:261.714533pt;}
.y338{bottom:262.141067pt;}
.y30f{bottom:263.540933pt;}
.y1bf{bottom:264.159733pt;}
.y164{bottom:265.177067pt;}
.y1f7{bottom:266.963600pt;}
.y324{bottom:267.760400pt;}
.y32{bottom:268.224000pt;}
.ye3{bottom:269.391067pt;}
.ycb{bottom:269.607733pt;}
.y217{bottom:270.046400pt;}
.y2e4{bottom:270.078267pt;}
.yad{bottom:272.864667pt;}
.y91{bottom:272.957067pt;}
.y244{bottom:273.684933pt;}
.y14b{bottom:273.744933pt;}
.y2c8{bottom:273.807733pt;}
.y291{bottom:274.958667pt;}
.y2a6{bottom:275.161067pt;}
.y56{bottom:275.778400pt;}
.y355{bottom:275.817067pt;}
.y1df{bottom:278.635467pt;}
.y6f{bottom:278.740400pt;}
.y277{bottom:278.768933pt;}
.y170{bottom:278.826667pt;}
.y36e{bottom:279.093067pt;}
.y119{bottom:279.710533pt;}
.y1be{bottom:280.826400pt;}
.y132{bottom:280.886133pt;}
.y30e{bottom:281.536933pt;}
.y163{bottom:283.173067pt;}
.y31{bottom:283.560000pt;}
.y1f6{bottom:283.630267pt;}
.y2f5{bottom:284.734400pt;}
.y18c{bottom:285.141067pt;}
.y323{bottom:285.756400pt;}
.yfe{bottom:286.057733pt;}
.yca{bottom:286.274400pt;}
.y216{bottom:288.042400pt;}
.y243{bottom:290.351600pt;}
.y2c7{bottom:290.474400pt;}
.yac{bottom:290.860667pt;}
.y90{bottom:290.953067pt;}
.y55{bottom:291.114400pt;}
.y14a{bottom:291.740933pt;}
.y290{bottom:292.954667pt;}
.y354{bottom:293.813067pt;}
.y2e3{bottom:295.491333pt;}
.y36d{bottom:295.759733pt;}
.ye2{bottom:295.851733pt;}
.y1de{bottom:296.631467pt;}
.y6e{bottom:296.736400pt;}
.y16f{bottom:296.822667pt;}
.y1bd{bottom:297.493067pt;}
.y118{bottom:297.706533pt;}
.y131{bottom:298.882133pt;}
.y30{bottom:298.896000pt;}
.y30d{bottom:299.532933pt;}
.y1f5{bottom:300.296933pt;}
.y2a5{bottom:301.165067pt;}
.y162{bottom:301.169067pt;}
.yfd{bottom:302.724400pt;}
.y2f4{bottom:302.730400pt;}
.yc9{bottom:302.941067pt;}
.y322{bottom:303.752400pt;}
.y215{bottom:306.038400pt;}
.y54{bottom:306.450400pt;}
.y2c6{bottom:307.141067pt;}
.yab{bottom:308.856667pt;}
.y8f{bottom:308.949067pt;}
.y276{bottom:309.128933pt;}
.y149{bottom:309.736933pt;}
.y1a6{bottom:310.899733pt;}
.y28f{bottom:310.962667pt;}
.y353{bottom:311.809067pt;}
.y36c{bottom:312.426400pt;}
.y25d{bottom:312.903067pt;}
.y2e2{bottom:313.487333pt;}
.ye1{bottom:313.847733pt;}
.y1bc{bottom:314.159733pt;}
.y2f{bottom:314.232000pt;}
.y1dd{bottom:314.627467pt;}
.y6d{bottom:314.732400pt;}
.y16e{bottom:314.818667pt;}
.y117{bottom:315.702533pt;}
.y130{bottom:316.878133pt;}
.y1f4{bottom:316.963600pt;}
.y242{bottom:317.178267pt;}
.y30c{bottom:317.528933pt;}
.y337{bottom:317.573733pt;}
.y2a4{bottom:319.161067pt;}
.yfc{bottom:319.391067pt;}
.yc8{bottom:319.607733pt;}
.y53{bottom:321.786400pt;}
.y214{bottom:324.034400pt;}
.yaa{bottom:326.852667pt;}
.y8e{bottom:326.945067pt;}
.y275{bottom:327.124933pt;}
.y161{bottom:327.173067pt;}
.y148{bottom:327.732933pt;}
.y1a5{bottom:328.895733pt;}
.y321{bottom:328.935067pt;}
.y28e{bottom:328.958667pt;}
.y2e{bottom:329.568000pt;}
.y352{bottom:329.805067pt;}
.y25c{bottom:330.899067pt;}
.y2e1{bottom:331.483333pt;}
.ye0{bottom:331.843733pt;}
.y2c5{bottom:331.873067pt;}
.y1dc{bottom:332.623467pt;}
.y6c{bottom:332.728400pt;}
.y1f3{bottom:333.630267pt;}
.y116{bottom:333.698533pt;}
.y30b{bottom:335.524933pt;}
.y336{bottom:335.569733pt;}
.y2f3{bottom:335.979733pt;}
.yc7{bottom:336.274400pt;}
.y52{bottom:337.122400pt;}
.y2a3{bottom:337.157067pt;}
.y18b{bottom:337.193067pt;}
.y36b{bottom:337.893067pt;}
.y1bb{bottom:338.878400pt;}
.y213{bottom:342.030400pt;}
.y2b6{bottom:343.149067pt;}
.y241{bottom:344.004933pt;}
.yfb{bottom:344.298400pt;}
.ya9{bottom:344.848667pt;}
.y2d{bottom:344.904000pt;}
.y8d{bottom:344.941067pt;}
.y274{bottom:345.120933pt;}
.y160{bottom:345.169067pt;}
.y147{bottom:345.728933pt;}
.y12f{bottom:346.365200pt;}
.y1a4{bottom:346.891733pt;}
.y320{bottom:346.931067pt;}
.y28d{bottom:346.954667pt;}
.y351{bottom:347.801067pt;}
.y25b{bottom:348.895067pt;}
.y2e0{bottom:349.479333pt;}
.ydf{bottom:349.839733pt;}
.y2c4{bottom:349.869067pt;}
.y1f2{bottom:350.296933pt;}
.y1db{bottom:350.619467pt;}
.y6b{bottom:350.724400pt;}
.y115{bottom:351.694533pt;}
.y51{bottom:352.458400pt;}
.y16d{bottom:352.818667pt;}
.yc6{bottom:352.941067pt;}
.y30a{bottom:353.520933pt;}
.y335{bottom:353.565733pt;}
.y2f2{bottom:353.975733pt;}
.y36a{bottom:354.559733pt;}
.y18a{bottom:355.189067pt;}
.y1ba{bottom:356.874400pt;}
.y212{bottom:360.026400pt;}
.y2c{bottom:360.240000pt;}
.y240{bottom:360.671600pt;}
.y2b5{bottom:361.145067pt;}
.yfa{bottom:362.294400pt;}
.ya8{bottom:362.844667pt;}
.y8c{bottom:362.937067pt;}
.y12e{bottom:363.031867pt;}
.y273{bottom:363.116933pt;}
.y2a2{bottom:363.161067pt;}
.y15f{bottom:363.165067pt;}
.y146{bottom:363.724933pt;}
.y1a3{bottom:364.887733pt;}
.y350{bottom:365.797067pt;}
.y25a{bottom:366.891067pt;}
.y50{bottom:367.794400pt;}
.yde{bottom:367.835733pt;}
.y2c3{bottom:367.865067pt;}
.y1da{bottom:368.615467pt;}
.y386{bottom:368.826400pt;}
.yc5{bottom:369.607733pt;}
.y114{bottom:369.690533pt;}
.y309{bottom:371.516933pt;}
.y334{bottom:371.561733pt;}
.y2f1{bottom:371.971733pt;}
.y31f{bottom:372.112267pt;}
.y28c{bottom:372.958667pt;}
.y189{bottom:373.185067pt;}
.y1b9{bottom:374.870400pt;}
.y2b{bottom:375.576000pt;}
.y2df{bottom:376.172667pt;}
.y1f1{bottom:377.236800pt;}
.y211{bottom:378.022400pt;}
.y22c{bottom:378.932800pt;}
.y2b4{bottom:379.145067pt;}
.y12d{bottom:379.698533pt;}
.y369{bottom:380.026400pt;}
.yf9{bottom:380.290400pt;}
.ya7{bottom:380.840667pt;}
.y8b{bottom:380.933067pt;}
.y272{bottom:381.112933pt;}
.y2a1{bottom:381.157067pt;}
.y15e{bottom:381.161067pt;}
.y145{bottom:381.720933pt;}
.y4f{bottom:383.130400pt;}
.y34f{bottom:383.793067pt;}
.y259{bottom:384.887067pt;}
.y385{bottom:385.493067pt;}
.y6a{bottom:385.687333pt;}
.ydd{bottom:385.831733pt;}
.y2c2{bottom:385.861067pt;}
.y1d9{bottom:386.611467pt;}
.y23f{bottom:387.498267pt;}
.y31e{bottom:388.778933pt;}
.y308{bottom:389.512933pt;}
.y333{bottom:389.557733pt;}
.y2f0{bottom:389.967733pt;}
.y2a{bottom:390.912000pt;}
.y28b{bottom:390.954667pt;}
.y1a2{bottom:390.965067pt;}
.y188{bottom:391.181067pt;}
.y1b8{bottom:392.866400pt;}
.y2de{bottom:394.168667pt;}
.y1f0{bottom:395.232800pt;}
.y22b{bottom:395.599467pt;}
.y210{bottom:396.018400pt;}
.y12c{bottom:396.365200pt;}
.y113{bottom:396.647867pt;}
.y368{bottom:396.693067pt;}
.y2b3{bottom:397.153067pt;}
.yc4{bottom:397.840400pt;}
.yf8{bottom:398.286400pt;}
.y4e{bottom:398.466400pt;}
.ya6{bottom:398.836667pt;}
.y8a{bottom:398.929067pt;}
.y271{bottom:399.108933pt;}
.y2a0{bottom:399.153067pt;}
.y15d{bottom:399.157067pt;}
.y144{bottom:399.716933pt;}
.y34e{bottom:401.789067pt;}
.ydc{bottom:403.827733pt;}
.y2c1{bottom:403.857067pt;}
.y23e{bottom:404.164933pt;}
.y1d8{bottom:404.607467pt;}
.y31d{bottom:405.445600pt;}
.y69{bottom:405.687333pt;}
.y29{bottom:406.248000pt;}
.y307{bottom:407.508933pt;}
.y2ef{bottom:407.963733pt;}
.y28a{bottom:408.950667pt;}
.y1a1{bottom:408.961067pt;}
.y187{bottom:409.177067pt;}
.y384{bottom:410.159733pt;}
.y1b7{bottom:410.862400pt;}
.y2dd{bottom:412.164667pt;}
.y22a{bottom:412.266133pt;}
.y12b{bottom:413.031867pt;}
.y258{bottom:413.296400pt;}
.y367{bottom:413.359733pt;}
.y4d{bottom:413.802400pt;}
.y20f{bottom:414.014400pt;}
.y112{bottom:414.643867pt;}
.y2b2{bottom:415.149067pt;}
.yc3{bottom:415.836400pt;}
.yf7{bottom:416.282400pt;}
.ya5{bottom:416.832667pt;}
.y89{bottom:416.925067pt;}
.y270{bottom:417.104933pt;}
.y29f{bottom:417.149067pt;}
.y15c{bottom:417.153067pt;}
.y143{bottom:417.712933pt;}
.y332{bottom:418.977733pt;}
.y28{bottom:421.584000pt;}
.ydb{bottom:421.823733pt;}
.y2c0{bottom:421.853067pt;}
.y31c{bottom:422.112267pt;}
.y1d7{bottom:422.603467pt;}
.y1ef{bottom:423.466133pt;}
.y306{bottom:425.504933pt;}
.y2ee{bottom:425.959733pt;}
.y1a0{bottom:426.957067pt;}
.y186{bottom:427.173067pt;}
.y229{bottom:428.932800pt;}
.y4c{bottom:429.138400pt;}
.y34d{bottom:429.641067pt;}
.y12a{bottom:429.698533pt;}
.y366{bottom:430.026400pt;}
.y2dc{bottom:430.160667pt;}
.y23d{bottom:431.049067pt;}
.y257{bottom:431.292400pt;}
.y20e{bottom:432.010400pt;}
.y111{bottom:432.639867pt;}
.y2b1{bottom:433.145067pt;}
.yc2{bottom:433.832400pt;}
.yf6{bottom:434.278400pt;}
.y383{bottom:434.826400pt;}
.ya4{bottom:434.828667pt;}
.y88{bottom:434.921067pt;}
.y26f{bottom:435.100933pt;}
.y29e{bottom:435.145067pt;}
.y15b{bottom:435.149067pt;}
.y331{bottom:435.644400pt;}
.y142{bottom:435.708933pt;}
.y1b6{bottom:436.866400pt;}
.y27{bottom:436.920000pt;}
.y31b{bottom:438.778933pt;}
.yda{bottom:439.819733pt;}
.y2bf{bottom:439.849067pt;}
.y1d6{bottom:440.599467pt;}
.y1ee{bottom:441.462133pt;}
.y305{bottom:443.500933pt;}
.y2ed{bottom:443.955733pt;}
.y4b{bottom:444.474400pt;}
.y19f{bottom:444.953067pt;}
.y228{bottom:445.599467pt;}
.y129{bottom:446.365200pt;}
.y289{bottom:446.944533pt;}
.y34c{bottom:447.637067pt;}
.y2db{bottom:448.156667pt;}
.y23c{bottom:449.045067pt;}
.y256{bottom:449.288400pt;}
.y20d{bottom:450.006400pt;}
.y110{bottom:450.635867pt;}
.y382{bottom:451.493067pt;}
.yc1{bottom:451.828400pt;}
.y26{bottom:452.256000pt;}
.yf5{bottom:452.274400pt;}
.y330{bottom:452.311067pt;}
.y87{bottom:452.917067pt;}
.y26e{bottom:453.096933pt;}
.y185{bottom:453.177067pt;}
.y29d{bottom:453.181067pt;}
.y141{bottom:453.704933pt;}
.y1b5{bottom:454.862400pt;}
.y31a{bottom:455.445600pt;}
.y365{bottom:455.493067pt;}
.y2be{bottom:457.845067pt;}
.y68{bottom:458.710267pt;}
.y2b0{bottom:459.149067pt;}
.y1ed{bottom:459.458133pt;}
.y4a{bottom:459.810400pt;}
.y15a{bottom:461.153067pt;}
.y2ec{bottom:461.951733pt;}
.y227{bottom:462.266133pt;}
.y19e{bottom:462.949067pt;}
.ya3{bottom:464.932800pt;}
.y34b{bottom:465.633067pt;}
.ye{bottom:466.012400pt;}
.y2da{bottom:466.152667pt;}
.y23b{bottom:467.041067pt;}
.yd9{bottom:467.510400pt;}
.y25{bottom:467.592000pt;}
.y20c{bottom:468.002400pt;}
.y288{bottom:468.277867pt;}
.y10f{bottom:468.631867pt;}
.yc0{bottom:469.824400pt;}
.y1d5{bottom:470.203600pt;}
.y304{bottom:470.953467pt;}
.y184{bottom:471.173067pt;}
.y29c{bottom:471.177067pt;}
.y319{bottom:472.112267pt;}
.y364{bottom:472.159733pt;}
.y32f{bottom:472.391067pt;}
.y1b4{bottom:472.858400pt;}
.y128{bottom:474.574000pt;}
.y49{bottom:475.146400pt;}
.y2bd{bottom:475.841067pt;}
.y381{bottom:476.159733pt;}
.y67{bottom:476.706267pt;}
.y2af{bottom:477.145067pt;}
.y1ec{bottom:477.454133pt;}
.y255{bottom:477.679733pt;}
.yf4{bottom:478.491067pt;}
.y226{bottom:478.932800pt;}
.y159{bottom:479.149067pt;}
.y19d{bottom:480.945067pt;}
.ya2{bottom:481.599467pt;}
.yd{bottom:482.010400pt;}
.y24{bottom:482.928000pt;}
.y86{bottom:483.057067pt;}
.y26d{bottom:483.456933pt;}
.y34a{bottom:483.629067pt;}
.y2d9{bottom:484.148667pt;}
.y140{bottom:484.622267pt;}
.y23a{bottom:485.037067pt;}
.yd8{bottom:485.506400pt;}
.y20b{bottom:485.998400pt;}
.y1d4{bottom:486.870267pt;}
.y303{bottom:487.620133pt;}
.y287{bottom:487.917867pt;}
.y318{bottom:488.778933pt;}
.y363{bottom:488.826400pt;}
.y32e{bottom:489.057733pt;}
.y183{bottom:489.169067pt;}
.y48{bottom:490.482400pt;}
.y1b3{bottom:490.854400pt;}
.y127{bottom:492.570000pt;}
.y380{bottom:492.826400pt;}
.y2bc{bottom:493.837067pt;}
.y254{bottom:494.346400pt;}
.y66{bottom:494.702267pt;}
.yf3{bottom:495.157733pt;}
.y2ae{bottom:495.201067pt;}
.y1eb{bottom:495.450133pt;}
.y10e{bottom:495.585600pt;}
.y225{bottom:495.599467pt;}
.y158{bottom:497.145067pt;}
.y29b{bottom:497.181067pt;}
.y23{bottom:498.264000pt;}
.ya1{bottom:498.266133pt;}
.ybf{bottom:499.374400pt;}
.y85{bottom:501.053067pt;}
.y26c{bottom:501.452933pt;}
.y349{bottom:501.625067pt;}
.y13f{bottom:502.618267pt;}
.y239{bottom:503.033067pt;}
.yd7{bottom:503.502400pt;}
.y1d3{bottom:503.536933pt;}
.y20a{bottom:503.994400pt;}
.y317{bottom:505.445600pt;}
.y362{bottom:505.493067pt;}
.y32d{bottom:505.724400pt;}
.y302{bottom:505.726800pt;}
.y47{bottom:505.818400pt;}
.yc{bottom:506.010400pt;}
.y19c{bottom:507.022400pt;}
.y182{bottom:507.165067pt;}
.y286{bottom:507.557867pt;}
.y1b2{bottom:508.850400pt;}
.y37f{bottom:509.493067pt;}
.y126{bottom:510.566000pt;}
.y2d8{bottom:510.842000pt;}
.y253{bottom:511.013067pt;}
.yf2{bottom:511.824400pt;}
.y10d{bottom:512.252267pt;}
.y224{bottom:512.266133pt;}
.y65{bottom:512.698267pt;}
.y2ad{bottom:513.197067pt;}
.y1ea{bottom:513.446133pt;}
.ya0{bottom:514.932800pt;}
.y157{bottom:515.153067pt;}
.y29a{bottom:515.177067pt;}
.ybe{bottom:516.041067pt;}
.y84{bottom:519.049067pt;}
.y26b{bottom:519.448933pt;}
.y348{bottom:519.621067pt;}
.y1d2{bottom:520.203600pt;}
.y13e{bottom:520.614267pt;}
.yb{bottom:520.677067pt;}
.y238{bottom:521.029067pt;}
.y46{bottom:521.154400pt;}
.yd6{bottom:521.498400pt;}
.y209{bottom:521.990400pt;}
.y316{bottom:522.112267pt;}
.y32c{bottom:522.391067pt;}
.y301{bottom:522.393467pt;}
.y19b{bottom:525.018400pt;}
.y181{bottom:525.161067pt;}
.y37e{bottom:526.159733pt;}
.y1b1{bottom:526.846400pt;}
.y285{bottom:527.192133pt;}
.y2bb{bottom:527.834400pt;}
.yf1{bottom:528.491067pt;}
.y2d7{bottom:528.838000pt;}
.y10c{bottom:528.918933pt;}
.y223{bottom:528.932800pt;}
.y64{bottom:530.694267pt;}
.y361{bottom:530.959733pt;}
.y2ac{bottom:531.193067pt;}
.y1e9{bottom:531.442133pt;}
.y9f{bottom:531.599467pt;}
.ybd{bottom:532.707733pt;}
.y156{bottom:533.149067pt;}
.y299{bottom:533.173067pt;}
.y284{bottom:534.860133pt;}
.y1d1{bottom:536.870267pt;}
.y83{bottom:537.045067pt;}
.y252{bottom:538.093067pt;}
.y13d{bottom:538.610267pt;}
.y315{bottom:538.778933pt;}
.y237{bottom:539.025067pt;}
.y32b{bottom:539.057733pt;}
.y300{bottom:539.060133pt;}
.yd5{bottom:539.494400pt;}
.y208{bottom:539.986400pt;}
.y125{bottom:540.046000pt;}
.y22{bottom:540.708000pt;}
.y19a{bottom:543.014400pt;}
.y1b0{bottom:544.842400pt;}
.yf0{bottom:545.157733pt;}
.y10b{bottom:545.585600pt;}
.y222{bottom:545.599467pt;}
.y2d6{bottom:546.834000pt;}
.y347{bottom:547.473067pt;}
.y360{bottom:547.626400pt;}
.y9e{bottom:548.266133pt;}
.y63{bottom:548.690267pt;}
.y2ab{bottom:549.189067pt;}
.ybc{bottom:549.374400pt;}
.y26a{bottom:549.808933pt;}
.y37d{bottom:550.826400pt;}
.y155{bottom:551.145067pt;}
.y180{bottom:551.165067pt;}
.y298{bottom:551.169067pt;}
.y1d0{bottom:553.536933pt;}
.ya{bottom:554.002400pt;}
.y82{bottom:555.041067pt;}
.y314{bottom:555.445600pt;}
.y2ff{bottom:555.726800pt;}
.y13c{bottom:556.606267pt;}
.y236{bottom:557.021067pt;}
.yd4{bottom:557.490400pt;}
.y207{bottom:557.982400pt;}
.y124{bottom:558.042000pt;}
.y1e8{bottom:559.681333pt;}
.y45{bottom:559.818400pt;}
.y199{bottom:561.010400pt;}
.yef{bottom:561.824400pt;}
.y10a{bottom:562.252267pt;}
.y221{bottom:562.266133pt;}
.y1af{bottom:562.838400pt;}
.y35f{bottom:564.293067pt;}
.y2d5{bottom:564.830000pt;}
.y9d{bottom:564.932800pt;}
.y346{bottom:565.469067pt;}
.ybb{bottom:566.041067pt;}
.y62{bottom:566.686267pt;}
.y2aa{bottom:567.185067pt;}
.y37c{bottom:567.493067pt;}
.y269{bottom:567.804933pt;}
.y21{bottom:567.816000pt;}
.y154{bottom:569.141067pt;}
.y17f{bottom:569.161067pt;}
.y283{bottom:569.165067pt;}
.y1cf{bottom:570.203600pt;}
.y313{bottom:572.112267pt;}
.y2fe{bottom:573.833467pt;}
.y13b{bottom:574.602267pt;}
.y235{bottom:575.017067pt;}
.y9{bottom:575.338400pt;}
.yd3{bottom:575.486400pt;}
.y206{bottom:575.978400pt;}
.y123{bottom:576.038000pt;}
.y1e7{bottom:576.348000pt;}
.y297{bottom:577.173067pt;}
.y109{bottom:578.918933pt;}
.y220{bottom:578.932800pt;}
.y198{bottom:579.006400pt;}
.y1ae{bottom:580.834400pt;}
.y35e{bottom:580.959733pt;}
.y9c{bottom:581.599467pt;}
.yba{bottom:582.707733pt;}
.y2d4{bottom:582.826000pt;}
.y44{bottom:583.146400pt;}
.y20{bottom:583.152000pt;}
.y345{bottom:583.465067pt;}
.y251{bottom:584.253067pt;}
.y61{bottom:584.682267pt;}
.y81{bottom:585.181067pt;}
.y268{bottom:585.800933pt;}
.yee{bottom:586.711733pt;}
.y1ce{bottom:586.870267pt;}
.y17e{bottom:587.157067pt;}
.y282{bottom:587.161067pt;}
.y2fd{bottom:590.500133pt;}
.y37b{bottom:592.159733pt;}
.y13a{bottom:592.598267pt;}
.y234{bottom:593.013067pt;}
.y1e6{bottom:593.014667pt;}
.yd2{bottom:593.482400pt;}
.y205{bottom:593.974400pt;}
.y122{bottom:594.034000pt;}
.y296{bottom:595.169067pt;}
.y108{bottom:595.585600pt;}
.y21f{bottom:595.599467pt;}
.y312{bottom:595.990400pt;}
.y197{bottom:597.002400pt;}
.y9b{bottom:598.266133pt;}
.y43{bottom:598.482400pt;}
.y1f{bottom:598.488000pt;}
.y1ad{bottom:598.830400pt;}
.yb9{bottom:599.374400pt;}
.y2d3{bottom:600.822000pt;}
.y344{bottom:601.461067pt;}
.y60{bottom:602.678267pt;}
.y153{bottom:603.141067pt;}
.y80{bottom:603.177067pt;}
.y250{bottom:603.333067pt;}
.y1cd{bottom:603.536933pt;}
.yed{bottom:604.707733pt;}
.y17d{bottom:605.153067pt;}
.y281{bottom:605.157067pt;}
.y35d{bottom:606.426400pt;}
.y2fc{bottom:607.166800pt;}
.y1e5{bottom:609.681333pt;}
.y139{bottom:610.594267pt;}
.y233{bottom:611.009067pt;}
.y121{bottom:612.030000pt;}
.y107{bottom:612.252267pt;}
.y21e{bottom:612.266133pt;}
.y8{bottom:612.671733pt;}
.y295{bottom:613.165067pt;}
.y42{bottom:613.818400pt;}
.y1e{bottom:613.824000pt;}
.y311{bottom:613.986400pt;}
.y267{bottom:616.159733pt;}
.y37a{bottom:616.826400pt;}
.y1ac{bottom:616.846400pt;}
.y2d2{bottom:618.818000pt;}
.y343{bottom:619.457067pt;}
.y1cc{bottom:620.203600pt;}
.y5f{bottom:620.674267pt;}
.y7f{bottom:621.173067pt;}
.y204{bottom:621.224400pt;}
.y196{bottom:623.079733pt;}
.y35c{bottom:623.093067pt;}
.y152{bottom:623.141067pt;}
.y17c{bottom:623.149067pt;}
.y280{bottom:623.153067pt;}
.y2fb{bottom:625.273467pt;}
.y1e4{bottom:626.348000pt;}
.y9a{bottom:627.054400pt;}
.yb8{bottom:627.611733pt;}
.y138{bottom:628.590267pt;}
.y106{bottom:628.918933pt;}
.y232{bottom:629.005067pt;}
.y41{bottom:629.154400pt;}
.y1d{bottom:629.160000pt;}
.y120{bottom:630.026000pt;}
.y24f{bottom:630.413067pt;}
.y16c{bottom:631.161067pt;}
.y266{bottom:632.826400pt;}
.y379{bottom:633.493067pt;}
.y7{bottom:634.007733pt;}
.y1ab{bottom:634.842400pt;}
.y2d1{bottom:636.814000pt;}
.y1cb{bottom:636.870267pt;}
.y342{bottom:637.453067pt;}
.y203{bottom:637.891067pt;}
.y5e{bottom:638.670267pt;}
.yec{bottom:638.924400pt;}
.y7e{bottom:639.169067pt;}
.y195{bottom:641.075733pt;}
.y17b{bottom:641.145067pt;}
.y2fa{bottom:641.940133pt;}
.y40{bottom:644.490400pt;}
.y1c{bottom:644.496000pt;}
.y99{bottom:645.050400pt;}
.yb7{bottom:645.607733pt;}
.y137{bottom:646.586267pt;}
.y231{bottom:647.001067pt;}
.y24e{bottom:647.079733pt;}
.y11f{bottom:648.022000pt;}
.y35b{bottom:648.559733pt;}
.y16b{bottom:649.157067pt;}
.y265{bottom:649.493067pt;}
.y378{bottom:650.159733pt;}
.y1aa{bottom:652.838400pt;}
.y1e3{bottom:653.257867pt;}
.y1ca{bottom:653.536933pt;}
.y105{bottom:654.543333pt;}
.y202{bottom:654.557733pt;}
.y2d0{bottom:654.810000pt;}
.y5d{bottom:656.666267pt;}
.y7d{bottom:657.165067pt;}
.yeb{bottom:658.924400pt;}
.y194{bottom:659.071733pt;}
.y17a{bottom:659.141067pt;}
.y3f{bottom:659.826400pt;}
.y1b{bottom:659.832000pt;}
.y98{bottom:663.046400pt;}
.yb6{bottom:663.603733pt;}
.y24d{bottom:663.746400pt;}
.y136{bottom:664.582267pt;}
.y230{bottom:664.997067pt;}
.y35a{bottom:665.226400pt;}
.y341{bottom:665.305067pt;}
.y11e{bottom:666.018000pt;}
.y264{bottom:666.159733pt;}
.y377{bottom:666.826400pt;}
.y16a{bottom:667.153067pt;}
.y2f9{bottom:668.062000pt;}
.y1c9{bottom:670.203600pt;}
.y1a9{bottom:670.834400pt;}
.y201{bottom:671.224400pt;}
.y1e2{bottom:671.253867pt;}
.y6{bottom:671.341067pt;}
.y104{bottom:672.539333pt;}
.y2cf{bottom:672.806000pt;}
.y5c{bottom:674.662267pt;}
.y7c{bottom:675.161067pt;}
.y3e{bottom:675.162400pt;}
.y1a{bottom:675.168000pt;}
.y193{bottom:677.067733pt;}
.yb5{bottom:681.599733pt;}
.y135{bottom:682.578267pt;}
.y24c{bottom:682.826400pt;}
.y22f{bottom:682.993067pt;}
.y340{bottom:683.301067pt;}
.y11d{bottom:684.014000pt;}
.y179{bottom:685.145067pt;}
.y169{bottom:685.149067pt;}
.y2f8{bottom:686.058000pt;}
.y1c8{bottom:686.870267pt;}
.y200{bottom:687.891067pt;}
.y1a8{bottom:688.830400pt;}
.y3d{bottom:690.498400pt;}
.y19{bottom:690.504000pt;}
.y359{bottom:690.693067pt;}
.y376{bottom:691.493067pt;}
.y5b{bottom:692.658267pt;}
.y5{bottom:692.677067pt;}
.y7b{bottom:693.157067pt;}
.y192{bottom:695.063733pt;}
.y103{bottom:699.493067pt;}
.yb4{bottom:699.595733pt;}
.y134{bottom:700.574267pt;}
.y22e{bottom:700.989067pt;}
.y33f{bottom:701.297067pt;}
.y11c{bottom:702.010000pt;}
.y178{bottom:703.141067pt;}
.y168{bottom:703.145067pt;}
.y1c7{bottom:703.536933pt;}
.y2f7{bottom:704.054000pt;}
.y1ff{bottom:704.557733pt;}
.y3c{bottom:705.834400pt;}
.y18{bottom:705.840000pt;}
.y1a7{bottom:706.826400pt;}
.y358{bottom:707.359733pt;}
.y375{bottom:708.159733pt;}
.y5a{bottom:710.654267pt;}
.y7a{bottom:711.153067pt;}
.y191{bottom:713.059733pt;}
.y102{bottom:716.159733pt;}
.y133{bottom:718.570267pt;}
.y22d{bottom:718.985067pt;}
.y33e{bottom:719.293067pt;}
.y11b{bottom:720.006000pt;}
.y1c6{bottom:720.203600pt;}
.y177{bottom:721.137067pt;}
.y27f{bottom:721.141067pt;}
.y3b{bottom:721.170400pt;}
.y17{bottom:721.176000pt;}
.y1fe{bottom:721.224400pt;}
.y2f6{bottom:722.050000pt;}
.y59{bottom:728.650267pt;}
.y79{bottom:729.149067pt;}
.y4{bottom:730.002400pt;}
.y190{bottom:731.055733pt;}
.y101{bottom:732.826400pt;}
.y3a{bottom:736.506400pt;}
.y16{bottom:736.512000pt;}
.y1c5{bottom:736.870267pt;}
.y78{bottom:747.145067pt;}
.y100{bottom:749.493067pt;}
.y39{bottom:751.842400pt;}
.y15{bottom:751.848000pt;}
.y3{bottom:758.010400pt;}
.y58{bottom:763.613067pt;}
.y77{bottom:765.141067pt;}
.yff{bottom:766.159733pt;}
.y38{bottom:767.178400pt;}
.y14{bottom:767.184000pt;}
.y12{bottom:827.322533pt;}
.y13{bottom:832.656000pt;}
.h9{height:23.578125pt;}
.h8{height:27.789333pt;}
.h12{height:27.789867pt;}
.h6{height:42.749333pt;}
.h2{height:45.264000pt;}
.hb{height:45.312000pt;}
.h7{height:47.778667pt;}
.he{height:50.293333pt;}
.h5{height:52.808000pt;}
.hd{height:55.322667pt;}
.hf{height:55.381333pt;}
.hc{height:62.933333pt;}
.h4{height:70.485333pt;}
.h10{height:75.984000pt;}
.ha{height:90.528000pt;}
.h3{height:90.624000pt;}
.h11{height:106.656000pt;}
.h0{height:947.968000pt;}
.h1{height:948.000000pt;}
.w1{width:683.333333pt;}
.w0{width:683.401333pt;}
.x0{left:0.000000pt;}
.x4{left:52.671867pt;}
.x7{left:114.929200pt;}
.x9{left:130.039467pt;}
.x3{left:133.826667pt;}
.x10{left:142.236267pt;}
.x8{left:147.004533pt;}
.xb{left:148.946667pt;}
.xd{left:152.722533pt;}
.xc{left:167.842533pt;}
.xf{left:171.620133pt;}
.xe{left:186.740133pt;}
.x11{left:245.136267pt;}
.x5{left:253.171733pt;}
.x1{left:272.070400pt;}
.x6{left:295.794933pt;}
.x2{left:314.693467pt;}
.x12{left:482.208267pt;}
.xa{left:536.396933pt;}
}




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