
    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_5baa2a2f183305ab500f2885.woff')format("woff");}.ff1{font-family:ff1;line-height:1.054000;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_e934c3e1d56cbb463669d62b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_e6e1f734cb52d7ad892bfcee.woff')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_8f3abacf852b3978249cd45c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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_d61299cdfacfa70d8bb1eed3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_47df5e92b84d247be55a9f91.woff')format("woff");}.ff6{font-family:ff6;line-height:1.054000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_260d27191f40823c4ea4d27d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0705c099ecfeebb651c3745b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b0ac385489e51df3029fa250.woff')format("woff");}.ff9{font-family:ff9;line-height:1.054000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f59cbe68618bce6eed045bad.woff')format("woff");}.ffa{font-family:ffa;line-height:1.054000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8f7dc53f2bfedf897566cca8.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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:ffc;src:url('chunks/assets/font_dd56db9b5c70a34d3cdd8eca.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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:ffd;src:url('chunks/assets/font_7501ab02ddeed737b429c80c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.070312;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7f9d247bec8c17bfa9f8a616.woff')format("woff");}.ffe{font-family:ffe;line-height:0.909000;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:fff;src:url('chunks/assets/font_7b2a06e0ed5062ad0a91ec7c.woff')format("woff");}.fff{font-family:fff;line-height:1.284180;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-22.050000px;}
