
    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_b083a7fc2ed769925d288fae.woff')format("woff");}.ff1{font-family:ff1;line-height:1.182129;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_17daf80e2d2bf76d563dcca6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_82da53b7a3d756994ece7e69.woff')format("woff");}.ff3{font-family:ff3;line-height:1.377930;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_34979dc4fa3c80b79675127a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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_ea407cdb42adfa35c580cdb0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.016113;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_33b0436127bd0a30150b883e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.377930;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_1f99a7a4c4ce927607cbcf4d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f15283625ddf66a235111447.woff')format("woff");}.ff8{font-family:ff8;line-height:1.016113;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_39db0c75b4ecba4c755c71e7.woff')format("woff");}.ff9{font-family:ff9;line-height:1.377930;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_e268c21177247fb3d8d81a8d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.075195;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_8816d8334484ebc631635a38.woff')format("woff");}.ffb{font-family:ffb;line-height:1.072754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-22.981800px;}
.v1{vertical-align:-20.021400px;}
.v9{vertical-align:-17.970000px;}
.v4{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:11.994000px;}
.va{vertical-align:13.980000px;}
.v3{vertical-align:16.941000px;}
.v8{vertical-align:18.006000px;}
.v2{vertical-align:19.968000px;}
.v6{vertical-align:22.925400px;}
.v5{vertical-align:72.000000px;}
.ls1d{letter-spacing:-4.860000px;}
.ls1f{letter-spacing:-4.482000px;}
.ls51{letter-spacing:-3.933000px;}
.ls7a{letter-spacing:-3.483000px;}
.ls2a{letter-spacing:-3.420000px;}
.ls68{letter-spacing:-3.312000px;}
.ls1c{letter-spacing:-2.862000px;}
.ls3b{letter-spacing:-2.760000px;}
.ls39{letter-spacing:-2.700000px;}
.ls50{letter-spacing:-2.691000px;}
.ls38{letter-spacing:-2.580000px;}
.ls4d{letter-spacing:-2.538000px;}
.ls2d{letter-spacing:-2.520000px;}
.ls43{letter-spacing:-2.415000px;}
.lsa{letter-spacing:-2.340000px;}
.ls85{letter-spacing:-2.331000px;}
.ls6e{letter-spacing:-2.277000px;}
.ls61{letter-spacing:-2.106000px;}
.ls3a{letter-spacing:-2.100000px;}
.ls16{letter-spacing:-2.070000px;}
.ls6f{letter-spacing:-2.001000px;}
.ls4f{letter-spacing:-1.980000px;}
.ls52{letter-spacing:-1.944000px;}
.ls8{letter-spacing:-1.932000px;}
.ls65{letter-spacing:-1.863000px;}
.ls59{letter-spacing:-1.794000px;}
.ls6c{letter-spacing:-1.782000px;}
.ls86{letter-spacing:-1.764000px;}
.ls25{letter-spacing:-1.680000px;}
.ls4c{letter-spacing:-1.620000px;}
.ls42{letter-spacing:-1.587000px;}
.ls57{letter-spacing:-1.560000px;}
.ls55{letter-spacing:-1.539000px;}
.ls44{letter-spacing:-1.518000px;}
.ls21{letter-spacing:-1.512000px;}
.ls53{letter-spacing:-1.404000px;}
.ls37{letter-spacing:-1.380000px;}
.ls6a{letter-spacing:-1.350000px;}
.ls29{letter-spacing:-1.320000px;}
.ls1a{letter-spacing:-1.311000px;}
.ls5e{letter-spacing:-1.242000px;}
.ls41{letter-spacing:-1.215000px;}
.ls28{letter-spacing:-1.200000px;}
.ls7f{letter-spacing:-1.197000px;}
.ls7e{letter-spacing:-1.134000px;}
.ls3c{letter-spacing:-1.035000px;}
.ls2c{letter-spacing:-0.960000px;}
.ls1b{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.855000px;}
.ls12{letter-spacing:-0.840000px;}
.ls22{letter-spacing:-0.780000px;}
.ls6{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.702000px;}
.ls80{letter-spacing:-0.693000px;}
.ls3f{letter-spacing:-0.627000px;}
.ls36{letter-spacing:-0.600000px;}
.ls20{letter-spacing:-0.594000px;}
.ls79{letter-spacing:-0.570000px;}
.ls34{letter-spacing:-0.480000px;}
.ls1{letter-spacing:-0.441000px;}
.ls35{letter-spacing:-0.420000px;}
.ls6b{letter-spacing:-0.414000px;}
.ls10{letter-spacing:-0.405000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.180000px;}
.ls54{letter-spacing:-0.171000px;}
.ls26{letter-spacing:-0.120000px;}
.ls33{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000300px;}
.ls64{letter-spacing:0.000600px;}
.ls6d{letter-spacing:0.001560px;}
.ls60{letter-spacing:0.001752px;}
.ls46{letter-spacing:0.004800px;}
.ls3e{letter-spacing:0.008376px;}
.ls5c{letter-spacing:0.008628px;}
.ls56{letter-spacing:0.009228px;}
.ls48{letter-spacing:0.014400px;}
.ls49{letter-spacing:0.016800px;}
.ls72{letter-spacing:0.019800px;}
.ls70{letter-spacing:0.021000px;}
.ls3d{letter-spacing:0.024300px;}
.ls4a{letter-spacing:0.028800px;}
.ls47{letter-spacing:0.029400px;}
.ls75{letter-spacing:0.030600px;}
.ls71{letter-spacing:0.033900px;}
.ls73{letter-spacing:0.035700px;}
.ls77{letter-spacing:0.055800px;}
.ls74{letter-spacing:0.063000px;}
.ls62{letter-spacing:0.080100px;}
.ls78{letter-spacing:0.088200px;}
.ls7{letter-spacing:0.108000px;}
.ls69{letter-spacing:0.138000px;}
.ls5{letter-spacing:0.180000px;}
.ls5b{letter-spacing:0.207000px;}
.ls40{letter-spacing:0.243000px;}
.ls5f{letter-spacing:0.276000px;}
.ls23{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.900000px;}
.ls24{letter-spacing:1.140000px;}
.ls32{letter-spacing:1.260000px;}
.ls7b{letter-spacing:2.160900px;}
.ls63{letter-spacing:2.273400px;}
.lsc{letter-spacing:2.400000px;}
.ls5d{letter-spacing:2.553000px;}
.ls31{letter-spacing:3.060000px;}
.ls82{letter-spacing:3.225000px;}
.ls84{letter-spacing:3.313800px;}
.ls4e{letter-spacing:3.445200px;}
.ls76{letter-spacing:4.125000px;}
.lsb{letter-spacing:4.200000px;}
.ls4b{letter-spacing:4.275000px;}
.ls7c{letter-spacing:4.347000px;}
.ls83{letter-spacing:4.542300px;}
.lsd{letter-spacing:4.950000px;}
.ls15{letter-spacing:5.400000px;}
.lse{letter-spacing:5.460000px;}
.ls67{letter-spacing:5.658000px;}
.ls3{letter-spacing:5.760000px;}
.ls9{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls7d{letter-spacing:6.300000px;}
.ls66{letter-spacing:7.245000px;}
.ls13{letter-spacing:8.160156px;}
.ls14{letter-spacing:8.160756px;}
.ls5a{letter-spacing:8.832000px;}
.ls81{letter-spacing:9.027900px;}
.ls45{letter-spacing:9.094200px;}
.ls58{letter-spacing:9.780000px;}
.ls2f{letter-spacing:195.900000px;}
.ls18{letter-spacing:222.900000px;}
.ls17{letter-spacing:233.400000px;}
.ls30{letter-spacing:307.920000px;}
.ls19{letter-spacing:325.680000px;}
.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;}
}
.ws79{word-spacing:-60.000000px;}
.ws16{word-spacing:-42.240000px;}
.ws7a{word-spacing:-42.000000px;}
.ws1{word-spacing:-26.784000px;}
.ws18{word-spacing:-26.475000px;}
.wse{word-spacing:-26.025000px;}
.ws78{word-spacing:-25.350000px;}
.ws9c{word-spacing:-25.200000px;}
.wsa8{word-spacing:-24.300000px;}
.wsab{word-spacing:-22.860000px;}
.ws3{word-spacing:-22.740000px;}
.ws10{word-spacing:-22.356000px;}
.ws9f{word-spacing:-22.050000px;}
.ws6e{word-spacing:-20.250000px;}
.ws12{word-spacing:-19.389000px;}
.ws9d{word-spacing:-19.278000px;}
.ws2{word-spacing:-18.816000px;}
.ws1b{word-spacing:-18.630000px;}
.ws83{word-spacing:-18.468000px;}
.wsa0{word-spacing:-17.703000px;}
.ws8b{word-spacing:-17.319000px;}
.wsf{word-spacing:-17.262000px;}
.ws91{word-spacing:-17.181000px;}
.ws11{word-spacing:-17.043000px;}
.ws0{word-spacing:-17.040000px;}
.ws61{word-spacing:-16.860000px;}
.ws52{word-spacing:-15.900000px;}
.ws8a{word-spacing:-15.801000px;}
.ws1d{word-spacing:-15.732000px;}
.ws74{word-spacing:-15.663000px;}
.wsa1{word-spacing:-15.561000px;}
.ws73{word-spacing:-15.525000px;}
.ws71{word-spacing:-15.456000px;}
.ws86{word-spacing:-15.249000px;}
.ws90{word-spacing:-15.180000px;}
.ws1a{word-spacing:-15.174000px;}
.ws70{word-spacing:-15.111000px;}
.ws9b{word-spacing:-15.042000px;}
.ws1c{word-spacing:-14.973000px;}
.wsa6{word-spacing:-14.868000px;}
.ws4{word-spacing:-14.820000px;}
.ws9a{word-spacing:-14.766000px;}
.ws72{word-spacing:-14.628000px;}
.wsa2{word-spacing:-14.427000px;}
.wsa4{word-spacing:-14.364000px;}
.ws7e{word-spacing:-14.352000px;}
.ws24{word-spacing:-14.100000px;}
.ws21{word-spacing:-13.986000px;}
.ws62{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.338000px;}
.ws85{word-spacing:-13.260000px;}
.wsa9{word-spacing:-13.230000px;}
.ws7f{word-spacing:-13.110000px;}
.ws22{word-spacing:-13.068000px;}
.ws7d{word-spacing:-12.840000px;}
.ws6{word-spacing:-12.480000px;}
.ws92{word-spacing:-11.988000px;}
.ws81{word-spacing:-11.934000px;}
.ws96{word-spacing:-11.826000px;}
.ws7b{word-spacing:-11.718000px;}
.ws97{word-spacing:-11.556000px;}
.ws80{word-spacing:-11.394000px;}
.ws17{word-spacing:-11.303787px;}
.ws8f{word-spacing:-11.232000px;}
.ws7c{word-spacing:-10.800000px;}
.wsa5{word-spacing:-10.320849px;}
.ws6f{word-spacing:-9.936069px;}
.ws8d{word-spacing:-9.829380px;}
.ws87{word-spacing:-9.780000px;}
.ws8e{word-spacing:-8.846442px;}
.ws89{word-spacing:-8.832000px;}
.ws5{word-spacing:-8.640060px;}
.ws77{word-spacing:-7.776054px;}
.ws93{word-spacing:-7.245000px;}
.wsa3{word-spacing:-6.300000px;}
.ws9{word-spacing:-6.000000px;}
.wsa{word-spacing:-5.760000px;}
.ws94{word-spacing:-5.658000px;}
.ws14{word-spacing:-4.200000px;}
.ws8c{word-spacing:-2.553000px;}
.ws13{word-spacing:-2.400000px;}
.ws7{word-spacing:0.000000px;}
.ws68{word-spacing:0.060000px;}
.ws44{word-spacing:0.120000px;}
.ws84{word-spacing:0.171000px;}
.wsb{word-spacing:0.180000px;}
.ws67{word-spacing:0.240000px;}
.ws99{word-spacing:0.414000px;}
.ws8{word-spacing:0.441000px;}
.ws6c{word-spacing:0.480000px;}
.ws9e{word-spacing:0.570000px;}
.ws75{word-spacing:0.627000px;}
.ws41{word-spacing:0.702000px;}
.wsc{word-spacing:0.720000px;}
.ws66{word-spacing:0.780000px;}
.ws15{word-spacing:0.855000px;}
.ws6b{word-spacing:0.960000px;}
.ws6d{word-spacing:1.035000px;}
.wsa7{word-spacing:1.134000px;}
.ws76{word-spacing:1.215000px;}
.ws98{word-spacing:1.380000px;}
.ws43{word-spacing:1.680000px;}
.wsaa{word-spacing:1.764000px;}
.wsd{word-spacing:1.932000px;}
.ws6a{word-spacing:2.100000px;}
.ws45{word-spacing:2.520000px;}
.ws82{word-spacing:2.538000px;}
.ws69{word-spacing:2.700000px;}
.ws95{word-spacing:3.312000px;}
.ws42{word-spacing:4.482000px;}
.ws5b{word-spacing:58.080000px;}
.ws54{word-spacing:98.184000px;}
.ws88{word-spacing:102.900000px;}
.ws39{word-spacing:115.260000px;}
.ws5d{word-spacing:115.854000px;}
.ws23{word-spacing:118.194000px;}
.ws26{word-spacing:130.800000px;}
.ws63{word-spacing:135.000000px;}
.ws5c{word-spacing:137.604000px;}
.ws20{word-spacing:140.238000px;}
.ws57{word-spacing:140.826000px;}
.ws5e{word-spacing:140.886000px;}
.ws65{word-spacing:154.776000px;}
.ws37{word-spacing:164.820000px;}
.ws60{word-spacing:166.266000px;}
.ws4a{word-spacing:166.290000px;}
.ws2d{word-spacing:169.272000px;}
.ws59{word-spacing:178.692000px;}
.ws49{word-spacing:179.328000px;}
.ws51{word-spacing:180.150000px;}
.ws1e{word-spacing:180.592200px;}
.ws4e{word-spacing:183.720000px;}
.ws3e{word-spacing:184.146000px;}
.ws2f{word-spacing:184.908000px;}
.ws30{word-spacing:185.070000px;}
.ws4c{word-spacing:187.014000px;}
.ws40{word-spacing:190.830000px;}
.ws56{word-spacing:191.010000px;}
.ws1f{word-spacing:191.894400px;}
.ws5f{word-spacing:196.854000px;}
.ws38{word-spacing:197.460000px;}
.ws2a{word-spacing:197.700000px;}
.ws2b{word-spacing:199.410000px;}
.ws36{word-spacing:206.766000px;}
.ws4b{word-spacing:209.400000px;}
.ws50{word-spacing:209.460000px;}
.ws2e{word-spacing:209.850000px;}
.ws48{word-spacing:210.180000px;}
.ws58{word-spacing:211.140000px;}
.ws3d{word-spacing:218.460000px;}
.ws25{word-spacing:220.590000px;}
.ws3f{word-spacing:224.280000px;}
.ws29{word-spacing:225.420000px;}
.ws55{word-spacing:225.780000px;}
.ws4f{word-spacing:229.374000px;}
.ws32{word-spacing:239.460000px;}
.ws3c{word-spacing:241.584000px;}
.ws31{word-spacing:242.418000px;}
.ws33{word-spacing:243.672000px;}
.ws34{word-spacing:247.056000px;}
.ws2c{word-spacing:252.840000px;}
.ws5a{word-spacing:254.544000px;}
.ws3b{word-spacing:256.134000px;}
.ws64{word-spacing:259.302000px;}
.ws27{word-spacing:268.794000px;}
.ws53{word-spacing:269.646000px;}
.ws4d{word-spacing:274.566000px;}
.ws3a{word-spacing:276.900000px;}
.ws35{word-spacing:292.674000px;}
.ws46{word-spacing:297.792000px;}
.ws28{word-spacing:308.820000px;}
.ws47{word-spacing:317.082000px;}
._47{margin-left:-19.985400px;}
._1b{margin-left:-18.669600px;}
._49{margin-left:-17.436000px;}
._21{margin-left:-15.387000px;}
._45{margin-left:-9.784200px;}
._1e{margin-left:-8.487000px;}
._b{margin-left:-7.368000px;}
._42{margin-left:-6.317100px;}
._5{margin-left:-5.311200px;}
._c{margin-left:-3.663600px;}
._6{margin-left:-2.074800px;}
._d{margin-left:-1.033200px;}
._3{width:1.148400px;}
._1{width:2.400000px;}
._9{width:3.417600px;}
._a{width:4.698000px;}
._4{width:5.720400px;}
._8{width:6.756000px;}
._7{width:7.777200px;}
._e{width:8.949000px;}
._17{width:10.354800px;}
._1a{width:11.424600px;}
._19{width:12.638700px;}
._48{width:13.734000px;}
._44{width:15.456000px;}
._18{width:16.783500px;}
._11{width:17.976000px;}
._23{width:20.583300px;}
._46{width:21.845400px;}
._16{width:23.023200px;}
._13{width:24.024600px;}
._4b{width:25.485000px;}
._24{width:27.704160px;}
._4d{width:32.508000px;}
._14{width:43.445160px;}
._10{width:62.454000px;}
._20{width:65.087700px;}
._1c{width:82.752300px;}
._43{width:102.180000px;}
._39{width:113.137200px;}
._33{width:115.057200px;}
._3c{width:127.098000px;}
._40{width:137.127600px;}
._2e{width:140.644800px;}
._34{width:150.181200px;}
._1d{width:153.594000px;}
._1f{width:155.919300px;}
._31{width:185.869200px;}
._35{width:188.880000px;}
._32{width:192.468000px;}
._3d{width:194.637600px;}
._36{width:201.724800px;}
._3e{width:206.282400px;}
._37{width:209.277600px;}
._3b{width:210.925200px;}
._38{width:222.070800px;}
._2b{width:235.320000px;}
._12{width:241.332000px;}
._2a{width:255.180000px;}
._2c{width:256.903200px;}
._27{width:261.164400px;}
._29{width:265.320000px;}
._3f{width:301.894800px;}
._41{width:304.531200px;}
._2d{width:322.020000px;}
._30{width:325.482000px;}
._2f{width:332.934000px;}
._28{width:335.760000px;}
._22{width:456.202200px;}
._26{width:457.468800px;}
._f{width:459.945000px;}
._4c{width:461.293800px;}
._4a{width:462.844200px;}
._0{width:578.400000px;}
._15{width:956.206200px;}
._25{width:958.831200px;}
._3a{width:962.881200px;}
._2{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fse{font-size:36.729000px;}
.fsb{font-size:40.227000px;}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y184{bottom:106.251300px;}
.y37d{bottom:106.260600px;}
.y20a{bottom:106.290300px;}
.y1c3{bottom:106.293300px;}
.y3f{bottom:106.296300px;}
.y2b9{bottom:106.300050px;}
.y20{bottom:106.303650px;}
.y31c{bottom:106.306050px;}
.yf5{bottom:106.321500px;}
.y2f9{bottom:106.355100px;}
.y35c{bottom:106.418100px;}
.y85{bottom:109.294800px;}
.yd1{bottom:111.845700px;}
.y39c{bottom:119.782500px;}
.y183{bottom:123.504300px;}
.y138{bottom:123.534300px;}
.y271{bottom:123.540300px;}
.y209{bottom:123.543300px;}
.y15c{bottom:123.546300px;}
.y3e{bottom:126.544800px;}
.y31b{bottom:126.718050px;}
.y2b8{bottom:126.758550px;}
.y2f8{bottom:126.908850px;}
.y1f{bottom:126.913650px;}
.y35b{bottom:127.428600px;}
.y33a{bottom:127.617600px;}
.y84{bottom:127.798200px;}
.y37c{bottom:128.105850px;}
.yd0{bottom:129.845700px;}
.ya9{bottom:130.796700px;}
.yf4{bottom:132.696750px;}
.y39b{bottom:140.032500px;}
.y182{bottom:140.757300px;}
.y137{bottom:140.787300px;}
.y15b{bottom:140.790300px;}
.y270{bottom:140.793300px;}
.y208{bottom:140.796300px;}
.y1a2{bottom:143.794800px;}
.y5f{bottom:145.048200px;}
.y31a{bottom:147.130050px;}
.y2b7{bottom:147.217650px;}
.y2f7{bottom:147.462600px;}
.y1e{bottom:147.523650px;}
.ycf{bottom:147.845700px;}
.y83{bottom:148.046700px;}
.y37b{bottom:149.951100px;}
.ya8{bottom:152.298750px;}
.y35a{bottom:154.817850px;}
.y339{bottom:155.258850px;}
.y181{bottom:158.010300px;}
.y136{bottom:158.040300px;}
.y15a{bottom:158.043300px;}
.y26f{bottom:158.046300px;}
.yf3{bottom:159.072000px;}
.y39a{bottom:160.282500px;}
.y207{bottom:161.044800px;}
.y5e{bottom:165.296700px;}
.yce{bottom:165.845700px;}
.y113{bottom:166.547250px;}
.y2b6{bottom:167.676450px;}
.y2f6{bottom:168.016350px;}
.y1d{bottom:168.136650px;}
.y82{bottom:169.548750px;}
.y37a{bottom:171.796350px;}
.ya7{bottom:173.800650px;}
.y319{bottom:173.920800px;}
.y1e5{bottom:174.774450px;}
.y180{bottom:175.263300px;}
.y135{bottom:175.293300px;}
.y159{bottom:175.296300px;}
.y359{bottom:175.828350px;}
.y26e{bottom:178.294800px;}
.y206{bottom:179.533200px;}
.y22c{bottom:179.548200px;}
.y399{bottom:180.532500px;}
.y338{bottom:182.900100px;}
.y5d{bottom:183.800250px;}
.ycd{bottom:183.845700px;}
.yf2{bottom:185.447250px;}
.y1c2{bottom:187.765200px;}
.y1a1{bottom:187.823250px;}
.y2d5{bottom:187.825500px;}
.y2b5{bottom:188.135850px;}
.y2f5{bottom:188.570100px;}
.y1c{bottom:188.746650px;}
.y81{bottom:191.050650px;}
.y293{bottom:192.052800px;}
.y17f{bottom:192.516300px;}
.y134{bottom:192.546300px;}
.y3d{bottom:193.316250px;}
.y318{bottom:194.337600px;}
.ya6{bottom:195.302700px;}
.y24d{bottom:195.544800px;}
.y1e4{bottom:195.577950px;}
.y205{bottom:196.786200px;}
.y26d{bottom:196.798200px;}
.y22b{bottom:199.796700px;}
.y379{bottom:200.020350px;}
.y398{bottom:200.782500px;}
.y358{bottom:203.217600px;}
.ycc{bottom:204.020700px;}
.y5c{bottom:204.048750px;}
.y337{bottom:204.162600px;}
.y2b4{bottom:208.594350px;}
.y1c1{bottom:208.758450px;}
.y1b{bottom:209.358150px;}
.y1a0{bottom:209.368500px;}
.y17e{bottom:209.769300px;}
.y133{bottom:209.793300px;}
.y158{bottom:209.796300px;}
.y2d4{bottom:211.095750px;}
.yf1{bottom:211.822500px;}
.y292{bottom:212.362800px;}
.y80{bottom:212.552700px;}
.y204{bottom:214.039200px;}
.y317{bottom:214.749600px;}
.y2f4{bottom:215.502600px;}
.y3c{bottom:216.069000px;}
.y1e3{bottom:216.381450px;}
.ya5{bottom:216.804600px;}
.y26c{bottom:217.046700px;}
.y22a{bottom:218.288250px;}
.y397{bottom:221.032500px;}
.y378{bottom:221.865600px;}
.ycb{bottom:222.020700px;}
.y5b{bottom:222.552150px;}
.y357{bottom:224.228100px;}
.y112{bottom:225.550650px;}
.y17d{bottom:227.022300px;}
.y132{bottom:227.046300px;}
.y2b3{bottom:229.053750px;}
.y1c0{bottom:229.751700px;}
.y1a{bottom:229.974150px;}
.y157{bottom:230.044800px;}
.y19f{bottom:230.977650px;}
.y7f{bottom:231.056100px;}
.y203{bottom:231.292200px;}
.y336{bottom:231.803850px;}
.y291{bottom:232.666650px;}
.y2d3{bottom:234.366000px;}
.y229{bottom:235.541250px;}
.y2f3{bottom:236.056350px;}
.y1e2{bottom:237.184950px;}
.yf0{bottom:238.197750px;}
.ya4{bottom:238.306500px;}
.y3b{bottom:238.804500px;}
.y24c{bottom:239.644500px;}
.y316{bottom:241.540350px;}
.yca{bottom:242.195700px;}
.y5a{bottom:242.800650px;}
.y377{bottom:243.710850px;}
.y17c{bottom:244.275300px;}
.y356{bottom:245.238600px;}
.y111{bottom:247.052700px;}
.y131{bottom:247.294800px;}
.y202{bottom:248.545200px;}
.y2b2{bottom:249.512250px;}
.y19{bottom:250.584150px;}
.y1bf{bottom:250.744950px;}
.y7e{bottom:251.304600px;}
.y19e{bottom:252.522900px;}
.y228{bottom:252.794250px;}
.y290{bottom:252.958350px;}
.y335{bottom:253.066350px;}
.y2f2{bottom:256.610100px;}
.y2d2{bottom:257.636250px;}
.y1e1{bottom:257.988450px;}
.ya3{bottom:259.808550px;}
.y24b{bottom:260.361750px;}
.y26b{bottom:261.020400px;}
.y17b{bottom:261.528300px;}
.y396{bottom:261.532500px;}
.y3a{bottom:261.540000px;}
.y315{bottom:261.996600px;}
.yc9{bottom:262.370700px;}
.yef{bottom:264.573000px;}
.y201{bottom:265.798200px;}
.y110{bottom:268.554600px;}
.y130{bottom:268.796700px;}
.y2b1{bottom:269.973300px;}
.y227{bottom:270.047250px;}
.y18{bottom:271.194150px;}
.y1be{bottom:271.738200px;}
.y376{bottom:271.934850px;}
.y355{bottom:272.627850px;}
.y7d{bottom:272.806500px;}
.y28f{bottom:273.268350px;}
.y156{bottom:274.059000px;}
.y19d{bottom:274.068150px;}
.y17a{bottom:278.781300px;}
.y1e0{bottom:278.791950px;}
.y334{bottom:280.707600px;}
.y2d1{bottom:280.906500px;}
.y24a{bottom:281.079000px;}
.ya2{bottom:281.310450px;}
.y395{bottom:281.782500px;}
.y314{bottom:282.408600px;}
.y26a{bottom:282.410400px;}
.yc8{bottom:282.545700px;}
.y200{bottom:283.048200px;}
.y2f1{bottom:283.542600px;}
.y39{bottom:284.292750px;}
.y59{bottom:286.825050px;}
.y226{bottom:287.300250px;}
.y12f{bottom:290.298750px;}
.y2b0{bottom:290.431800px;}
.y17{bottom:291.804150px;}
.y1bd{bottom:292.731450px;}
.y28e{bottom:293.578350px;}
.y354{bottom:293.638350px;}
.y7c{bottom:294.308550px;}
.y155{bottom:294.339000px;}
.y179{bottom:296.034300px;}
.y1df{bottom:299.572350px;}
.y375{bottom:300.158850px;}
.y1ff{bottom:300.286200px;}
.y249{bottom:301.796250px;}
.y333{bottom:301.970100px;}
.y394{bottom:302.032500px;}
.yc7{bottom:302.720700px;}
.ya1{bottom:302.812500px;}
.y269{bottom:303.800400px;}
.y2f0{bottom:304.096350px;}
.y2d0{bottom:304.176750px;}
.y38{bottom:307.028250px;}
.y225{bottom:307.548750px;}
.y313{bottom:309.199350px;}
.y58{bottom:309.612300px;}
.y2af{bottom:310.890300px;}
.y16{bottom:312.417150px;}
.y10f{bottom:312.577650px;}
.y178{bottom:313.287300px;}
.y1bc{bottom:313.724700px;}
.y28d{bottom:313.888350px;}
.y154{bottom:314.619000px;}
.y353{bottom:314.648850px;}
.y7b{bottom:315.810450px;}
.yee{bottom:317.340750px;}
.y1fe{bottom:317.539200px;}
.y19c{bottom:318.521400px;}
.y1de{bottom:320.375850px;}
.yc6{bottom:320.720700px;}
.y374{bottom:322.004100px;}
.y393{bottom:322.282500px;}
.y248{bottom:322.513500px;}
.ya0{bottom:324.314400px;}
.y2ef{bottom:324.650100px;}
.y268{bottom:325.190400px;}
.y2cf{bottom:327.447000px;}
.y312{bottom:329.611350px;}
.y37{bottom:329.781000px;}
.y177{bottom:330.540300px;}
.y2ae{bottom:331.348800px;}
.y57{bottom:332.417850px;}
.y15{bottom:333.027150px;}
.y10e{bottom:333.432900px;}
.y28c{bottom:334.196850px;}
.y12e{bottom:334.267500px;}
.y1bb{bottom:334.711200px;}
.y1fd{bottom:334.792200px;}
.y153{bottom:334.899000px;}
.y352{bottom:335.659350px;}
.y7a{bottom:337.312500px;}
.yc5{bottom:338.720700px;}
.y19b{bottom:340.066650px;}
.y1dd{bottom:341.179350px;}
.y392{bottom:342.532500px;}
.y247{bottom:343.230750px;}
.yed{bottom:343.716000px;}
.y2ee{bottom:345.203850px;}
.y9f{bottom:345.816450px;}
.y267{bottom:346.580400px;}
.y176{bottom:347.793300px;}
.y373{bottom:350.228100px;}
.y2ce{bottom:350.717250px;}
.y332{bottom:350.873850px;}
.y224{bottom:351.606450px;}
.y2ad{bottom:351.807300px;}
.y1fc{bottom:352.045200px;}
.y36{bottom:352.516500px;}
.y14{bottom:353.641500px;}
.y10d{bottom:354.288150px;}
.y28b{bottom:354.500100px;}
.y12d{bottom:354.570750px;}
.y152{bottom:355.177650px;}
.y56{bottom:355.205100px;}
.y1ba{bottom:355.690800px;}
.y311{bottom:356.402100px;}
.yc4{bottom:356.720700px;}
.y79{bottom:358.814400px;}
.y19a{bottom:361.611900px;}
.y391{bottom:362.782500px;}
.y351{bottom:363.048600px;}
.y246{bottom:363.948000px;}
.y175{bottom:365.046300px;}
.y9e{bottom:367.318350px;}
.y266{bottom:367.970400px;}
.y1fb{bottom:369.298200px;}
.y223{bottom:372.013200px;}
.y372{bottom:372.073350px;}
.y2ed{bottom:372.136350px;}
.y2ac{bottom:372.265800px;}
.y2cd{bottom:373.989150px;}
.y13{bottom:374.251500px;}
.yc3{bottom:374.720700px;}
.y28a{bottom:374.803350px;}
.y12c{bottom:374.874000px;}
.y10c{bottom:375.143400px;}
.y151{bottom:375.450900px;}
.y1b9{bottom:376.684050px;}
.y310{bottom:376.814100px;}
.y55{bottom:378.086400px;}
.y331{bottom:378.515100px;}
.y78{bottom:380.316450px;}
.y1dc{bottom:382.769100px;}
.y199{bottom:383.157150px;}
.y350{bottom:384.059100px;}
.y245{bottom:384.665250px;}
.y174{bottom:385.294800px;}
.y9d{bottom:388.820400px;}
.y265{bottom:389.360400px;}
.y1fa{bottom:389.546700px;}
.y222{bottom:392.419950px;}
.y2ec{bottom:392.690100px;}
.yc2{bottom:392.720700px;}
.y2ab{bottom:392.726100px;}
.y12{bottom:394.861500px;}
.y289{bottom:395.106600px;}
.y12b{bottom:395.177250px;}
.y150{bottom:395.730900px;}
.y390{bottom:395.782500px;}
.y10b{bottom:395.999850px;}
.y35{bottom:396.520650px;}
.yec{bottom:396.912600px;}
.y2cc{bottom:397.264050px;}
.y1b8{bottom:397.637550px;}
.y77{bottom:398.819850px;}
.y330{bottom:399.777600px;}
.y371{bottom:400.297350px;}
.y54{bottom:400.873650px;}
.y1db{bottom:403.572600px;}
.y30f{bottom:403.604850px;}
.y198{bottom:404.702400px;}
.y244{bottom:405.382500px;}
.yc1{bottom:410.720700px;}
.y264{bottom:410.750400px;}
.y34f{bottom:411.448350px;}
.y221{bottom:412.826700px;}
.y2aa{bottom:413.184600px;}
.y2eb{bottom:413.243850px;}
.y288{bottom:415.409850px;}
.y12a{bottom:415.480500px;}
.y11{bottom:415.481850px;}
.y14f{bottom:416.010900px;}
.y10a{bottom:416.856150px;}
.yeb{bottom:417.087600px;}
.y1b7{bottom:418.630800px;}
.y76{bottom:419.068350px;}
.y2cb{bottom:420.534300px;}
.y53{bottom:423.660900px;}
.y30e{bottom:424.016850px;}
.y1da{bottom:424.355850px;}
.y243{bottom:426.099750px;}
.y197{bottom:426.247650px;}
.y32f{bottom:427.418850px;}
.y370{bottom:428.521350px;}
.y173{bottom:429.330750px;}
.yc0{bottom:430.895700px;}
.y263{bottom:432.140400px;}
.y34e{bottom:432.458850px;}
.y9c{bottom:432.843450px;}
.y220{bottom:433.233450px;}
.y1f9{bottom:433.626900px;}
.y2a9{bottom:433.643100px;}
.y287{bottom:435.713100px;}
.y129{bottom:435.783750px;}
.y10{bottom:436.091850px;}
.y14e{bottom:436.290900px;}
.yea{bottom:437.262600px;}
.y38f{bottom:437.287500px;}
.y75{bottom:437.571900px;}
.y109{bottom:437.712600px;}
.y1b6{bottom:439.624050px;}
.y2ea{bottom:440.176350px;}
.y2ca{bottom:443.804550px;}
.y30d{bottom:444.428850px;}
.y1d9{bottom:445.159350px;}
.y52{bottom:446.448150px;}
.y242{bottom:446.817000px;}
.y196{bottom:447.792900px;}
.y32e{bottom:448.681350px;}
.y36f{bottom:450.366600px;}
.y172{bottom:450.910500px;}
.ybf{bottom:451.070700px;}
.y9b{bottom:453.286800px;}
.y34d{bottom:453.469350px;}
.y262{bottom:453.530400px;}
.y21f{bottom:453.640200px;}
.y1f8{bottom:454.016400px;}
.y2a8{bottom:454.101600px;}
.ye9{bottom:455.262600px;}
.y286{bottom:456.016350px;}
.y128{bottom:456.087000px;}
.y14d{bottom:456.569550px;}
.yf{bottom:456.701850px;}
.y38e{bottom:456.787500px;}
.y74{bottom:457.820400px;}
.y108{bottom:458.570250px;}
.y1b5{bottom:460.617300px;}
.y2e9{bottom:460.730100px;}
.y34{bottom:461.286750px;}
.y30c{bottom:464.840850px;}
.y1d8{bottom:465.962850px;}
.y2c9{bottom:467.082600px;}
.y241{bottom:467.534250px;}
.y51{bottom:469.235400px;}
.y195{bottom:469.338150px;}
.y32d{bottom:469.943850px;}
.ybe{bottom:471.245700px;}
.y36e{bottom:472.211850px;}
.y171{bottom:472.490250px;}
.ye8{bottom:473.262600px;}
.y9a{bottom:473.710800px;}
.y21e{bottom:474.046950px;}
.y1f7{bottom:474.405900px;}
.y2a7{bottom:474.561450px;}
.y261{bottom:474.920400px;}
.y38d{bottom:476.287500px;}
.y285{bottom:476.322150px;}
.y127{bottom:476.390250px;}
.y14c{bottom:476.848200px;}
.y73{bottom:479.322300px;}
.y107{bottom:479.425500px;}
.y34c{bottom:480.858600px;}
.y2e8{bottom:481.283850px;}
.y1b4{bottom:481.610550px;}
.y33{bottom:484.776750px;}
.y1d7{bottom:486.752850px;}
.y240{bottom:488.251500px;}
.ye{bottom:490.061850px;}
.y2c8{bottom:490.352850px;}
.y194{bottom:490.883400px;}
.ybd{bottom:491.420700px;}
.y30b{bottom:491.631600px;}
.ye7{bottom:493.437600px;}
.y170{bottom:494.081850px;}
.y99{bottom:494.134800px;}
.y21d{bottom:494.464950px;}
.y1f6{bottom:494.795400px;}
.y2a6{bottom:495.019950px;}
.y38c{bottom:495.787500px;}
.y260{bottom:496.310400px;}
.y284{bottom:496.625400px;}
.y126{bottom:496.693500px;}
.y14b{bottom:497.126850px;}
.y32c{bottom:497.585100px;}
.y106{bottom:500.285400px;}
.y36d{bottom:500.435850px;}
.y2e7{bottom:501.837600px;}
.y34b{bottom:501.869100px;}
.y1d6{bottom:507.556350px;}
.y32{bottom:508.279350px;}
.y23f{bottom:508.968750px;}
.ybc{bottom:511.595700px;}
.y30a{bottom:512.043600px;}
.y193{bottom:512.428650px;}
.ye6{bottom:513.612600px;}
.y2c7{bottom:513.623100px;}
.y98{bottom:514.558800px;}
.y50{bottom:514.827150px;}
.y21c{bottom:514.871700px;}
.y1f5{bottom:515.184900px;}
.y38b{bottom:515.287500px;}
.y2a5{bottom:515.478450px;}
.y16f{bottom:515.661600px;}
.y283{bottom:516.928650px;}
.y125{bottom:516.996750px;}
.y14a{bottom:517.405500px;}
.y25f{bottom:517.700400px;}
.y32b{bottom:518.847600px;}
.y105{bottom:521.140650px;}
.y36c{bottom:522.281100px;}
.y2e6{bottom:522.391350px;}
.y72{bottom:523.328850px;}
.y1b3{bottom:524.925300px;}
.y1d5{bottom:528.359850px;}
.y34a{bottom:529.258350px;}
.y23e{bottom:529.703550px;}
.y31{bottom:530.269350px;}
.ybb{bottom:531.770700px;}
.ye5{bottom:533.787600px;}
.y192{bottom:533.973900px;}
.y38a{bottom:534.787500px;}
.y97{bottom:534.982800px;}
.y21b{bottom:535.278450px;}
.y1f4{bottom:535.574400px;}
.y2a4{bottom:535.940400px;}
.y2c6{bottom:536.893350px;}
.y282{bottom:537.231900px;}
.y16e{bottom:537.265050px;}
.y124{bottom:537.300000px;}
.y4f{bottom:537.614400px;}
.y149{bottom:537.684150px;}
.y309{bottom:538.834350px;}
.y25e{bottom:539.090400px;}
.y104{bottom:541.995900px;}
.y71{bottom:544.408350px;}
.y1b2{bottom:545.918550px;}
.y32a{bottom:546.488850px;}
.yd{bottom:548.933550px;}
.y1d4{bottom:549.122850px;}
.y2e5{bottom:549.323850px;}
.y349{bottom:550.268850px;}
.y23d{bottom:550.420800px;}
.y36b{bottom:550.505100px;}
.yba{bottom:551.945700px;}
.y30{bottom:552.271950px;}
.ye4{bottom:553.962600px;}
.y389{bottom:554.287500px;}
.y96{bottom:555.416400px;}
.y191{bottom:555.534450px;}
.y21a{bottom:555.701700px;}
.y1f3{bottom:555.963900px;}
.y2a3{bottom:556.398900px;}
.y281{bottom:557.535150px;}
.y123{bottom:557.603250px;}
.y148{bottom:557.964150px;}
.y16d{bottom:558.844800px;}
.y308{bottom:559.246350px;}
.y2c5{bottom:560.163600px;}
.y4e{bottom:560.401650px;}
.y25d{bottom:560.480400px;}
.y103{bottom:562.851150px;}
.y70{bottom:565.487850px;}
.y1b1{bottom:566.911800px;}
.y329{bottom:567.751350px;}
.y2e4{bottom:569.877600px;}
.y1d3{bottom:569.926350px;}
.y23c{bottom:571.138050px;}
.yb9{bottom:572.120700px;}
.y36a{bottom:572.350350px;}
.y388{bottom:573.787500px;}
.ye3{bottom:574.137600px;}
.y2f{bottom:574.261950px;}
.y95{bottom:575.854800px;}
.y219{bottom:576.108450px;}
.y1f2{bottom:576.353400px;}
.y2a2{bottom:576.857400px;}
.yc{bottom:577.052550px;}
.y190{bottom:577.079700px;}
.y348{bottom:577.658100px;}
.y280{bottom:577.841700px;}
.y122{bottom:577.906500px;}
.y147{bottom:578.235450px;}
.y16c{bottom:580.424550px;}
.y25c{bottom:581.870400px;}
.y4d{bottom:583.188900px;}
.y2c4{bottom:583.441650px;}
.y102{bottom:583.707600px;}
.y307{bottom:586.037100px;}
.y6f{bottom:586.567350px;}
.y1b0{bottom:587.843550px;}
.y328{bottom:589.013850px;}
.y1d2{bottom:590.729850px;}
.y23b{bottom:591.890250px;}
.yb8{bottom:592.305450px;}
.y387{bottom:593.287500px;}
.ye2{bottom:594.312600px;}
.y2e{bottom:596.251950px;}
.y94{bottom:596.278800px;}
.y1f1{bottom:596.758350px;}
.y2e3{bottom:596.810100px;}
.y2a1{bottom:597.315900px;}
.y27f{bottom:598.144950px;}
.y121{bottom:598.209750px;}
.y146{bottom:598.514100px;}
.y18f{bottom:598.624950px;}
.y347{bottom:598.668600px;}
.y369{bottom:600.574350px;}
.y16b{bottom:602.004300px;}
.y25b{bottom:603.260400px;}
.y101{bottom:604.575750px;}
.y4c{bottom:605.976150px;}
.y306{bottom:606.449100px;}
.y2c3{bottom:606.711900px;}
.y6e{bottom:607.635150px;}
.y1af{bottom:608.836800px;}
.yb7{bottom:610.300950px;}
.y1d1{bottom:611.533350px;}
.ye1{bottom:612.312600px;}
.y23a{bottom:612.607500px;}
.y386{bottom:612.787500px;}
.y327{bottom:616.655100px;}
.y93{bottom:616.702800px;}
.y218{bottom:616.939200px;}
.y1f0{bottom:617.147850px;}
.y2e2{bottom:617.363850px;}
.y2a0{bottom:617.774400px;}
.y2d{bottom:618.254550px;}
.y27e{bottom:618.448200px;}
.y120{bottom:618.463500px;}
.y145{bottom:618.729300px;}
.y346{bottom:619.679100px;}
.y18e{bottom:620.185500px;}
.y368{bottom:622.419600px;}
.y16a{bottom:623.589900px;}
.y25a{bottom:624.650400px;}
.y100{bottom:625.431000px;}
.yb{bottom:626.414850px;}
.y6d{bottom:628.714650px;}
.y4b{bottom:628.763400px;}
.y1ae{bottom:629.830050px;}
.y2c2{bottom:629.982150px;}
.ye0{bottom:630.312600px;}
.y385{bottom:632.293350px;}
.y1d0{bottom:632.336850px;}
.y305{bottom:633.239850px;}
.y239{bottom:633.324750px;}
.y92{bottom:637.131600px;}
.y217{bottom:637.345950px;}
.y1ef{bottom:637.537350px;}
.yb6{bottom:637.637850px;}
.y2e1{bottom:637.917600px;}
.y29f{bottom:638.232900px;}
.y27d{bottom:638.751450px;}
.y11f{bottom:638.766750px;}
.y144{bottom:639.015300px;}
.y2c{bottom:640.244550px;}
.y18d{bottom:641.730750px;}
.y367{bottom:644.264850px;}
.y169{bottom:645.175650px;}
.y259{bottom:646.040400px;}
.y345{bottom:647.068350px;}
.ydf{bottom:648.312600px;}
.y6c{bottom:649.790250px;}
.y1ad{bottom:650.823300px;}
.y4a{bottom:651.550650px;}
.y384{bottom:651.793350px;}
.y1cf{bottom:653.140350px;}
.y2c1{bottom:653.252400px;}
.y304{bottom:653.651850px;}
.y238{bottom:654.042000px;}
.y91{bottom:657.560400px;}
.y216{bottom:657.786600px;}
.y1ee{bottom:657.931800px;}
.yb5{bottom:658.027350px;}
.y29e{bottom:658.691400px;}
.ya{bottom:659.030850px;}
.y27c{bottom:659.059200px;}
.y11e{bottom:659.070000px;}
.y143{bottom:659.301300px;}
.y2b{bottom:662.234550px;}
.y18c{bottom:663.276000px;}
.y2e0{bottom:664.850100px;}
.y326{bottom:665.558850px;}
.y366{bottom:666.110100px;}
.y168{bottom:666.767250px;}
.yff{bottom:667.141500px;}
.y258{bottom:667.430400px;}
.y344{bottom:668.078850px;}
.yde{bottom:668.487600px;}
.y6b{bottom:670.861950px;}
.y383{bottom:671.293350px;}
.y1ac{bottom:671.816550px;}
.y1ce{bottom:673.910100px;}
.y49{bottom:674.337900px;}
.y237{bottom:674.759250px;}
.y2c0{bottom:676.522650px;}
.y90{bottom:677.994000px;}
.y215{bottom:678.193350px;}
.y1ed{bottom:678.312450px;}
.yb4{bottom:678.416850px;}
.y29d{bottom:679.149900px;}
.y27b{bottom:679.362450px;}
.y11d{bottom:679.373250px;}
.y303{bottom:680.442600px;}
.y2a{bottom:684.237000px;}
.y18b{bottom:684.821250px;}
.y2df{bottom:685.403850px;}
.y325{bottom:686.821350px;}
.yfe{bottom:687.996750px;}
.y167{bottom:688.347000px;}
.ydd{bottom:688.662600px;}
.y257{bottom:688.820400px;}
.y343{bottom:689.089350px;}
.y9{bottom:691.646850px;}
.y6a{bottom:691.941450px;}
.y1ab{bottom:692.809800px;}
.y365{bottom:694.334100px;}
.y1cd{bottom:694.713600px;}
.y236{bottom:695.476500px;}
.y48{bottom:697.125150px;}
.y8f{bottom:698.418000px;}
.y214{bottom:698.600100px;}
.y1ec{bottom:698.712450px;}
.yb3{bottom:698.806350px;}
.y29c{bottom:699.610500px;}
.y27a{bottom:699.665700px;}
.y11c{bottom:699.676500px;}
.y2bf{bottom:699.794550px;}
.y142{bottom:699.856050px;}
.y302{bottom:700.854600px;}
.y382{bottom:703.543350px;}
.y2de{bottom:705.957600px;}
.y29{bottom:706.227000px;}
.ydc{bottom:706.662600px;}
.yfd{bottom:708.852000px;}
.y166{bottom:709.950450px;}
.y342{bottom:710.099850px;}
.y256{bottom:710.208300px;}
.y69{bottom:713.020950px;}
.y1aa{bottom:713.803050px;}
.y324{bottom:714.462600px;}
.y1cc{bottom:715.517100px;}
.y364{bottom:716.179350px;}
.y235{bottom:716.246100px;}
.y8e{bottom:718.846800px;}
.y213{bottom:719.006850px;}
.y1eb{bottom:719.112450px;}
.yb2{bottom:719.195850px;}
.y47{bottom:719.912400px;}
.y279{bottom:719.968950px;}
.y11b{bottom:719.979750px;}
.y29b{bottom:720.069000px;}
.y141{bottom:720.142050px;}
.y301{bottom:721.266600px;}
.y2be{bottom:723.064800px;}
.y2dd{bottom:726.511350px;}
.ydb{bottom:726.837600px;}
.y18a{bottom:727.639650px;}
.y28{bottom:728.217000px;}
.yfc{bottom:729.707250px;}
.y165{bottom:731.530200px;}
.y255{bottom:731.589750px;}
.y68{bottom:734.080950px;}
.y1a9{bottom:734.796300px;}
.y323{bottom:735.725100px;}
.y1cb{bottom:736.320600px;}
.y234{bottom:736.963350px;}
.y341{bottom:737.489100px;}
.y363{bottom:738.024600px;}
.y8d{bottom:739.275600px;}
.y212{bottom:739.413600px;}
.y1ea{bottom:739.512450px;}
.yb1{bottom:739.585350px;}
.y278{bottom:740.272200px;}
.y11a{bottom:740.283000px;}
.y140{bottom:740.428050px;}
.y29a{bottom:740.527500px;}
.yda{bottom:747.012600px;}
.y2dc{bottom:747.065100px;}
.y300{bottom:748.057350px;}
.y27{bottom:750.207750px;}
.yfb{bottom:750.562500px;}
.y189{bottom:752.931900px;}
.y254{bottom:752.979750px;}
.y164{bottom:753.109950px;}
.y8{bottom:754.027500px;}
.y67{bottom:755.160450px;}
.y1a8{bottom:755.789550px;}
.y322{bottom:756.987600px;}
.y1ca{bottom:757.117350px;}
.y233{bottom:757.680600px;}
.y340{bottom:758.499600px;}
.y8c{bottom:759.704400px;}
.y211{bottom:759.820350px;}
.y362{bottom:759.869850px;}
.y1e9{bottom:759.912450px;}
.yb0{bottom:759.974850px;}
.y277{bottom:760.575450px;}
.y119{bottom:760.586250px;}
.y13f{bottom:760.714050px;}
.y381{bottom:761.305200px;}
.y46{bottom:765.504150px;}
.yd9{bottom:767.187600px;}
.y2bd{bottom:767.596350px;}
.y2ff{bottom:768.469350px;}
.yfa{bottom:771.417750px;}
.y26{bottom:772.197750px;}
.y2db{bottom:773.997600px;}
.y253{bottom:774.369750px;}
.y163{bottom:774.689700px;}
.y66{bottom:776.239950px;}
.y1a7{bottom:776.782800px;}
.y1c9{bottom:777.900600px;}
.y232{bottom:778.397850px;}
.y8b{bottom:780.133200px;}
.y210{bottom:780.227100px;}
.y1e8{bottom:780.312450px;}
.yaf{bottom:780.364350px;}
.y276{bottom:780.878700px;}
.y118{bottom:780.889500px;}
.y13e{bottom:781.000050px;}
.y299{bottom:781.444500px;}
.y321{bottom:784.628850px;}
.y7{bottom:784.642500px;}
.y33f{bottom:785.888850px;}
.yd8{bottom:787.362600px;}
.y361{bottom:788.093850px;}
.y45{bottom:788.291400px;}
.y380{bottom:788.311200px;}
.yf9{bottom:792.273000px;}
.y25{bottom:794.187750px;}
.y2da{bottom:794.551350px;}
.y2fe{bottom:795.260100px;}
.y252{bottom:795.759750px;}
.y162{bottom:796.269450px;}
.y65{bottom:797.319450px;}
.y1c8{bottom:798.704100px;}
.y231{bottom:799.115100px;}
.y8a{bottom:800.581350px;}
.y20f{bottom:800.667600px;}
.y1e7{bottom:800.712450px;}
.yae{bottom:800.753850px;}
.y275{bottom:801.183150px;}
.y117{bottom:801.192750px;}
.y13d{bottom:801.286050px;}
.y298{bottom:801.904350px;}
.yd7{bottom:805.362600px;}
.y320{bottom:805.891350px;}
.y6{bottom:806.752500px;}
.y33e{bottom:806.899350px;}
.y360{bottom:809.939100px;}
.y44{bottom:811.078650px;}
.yf8{bottom:813.128250px;}
.y2d9{bottom:815.105100px;}
.y2fd{bottom:815.672100px;}
.y188{bottom:816.510150px;}
.y251{bottom:817.147650px;}
.y161{bottom:817.856400px;}
.y64{bottom:818.395050px;}
.y1a6{bottom:818.758500px;}
.y1c7{bottom:819.507600px;}
.y230{bottom:819.832350px;}
.y89{bottom:821.005350px;}
.y20e{bottom:821.074350px;}
.y1e6{bottom:821.112450px;}
.yad{bottom:821.143350px;}
.y274{bottom:821.486400px;}
.y116{bottom:821.496000px;}
.y13c{bottom:821.572050px;}
.y297{bottom:822.362850px;}
.yd6{bottom:825.537600px;}
.y5{bottom:828.862500px;}
.y24{bottom:828.942750px;}
.y35f{bottom:831.784350px;}
.y2bc{bottom:832.889100px;}
.y31f{bottom:833.532600px;}
.y43{bottom:833.865900px;}
.yf7{bottom:833.983500px;}
.y33d{bottom:834.288600px;}
.y2d8{bottom:835.658850px;}
.y187{bottom:838.055400px;}
.y250{bottom:838.531350px;}
.y160{bottom:839.441400px;}
.y63{bottom:839.462850px;}
.y1a5{bottom:839.743500px;}
.y1c6{bottom:840.290850px;}
.y22f{bottom:840.549600px;}
.y88{bottom:841.429350px;}
.y20d{bottom:841.481100px;}
.yac{bottom:841.532850px;}
.y273{bottom:841.791600px;}
.y13b{bottom:841.858050px;}
.y2fc{bottom:842.462850px;}
.y296{bottom:842.821350px;}
.yd5{bottom:843.537600px;}
.y35e{bottom:853.629600px;}
.y31e{bottom:854.795100px;}
.y33c{bottom:855.299100px;}
.y2bb{bottom:856.159350px;}
.y2d7{bottom:856.212600px;}
.y42{bottom:856.653150px;}
.y4{bottom:859.477500px;}
.y186{bottom:859.605750px;}
.y24f{bottom:859.921350px;}
.y62{bottom:860.542350px;}
.y1a4{bottom:860.728500px;}
.y15f{bottom:861.027000px;}
.y1c5{bottom:861.094350px;}
.y22e{bottom:861.266850px;}
.yd4{bottom:861.537600px;}
.y87{bottom:861.853350px;}
.y20c{bottom:861.887850px;}
.yab{bottom:861.922350px;}
.y272{bottom:862.094850px;}
.y115{bottom:862.098600px;}
.y13a{bottom:862.136700px;}
.y2fb{bottom:862.874850px;}
.y37f{bottom:863.189850px;}
.y295{bottom:863.279850px;}
.yf6{bottom:876.102450px;}
.y2d6{bottom:876.766350px;}
.y2ba{bottom:879.431100px;}
.y23{bottom:880.707750px;}
.y185{bottom:881.156100px;}
.y24e{bottom:881.311350px;}
.y3{bottom:881.587500px;}
.y61{bottom:881.621850px;}
.y1a3{bottom:881.708100px;}
.yd3{bottom:881.722500px;}
.y35d{bottom:881.853600px;}
.y1c4{bottom:881.897850px;}
.y22d{bottom:881.984100px;}
.y86{bottom:882.277350px;}
.y20b{bottom:882.294600px;}
.yaa{bottom:882.311850px;}
.y114{bottom:882.398100px;}
.y139{bottom:882.415350px;}
.y31d{bottom:882.436350px;}
.y15e{bottom:882.612750px;}
.y33b{bottom:882.688350px;}
.y2fa{bottom:883.286850px;}
.y37e{bottom:883.444350px;}
.y294{bottom:883.737750px;}
.yd2{bottom:899.718000px;}
.y41{bottom:900.706200px;}
.y60{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.193550px;}
.y15d{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.y40{bottom:966.189000px;}
.hf{height:37.983820px;}
.h15{height:37.984420px;}
.ha{height:44.414062px;}
.h18{height:45.061523px;}
.h11{height:46.992188px;}
.h16{height:48.530695px;}
.h33{height:49.341797px;}
.h10{height:49.965820px;}
.h4{height:55.517578px;}
.h21{height:55.522978px;}
.hb{height:55.534378px;}
.h3{height:58.293457px;}
.h17{height:60.512695px;}
.h24{height:60.524695px;}
.h25{height:60.548695px;}
.he{height:63.845215px;}
.h1d{height:63.860815px;}
.h1e{height:63.874615px;}
.h27{height:64.004215px;}
.h26{height:64.091215px;}
.h9{height:67.236328px;}
.h22{height:67.241728px;}
.h23{height:67.252528px;}
.h32{height:67.260928px;}
.h31{height:67.309528px;}
.h2d{height:67.313728px;}
.h2{height:69.396973px;}
.h34{height:70.598145px;}
.hc{height:74.948730px;}
.h1b{height:77.302577px;}
.h30{height:77.316977px;}
.hd{height:77.321777px;}
.h1c{height:77.336777px;}
.h14{height:77.337377px;}
.h2e{height:77.346977px;}
.h2a{height:77.348777px;}
.h20{height:77.351177px;}
.h13{height:77.352977px;}
.h2f{height:77.355977px;}
.h2b{height:77.375777px;}
.h12{height:77.384177px;}
.h29{height:77.402777px;}
.h2c{height:77.414177px;}
.h28{height:77.513177px;}
.h1f{height:77.604977px;}
.h8{height:77.724609px;}
.h1a{height:90.769043px;}
.h7{height:94.130859px;}
.h5{height:99.931641px;}
.h6{height:121.025391px;}
.h19{height:127.517578px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:80.742000px;}
.x7{left:82.214250px;}
.x5{left:83.672400px;}
.x1{left:85.039350px;}
.x14{left:88.619100px;}
.x26{left:102.833700px;}
.xb{left:104.800650px;}
.x4{left:105.885600px;}
.x28{left:107.301150px;}
.xc{left:109.487550px;}
.x23{left:119.055150px;}
.x2a{left:120.943050px;}
.x29{left:123.205650px;}
.x27{left:144.483000px;}
.x24{left:147.435150px;}
.x25{left:148.983150px;}
.xa{left:167.505300px;}
.x9{left:169.299750px;}
.x19{left:182.652450px;}
.x1a{left:197.502450px;}
.x8{left:212.664000px;}
.x3{left:231.879900px;}
.x2{left:233.415450px;}
.x15{left:259.724100px;}
.x17{left:260.804100px;}
.x1b{left:295.722450px;}
.x1c{left:361.422450px;}
.xd{left:363.436050px;}
.x1d{left:378.537450px;}
.x16{left:385.589100px;}
.x18{left:388.154100px;}
.x1f{left:436.257450px;}
.xe{left:441.358050px;}
.xf{left:454.210050px;}
.x1e{left:455.667450px;}
.x20{left:508.557450px;}
.x10{left:513.650550px;}
.x21{left:525.672450px;}
.x11{left:527.501550px;}
.x12{left:580.975050px;}
.x13{left:591.181050px;}
.x22{left:602.637450px;}
@media print{
.v7{vertical-align:-20.428267pt;}
.v1{vertical-align:-17.796800pt;}
.v9{vertical-align:-15.973333pt;}
.v4{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:10.661333pt;}
.va{vertical-align:12.426667pt;}
.v3{vertical-align:15.058667pt;}
.v8{vertical-align:16.005333pt;}
.v2{vertical-align:17.749333pt;}
.v6{vertical-align:20.378133pt;}
.v5{vertical-align:64.000000pt;}
.ls1d{letter-spacing:-4.320000pt;}
.ls1f{letter-spacing:-3.984000pt;}
.ls51{letter-spacing:-3.496000pt;}
.ls7a{letter-spacing:-3.096000pt;}
.ls2a{letter-spacing:-3.040000pt;}
.ls68{letter-spacing:-2.944000pt;}
.ls1c{letter-spacing:-2.544000pt;}
.ls3b{letter-spacing:-2.453333pt;}
.ls39{letter-spacing:-2.400000pt;}
.ls50{letter-spacing:-2.392000pt;}
.ls38{letter-spacing:-2.293333pt;}
.ls4d{letter-spacing:-2.256000pt;}
.ls2d{letter-spacing:-2.240000pt;}
.ls43{letter-spacing:-2.146667pt;}
.lsa{letter-spacing:-2.080000pt;}
.ls85{letter-spacing:-2.072000pt;}
.ls6e{letter-spacing:-2.024000pt;}
.ls61{letter-spacing:-1.872000pt;}
.ls3a{letter-spacing:-1.866667pt;}
.ls16{letter-spacing:-1.840000pt;}
.ls6f{letter-spacing:-1.778667pt;}
.ls4f{letter-spacing:-1.760000pt;}
.ls52{letter-spacing:-1.728000pt;}
.ls8{letter-spacing:-1.717333pt;}
.ls65{letter-spacing:-1.656000pt;}
.ls59{letter-spacing:-1.594667pt;}
.ls6c{letter-spacing:-1.584000pt;}
.ls86{letter-spacing:-1.568000pt;}
.ls25{letter-spacing:-1.493333pt;}
.ls4c{letter-spacing:-1.440000pt;}
.ls42{letter-spacing:-1.410667pt;}
.ls57{letter-spacing:-1.386667pt;}
.ls55{letter-spacing:-1.368000pt;}
.ls44{letter-spacing:-1.349333pt;}
.ls21{letter-spacing:-1.344000pt;}
.ls53{letter-spacing:-1.248000pt;}
.ls37{letter-spacing:-1.226667pt;}
.ls6a{letter-spacing:-1.200000pt;}
.ls29{letter-spacing:-1.173333pt;}
.ls1a{letter-spacing:-1.165333pt;}
.ls5e{letter-spacing:-1.104000pt;}
.ls41{letter-spacing:-1.080000pt;}
.ls28{letter-spacing:-1.066667pt;}
.ls7f{letter-spacing:-1.064000pt;}
.ls7e{letter-spacing:-1.008000pt;}
.ls3c{letter-spacing:-0.920000pt;}
.ls2c{letter-spacing:-0.853333pt;}
.ls1b{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.760000pt;}
.ls12{letter-spacing:-0.746667pt;}
.ls22{letter-spacing:-0.693333pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.624000pt;}
.ls80{letter-spacing:-0.616000pt;}
.ls3f{letter-spacing:-0.557333pt;}
.ls36{letter-spacing:-0.533333pt;}
.ls20{letter-spacing:-0.528000pt;}
.ls79{letter-spacing:-0.506667pt;}
.ls34{letter-spacing:-0.426667pt;}
.ls1{letter-spacing:-0.392000pt;}
.ls35{letter-spacing:-0.373333pt;}
.ls6b{letter-spacing:-0.368000pt;}
.ls10{letter-spacing:-0.360000pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls54{letter-spacing:-0.152000pt;}
.ls26{letter-spacing:-0.106667pt;}
.ls33{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000267pt;}
.ls64{letter-spacing:0.000533pt;}
.ls6d{letter-spacing:0.001387pt;}
.ls60{letter-spacing:0.001557pt;}
.ls46{letter-spacing:0.004267pt;}
.ls3e{letter-spacing:0.007445pt;}
.ls5c{letter-spacing:0.007669pt;}
.ls56{letter-spacing:0.008203pt;}
.ls48{letter-spacing:0.012800pt;}
.ls49{letter-spacing:0.014933pt;}
.ls72{letter-spacing:0.017600pt;}
.ls70{letter-spacing:0.018667pt;}
.ls3d{letter-spacing:0.021600pt;}
.ls4a{letter-spacing:0.025600pt;}
.ls47{letter-spacing:0.026133pt;}
.ls75{letter-spacing:0.027200pt;}
.ls71{letter-spacing:0.030133pt;}
.ls73{letter-spacing:0.031733pt;}
.ls77{letter-spacing:0.049600pt;}
.ls74{letter-spacing:0.056000pt;}
.ls62{letter-spacing:0.071200pt;}
.ls78{letter-spacing:0.078400pt;}
.ls7{letter-spacing:0.096000pt;}
.ls69{letter-spacing:0.122667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls5b{letter-spacing:0.184000pt;}
.ls40{letter-spacing:0.216000pt;}
.ls5f{letter-spacing:0.245333pt;}
.ls23{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.800000pt;}
.ls24{letter-spacing:1.013333pt;}
.ls32{letter-spacing:1.120000pt;}
.ls7b{letter-spacing:1.920800pt;}
.ls63{letter-spacing:2.020800pt;}
.lsc{letter-spacing:2.133333pt;}
.ls5d{letter-spacing:2.269333pt;}
.ls31{letter-spacing:2.720000pt;}
.ls82{letter-spacing:2.866667pt;}
.ls84{letter-spacing:2.945600pt;}
.ls4e{letter-spacing:3.062400pt;}
.ls76{letter-spacing:3.666667pt;}
.lsb{letter-spacing:3.733333pt;}
.ls4b{letter-spacing:3.800000pt;}
.ls7c{letter-spacing:3.864000pt;}
.ls83{letter-spacing:4.037600pt;}
.lsd{letter-spacing:4.400000pt;}
.ls15{letter-spacing:4.800000pt;}
.lse{letter-spacing:4.853333pt;}
.ls67{letter-spacing:5.029333pt;}
.ls3{letter-spacing:5.120000pt;}
.ls9{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls7d{letter-spacing:5.600000pt;}
.ls66{letter-spacing:6.440000pt;}
.ls13{letter-spacing:7.253472pt;}
.ls14{letter-spacing:7.254005pt;}
.ls5a{letter-spacing:7.850667pt;}
.ls81{letter-spacing:8.024800pt;}
.ls45{letter-spacing:8.083733pt;}
.ls58{letter-spacing:8.693333pt;}
.ls2f{letter-spacing:174.133333pt;}
.ls18{letter-spacing:198.133333pt;}
.ls17{letter-spacing:207.466667pt;}
.ls30{letter-spacing:273.706667pt;}
.ls19{letter-spacing:289.493333pt;}
.ws79{word-spacing:-53.333333pt;}
.ws16{word-spacing:-37.546667pt;}
.ws7a{word-spacing:-37.333333pt;}
.ws1{word-spacing:-23.808000pt;}
.ws18{word-spacing:-23.533333pt;}
.wse{word-spacing:-23.133333pt;}
.ws78{word-spacing:-22.533333pt;}
.ws9c{word-spacing:-22.400000pt;}
.wsa8{word-spacing:-21.600000pt;}
.wsab{word-spacing:-20.320000pt;}
.ws3{word-spacing:-20.213333pt;}
.ws10{word-spacing:-19.872000pt;}
.ws9f{word-spacing:-19.600000pt;}
.ws6e{word-spacing:-18.000000pt;}
.ws12{word-spacing:-17.234667pt;}
.ws9d{word-spacing:-17.136000pt;}
.ws2{word-spacing:-16.725333pt;}
.ws1b{word-spacing:-16.560000pt;}
.ws83{word-spacing:-16.416000pt;}
.wsa0{word-spacing:-15.736000pt;}
.ws8b{word-spacing:-15.394667pt;}
.wsf{word-spacing:-15.344000pt;}
.ws91{word-spacing:-15.272000pt;}
.ws11{word-spacing:-15.149333pt;}
.ws0{word-spacing:-15.146667pt;}
.ws61{word-spacing:-14.986667pt;}
.ws52{word-spacing:-14.133333pt;}
.ws8a{word-spacing:-14.045333pt;}
.ws1d{word-spacing:-13.984000pt;}
.ws74{word-spacing:-13.922667pt;}
.wsa1{word-spacing:-13.832000pt;}
.ws73{word-spacing:-13.800000pt;}
.ws71{word-spacing:-13.738667pt;}
.ws86{word-spacing:-13.554667pt;}
.ws90{word-spacing:-13.493333pt;}
.ws1a{word-spacing:-13.488000pt;}
.ws70{word-spacing:-13.432000pt;}
.ws9b{word-spacing:-13.370667pt;}
.ws1c{word-spacing:-13.309333pt;}
.wsa6{word-spacing:-13.216000pt;}
.ws4{word-spacing:-13.173333pt;}
.ws9a{word-spacing:-13.125333pt;}
.ws72{word-spacing:-13.002667pt;}
.wsa2{word-spacing:-12.824000pt;}
.wsa4{word-spacing:-12.768000pt;}
.ws7e{word-spacing:-12.757333pt;}
.ws24{word-spacing:-12.533333pt;}
.ws21{word-spacing:-12.432000pt;}
.ws62{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.856000pt;}
.ws85{word-spacing:-11.786667pt;}
.wsa9{word-spacing:-11.760000pt;}
.ws7f{word-spacing:-11.653333pt;}
.ws22{word-spacing:-11.616000pt;}
.ws7d{word-spacing:-11.413333pt;}
.ws6{word-spacing:-11.093333pt;}
.ws92{word-spacing:-10.656000pt;}
.ws81{word-spacing:-10.608000pt;}
.ws96{word-spacing:-10.512000pt;}
.ws7b{word-spacing:-10.416000pt;}
.ws97{word-spacing:-10.272000pt;}
.ws80{word-spacing:-10.128000pt;}
.ws17{word-spacing:-10.047811pt;}
.ws8f{word-spacing:-9.984000pt;}
.ws7c{word-spacing:-9.600000pt;}
.wsa5{word-spacing:-9.174088pt;}
.ws6f{word-spacing:-8.832061pt;}
.ws8d{word-spacing:-8.737227pt;}
.ws87{word-spacing:-8.693333pt;}
.ws8e{word-spacing:-7.863504pt;}
.ws89{word-spacing:-7.850667pt;}
.ws5{word-spacing:-7.680053pt;}
.ws77{word-spacing:-6.912048pt;}
.ws93{word-spacing:-6.440000pt;}
.wsa3{word-spacing:-5.600000pt;}
.ws9{word-spacing:-5.333333pt;}
.wsa{word-spacing:-5.120000pt;}
.ws94{word-spacing:-5.029333pt;}
.ws14{word-spacing:-3.733333pt;}
.ws8c{word-spacing:-2.269333pt;}
.ws13{word-spacing:-2.133333pt;}
.ws7{word-spacing:0.000000pt;}
.ws68{word-spacing:0.053333pt;}
.ws44{word-spacing:0.106667pt;}
.ws84{word-spacing:0.152000pt;}
.wsb{word-spacing:0.160000pt;}
.ws67{word-spacing:0.213333pt;}
.ws99{word-spacing:0.368000pt;}
.ws8{word-spacing:0.392000pt;}
.ws6c{word-spacing:0.426667pt;}
.ws9e{word-spacing:0.506667pt;}
.ws75{word-spacing:0.557333pt;}
.ws41{word-spacing:0.624000pt;}
.wsc{word-spacing:0.640000pt;}
.ws66{word-spacing:0.693333pt;}
.ws15{word-spacing:0.760000pt;}
.ws6b{word-spacing:0.853333pt;}
.ws6d{word-spacing:0.920000pt;}
.wsa7{word-spacing:1.008000pt;}
.ws76{word-spacing:1.080000pt;}
.ws98{word-spacing:1.226667pt;}
.ws43{word-spacing:1.493333pt;}
.wsaa{word-spacing:1.568000pt;}
.wsd{word-spacing:1.717333pt;}
.ws6a{word-spacing:1.866667pt;}
.ws45{word-spacing:2.240000pt;}
.ws82{word-spacing:2.256000pt;}
.ws69{word-spacing:2.400000pt;}
.ws95{word-spacing:2.944000pt;}
.ws42{word-spacing:3.984000pt;}
.ws5b{word-spacing:51.626667pt;}
.ws54{word-spacing:87.274667pt;}
.ws88{word-spacing:91.466667pt;}
.ws39{word-spacing:102.453333pt;}
.ws5d{word-spacing:102.981333pt;}
.ws23{word-spacing:105.061333pt;}
.ws26{word-spacing:116.266667pt;}
.ws63{word-spacing:120.000000pt;}
.ws5c{word-spacing:122.314667pt;}
.ws20{word-spacing:124.656000pt;}
.ws57{word-spacing:125.178667pt;}
.ws5e{word-spacing:125.232000pt;}
.ws65{word-spacing:137.578667pt;}
.ws37{word-spacing:146.506667pt;}
.ws60{word-spacing:147.792000pt;}
.ws4a{word-spacing:147.813333pt;}
.ws2d{word-spacing:150.464000pt;}
.ws59{word-spacing:158.837333pt;}
.ws49{word-spacing:159.402667pt;}
.ws51{word-spacing:160.133333pt;}
.ws1e{word-spacing:160.526400pt;}
.ws4e{word-spacing:163.306667pt;}
.ws3e{word-spacing:163.685333pt;}
.ws2f{word-spacing:164.362667pt;}
.ws30{word-spacing:164.506667pt;}
.ws4c{word-spacing:166.234667pt;}
.ws40{word-spacing:169.626667pt;}
.ws56{word-spacing:169.786667pt;}
.ws1f{word-spacing:170.572800pt;}
.ws5f{word-spacing:174.981333pt;}
.ws38{word-spacing:175.520000pt;}
.ws2a{word-spacing:175.733333pt;}
.ws2b{word-spacing:177.253333pt;}
.ws36{word-spacing:183.792000pt;}
.ws4b{word-spacing:186.133333pt;}
.ws50{word-spacing:186.186667pt;}
.ws2e{word-spacing:186.533333pt;}
.ws48{word-spacing:186.826667pt;}
.ws58{word-spacing:187.680000pt;}
.ws3d{word-spacing:194.186667pt;}
.ws25{word-spacing:196.080000pt;}
.ws3f{word-spacing:199.360000pt;}
.ws29{word-spacing:200.373333pt;}
.ws55{word-spacing:200.693333pt;}
.ws4f{word-spacing:203.888000pt;}
.ws32{word-spacing:212.853333pt;}
.ws3c{word-spacing:214.741333pt;}
.ws31{word-spacing:215.482667pt;}
.ws33{word-spacing:216.597333pt;}
.ws34{word-spacing:219.605333pt;}
.ws2c{word-spacing:224.746667pt;}
.ws5a{word-spacing:226.261333pt;}
.ws3b{word-spacing:227.674667pt;}
.ws64{word-spacing:230.490667pt;}
.ws27{word-spacing:238.928000pt;}
.ws53{word-spacing:239.685333pt;}
.ws4d{word-spacing:244.058667pt;}
.ws3a{word-spacing:246.133333pt;}
.ws35{word-spacing:260.154667pt;}
.ws46{word-spacing:264.704000pt;}
.ws28{word-spacing:274.506667pt;}
.ws47{word-spacing:281.850667pt;}
._47{margin-left:-17.764800pt;}
._1b{margin-left:-16.595200pt;}
._49{margin-left:-15.498667pt;}
._21{margin-left:-13.677333pt;}
._45{margin-left:-8.697067pt;}
._1e{margin-left:-7.544000pt;}
._b{margin-left:-6.549333pt;}
._42{margin-left:-5.615200pt;}
._5{margin-left:-4.721067pt;}
._c{margin-left:-3.256533pt;}
._6{margin-left:-1.844267pt;}
._d{margin-left:-0.918400pt;}
._3{width:1.020800pt;}
._1{width:2.133333pt;}
._9{width:3.037867pt;}
._a{width:4.176000pt;}
._4{width:5.084800pt;}
._8{width:6.005333pt;}
._7{width:6.913067pt;}
._e{width:7.954667pt;}
._17{width:9.204267pt;}
._1a{width:10.155200pt;}
._19{width:11.234400pt;}
._48{width:12.208000pt;}
._44{width:13.738667pt;}
._18{width:14.918667pt;}
._11{width:15.978667pt;}
._23{width:18.296267pt;}
._46{width:19.418133pt;}
._16{width:20.465067pt;}
._13{width:21.355200pt;}
._4b{width:22.653333pt;}
._24{width:24.625920pt;}
._4d{width:28.896000pt;}
._14{width:38.617920pt;}
._10{width:55.514667pt;}
._20{width:57.855733pt;}
._1c{width:73.557600pt;}
._43{width:90.826667pt;}
._39{width:100.566400pt;}
._33{width:102.273067pt;}
._3c{width:112.976000pt;}
._40{width:121.891200pt;}
._2e{width:125.017600pt;}
._34{width:133.494400pt;}
._1d{width:136.528000pt;}
._1f{width:138.594933pt;}
._31{width:165.217067pt;}
._35{width:167.893333pt;}
._32{width:171.082667pt;}
._3d{width:173.011200pt;}
._36{width:179.310933pt;}
._3e{width:183.362133pt;}
._37{width:186.024533pt;}
._3b{width:187.489067pt;}
._38{width:197.396267pt;}
._2b{width:209.173333pt;}
._12{width:214.517333pt;}
._2a{width:226.826667pt;}
._2c{width:228.358400pt;}
._27{width:232.146133pt;}
._29{width:235.840000pt;}
._3f{width:268.350933pt;}
._41{width:270.694400pt;}
._2d{width:286.240000pt;}
._30{width:289.317333pt;}
._2f{width:295.941333pt;}
._28{width:298.453333pt;}
._22{width:405.513067pt;}
._26{width:406.638933pt;}
._f{width:408.840000pt;}
._4c{width:410.038933pt;}
._4a{width:411.417067pt;}
._0{width:514.133333pt;}
._15{width:849.961067pt;}
._25{width:852.294400pt;}
._3a{width:855.894400pt;}
._2{width:857.654400pt;}
.fsc{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fse{font-size:32.648000pt;}
.fsb{font-size:35.757333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y184{bottom:94.445600pt;}
.y37d{bottom:94.453867pt;}
.y20a{bottom:94.480267pt;}
.y1c3{bottom:94.482933pt;}
.y3f{bottom:94.485600pt;}
.y2b9{bottom:94.488933pt;}
.y20{bottom:94.492133pt;}
.y31c{bottom:94.494267pt;}
.yf5{bottom:94.508000pt;}
.y2f9{bottom:94.537867pt;}
.y35c{bottom:94.593867pt;}
.y85{bottom:97.150933pt;}
.yd1{bottom:99.418400pt;}
.y39c{bottom:106.473333pt;}
.y183{bottom:109.781600pt;}
.y138{bottom:109.808267pt;}
.y271{bottom:109.813600pt;}
.y209{bottom:109.816267pt;}
.y15c{bottom:109.818933pt;}
.y3e{bottom:112.484267pt;}
.y31b{bottom:112.638267pt;}
.y2b8{bottom:112.674267pt;}
.y2f8{bottom:112.807867pt;}
.y1f{bottom:112.812133pt;}
.y35b{bottom:113.269867pt;}
.y33a{bottom:113.437867pt;}
.y84{bottom:113.598400pt;}
.y37c{bottom:113.871867pt;}
.yd0{bottom:115.418400pt;}
.ya9{bottom:116.263733pt;}
.yf4{bottom:117.952667pt;}
.y39b{bottom:124.473333pt;}
.y182{bottom:125.117600pt;}
.y137{bottom:125.144267pt;}
.y15b{bottom:125.146933pt;}
.y270{bottom:125.149600pt;}
.y208{bottom:125.152267pt;}
.y1a2{bottom:127.817600pt;}
.y5f{bottom:128.931733pt;}
.y31a{bottom:130.782267pt;}
.y2b7{bottom:130.860133pt;}
.y2f7{bottom:131.077867pt;}
.y1e{bottom:131.132133pt;}
.ycf{bottom:131.418400pt;}
.y83{bottom:131.597067pt;}
.y37b{bottom:133.289867pt;}
.ya8{bottom:135.376667pt;}
.y35a{bottom:137.615867pt;}
.y339{bottom:138.007867pt;}
.y181{bottom:140.453600pt;}
.y136{bottom:140.480267pt;}
.y15a{bottom:140.482933pt;}
.y26f{bottom:140.485600pt;}
.yf3{bottom:141.397333pt;}
.y39a{bottom:142.473333pt;}
.y207{bottom:143.150933pt;}
.y5e{bottom:146.930400pt;}
.yce{bottom:147.418400pt;}
.y113{bottom:148.042000pt;}
.y2b6{bottom:149.045733pt;}
.y2f6{bottom:149.347867pt;}
.y1d{bottom:149.454800pt;}
.y82{bottom:150.710000pt;}
.y37a{bottom:152.707867pt;}
.ya7{bottom:154.489467pt;}
.y319{bottom:154.596267pt;}
.y1e5{bottom:155.355067pt;}
.y180{bottom:155.789600pt;}
.y135{bottom:155.816267pt;}
.y159{bottom:155.818933pt;}
.y359{bottom:156.291867pt;}
.y26e{bottom:158.484267pt;}
.y206{bottom:159.585067pt;}
.y22c{bottom:159.598400pt;}
.y399{bottom:160.473333pt;}
.y338{bottom:162.577867pt;}
.y5d{bottom:163.378000pt;}
.ycd{bottom:163.418400pt;}
.yf2{bottom:164.842000pt;}
.y1c2{bottom:166.902400pt;}
.y1a1{bottom:166.954000pt;}
.y2d5{bottom:166.956000pt;}
.y2b5{bottom:167.231867pt;}
.y2f5{bottom:167.617867pt;}
.y1c{bottom:167.774800pt;}
.y81{bottom:169.822800pt;}
.y293{bottom:170.713600pt;}
.y17f{bottom:171.125600pt;}
.y134{bottom:171.152267pt;}
.y3d{bottom:171.836667pt;}
.y318{bottom:172.744533pt;}
.ya6{bottom:173.602400pt;}
.y24d{bottom:173.817600pt;}
.y1e4{bottom:173.847067pt;}
.y205{bottom:174.921067pt;}
.y26d{bottom:174.931733pt;}
.y22b{bottom:177.597067pt;}
.y379{bottom:177.795867pt;}
.y398{bottom:178.473333pt;}
.y358{bottom:180.637867pt;}
.ycc{bottom:181.351733pt;}
.y5c{bottom:181.376667pt;}
.y337{bottom:181.477867pt;}
.y2b4{bottom:185.417200pt;}
.y1c1{bottom:185.563067pt;}
.y1b{bottom:186.096133pt;}
.y1a0{bottom:186.105333pt;}
.y17e{bottom:186.461600pt;}
.y133{bottom:186.482933pt;}
.y158{bottom:186.485600pt;}
.y2d4{bottom:187.640667pt;}
.yf1{bottom:188.286667pt;}
.y292{bottom:188.766933pt;}
.y80{bottom:188.935733pt;}
.y204{bottom:190.257067pt;}
.y317{bottom:190.888533pt;}
.y2f4{bottom:191.557867pt;}
.y3c{bottom:192.061333pt;}
.y1e3{bottom:192.339067pt;}
.ya5{bottom:192.715200pt;}
.y26c{bottom:192.930400pt;}
.y22a{bottom:194.034000pt;}
.y397{bottom:196.473333pt;}
.y378{bottom:197.213867pt;}
.ycb{bottom:197.351733pt;}
.y5b{bottom:197.824133pt;}
.y357{bottom:199.313867pt;}
.y112{bottom:200.489467pt;}
.y17d{bottom:201.797600pt;}
.y132{bottom:201.818933pt;}
.y2b3{bottom:203.603333pt;}
.y1c0{bottom:204.223733pt;}
.y1a{bottom:204.421467pt;}
.y157{bottom:204.484267pt;}
.y19f{bottom:205.313467pt;}
.y7f{bottom:205.383200pt;}
.y203{bottom:205.593067pt;}
.y336{bottom:206.047867pt;}
.y291{bottom:206.814800pt;}
.y2d3{bottom:208.325333pt;}
.y229{bottom:209.370000pt;}
.y2f3{bottom:209.827867pt;}
.y1e2{bottom:210.831067pt;}
.yf0{bottom:211.731333pt;}
.ya4{bottom:211.828000pt;}
.y3b{bottom:212.270667pt;}
.y24c{bottom:213.017333pt;}
.y316{bottom:214.702533pt;}
.yca{bottom:215.285067pt;}
.y5a{bottom:215.822800pt;}
.y377{bottom:216.631867pt;}
.y17c{bottom:217.133600pt;}
.y356{bottom:217.989867pt;}
.y111{bottom:219.602400pt;}
.y131{bottom:219.817600pt;}
.y202{bottom:220.929067pt;}
.y2b2{bottom:221.788667pt;}
.y19{bottom:222.741467pt;}
.y1bf{bottom:222.884400pt;}
.y7e{bottom:223.381867pt;}
.y19e{bottom:224.464800pt;}
.y228{bottom:224.706000pt;}
.y290{bottom:224.851867pt;}
.y335{bottom:224.947867pt;}
.y2f2{bottom:228.097867pt;}
.y2d2{bottom:229.010000pt;}
.y1e1{bottom:229.323067pt;}
.ya3{bottom:230.940933pt;}
.y24b{bottom:231.432667pt;}
.y26b{bottom:232.018133pt;}
.y17b{bottom:232.469600pt;}
.y396{bottom:232.473333pt;}
.y3a{bottom:232.480000pt;}
.y315{bottom:232.885867pt;}
.yc9{bottom:233.218400pt;}
.yef{bottom:235.176000pt;}
.y201{bottom:236.265067pt;}
.y110{bottom:238.715200pt;}
.y130{bottom:238.930400pt;}
.y2b1{bottom:239.976267pt;}
.y227{bottom:240.042000pt;}
.y18{bottom:241.061467pt;}
.y1be{bottom:241.545067pt;}
.y376{bottom:241.719867pt;}
.y355{bottom:242.335867pt;}
.y7d{bottom:242.494667pt;}
.y28f{bottom:242.905200pt;}
.y156{bottom:243.608000pt;}
.y19d{bottom:243.616133pt;}
.y17a{bottom:247.805600pt;}
.y1e0{bottom:247.815067pt;}
.y334{bottom:249.517867pt;}
.y2d1{bottom:249.694667pt;}
.y24a{bottom:249.848000pt;}
.ya2{bottom:250.053733pt;}
.y395{bottom:250.473333pt;}
.y314{bottom:251.029867pt;}
.y26a{bottom:251.031467pt;}
.yc8{bottom:251.151733pt;}
.y200{bottom:251.598400pt;}
.y2f1{bottom:252.037867pt;}
.y39{bottom:252.704667pt;}
.y59{bottom:254.955600pt;}
.y226{bottom:255.378000pt;}
.y12f{bottom:258.043333pt;}
.y2b0{bottom:258.161600pt;}
.y17{bottom:259.381467pt;}
.y1bd{bottom:260.205733pt;}
.y28e{bottom:260.958533pt;}
.y354{bottom:261.011867pt;}
.y7c{bottom:261.607600pt;}
.y155{bottom:261.634667pt;}
.y179{bottom:263.141600pt;}
.y1df{bottom:266.286533pt;}
.y375{bottom:266.807867pt;}
.y1ff{bottom:266.921067pt;}
.y249{bottom:268.263333pt;}
.y333{bottom:268.417867pt;}
.y394{bottom:268.473333pt;}
.yc7{bottom:269.085067pt;}
.ya1{bottom:269.166667pt;}
.y269{bottom:270.044800pt;}
.y2f0{bottom:270.307867pt;}
.y2d0{bottom:270.379333pt;}
.y38{bottom:272.914000pt;}
.y225{bottom:273.376667pt;}
.y313{bottom:274.843867pt;}
.y58{bottom:275.210933pt;}
.y2af{bottom:276.346933pt;}
.y16{bottom:277.704133pt;}
.y10f{bottom:277.846800pt;}
.y178{bottom:278.477600pt;}
.y1bc{bottom:278.866400pt;}
.y28d{bottom:279.011867pt;}
.y154{bottom:279.661333pt;}
.y353{bottom:279.687867pt;}
.y7b{bottom:280.720400pt;}
.yee{bottom:282.080667pt;}
.y1fe{bottom:282.257067pt;}
.y19c{bottom:283.130133pt;}
.y1de{bottom:284.778533pt;}
.yc6{bottom:285.085067pt;}
.y374{bottom:286.225867pt;}
.y393{bottom:286.473333pt;}
.y248{bottom:286.678667pt;}
.ya0{bottom:288.279467pt;}
.y2ef{bottom:288.577867pt;}
.y268{bottom:289.058133pt;}
.y2cf{bottom:291.064000pt;}
.y312{bottom:292.987867pt;}
.y37{bottom:293.138667pt;}
.y177{bottom:293.813600pt;}
.y2ae{bottom:294.532267pt;}
.y57{bottom:295.482533pt;}
.y15{bottom:296.024133pt;}
.y10e{bottom:296.384800pt;}
.y28c{bottom:297.063867pt;}
.y12e{bottom:297.126667pt;}
.y1bb{bottom:297.521067pt;}
.y1fd{bottom:297.593067pt;}
.y153{bottom:297.688000pt;}
.y352{bottom:298.363867pt;}
.y7a{bottom:299.833333pt;}
.yc5{bottom:301.085067pt;}
.y19b{bottom:302.281467pt;}
.y1dd{bottom:303.270533pt;}
.y392{bottom:304.473333pt;}
.y247{bottom:305.094000pt;}
.yed{bottom:305.525333pt;}
.y2ee{bottom:306.847867pt;}
.y9f{bottom:307.392400pt;}
.y267{bottom:308.071467pt;}
.y176{bottom:309.149600pt;}
.y373{bottom:311.313867pt;}
.y2ce{bottom:311.748667pt;}
.y332{bottom:311.887867pt;}
.y224{bottom:312.539067pt;}
.y2ad{bottom:312.717600pt;}
.y1fc{bottom:312.929067pt;}
.y36{bottom:313.348000pt;}
.y14{bottom:314.348000pt;}
.y10d{bottom:314.922800pt;}
.y28b{bottom:315.111200pt;}
.y12d{bottom:315.174000pt;}
.y152{bottom:315.713467pt;}
.y56{bottom:315.737867pt;}
.y1ba{bottom:316.169600pt;}
.y311{bottom:316.801867pt;}
.yc4{bottom:317.085067pt;}
.y79{bottom:318.946133pt;}
.y19a{bottom:321.432800pt;}
.y391{bottom:322.473333pt;}
.y351{bottom:322.709867pt;}
.y246{bottom:323.509333pt;}
.y175{bottom:324.485600pt;}
.y9e{bottom:326.505200pt;}
.y266{bottom:327.084800pt;}
.y1fb{bottom:328.265067pt;}
.y223{bottom:330.678400pt;}
.y372{bottom:330.731867pt;}
.y2ed{bottom:330.787867pt;}
.y2ac{bottom:330.902933pt;}
.y2cd{bottom:332.434800pt;}
.y13{bottom:332.668000pt;}
.yc3{bottom:333.085067pt;}
.y28a{bottom:333.158533pt;}
.y12c{bottom:333.221333pt;}
.y10c{bottom:333.460800pt;}
.y151{bottom:333.734133pt;}
.y1b9{bottom:334.830267pt;}
.y310{bottom:334.945867pt;}
.y55{bottom:336.076800pt;}
.y331{bottom:336.457867pt;}
.y78{bottom:338.059067pt;}
.y1dc{bottom:340.239200pt;}
.y199{bottom:340.584133pt;}
.y350{bottom:341.385867pt;}
.y245{bottom:341.924667pt;}
.y174{bottom:342.484267pt;}
.y9d{bottom:345.618133pt;}
.y265{bottom:346.098133pt;}
.y1fa{bottom:346.263733pt;}
.y222{bottom:348.817733pt;}
.y2ec{bottom:349.057867pt;}
.yc2{bottom:349.085067pt;}
.y2ab{bottom:349.089867pt;}
.y12{bottom:350.988000pt;}
.y289{bottom:351.205867pt;}
.y12b{bottom:351.268667pt;}
.y150{bottom:351.760800pt;}
.y390{bottom:351.806667pt;}
.y10b{bottom:351.999867pt;}
.y35{bottom:352.462800pt;}
.yec{bottom:352.811200pt;}
.y2cc{bottom:353.123600pt;}
.y1b8{bottom:353.455600pt;}
.y77{bottom:354.506533pt;}
.y330{bottom:355.357867pt;}
.y371{bottom:355.819867pt;}
.y54{bottom:356.332133pt;}
.y1db{bottom:358.731200pt;}
.y30f{bottom:358.759867pt;}
.y198{bottom:359.735467pt;}
.y244{bottom:360.340000pt;}
.yc1{bottom:365.085067pt;}
.y264{bottom:365.111467pt;}
.y34f{bottom:365.731867pt;}
.y221{bottom:366.957067pt;}
.y2aa{bottom:367.275200pt;}
.y2eb{bottom:367.327867pt;}
.y288{bottom:369.253200pt;}
.y12a{bottom:369.316000pt;}
.y11{bottom:369.317200pt;}
.y14f{bottom:369.787467pt;}
.y10a{bottom:370.538800pt;}
.yeb{bottom:370.744533pt;}
.y1b7{bottom:372.116267pt;}
.y76{bottom:372.505200pt;}
.y2cb{bottom:373.808267pt;}
.y53{bottom:376.587467pt;}
.y30e{bottom:376.903867pt;}
.y1da{bottom:377.205200pt;}
.y243{bottom:378.755333pt;}
.y197{bottom:378.886800pt;}
.y32f{bottom:379.927867pt;}
.y370{bottom:380.907867pt;}
.y173{bottom:381.627333pt;}
.yc0{bottom:383.018400pt;}
.y263{bottom:384.124800pt;}
.y34e{bottom:384.407867pt;}
.y9c{bottom:384.749733pt;}
.y220{bottom:385.096400pt;}
.y1f9{bottom:385.446133pt;}
.y2a9{bottom:385.460533pt;}
.y287{bottom:387.300533pt;}
.y129{bottom:387.363333pt;}
.y10{bottom:387.637200pt;}
.y14e{bottom:387.814133pt;}
.yea{bottom:388.677867pt;}
.y38f{bottom:388.700000pt;}
.y75{bottom:388.952800pt;}
.y109{bottom:389.077867pt;}
.y1b6{bottom:390.776933pt;}
.y2ea{bottom:391.267867pt;}
.y2ca{bottom:394.492933pt;}
.y30d{bottom:395.047867pt;}
.y1d9{bottom:395.697200pt;}
.y52{bottom:396.842800pt;}
.y242{bottom:397.170667pt;}
.y196{bottom:398.038133pt;}
.y32e{bottom:398.827867pt;}
.y36f{bottom:400.325867pt;}
.y172{bottom:400.809333pt;}
.ybf{bottom:400.951733pt;}
.y9b{bottom:402.921600pt;}
.y34d{bottom:403.083867pt;}
.y262{bottom:403.138133pt;}
.y21f{bottom:403.235733pt;}
.y1f8{bottom:403.570133pt;}
.y2a8{bottom:403.645867pt;}
.ye9{bottom:404.677867pt;}
.y286{bottom:405.347867pt;}
.y128{bottom:405.410667pt;}
.y14d{bottom:405.839600pt;}
.yf{bottom:405.957200pt;}
.y38e{bottom:406.033333pt;}
.y74{bottom:406.951467pt;}
.y108{bottom:407.618000pt;}
.y1b5{bottom:409.437600pt;}
.y2e9{bottom:409.537867pt;}
.y34{bottom:410.032667pt;}
.y30c{bottom:413.191867pt;}
.y1d8{bottom:414.189200pt;}
.y2c9{bottom:415.184533pt;}
.y241{bottom:415.586000pt;}
.y51{bottom:417.098133pt;}
.y195{bottom:417.189467pt;}
.y32d{bottom:417.727867pt;}
.ybe{bottom:418.885067pt;}
.y36e{bottom:419.743867pt;}
.y171{bottom:419.991333pt;}
.ye8{bottom:420.677867pt;}
.y9a{bottom:421.076267pt;}
.y21e{bottom:421.375067pt;}
.y1f7{bottom:421.694133pt;}
.y2a7{bottom:421.832400pt;}
.y261{bottom:422.151467pt;}
.y38d{bottom:423.366667pt;}
.y285{bottom:423.397467pt;}
.y127{bottom:423.458000pt;}
.y14c{bottom:423.865067pt;}
.y73{bottom:426.064267pt;}
.y107{bottom:426.156000pt;}
.y34c{bottom:427.429867pt;}
.y2e8{bottom:427.807867pt;}
.y1b4{bottom:428.098267pt;}
.y33{bottom:430.912667pt;}
.y1d7{bottom:432.669200pt;}
.y240{bottom:434.001333pt;}
.ye{bottom:435.610533pt;}
.y2c8{bottom:435.869200pt;}
.y194{bottom:436.340800pt;}
.ybd{bottom:436.818400pt;}
.y30b{bottom:437.005867pt;}
.ye7{bottom:438.611200pt;}
.y170{bottom:439.183867pt;}
.y99{bottom:439.230933pt;}
.y21d{bottom:439.524400pt;}
.y1f6{bottom:439.818133pt;}
.y2a6{bottom:440.017733pt;}
.y38c{bottom:440.700000pt;}
.y260{bottom:441.164800pt;}
.y284{bottom:441.444800pt;}
.y126{bottom:441.505333pt;}
.y14b{bottom:441.890533pt;}
.y32c{bottom:442.297867pt;}
.y106{bottom:444.698133pt;}
.y36d{bottom:444.831867pt;}
.y2e7{bottom:446.077867pt;}
.y34b{bottom:446.105867pt;}
.y1d6{bottom:451.161200pt;}
.y32{bottom:451.803867pt;}
.y23f{bottom:452.416667pt;}
.ybc{bottom:454.751733pt;}
.y30a{bottom:455.149867pt;}
.y193{bottom:455.492133pt;}
.ye6{bottom:456.544533pt;}
.y2c7{bottom:456.553867pt;}
.y98{bottom:457.385600pt;}
.y50{bottom:457.624133pt;}
.y21c{bottom:457.663733pt;}
.y1f5{bottom:457.942133pt;}
.y38b{bottom:458.033333pt;}
.y2a5{bottom:458.203067pt;}
.y16f{bottom:458.365867pt;}
.y283{bottom:459.492133pt;}
.y125{bottom:459.552667pt;}
.y14a{bottom:459.916000pt;}
.y25f{bottom:460.178133pt;}
.y32b{bottom:461.197867pt;}
.y105{bottom:463.236133pt;}
.y36c{bottom:464.249867pt;}
.y2e6{bottom:464.347867pt;}
.y72{bottom:465.181200pt;}
.y1b3{bottom:466.600267pt;}
.y1d5{bottom:469.653200pt;}
.y34a{bottom:470.451867pt;}
.y23e{bottom:470.847600pt;}
.y31{bottom:471.350533pt;}
.ybb{bottom:472.685067pt;}
.ye5{bottom:474.477867pt;}
.y192{bottom:474.643467pt;}
.y38a{bottom:475.366667pt;}
.y97{bottom:475.540267pt;}
.y21b{bottom:475.803067pt;}
.y1f4{bottom:476.066133pt;}
.y2a4{bottom:476.391467pt;}
.y2c6{bottom:477.238533pt;}
.y282{bottom:477.539467pt;}
.y16e{bottom:477.568933pt;}
.y124{bottom:477.600000pt;}
.y4f{bottom:477.879467pt;}
.y149{bottom:477.941467pt;}
.y309{bottom:478.963867pt;}
.y25e{bottom:479.191467pt;}
.y104{bottom:481.774133pt;}
.y71{bottom:483.918533pt;}
.y1b2{bottom:485.260933pt;}
.y32a{bottom:485.767867pt;}
.yd{bottom:487.940933pt;}
.y1d4{bottom:488.109200pt;}
.y2e5{bottom:488.287867pt;}
.y349{bottom:489.127867pt;}
.y23d{bottom:489.262933pt;}
.y36b{bottom:489.337867pt;}
.yba{bottom:490.618400pt;}
.y30{bottom:490.908400pt;}
.ye4{bottom:492.411200pt;}
.y389{bottom:492.700000pt;}
.y96{bottom:493.703467pt;}
.y191{bottom:493.808400pt;}
.y21a{bottom:493.957067pt;}
.y1f3{bottom:494.190133pt;}
.y2a3{bottom:494.576800pt;}
.y281{bottom:495.586800pt;}
.y123{bottom:495.647333pt;}
.y148{bottom:495.968133pt;}
.y16d{bottom:496.750933pt;}
.y308{bottom:497.107867pt;}
.y2c5{bottom:497.923200pt;}
.y4e{bottom:498.134800pt;}
.y25d{bottom:498.204800pt;}
.y103{bottom:500.312133pt;}
.y70{bottom:502.655867pt;}
.y1b1{bottom:503.921600pt;}
.y329{bottom:504.667867pt;}
.y2e4{bottom:506.557867pt;}
.y1d3{bottom:506.601200pt;}
.y23c{bottom:507.678267pt;}
.yb9{bottom:508.551733pt;}
.y36a{bottom:508.755867pt;}
.y388{bottom:510.033333pt;}
.ye3{bottom:510.344533pt;}
.y2f{bottom:510.455067pt;}
.y95{bottom:511.870933pt;}
.y219{bottom:512.096400pt;}
.y1f2{bottom:512.314133pt;}
.y2a2{bottom:512.762133pt;}
.yc{bottom:512.935600pt;}
.y190{bottom:512.959733pt;}
.y348{bottom:513.473867pt;}
.y280{bottom:513.637067pt;}
.y122{bottom:513.694667pt;}
.y147{bottom:513.987067pt;}
.y16c{bottom:515.932933pt;}
.y25c{bottom:517.218133pt;}
.y4d{bottom:518.390133pt;}
.y2c4{bottom:518.614800pt;}
.y102{bottom:518.851200pt;}
.y307{bottom:520.921867pt;}
.y6f{bottom:521.393200pt;}
.y1b0{bottom:522.527600pt;}
.y328{bottom:523.567867pt;}
.y1d2{bottom:525.093200pt;}
.y23b{bottom:526.124667pt;}
.yb8{bottom:526.493733pt;}
.y387{bottom:527.366667pt;}
.ye2{bottom:528.277867pt;}
.y2e{bottom:530.001733pt;}
.y94{bottom:530.025600pt;}
.y1f1{bottom:530.451867pt;}
.y2e3{bottom:530.497867pt;}
.y2a1{bottom:530.947467pt;}
.y27f{bottom:531.684400pt;}
.y121{bottom:531.742000pt;}
.y146{bottom:532.012533pt;}
.y18f{bottom:532.111067pt;}
.y347{bottom:532.149867pt;}
.y369{bottom:533.843867pt;}
.y16b{bottom:535.114933pt;}
.y25b{bottom:536.231467pt;}
.y101{bottom:537.400667pt;}
.y4c{bottom:538.645467pt;}
.y306{bottom:539.065867pt;}
.y2c3{bottom:539.299467pt;}
.y6e{bottom:540.120133pt;}
.y1af{bottom:541.188267pt;}
.yb7{bottom:542.489733pt;}
.y1d1{bottom:543.585200pt;}
.ye1{bottom:544.277867pt;}
.y23a{bottom:544.540000pt;}
.y386{bottom:544.700000pt;}
.y327{bottom:548.137867pt;}
.y93{bottom:548.180267pt;}
.y218{bottom:548.390400pt;}
.y1f0{bottom:548.575867pt;}
.y2e2{bottom:548.767867pt;}
.y2a0{bottom:549.132800pt;}
.y2d{bottom:549.559600pt;}
.y27e{bottom:549.731733pt;}
.y120{bottom:549.745333pt;}
.y145{bottom:549.981600pt;}
.y346{bottom:550.825867pt;}
.y18e{bottom:551.276000pt;}
.y368{bottom:553.261867pt;}
.y16a{bottom:554.302133pt;}
.y25a{bottom:555.244800pt;}
.y100{bottom:555.938667pt;}
.yb{bottom:556.813200pt;}
.y6d{bottom:558.857467pt;}
.y4b{bottom:558.900800pt;}
.y1ae{bottom:559.848933pt;}
.y2c2{bottom:559.984133pt;}
.ye0{bottom:560.277867pt;}
.y385{bottom:562.038533pt;}
.y1d0{bottom:562.077200pt;}
.y305{bottom:562.879867pt;}
.y239{bottom:562.955333pt;}
.y92{bottom:566.339200pt;}
.y217{bottom:566.529733pt;}
.y1ef{bottom:566.699867pt;}
.yb6{bottom:566.789200pt;}
.y2e1{bottom:567.037867pt;}
.y29f{bottom:567.318133pt;}
.y27d{bottom:567.779067pt;}
.y11f{bottom:567.792667pt;}
.y144{bottom:568.013600pt;}
.y2c{bottom:569.106267pt;}
.y18d{bottom:570.427333pt;}
.y367{bottom:572.679867pt;}
.y169{bottom:573.489467pt;}
.y259{bottom:574.258133pt;}
.y345{bottom:575.171867pt;}
.ydf{bottom:576.277867pt;}
.y6c{bottom:577.591333pt;}
.y1ad{bottom:578.509600pt;}
.y4a{bottom:579.156133pt;}
.y384{bottom:579.371867pt;}
.y1cf{bottom:580.569200pt;}
.y2c1{bottom:580.668800pt;}
.y304{bottom:581.023867pt;}
.y238{bottom:581.370667pt;}
.y91{bottom:584.498133pt;}
.y216{bottom:584.699200pt;}
.y1ee{bottom:584.828267pt;}
.yb5{bottom:584.913200pt;}
.y29e{bottom:585.503467pt;}
.ya{bottom:585.805200pt;}
.y27c{bottom:585.830400pt;}
.y11e{bottom:585.840000pt;}
.y143{bottom:586.045600pt;}
.y2b{bottom:588.652933pt;}
.y18c{bottom:589.578667pt;}
.y2e0{bottom:590.977867pt;}
.y326{bottom:591.607867pt;}
.y366{bottom:592.097867pt;}
.y168{bottom:592.682000pt;}
.yff{bottom:593.014667pt;}
.y258{bottom:593.271467pt;}
.y344{bottom:593.847867pt;}
.yde{bottom:594.211200pt;}
.y6b{bottom:596.321733pt;}
.y383{bottom:596.705200pt;}
.y1ac{bottom:597.170267pt;}
.y1ce{bottom:599.031200pt;}
.y49{bottom:599.411467pt;}
.y237{bottom:599.786000pt;}
.y2c0{bottom:601.353467pt;}
.y90{bottom:602.661333pt;}
.y215{bottom:602.838533pt;}
.y1ed{bottom:602.944400pt;}
.yb4{bottom:603.037200pt;}
.y29d{bottom:603.688800pt;}
.y27b{bottom:603.877733pt;}
.y11d{bottom:603.887333pt;}
.y303{bottom:604.837867pt;}
.y2a{bottom:608.210667pt;}
.y18b{bottom:608.730000pt;}
.y2df{bottom:609.247867pt;}
.y325{bottom:610.507867pt;}
.yfe{bottom:611.552667pt;}
.y167{bottom:611.864000pt;}
.ydd{bottom:612.144533pt;}
.y257{bottom:612.284800pt;}
.y343{bottom:612.523867pt;}
.y9{bottom:614.797200pt;}
.y6a{bottom:615.059067pt;}
.y1ab{bottom:615.830933pt;}
.y365{bottom:617.185867pt;}
.y1cd{bottom:617.523200pt;}
.y236{bottom:618.201333pt;}
.y48{bottom:619.666800pt;}
.y8f{bottom:620.816000pt;}
.y214{bottom:620.977867pt;}
.y1ec{bottom:621.077733pt;}
.yb3{bottom:621.161200pt;}
.y29c{bottom:621.876000pt;}
.y27a{bottom:621.925067pt;}
.y11c{bottom:621.934667pt;}
.y2bf{bottom:622.039600pt;}
.y142{bottom:622.094267pt;}
.y302{bottom:622.981867pt;}
.y382{bottom:625.371867pt;}
.y2de{bottom:627.517867pt;}
.y29{bottom:627.757333pt;}
.ydc{bottom:628.144533pt;}
.yfd{bottom:630.090667pt;}
.y166{bottom:631.067067pt;}
.y342{bottom:631.199867pt;}
.y256{bottom:631.296267pt;}
.y69{bottom:633.796400pt;}
.y1aa{bottom:634.491600pt;}
.y324{bottom:635.077867pt;}
.y1cc{bottom:636.015200pt;}
.y364{bottom:636.603867pt;}
.y235{bottom:636.663200pt;}
.y8e{bottom:638.974933pt;}
.y213{bottom:639.117200pt;}
.y1eb{bottom:639.211067pt;}
.yb2{bottom:639.285200pt;}
.y47{bottom:639.922133pt;}
.y279{bottom:639.972400pt;}
.y11b{bottom:639.982000pt;}
.y29b{bottom:640.061333pt;}
.y141{bottom:640.126267pt;}
.y301{bottom:641.125867pt;}
.y2be{bottom:642.724267pt;}
.y2dd{bottom:645.787867pt;}
.ydb{bottom:646.077867pt;}
.y18a{bottom:646.790800pt;}
.y28{bottom:647.304000pt;}
.yfc{bottom:648.628667pt;}
.y165{bottom:650.249067pt;}
.y255{bottom:650.302000pt;}
.y68{bottom:652.516400pt;}
.y1a9{bottom:653.152267pt;}
.y323{bottom:653.977867pt;}
.y1cb{bottom:654.507200pt;}
.y234{bottom:655.078533pt;}
.y341{bottom:655.545867pt;}
.y363{bottom:656.021867pt;}
.y8d{bottom:657.133867pt;}
.y212{bottom:657.256533pt;}
.y1ea{bottom:657.344400pt;}
.yb1{bottom:657.409200pt;}
.y278{bottom:658.019733pt;}
.y11a{bottom:658.029333pt;}
.y140{bottom:658.158267pt;}
.y29a{bottom:658.246667pt;}
.yda{bottom:664.011200pt;}
.y2dc{bottom:664.057867pt;}
.y300{bottom:664.939867pt;}
.y27{bottom:666.851333pt;}
.yfb{bottom:667.166667pt;}
.y189{bottom:669.272800pt;}
.y254{bottom:669.315333pt;}
.y164{bottom:669.431067pt;}
.y8{bottom:670.246667pt;}
.y67{bottom:671.253733pt;}
.y1a8{bottom:671.812933pt;}
.y322{bottom:672.877867pt;}
.y1ca{bottom:672.993200pt;}
.y233{bottom:673.493867pt;}
.y340{bottom:674.221867pt;}
.y8c{bottom:675.292800pt;}
.y211{bottom:675.395867pt;}
.y362{bottom:675.439867pt;}
.y1e9{bottom:675.477733pt;}
.yb0{bottom:675.533200pt;}
.y277{bottom:676.067067pt;}
.y119{bottom:676.076667pt;}
.y13f{bottom:676.190267pt;}
.y381{bottom:676.715733pt;}
.y46{bottom:680.448133pt;}
.yd9{bottom:681.944533pt;}
.y2bd{bottom:682.307867pt;}
.y2ff{bottom:683.083867pt;}
.yfa{bottom:685.704667pt;}
.y26{bottom:686.398000pt;}
.y2db{bottom:687.997867pt;}
.y253{bottom:688.328667pt;}
.y163{bottom:688.613067pt;}
.y66{bottom:689.991067pt;}
.y1a7{bottom:690.473600pt;}
.y1c9{bottom:691.467200pt;}
.y232{bottom:691.909200pt;}
.y8b{bottom:693.451733pt;}
.y210{bottom:693.535200pt;}
.y1e8{bottom:693.611067pt;}
.yaf{bottom:693.657200pt;}
.y276{bottom:694.114400pt;}
.y118{bottom:694.124000pt;}
.y13e{bottom:694.222267pt;}
.y299{bottom:694.617333pt;}
.y321{bottom:697.447867pt;}
.y7{bottom:697.460000pt;}
.y33f{bottom:698.567867pt;}
.yd8{bottom:699.877867pt;}
.y361{bottom:700.527867pt;}
.y45{bottom:700.703467pt;}
.y380{bottom:700.721067pt;}
.yf9{bottom:704.242667pt;}
.y25{bottom:705.944667pt;}
.y2da{bottom:706.267867pt;}
.y2fe{bottom:706.897867pt;}
.y252{bottom:707.342000pt;}
.y162{bottom:707.795067pt;}
.y65{bottom:708.728400pt;}
.y1c8{bottom:709.959200pt;}
.y231{bottom:710.324533pt;}
.y8a{bottom:711.627867pt;}
.y20f{bottom:711.704533pt;}
.y1e7{bottom:711.744400pt;}
.yae{bottom:711.781200pt;}
.y275{bottom:712.162800pt;}
.y117{bottom:712.171333pt;}
.y13d{bottom:712.254267pt;}
.y298{bottom:712.803867pt;}
.yd7{bottom:715.877867pt;}
.y320{bottom:716.347867pt;}
.y6{bottom:717.113333pt;}
.y33e{bottom:717.243867pt;}
.y360{bottom:719.945867pt;}
.y44{bottom:720.958800pt;}
.yf8{bottom:722.780667pt;}
.y2d9{bottom:724.537867pt;}
.y2fd{bottom:725.041867pt;}
.y188{bottom:725.786800pt;}
.y251{bottom:726.353467pt;}
.y161{bottom:726.983467pt;}
.y64{bottom:727.462267pt;}
.y1a6{bottom:727.785333pt;}
.y1c7{bottom:728.451200pt;}
.y230{bottom:728.739867pt;}
.y89{bottom:729.782533pt;}
.y20e{bottom:729.843867pt;}
.y1e6{bottom:729.877733pt;}
.yad{bottom:729.905200pt;}
.y274{bottom:730.210133pt;}
.y116{bottom:730.218667pt;}
.y13c{bottom:730.286267pt;}
.y297{bottom:730.989200pt;}
.yd6{bottom:733.811200pt;}
.y5{bottom:736.766667pt;}
.y24{bottom:736.838000pt;}
.y35f{bottom:739.363867pt;}
.y2bc{bottom:740.345867pt;}
.y31f{bottom:740.917867pt;}
.y43{bottom:741.214133pt;}
.yf7{bottom:741.318667pt;}
.y33d{bottom:741.589867pt;}
.y2d8{bottom:742.807867pt;}
.y187{bottom:744.938133pt;}
.y250{bottom:745.361200pt;}
.y160{bottom:746.170133pt;}
.y63{bottom:746.189200pt;}
.y1a5{bottom:746.438667pt;}
.y1c6{bottom:746.925200pt;}
.y22f{bottom:747.155200pt;}
.y88{bottom:747.937200pt;}
.y20d{bottom:747.983200pt;}
.yac{bottom:748.029200pt;}
.y273{bottom:748.259200pt;}
.y13b{bottom:748.318267pt;}
.y2fc{bottom:748.855867pt;}
.y296{bottom:749.174533pt;}
.yd5{bottom:749.811200pt;}
.y35e{bottom:758.781867pt;}
.y31e{bottom:759.817867pt;}
.y33c{bottom:760.265867pt;}
.y2bb{bottom:761.030533pt;}
.y2d7{bottom:761.077867pt;}
.y42{bottom:761.469467pt;}
.y4{bottom:763.980000pt;}
.y186{bottom:764.094000pt;}
.y24f{bottom:764.374533pt;}
.y62{bottom:764.926533pt;}
.y1a4{bottom:765.092000pt;}
.y15f{bottom:765.357333pt;}
.y1c5{bottom:765.417200pt;}
.y22e{bottom:765.570533pt;}
.yd4{bottom:765.811200pt;}
.y87{bottom:766.091867pt;}
.y20c{bottom:766.122533pt;}
.yab{bottom:766.153200pt;}
.y272{bottom:766.306533pt;}
.y115{bottom:766.309867pt;}
.y13a{bottom:766.343733pt;}
.y2fb{bottom:766.999867pt;}
.y37f{bottom:767.279867pt;}
.y295{bottom:767.359867pt;}
.yf6{bottom:778.757733pt;}
.y2d6{bottom:779.347867pt;}
.y2ba{bottom:781.716533pt;}
.y23{bottom:782.851333pt;}
.y185{bottom:783.249867pt;}
.y24e{bottom:783.387867pt;}
.y3{bottom:783.633333pt;}
.y61{bottom:783.663867pt;}
.y1a3{bottom:783.740533pt;}
.yd3{bottom:783.753333pt;}
.y35d{bottom:783.869867pt;}
.y1c4{bottom:783.909200pt;}
.y22d{bottom:783.985867pt;}
.y86{bottom:784.246533pt;}
.y20b{bottom:784.261867pt;}
.yaa{bottom:784.277200pt;}
.y114{bottom:784.353867pt;}
.y139{bottom:784.369200pt;}
.y31d{bottom:784.387867pt;}
.y15e{bottom:784.544667pt;}
.y33b{bottom:784.611867pt;}
.y2fa{bottom:785.143867pt;}
.y37e{bottom:785.283867pt;}
.y294{bottom:785.544667pt;}
.yd2{bottom:799.749333pt;}
.y41{bottom:800.627733pt;}
.y60{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.727600pt;}
.y15d{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.y40{bottom:858.834667pt;}
.hf{height:33.763396pt;}
.h15{height:33.763929pt;}
.ha{height:39.479167pt;}
.h18{height:40.054688pt;}
.h11{height:41.770833pt;}
.h16{height:43.138396pt;}
.h33{height:43.859375pt;}
.h10{height:44.414062pt;}
.h4{height:49.348958pt;}
.h21{height:49.353758pt;}
.hb{height:49.363892pt;}
.h3{height:51.816406pt;}
.h17{height:53.789062pt;}
.h24{height:53.799729pt;}
.h25{height:53.821063pt;}
.he{height:56.751302pt;}
.h1d{height:56.765169pt;}
.h1e{height:56.777435pt;}
.h27{height:56.892635pt;}
.h26{height:56.969969pt;}
.h9{height:59.765625pt;}
.h22{height:59.770425pt;}
.h23{height:59.780025pt;}
.h32{height:59.787492pt;}
.h31{height:59.830692pt;}
.h2d{height:59.834425pt;}
.h2{height:61.686198pt;}
.h34{height:62.753906pt;}
.hc{height:66.621094pt;}
.h1b{height:68.713402pt;}
.h30{height:68.726202pt;}
.hd{height:68.730469pt;}
.h1c{height:68.743802pt;}
.h14{height:68.744335pt;}
.h2e{height:68.752869pt;}
.h2a{height:68.754469pt;}
.h20{height:68.756602pt;}
.h13{height:68.758202pt;}
.h2f{height:68.760869pt;}
.h2b{height:68.778469pt;}
.h12{height:68.785935pt;}
.h29{height:68.802469pt;}
.h2c{height:68.812602pt;}
.h28{height:68.900602pt;}
.h1f{height:68.982202pt;}
.h8{height:69.088542pt;}
.h1a{height:80.683594pt;}
.h7{height:83.671875pt;}
.h5{height:88.828125pt;}
.h6{height:107.578125pt;}
.h19{height:113.348958pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:71.770667pt;}
.x7{left:73.079333pt;}
.x5{left:74.375467pt;}
.x1{left:75.590533pt;}
.x14{left:78.772533pt;}
.x26{left:91.407733pt;}
.xb{left:93.156133pt;}
.x4{left:94.120533pt;}
.x28{left:95.378800pt;}
.xc{left:97.322267pt;}
.x23{left:105.826800pt;}
.x2a{left:107.504933pt;}
.x29{left:109.516133pt;}
.x27{left:128.429333pt;}
.x24{left:131.053467pt;}
.x25{left:132.429467pt;}
.xa{left:148.893600pt;}
.x9{left:150.488667pt;}
.x19{left:162.357733pt;}
.x1a{left:175.557733pt;}
.x8{left:189.034667pt;}
.x3{left:206.115467pt;}
.x2{left:207.480400pt;}
.x15{left:230.865867pt;}
.x17{left:231.825867pt;}
.x1b{left:262.864400pt;}
.x1c{left:321.264400pt;}
.xd{left:323.054267pt;}
.x1d{left:336.477733pt;}
.x16{left:342.745867pt;}
.x18{left:345.025867pt;}
.x1f{left:387.784400pt;}
.xe{left:392.318267pt;}
.xf{left:403.742267pt;}
.x1e{left:405.037733pt;}
.x20{left:452.051067pt;}
.x10{left:456.578267pt;}
.x21{left:467.264400pt;}
.x11{left:468.890267pt;}
.x12{left:516.422267pt;}
.x13{left:525.494267pt;}
.x22{left:535.677733pt;}
}




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