.v5{vertical-align:-18.900000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:16.800000px;}
.v4{vertical-align:18.893400px;}
.v3{vertical-align:22.020000px;}
.v1{vertical-align:25.258800px;}
.v2{vertical-align:27.330000px;}
.ls4f{letter-spacing:-5.103000px;}
.ls26{letter-spacing:-4.860000px;}
.ls45{letter-spacing:-4.320000px;}
.ls50{letter-spacing:-3.780000px;}
.ls2b{letter-spacing:-3.528000px;}
.ls43{letter-spacing:-3.225600px;}
.ls21{letter-spacing:-3.150000px;}
.ls4c{letter-spacing:-2.898000px;}
.ls6{letter-spacing:-2.520000px;}
.ls3e{letter-spacing:-2.331000px;}
.ls29{letter-spacing:-2.268000px;}
.ls48{letter-spacing:-2.160000px;}
.ls5{letter-spacing:-1.890000px;}
.lsb{letter-spacing:-1.800000px;}
.ls24{letter-spacing:-1.620000px;}
.ls35{letter-spacing:-1.575000px;}
.lsd{letter-spacing:-1.500000px;}
.ls3c{letter-spacing:-1.411200px;}
.ls42{letter-spacing:-1.350000px;}
.ls4{letter-spacing:-1.260000px;}
.ls3f{letter-spacing:-1.209600px;}
.ls1{letter-spacing:-1.080000px;}
.ls40{letter-spacing:-1.008000px;}
.ls2f{letter-spacing:-0.918000px;}
.ls23{letter-spacing:-0.810000px;}
.ls38{letter-spacing:-0.806400px;}
.ls1b{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.630000px;}
.ls22{letter-spacing:-0.604800px;}
.lsa{letter-spacing:-0.600000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.403200px;}
.ls47{letter-spacing:-0.345600px;}
.lsc{letter-spacing:-0.300000px;}
.ls32{letter-spacing:-0.252000px;}
.ls0{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.004080px;}
.ls28{letter-spacing:0.004680px;}
.ls3a{letter-spacing:0.012000px;}
.ls34{letter-spacing:0.012600px;}
.ls2c{letter-spacing:0.015000px;}
.ls15{letter-spacing:0.022200px;}
.ls2a{letter-spacing:0.028200px;}
.ls33{letter-spacing:1.890000px;}
.ls4e{letter-spacing:2.646000px;}
.ls1e{letter-spacing:2.754000px;}
.ls3d{letter-spacing:2.835000px;}
.ls41{letter-spacing:4.104000px;}
.ls44{letter-spacing:4.284000px;}
.ls30{letter-spacing:4.590000px;}
.lse{letter-spacing:4.800000px;}
.ls10{letter-spacing:5.100000px;}
.lsf{letter-spacing:5.400000px;}
.ls12{letter-spacing:5.460000px;}
.ls4a{letter-spacing:5.562000px;}
.ls1c{letter-spacing:5.670000px;}
.ls11{letter-spacing:6.000000px;}
.ls4b{letter-spacing:6.048000px;}
.ls36{letter-spacing:7.019880px;}
.ls9{letter-spacing:7.200000px;}
.ls49{letter-spacing:7.560000px;}
.ls4d{letter-spacing:8.694000px;}
.ls46{letter-spacing:8.735280px;}
.ls20{letter-spacing:9.387000px;}
.ls17{letter-spacing:9.611280px;}
.ls16{letter-spacing:9.611880px;}
.ls2d{letter-spacing:9.773880px;}
.ls2e{letter-spacing:9.776880px;}
.ls19{letter-spacing:10.691280px;}
.ls18{letter-spacing:10.691880px;}
.ls13{letter-spacing:11.025000px;}
.ls25{letter-spacing:12.411000px;}
.ls37{letter-spacing:13.445280px;}
.ls14{letter-spacing:13.445880px;}
.ls3b{letter-spacing:14.255280px;}
.ls27{letter-spacing:14.616000px;}
.ls1a{letter-spacing:25.001880px;}
.ls39{letter-spacing:26.712000px;}
.ls8{letter-spacing:33.390000px;}
.ls7{letter-spacing:81.837000px;}
.ls2{letter-spacing:109.368000px;}
.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;}
}
.wsf{word-spacing:-81.837000px;}
.wse{word-spacing:-54.684000px;}
.ws10{word-spacing:-33.390000px;}
.ws50{word-spacing:-24.885000px;}
.ws3a{word-spacing:-23.499000px;}
.ws46{word-spacing:-21.861000px;}
.wsa6{word-spacing:-21.168000px;}
.ws9a{word-spacing:-18.252000px;}
.ws3d{word-spacing:-18.144000px;}
.wsa0{word-spacing:-17.892000px;}
.ws2c{word-spacing:-17.280000px;}
.ws31{word-spacing:-16.980000px;}
.ws82{word-spacing:-16.758000px;}
.ws2a{word-spacing:-16.680000px;}
.ws76{word-spacing:-15.309000px;}
.wsa8{word-spacing:-15.120000px;}
.ws7b{word-spacing:-14.796000px;}
.ws5{word-spacing:-14.664000px;}
.ws66{word-spacing:-14.364000px;}
.ws45{word-spacing:-13.536000px;}
.wsa9{word-spacing:-13.416000px;}
.ws7e{word-spacing:-13.356000px;}
.ws87{word-spacing:-13.344000px;}
.ws2{word-spacing:-13.104000px;}
.ws6{word-spacing:-12.474000px;}
.ws22{word-spacing:-11.880000px;}
.ws3e{word-spacing:-11.844000px;}
.ws38{word-spacing:-11.466000px;}
.ws4{word-spacing:-11.286000px;}
.ws1c{word-spacing:-11.280000px;}
.ws9{word-spacing:-11.214000px;}
.ws6c{word-spacing:-10.899000px;}
.ws56{word-spacing:-10.836000px;}
.ws3b{word-spacing:-10.692000px;}
.ws8{word-spacing:-10.584000px;}
.ws20{word-spacing:-10.380000px;}
.ws55{word-spacing:-10.206000px;}
.ws42{word-spacing:-10.152000px;}
.ws77{word-spacing:-10.143000px;}
.ws4c{word-spacing:-9.828000px;}
.ws62{word-spacing:-9.774000px;}
.ws95{word-spacing:-9.612000px;}
.ws57{word-spacing:-9.576000px;}
.ws9d{word-spacing:-9.342000px;}
.ws47{word-spacing:-9.324000px;}
.ws97{word-spacing:-9.072000px;}
.ws99{word-spacing:-8.802000px;}
.ws4a{word-spacing:-8.748000px;}
.wsb1{word-spacing:-8.694000px;}
.ws3{word-spacing:-8.386560px;}
.ws4e{word-spacing:-8.208000px;}
.ws39{word-spacing:-7.983360px;}
.ws40{word-spacing:-7.580160px;}
.ws48{word-spacing:-7.378560px;}
.ws6e{word-spacing:-7.176960px;}
.ws79{word-spacing:-6.975360px;}
.ws41{word-spacing:-6.842880px;}
.ws78{word-spacing:-6.773760px;}
.ws75{word-spacing:-6.572160px;}
.ws96{word-spacing:-6.497280px;}
.ws94{word-spacing:-6.289920px;}
.ws36{word-spacing:-6.000000px;}
.ws9b{word-spacing:-5.562000px;}
.ws37{word-spacing:-5.460000px;}
.ws80{word-spacing:-4.757760px;}
.ws63{word-spacing:-4.590000px;}
.ws44{word-spacing:-2.754000px;}
.ws34{word-spacing:-1.128000px;}
.ws9e{word-spacing:-0.847800px;}
.ws6f{word-spacing:-0.693000px;}
.ws8f{word-spacing:-0.480000px;}
.ws3f{word-spacing:-0.063000px;}
.ws32{word-spacing:-0.058200px;}
.ws64{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws67{word-spacing:0.126000px;}
.wsa5{word-spacing:0.220500px;}
.ws6b{word-spacing:0.252000px;}
.ws26{word-spacing:0.300000px;}
.wsad{word-spacing:0.371700px;}
.ws24{word-spacing:0.600000px;}
.wsa{word-spacing:0.630000px;}
.wsab{word-spacing:0.720000px;}
.ws1{word-spacing:1.080000px;}
.ws53{word-spacing:1.085400px;}
.wsc{word-spacing:1.260000px;}
.ws25{word-spacing:1.800000px;}
.ws35{word-spacing:1.867200px;}
.ws2d{word-spacing:1.869000px;}
.wsb{word-spacing:1.890000px;}
.ws98{word-spacing:2.160000px;}
.ws5d{word-spacing:2.268000px;}
.wsd{word-spacing:2.520000px;}
.ws28{word-spacing:2.680200px;}
.ws30{word-spacing:2.841600px;}
.ws29{word-spacing:2.877000px;}
.wsa3{word-spacing:2.898000px;}
.ws93{word-spacing:3.024000px;}
.wsaf{word-spacing:3.150000px;}
.ws5f{word-spacing:3.528000px;}
.ws74{word-spacing:3.796200px;}
.ws54{word-spacing:4.860000px;}
.wsa1{word-spacing:5.103000px;}
.ws5e{word-spacing:7.262160px;}
.ws6a{word-spacing:8.208000px;}
.ws33{word-spacing:8.551200px;}
.ws81{word-spacing:9.101280px;}
.ws90{word-spacing:9.214320px;}
.ws2f{word-spacing:10.531200px;}
.ws60{word-spacing:10.962000px;}
.ws2b{word-spacing:11.122200px;}
.ws27{word-spacing:12.025800px;}
.ws21{word-spacing:14.423400px;}
.wsae{word-spacing:14.553000px;}
.wsa7{word-spacing:14.931000px;}
.ws23{word-spacing:15.502200px;}
.ws1e{word-spacing:15.789000px;}
.ws1f{word-spacing:17.910000px;}
.ws2e{word-spacing:18.387000px;}
.ws1b{word-spacing:20.310600px;}
.ws18{word-spacing:24.133800px;}
.ws1d{word-spacing:24.144000px;}
.ws11{word-spacing:26.175000px;}
.ws17{word-spacing:32.020200px;}
.ws19{word-spacing:32.894400px;}
.ws1a{word-spacing:33.341400px;}
.ws13{word-spacing:41.847000px;}
.ws15{word-spacing:43.154400px;}
.ws14{word-spacing:47.014800px;}
.ws16{word-spacing:47.556600px;}
.ws73{word-spacing:57.294000px;}
.ws59{word-spacing:59.508000px;}
.ws72{word-spacing:59.778000px;}
.ws91{word-spacing:59.994000px;}
.ws8d{word-spacing:60.642000px;}
.ws68{word-spacing:61.236000px;}
.ws85{word-spacing:62.046000px;}
.ws8e{word-spacing:62.100000px;}
.ws61{word-spacing:62.424000px;}
.ws70{word-spacing:62.748000px;}
.ws71{word-spacing:63.180000px;}
.ws52{word-spacing:63.342000px;}
.ws5a{word-spacing:63.450000px;}
.ws86{word-spacing:63.558000px;}
.ws8a{word-spacing:63.612000px;}
.ws58{word-spacing:63.774000px;}
.ws8b{word-spacing:64.044000px;}
.ws69{word-spacing:64.368000px;}
.ws88{word-spacing:64.530000px;}
.ws12{word-spacing:65.097000px;}
.ws89{word-spacing:65.772000px;}
.ws7d{word-spacing:66.312000px;}
.ws7a{word-spacing:66.366000px;}
.ws7c{word-spacing:66.690000px;}
.ws84{word-spacing:66.798000px;}
.ws49{word-spacing:67.014000px;}
.ws4d{word-spacing:67.878000px;}
.ws51{word-spacing:69.120000px;}
.ws5c{word-spacing:69.660000px;}
.ws43{word-spacing:71.280000px;}
.ws4b{word-spacing:71.766000px;}
.ws83{word-spacing:73.440000px;}
.ws7{word-spacing:410.186700px;}
.ws9c{word-spacing:1882.670400px;}
.ws5b{word-spacing:1883.030400px;}
.ws8c{word-spacing:1883.606400px;}
.ws4f{word-spacing:1884.182400px;}
.ws7f{word-spacing:1884.758400px;}
.ws65{word-spacing:1885.046400px;}
.ws6d{word-spacing:1886.558400px;}
.ws92{word-spacing:1886.918400px;}
.ws3c{word-spacing:1888.142400px;}
.wsaa{word-spacing:2048.690400px;}
.wsa4{word-spacing:2051.137800px;}
.wsa2{word-spacing:2051.569800px;}
.wsb2{word-spacing:2053.081800px;}
.wsb0{word-spacing:2053.513200px;}
.ws9f{word-spacing:2061.001800px;}
.wsac{word-spacing:2062.945200px;}
._0{margin-left:-14.040000px;}
._3{margin-left:-9.375600px;}
._17{margin-left:-7.914600px;}
._36{margin-left:-6.901200px;}
._56{margin-left:-5.738400px;}
._1{margin-left:-4.695600px;}
._d{margin-left:-3.515400px;}
._2{margin-left:-2.340000px;}
._8{margin-left:-1.085400px;}
._11{width:1.602000px;}
._c{width:2.754000px;}
._16{width:4.482000px;}
._12{width:6.318000px;}
._4{width:7.800000px;}
._19{width:8.904300px;}
._41{width:10.388700px;}
._4a{width:11.935800px;}
._4b{width:13.032000px;}
._3f{width:14.049000px;}
._40{width:15.309000px;}
._e{width:16.632000px;}
._f{width:17.658000px;}
._10{width:19.359000px;}
._18{width:21.413400px;}
._15{width:22.422600px;}
._14{width:23.783400px;}
._51{width:24.904800px;}
._3d{width:26.091471px;}
._3e{width:27.149474px;}
._28{width:28.422000px;}
._7{width:29.538000px;}
._9{width:31.440600px;}
._33{width:33.493500px;}
._3c{width:36.217800px;}
._b{width:37.679400px;}
._a{width:39.648600px;}
._3b{width:41.506800px;}
._39{width:43.439400px;}
._13{width:45.306000px;}
._38{width:46.500000px;}
._1e{width:49.410600px;}
._37{width:51.008400px;}
._6{width:52.974000px;}
._3a{width:61.255200px;}
._52{width:68.850000px;}
._4f{width:69.930000px;}
._4c{width:71.280000px;}
._4e{width:72.522000px;}
._54{width:77.706000px;}
._46{width:78.786000px;}
._48{width:79.920000px;}
._2f{width:81.822600px;}
._47{width:87.426000px;}
._24{width:91.539000px;}
._44{width:94.392000px;}
._43{width:95.742000px;}
._42{width:103.248000px;}
._20{width:112.969800px;}
._55{width:190.165500px;}
._2c{width:210.078000px;}
._30{width:211.424400px;}
._1f{width:250.866000px;}
._2a{width:253.890000px;}
._1d{width:269.523000px;}
._22{width:275.327400px;}
._21{width:295.029000px;}
._26{width:340.070400px;}
._35{width:366.615000px;}
._29{width:374.913000px;}
._27{width:380.562600px;}
._1b{width:382.545000px;}
._25{width:388.395000px;}
._31{width:406.602000px;}
._2d{width:408.753000px;}
._23{width:423.171000px;}
._2e{width:424.494000px;}
._34{width:443.912400px;}
._32{width:464.940000px;}
._2b{width:469.161000px;}
._1c{width:478.391400px;}
._50{width:516.753600px;}
._4d{width:519.201000px;}
._49{width:520.352400px;}
._57{width:527.222400px;}
._53{width:529.640400px;}
._1a{width:1953.010800px;}
._45{width:2059.102800px;}
._5{width:2099.134800px;}
.fc4{color:rgb(79,76,77);}
.fc3{color:rgb(198,197,197);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs11{font-size:30.720000px;}
.fs10{font-size:34.560000px;}
.fs1{font-size:36.000000px;}
.fsf{font-size:40.320000px;}
.fs7{font-size:46.080000px;}
.fsd{font-size:47.561400px;}
.fsa{font-size:48.000000px;}
.fse{font-size:49.920000px;}
.fs9{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.fs0{font-size:156.000000px;}
.y3{bottom:-22.253700px;}
.y51{bottom:-21.809100px;}
.yad{bottom:-0.940050px;}
.y0{bottom:0.000000px;}
.y1ae{bottom:42.767700px;}
.yae{bottom:54.727650px;}
.y2c{bottom:55.522050px;}
.y1e9{bottom:55.523550px;}
.y15b{bottom:55.523700px;}
.y223{bottom:55.525350px;}
.y18d{bottom:55.527000px;}
.yff{bottom:55.528200px;}
.y254{bottom:55.528800px;}
.y13b{bottom:55.530000px;}
.y245{bottom:55.531500px;}
.y121{bottom:55.531650px;}
.y1c5{bottom:55.534800px;}
.y1d7{bottom:55.536450px;}
.y27c{bottom:57.750300px;}
.y1ad{bottom:57.767700px;}
.y175{bottom:58.140300px;}
.y50{bottom:59.886300px;}
.y48{bottom:66.632850px;}
.y34b{bottom:69.180000px;}
.y3c7{bottom:69.181500px;}
.y36d{bottom:69.184500px;}
.y3e5{bottom:69.186000px;}
.y42c{bottom:69.191250px;}
.y3d0{bottom:69.195000px;}
.y337{bottom:69.199500px;}
.y2d8{bottom:69.698700px;}
.y200{bottom:70.523550px;}
.y222{bottom:70.523850px;}
.y18c{bottom:70.525500px;}
.yfe{bottom:70.526700px;}
.y253{bottom:70.527300px;}
.y1e8{bottom:70.528050px;}
.y13a{bottom:70.528500px;}
.y244{bottom:70.530000px;}
.y120{bottom:70.530150px;}
.y15a{bottom:70.530300px;}
.y1c4{bottom:70.533300px;}
.y1d6{bottom:70.534950px;}
.y1ac{bottom:72.785400px;}
.y174{bottom:73.138800px;}
.y4f{bottom:73.386300px;}
.y27b{bottom:77.001300px;}
.y47{bottom:80.887350px;}
.y1f{bottom:81.083550px;}
.y307{bottom:82.464000px;}
.y2d7{bottom:84.697200px;}
.y18b{bottom:85.524000px;}
.yfd{bottom:85.525200px;}
.y221{bottom:85.525500px;}
.y252{bottom:85.525800px;}
.y1e7{bottom:85.526550px;}
.y139{bottom:85.527000px;}
.y243{bottom:85.528500px;}
.y11f{bottom:85.528650px;}
.y159{bottom:85.528800px;}
.y1c3{bottom:85.531800px;}
.y1d5{bottom:85.533450px;}
.y1ff{bottom:85.542300px;}
.y4e{bottom:86.886300px;}
.y1ab{bottom:87.783900px;}
.y173{bottom:88.137300px;}
.y34a{bottom:88.678500px;}
.y36c{bottom:88.683000px;}
.y3e4{bottom:88.684500px;}
.y42b{bottom:88.689750px;}
.y35a{bottom:88.692000px;}
.y3cf{bottom:88.693500px;}
.y405{bottom:88.695000px;}
.y336{bottom:88.698000px;}
.y2ab{bottom:88.945200px;}
.yd2{bottom:94.557750px;}
.y27a{bottom:96.252300px;}
.y306{bottom:97.462500px;}
.y1e{bottom:98.183550px;}
.y4d{bottom:100.386300px;}
.y18a{bottom:100.522500px;}
.yfc{bottom:100.523700px;}
.y220{bottom:100.524000px;}
.y1e6{bottom:100.525050px;}
.y138{bottom:100.525500px;}
.y242{bottom:100.527000px;}
.y11e{bottom:100.527150px;}
.y158{bottom:100.527300px;}
.y1c2{bottom:100.530300px;}
.y1d4{bottom:100.531950px;}
.y251{bottom:100.537800px;}
.y1fe{bottom:100.540800px;}
.y1aa{bottom:102.782400px;}
.y2d6{bottom:103.948200px;}
.y349{bottom:108.177000px;}
.y3c6{bottom:108.178500px;}
.y31e{bottom:108.179850px;}
.y36b{bottom:108.181500px;}
.y3e3{bottom:108.183000px;}
.y42a{bottom:108.188250px;}
.y404{bottom:108.193500px;}
.y2aa{bottom:108.196200px;}
.y335{bottom:108.196500px;}
.yd1{bottom:109.556250px;}
.y279{bottom:115.503300px;}
.y1e5{bottom:115.523550px;}
.y137{bottom:115.524000px;}
.y241{bottom:115.525500px;}
.y11d{bottom:115.525650px;}
.y157{bottom:115.525800px;}
.y1c1{bottom:115.528800px;}
.y1d3{bottom:115.530450px;}
.y250{bottom:115.536300px;}
.y1fd{bottom:115.539300px;}
.yfb{bottom:115.539450px;}
.y305{bottom:116.713500px;}
.y1a9{bottom:117.780900px;}
.y2d5{bottom:118.946700px;}
.y2a9{bottom:123.194700px;}
.y46{bottom:123.638100px;}
.yd0{bottom:124.554750px;}
.y348{bottom:127.675500px;}
.y3c5{bottom:127.677000px;}
.y31d{bottom:127.678350px;}
.y36a{bottom:127.680000px;}
.y3e2{bottom:127.681500px;}
.y429{bottom:127.686750px;}
.y359{bottom:127.689000px;}
.y3ce{bottom:127.690500px;}
.y403{bottom:127.692000px;}
.y334{bottom:127.695000px;}
.y37d{bottom:127.705500px;}
.y95{bottom:128.459400px;}
.y278{bottom:130.501800px;}
.y136{bottom:130.522500px;}
.y240{bottom:130.524000px;}
.y11c{bottom:130.524150px;}
.y156{bottom:130.524300px;}
.y1c0{bottom:130.527300px;}
.y1d2{bottom:130.528950px;}
.y1e4{bottom:130.529700px;}
.y214{bottom:130.533450px;}
.y24f{bottom:130.534800px;}
.y1fc{bottom:130.537800px;}
.yfa{bottom:130.537950px;}
.y304{bottom:131.712000px;}
.y1a8{bottom:132.779400px;}
.y193{bottom:133.143000px;}
.y2d4{bottom:133.945200px;}
.y6e{bottom:135.302100px;}
.y4c{bottom:135.894300px;}
.y45{bottom:137.892600px;}
.ycf{bottom:139.553250px;}
.y2a8{bottom:142.445700px;}
.y23f{bottom:145.522500px;}
.y11b{bottom:145.522650px;}
.y155{bottom:145.522800px;}
.y1bf{bottom:145.525800px;}
.y1d1{bottom:145.527450px;}
.y1e3{bottom:145.528200px;}
.y213{bottom:145.531950px;}
.y24e{bottom:145.533300px;}
.y1fb{bottom:145.536300px;}
.yf9{bottom:145.536450px;}
.y31c{bottom:147.176850px;}
.y369{bottom:147.178500px;}
.y3e1{bottom:147.180000px;}
.y428{bottom:147.185250px;}
.y358{bottom:147.187500px;}
.y3cd{bottom:147.189000px;}
.y3c4{bottom:147.190500px;}
.y333{bottom:147.193500px;}
.y1a7{bottom:147.777900px;}
.y4b{bottom:149.394300px;}
.y192{bottom:149.643000px;}
.y277{bottom:149.752800px;}
.y303{bottom:150.963000px;}
.y44{bottom:152.147100px;}
.y2d3{bottom:153.196200px;}
.yce{bottom:154.551750px;}
.y94{bottom:159.215400px;}
.y1be{bottom:160.524300px;}
.y1d0{bottom:160.525950px;}
.y1e2{bottom:160.526700px;}
.y212{bottom:160.530450px;}
.y24d{bottom:160.531800px;}
.y1fa{bottom:160.534800px;}
.yf8{bottom:160.534950px;}
.y2a7{bottom:161.696700px;}
.y1a6{bottom:162.776400px;}
.y4a{bottom:162.894300px;}
.y6d{bottom:163.305600px;}
.y276{bottom:164.751300px;}
.y302{bottom:165.961500px;}
.y191{bottom:166.143000px;}
.y43{bottom:166.401600px;}
.y172{bottom:166.671750px;}
.y31b{bottom:166.675350px;}
.y368{bottom:166.677000px;}
.y3e0{bottom:166.678500px;}
.y427{bottom:166.683750px;}
.y357{bottom:166.686000px;}
.y3c3{bottom:166.689000px;}
.y332{bottom:166.692000px;}
.y37c{bottom:166.702500px;}
.y2d2{bottom:168.194700px;}
.y347{bottom:169.403850px;}
.ycd{bottom:169.563750px;}
.y1bd{bottom:175.522800px;}
.y1cf{bottom:175.524450px;}
.y1e1{bottom:175.525200px;}
.y211{bottom:175.528950px;}
.y24c{bottom:175.530300px;}
.y1f9{bottom:175.533300px;}
.yf7{bottom:175.533450px;}
.y93{bottom:175.715400px;}
.y49{bottom:176.394300px;}
.y1a5{bottom:177.774900px;}
.y2a6{bottom:180.947700px;}
.y6c{bottom:182.804100px;}
.y275{bottom:184.002300px;}
.ycc{bottom:184.562250px;}
.y301{bottom:185.212500px;}
.y171{bottom:186.170250px;}
.y135{bottom:186.174600px;}
.y41a{bottom:186.175500px;}
.y21f{bottom:186.177000px;}
.y396{bottom:186.181500px;}
.y426{bottom:186.182250px;}
.y3f5{bottom:186.183750px;}
.y356{bottom:186.184500px;}
.y3cc{bottom:186.186000px;}
.y367{bottom:186.186750px;}
.y3c2{bottom:186.187500px;}
.y37b{bottom:186.201000px;}
.y43e{bottom:186.210000px;}
.y2d1{bottom:187.445700px;}
.y1ce{bottom:190.522950px;}
.y1e0{bottom:190.523700px;}
.y210{bottom:190.527450px;}
.y24b{bottom:190.528800px;}
.y1f8{bottom:190.531800px;}
.yf6{bottom:190.531950px;}
.y1a4{bottom:192.773400px;}
.y2a5{bottom:195.946200px;}
.ycb{bottom:199.560750px;}
.y31a{bottom:200.903700px;}
.y274{bottom:203.266800px;}
.y300{bottom:204.463500px;}
.y92{bottom:204.971250px;}
.y1df{bottom:205.523850px;}
.y20f{bottom:205.525950px;}
.y24a{bottom:205.527300px;}
.y1f7{bottom:205.530300px;}
.yf5{bottom:205.530450px;}
.y2b{bottom:205.670850px;}
.y134{bottom:205.673100px;}
.y3df{bottom:205.675500px;}
.y21e{bottom:205.680000px;}
.y425{bottom:205.680750px;}
.y3f4{bottom:205.682250px;}
.y355{bottom:205.683000px;}
.y154{bottom:205.684500px;}
.y366{bottom:205.685250px;}
.y3c1{bottom:205.686000px;}
.y331{bottom:205.689000px;}
.y37a{bottom:205.699500px;}
.y3aa{bottom:205.706250px;}
.y43d{bottom:205.708500px;}
.y2d0{bottom:206.696700px;}
.y346{bottom:207.411600px;}
.y1a3{bottom:207.771900px;}
.y42{bottom:209.152350px;}
.y6b{bottom:210.807600px;}
.yca{bottom:214.559250px;}
.y2a4{bottom:215.197200px;}
.y273{bottom:218.265300px;}
.y234{bottom:219.175500px;}
.y2ff{bottom:219.462000px;}
.y1de{bottom:220.522350px;}
.y20e{bottom:220.524450px;}
.y249{bottom:220.525800px;}
.y1f6{bottom:220.528800px;}
.yf4{bottom:220.528950px;}
.y91{bottom:221.471250px;}
.y1a2{bottom:222.770400px;}
.y41{bottom:223.406850px;}
.y133{bottom:225.171600px;}
.y21d{bottom:225.178500px;}
.y354{bottom:225.181500px;}
.y153{bottom:225.183000px;}
.y3c0{bottom:225.184500px;}
.y330{bottom:225.187500px;}
.y379{bottom:225.198000px;}
.y3a9{bottom:225.204750px;}
.y43c{bottom:225.207000px;}
.y2cf{bottom:225.947700px;}
.yc9{bottom:229.557750px;}
.y2a3{bottom:230.195700px;}
.y6a{bottom:230.306100px;}
.y20d{bottom:235.522950px;}
.y248{bottom:235.524300px;}
.y1f5{bottom:235.527300px;}
.yf3{bottom:235.527450px;}
.y233{bottom:235.675500px;}
.y272{bottom:237.516300px;}
.y40{bottom:237.661350px;}
.y1a1{bottom:237.768900px;}
.y90{bottom:237.971250px;}
.y2fe{bottom:238.713000px;}
.y319{bottom:238.904100px;}
.y419{bottom:239.903850px;}
.y2ce{bottom:240.946200px;}
.y3de{bottom:243.151800px;}
.yc8{bottom:244.556250px;}
.y132{bottom:244.670100px;}
.y21c{bottom:244.677000px;}
.y424{bottom:244.677750px;}
.y1cd{bottom:244.678500px;}
.y3f3{bottom:244.679250px;}
.y353{bottom:244.680000px;}
.y152{bottom:244.681500px;}
.y365{bottom:244.682250px;}
.y3bf{bottom:244.683000px;}
.y378{bottom:244.696500px;}
.y43b{bottom:244.705500px;}
.y2a2{bottom:249.446700px;}
.y247{bottom:250.522800px;}
.y1f4{bottom:250.525800px;}
.yf2{bottom:250.525950px;}
.y232{bottom:252.175500px;}
.y237{bottom:252.321000px;}
.y271{bottom:252.514800px;}
.y1a0{bottom:252.767400px;}
.y2fd{bottom:253.711500px;}
.y69{bottom:258.309600px;}
.y413{bottom:259.403850px;}
.y2cd{bottom:260.197200px;}
.y11a{bottom:264.177000px;}
.y3f2{bottom:264.177750px;}
.y1bc{bottom:264.178500px;}
.y151{bottom:264.180000px;}
.y3be{bottom:264.181500px;}
.y131{bottom:264.184350px;}
.y32f{bottom:264.184500px;}
.y377{bottom:264.195000px;}
.y364{bottom:264.196500px;}
.y3a8{bottom:264.201750px;}
.y43a{bottom:264.204000px;}
.y345{bottom:264.207000px;}
.y1f3{bottom:265.524300px;}
.yf1{bottom:265.524450px;}
.y318{bottom:265.911600px;}
.yac{bottom:267.895950px;}
.y231{bottom:268.675500px;}
.y2a1{bottom:268.697700px;}
.y8f{bottom:268.727100px;}
.y236{bottom:268.821000px;}
.y270{bottom:271.765800px;}
.y2fc{bottom:272.962500px;}
.y2cc{bottom:275.195700px;}
.y418{bottom:277.904100px;}
.y1f2{bottom:280.522800px;}
.yf0{bottom:280.524450px;}
.y3dd{bottom:281.159700px;}
.y423{bottom:283.674750px;}
.y3f1{bottom:283.676250px;}
.y119{bottom:283.677000px;}
.y150{bottom:283.678500px;}
.y1cc{bottom:283.680000px;}
.y32e{bottom:283.683000px;}
.y376{bottom:283.693500px;}
.y2a0{bottom:283.697700px;}
.y3a7{bottom:283.700250px;}
.y439{bottom:283.702500px;}
.y344{bottom:283.705500px;}
.y230{bottom:285.175500px;}
.y235{bottom:285.321000px;}
.y68{bottom:286.313100px;}
.y2fb{bottom:287.961000px;}
.y26f{bottom:291.016800px;}
.y2cb{bottom:294.446700px;}
.y3f{bottom:294.666600px;}
.yef{bottom:295.524450px;}
.y412{bottom:297.404100px;}
.y189{bottom:297.919500px;}
.y8e{bottom:297.979950px;}
.y190{bottom:298.072200px;}
.y29f{bottom:298.723650px;}
.y422{bottom:303.173250px;}
.y3f0{bottom:303.174750px;}
.y352{bottom:303.175500px;}
.y14f{bottom:303.177000px;}
.y1cb{bottom:303.178500px;}
.y118{bottom:303.179250px;}
.yc7{bottom:303.179850px;}
.y130{bottom:303.181350px;}
.y32d{bottom:303.181500px;}
.y375{bottom:303.192000px;}
.y363{bottom:303.193500px;}
.y3a6{bottom:303.198750px;}
.y438{bottom:303.201000px;}
.y417{bottom:304.911600px;}
.y2a{bottom:305.642850px;}
.y2fa{bottom:307.212000px;}
.y3e{bottom:308.921100px;}
.y2ca{bottom:309.445200px;}
.y26e{bottom:310.267800px;}
.yee{bottom:310.524600px;}
.y67{bottom:314.316600px;}
.y188{bottom:314.419500px;}
.y8d{bottom:314.479950px;}
.y18f{bottom:314.572200px;}
.y29e{bottom:317.988150px;}
.y2f9{bottom:322.210500px;}
.y421{bottom:322.671750px;}
.y317{bottom:322.673850px;}
.y14e{bottom:322.675500px;}
.y1ca{bottom:322.677000px;}
.y117{bottom:322.677750px;}
.yc6{bottom:322.678350px;}
.y246{bottom:322.678500px;}
.y12f{bottom:322.679850px;}
.y19f{bottom:322.680000px;}
.y1bb{bottom:322.681500px;}
.y23e{bottom:322.683000px;}
.y3ef{bottom:322.689000px;}
.y362{bottom:322.692000px;}
.y395{bottom:322.698750px;}
.y437{bottom:322.699500px;}
.y343{bottom:322.702500px;}
.y3d{bottom:323.175600px;}
.y411{bottom:324.411600px;}
.y26d{bottom:325.266300px;}
.yed{bottom:325.523100px;}
.y2c9{bottom:328.713600px;}
.y187{bottom:330.919500px;}
.y18e{bottom:331.072200px;}
.y66{bottom:333.815100px;}
.y29d{bottom:337.239150px;}
.y3c{bottom:337.430100px;}
.y2f8{bottom:341.461500px;}
.y420{bottom:342.170250px;}
.y21b{bottom:342.175500px;}
.y116{bottom:342.176250px;}
.yc5{bottom:342.176850px;}
.y1c9{bottom:342.177000px;}
.y12e{bottom:342.178350px;}
.y19e{bottom:342.178500px;}
.y1ba{bottom:342.180000px;}
.y23d{bottom:342.181500px;}
.y3ee{bottom:342.187500px;}
.y316{bottom:342.188100px;}
.y374{bottom:342.189000px;}
.y361{bottom:342.190500px;}
.y1f1{bottom:342.192000px;}
.y3dc{bottom:342.195000px;}
.y3a5{bottom:342.195750px;}
.y394{bottom:342.197250px;}
.y436{bottom:342.198000px;}
.y342{bottom:342.201000px;}
.y3bd{bottom:342.208500px;}
.y26c{bottom:344.517300px;}
.y351{bottom:344.903850px;}
.y8c{bottom:345.229950px;}
.y2c8{bottom:347.964600px;}
.y29c{bottom:352.237650px;}
.y2f7{bottom:356.460000px;}
.y15f{bottom:357.639900px;}
.y3cb{bottom:360.151800px;}
.y41f{bottom:361.668750px;}
.y115{bottom:361.674750px;}
.y12d{bottom:361.676850px;}
.y19d{bottom:361.677000px;}
.y20c{bottom:361.678500px;}
.yc4{bottom:361.679850px;}
.y23c{bottom:361.680000px;}
.y416{bottom:361.687500px;}
.y360{bottom:361.689000px;}
.y1f0{bottom:361.690500px;}
.y3a4{bottom:361.694250px;}
.y393{bottom:361.695750px;}
.y341{bottom:361.699500px;}
.y3bc{bottom:361.707000px;}
.y65{bottom:361.818600px;}
.yab{bottom:362.062800px;}
.y2c7{bottom:362.963100px;}
.y26b{bottom:363.768150px;}
.y170{bottom:364.415700px;}
.y178{bottom:367.549350px;}
.y29b{bottom:371.488650px;}
.y15e{bottom:374.139900px;}
.y14d{bottom:374.171550px;}
.y2f6{bottom:375.711000px;}
.y16f{bottom:380.915700px;}
.y114{bottom:381.173250px;}
.y32c{bottom:381.175500px;}
.y19c{bottom:381.177000px;}
.yc3{bottom:381.178350px;}
.y23b{bottom:381.178500px;}
.y1dd{bottom:381.183000px;}
.y3ed{bottom:381.184500px;}
.y315{bottom:381.185100px;}
.y373{bottom:381.186000px;}
.y35f{bottom:381.187500px;}
.y1ef{bottom:381.189000px;}
.y3db{bottom:381.192000px;}
.y3a3{bottom:381.192750px;}
.y392{bottom:381.194250px;}
.y435{bottom:381.195000px;}
.y340{bottom:381.198000px;}
.y410{bottom:381.201000px;}
.y3bb{bottom:381.205500px;}
.y64{bottom:381.317100px;}
.y2c6{bottom:382.214100px;}
.y350{bottom:382.911600px;}
.y26a{bottom:383.019150px;}
.y402{bottom:383.903850px;}
.y177{bottom:384.049350px;}
.y15d{bottom:390.639900px;}
.y14c{bottom:390.671550px;}
.y2f5{bottom:390.709500px;}
.y29a{bottom:390.739650px;}
.y21a{bottom:390.919500px;}
.y226{bottom:391.020150px;}
.yaa{bottom:392.818650px;}
.y269{bottom:398.017650px;}
.y3ca{bottom:398.159700px;}
.y16e{bottom:400.415700px;}
.y176{bottom:400.549350px;}
.y113{bottom:400.671750px;}
.yc2{bottom:400.676850px;}
.y1c8{bottom:400.677000px;}
.y19b{bottom:400.680000px;}
.y41e{bottom:400.681500px;}
.y314{bottom:400.683600px;}
.y372{bottom:400.684500px;}
.y1b9{bottom:400.686000px;}
.y3da{bottom:400.690500px;}
.y391{bottom:400.692750px;}
.y33f{bottom:400.696500px;}
.y3ba{bottom:400.704000px;}
.y2c5{bottom:401.465100px;}
.y8b{bottom:405.250800px;}
.y29{bottom:405.614850px;}
.y15c{bottom:407.139900px;}
.y14b{bottom:407.171550px;}
.y219{bottom:407.419500px;}
.y225{bottom:407.520150px;}
.y63{bottom:409.320600px;}
.y2f4{bottom:409.960500px;}
.y299{bottom:409.990650px;}
.ya9{bottom:410.818650px;}
.y2c4{bottom:416.463600px;}
.y268{bottom:417.268650px;}
.y112{bottom:420.170250px;}
.yec{bottom:420.177000px;}
.y12c{bottom:420.178350px;}
.y19a{bottom:420.178500px;}
.y1dc{bottom:420.180000px;}
.y3ec{bottom:420.181500px;}
.y313{bottom:420.182100px;}
.y371{bottom:420.183000px;}
.y1b8{bottom:420.184500px;}
.yc1{bottom:420.185850px;}
.y1ee{bottom:420.186000px;}
.y3d9{bottom:420.189000px;}
.y3a2{bottom:420.189750px;}
.y390{bottom:420.191250px;}
.y434{bottom:420.192000px;}
.y33e{bottom:420.195000px;}
.y40f{bottom:420.198000px;}
.y3b9{bottom:420.202500px;}
.y401{bottom:421.911600px;}
.y32b{bottom:422.903850px;}
.y8a{bottom:423.250800px;}
.y218{bottom:423.919500px;}
.y224{bottom:424.020150px;}
.y298{bottom:424.989150px;}
.y2f3{bottom:429.211500px;}
.y28{bottom:430.616850px;}
.y267{bottom:432.267150px;}
.y2c3{bottom:435.714600px;}
.y3b{bottom:437.166600px;}
.y62{bottom:437.324100px;}
.y23a{bottom:439.675500px;}
.y20b{bottom:439.677000px;}
.y1db{bottom:439.678500px;}
.y3eb{bottom:439.680000px;}
.y312{bottom:439.680600px;}
.yeb{bottom:439.681500px;}
.y1b7{bottom:439.683000px;}
.yc0{bottom:439.684350px;}
.y111{bottom:439.684500px;}
.y3d8{bottom:439.687500px;}
.y3a1{bottom:439.688250px;}
.y38f{bottom:439.689750px;}
.y433{bottom:439.690500px;}
.y33d{bottom:439.693500px;}
.y40e{bottom:439.696500px;}
.y34f{bottom:439.711500px;}
.y89{bottom:441.250800px;}
.ya8{bottom:441.574500px;}
.y1d{bottom:441.837150px;}
.y2f2{bottom:444.210000px;}
.y297{bottom:444.240150px;}
.y2c2{bottom:450.713100px;}
.y266{bottom:451.518150px;}
.y3a{bottom:454.266600px;}
.y27{bottom:455.618850px;}
.y20a{bottom:459.175500px;}
.y1da{bottom:459.177000px;}
.y12b{bottom:459.178350px;}
.y3ea{bottom:459.178500px;}
.y311{bottom:459.179100px;}
.yea{bottom:459.180000px;}
.y186{bottom:459.181500px;}
.ybf{bottom:459.182850px;}
.y110{bottom:459.183000px;}
.y3d7{bottom:459.186000px;}
.y3a0{bottom:459.186750px;}
.y38e{bottom:459.188250px;}
.y432{bottom:459.189000px;}
.y40d{bottom:459.195000px;}
.y3b8{bottom:459.199500px;}
.y34e{bottom:459.210000px;}
.y296{bottom:459.238650px;}
.y1c{bottom:459.832650px;}
.y32a{bottom:460.911600px;}
.y2f1{bottom:463.461000px;}
.y61{bottom:465.327600px;}
.y265{bottom:466.530150px;}
.y2c1{bottom:469.964100px;}
.y39{bottom:471.366600px;}
.y88{bottom:472.006650px;}
.ya7{bottom:472.330500px;}
.y1b{bottom:477.828150px;}
.y295{bottom:478.489650px;}
.y41d{bottom:478.675500px;}
.y12a{bottom:478.676850px;}
.y3e9{bottom:478.677000px;}
.y310{bottom:478.677600px;}
.ye9{bottom:478.678500px;}
.y185{bottom:478.680000px;}
.ybe{bottom:478.681350px;}
.y10f{bottom:478.681500px;}
.y400{bottom:478.683750px;}
.y39f{bottom:478.685250px;}
.y38d{bottom:478.686750px;}
.y431{bottom:478.687500px;}
.y33c{bottom:478.690500px;}
.y40c{bottom:478.693500px;}
.y2{bottom:479.122800px;}
.y26{bottom:480.606150px;}
.y2f0{bottom:482.728650px;}
.y264{bottom:485.781150px;}
.y239{bottom:488.171550px;}
.y2c0{bottom:489.215100px;}
.y87{bottom:490.006650px;}
.ya6{bottom:490.330500px;}
.y60{bottom:491.834850px;}
.y1a{bottom:495.823650px;}
.y294{bottom:497.740650px;}
.y3e8{bottom:498.175500px;}
.y30f{bottom:498.176100px;}
.ye8{bottom:498.177000px;}
.y184{bottom:498.178500px;}
.ybd{bottom:498.179850px;}
.y129{bottom:498.180000px;}
.y3ff{bottom:498.182250px;}
.y3d6{bottom:498.183000px;}
.y3c9{bottom:498.183750px;}
.y430{bottom:498.186000px;}
.y33b{bottom:498.189000px;}
.y40b{bottom:498.192000px;}
.y3b7{bottom:498.196500px;}
.y38c{bottom:498.201000px;}
.y34d{bottom:498.207000px;}
.y263{bottom:500.779650px;}
.y2ef{bottom:501.979650px;}
.y2bf{bottom:504.213600px;}
.y238{bottom:504.671550px;}
.y25{bottom:505.608150px;}
.y217{bottom:506.376150px;}
.y209{bottom:506.419500px;}
.y86{bottom:508.006650px;}
.y5f{bottom:511.333350px;}
.y19{bottom:513.819150px;}
.y2ee{bottom:516.978150px;}
.y293{bottom:516.991650px;}
.y1d9{bottom:517.675500px;}
.y183{bottom:517.677000px;}
.ybc{bottom:517.678350px;}
.y10e{bottom:517.678500px;}
.y39e{bottom:517.682250px;}
.ye7{bottom:517.683000px;}
.y42f{bottom:517.684500px;}
.y40a{bottom:517.690500px;}
.y3b6{bottom:517.695000px;}
.y329{bottom:517.705500px;}
.y1{bottom:518.122800px;}
.ya5{bottom:519.586350px;}
.y262{bottom:520.030650px;}
.y216{bottom:522.876150px;}
.y208{bottom:522.919500px;}
.y2be{bottom:523.464600px;}
.y24{bottom:530.610150px;}
.y18{bottom:531.814650px;}
.y2ed{bottom:531.976650px;}
.y292{bottom:531.990150px;}
.y41c{bottom:532.403850px;}
.y261{bottom:535.029150px;}
.y30e{bottom:537.173100px;}
.y35e{bottom:537.175500px;}
.ybb{bottom:537.176850px;}
.y10d{bottom:537.177000px;}
.y14a{bottom:537.178500px;}
.y3fe{bottom:537.179250px;}
.y3d5{bottom:537.180000px;}
.y39d{bottom:537.180750px;}
.ye6{bottom:537.181500px;}
.y199{bottom:537.183000px;}
.y16d{bottom:537.186000px;}
.y409{bottom:537.189000px;}
.y3b5{bottom:537.193500px;}
.y38b{bottom:537.198000px;}
.y34c{bottom:537.204000px;}
.y85{bottom:538.762650px;}
.y5e{bottom:539.336850px;}
.y215{bottom:539.376150px;}
.y207{bottom:539.419500px;}
.y3e7{bottom:539.903850px;}
.y2bd{bottom:542.715600px;}
.y17{bottom:549.810150px;}
.ya4{bottom:550.342350px;}
.y2ec{bottom:551.227650px;}
.y291{bottom:551.241150px;}
.y1d8{bottom:552.671550px;}
.y260{bottom:554.276850px;}
.y149{bottom:556.677000px;}
.y3fd{bottom:556.677750px;}
.yba{bottom:556.678350px;}
.y10c{bottom:556.678500px;}
.y3c8{bottom:556.679250px;}
.ye5{bottom:556.680000px;}
.y198{bottom:556.681500px;}
.y16c{bottom:556.684500px;}
.y30d{bottom:556.687350px;}
.y22f{bottom:556.687500px;}
.y128{bottom:556.689000px;}
.y3b4{bottom:556.692000px;}
.y182{bottom:556.695000px;}
.y38a{bottom:556.696500px;}
.y328{bottom:556.702500px;}
.y84{bottom:556.762650px;}
.y2bc{bottom:557.714100px;}
.y415{bottom:559.403850px;}
.y370{bottom:559.651800px;}
.y290{bottom:566.239650px;}
.ya3{bottom:566.842350px;}
.y5d{bottom:567.340350px;}
.y16{bottom:567.805650px;}
.y41b{bottom:570.404100px;}
.y2eb{bottom:570.478650px;}
.y25f{bottom:573.527850px;}
.y3fc{bottom:576.176250px;}
.yb9{bottom:576.176850px;}
.y10b{bottom:576.177000px;}
.y39c{bottom:576.177750px;}
.ye4{bottom:576.178500px;}
.y148{bottom:576.180000px;}
.y16b{bottom:576.183000px;}
.y22e{bottom:576.186000px;}
.y127{bottom:576.187500px;}
.y3b3{bottom:576.190500px;}
.y181{bottom:576.193500px;}
.y327{bottom:576.201000px;}
.y2bb{bottom:576.965100px;}
.y3e6{bottom:577.911600px;}
.ya2{bottom:583.342350px;}
.y28f{bottom:585.490650px;}
.y35d{bottom:586.651800px;}
.y83{bottom:587.518500px;}
.y25e{bottom:588.526350px;}
.y2ea{bottom:589.729650px;}
.y2ba{bottom:591.963600px;}
.y229{bottom:592.939050px;}
.y15{bottom:594.306150px;}
.y39b{bottom:595.676250px;}
.yb8{bottom:595.676850px;}
.ye3{bottom:595.677000px;}
.y147{bottom:595.678500px;}
.y16a{bottom:595.681500px;}
.y30c{bottom:595.684350px;}
.y22d{bottom:595.684500px;}
.y10a{bottom:595.686000px;}
.y3b2{bottom:595.689000px;}
.y3fb{bottom:595.690500px;}
.y180{bottom:595.692000px;}
.y389{bottom:595.693500px;}
.y326{bottom:595.699500px;}
.y5c{bottom:596.840100px;}
.y414{bottom:597.411600px;}
.y36f{bottom:597.644700px;}
.y28e{bottom:600.489150px;}
.y2e9{bottom:604.728150px;}
.y23{bottom:605.574900px;}
.y25d{bottom:607.790850px;}
.y228{bottom:609.439050px;}
.y2b9{bottom:611.214600px;}
.y14{bottom:612.301650px;}
.ya1{bottom:614.095050px;}
.y3d4{bottom:615.175500px;}
.ye2{bottom:615.177000px;}
.y169{bottom:615.180000px;}
.yb7{bottom:615.182850px;}
.y22c{bottom:615.183000px;}
.y109{bottom:615.184500px;}
.y3b1{bottom:615.187500px;}
.y3fa{bottom:615.189000px;}
.y17f{bottom:615.190500px;}
.y388{bottom:615.192000px;}
.y325{bottom:615.198000px;}
.y5b{bottom:616.338600px;}
.y82{bottom:618.274350px;}
.y28d{bottom:619.740150px;}
.y2e8{bottom:623.979150px;}
.y35c{bottom:624.652200px;}
.y227{bottom:625.939050px;}
.y2b8{bottom:626.213100px;}
.y13{bottom:630.297150px;}
.ya0{bottom:630.595050px;}
.y206{bottom:634.675500px;}
.ye1{bottom:634.678500px;}
.yb6{bottom:634.681350px;}
.y1b6{bottom:634.681500px;}
.y108{bottom:634.683000px;}
.y3b0{bottom:634.686000px;}
.y3f9{bottom:634.687500px;}
.y17e{bottom:634.689000px;}
.y387{bottom:634.690500px;}
.y324{bottom:634.696500px;}
.y28c{bottom:634.738650px;}
.y2e7{bottom:638.977650px;}
.y5a{bottom:644.342100px;}
.y2b7{bottom:645.477600px;}
.y22{bottom:645.588900px;}
.y25c{bottom:646.292850px;}
.y12{bottom:648.292650px;}
.y81{bottom:649.030350px;}
.y35b{bottom:651.659700px;}
.y28b{bottom:653.989650px;}
.ye0{bottom:654.177000px;}
.yb5{bottom:654.179850px;}
.y1b5{bottom:654.180000px;}
.y126{bottom:654.181500px;}
.y3af{bottom:654.184500px;}
.y17d{bottom:654.187500px;}
.y386{bottom:654.189000px;}
.y323{bottom:654.195000px;}
.y79{bottom:658.055400px;}
.y2e6{bottom:658.228650px;}
.y38{bottom:659.466600px;}
.y2b6{bottom:660.476100px;}
.y9f{bottom:661.345050px;}
.y25b{bottom:665.543850px;}
.y11{bottom:666.288150px;}
.y3d3{bottom:668.903850px;}
.y28a{bottom:668.988150px;}
.y59{bottom:672.345600px;}
.y197{bottom:673.675500px;}
.ydf{bottom:673.677000px;}
.yb4{bottom:673.678350px;}
.y1b4{bottom:673.678500px;}
.y107{bottom:673.680000px;}
.y146{bottom:673.681500px;}
.y3ae{bottom:673.683000px;}
.y3f8{bottom:673.684500px;}
.y17c{bottom:673.686000px;}
.y385{bottom:673.687500px;}
.y168{bottom:673.690500px;}
.y322{bottom:673.693500px;}
.y42e{bottom:676.403850px;}
.y37{bottom:676.566600px;}
.y2e5{bottom:677.479650px;}
.y80{bottom:678.289950px;}
.y2b5{bottom:679.727100px;}
.y25a{bottom:684.794850px;}
.y78{bottom:686.058900px;}
.y289{bottom:688.239150px;}
.y2e4{bottom:692.478150px;}
.y10{bottom:692.788650px;}
.yb3{bottom:693.176850px;}
.y1b3{bottom:693.177000px;}
.y106{bottom:693.178500px;}
.yde{bottom:693.180000px;}
.y3ad{bottom:693.181500px;}
.y3f7{bottom:693.183000px;}
.y17b{bottom:693.184500px;}
.y384{bottom:693.186000px;}
.y205{bottom:693.187500px;}
.y167{bottom:693.189000px;}
.y321{bottom:693.192000px;}
.y36{bottom:693.666600px;}
.y58{bottom:698.852850px;}
.y2b4{bottom:698.978100px;}
.y288{bottom:703.237650px;}
.y259{bottom:704.045850px;}
.y3d2{bottom:706.904100px;}
.y7f{bottom:707.539950px;}
.y33a{bottom:707.903850px;}
.y35{bottom:710.766600px;}
.yf{bottom:710.784150px;}
.y2e3{bottom:711.729150px;}
.y36e{bottom:712.674750px;}
.yb2{bottom:712.675350px;}
.y408{bottom:712.675500px;}
.y105{bottom:712.677000px;}
.ydd{bottom:712.678500px;}
.y22b{bottom:712.680000px;}
.y1ed{bottom:712.681500px;}
.y17a{bottom:712.683000px;}
.y383{bottom:712.684500px;}
.y204{bottom:712.686000px;}
.y166{bottom:712.687500px;}
.y320{bottom:712.690500px;}
.y42d{bottom:714.411600px;}
.y2b3{bottom:718.229100px;}
.y77{bottom:718.566900px;}
.y9e{bottom:721.365900px;}
.y287{bottom:722.488650px;}
.y258{bottom:723.296850px;}
.y2e2{bottom:726.727650px;}
.y57{bottom:726.856350px;}
.ye{bottom:728.779650px;}
.y125{bottom:732.175500px;}
.ydc{bottom:732.177000px;}
.y22a{bottom:732.178500px;}
.y1ec{bottom:732.180000px;}
.y179{bottom:732.181500px;}
.y382{bottom:732.183000px;}
.y203{bottom:732.184500px;}
.y165{bottom:732.186000px;}
.y104{bottom:732.187500px;}
.y31f{bottom:732.189000px;}
.y3d1{bottom:733.911600px;}
.y2b2{bottom:737.480100px;}
.y286{bottom:737.487150px;}
.y257{bottom:742.548900px;}
.y339{bottom:745.904100px;}
.y2e1{bottom:745.978650px;}
.y76{bottom:746.570400px;}
.yd{bottom:746.775150px;}
.y30b{bottom:748.532100px;}
.y1b2{bottom:751.677000px;}
.ydb{bottom:751.678500px;}
.y145{bottom:751.680000px;}
.y381{bottom:751.681500px;}
.y202{bottom:751.683000px;}
.y164{bottom:751.684500px;}
.y103{bottom:751.686000px;}
.y196{bottom:751.687500px;}
.y9d{bottom:752.121900px;}
.y407{bottom:754.403850px;}
.y56{bottom:754.859850px;}
.y2b1{bottom:756.731100px;}
.y285{bottom:756.738150px;}
.y2e0{bottom:760.977150px;}
.y256{bottom:761.799900px;}
.y1c7{bottom:764.171550px;}
.yc{bottom:764.770650px;}
.y75{bottom:766.068900px;}
.y3ac{bottom:771.175500px;}
.y1eb{bottom:771.177000px;}
.y144{bottom:771.178500px;}
.y380{bottom:771.180000px;}
.y1b1{bottom:771.181500px;}
.y163{bottom:771.183000px;}
.y102{bottom:771.184500px;}
.y195{bottom:771.186000px;}
.y124{bottom:771.671550px;}
.y13e{bottom:771.699000px;}
.y2b0{bottom:771.729600px;}
.y284{bottom:771.736650px;}
.y7e{bottom:771.797850px;}
.y338{bottom:772.911600px;}
.y34{bottom:777.371100px;}
.y2df{bottom:780.241650px;}
.y1c6{bottom:780.671550px;}
.yb{bottom:782.766150px;}
.y9c{bottom:782.877750px;}
.y55{bottom:784.359600px;}
.y30a{bottom:786.533700px;}
.y123{bottom:788.171550px;}
.y13d{bottom:788.199000px;}
.y7d{bottom:789.797850px;}
.y143{bottom:790.677000px;}
.yda{bottom:790.678500px;}
.y1b0{bottom:790.680000px;}
.y162{bottom:790.681500px;}
.y101{bottom:790.683000px;}
.y194{bottom:790.684500px;}
.y2af{bottom:790.980600px;}
.y283{bottom:790.987650px;}
.y406{bottom:792.411600px;}
.y33{bottom:793.573350px;}
.y74{bottom:794.072400px;}
.y9b{bottom:799.377750px;}
.y2de{bottom:799.492650px;}
.y255{bottom:804.555750px;}
.y122{bottom:804.671550px;}
.y13c{bottom:804.699000px;}
.y282{bottom:805.986150px;}
.ya{bottom:809.266650px;}
.y32{bottom:809.775600px;}
.y39a{bottom:810.175500px;}
.yd9{bottom:810.177000px;}
.y1af{bottom:810.178500px;}
.y161{bottom:810.180000px;}
.y100{bottom:810.181500px;}
.y142{bottom:810.183000px;}
.y2ae{bottom:810.238650px;}
.y54{bottom:812.363100px;}
.y309{bottom:813.541200px;}
.y73{bottom:813.570900px;}
.yb1{bottom:813.799800px;}
.y308{bottom:814.491150px;}
.y2dd{bottom:818.743650px;}
.y7c{bottom:824.807850px;}
.y281{bottom:825.237150px;}
.y31{bottom:825.977850px;}
.y3ab{bottom:826.809750px;}
.y9{bottom:827.262150px;}
.y2ad{bottom:829.489650px;}
.y37f{bottom:829.675500px;}
.y201{bottom:829.677000px;}
.y160{bottom:829.678500px;}
.yd8{bottom:829.680000px;}
.y141{bottom:829.681500px;}
.y9a{bottom:830.133600px;}
.y2dc{bottom:833.742150px;}
.y72{bottom:841.574400px;}
.y53{bottom:841.862850px;}
.y30{bottom:842.180100px;}
.y7b{bottom:842.807850px;}
.y280{bottom:844.488150px;}
.y8{bottom:845.257650px;}
.y399{bottom:847.815750px;}
.y99{bottom:848.133600px;}
.y2db{bottom:848.740650px;}
.y1ea{bottom:849.177000px;}
.yd7{bottom:849.178500px;}
.y140{bottom:849.180000px;}
.yb0{bottom:851.800200px;}
.y7{bottom:863.253150px;}
.y27f{bottom:863.739150px;}
.y2da{bottom:867.991650px;}
.yd6{bottom:868.677000px;}
.y13f{bottom:868.678500px;}
.y71{bottom:869.577900px;}
.y2f{bottom:874.580100px;}
.y3f6{bottom:874.815750px;}
.y98{bottom:877.389600px;}
.y37e{bottom:878.171550px;}
.yaf{bottom:878.807700px;}
.y6{bottom:881.248650px;}
.y27e{bottom:882.990150px;}
.y398{bottom:885.816150px;}
.y2d9{bottom:887.242650px;}
.yd5{bottom:888.177000px;}
.y2e{bottom:892.580100px;}
.y21{bottom:894.525000px;}
.y97{bottom:895.389600px;}
.y70{bottom:896.085150px;}
.y27d{bottom:897.988650px;}
.y5{bottom:899.244150px;}
.y2ac{bottom:902.241150px;}
.yd4{bottom:907.675500px;}
.y20{bottom:911.719650px;}
.y397{bottom:912.823650px;}
.y6f{bottom:915.583650px;}
.y2d{bottom:916.580100px;}
.y4{bottom:917.239650px;}
.y7a{bottom:921.327600px;}
.y52{bottom:923.878650px;}
.y96{bottom:924.639600px;}
.yd3{bottom:969.840900px;}
.h34{height:36.072000px;}
.h6{height:38.076000px;}
.h3{height:38.412000px;}
.h13{height:38.592000px;}
.h19{height:40.080000px;}
.h12{height:41.004000px;}
.h2b{height:41.273438px;}
.h41{height:41.980080px;}
.h43{height:43.362000px;}
.h5{height:43.416000px;}
.h3f{height:43.429200px;}
.h4{height:43.794000px;}
.h7{height:45.828000px;}
.h11{height:46.227000px;}
.h38{height:46.605240px;}
.h33{height:46.609440px;}
.h44{height:46.616640px;}
.h27{height:46.617240px;}
.h45{height:46.619640px;}
.h39{height:46.642440px;}
.h3c{height:46.653240px;}
.h2f{height:46.653840px;}
.h3a{height:46.654440px;}
.h35{height:46.655640px;}
.h36{height:46.662240px;}
.h3b{height:46.673640px;}
.h25{height:46.679640px;}
.h26{height:46.680240px;}
.h3e{height:46.682640px;}
.h3d{height:46.686240px;}
.h40{height:46.686840px;}
.hb{height:48.096000px;}
.h42{height:48.211800px;}
.h18{height:48.216000px;}
.h1a{height:48.216600px;}
.h1b{height:48.228600px;}
.hd{height:48.240000px;}
.h17{height:48.248400px;}
.h10{height:48.660000px;}
.h1d{height:49.605054px;}
.h2a{height:50.062500px;}
.h16{height:50.652000px;}
.h15{height:51.093000px;}
.h9{height:53.064000px;}
.h4a{height:54.329280px;}
.h48{height:54.335280px;}
.h47{height:54.374280px;}
.h32{height:54.389280px;}
.h37{height:54.401280px;}
.h30{height:54.407280px;}
.h2c{height:54.413280px;}
.h28{height:54.419280px;}
.h46{height:54.422280px;}
.h22{height:54.425280px;}
.h2e{height:54.431280px;}
.h1f{height:54.437280px;}
.h24{height:54.443280px;}
.h2d{height:54.448680px;}
.h23{height:54.449280px;}
.h29{height:54.452280px;}
.h21{height:54.455280px;}
.h20{height:54.461280px;}
.h31{height:54.467280px;}
.ha{height:57.888000px;}
.hc{height:57.946800px;}
.h14{height:63.258000px;}
.h1e{height:67.465680px;}
.h8{height:67.536000px;}
.h49{height:70.628906px;}
.h2{height:125.424000px;}
.h1c{height:446.883000px;}
.h0{height:1018.932450px;}
.h1{height:1019.250000px;}
.he{height:1020.533400px;}
.hf{height:1020.750000px;}
.w4{width:13.162500px;}
.w3{width:723.000000px;}
.w2{width:723.265950px;}
.w1{width:724.500000px;}
.w0{width:724.663200px;}
.x0{left:0.000000px;}
.x1e{left:10.665300px;}
.x3{left:15.215550px;}
.x1d{left:32.140200px;}
.x17{left:63.995100px;}
.x4{left:76.750950px;}
.x18{left:85.250100px;}
.x53{left:88.000200px;}
.x54{left:91.608150px;}
.x13{left:93.758850px;}
.x24{left:98.003250px;}
.x3e{left:102.220050px;}
.x4e{left:103.626600px;}
.x1b{left:106.511400px;}
.x55{left:112.695450px;}
.xd{left:114.213600px;}
.x3d{left:118.148850px;}
.x25{left:119.274300px;}
.x5c{left:122.207700px;}
.x23{left:123.526500px;}
.xc{left:127.983600px;}
.xa{left:130.157550px;}
.x50{left:134.474700px;}
.xf{left:139.197600px;}
.x9{left:142.973550px;}
.x41{left:149.327400px;}
.x42{left:159.330900px;}
.x1{left:162.718800px;}
.x7{left:164.844750px;}
.x31{left:176.975250px;}
.x3f{left:178.582050px;}
.x20{left:187.550700px;}
.xb{left:195.335550px;}
.x5a{left:198.133350px;}
.x4d{left:199.193400px;}
.x1c{left:201.445050px;}
.x48{left:209.249400px;}
.x2{left:231.982800px;}
.x8{left:234.108750px;}
.x4f{left:239.220000px;}
.x5d{left:241.953600px;}
.xe{left:244.659600px;}
.x37{left:257.939250px;}
.x1a{left:277.085100px;}
.x19{left:280.220100px;}
.x40{left:282.074700px;}
.x15{left:288.257850px;}
.x1f{left:290.575950px;}
.x2f{left:291.845550px;}
.x6{left:293.080350px;}
.x5{left:299.404050px;}
.x14{left:305.265600px;}
.x2a{left:307.550700px;}
.x43{left:311.412150px;}
.x10{left:312.443550px;}
.x34{left:320.207550px;}
.x56{left:324.613650px;}
.x39{left:331.341450px;}
.x49{left:354.524400px;}
.x26{left:361.484250px;}
.x28{left:370.218300px;}
.x35{left:372.350550px;}
.x2c{left:374.537400px;}
.x27{left:389.695950px;}
.x29{left:390.801450px;}
.x2b{left:395.436150px;}
.x11{left:400.050000px;}
.x2e{left:402.310800px;}
.x44{left:403.577700px;}
.x47{left:405.322350px;}
.x58{left:407.062950px;}
.x3c{left:413.937000px;}
.x3b{left:420.727950px;}
.x2d{left:433.066650px;}
.x51{left:439.507950px;}
.x32{left:446.309250px;}
.x45{left:451.652850px;}
.x38{left:456.489300px;}
.x52{left:465.125850px;}
.x33{left:475.931250px;}
.x16{left:478.483500px;}
.x21{left:502.807200px;}
.x4c{left:507.155700px;}
.x3a{left:510.598800px;}
.x4b{left:512.234850px;}
.x46{left:520.190550px;}
.x4a{left:524.727000px;}
.x22{left:531.352050px;}
.x57{left:534.034350px;}
.x5b{left:535.040250px;}
.x59{left:543.322350px;}
.x36{left:555.418650px;}
.x30{left:578.343750px;}
.x12{left:585.733800px;}
@media print{
.v7{vertical-align:-19.600000pt;}
.v5{vertical-align:-16.800000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.933333pt;}
.v4{vertical-align:16.794133pt;}
.v3{vertical-align:19.573333pt;}
.v1{vertical-align:22.452267pt;}
.v2{vertical-align:24.293333pt;}
.ls4f{letter-spacing:-4.536000pt;}
.ls26{letter-spacing:-4.320000pt;}
.ls45{letter-spacing:-3.840000pt;}
.ls50{letter-spacing:-3.360000pt;}
.ls2b{letter-spacing:-3.136000pt;}
.ls43{letter-spacing:-2.867200pt;}
.ls21{letter-spacing:-2.800000pt;}
.ls4c{letter-spacing:-2.576000pt;}
.ls6{letter-spacing:-2.240000pt;}
.ls3e{letter-spacing:-2.072000pt;}
.ls29{letter-spacing:-2.016000pt;}
.ls48{letter-spacing:-1.920000pt;}
.ls5{letter-spacing:-1.680000pt;}
.lsb{letter-spacing:-1.600000pt;}
.ls24{letter-spacing:-1.440000pt;}
.ls35{letter-spacing:-1.400000pt;}
.lsd{letter-spacing:-1.333333pt;}
.ls3c{letter-spacing:-1.254400pt;}
.ls42{letter-spacing:-1.200000pt;}
.ls4{letter-spacing:-1.120000pt;}
.ls3f{letter-spacing:-1.075200pt;}
.ls1{letter-spacing:-0.960000pt;}
.ls40{letter-spacing:-0.896000pt;}
.ls2f{letter-spacing:-0.816000pt;}
.ls23{letter-spacing:-0.720000pt;}
.ls38{letter-spacing:-0.716800pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.560000pt;}
.ls22{letter-spacing:-0.537600pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.358400pt;}
.ls47{letter-spacing:-0.307200pt;}
.lsc{letter-spacing:-0.266667pt;}
.ls32{letter-spacing:-0.224000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.003627pt;}
.ls28{letter-spacing:0.004160pt;}
.ls3a{letter-spacing:0.010667pt;}
.ls34{letter-spacing:0.011200pt;}
.ls2c{letter-spacing:0.013333pt;}
.ls15{letter-spacing:0.019733pt;}
.ls2a{letter-spacing:0.025067pt;}
.ls33{letter-spacing:1.680000pt;}
.ls4e{letter-spacing:2.352000pt;}
.ls1e{letter-spacing:2.448000pt;}
.ls3d{letter-spacing:2.520000pt;}
.ls41{letter-spacing:3.648000pt;}
.ls44{letter-spacing:3.808000pt;}
.ls30{letter-spacing:4.080000pt;}
.lse{letter-spacing:4.266667pt;}
.ls10{letter-spacing:4.533333pt;}
.lsf{letter-spacing:4.800000pt;}
.ls12{letter-spacing:4.853333pt;}
.ls4a{letter-spacing:4.944000pt;}
.ls1c{letter-spacing:5.040000pt;}
.ls11{letter-spacing:5.333333pt;}
.ls4b{letter-spacing:5.376000pt;}
.ls36{letter-spacing:6.239893pt;}
.ls9{letter-spacing:6.400000pt;}
.ls49{letter-spacing:6.720000pt;}
.ls4d{letter-spacing:7.728000pt;}
.ls46{letter-spacing:7.764693pt;}
.ls20{letter-spacing:8.344000pt;}
.ls17{letter-spacing:8.543360pt;}
.ls16{letter-spacing:8.543893pt;}
.ls2d{letter-spacing:8.687893pt;}
.ls2e{letter-spacing:8.690560pt;}
.ls19{letter-spacing:9.503360pt;}
.ls18{letter-spacing:9.503893pt;}
.ls13{letter-spacing:9.800000pt;}
.ls25{letter-spacing:11.032000pt;}
.ls37{letter-spacing:11.951360pt;}
.ls14{letter-spacing:11.951893pt;}
.ls3b{letter-spacing:12.671360pt;}
.ls27{letter-spacing:12.992000pt;}
.ls1a{letter-spacing:22.223893pt;}
.ls39{letter-spacing:23.744000pt;}
.ls8{letter-spacing:29.680000pt;}
.ls7{letter-spacing:72.744000pt;}
.ls2{letter-spacing:97.216000pt;}
.wsf{word-spacing:-72.744000pt;}
.wse{word-spacing:-48.608000pt;}
.ws10{word-spacing:-29.680000pt;}
.ws50{word-spacing:-22.120000pt;}
.ws3a{word-spacing:-20.888000pt;}
.ws46{word-spacing:-19.432000pt;}
.wsa6{word-spacing:-18.816000pt;}
.ws9a{word-spacing:-16.224000pt;}
.ws3d{word-spacing:-16.128000pt;}
.wsa0{word-spacing:-15.904000pt;}
.ws2c{word-spacing:-15.360000pt;}
.ws31{word-spacing:-15.093333pt;}
.ws82{word-spacing:-14.896000pt;}
.ws2a{word-spacing:-14.826667pt;}
.ws76{word-spacing:-13.608000pt;}
.wsa8{word-spacing:-13.440000pt;}
.ws7b{word-spacing:-13.152000pt;}
.ws5{word-spacing:-13.034667pt;}
.ws66{word-spacing:-12.768000pt;}
.ws45{word-spacing:-12.032000pt;}
.wsa9{word-spacing:-11.925333pt;}
.ws7e{word-spacing:-11.872000pt;}
.ws87{word-spacing:-11.861333pt;}
.ws2{word-spacing:-11.648000pt;}
.ws6{word-spacing:-11.088000pt;}
.ws22{word-spacing:-10.560000pt;}
.ws3e{word-spacing:-10.528000pt;}
.ws38{word-spacing:-10.192000pt;}
.ws4{word-spacing:-10.032000pt;}
.ws1c{word-spacing:-10.026667pt;}
.ws9{word-spacing:-9.968000pt;}
.ws6c{word-spacing:-9.688000pt;}
.ws56{word-spacing:-9.632000pt;}
.ws3b{word-spacing:-9.504000pt;}
.ws8{word-spacing:-9.408000pt;}
.ws20{word-spacing:-9.226667pt;}
.ws55{word-spacing:-9.072000pt;}
.ws42{word-spacing:-9.024000pt;}
.ws77{word-spacing:-9.016000pt;}
.ws4c{word-spacing:-8.736000pt;}
.ws62{word-spacing:-8.688000pt;}
.ws95{word-spacing:-8.544000pt;}
.ws57{word-spacing:-8.512000pt;}
.ws9d{word-spacing:-8.304000pt;}
.ws47{word-spacing:-8.288000pt;}
.ws97{word-spacing:-8.064000pt;}
.ws99{word-spacing:-7.824000pt;}
.ws4a{word-spacing:-7.776000pt;}
.wsb1{word-spacing:-7.728000pt;}
.ws3{word-spacing:-7.454720pt;}
.ws4e{word-spacing:-7.296000pt;}
.ws39{word-spacing:-7.096320pt;}
.ws40{word-spacing:-6.737920pt;}
.ws48{word-spacing:-6.558720pt;}
.ws6e{word-spacing:-6.379520pt;}
.ws79{word-spacing:-6.200320pt;}
.ws41{word-spacing:-6.082560pt;}
.ws78{word-spacing:-6.021120pt;}
.ws75{word-spacing:-5.841920pt;}
.ws96{word-spacing:-5.775360pt;}
.ws94{word-spacing:-5.591040pt;}
.ws36{word-spacing:-5.333333pt;}
.ws9b{word-spacing:-4.944000pt;}
.ws37{word-spacing:-4.853333pt;}
.ws80{word-spacing:-4.229120pt;}
.ws63{word-spacing:-4.080000pt;}
.ws44{word-spacing:-2.448000pt;}
.ws34{word-spacing:-1.002667pt;}
.ws9e{word-spacing:-0.753600pt;}
.ws6f{word-spacing:-0.616000pt;}
.ws8f{word-spacing:-0.426667pt;}
.ws3f{word-spacing:-0.056000pt;}
.ws32{word-spacing:-0.051733pt;}
.ws64{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws67{word-spacing:0.112000pt;}
.wsa5{word-spacing:0.196000pt;}
.ws6b{word-spacing:0.224000pt;}
.ws26{word-spacing:0.266667pt;}
.wsad{word-spacing:0.330400pt;}
.ws24{word-spacing:0.533333pt;}
.wsa{word-spacing:0.560000pt;}
.wsab{word-spacing:0.640000pt;}
.ws1{word-spacing:0.960000pt;}
.ws53{word-spacing:0.964800pt;}
.wsc{word-spacing:1.120000pt;}
.ws25{word-spacing:1.600000pt;}
.ws35{word-spacing:1.659733pt;}
.ws2d{word-spacing:1.661333pt;}
.wsb{word-spacing:1.680000pt;}
.ws98{word-spacing:1.920000pt;}
.ws5d{word-spacing:2.016000pt;}
.wsd{word-spacing:2.240000pt;}
.ws28{word-spacing:2.382400pt;}
.ws30{word-spacing:2.525867pt;}
.ws29{word-spacing:2.557333pt;}
.wsa3{word-spacing:2.576000pt;}
.ws93{word-spacing:2.688000pt;}
.wsaf{word-spacing:2.800000pt;}
.ws5f{word-spacing:3.136000pt;}
.ws74{word-spacing:3.374400pt;}
.ws54{word-spacing:4.320000pt;}
.wsa1{word-spacing:4.536000pt;}
.ws5e{word-spacing:6.455253pt;}
.ws6a{word-spacing:7.296000pt;}
.ws33{word-spacing:7.601067pt;}
.ws81{word-spacing:8.090027pt;}
.ws90{word-spacing:8.190507pt;}
.ws2f{word-spacing:9.361067pt;}
.ws60{word-spacing:9.744000pt;}
.ws2b{word-spacing:9.886400pt;}
.ws27{word-spacing:10.689600pt;}
.ws21{word-spacing:12.820800pt;}
.wsae{word-spacing:12.936000pt;}
.wsa7{word-spacing:13.272000pt;}
.ws23{word-spacing:13.779733pt;}
.ws1e{word-spacing:14.034667pt;}
.ws1f{word-spacing:15.920000pt;}
.ws2e{word-spacing:16.344000pt;}
.ws1b{word-spacing:18.053867pt;}
.ws18{word-spacing:21.452267pt;}
.ws1d{word-spacing:21.461333pt;}
.ws11{word-spacing:23.266667pt;}
.ws17{word-spacing:28.462400pt;}
.ws19{word-spacing:29.239467pt;}
.ws1a{word-spacing:29.636800pt;}
.ws13{word-spacing:37.197333pt;}
.ws15{word-spacing:38.359467pt;}
.ws14{word-spacing:41.790933pt;}
.ws16{word-spacing:42.272533pt;}
.ws73{word-spacing:50.928000pt;}
.ws59{word-spacing:52.896000pt;}
.ws72{word-spacing:53.136000pt;}
.ws91{word-spacing:53.328000pt;}
.ws8d{word-spacing:53.904000pt;}
.ws68{word-spacing:54.432000pt;}
.ws85{word-spacing:55.152000pt;}
.ws8e{word-spacing:55.200000pt;}
.ws61{word-spacing:55.488000pt;}
.ws70{word-spacing:55.776000pt;}
.ws71{word-spacing:56.160000pt;}
.ws52{word-spacing:56.304000pt;}
.ws5a{word-spacing:56.400000pt;}
.ws86{word-spacing:56.496000pt;}
.ws8a{word-spacing:56.544000pt;}
.ws58{word-spacing:56.688000pt;}
.ws8b{word-spacing:56.928000pt;}
.ws69{word-spacing:57.216000pt;}
.ws88{word-spacing:57.360000pt;}
.ws12{word-spacing:57.864000pt;}
.ws89{word-spacing:58.464000pt;}
.ws7d{word-spacing:58.944000pt;}
.ws7a{word-spacing:58.992000pt;}
.ws7c{word-spacing:59.280000pt;}
.ws84{word-spacing:59.376000pt;}
.ws49{word-spacing:59.568000pt;}
.ws4d{word-spacing:60.336000pt;}
.ws51{word-spacing:61.440000pt;}
.ws5c{word-spacing:61.920000pt;}
.ws43{word-spacing:63.360000pt;}
.ws4b{word-spacing:63.792000pt;}
.ws83{word-spacing:65.280000pt;}
.ws7{word-spacing:364.610400pt;}
.ws9c{word-spacing:1673.484800pt;}
.ws5b{word-spacing:1673.804800pt;}
.ws8c{word-spacing:1674.316800pt;}
.ws4f{word-spacing:1674.828800pt;}
.ws7f{word-spacing:1675.340800pt;}
.ws65{word-spacing:1675.596800pt;}
.ws6d{word-spacing:1676.940800pt;}
.ws92{word-spacing:1677.260800pt;}
.ws3c{word-spacing:1678.348800pt;}
.wsaa{word-spacing:1821.058133pt;}
.wsa4{word-spacing:1823.233600pt;}
.wsa2{word-spacing:1823.617600pt;}
.wsb2{word-spacing:1824.961600pt;}
.wsb0{word-spacing:1825.345067pt;}
.ws9f{word-spacing:1832.001600pt;}
.wsac{word-spacing:1833.729067pt;}
._0{margin-left:-12.480000pt;}
._3{margin-left:-8.333867pt;}
._17{margin-left:-7.035200pt;}
._36{margin-left:-6.134400pt;}
._56{margin-left:-5.100800pt;}
._1{margin-left:-4.173867pt;}
._d{margin-left:-3.124800pt;}
._2{margin-left:-2.080000pt;}
._8{margin-left:-0.964800pt;}
._11{width:1.424000pt;}
._c{width:2.448000pt;}
._16{width:3.984000pt;}
._12{width:5.616000pt;}
._4{width:6.933333pt;}
._19{width:7.914933pt;}
._41{width:9.234400pt;}
._4a{width:10.609600pt;}
._4b{width:11.584000pt;}
._3f{width:12.488000pt;}
._40{width:13.608000pt;}
._e{width:14.784000pt;}
._f{width:15.696000pt;}
._10{width:17.208000pt;}
._18{width:19.034133pt;}
._15{width:19.931200pt;}
._14{width:21.140800pt;}
._51{width:22.137600pt;}
._3d{width:23.192418pt;}
._3e{width:24.132866pt;}
._28{width:25.264000pt;}
._7{width:26.256000pt;}
._9{width:27.947200pt;}
._33{width:29.772000pt;}
._3c{width:32.193600pt;}
._b{width:33.492800pt;}
._a{width:35.243200pt;}
._3b{width:36.894933pt;}
._39{width:38.612800pt;}
._13{width:40.272000pt;}
._38{width:41.333333pt;}
._1e{width:43.920533pt;}
._37{width:45.340800pt;}
._6{width:47.088000pt;}
._3a{width:54.449067pt;}
._52{width:61.200000pt;}
._4f{width:62.160000pt;}
._4c{width:63.360000pt;}
._4e{width:64.464000pt;}
._54{width:69.072000pt;}
._46{width:70.032000pt;}
._48{width:71.040000pt;}
._2f{width:72.731200pt;}
._47{width:77.712000pt;}
._24{width:81.368000pt;}
._44{width:83.904000pt;}
._43{width:85.104000pt;}
._42{width:91.776000pt;}
._20{width:100.417600pt;}
._55{width:169.036000pt;}
._2c{width:186.736000pt;}
._30{width:187.932800pt;}
._1f{width:222.992000pt;}
._2a{width:225.680000pt;}
._1d{width:239.576000pt;}
._22{width:244.735467pt;}
._21{width:262.248000pt;}
._26{width:302.284800pt;}
._35{width:325.880000pt;}
._29{width:333.256000pt;}
._27{width:338.277867pt;}
._1b{width:340.040000pt;}
._25{width:345.240000pt;}
._31{width:361.424000pt;}
._2d{width:363.336000pt;}
._23{width:376.152000pt;}
._2e{width:377.328000pt;}
._34{width:394.588800pt;}
._32{width:413.280000pt;}
._2b{width:417.032000pt;}
._1c{width:425.236800pt;}
._50{width:459.336533pt;}
._4d{width:461.512000pt;}
._49{width:462.535467pt;}
._57{width:468.642133pt;}
._53{width:470.791467pt;}
._1a{width:1736.009600pt;}
._45{width:1830.313600pt;}
._5{width:1865.897600pt;}
.fs11{font-size:27.306667pt;}
.fs10{font-size:30.720000pt;}
.fs1{font-size:32.000000pt;}
.fsf{font-size:35.840000pt;}
.fs7{font-size:40.960000pt;}
.fsd{font-size:42.276800pt;}
.fsa{font-size:42.666667pt;}
.fse{font-size:44.373333pt;}
.fs9{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.fs0{font-size:138.666667pt;}
.y3{bottom:-19.781067pt;}
.y51{bottom:-19.385867pt;}
.yad{bottom:-0.835600pt;}
.y0{bottom:0.000000pt;}
.y1ae{bottom:38.015733pt;}
.yae{bottom:48.646800pt;}
.y2c{bottom:49.352933pt;}
.y1e9{bottom:49.354267pt;}
.y15b{bottom:49.354400pt;}
.y223{bottom:49.355867pt;}
.y18d{bottom:49.357333pt;}
.yff{bottom:49.358400pt;}
.y254{bottom:49.358933pt;}
.y13b{bottom:49.360000pt;}
.y245{bottom:49.361333pt;}
.y121{bottom:49.361467pt;}
.y1c5{bottom:49.364267pt;}
.y1d7{bottom:49.365733pt;}
.y27c{bottom:51.333600pt;}
.y1ad{bottom:51.349067pt;}
.y175{bottom:51.680267pt;}
.y50{bottom:53.232267pt;}
.y48{bottom:59.229200pt;}
.y34b{bottom:61.493333pt;}
.y3c7{bottom:61.494667pt;}
.y36d{bottom:61.497333pt;}
.y3e5{bottom:61.498667pt;}
.y42c{bottom:61.503333pt;}
.y3d0{bottom:61.506667pt;}
.y337{bottom:61.510667pt;}
.y2d8{bottom:61.954400pt;}
.y200{bottom:62.687600pt;}
.y222{bottom:62.687867pt;}
.y18c{bottom:62.689333pt;}
.yfe{bottom:62.690400pt;}
.y253{bottom:62.690933pt;}
.y1e8{bottom:62.691600pt;}
.y13a{bottom:62.692000pt;}
.y244{bottom:62.693333pt;}
.y120{bottom:62.693467pt;}
.y15a{bottom:62.693600pt;}
.y1c4{bottom:62.696267pt;}
.y1d6{bottom:62.697733pt;}
.y1ac{bottom:64.698133pt;}
.y174{bottom:65.012267pt;}
.y4f{bottom:65.232267pt;}
.y27b{bottom:68.445600pt;}
.y47{bottom:71.899867pt;}
.y1f{bottom:72.074267pt;}
.y307{bottom:73.301333pt;}
.y2d7{bottom:75.286400pt;}
.y18b{bottom:76.021333pt;}
.yfd{bottom:76.022400pt;}
.y221{bottom:76.022667pt;}
.y252{bottom:76.022933pt;}
.y1e7{bottom:76.023600pt;}
.y139{bottom:76.024000pt;}
.y243{bottom:76.025333pt;}
.y11f{bottom:76.025467pt;}
.y159{bottom:76.025600pt;}
.y1c3{bottom:76.028267pt;}
.y1d5{bottom:76.029733pt;}
.y1ff{bottom:76.037600pt;}
.y4e{bottom:77.232267pt;}
.y1ab{bottom:78.030133pt;}
.y173{bottom:78.344267pt;}
.y34a{bottom:78.825333pt;}
.y36c{bottom:78.829333pt;}
.y3e4{bottom:78.830667pt;}
.y42b{bottom:78.835333pt;}
.y35a{bottom:78.837333pt;}
.y3cf{bottom:78.838667pt;}
.y405{bottom:78.840000pt;}
.y336{bottom:78.842667pt;}
.y2ab{bottom:79.062400pt;}
.yd2{bottom:84.051333pt;}
.y27a{bottom:85.557600pt;}
.y306{bottom:86.633333pt;}
.y1e{bottom:87.274267pt;}
.y4d{bottom:89.232267pt;}
.y18a{bottom:89.353333pt;}
.yfc{bottom:89.354400pt;}
.y220{bottom:89.354667pt;}
.y1e6{bottom:89.355600pt;}
.y138{bottom:89.356000pt;}
.y242{bottom:89.357333pt;}
.y11e{bottom:89.357467pt;}
.y158{bottom:89.357600pt;}
.y1c2{bottom:89.360267pt;}
.y1d4{bottom:89.361733pt;}
.y251{bottom:89.366933pt;}
.y1fe{bottom:89.369600pt;}
.y1aa{bottom:91.362133pt;}
.y2d6{bottom:92.398400pt;}
.y349{bottom:96.157333pt;}
.y3c6{bottom:96.158667pt;}
.y31e{bottom:96.159867pt;}
.y36b{bottom:96.161333pt;}
.y3e3{bottom:96.162667pt;}
.y42a{bottom:96.167333pt;}
.y404{bottom:96.172000pt;}
.y2aa{bottom:96.174400pt;}
.y335{bottom:96.174667pt;}
.yd1{bottom:97.383333pt;}
.y279{bottom:102.669600pt;}
.y1e5{bottom:102.687600pt;}
.y137{bottom:102.688000pt;}
.y241{bottom:102.689333pt;}
.y11d{bottom:102.689467pt;}
.y157{bottom:102.689600pt;}
.y1c1{bottom:102.692267pt;}
.y1d3{bottom:102.693733pt;}
.y250{bottom:102.698933pt;}
.y1fd{bottom:102.701600pt;}
.yfb{bottom:102.701733pt;}
.y305{bottom:103.745333pt;}
.y1a9{bottom:104.694133pt;}
.y2d5{bottom:105.730400pt;}
.y2a9{bottom:109.506400pt;}
.y46{bottom:109.900533pt;}
.yd0{bottom:110.715333pt;}
.y348{bottom:113.489333pt;}
.y3c5{bottom:113.490667pt;}
.y31d{bottom:113.491867pt;}
.y36a{bottom:113.493333pt;}
.y3e2{bottom:113.494667pt;}
.y429{bottom:113.499333pt;}
.y359{bottom:113.501333pt;}
.y3ce{bottom:113.502667pt;}
.y403{bottom:113.504000pt;}
.y334{bottom:113.506667pt;}
.y37d{bottom:113.516000pt;}
.y95{bottom:114.186133pt;}
.y278{bottom:116.001600pt;}
.y136{bottom:116.020000pt;}
.y240{bottom:116.021333pt;}
.y11c{bottom:116.021467pt;}
.y156{bottom:116.021600pt;}
.y1c0{bottom:116.024267pt;}
.y1d2{bottom:116.025733pt;}
.y1e4{bottom:116.026400pt;}
.y214{bottom:116.029733pt;}
.y24f{bottom:116.030933pt;}
.y1fc{bottom:116.033600pt;}
.yfa{bottom:116.033733pt;}
.y304{bottom:117.077333pt;}
.y1a8{bottom:118.026133pt;}
.y193{bottom:118.349333pt;}
.y2d4{bottom:119.062400pt;}
.y6e{bottom:120.268533pt;}
.y4c{bottom:120.794933pt;}
.y45{bottom:122.571200pt;}
.ycf{bottom:124.047333pt;}
.y2a8{bottom:126.618400pt;}
.y23f{bottom:129.353333pt;}
.y11b{bottom:129.353467pt;}
.y155{bottom:129.353600pt;}
.y1bf{bottom:129.356267pt;}
.y1d1{bottom:129.357733pt;}
.y1e3{bottom:129.358400pt;}
.y213{bottom:129.361733pt;}
.y24e{bottom:129.362933pt;}
.y1fb{bottom:129.365600pt;}
.yf9{bottom:129.365733pt;}
.y31c{bottom:130.823867pt;}
.y369{bottom:130.825333pt;}
.y3e1{bottom:130.826667pt;}
.y428{bottom:130.831333pt;}
.y358{bottom:130.833333pt;}
.y3cd{bottom:130.834667pt;}
.y3c4{bottom:130.836000pt;}
.y333{bottom:130.838667pt;}
.y1a7{bottom:131.358133pt;}
.y4b{bottom:132.794933pt;}
.y192{bottom:133.016000pt;}
.y277{bottom:133.113600pt;}
.y303{bottom:134.189333pt;}
.y44{bottom:135.241867pt;}
.y2d3{bottom:136.174400pt;}
.yce{bottom:137.379333pt;}
.y94{bottom:141.524800pt;}
.y1be{bottom:142.688267pt;}
.y1d0{bottom:142.689733pt;}
.y1e2{bottom:142.690400pt;}
.y212{bottom:142.693733pt;}
.y24d{bottom:142.694933pt;}
.y1fa{bottom:142.697600pt;}
.yf8{bottom:142.697733pt;}
.y2a7{bottom:143.730400pt;}
.y1a6{bottom:144.690133pt;}
.y4a{bottom:144.794933pt;}
.y6d{bottom:145.160533pt;}
.y276{bottom:146.445600pt;}
.y302{bottom:147.521333pt;}
.y191{bottom:147.682667pt;}
.y43{bottom:147.912533pt;}
.y172{bottom:148.152667pt;}
.y31b{bottom:148.155867pt;}
.y368{bottom:148.157333pt;}
.y3e0{bottom:148.158667pt;}
.y427{bottom:148.163333pt;}
.y357{bottom:148.165333pt;}
.y3c3{bottom:148.168000pt;}
.y332{bottom:148.170667pt;}
.y37c{bottom:148.180000pt;}
.y2d2{bottom:149.506400pt;}
.y347{bottom:150.581200pt;}
.ycd{bottom:150.723333pt;}
.y1bd{bottom:156.020267pt;}
.y1cf{bottom:156.021733pt;}
.y1e1{bottom:156.022400pt;}
.y211{bottom:156.025733pt;}
.y24c{bottom:156.026933pt;}
.y1f9{bottom:156.029600pt;}
.yf7{bottom:156.029733pt;}
.y93{bottom:156.191467pt;}
.y49{bottom:156.794933pt;}
.y1a5{bottom:158.022133pt;}
.y2a6{bottom:160.842400pt;}
.y6c{bottom:162.492533pt;}
.y275{bottom:163.557600pt;}
.ycc{bottom:164.055333pt;}
.y301{bottom:164.633333pt;}
.y171{bottom:165.484667pt;}
.y135{bottom:165.488533pt;}
.y41a{bottom:165.489333pt;}
.y21f{bottom:165.490667pt;}
.y396{bottom:165.494667pt;}
.y426{bottom:165.495333pt;}
.y3f5{bottom:165.496667pt;}
.y356{bottom:165.497333pt;}
.y3cc{bottom:165.498667pt;}
.y367{bottom:165.499333pt;}
.y3c2{bottom:165.500000pt;}
.y37b{bottom:165.512000pt;}
.y43e{bottom:165.520000pt;}
.y2d1{bottom:166.618400pt;}
.y1ce{bottom:169.353733pt;}
.y1e0{bottom:169.354400pt;}
.y210{bottom:169.357733pt;}
.y24b{bottom:169.358933pt;}
.y1f8{bottom:169.361600pt;}
.yf6{bottom:169.361733pt;}
.y1a4{bottom:171.354133pt;}
.y2a5{bottom:174.174400pt;}
.ycb{bottom:177.387333pt;}
.y31a{bottom:178.581067pt;}
.y274{bottom:180.681600pt;}
.y300{bottom:181.745333pt;}
.y92{bottom:182.196667pt;}
.y1df{bottom:182.687867pt;}
.y20f{bottom:182.689733pt;}
.y24a{bottom:182.690933pt;}
.y1f7{bottom:182.693600pt;}
.yf5{bottom:182.693733pt;}
.y2b{bottom:182.818533pt;}
.y134{bottom:182.820533pt;}
.y3df{bottom:182.822667pt;}
.y21e{bottom:182.826667pt;}
.y425{bottom:182.827333pt;}
.y3f4{bottom:182.828667pt;}
.y355{bottom:182.829333pt;}
.y154{bottom:182.830667pt;}
.y366{bottom:182.831333pt;}
.y3c1{bottom:182.832000pt;}
.y331{bottom:182.834667pt;}
.y37a{bottom:182.844000pt;}
.y3aa{bottom:182.850000pt;}
.y43d{bottom:182.852000pt;}
.y2d0{bottom:183.730400pt;}
.y346{bottom:184.365867pt;}
.y1a3{bottom:184.686133pt;}
.y42{bottom:185.913200pt;}
.y6b{bottom:187.384533pt;}
.yca{bottom:190.719333pt;}
.y2a4{bottom:191.286400pt;}
.y273{bottom:194.013600pt;}
.y234{bottom:194.822667pt;}
.y2ff{bottom:195.077333pt;}
.y1de{bottom:196.019867pt;}
.y20e{bottom:196.021733pt;}
.y249{bottom:196.022933pt;}
.y1f6{bottom:196.025600pt;}
.yf4{bottom:196.025733pt;}
.y91{bottom:196.863333pt;}
.y1a2{bottom:198.018133pt;}
.y41{bottom:198.583867pt;}
.y133{bottom:200.152533pt;}
.y21d{bottom:200.158667pt;}
.y354{bottom:200.161333pt;}
.y153{bottom:200.162667pt;}
.y3c0{bottom:200.164000pt;}
.y330{bottom:200.166667pt;}
.y379{bottom:200.176000pt;}
.y3a9{bottom:200.182000pt;}
.y43c{bottom:200.184000pt;}
.y2cf{bottom:200.842400pt;}
.yc9{bottom:204.051333pt;}
.y2a3{bottom:204.618400pt;}
.y6a{bottom:204.716533pt;}
.y20d{bottom:209.353733pt;}
.y248{bottom:209.354933pt;}
.y1f5{bottom:209.357600pt;}
.yf3{bottom:209.357733pt;}
.y233{bottom:209.489333pt;}
.y272{bottom:211.125600pt;}
.y40{bottom:211.254533pt;}
.y1a1{bottom:211.350133pt;}
.y90{bottom:211.530000pt;}
.y2fe{bottom:212.189333pt;}
.y319{bottom:212.359200pt;}
.y419{bottom:213.247867pt;}
.y2ce{bottom:214.174400pt;}
.y3de{bottom:216.134933pt;}
.yc8{bottom:217.383333pt;}
.y132{bottom:217.484533pt;}
.y21c{bottom:217.490667pt;}
.y424{bottom:217.491333pt;}
.y1cd{bottom:217.492000pt;}
.y3f3{bottom:217.492667pt;}
.y353{bottom:217.493333pt;}
.y152{bottom:217.494667pt;}
.y365{bottom:217.495333pt;}
.y3bf{bottom:217.496000pt;}
.y378{bottom:217.508000pt;}
.y43b{bottom:217.516000pt;}
.y2a2{bottom:221.730400pt;}
.y247{bottom:222.686933pt;}
.y1f4{bottom:222.689600pt;}
.yf2{bottom:222.689733pt;}
.y232{bottom:224.156000pt;}
.y237{bottom:224.285333pt;}
.y271{bottom:224.457600pt;}
.y1a0{bottom:224.682133pt;}
.y2fd{bottom:225.521333pt;}
.y69{bottom:229.608533pt;}
.y413{bottom:230.581200pt;}
.y2cd{bottom:231.286400pt;}
.y11a{bottom:234.824000pt;}
.y3f2{bottom:234.824667pt;}
.y1bc{bottom:234.825333pt;}
.y151{bottom:234.826667pt;}
.y3be{bottom:234.828000pt;}
.y131{bottom:234.830533pt;}
.y32f{bottom:234.830667pt;}
.y377{bottom:234.840000pt;}
.y364{bottom:234.841333pt;}
.y3a8{bottom:234.846000pt;}
.y43a{bottom:234.848000pt;}
.y345{bottom:234.850667pt;}
.y1f3{bottom:236.021600pt;}
.yf1{bottom:236.021733pt;}
.y318{bottom:236.365867pt;}
.yac{bottom:238.129733pt;}
.y231{bottom:238.822667pt;}
.y2a1{bottom:238.842400pt;}
.y8f{bottom:238.868533pt;}
.y236{bottom:238.952000pt;}
.y270{bottom:241.569600pt;}
.y2fc{bottom:242.633333pt;}
.y2cc{bottom:244.618400pt;}
.y418{bottom:247.025867pt;}
.y1f2{bottom:249.353600pt;}
.yf0{bottom:249.355067pt;}
.y3dd{bottom:249.919733pt;}
.y423{bottom:252.155333pt;}
.y3f1{bottom:252.156667pt;}
.y119{bottom:252.157333pt;}
.y150{bottom:252.158667pt;}
.y1cc{bottom:252.160000pt;}
.y32e{bottom:252.162667pt;}
.y376{bottom:252.172000pt;}
.y2a0{bottom:252.175733pt;}
.y3a7{bottom:252.178000pt;}
.y439{bottom:252.180000pt;}
.y344{bottom:252.182667pt;}
.y230{bottom:253.489333pt;}
.y235{bottom:253.618667pt;}
.y68{bottom:254.500533pt;}
.y2fb{bottom:255.965333pt;}
.y26f{bottom:258.681600pt;}
.y2cb{bottom:261.730400pt;}
.y3f{bottom:261.925867pt;}
.yef{bottom:262.688400pt;}
.y412{bottom:264.359200pt;}
.y189{bottom:264.817333pt;}
.y8e{bottom:264.871067pt;}
.y190{bottom:264.953067pt;}
.y29f{bottom:265.532133pt;}
.y422{bottom:269.487333pt;}
.y3f0{bottom:269.488667pt;}
.y352{bottom:269.489333pt;}
.y14f{bottom:269.490667pt;}
.y1cb{bottom:269.492000pt;}
.y118{bottom:269.492667pt;}
.yc7{bottom:269.493200pt;}
.y130{bottom:269.494533pt;}
.y32d{bottom:269.494667pt;}
.y375{bottom:269.504000pt;}
.y363{bottom:269.505333pt;}
.y3a6{bottom:269.510000pt;}
.y438{bottom:269.512000pt;}
.y417{bottom:271.032533pt;}
.y2a{bottom:271.682533pt;}
.y2fa{bottom:273.077333pt;}
.y3e{bottom:274.596533pt;}
.y2ca{bottom:275.062400pt;}
.y26e{bottom:275.793600pt;}
.yee{bottom:276.021867pt;}
.y67{bottom:279.392533pt;}
.y188{bottom:279.484000pt;}
.y8d{bottom:279.537733pt;}
.y18f{bottom:279.619733pt;}
.y29e{bottom:282.656133pt;}
.y2f9{bottom:286.409333pt;}
.y421{bottom:286.819333pt;}
.y317{bottom:286.821200pt;}
.y14e{bottom:286.822667pt;}
.y1ca{bottom:286.824000pt;}
.y117{bottom:286.824667pt;}
.yc6{bottom:286.825200pt;}
.y246{bottom:286.825333pt;}
.y12f{bottom:286.826533pt;}
.y19f{bottom:286.826667pt;}
.y1bb{bottom:286.828000pt;}
.y23e{bottom:286.829333pt;}
.y3ef{bottom:286.834667pt;}
.y362{bottom:286.837333pt;}
.y395{bottom:286.843333pt;}
.y437{bottom:286.844000pt;}
.y343{bottom:286.846667pt;}
.y3d{bottom:287.267200pt;}
.y411{bottom:288.365867pt;}
.y26d{bottom:289.125600pt;}
.yed{bottom:289.353867pt;}
.y2c9{bottom:292.189867pt;}
.y187{bottom:294.150667pt;}
.y18e{bottom:294.286400pt;}
.y66{bottom:296.724533pt;}
.y29d{bottom:299.768133pt;}
.y3c{bottom:299.937867pt;}
.y2f8{bottom:303.521333pt;}
.y420{bottom:304.151333pt;}
.y21b{bottom:304.156000pt;}
.y116{bottom:304.156667pt;}
.yc5{bottom:304.157200pt;}
.y1c9{bottom:304.157333pt;}
.y12e{bottom:304.158533pt;}
.y19e{bottom:304.158667pt;}
.y1ba{bottom:304.160000pt;}
.y23d{bottom:304.161333pt;}
.y3ee{bottom:304.166667pt;}
.y316{bottom:304.167200pt;}
.y374{bottom:304.168000pt;}
.y361{bottom:304.169333pt;}
.y1f1{bottom:304.170667pt;}
.y3dc{bottom:304.173333pt;}
.y3a5{bottom:304.174000pt;}
.y394{bottom:304.175333pt;}
.y436{bottom:304.176000pt;}
.y342{bottom:304.178667pt;}
.y3bd{bottom:304.185333pt;}
.y26c{bottom:306.237600pt;}
.y351{bottom:306.581200pt;}
.y8c{bottom:306.871067pt;}
.y2c8{bottom:309.301867pt;}
.y29c{bottom:313.100133pt;}
.y2f7{bottom:316.853333pt;}
.y15f{bottom:317.902133pt;}
.y3cb{bottom:320.134933pt;}
.y41f{bottom:321.483333pt;}
.y115{bottom:321.488667pt;}
.y12d{bottom:321.490533pt;}
.y19d{bottom:321.490667pt;}
.y20c{bottom:321.492000pt;}
.yc4{bottom:321.493200pt;}
.y23c{bottom:321.493333pt;}
.y416{bottom:321.500000pt;}
.y360{bottom:321.501333pt;}
.y1f0{bottom:321.502667pt;}
.y3a4{bottom:321.506000pt;}
.y393{bottom:321.507333pt;}
.y341{bottom:321.510667pt;}
.y3bc{bottom:321.517333pt;}
.y65{bottom:321.616533pt;}
.yab{bottom:321.833600pt;}
.y2c7{bottom:322.633867pt;}
.y26b{bottom:323.349467pt;}
.y170{bottom:323.925067pt;}
.y178{bottom:326.710533pt;}
.y29b{bottom:330.212133pt;}
.y15e{bottom:332.568800pt;}
.y14d{bottom:332.596933pt;}
.y2f6{bottom:333.965333pt;}
.y16f{bottom:338.591733pt;}
.y114{bottom:338.820667pt;}
.y32c{bottom:338.822667pt;}
.y19c{bottom:338.824000pt;}
.yc3{bottom:338.825200pt;}
.y23b{bottom:338.825333pt;}
.y1dd{bottom:338.829333pt;}
.y3ed{bottom:338.830667pt;}
.y315{bottom:338.831200pt;}
.y373{bottom:338.832000pt;}
.y35f{bottom:338.833333pt;}
.y1ef{bottom:338.834667pt;}
.y3db{bottom:338.837333pt;}
.y3a3{bottom:338.838000pt;}
.y392{bottom:338.839333pt;}
.y435{bottom:338.840000pt;}
.y340{bottom:338.842667pt;}
.y410{bottom:338.845333pt;}
.y3bb{bottom:338.849333pt;}
.y64{bottom:338.948533pt;}
.y2c6{bottom:339.745867pt;}
.y350{bottom:340.365867pt;}
.y26a{bottom:340.461467pt;}
.y402{bottom:341.247867pt;}
.y177{bottom:341.377200pt;}
.y15d{bottom:347.235467pt;}
.y14c{bottom:347.263600pt;}
.y2f5{bottom:347.297333pt;}
.y29a{bottom:347.324133pt;}
.y21a{bottom:347.484000pt;}
.y226{bottom:347.573467pt;}
.yaa{bottom:349.172133pt;}
.y269{bottom:353.793467pt;}
.y3ca{bottom:353.919733pt;}
.y16e{bottom:355.925067pt;}
.y176{bottom:356.043867pt;}
.y113{bottom:356.152667pt;}
.yc2{bottom:356.157200pt;}
.y1c8{bottom:356.157333pt;}
.y19b{bottom:356.160000pt;}
.y41e{bottom:356.161333pt;}
.y314{bottom:356.163200pt;}
.y372{bottom:356.164000pt;}
.y1b9{bottom:356.165333pt;}
.y3da{bottom:356.169333pt;}
.y391{bottom:356.171333pt;}
.y33f{bottom:356.174667pt;}
.y3ba{bottom:356.181333pt;}
.y2c5{bottom:356.857867pt;}
.y8b{bottom:360.222933pt;}
.y29{bottom:360.546533pt;}
.y15c{bottom:361.902133pt;}
.y14b{bottom:361.930267pt;}
.y219{bottom:362.150667pt;}
.y225{bottom:362.240133pt;}
.y63{bottom:363.840533pt;}
.y2f4{bottom:364.409333pt;}
.y299{bottom:364.436133pt;}
.ya9{bottom:365.172133pt;}
.y2c4{bottom:370.189867pt;}
.y268{bottom:370.905467pt;}
.y112{bottom:373.484667pt;}
.yec{bottom:373.490667pt;}
.y12c{bottom:373.491867pt;}
.y19a{bottom:373.492000pt;}
.y1dc{bottom:373.493333pt;}
.y3ec{bottom:373.494667pt;}
.y313{bottom:373.495200pt;}
.y371{bottom:373.496000pt;}
.y1b8{bottom:373.497333pt;}
.yc1{bottom:373.498533pt;}
.y1ee{bottom:373.498667pt;}
.y3d9{bottom:373.501333pt;}
.y3a2{bottom:373.502000pt;}
.y390{bottom:373.503333pt;}
.y434{bottom:373.504000pt;}
.y33e{bottom:373.506667pt;}
.y40f{bottom:373.509333pt;}
.y3b9{bottom:373.513333pt;}
.y401{bottom:375.032533pt;}
.y32b{bottom:375.914533pt;}
.y8a{bottom:376.222933pt;}
.y218{bottom:376.817333pt;}
.y224{bottom:376.906800pt;}
.y298{bottom:377.768133pt;}
.y2f3{bottom:381.521333pt;}
.y28{bottom:382.770533pt;}
.y267{bottom:384.237467pt;}
.y2c3{bottom:387.301867pt;}
.y3b{bottom:388.592533pt;}
.y62{bottom:388.732533pt;}
.y23a{bottom:390.822667pt;}
.y20b{bottom:390.824000pt;}
.y1db{bottom:390.825333pt;}
.y3eb{bottom:390.826667pt;}
.y312{bottom:390.827200pt;}
.yeb{bottom:390.828000pt;}
.y1b7{bottom:390.829333pt;}
.yc0{bottom:390.830533pt;}
.y111{bottom:390.830667pt;}
.y3d8{bottom:390.833333pt;}
.y3a1{bottom:390.834000pt;}
.y38f{bottom:390.835333pt;}
.y433{bottom:390.836000pt;}
.y33d{bottom:390.838667pt;}
.y40e{bottom:390.841333pt;}
.y34f{bottom:390.854667pt;}
.y89{bottom:392.222933pt;}
.ya8{bottom:392.510667pt;}
.y1d{bottom:392.744133pt;}
.y2f2{bottom:394.853333pt;}
.y297{bottom:394.880133pt;}
.y2c2{bottom:400.633867pt;}
.y266{bottom:401.349467pt;}
.y3a{bottom:403.792533pt;}
.y27{bottom:404.994533pt;}
.y20a{bottom:408.156000pt;}
.y1da{bottom:408.157333pt;}
.y12b{bottom:408.158533pt;}
.y3ea{bottom:408.158667pt;}
.y311{bottom:408.159200pt;}
.yea{bottom:408.160000pt;}
.y186{bottom:408.161333pt;}
.ybf{bottom:408.162533pt;}
.y110{bottom:408.162667pt;}
.y3d7{bottom:408.165333pt;}
.y3a0{bottom:408.166000pt;}
.y38e{bottom:408.167333pt;}
.y432{bottom:408.168000pt;}
.y40d{bottom:408.173333pt;}
.y3b8{bottom:408.177333pt;}
.y34e{bottom:408.186667pt;}
.y296{bottom:408.212133pt;}
.y1c{bottom:408.740133pt;}
.y32a{bottom:409.699200pt;}
.y2f1{bottom:411.965333pt;}
.y61{bottom:413.624533pt;}
.y265{bottom:414.693467pt;}
.y2c1{bottom:417.745867pt;}
.y39{bottom:418.992533pt;}
.y88{bottom:419.561467pt;}
.ya7{bottom:419.849333pt;}
.y1b{bottom:424.736133pt;}
.y295{bottom:425.324133pt;}
.y41d{bottom:425.489333pt;}
.y12a{bottom:425.490533pt;}
.y3e9{bottom:425.490667pt;}
.y310{bottom:425.491200pt;}
.ye9{bottom:425.492000pt;}
.y185{bottom:425.493333pt;}
.ybe{bottom:425.494533pt;}
.y10f{bottom:425.494667pt;}
.y400{bottom:425.496667pt;}
.y39f{bottom:425.498000pt;}
.y38d{bottom:425.499333pt;}
.y431{bottom:425.500000pt;}
.y33c{bottom:425.502667pt;}
.y40c{bottom:425.505333pt;}
.y2{bottom:425.886933pt;}
.y26{bottom:427.205467pt;}
.y2f0{bottom:429.092133pt;}
.y264{bottom:431.805467pt;}
.y239{bottom:433.930267pt;}
.y2c0{bottom:434.857867pt;}
.y87{bottom:435.561467pt;}
.ya6{bottom:435.849333pt;}
.y60{bottom:437.186533pt;}
.y1a{bottom:440.732133pt;}
.y294{bottom:442.436133pt;}
.y3e8{bottom:442.822667pt;}
.y30f{bottom:442.823200pt;}
.ye8{bottom:442.824000pt;}
.y184{bottom:442.825333pt;}
.ybd{bottom:442.826533pt;}
.y129{bottom:442.826667pt;}
.y3ff{bottom:442.828667pt;}
.y3d6{bottom:442.829333pt;}
.y3c9{bottom:442.830000pt;}
.y430{bottom:442.832000pt;}
.y33b{bottom:442.834667pt;}
.y40b{bottom:442.837333pt;}
.y3b7{bottom:442.841333pt;}
.y38c{bottom:442.845333pt;}
.y34d{bottom:442.850667pt;}
.y263{bottom:445.137467pt;}
.y2ef{bottom:446.204133pt;}
.y2bf{bottom:448.189867pt;}
.y238{bottom:448.596933pt;}
.y25{bottom:449.429467pt;}
.y217{bottom:450.112133pt;}
.y209{bottom:450.150667pt;}
.y86{bottom:451.561467pt;}
.y5f{bottom:454.518533pt;}
.y19{bottom:456.728133pt;}
.y2ee{bottom:459.536133pt;}
.y293{bottom:459.548133pt;}
.y1d9{bottom:460.156000pt;}
.y183{bottom:460.157333pt;}
.ybc{bottom:460.158533pt;}
.y10e{bottom:460.158667pt;}
.y39e{bottom:460.162000pt;}
.ye7{bottom:460.162667pt;}
.y42f{bottom:460.164000pt;}
.y40a{bottom:460.169333pt;}
.y3b6{bottom:460.173333pt;}
.y329{bottom:460.182667pt;}
.y1{bottom:460.553600pt;}
.ya5{bottom:461.854533pt;}
.y262{bottom:462.249467pt;}
.y216{bottom:464.778800pt;}
.y208{bottom:464.817333pt;}
.y2be{bottom:465.301867pt;}
.y24{bottom:471.653467pt;}
.y18{bottom:472.724133pt;}
.y2ed{bottom:472.868133pt;}
.y292{bottom:472.880133pt;}
.y41c{bottom:473.247867pt;}
.y261{bottom:475.581467pt;}
.y30e{bottom:477.487200pt;}
.y35e{bottom:477.489333pt;}
.ybb{bottom:477.490533pt;}
.y10d{bottom:477.490667pt;}
.y14a{bottom:477.492000pt;}
.y3fe{bottom:477.492667pt;}
.y3d5{bottom:477.493333pt;}
.y39d{bottom:477.494000pt;}
.ye6{bottom:477.494667pt;}
.y199{bottom:477.496000pt;}
.y16d{bottom:477.498667pt;}
.y409{bottom:477.501333pt;}
.y3b5{bottom:477.505333pt;}
.y38b{bottom:477.509333pt;}
.y34c{bottom:477.514667pt;}
.y85{bottom:478.900133pt;}
.y5e{bottom:479.410533pt;}
.y215{bottom:479.445467pt;}
.y207{bottom:479.484000pt;}
.y3e7{bottom:479.914533pt;}
.y2bd{bottom:482.413867pt;}
.y17{bottom:488.720133pt;}
.ya4{bottom:489.193200pt;}
.y2ec{bottom:489.980133pt;}
.y291{bottom:489.992133pt;}
.y1d8{bottom:491.263600pt;}
.y260{bottom:492.690533pt;}
.y149{bottom:494.824000pt;}
.y3fd{bottom:494.824667pt;}
.yba{bottom:494.825200pt;}
.y10c{bottom:494.825333pt;}
.y3c8{bottom:494.826000pt;}
.ye5{bottom:494.826667pt;}
.y198{bottom:494.828000pt;}
.y16c{bottom:494.830667pt;}
.y30d{bottom:494.833200pt;}
.y22f{bottom:494.833333pt;}
.y128{bottom:494.834667pt;}
.y3b4{bottom:494.837333pt;}
.y182{bottom:494.840000pt;}
.y38a{bottom:494.841333pt;}
.y328{bottom:494.846667pt;}
.y84{bottom:494.900133pt;}
.y2bc{bottom:495.745867pt;}
.y415{bottom:497.247867pt;}
.y370{bottom:497.468267pt;}
.y290{bottom:503.324133pt;}
.ya3{bottom:503.859867pt;}
.y5d{bottom:504.302533pt;}
.y16{bottom:504.716133pt;}
.y41b{bottom:507.025867pt;}
.y2eb{bottom:507.092133pt;}
.y25f{bottom:509.802533pt;}
.y3fc{bottom:512.156667pt;}
.yb9{bottom:512.157200pt;}
.y10b{bottom:512.157333pt;}
.y39c{bottom:512.158000pt;}
.ye4{bottom:512.158667pt;}
.y148{bottom:512.160000pt;}
.y16b{bottom:512.162667pt;}
.y22e{bottom:512.165333pt;}
.y127{bottom:512.166667pt;}
.y3b3{bottom:512.169333pt;}
.y181{bottom:512.172000pt;}
.y327{bottom:512.178667pt;}
.y2bb{bottom:512.857867pt;}
.y3e6{bottom:513.699200pt;}
.ya2{bottom:518.526533pt;}
.y28f{bottom:520.436133pt;}
.y35d{bottom:521.468267pt;}
.y83{bottom:522.238667pt;}
.y25e{bottom:523.134533pt;}
.y2ea{bottom:524.204133pt;}
.y2ba{bottom:526.189867pt;}
.y229{bottom:527.056933pt;}
.y15{bottom:528.272133pt;}
.y39b{bottom:529.490000pt;}
.yb8{bottom:529.490533pt;}
.ye3{bottom:529.490667pt;}
.y147{bottom:529.492000pt;}
.y16a{bottom:529.494667pt;}
.y30c{bottom:529.497200pt;}
.y22d{bottom:529.497333pt;}
.y10a{bottom:529.498667pt;}
.y3b2{bottom:529.501333pt;}
.y3fb{bottom:529.502667pt;}
.y180{bottom:529.504000pt;}
.y389{bottom:529.505333pt;}
.y326{bottom:529.510667pt;}
.y5c{bottom:530.524533pt;}
.y414{bottom:531.032533pt;}
.y36f{bottom:531.239733pt;}
.y28e{bottom:533.768133pt;}
.y2e9{bottom:537.536133pt;}
.y23{bottom:538.288800pt;}
.y25d{bottom:540.258533pt;}
.y228{bottom:541.723600pt;}
.y2b9{bottom:543.301867pt;}
.y14{bottom:544.268133pt;}
.ya1{bottom:545.862267pt;}
.y3d4{bottom:546.822667pt;}
.ye2{bottom:546.824000pt;}
.y169{bottom:546.826667pt;}
.yb7{bottom:546.829200pt;}
.y22c{bottom:546.829333pt;}
.y109{bottom:546.830667pt;}
.y3b1{bottom:546.833333pt;}
.y3fa{bottom:546.834667pt;}
.y17f{bottom:546.836000pt;}
.y388{bottom:546.837333pt;}
.y325{bottom:546.842667pt;}
.y5b{bottom:547.856533pt;}
.y82{bottom:549.577200pt;}
.y28d{bottom:550.880133pt;}
.y2e8{bottom:554.648133pt;}
.y35c{bottom:555.246400pt;}
.y227{bottom:556.390267pt;}
.y2b8{bottom:556.633867pt;}
.y13{bottom:560.264133pt;}
.ya0{bottom:560.528933pt;}
.y206{bottom:564.156000pt;}
.ye1{bottom:564.158667pt;}
.yb6{bottom:564.161200pt;}
.y1b6{bottom:564.161333pt;}
.y108{bottom:564.162667pt;}
.y3b0{bottom:564.165333pt;}
.y3f9{bottom:564.166667pt;}
.y17e{bottom:564.168000pt;}
.y387{bottom:564.169333pt;}
.y324{bottom:564.174667pt;}
.y28c{bottom:564.212133pt;}
.y2e7{bottom:567.980133pt;}
.y5a{bottom:572.748533pt;}
.y2b7{bottom:573.757867pt;}
.y22{bottom:573.856800pt;}
.y25c{bottom:574.482533pt;}
.y12{bottom:576.260133pt;}
.y81{bottom:576.915867pt;}
.y35b{bottom:579.253067pt;}
.y28b{bottom:581.324133pt;}
.ye0{bottom:581.490667pt;}
.yb5{bottom:581.493200pt;}
.y1b5{bottom:581.493333pt;}
.y126{bottom:581.494667pt;}
.y3af{bottom:581.497333pt;}
.y17d{bottom:581.500000pt;}
.y386{bottom:581.501333pt;}
.y323{bottom:581.506667pt;}
.y79{bottom:584.938133pt;}
.y2e6{bottom:585.092133pt;}
.y38{bottom:586.192533pt;}
.y2b6{bottom:587.089867pt;}
.y9f{bottom:587.862267pt;}
.y25b{bottom:591.594533pt;}
.y11{bottom:592.256133pt;}
.y3d3{bottom:594.581200pt;}
.y28a{bottom:594.656133pt;}
.y59{bottom:597.640533pt;}
.y197{bottom:598.822667pt;}
.ydf{bottom:598.824000pt;}
.yb4{bottom:598.825200pt;}
.y1b4{bottom:598.825333pt;}
.y107{bottom:598.826667pt;}
.y146{bottom:598.828000pt;}
.y3ae{bottom:598.829333pt;}
.y3f8{bottom:598.830667pt;}
.y17c{bottom:598.832000pt;}
.y385{bottom:598.833333pt;}
.y168{bottom:598.836000pt;}
.y322{bottom:598.838667pt;}
.y42e{bottom:601.247867pt;}
.y37{bottom:601.392533pt;}
.y2e5{bottom:602.204133pt;}
.y80{bottom:602.924400pt;}
.y2b5{bottom:604.201867pt;}
.y25a{bottom:608.706533pt;}
.y78{bottom:609.830133pt;}
.y289{bottom:611.768133pt;}
.y2e4{bottom:615.536133pt;}
.y10{bottom:615.812133pt;}
.yb3{bottom:616.157200pt;}
.y1b3{bottom:616.157333pt;}
.y106{bottom:616.158667pt;}
.yde{bottom:616.160000pt;}
.y3ad{bottom:616.161333pt;}
.y3f7{bottom:616.162667pt;}
.y17b{bottom:616.164000pt;}
.y384{bottom:616.165333pt;}
.y205{bottom:616.166667pt;}
.y167{bottom:616.168000pt;}
.y321{bottom:616.170667pt;}
.y36{bottom:616.592533pt;}
.y58{bottom:621.202533pt;}
.y2b4{bottom:621.313867pt;}
.y288{bottom:625.100133pt;}
.y259{bottom:625.818533pt;}
.y3d2{bottom:628.359200pt;}
.y7f{bottom:628.924400pt;}
.y33a{bottom:629.247867pt;}
.y35{bottom:631.792533pt;}
.yf{bottom:631.808133pt;}
.y2e3{bottom:632.648133pt;}
.y36e{bottom:633.488667pt;}
.yb2{bottom:633.489200pt;}
.y408{bottom:633.489333pt;}
.y105{bottom:633.490667pt;}
.ydd{bottom:633.492000pt;}
.y22b{bottom:633.493333pt;}
.y1ed{bottom:633.494667pt;}
.y17a{bottom:633.496000pt;}
.y383{bottom:633.497333pt;}
.y204{bottom:633.498667pt;}
.y166{bottom:633.500000pt;}
.y320{bottom:633.502667pt;}
.y42d{bottom:635.032533pt;}
.y2b3{bottom:638.425867pt;}
.y77{bottom:638.726133pt;}
.y9e{bottom:641.214133pt;}
.y287{bottom:642.212133pt;}
.y258{bottom:642.930533pt;}
.y2e2{bottom:645.980133pt;}
.y57{bottom:646.094533pt;}
.ye{bottom:647.804133pt;}
.y125{bottom:650.822667pt;}
.ydc{bottom:650.824000pt;}
.y22a{bottom:650.825333pt;}
.y1ec{bottom:650.826667pt;}
.y179{bottom:650.828000pt;}
.y382{bottom:650.829333pt;}
.y203{bottom:650.830667pt;}
.y165{bottom:650.832000pt;}
.y104{bottom:650.833333pt;}
.y31f{bottom:650.834667pt;}
.y3d1{bottom:652.365867pt;}
.y2b2{bottom:655.537867pt;}
.y286{bottom:655.544133pt;}
.y257{bottom:660.043467pt;}
.y339{bottom:663.025867pt;}
.y2e1{bottom:663.092133pt;}
.y76{bottom:663.618133pt;}
.yd{bottom:663.800133pt;}
.y30b{bottom:665.361867pt;}
.y1b2{bottom:668.157333pt;}
.ydb{bottom:668.158667pt;}
.y145{bottom:668.160000pt;}
.y381{bottom:668.161333pt;}
.y202{bottom:668.162667pt;}
.y164{bottom:668.164000pt;}
.y103{bottom:668.165333pt;}
.y196{bottom:668.166667pt;}
.y9d{bottom:668.552800pt;}
.y407{bottom:670.581200pt;}
.y56{bottom:670.986533pt;}
.y2b1{bottom:672.649867pt;}
.y285{bottom:672.656133pt;}
.y2e0{bottom:676.424133pt;}
.y256{bottom:677.155467pt;}
.y1c7{bottom:679.263600pt;}
.yc{bottom:679.796133pt;}
.y75{bottom:680.950133pt;}
.y3ac{bottom:685.489333pt;}
.y1eb{bottom:685.490667pt;}
.y144{bottom:685.492000pt;}
.y380{bottom:685.493333pt;}
.y1b1{bottom:685.494667pt;}
.y163{bottom:685.496000pt;}
.y102{bottom:685.497333pt;}
.y195{bottom:685.498667pt;}
.y124{bottom:685.930267pt;}
.y13e{bottom:685.954667pt;}
.y2b0{bottom:685.981867pt;}
.y284{bottom:685.988133pt;}
.y7e{bottom:686.042533pt;}
.y338{bottom:687.032533pt;}
.y34{bottom:690.996533pt;}
.y2df{bottom:693.548133pt;}
.y1c6{bottom:693.930267pt;}
.yb{bottom:695.792133pt;}
.y9c{bottom:695.891333pt;}
.y55{bottom:697.208533pt;}
.y30a{bottom:699.141067pt;}
.y123{bottom:700.596933pt;}
.y13d{bottom:700.621333pt;}
.y7d{bottom:702.042533pt;}
.y143{bottom:702.824000pt;}
.yda{bottom:702.825333pt;}
.y1b0{bottom:702.826667pt;}
.y162{bottom:702.828000pt;}
.y101{bottom:702.829333pt;}
.y194{bottom:702.830667pt;}
.y2af{bottom:703.093867pt;}
.y283{bottom:703.100133pt;}
.y406{bottom:704.365867pt;}
.y33{bottom:705.398533pt;}
.y74{bottom:705.842133pt;}
.y9b{bottom:710.558000pt;}
.y2de{bottom:710.660133pt;}
.y255{bottom:715.160667pt;}
.y122{bottom:715.263600pt;}
.y13c{bottom:715.288000pt;}
.y282{bottom:716.432133pt;}
.ya{bottom:719.348133pt;}
.y32{bottom:719.800533pt;}
.y39a{bottom:720.156000pt;}
.yd9{bottom:720.157333pt;}
.y1af{bottom:720.158667pt;}
.y161{bottom:720.160000pt;}
.y100{bottom:720.161333pt;}
.y142{bottom:720.162667pt;}
.y2ae{bottom:720.212133pt;}
.y54{bottom:722.100533pt;}
.y309{bottom:723.147733pt;}
.y73{bottom:723.174133pt;}
.yb1{bottom:723.377600pt;}
.y308{bottom:723.992133pt;}
.y2dd{bottom:727.772133pt;}
.y7c{bottom:733.162533pt;}
.y281{bottom:733.544133pt;}
.y31{bottom:734.202533pt;}
.y3ab{bottom:734.942000pt;}
.y9{bottom:735.344133pt;}
.y2ad{bottom:737.324133pt;}
.y37f{bottom:737.489333pt;}
.y201{bottom:737.490667pt;}
.y160{bottom:737.492000pt;}
.yd8{bottom:737.493333pt;}
.y141{bottom:737.494667pt;}
.y9a{bottom:737.896533pt;}
.y2dc{bottom:741.104133pt;}
.y72{bottom:748.066133pt;}
.y53{bottom:748.322533pt;}
.y30{bottom:748.604533pt;}
.y7b{bottom:749.162533pt;}
.y280{bottom:750.656133pt;}
.y8{bottom:751.340133pt;}
.y399{bottom:753.614000pt;}
.y99{bottom:753.896533pt;}
.y2db{bottom:754.436133pt;}
.y1ea{bottom:754.824000pt;}
.yd7{bottom:754.825333pt;}
.y140{bottom:754.826667pt;}
.yb0{bottom:757.155733pt;}
.y7{bottom:767.336133pt;}
.y27f{bottom:767.768133pt;}
.y2da{bottom:771.548133pt;}
.yd6{bottom:772.157333pt;}
.y13f{bottom:772.158667pt;}
.y71{bottom:772.958133pt;}
.y2f{bottom:777.404533pt;}
.y3f6{bottom:777.614000pt;}
.y98{bottom:779.901867pt;}
.y37e{bottom:780.596933pt;}
.yaf{bottom:781.162400pt;}
.y6{bottom:783.332133pt;}
.y27e{bottom:784.880133pt;}
.y398{bottom:787.392133pt;}
.y2d9{bottom:788.660133pt;}
.yd5{bottom:789.490667pt;}
.y2e{bottom:793.404533pt;}
.y21{bottom:795.133333pt;}
.y97{bottom:795.901867pt;}
.y70{bottom:796.520133pt;}
.y27d{bottom:798.212133pt;}
.y5{bottom:799.328133pt;}
.y2ac{bottom:801.992133pt;}
.yd4{bottom:806.822667pt;}
.y20{bottom:810.417467pt;}
.y397{bottom:811.398800pt;}
.y6f{bottom:813.852133pt;}
.y2d{bottom:814.737867pt;}
.y4{bottom:815.324133pt;}
.y7a{bottom:818.957867pt;}
.y52{bottom:821.225467pt;}
.y96{bottom:821.901867pt;}
.yd3{bottom:862.080800pt;}
.h34{height:32.064000pt;}
.h6{height:33.845333pt;}
.h3{height:34.144000pt;}
.h13{height:34.304000pt;}
.h19{height:35.626667pt;}
.h12{height:36.448000pt;}
.h2b{height:36.687500pt;}
.h41{height:37.315627pt;}
.h43{height:38.544000pt;}
.h5{height:38.592000pt;}
.h3f{height:38.603733pt;}
.h4{height:38.928000pt;}
.h7{height:40.736000pt;}
.h11{height:41.090667pt;}
.h38{height:41.426880pt;}
.h33{height:41.430613pt;}
.h44{height:41.437013pt;}
.h27{height:41.437547pt;}
.h45{height:41.439680pt;}
.h39{height:41.459947pt;}
.h3c{height:41.469547pt;}
.h2f{height:41.470080pt;}
.h3a{height:41.470613pt;}
.h35{height:41.471680pt;}
.h36{height:41.477547pt;}
.h3b{height:41.487680pt;}
.h25{height:41.493013pt;}
.h26{height:41.493547pt;}
.h3e{height:41.495680pt;}
.h3d{height:41.498880pt;}
.h40{height:41.499413pt;}
.hb{height:42.752000pt;}
.h42{height:42.854933pt;}
.h18{height:42.858667pt;}
.h1a{height:42.859200pt;}
.h1b{height:42.869867pt;}
.hd{height:42.880000pt;}
.h17{height:42.887467pt;}
.h10{height:43.253333pt;}
.h1d{height:44.093381pt;}
.h2a{height:44.500000pt;}
.h16{height:45.024000pt;}
.h15{height:45.416000pt;}
.h9{height:47.168000pt;}
.h4a{height:48.292693pt;}
.h48{height:48.298027pt;}
.h47{height:48.332693pt;}
.h32{height:48.346027pt;}
.h37{height:48.356693pt;}
.h30{height:48.362027pt;}
.h2c{height:48.367360pt;}
.h28{height:48.372693pt;}
.h46{height:48.375360pt;}
.h22{height:48.378027pt;}
.h2e{height:48.383360pt;}
.h1f{height:48.388693pt;}
.h24{height:48.394027pt;}
.h2d{height:48.398827pt;}
.h23{height:48.399360pt;}
.h29{height:48.402027pt;}
.h21{height:48.404693pt;}
.h20{height:48.410027pt;}
.h31{height:48.415360pt;}
.ha{height:51.456000pt;}
.hc{height:51.508267pt;}
.h14{height:56.229333pt;}
.h1e{height:59.969493pt;}
.h8{height:60.032000pt;}
.h49{height:62.781250pt;}
.h2{height:111.488000pt;}
.h1c{height:397.229333pt;}
.h0{height:905.717733pt;}
.h1{height:906.000000pt;}
.he{height:907.140800pt;}
.hf{height:907.333333pt;}
.w4{width:11.700000pt;}
.w3{width:642.666667pt;}
.w2{width:642.903067pt;}
.w1{width:644.000000pt;}
.w0{width:644.145067pt;}
.x0{left:0.000000pt;}
.x1e{left:9.480267pt;}
.x3{left:13.524933pt;}
.x1d{left:28.569067pt;}
.x17{left:56.884533pt;}
.x4{left:68.223067pt;}
.x18{left:75.777867pt;}
.x53{left:78.222400pt;}
.x54{left:81.429467pt;}
.x13{left:83.341200pt;}
.x24{left:87.114000pt;}
.x3e{left:90.862267pt;}
.x4e{left:92.112533pt;}
.x1b{left:94.676800pt;}
.x55{left:100.173733pt;}
.xd{left:101.523200pt;}
.x3d{left:105.021200pt;}
.x25{left:106.021600pt;}
.x5c{left:108.629067pt;}
.x23{left:109.801333pt;}
.xc{left:113.763200pt;}
.xa{left:115.695600pt;}
.x50{left:119.533067pt;}
.xf{left:123.731200pt;}
.x9{left:127.087600pt;}
.x41{left:132.735467pt;}
.x42{left:141.627467pt;}
.x1{left:144.638933pt;}
.x7{left:146.528667pt;}
.x31{left:157.311333pt;}
.x3f{left:158.739600pt;}
.x20{left:166.711733pt;}
.xb{left:173.631600pt;}
.x5a{left:176.118533pt;}
.x4d{left:177.060800pt;}
.x1c{left:179.062267pt;}
.x48{left:185.999467pt;}
.x2{left:206.206933pt;}
.x8{left:208.096667pt;}
.x4f{left:212.640000pt;}
.x5d{left:215.069867pt;}
.xe{left:217.475200pt;}
.x37{left:229.279333pt;}
.x1a{left:246.297867pt;}
.x19{left:249.084533pt;}
.x40{left:250.733067pt;}
.x15{left:256.229200pt;}
.x1f{left:258.289733pt;}
.x2f{left:259.418267pt;}
.x6{left:260.515867pt;}
.x5{left:266.136933pt;}
.x14{left:271.347200pt;}
.x2a{left:273.378400pt;}
.x43{left:276.810800pt;}
.x10{left:277.727600pt;}
.x34{left:284.628933pt;}
.x56{left:288.545467pt;}
.x39{left:294.525733pt;}
.x49{left:315.132800pt;}
.x26{left:321.319333pt;}
.x28{left:329.082933pt;}
.x35{left:330.978267pt;}
.x2c{left:332.922133pt;}
.x27{left:346.396400pt;}
.x29{left:347.379067pt;}
.x2b{left:351.498800pt;}
.x11{left:355.600000pt;}
.x2e{left:357.609600pt;}
.x44{left:358.735733pt;}
.x47{left:360.286533pt;}
.x58{left:361.833733pt;}
.x3c{left:367.944000pt;}
.x3b{left:373.980400pt;}
.x2d{left:384.948133pt;}
.x51{left:390.673733pt;}
.x32{left:396.719333pt;}
.x45{left:401.469200pt;}
.x38{left:405.768267pt;}
.x52{left:413.445200pt;}
.x33{left:423.050000pt;}
.x16{left:425.318667pt;}
.x21{left:446.939733pt;}
.x4c{left:450.805067pt;}
.x3a{left:453.865600pt;}
.x4b{left:455.319867pt;}
.x46{left:462.391600pt;}
.x4a{left:466.424000pt;}
.x22{left:472.312933pt;}
.x57{left:474.697200pt;}
.x5b{left:475.591333pt;}
.x59{left:482.953200pt;}
.x36{left:493.705467pt;}
.x30{left:514.083333pt;}
.x12{left:520.652267pt;}
}




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