
    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_9776cafa2221ab3f1613e214.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_2d284d009b4fe778bc411cca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_e3f0611a735be758cedb105e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8ca3f962e3c35357e6195f77.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_2c8a6a38ef02dd86784c6bc7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_99055a013ffa997eaed4f66b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_d41f64b005f01e03c3eddf07.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967285;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_5aaf8090ee516d6688e693f4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953613;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_de153ff3a43504b8c9732db2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.721000;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_607cf660b5bacb12ccff00b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967285;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_5d559b8be4e962c5c68a70e6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.967285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bb0f77d9950d3359ba7247e2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bc307ac99a60bea578b445aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0fb30cea5f47d16a31cb223b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.181818;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_246bfd919072ba70348610b9.woff2')format("woff");}.fff{font-family:fff;line-height:1.181818;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:ff10;src:url('chunks/assets/font_7f51e2f91b3ea2f4e9a8d8cf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d7d60c6f3b3c62fe123c95b2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v2{vertical-align:26.193600px;}
.ls2a{letter-spacing:-3.552000px;}
.ls17{letter-spacing:-2.736000px;}
.ls20{letter-spacing:-1.776000px;}
.ls5{letter-spacing:-1.152000px;}
.ls15{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-1.020000px;}
.lsa{letter-spacing:-0.960000px;}
.ls35{letter-spacing:-0.912000px;}
.ls16{letter-spacing:-0.900000px;}
.ls14{letter-spacing:-0.780000px;}
.ls25{letter-spacing:-0.707245px;}
.ls26{letter-spacing:-0.632798px;}
.ls4{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.420000px;}
.ls3{letter-spacing:-0.240000px;}
.ls2b{letter-spacing:-0.192000px;}
.ls9{letter-spacing:-0.180000px;}
.ls2e{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.120000px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000600px;}
.ls27{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.204000px;}
.ls23{letter-spacing:0.433541px;}
.ls34{letter-spacing:0.672000px;}
.ls22{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.960000px;}
.ls21{letter-spacing:1.200000px;}
.ls32{letter-spacing:2.160000px;}
.ls33{letter-spacing:32.175000px;}
.ls30{letter-spacing:32.175600px;}
.ls2f{letter-spacing:40.219200px;}
.ls10{letter-spacing:56.581800px;}
.ls11{letter-spacing:56.582400px;}
.ls1f{letter-spacing:65.086200px;}
.ls1d{letter-spacing:65.086800px;}
.ls2c{letter-spacing:66.868200px;}
.lse{letter-spacing:67.006200px;}
.lsb{letter-spacing:67.006800px;}
.ls1c{letter-spacing:73.590000px;}
.ls1b{letter-spacing:73.590600px;}
.ls12{letter-spacing:80.581800px;}
.ls13{letter-spacing:80.582400px;}
.ls24{letter-spacing:83.166300px;}
.ls1e{letter-spacing:89.086200px;}
.ls2d{letter-spacing:89.086800px;}
.lsd{letter-spacing:90.046200px;}
.lsc{letter-spacing:90.046800px;}
.ls1a{letter-spacing:97.590000px;}
.ls19{letter-spacing:97.590600px;}
.ls29{letter-spacing:195.118200px;}
.ls28{letter-spacing:195.118800px;}
.lsf{letter-spacing:222.614400px;}
.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;}
}
.ws1{word-spacing:-23.040000px;}
.ws93{word-spacing:-15.000000px;}
.ws3d{word-spacing:-14.820000px;}
.wsee{word-spacing:-14.160000px;}
.ws17{word-spacing:-14.085000px;}
.ws0{word-spacing:-13.500000px;}
.wsec{word-spacing:-12.960000px;}
.wsed{word-spacing:-12.000000px;}
.wsca{word-spacing:-11.508538px;}
.wsc9{word-spacing:-11.074997px;}
.wsc8{word-spacing:-10.459775px;}
.wse8{word-spacing:-10.224000px;}
.ws3e{word-spacing:-8.745000px;}
.ws12{word-spacing:-5.100000px;}
.ws99{word-spacing:-3.360000px;}
.wsf5{word-spacing:-3.300000px;}
.ws92{word-spacing:-3.180000px;}
.ws67{word-spacing:-3.060000px;}
.wsd1{word-spacing:-3.000000px;}
.ws117{word-spacing:-2.970000px;}
.ws5b{word-spacing:-2.880000px;}
.ws69{word-spacing:-2.760000px;}
.ws4b{word-spacing:-2.640000px;}
.ws10{word-spacing:-2.520000px;}
.ws90{word-spacing:-2.400000px;}
.ws10f{word-spacing:-2.208000px;}
.ws98{word-spacing:-2.040000px;}
.ws6d{word-spacing:-1.920000px;}
.ws63{word-spacing:-1.740000px;}
.ws9a{word-spacing:-1.680000px;}
.ws28{word-spacing:-1.500000px;}
.wscd{word-spacing:-1.200000px;}
.ws4{word-spacing:-1.080000px;}
.wsf3{word-spacing:-0.960000px;}
.ws118{word-spacing:-0.864000px;}
.ws9b{word-spacing:-0.780000px;}
.wscf{word-spacing:-0.720000px;}
.ws112{word-spacing:-0.672000px;}
.ws64{word-spacing:-0.660000px;}
.wsd0{word-spacing:-0.540000px;}
.ws14{word-spacing:-0.491400px;}
.wsd4{word-spacing:-0.433541px;}
.ws4e{word-spacing:-0.420000px;}
.ws13{word-spacing:-0.378000px;}
.ws61{word-spacing:-0.360000px;}
.ws2{word-spacing:-0.204000px;}
.ws9{word-spacing:-0.180000px;}
.wse2{word-spacing:-0.120000px;}
.ws3c{word-spacing:-0.045000px;}
.ws3{word-spacing:0.000000px;}
.wsb9{word-spacing:0.060000px;}
.ws7{word-spacing:0.120000px;}
.wseb{word-spacing:0.144000px;}
.ws6e{word-spacing:0.180000px;}
.wsd{word-spacing:0.240000px;}
.ws110{word-spacing:0.336000px;}
.ws4a{word-spacing:0.360000px;}
.ws68{word-spacing:0.420000px;}
.ws59{word-spacing:0.480000px;}
.ws16{word-spacing:0.540000px;}
.wse{word-spacing:0.600000px;}
.wsd3{word-spacing:0.632798px;}
.ws27{word-spacing:0.660000px;}
.wsd2{word-spacing:0.707245px;}
.ws2e{word-spacing:0.720000px;}
.ws89{word-spacing:0.780000px;}
.ws57{word-spacing:0.900000px;}
.ws114{word-spacing:0.912000px;}
.ws15{word-spacing:0.945000px;}
.ws1e{word-spacing:0.960000px;}
.ws3a{word-spacing:1.020000px;}
.ws116{word-spacing:1.056000px;}
.ws8f{word-spacing:1.080000px;}
.wsb{word-spacing:1.140000px;}
.ws32{word-spacing:1.260000px;}
.wsf4{word-spacing:1.320000px;}
.ws8c{word-spacing:1.380000px;}
.wsfa{word-spacing:1.392000px;}
.ws6{word-spacing:1.620000px;}
.wsfd{word-spacing:1.728000px;}
.wsf{word-spacing:1.800000px;}
.ws50{word-spacing:1.860000px;}
.wsb6{word-spacing:2.040000px;}
.ws1a{word-spacing:2.160000px;}
.ws91{word-spacing:2.280000px;}
.ws4d{word-spacing:2.340000px;}
.ws115{word-spacing:2.352000px;}
.ws9c{word-spacing:2.580000px;}
.ws31{word-spacing:2.640000px;}
.ws5{word-spacing:2.646000px;}
.ws6a{word-spacing:2.760000px;}
.wse5{word-spacing:2.880000px;}
.ws21{word-spacing:2.940000px;}
.ws1c{word-spacing:3.000000px;}
.ws22{word-spacing:3.180000px;}
.ws55{word-spacing:3.240000px;}
.ws60{word-spacing:3.300000px;}
.wsf2{word-spacing:3.540000px;}
.wse3{word-spacing:3.660000px;}
.ws8a{word-spacing:3.720000px;}
.ws26{word-spacing:3.780000px;}
.ws20{word-spacing:3.960000px;}
.ws62{word-spacing:4.020000px;}
.ws113{word-spacing:4.032000px;}
.wse4{word-spacing:4.080000px;}
.ws66{word-spacing:4.140000px;}
.ws33{word-spacing:4.260000px;}
.wsea{word-spacing:4.620000px;}
.ws52{word-spacing:4.740000px;}
.ws2a{word-spacing:4.920000px;}
.ws54{word-spacing:4.980000px;}
.ws2c{word-spacing:5.160000px;}
.wsf6{word-spacing:5.220000px;}
.ws65{word-spacing:5.280000px;}
.wse6{word-spacing:5.400000px;}
.ws8{word-spacing:5.460000px;}
.wsa{word-spacing:5.520000px;}
.wsb7{word-spacing:5.640000px;}
.ws2f{word-spacing:5.880000px;}
.wsb5{word-spacing:5.940000px;}
.ws37{word-spacing:6.000000px;}
.ws23{word-spacing:6.060000px;}
.ws5a{word-spacing:6.120000px;}
.wsb8{word-spacing:6.240000px;}
.ws51{word-spacing:6.300000px;}
.ws11{word-spacing:6.360000px;}
.wsf0{word-spacing:6.420000px;}
.ws3b{word-spacing:6.540000px;}
.ws36{word-spacing:6.600000px;}
.ws4c{word-spacing:6.780000px;}
.ws2b{word-spacing:6.840000px;}
.ws53{word-spacing:6.900000px;}
.wsf8{word-spacing:7.056000px;}
.ws5f{word-spacing:7.080000px;}
.ws18{word-spacing:7.260000px;}
.ws97{word-spacing:7.290000px;}
.ws56{word-spacing:7.440000px;}
.wsb4{word-spacing:7.560000px;}
.ws96{word-spacing:7.620000px;}
.ws2d{word-spacing:7.740000px;}
.wsc{word-spacing:7.860000px;}
.ws8e{word-spacing:8.280000px;}
.ws6b{word-spacing:8.340000px;}
.ws49{word-spacing:8.520000px;}
.ws5c{word-spacing:8.760000px;}
.ws6c{word-spacing:8.880000px;}
.wsce{word-spacing:8.940000px;}
.wsba{word-spacing:8.964000px;}
.wsde{word-spacing:9.240000px;}
.wsfe{word-spacing:9.360000px;}
.wsf1{word-spacing:9.720000px;}
.wsf9{word-spacing:9.792000px;}
.ws4f{word-spacing:9.960000px;}
.ws111{word-spacing:10.320000px;}
.ws25{word-spacing:10.620000px;}
.ws1d{word-spacing:10.800000px;}
.ws8d{word-spacing:10.860000px;}
.ws1f{word-spacing:11.100000px;}
.wse0{word-spacing:11.160000px;}
.wsdf{word-spacing:11.220000px;}
.ws8b{word-spacing:11.460000px;}
.wsef{word-spacing:11.940000px;}
.ws58{word-spacing:12.240000px;}
.ws35{word-spacing:12.300000px;}
.ws29{word-spacing:13.920000px;}
.wsfc{word-spacing:14.208000px;}
.ws19{word-spacing:14.280000px;}
.wse1{word-spacing:14.760000px;}
.ws30{word-spacing:14.940000px;}
.ws38{word-spacing:15.240000px;}
.ws94{word-spacing:15.480000px;}
.wsb3{word-spacing:15.540000px;}
.ws39{word-spacing:16.080000px;}
.ws34{word-spacing:16.260000px;}
.ws95{word-spacing:16.860000px;}
.ws5e{word-spacing:19.140000px;}
.ws1b{word-spacing:19.980000px;}
.wse7{word-spacing:23.040000px;}
.ws24{word-spacing:24.180000px;}
.ws5d{word-spacing:24.240000px;}
.wsfb{word-spacing:24.528000px;}
.ws9f{word-spacing:25.039800px;}
.wsf7{word-spacing:26.256000px;}
.wsbd{word-spacing:26.551800px;}
.wsa8{word-spacing:26.821200px;}
.wse9{word-spacing:29.086200px;}
.ws40{word-spacing:30.721800px;}
.wsae{word-spacing:33.543600px;}
.wsad{word-spacing:33.544200px;}
.wsbb{word-spacing:36.078000px;}
.wsbc{word-spacing:36.078600px;}
.ws75{word-spacing:36.423600px;}
.wsa0{word-spacing:37.590000px;}
.ws9e{word-spacing:37.590600px;}
.ws81{word-spacing:38.205000px;}
.wsbf{word-spacing:39.625200px;}
.ws7d{word-spacing:39.970200px;}
.ws86{word-spacing:42.048000px;}
.ws85{word-spacing:44.581800px;}
.ws87{word-spacing:44.582400px;}
.wsa5{word-spacing:49.039800px;}
.wsbe{word-spacing:50.551800px;}
.wsac{word-spacing:53.086200px;}
.wsaf{word-spacing:53.086800px;}
.ws74{word-spacing:56.926200px;}
.ws76{word-spacing:56.926800px;}
.wsb1{word-spacing:57.543600px;}
.wsb0{word-spacing:57.544200px;}
.ws7c{word-spacing:58.707600px;}
.ws72{word-spacing:59.463600px;}
.wsd6{word-spacing:60.442200px;}
.ws42{word-spacing:60.782400px;}
.wsa3{word-spacing:61.590000px;}
.wsa1{word-spacing:61.590600px;}
.wsa9{word-spacing:65.137200px;}
.ws88{word-spacing:66.048000px;}
.ws70{word-spacing:73.966800px;}
.wsb2{word-spacing:77.086200px;}
.ws7b{word-spacing:79.966200px;}
.ws7e{word-spacing:79.966800px;}
.ws82{word-spacing:83.512800px;}
.ws47{word-spacing:83.822400px;}
.ws45{word-spacing:90.625200px;}
.ws43{word-spacing:90.625800px;}
.ws46{word-spacing:111.034800px;}
.ws84{word-spacing:112.841400px;}
.ws9d{word-spacing:112.842000px;}
.ws6f{word-spacing:118.121400px;}
.ws83{word-spacing:127.429800px;}
.ws44{word-spacing:134.074800px;}
.ws48{word-spacing:151.082400px;}
.wsda{word-spacing:171.117600px;}
.wsdb{word-spacing:171.118200px;}
.wsd7{word-spacing:183.118200px;}
.wsc5{word-spacing:186.613800px;}
.wsc6{word-spacing:186.614400px;}
.wsdc{word-spacing:195.117600px;}
.wsdd{word-spacing:195.118200px;}
.wsc1{word-spacing:210.613800px;}
.ws7a{word-spacing:309.658800px;}
.wsd5{word-spacing:376.464000px;}
.wsa6{word-spacing:422.170800px;}
.ws78{word-spacing:440.602800px;}
.wsd9{word-spacing:450.235800px;}
.wsc4{word-spacing:453.491400px;}
.wsd8{word-spacing:457.329600px;}
.wsc3{word-spacing:466.115400px;}
.wsc7{word-spacing:477.491400px;}
.ws79{word-spacing:484.042800px;}
.wsc0{word-spacing:485.459400px;}
.wsc2{word-spacing:509.555400px;}
.ws7f{word-spacing:514.095600px;}
.ws80{word-spacing:517.738800px;}
.ws77{word-spacing:530.074800px;}
.wsaa{word-spacing:546.874800px;}
.wsab{word-spacing:548.656200px;}
.ws73{word-spacing:553.115400px;}
.ws3f{word-spacing:568.830600px;}
.wsa4{word-spacing:570.874800px;}
.ws107{word-spacing:573.004200px;}
.ws71{word-spacing:576.154800px;}
.wscc{word-spacing:580.384063px;}
.wsa7{word-spacing:583.210800px;}
.wsa2{word-spacing:607.210800px;}
.ws41{word-spacing:640.203000px;}
.ws10a{word-spacing:742.746600px;}
.wsff{word-spacing:793.092000px;}
.ws101{word-spacing:795.732000px;}
.ws104{word-spacing:799.660200px;}
.ws105{word-spacing:813.004200px;}
.ws103{word-spacing:818.332200px;}
.ws108{word-spacing:835.233000px;}
.ws10b{word-spacing:861.004200px;}
.ws109{word-spacing:866.332200px;}
.ws10d{word-spacing:868.074600px;}
.wscb{word-spacing:894.499640px;}
.ws100{word-spacing:910.356000px;}
.ws10e{word-spacing:922.348200px;}
.ws102{word-spacing:923.700000px;}
.ws106{word-spacing:940.972200px;}
.ws10c{word-spacing:946.348200px;}
._d{margin-left:-2824.158600px;}
._6f{margin-left:-59.794800px;}
._71{margin-left:-48.796200px;}
._76{margin-left:-46.923600px;}
._c{margin-left:-14.004600px;}
._6{margin-left:-10.272000px;}
._34{margin-left:-7.722000px;}
._7{margin-left:-6.642000px;}
._12{margin-left:-5.526000px;}
._4{margin-left:-4.464000px;}
._5{margin-left:-2.736000px;}
._1{margin-left:-1.591200px;}
._0{width:1.703400px;}
._2{width:2.784600px;}
._3{width:4.059600px;}
._b{width:5.111040px;}
._e{width:6.726960px;}
._a{width:7.770000px;}
._8{width:9.402000px;}
._9{width:11.034000px;}
._f{width:12.906000px;}
._75{width:14.088000px;}
._73{width:15.144000px;}
._21{width:16.188000px;}
._72{width:17.730000px;}
._35{width:18.804600px;}
._33{width:20.447400px;}
._11{width:23.382000px;}
._13{width:29.232000px;}
._70{width:37.039200px;}
._74{width:38.088000px;}
._40{width:48.078000px;}
._38{width:61.039800px;}
._3f{width:62.551800px;}
._6e{width:64.126200px;}
._10{width:66.047400px;}
._15{width:67.551600px;}
._32{width:68.986800px;}
._3b{width:70.101000px;}
._16{width:72.201600px;}
._36{width:73.590000px;}
._2d{width:78.048000px;}
._28{width:81.659400px;}
._2c{width:88.597800px;}
._1b{width:94.862400px;}
._23{width:96.277800px;}
._19{width:101.665200px;}
._2a{width:106.186800px;}
._1c{width:107.698200px;}
._20{width:110.246400px;}
._3c{width:112.962600px;}
._1a{width:122.074800px;}
._2b{width:138.642000px;}
._22{width:141.522000px;}
._1e{width:145.114800px;}
._37{width:147.322800px;}
._1d{width:162.122400px;}
._41{width:163.715400px;}
._45{width:195.118800px;}
._5c{width:199.814400px;}
._46{width:207.117600px;}
._3e{width:215.987400px;}
._1f{width:226.557600px;}
._5a{width:231.117600px;}
._2f{width:252.538800px;}
._2e{width:261.322800px;}
._3a{width:283.506600px;}
._31{width:332.698800px;}
._18{width:336.806400px;}
._43{width:352.220400px;}
._30{width:383.146800px;}
._27{width:396.923400px;}
._42{width:400.504200px;}
._25{width:402.107400px;}
._5d{width:450.703200px;}
._24{width:457.978800px;}
._29{width:462.347400px;}
._48{width:465.798600px;}
._4c{width:486.236400px;}
._26{width:488.027400px;}
._3d{width:531.522600px;}
._79{width:547.962000px;}
._17{width:552.373800px;}
._39{width:558.258600px;}
._7b{width:561.012000px;}
._55{width:562.639200px;}
._7c{width:589.932600px;}
._14{width:592.230000px;}
._82{width:608.196000px;}
._64{width:615.301200px;}
._84{width:622.348200px;}
._77{width:634.351800px;}
._57{width:646.831200px;}
._85{width:649.084200px;}
._88{width:682.252200px;}
._7a{width:686.484000px;}
._86{width:687.724200px;}
._80{width:709.524000px;}
._83{width:714.412200px;}
._78{width:742.404000px;}
._7d{width:755.700000px;}
._8a{width:767.692200px;}
._89{width:773.116200px;}
._7e{width:774.420000px;}
._87{width:789.004200px;}
._81{width:801.060000px;}
._47{width:802.735200px;}
._60{width:811.381200px;}
._4a{width:830.623200px;}
._7f{width:835.716000px;}
._49{width:841.279200px;}
._56{width:864.031200px;}
._58{width:867.925200px;}
._4e{width:872.005200px;}
._5b{width:875.413200px;}
._50{width:941.125200px;}
._5e{width:948.079200px;}
._62{width:962.053200px;}
._59{width:976.741200px;}
._52{width:981.493200px;}
._53{width:1014.655200px;}
._4f{width:1035.397200px;}
._61{width:1067.413200px;}
._51{width:1078.117200px;}
._44{width:1080.709200px;}
._5f{width:1093.093200px;}
._54{width:1153.669200px;}
._4b{width:1217.749200px;}
._4d{width:1228.597200px;}
._63{width:1271.365200px;}
._6b{width:1305.919800px;}
._6a{width:1487.071800px;}
._68{width:1567.183800px;}
._6d{width:1585.759800px;}
._6c{width:1609.759800px;}
._67{width:1740.367800px;}
._69{width:2017.711800px;}
._66{width:2041.711800px;}
._65{width:2079.007800px;}
.fc4{color:rgb(67,67,69);}
.fc3{color:rgb(230,41,48);}
.fc1{color:rgb(237,105,24);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.980000px;}
.fsa{font-size:37.223400px;}
.fs5{font-size:37.800000px;}
.fsb{font-size:39.412800px;}
.fs6{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs9{font-size:48.171600px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y22b{bottom:2.610300px;}
.y23{bottom:63.058200px;}
.y22{bottom:75.658200px;}
.y27{bottom:77.089500px;}
.y21{bottom:88.258200px;}
.yf2{bottom:112.889700px;}
.y177{bottom:114.890850px;}
.y5f{bottom:116.682450px;}
.y77{bottom:116.875200px;}
.y11a{bottom:117.941850px;}
.y1ac{bottom:120.398550px;}
.ybe{bottom:121.671900px;}
.yf1{bottom:127.889700px;}
.y22d{bottom:130.125900px;}
.y261{bottom:130.623300px;}
.y24c{bottom:130.777050px;}
.y1d1{bottom:130.794900px;}
.y176{bottom:132.890850px;}
.y119{bottom:134.340900px;}
.y5e{bottom:134.682450px;}
.y76{bottom:134.875200px;}
.y1ec{bottom:136.000050px;}
.y2d0{bottom:136.576050px;}
.y20{bottom:137.333550px;}
.y1ab{bottom:138.711000px;}
.ybd{bottom:139.346550px;}
.yf0{bottom:148.319850px;}
.y260{bottom:148.623300px;}
.y24b{bottom:148.777050px;}
.y1d0{bottom:148.794900px;}
.y118{bottom:150.739950px;}
.y175{bottom:150.890850px;}
.y1eb{bottom:151.000050px;}
.y5d{bottom:152.682450px;}
.y75{bottom:152.875200px;}
.y2cf{bottom:154.576050px;}
.y1f{bottom:155.333550px;}
.ybc{bottom:157.021200px;}
.y1aa{bottom:157.023450px;}
.yef{bottom:164.718900px;}
.y117{bottom:165.739950px;}
.y25f{bottom:166.623300px;}
.y24a{bottom:166.777050px;}
.y1cf{bottom:166.794900px;}
.y1ea{bottom:168.036900px;}
.y174{bottom:168.890850px;}
.y5c{bottom:170.682450px;}
.y74{bottom:170.875200px;}
.y2ce{bottom:172.576050px;}
.y1e{bottom:173.333550px;}
.ybb{bottom:174.695850px;}
.y1a9{bottom:175.335900px;}
.yee{bottom:181.117950px;}
.y116{bottom:182.139150px;}
.y25e{bottom:184.623300px;}
.y249{bottom:184.777050px;}
.y1ce{bottom:184.794900px;}
.y1e9{bottom:185.073750px;}
.y173{bottom:186.890850px;}
.y5b{bottom:188.682450px;}
.y73{bottom:188.875200px;}
.y2cd{bottom:190.576050px;}
.y1d{bottom:191.333550px;}
.yba{bottom:192.745500px;}
.y1a8{bottom:193.648350px;}
.yed{bottom:197.517000px;}
.y115{bottom:198.538050px;}
.y1e8{bottom:202.110600px;}
.y25d{bottom:202.623300px;}
.y248{bottom:202.777050px;}
.y1cd{bottom:202.794900px;}
.y172{bottom:204.890850px;}
.y5a{bottom:206.682450px;}
.y72{bottom:206.875200px;}
.y2cc{bottom:208.576050px;}
.y1a7{bottom:208.648350px;}
.y1c{bottom:209.333550px;}
.yb9{bottom:210.226800px;}
.y1fe{bottom:212.182200px;}
.yec{bottom:213.916050px;}
.y114{bottom:214.937100px;}
.y1e7{bottom:219.147450px;}
.y25c{bottom:220.623300px;}
.y247{bottom:220.777050px;}
.y1cc{bottom:220.794900px;}
.y171{bottom:222.890850px;}
.y59{bottom:224.682450px;}
.y71{bottom:224.875200px;}
.y2cb{bottom:226.576050px;}
.y1a6{bottom:226.960800px;}
.y1b{bottom:227.333550px;}
.yeb{bottom:230.315100px;}
.y113{bottom:231.336300px;}
.y1e6{bottom:236.184300px;}
.yb8{bottom:237.484650px;}
.y25b{bottom:238.623300px;}
.y246{bottom:238.777050px;}
.y1cb{bottom:238.794900px;}
.y170{bottom:240.890850px;}
.y58{bottom:242.682450px;}
.y70{bottom:242.875200px;}
.y2ca{bottom:244.576050px;}
.y1a5{bottom:245.273100px;}
.y1a{bottom:245.333550px;}
.y112{bottom:246.336300px;}
.yea{bottom:246.714150px;}
.y1e5{bottom:253.232850px;}
.y25a{bottom:256.623300px;}
.y245{bottom:256.777050px;}
.y1ca{bottom:256.794900px;}
.y16f{bottom:258.890850px;}
.y1a4{bottom:260.273100px;}
.y57{bottom:260.682450px;}
.y6f{bottom:260.875200px;}
.y2c9{bottom:262.576050px;}
.y111{bottom:262.735350px;}
.ye9{bottom:263.113200px;}
.y19{bottom:263.333550px;}
.y1e4{bottom:268.232850px;}
.yb7{bottom:270.891000px;}
.ya4{bottom:271.138050px;}
.y259{bottom:274.623300px;}
.y244{bottom:274.777050px;}
.y1c9{bottom:274.794900px;}
.y1a3{bottom:275.273100px;}
.y16e{bottom:276.890850px;}
.y110{bottom:277.735350px;}
.y56{bottom:278.682450px;}
.y6e{bottom:278.875200px;}
.ye8{bottom:279.512250px;}
.y2c8{bottom:280.576050px;}
.y18{bottom:281.333550px;}
.y1e3{bottom:285.269700px;}
.yb6{bottom:288.891000px;}
.ya3{bottom:289.138050px;}
.y258{bottom:292.623300px;}
.y243{bottom:292.777050px;}
.y1c8{bottom:292.794900px;}
.y1a2{bottom:293.585550px;}
.y10f{bottom:294.134400px;}
.y16d{bottom:294.890850px;}
.ye7{bottom:295.911300px;}
.y55{bottom:296.682450px;}
.y6d{bottom:296.875200px;}
.y2c7{bottom:298.576050px;}
.y17{bottom:299.333400px;}
.y1e2{bottom:302.306550px;}
.yb5{bottom:306.891000px;}
.ya2{bottom:307.138050px;}
.y10e{bottom:309.134400px;}
.y257{bottom:310.623300px;}
.y242{bottom:310.777050px;}
.y1c7{bottom:310.794900px;}
.y1a1{bottom:311.898000px;}
.ye6{bottom:312.310350px;}
.y16c{bottom:312.890850px;}
.y54{bottom:314.682450px;}
.y6c{bottom:314.875200px;}
.y2c6{bottom:316.576050px;}
.y16{bottom:317.333400px;}
.y1e1{bottom:319.343400px;}
.yb4{bottom:324.891000px;}
.ya1{bottom:325.138050px;}
.y10d{bottom:325.533300px;}
.y256{bottom:328.623300px;}
.ye5{bottom:328.709400px;}
.y241{bottom:328.777050px;}
.y1c6{bottom:328.794900px;}
.y1a0{bottom:330.210450px;}
.y16b{bottom:330.890850px;}
.y53{bottom:332.682450px;}
.y6b{bottom:332.875200px;}
.y2c5{bottom:334.576050px;}
.y1e0{bottom:336.380250px;}
.y10c{bottom:341.739000px;}
.yb3{bottom:342.891000px;}
.ya0{bottom:343.138050px;}
.ye4{bottom:344.915100px;}
.y255{bottom:346.623300px;}
.y240{bottom:346.777050px;}
.y1c5{bottom:346.794900px;}
.y19f{bottom:348.522900px;}
.y16a{bottom:348.890850px;}
.y15{bottom:349.365000px;}
.y52{bottom:350.682450px;}
.y6a{bottom:350.875200px;}
.y2c4{bottom:352.576050px;}
.y1df{bottom:353.417100px;}
.y10b{bottom:358.138200px;}
.yb2{bottom:360.891000px;}
.y9f{bottom:361.138050px;}
.ye3{bottom:361.314150px;}
.y19e{bottom:363.522900px;}
.y254{bottom:364.623300px;}
.y23f{bottom:364.777050px;}
.y1c4{bottom:364.794900px;}
.y169{bottom:366.890850px;}
.y51{bottom:368.682450px;}
.y69{bottom:368.875200px;}
.y1de{bottom:370.465650px;}
.y2c3{bottom:370.576050px;}
.y146{bottom:371.974800px;}
.y10a{bottom:373.138200px;}
.ye2{bottom:377.713200px;}
.y19d{bottom:378.522900px;}
.yb1{bottom:378.891000px;}
.y9e{bottom:379.138050px;}
.y253{bottom:382.623300px;}
.y23e{bottom:382.777050px;}
.y1c3{bottom:382.794900px;}
.y168{bottom:384.890850px;}
.y1dd{bottom:385.465650px;}
.y50{bottom:386.682450px;}
.y68{bottom:386.875200px;}
.y109{bottom:388.138200px;}
.y2c2{bottom:388.576050px;}
.ye1{bottom:394.112250px;}
.y19c{bottom:396.835350px;}
.yb0{bottom:396.891000px;}
.y9d{bottom:397.138050px;}
.y252{bottom:400.623300px;}
.y23d{bottom:400.777050px;}
.y1c2{bottom:400.794900px;}
.y1dc{bottom:402.502500px;}
.y167{bottom:402.890850px;}
.y108{bottom:403.138200px;}
.y4f{bottom:404.682450px;}
.y67{bottom:404.875200px;}
.y2c1{bottom:406.576050px;}
.y144{bottom:410.069100px;}
.ye0{bottom:410.511450px;}
.y139{bottom:412.053300px;}
.yaf{bottom:414.891000px;}
.y9c{bottom:415.138050px;}
.y19b{bottom:415.147800px;}
.y107{bottom:418.138200px;}
.y251{bottom:418.623300px;}
.y23c{bottom:418.777050px;}
.y1c1{bottom:418.794900px;}
.y1db{bottom:419.539350px;}
.y2b3{bottom:420.020100px;}
.y4e{bottom:422.682450px;}
.y66{bottom:422.875200px;}
.ydf{bottom:426.910350px;}
.y143{bottom:428.069100px;}
.y138{bottom:430.053300px;}
.y14{bottom:431.876700px;}
.yae{bottom:432.891000px;}
.y9b{bottom:433.138050px;}
.y106{bottom:433.138200px;}
.y19a{bottom:433.460250px;}
.y1da{bottom:436.576200px;}
.y250{bottom:436.623300px;}
.y23b{bottom:436.777050px;}
.y1c0{bottom:436.794900px;}
.y2b2{bottom:438.020100px;}
.y4d{bottom:440.682450px;}
.yde{bottom:443.309400px;}
.y2c0{bottom:445.576050px;}
.y1b3{bottom:445.734900px;}
.y142{bottom:446.069100px;}
.y137{bottom:448.053300px;}
.y105{bottom:448.138200px;}
.yad{bottom:450.891000px;}
.y9a{bottom:451.138050px;}
.y199{bottom:451.772700px;}
.y1d9{bottom:453.613050px;}
.y24f{bottom:454.623300px;}
.y23a{bottom:454.777050px;}
.y1bf{bottom:454.794900px;}
.y65{bottom:457.883100px;}
.y13{bottom:458.380650px;}
.y4c{bottom:458.682450px;}
.ydd{bottom:459.515100px;}
.y1ee{bottom:462.387450px;}
.y22a{bottom:462.920550px;}
.y104{bottom:463.138200px;}
.y1b2{bottom:463.409550px;}
.y141{bottom:464.069100px;}
.y136{bottom:466.053300px;}
.y198{bottom:466.772700px;}
.yac{bottom:468.891000px;}
.y99{bottom:469.138050px;}
.y28d{bottom:470.638950px;}
.y1d8{bottom:470.649900px;}
.y294{bottom:470.794350px;}
.y24e{bottom:472.623300px;}
.y1be{bottom:472.794900px;}
.ydc{bottom:475.720800px;}
.y64{bottom:475.883100px;}
.y103{bottom:478.138200px;}
.y1b1{bottom:481.084200px;}
.y197{bottom:481.772700px;}
.y140{bottom:482.069100px;}
.y135{bottom:484.053300px;}
.yab{bottom:486.891000px;}
.y98{bottom:487.138050px;}
.y1d7{bottom:487.698450px;}
.y28c{bottom:488.638950px;}
.y293{bottom:488.794350px;}
.y24d{bottom:490.623300px;}
.y1bd{bottom:490.794900px;}
.y239{bottom:490.864950px;}
.y4b{bottom:491.682450px;}
.ydb{bottom:491.926500px;}
.y102{bottom:493.138200px;}
.y63{bottom:493.883100px;}
.y1b0{bottom:498.758850px;}
.y13f{bottom:500.069100px;}
.y196{bottom:500.085150px;}
.y134{bottom:502.053300px;}
.y1d6{bottom:504.735300px;}
.yaa{bottom:504.891000px;}
.y97{bottom:505.138050px;}
.y28b{bottom:506.638950px;}
.y292{bottom:506.794350px;}
.y2bf{bottom:507.843750px;}
.y1bc{bottom:508.794900px;}
.y101{bottom:509.537250px;}
.y62{bottom:511.883100px;}
.y1af{bottom:516.808500px;}
.y13e{bottom:518.069100px;}
.yda{bottom:518.334000px;}
.y195{bottom:518.397600px;}
.y1d5{bottom:521.772150px;}
.ya9{bottom:522.891000px;}
.y96{bottom:523.138050px;}
.y100{bottom:524.537250px;}
.y28a{bottom:524.638950px;}
.y291{bottom:524.794350px;}
.y2be{bottom:525.843750px;}
.y4a{bottom:525.891000px;}
.y1bb{bottom:526.794900px;}
.y61{bottom:529.883100px;}
.y284{bottom:533.129850px;}
.y194{bottom:533.397600px;}
.y1ae{bottom:534.289800px;}
.y13d{bottom:536.069100px;}
.y133{bottom:537.061200px;}
.y1d4{bottom:539.184000px;}
.yff{bottom:539.537250px;}
.ya8{bottom:540.891000px;}
.y95{bottom:541.138050px;}
.y289{bottom:542.638950px;}
.y290{bottom:542.794350px;}
.y1ba{bottom:544.794900px;}
.yd9{bottom:545.875200px;}
.y12{bottom:546.160200px;}
.y60{bottom:547.883100px;}
.y283{bottom:550.611150px;}
.y193{bottom:551.710050px;}
.y13c{bottom:554.069100px;}
.yfe{bottom:554.537250px;}
.y132{bottom:555.061200px;}
.y1d3{bottom:556.027500px;}
.ya7{bottom:558.891000px;}
.y94{bottom:559.138050px;}
.y288{bottom:560.638950px;}
.y28f{bottom:560.794350px;}
.y1ad{bottom:561.547650px;}
.y1b9{bottom:562.794900px;}
.yd8{bottom:563.875200px;}
.y11{bottom:564.160200px;}
.y2bd{bottom:564.844200px;}
.y282{bottom:568.285650px;}
.y2ee{bottom:568.877100px;}
.y302{bottom:569.252100px;}
.yfd{bottom:569.537250px;}
.y192{bottom:570.022500px;}
.y13b{bottom:572.069100px;}
.y131{bottom:573.061200px;}
.ya6{bottom:576.891000px;}
.y93{bottom:577.138050px;}
.y287{bottom:578.638950px;}
.y1b8{bottom:580.794900px;}
.yd7{bottom:581.875200px;}
.y10{bottom:582.160200px;}
.y1d2{bottom:582.647550px;}
.y49{bottom:582.891000px;}
.y191{bottom:585.022500px;}
.yfc{bottom:585.936150px;}
.y281{bottom:585.960450px;}
.y2ed{bottom:586.551750px;}
.y301{bottom:586.926750px;}
.y13a{bottom:590.069100px;}
.y92{bottom:595.138050px;}
.y286{bottom:596.638950px;}
.y1b7{bottom:598.794900px;}
.yd6{bottom:599.875200px;}
.y190{bottom:600.022500px;}
.yf{bottom:600.160200px;}
.y166{bottom:600.890850px;}
.y48{bottom:600.891000px;}
.yfb{bottom:600.936150px;}
.y280{bottom:603.634950px;}
.y2ec{bottom:604.226400px;}
.y300{bottom:604.601400px;}
.y28e{bottom:607.639650px;}
.y130{bottom:608.069100px;}
.y91{bottom:613.138050px;}
.y285{bottom:614.638950px;}
.ya5{bottom:615.891000px;}
.yfa{bottom:615.936150px;}
.y1b6{bottom:616.794900px;}
.yd5{bottom:617.875200px;}
.ye{bottom:618.160200px;}
.y18f{bottom:618.334950px;}
.y2bc{bottom:618.843750px;}
.y165{bottom:618.890850px;}
.y47{bottom:618.891000px;}
.y27f{bottom:621.309750px;}
.y2eb{bottom:621.901050px;}
.y2ff{bottom:622.276050px;}
.y12f{bottom:626.069100px;}
.yf9{bottom:630.936150px;}
.y90{bottom:631.138050px;}
.y1b5{bottom:634.794900px;}
.yd4{bottom:635.875200px;}
.y18e{bottom:636.647250px;}
.y2bb{bottom:636.843750px;}
.y164{bottom:636.890850px;}
.y46{bottom:636.891000px;}
.y27e{bottom:638.790900px;}
.y2ea{bottom:639.575700px;}
.y2fe{bottom:639.950700px;}
.y12e{bottom:644.069100px;}
.yd{bottom:644.664150px;}
.yf8{bottom:645.936150px;}
.y8f{bottom:649.138050px;}
.y1b4{bottom:652.794900px;}
.yd3{bottom:653.875200px;}
.y163{bottom:654.890850px;}
.y45{bottom:654.891000px;}
.y18d{bottom:654.959700px;}
.y2b1{bottom:655.192800px;}
.y27d{bottom:656.272200px;}
.y2e9{bottom:657.250350px;}
.y2fd{bottom:657.625350px;}
.y12d{bottom:662.069100px;}
.yf7{bottom:662.335350px;}
.y8e{bottom:667.138050px;}
.y18c{bottom:669.959700px;}
.yd2{bottom:671.875200px;}
.y2b0{bottom:672.442200px;}
.y162{bottom:672.890850px;}
.y44{bottom:672.891000px;}
.y27c{bottom:673.958550px;}
.y2e8{bottom:674.925000px;}
.y2fc{bottom:675.300000px;}
.y2ba{bottom:675.843750px;}
.y1ed{bottom:677.640000px;}
.yf6{bottom:678.541050px;}
.y12c{bottom:680.069100px;}
.y8d{bottom:685.138050px;}
.y18b{bottom:688.272150px;}
.y2af{bottom:689.691750px;}
.yd1{bottom:689.875200px;}
.y161{bottom:690.890850px;}
.y43{bottom:690.891000px;}
.y226{bottom:691.386065px;}
.y20b{bottom:691.441900px;}
.y27b{bottom:691.644900px;}
.y2e7{bottom:692.599500px;}
.y2fb{bottom:692.974500px;}
.yf5{bottom:694.746750px;}
.y12b{bottom:698.069100px;}
.y8c{bottom:703.138050px;}
.y225{bottom:704.525925px;}
.y20a{bottom:704.581760px;}
.y18a{bottom:706.584600px;}
.y2ae{bottom:706.941150px;}
.yd0{bottom:707.875200px;}
.y160{bottom:708.890850px;}
.y42{bottom:708.891000px;}
.y27a{bottom:709.331250px;}
.y2e6{bottom:710.274150px;}
.y2fa{bottom:710.649150px;}
.yf4{bottom:710.952300px;}
.y22c{bottom:714.075300px;}
.yc{bottom:715.435950px;}
.y12a{bottom:716.069100px;}
.y224{bottom:717.665785px;}
.y209{bottom:717.721620px;}
.y8b{bottom:721.138050px;}
.y2ad{bottom:724.190550px;}
.y189{bottom:724.897050px;}
.y15f{bottom:726.890850px;}
.y41{bottom:726.891000px;}
.y279{bottom:727.005900px;}
.y2e5{bottom:727.948950px;}
.y2f9{bottom:728.323950px;}
.y208{bottom:730.861480px;}
.yb{bottom:732.385950px;}
.y129{bottom:734.069100px;}
.yf3{bottom:737.359800px;}
.y22f{bottom:737.795550px;}
.y8a{bottom:739.138050px;}
.y2ac{bottom:741.440100px;}
.ycf{bottom:742.883100px;}
.y188{bottom:743.209500px;}
.y223{bottom:743.945506px;}
.y207{bottom:744.001341px;}
.y278{bottom:744.680550px;}
.y15e{bottom:744.890850px;}
.y40{bottom:744.891000px;}
.y2e4{bottom:745.623450px;}
.y2f8{bottom:745.998450px;}
.ya{bottom:749.335950px;}
.y222{bottom:757.085366px;}
.y89{bottom:757.138050px;}
.y206{bottom:757.141201px;}
.y2b9{bottom:758.355600px;}
.y2ab{bottom:758.689500px;}
.yce{bottom:760.883100px;}
.y187{bottom:761.521950px;}
.y277{bottom:762.355200px;}
.y15d{bottom:762.890850px;}
.y3f{bottom:762.891000px;}
.y2e3{bottom:763.298100px;}
.y2f7{bottom:763.673100px;}
.y9{bottom:766.285950px;}
.y221{bottom:770.225226px;}
.y205{bottom:770.281061px;}
.y88{bottom:775.138050px;}
.y2aa{bottom:775.938900px;}
.ycd{bottom:778.883100px;}
.y186{bottom:779.834400px;}
.y276{bottom:780.041550px;}
.y15c{bottom:780.890850px;}
.y3e{bottom:780.891000px;}
.y2e2{bottom:780.972900px;}
.y2f6{bottom:781.347900px;}
.y8{bottom:783.235950px;}
.y220{bottom:783.365086px;}
.y204{bottom:783.420921px;}
.y128{bottom:787.153500px;}
.y233{bottom:789.112950px;}
.y87{bottom:793.138050px;}
.y2a9{bottom:793.188300px;}
.y2b8{bottom:793.363350px;}
.ycc{bottom:796.883100px;}
.y275{bottom:797.728050px;}
.y185{bottom:798.146850px;}
.y2e1{bottom:798.647400px;}
.y15b{bottom:798.890850px;}
.y3d{bottom:798.891000px;}
.y2f5{bottom:799.022400px;}
.y229{bottom:799.157114px;}
.y7{bottom:800.185950px;}
.y22e{bottom:802.723650px;}
.y127{bottom:805.153500px;}
.y2a8{bottom:810.437850px;}
.y86{bottom:811.138050px;}
.y2b7{bottom:811.363350px;}
.ycb{bottom:814.883100px;}
.y274{bottom:815.414400px;}
.y2e0{bottom:816.322050px;}
.y184{bottom:816.459300px;}
.y2f4{bottom:816.697050px;}
.y15a{bottom:816.890850px;}
.y3c{bottom:816.891000px;}
.y6{bottom:817.135950px;}
.y21f{bottom:824.068874px;}
.y203{bottom:824.124709px;}
.y2a7{bottom:827.687250px;}
.y232{bottom:828.774900px;}
.y85{bottom:829.138050px;}
.yca{bottom:832.883100px;}
.y273{bottom:833.100750px;}
.y2df{bottom:833.996700px;}
.y126{bottom:834.240450px;}
.y2f3{bottom:834.371700px;}
.y183{bottom:834.771750px;}
.y159{bottom:834.890850px;}
.y3b{bottom:834.891000px;}
.y21e{bottom:837.208734px;}
.y202{bottom:837.264569px;}
.y5{bottom:842.589900px;}
.y2a6{bottom:844.936650px;}
.y2b6{bottom:846.371400px;}
.y84{bottom:847.138050px;}
.y21d{bottom:850.348594px;}
.y201{bottom:850.404430px;}
.y272{bottom:850.787100px;}
.yc9{bottom:850.883100px;}
.y2de{bottom:851.671350px;}
.y2f2{bottom:852.046350px;}
.y125{bottom:852.240450px;}
.y158{bottom:852.890850px;}
.y3a{bottom:852.891000px;}
.y182{bottom:853.084200px;}
.y2a5{bottom:862.186200px;}
.y21c{bottom:863.488455px;}
.y200{bottom:863.544290px;}
.y83{bottom:865.138050px;}
.y271{bottom:868.473450px;}
.yc8{bottom:868.883100px;}
.y2dd{bottom:869.346000px;}
.y2f1{bottom:869.721000px;}
.y124{bottom:870.240450px;}
.y157{bottom:870.890850px;}
.y39{bottom:870.891000px;}
.y181{bottom:871.396500px;}
.y21b{bottom:876.628315px;}
.y1ff{bottom:876.684150px;}
.y2a4{bottom:879.242250px;}
.y2b5{bottom:881.379150px;}
.y82{bottom:883.138050px;}
.y270{bottom:886.148100px;}
.y180{bottom:886.396500px;}
.y2dc{bottom:887.020650px;}
.y2f0{bottom:887.395650px;}
.y123{bottom:888.240450px;}
.y156{bottom:888.890850px;}
.y38{bottom:888.891000px;}
.y21a{bottom:889.768175px;}
.y1fd{bottom:889.795908px;}
.y2a3{bottom:896.491650px;}
.y2b4{bottom:899.379150px;}
.y81{bottom:901.138050px;}
.y17f{bottom:901.396500px;}
.y219{bottom:902.908035px;}
.y1fc{bottom:902.935768px;}
.y26f{bottom:903.629400px;}
.yc7{bottom:903.891000px;}
.y2db{bottom:905.070300px;}
.y2ef{bottom:905.445300px;}
.y122{bottom:906.240450px;}
.y155{bottom:906.890850px;}
.y37{bottom:906.891000px;}
.y4{bottom:909.109500px;}
.y237{bottom:911.654550px;}
.y2a2{bottom:913.741200px;}
.y230{bottom:915.193050px;}
.y218{bottom:916.047895px;}
.y1fb{bottom:916.075629px;}
.y80{bottom:919.138050px;}
.y17e{bottom:919.708950px;}
.y26e{bottom:921.110550px;}
.yc6{bottom:921.891000px;}
.y121{bottom:924.240450px;}
.y154{bottom:924.890850px;}
.y36{bottom:924.891000px;}
.y2a1{bottom:928.741200px;}
.y217{bottom:929.187756px;}
.y1fa{bottom:929.215489px;}
.y2da{bottom:932.328150px;}
.y17d{bottom:934.708950px;}
.y7f{bottom:937.138050px;}
.y26d{bottom:938.785200px;}
.yc5{bottom:939.891000px;}
.y120{bottom:942.240450px;}
.y216{bottom:942.327616px;}
.y1f9{bottom:942.355349px;}
.y153{bottom:942.890850px;}
.y35{bottom:942.891000px;}
.y2a0{bottom:945.990600px;}
.y238{bottom:948.884550px;}
.y234{bottom:951.317100px;}
.y17c{bottom:953.396550px;}
.y7e{bottom:955.138050px;}
.y215{bottom:955.467476px;}
.y1f8{bottom:955.495209px;}
.y26c{bottom:956.460000px;}
.yc4{bottom:957.891000px;}
.y11f{bottom:960.240450px;}
.y152{bottom:960.890850px;}
.y34{bottom:960.891000px;}
.y29f{bottom:963.240000px;}
.y3{bottom:965.377200px;}
.y214{bottom:968.607336px;}
.y1f7{bottom:968.635069px;}
.y17b{bottom:971.515500px;}
.y7d{bottom:973.138050px;}
.y26b{bottom:974.134500px;}
.y2d9{bottom:975.703350px;}
.yc3{bottom:975.891000px;}
.y11e{bottom:978.240450px;}
.y151{bottom:978.890850px;}
.y33{bottom:978.891000px;}
.y29e{bottom:980.489550px;}
.y228{bottom:984.371446px;}
.y17a{bottom:989.634600px;}
.y7c{bottom:991.138050px;}
.y26a{bottom:991.809150px;}
.yc2{bottom:993.891000px;}
.y11d{bottom:996.240450px;}
.y150{bottom:996.890850px;}
.y32{bottom:996.891000px;}
.y29d{bottom:997.738950px;}
.y2{bottom:1004.975700px;}
.y7b{bottom:1009.138050px;}
.y269{bottom:1009.495650px;}
.y213{bottom:1009.981145px;}
.y1f6{bottom:1010.008879px;}
.yc1{bottom:1011.891000px;}
.y11c{bottom:1014.240450px;}
.y14f{bottom:1014.890850px;}
.y31{bottom:1014.891000px;}
.y29c{bottom:1014.988350px;}
.y179{bottom:1017.317700px;}
.y212{bottom:1023.121006px;}
.y1f5{bottom:1023.148739px;}
.y7a{bottom:1027.138050px;}
.y268{bottom:1027.182000px;}
.y29b{bottom:1032.237900px;}
.y14e{bottom:1032.890850px;}
.y30{bottom:1032.891000px;}
.y2d8{bottom:1034.971050px;}
.y178{bottom:1035.317700px;}
.y1{bottom:1035.575850px;}
.y211{bottom:1036.260866px;}
.y1f4{bottom:1036.288599px;}
.y236{bottom:1037.191200px;}
.y267{bottom:1044.868350px;}
.yc0{bottom:1044.891000px;}
.y11b{bottom:1046.391000px;}
.y210{bottom:1049.400726px;}
.y1f3{bottom:1049.428459px;}
.y29a{bottom:1049.487300px;}
.y231{bottom:1049.639700px;}
.y14d{bottom:1050.890850px;}
.y2f{bottom:1050.891000px;}
.y2d7{bottom:1052.971050px;}
.y20f{bottom:1062.540586px;}
.y266{bottom:1062.554700px;}
.y1f2{bottom:1062.568319px;}
.y79{bottom:1064.391000px;}
.y299{bottom:1066.736700px;}
.y14c{bottom:1068.890850px;}
.y2e{bottom:1068.891000px;}
.y2d6{bottom:1070.971050px;}
.y20e{bottom:1075.680446px;}
.y1f1{bottom:1075.708180px;}
.y235{bottom:1076.853000px;}
.y265{bottom:1080.229200px;}
.y298{bottom:1081.736700px;}
.ybf{bottom:1083.891000px;}
.y14b{bottom:1086.890850px;}
.y2d{bottom:1086.891000px;}
.y20d{bottom:1088.820307px;}
.y1f0{bottom:1088.848040px;}
.y2d5{bottom:1088.971050px;}
.y264{bottom:1097.710650px;}
.y297{bottom:1098.986250px;}
.y20c{bottom:1101.960167px;}
.y1ef{bottom:1101.987900px;}
.y14a{bottom:1104.890850px;}
.y2c{bottom:1104.891000px;}
.y2d4{bottom:1106.971050px;}
.y26{bottom:1108.311000px;}
.y263{bottom:1115.191800px;}
.y296{bottom:1116.042300px;}
.y227{bottom:1117.714971px;}
.y149{bottom:1122.890850px;}
.y2b{bottom:1122.891000px;}
.y2d3{bottom:1124.971050px;}
.y262{bottom:1132.673100px;}
.y295{bottom:1133.098350px;}
.y148{bottom:1140.890850px;}
.y2a{bottom:1140.891000px;}
.y2d2{bottom:1142.971050px;}
.y25{bottom:1158.110100px;}
.y147{bottom:1158.890850px;}
.y29{bottom:1158.891000px;}
.y145{bottom:1159.931100px;}
.y2d1{bottom:1160.971050px;}
.y24{bottom:1171.610100px;}
.y78{bottom:1194.094800px;}
.y28{bottom:1194.094950px;}
.h9{height:28.516113px;}
.h11{height:32.507812px;}
.he{height:32.531250px;}
.hf{height:33.328125px;}
.h10{height:33.351562px;}
.ha{height:33.947754px;}
.h18{height:34.687500px;}
.h14{height:35.531427px;}
.h4{height:37.494141px;}
.h6{height:37.520508px;}
.h15{height:37.621309px;}
.hc{height:40.664062px;}
.h8{height:41.660156px;}
.h7{height:41.689453px;}
.h17{height:43.359375px;}
.hd{height:44.267871px;}
.h13{height:45.981982px;}
.hb{height:51.120000px;}
.h3{height:51.480000px;}
.h16{height:61.725027px;}
.h19{height:67.488000px;}
.h5{height:68.640000px;}
.h2{height:72.930000px;}
.h12{height:471.660000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:586.734000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:7.446450px;}
.x27{left:35.558400px;}
.x1{left:76.535400px;}
.x13{left:80.787450px;}
.x46{left:85.734450px;}
.x44{left:87.734100px;}
.x10{left:93.543300px;}
.x45{left:97.795200px;}
.x8{left:110.551200px;}
.x18{left:114.803100px;}
.x48{left:119.510100px;}
.xa{left:127.558950px;}
.x14{left:136.062900px;}
.x2{left:149.973150px;}
.x26{left:170.097000px;}
.x2e{left:198.310200px;}
.x22{left:238.866150px;}
.x34{left:241.140600px;}
.x21{left:242.214300px;}
.x20{left:244.933200px;}
.x1f{left:252.017100px;}
.x31{left:258.563550px;}
.x38{left:264.761400px;}
.x12{left:271.491600px;}
.x17{left:276.229950px;}
.x16{left:279.788850px;}
.x15{left:286.272750px;}
.x2c{left:292.878450px;}
.x19{left:295.873500px;}
.x11{left:334.107450px;}
.x3a{left:355.340100px;}
.x39{left:357.421800px;}
.x32{left:364.609650px;}
.x7{left:367.204050px;}
.x30{left:371.394000px;}
.x9{left:381.538950px;}
.x5{left:387.579750px;}
.x41{left:390.820200px;}
.x3f{left:411.462000px;}
.x3e{left:420.914550px;}
.x3d{left:423.644850px;}
.x2b{left:428.434950px;}
.x3{left:440.078700px;}
.x25{left:444.330750px;}
.x47{left:449.037750px;}
.x43{left:450.796650px;}
.x4{left:457.086600px;}
.xc{left:474.094350px;}
.x1d{left:478.346400px;}
.x36{left:479.385150px;}
.x35{left:481.632000px;}
.x49{left:483.053400px;}
.x33{left:488.825100px;}
.xb{left:491.102250px;}
.xd{left:499.606200px;}
.x3b{left:500.901000px;}
.x2f{left:506.585700px;}
.x29{left:509.666700px;}
.x3c{left:511.901850px;}
.x37{left:513.801900px;}
.x40{left:535.598550px;}
.x42{left:544.016250px;}
.x2a{left:598.534879px;}
.x24{left:608.476350px;}
.x23{left:615.560400px;}
.x6{left:623.398350px;}
.x28{left:627.280650px;}
.x1e{left:636.425100px;}
.x1c{left:639.773100px;}
.x1b{left:642.492000px;}
.x1a{left:649.575900px;}
.xe{left:666.983700px;}
.xf{left:761.268450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v2{vertical-align:23.283200pt;}
.ls2a{letter-spacing:-3.157333pt;}
.ls17{letter-spacing:-2.432000pt;}
.ls20{letter-spacing:-1.578667pt;}
.ls5{letter-spacing:-1.024000pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.906667pt;}
.lsa{letter-spacing:-0.853333pt;}
.ls35{letter-spacing:-0.810667pt;}
.ls16{letter-spacing:-0.800000pt;}
.ls14{letter-spacing:-0.693333pt;}
.ls25{letter-spacing:-0.628662pt;}
.ls26{letter-spacing:-0.562487pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.373333pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls2b{letter-spacing:-0.170667pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls2e{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000533pt;}
.ls27{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.181333pt;}
.ls23{letter-spacing:0.385370pt;}
.ls34{letter-spacing:0.597333pt;}
.ls22{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.853333pt;}
.ls21{letter-spacing:1.066667pt;}
.ls32{letter-spacing:1.920000pt;}
.ls33{letter-spacing:28.600000pt;}
.ls30{letter-spacing:28.600533pt;}
.ls2f{letter-spacing:35.750400pt;}
.ls10{letter-spacing:50.294933pt;}
.ls11{letter-spacing:50.295467pt;}
.ls1f{letter-spacing:57.854400pt;}
.ls1d{letter-spacing:57.854933pt;}
.ls2c{letter-spacing:59.438400pt;}
.lse{letter-spacing:59.561067pt;}
.lsb{letter-spacing:59.561600pt;}
.ls1c{letter-spacing:65.413333pt;}
.ls1b{letter-spacing:65.413867pt;}
.ls12{letter-spacing:71.628267pt;}
.ls13{letter-spacing:71.628800pt;}
.ls24{letter-spacing:73.925600pt;}
.ls1e{letter-spacing:79.187733pt;}
.ls2d{letter-spacing:79.188267pt;}
.lsd{letter-spacing:80.041067pt;}
.lsc{letter-spacing:80.041600pt;}
.ls1a{letter-spacing:86.746667pt;}
.ls19{letter-spacing:86.747200pt;}
.ls29{letter-spacing:173.438400pt;}
.ls28{letter-spacing:173.438933pt;}
.lsf{letter-spacing:197.879467pt;}
.ws1{word-spacing:-20.480000pt;}
.ws93{word-spacing:-13.333333pt;}
.ws3d{word-spacing:-13.173333pt;}
.wsee{word-spacing:-12.586667pt;}
.ws17{word-spacing:-12.520000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsec{word-spacing:-11.520000pt;}
.wsed{word-spacing:-10.666667pt;}
.wsca{word-spacing:-10.229811pt;}
.wsc9{word-spacing:-9.844442pt;}
.wsc8{word-spacing:-9.297578pt;}
.wse8{word-spacing:-9.088000pt;}
.ws3e{word-spacing:-7.773333pt;}
.ws12{word-spacing:-4.533333pt;}
.ws99{word-spacing:-2.986667pt;}
.wsf5{word-spacing:-2.933333pt;}
.ws92{word-spacing:-2.826667pt;}
.ws67{word-spacing:-2.720000pt;}
.wsd1{word-spacing:-2.666667pt;}
.ws117{word-spacing:-2.640000pt;}
.ws5b{word-spacing:-2.560000pt;}
.ws69{word-spacing:-2.453333pt;}
.ws4b{word-spacing:-2.346667pt;}
.ws10{word-spacing:-2.240000pt;}
.ws90{word-spacing:-2.133333pt;}
.ws10f{word-spacing:-1.962667pt;}
.ws98{word-spacing:-1.813333pt;}
.ws6d{word-spacing:-1.706667pt;}
.ws63{word-spacing:-1.546667pt;}
.ws9a{word-spacing:-1.493333pt;}
.ws28{word-spacing:-1.333333pt;}
.wscd{word-spacing:-1.066667pt;}
.ws4{word-spacing:-0.960000pt;}
.wsf3{word-spacing:-0.853333pt;}
.ws118{word-spacing:-0.768000pt;}
.ws9b{word-spacing:-0.693333pt;}
.wscf{word-spacing:-0.640000pt;}
.ws112{word-spacing:-0.597333pt;}
.ws64{word-spacing:-0.586667pt;}
.wsd0{word-spacing:-0.480000pt;}
.ws14{word-spacing:-0.436800pt;}
.wsd4{word-spacing:-0.385370pt;}
.ws4e{word-spacing:-0.373333pt;}
.ws13{word-spacing:-0.336000pt;}
.ws61{word-spacing:-0.320000pt;}
.ws2{word-spacing:-0.181333pt;}
.ws9{word-spacing:-0.160000pt;}
.wse2{word-spacing:-0.106667pt;}
.ws3c{word-spacing:-0.040000pt;}
.ws3{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.053333pt;}
.ws7{word-spacing:0.106667pt;}
.wseb{word-spacing:0.128000pt;}
.ws6e{word-spacing:0.160000pt;}
.wsd{word-spacing:0.213333pt;}
.ws110{word-spacing:0.298667pt;}
.ws4a{word-spacing:0.320000pt;}
.ws68{word-spacing:0.373333pt;}
.ws59{word-spacing:0.426667pt;}
.ws16{word-spacing:0.480000pt;}
.wse{word-spacing:0.533333pt;}
.wsd3{word-spacing:0.562487pt;}
.ws27{word-spacing:0.586667pt;}
.wsd2{word-spacing:0.628662pt;}
.ws2e{word-spacing:0.640000pt;}
.ws89{word-spacing:0.693333pt;}
.ws57{word-spacing:0.800000pt;}
.ws114{word-spacing:0.810667pt;}
.ws15{word-spacing:0.840000pt;}
.ws1e{word-spacing:0.853333pt;}
.ws3a{word-spacing:0.906667pt;}
.ws116{word-spacing:0.938667pt;}
.ws8f{word-spacing:0.960000pt;}
.wsb{word-spacing:1.013333pt;}
.ws32{word-spacing:1.120000pt;}
.wsf4{word-spacing:1.173333pt;}
.ws8c{word-spacing:1.226667pt;}
.wsfa{word-spacing:1.237333pt;}
.ws6{word-spacing:1.440000pt;}
.wsfd{word-spacing:1.536000pt;}
.wsf{word-spacing:1.600000pt;}
.ws50{word-spacing:1.653333pt;}
.wsb6{word-spacing:1.813333pt;}
.ws1a{word-spacing:1.920000pt;}
.ws91{word-spacing:2.026667pt;}
.ws4d{word-spacing:2.080000pt;}
.ws115{word-spacing:2.090667pt;}
.ws9c{word-spacing:2.293333pt;}
.ws31{word-spacing:2.346667pt;}
.ws5{word-spacing:2.352000pt;}
.ws6a{word-spacing:2.453333pt;}
.wse5{word-spacing:2.560000pt;}
.ws21{word-spacing:2.613333pt;}
.ws1c{word-spacing:2.666667pt;}
.ws22{word-spacing:2.826667pt;}
.ws55{word-spacing:2.880000pt;}
.ws60{word-spacing:2.933333pt;}
.wsf2{word-spacing:3.146667pt;}
.wse3{word-spacing:3.253333pt;}
.ws8a{word-spacing:3.306667pt;}
.ws26{word-spacing:3.360000pt;}
.ws20{word-spacing:3.520000pt;}
.ws62{word-spacing:3.573333pt;}
.ws113{word-spacing:3.584000pt;}
.wse4{word-spacing:3.626667pt;}
.ws66{word-spacing:3.680000pt;}
.ws33{word-spacing:3.786667pt;}
.wsea{word-spacing:4.106667pt;}
.ws52{word-spacing:4.213333pt;}
.ws2a{word-spacing:4.373333pt;}
.ws54{word-spacing:4.426667pt;}
.ws2c{word-spacing:4.586667pt;}
.wsf6{word-spacing:4.640000pt;}
.ws65{word-spacing:4.693333pt;}
.wse6{word-spacing:4.800000pt;}
.ws8{word-spacing:4.853333pt;}
.wsa{word-spacing:4.906667pt;}
.wsb7{word-spacing:5.013333pt;}
.ws2f{word-spacing:5.226667pt;}
.wsb5{word-spacing:5.280000pt;}
.ws37{word-spacing:5.333333pt;}
.ws23{word-spacing:5.386667pt;}
.ws5a{word-spacing:5.440000pt;}
.wsb8{word-spacing:5.546667pt;}
.ws51{word-spacing:5.600000pt;}
.ws11{word-spacing:5.653333pt;}
.wsf0{word-spacing:5.706667pt;}
.ws3b{word-spacing:5.813333pt;}
.ws36{word-spacing:5.866667pt;}
.ws4c{word-spacing:6.026667pt;}
.ws2b{word-spacing:6.080000pt;}
.ws53{word-spacing:6.133333pt;}
.wsf8{word-spacing:6.272000pt;}
.ws5f{word-spacing:6.293333pt;}
.ws18{word-spacing:6.453333pt;}
.ws97{word-spacing:6.480000pt;}
.ws56{word-spacing:6.613333pt;}
.wsb4{word-spacing:6.720000pt;}
.ws96{word-spacing:6.773333pt;}
.ws2d{word-spacing:6.880000pt;}
.wsc{word-spacing:6.986667pt;}
.ws8e{word-spacing:7.360000pt;}
.ws6b{word-spacing:7.413333pt;}
.ws49{word-spacing:7.573333pt;}
.ws5c{word-spacing:7.786667pt;}
.ws6c{word-spacing:7.893333pt;}
.wsce{word-spacing:7.946667pt;}
.wsba{word-spacing:7.968000pt;}
.wsde{word-spacing:8.213333pt;}
.wsfe{word-spacing:8.320000pt;}
.wsf1{word-spacing:8.640000pt;}
.wsf9{word-spacing:8.704000pt;}
.ws4f{word-spacing:8.853333pt;}
.ws111{word-spacing:9.173333pt;}
.ws25{word-spacing:9.440000pt;}
.ws1d{word-spacing:9.600000pt;}
.ws8d{word-spacing:9.653333pt;}
.ws1f{word-spacing:9.866667pt;}
.wse0{word-spacing:9.920000pt;}
.wsdf{word-spacing:9.973333pt;}
.ws8b{word-spacing:10.186667pt;}
.wsef{word-spacing:10.613333pt;}
.ws58{word-spacing:10.880000pt;}
.ws35{word-spacing:10.933333pt;}
.ws29{word-spacing:12.373333pt;}
.wsfc{word-spacing:12.629333pt;}
.ws19{word-spacing:12.693333pt;}
.wse1{word-spacing:13.120000pt;}
.ws30{word-spacing:13.280000pt;}
.ws38{word-spacing:13.546667pt;}
.ws94{word-spacing:13.760000pt;}
.wsb3{word-spacing:13.813333pt;}
.ws39{word-spacing:14.293333pt;}
.ws34{word-spacing:14.453333pt;}
.ws95{word-spacing:14.986667pt;}
.ws5e{word-spacing:17.013333pt;}
.ws1b{word-spacing:17.760000pt;}
.wse7{word-spacing:20.480000pt;}
.ws24{word-spacing:21.493333pt;}
.ws5d{word-spacing:21.546667pt;}
.wsfb{word-spacing:21.802667pt;}
.ws9f{word-spacing:22.257600pt;}
.wsf7{word-spacing:23.338667pt;}
.wsbd{word-spacing:23.601600pt;}
.wsa8{word-spacing:23.841067pt;}
.wse9{word-spacing:25.854400pt;}
.ws40{word-spacing:27.308267pt;}
.wsae{word-spacing:29.816533pt;}
.wsad{word-spacing:29.817067pt;}
.wsbb{word-spacing:32.069333pt;}
.wsbc{word-spacing:32.069867pt;}
.ws75{word-spacing:32.376533pt;}
.wsa0{word-spacing:33.413333pt;}
.ws9e{word-spacing:33.413867pt;}
.ws81{word-spacing:33.960000pt;}
.wsbf{word-spacing:35.222400pt;}
.ws7d{word-spacing:35.529067pt;}
.ws86{word-spacing:37.376000pt;}
.ws85{word-spacing:39.628267pt;}
.ws87{word-spacing:39.628800pt;}
.wsa5{word-spacing:43.590933pt;}
.wsbe{word-spacing:44.934933pt;}
.wsac{word-spacing:47.187733pt;}
.wsaf{word-spacing:47.188267pt;}
.ws74{word-spacing:50.601067pt;}
.ws76{word-spacing:50.601600pt;}
.wsb1{word-spacing:51.149867pt;}
.wsb0{word-spacing:51.150400pt;}
.ws7c{word-spacing:52.184533pt;}
.ws72{word-spacing:52.856533pt;}
.wsd6{word-spacing:53.726400pt;}
.ws42{word-spacing:54.028800pt;}
.wsa3{word-spacing:54.746667pt;}
.wsa1{word-spacing:54.747200pt;}
.wsa9{word-spacing:57.899733pt;}
.ws88{word-spacing:58.709333pt;}
.ws70{word-spacing:65.748267pt;}
.wsb2{word-spacing:68.521067pt;}
.ws7b{word-spacing:71.081067pt;}
.ws7e{word-spacing:71.081600pt;}
.ws82{word-spacing:74.233600pt;}
.ws47{word-spacing:74.508800pt;}
.ws45{word-spacing:80.555733pt;}
.ws43{word-spacing:80.556267pt;}
.ws46{word-spacing:98.697600pt;}
.ws84{word-spacing:100.303467pt;}
.ws9d{word-spacing:100.304000pt;}
.ws6f{word-spacing:104.996800pt;}
.ws83{word-spacing:113.270933pt;}
.ws44{word-spacing:119.177600pt;}
.ws48{word-spacing:134.295467pt;}
.wsda{word-spacing:152.104533pt;}
.wsdb{word-spacing:152.105067pt;}
.wsd7{word-spacing:162.771733pt;}
.wsc5{word-spacing:165.878933pt;}
.wsc6{word-spacing:165.879467pt;}
.wsdc{word-spacing:173.437867pt;}
.wsdd{word-spacing:173.438400pt;}
.wsc1{word-spacing:187.212267pt;}
.ws7a{word-spacing:275.252267pt;}
.wsd5{word-spacing:334.634667pt;}
.wsa6{word-spacing:375.262933pt;}
.ws78{word-spacing:391.646933pt;}
.wsd9{word-spacing:400.209600pt;}
.wsc4{word-spacing:403.103467pt;}
.wsd8{word-spacing:406.515200pt;}
.wsc3{word-spacing:414.324800pt;}
.wsc7{word-spacing:424.436800pt;}
.ws79{word-spacing:430.260267pt;}
.wsc0{word-spacing:431.519467pt;}
.wsc2{word-spacing:452.938133pt;}
.ws7f{word-spacing:456.973867pt;}
.ws80{word-spacing:460.212267pt;}
.ws77{word-spacing:471.177600pt;}
.wsaa{word-spacing:486.110933pt;}
.wsab{word-spacing:487.694400pt;}
.ws73{word-spacing:491.658133pt;}
.ws3f{word-spacing:505.627200pt;}
.wsa4{word-spacing:507.444267pt;}
.ws107{word-spacing:509.337067pt;}
.ws71{word-spacing:512.137600pt;}
.wscc{word-spacing:515.896945pt;}
.wsa7{word-spacing:518.409600pt;}
.wsa2{word-spacing:539.742933pt;}
.ws41{word-spacing:569.069333pt;}
.ws10a{word-spacing:660.219200pt;}
.wsff{word-spacing:704.970667pt;}
.ws101{word-spacing:707.317333pt;}
.ws104{word-spacing:710.809067pt;}
.ws105{word-spacing:722.670400pt;}
.ws103{word-spacing:727.406400pt;}
.ws108{word-spacing:742.429333pt;}
.ws10b{word-spacing:765.337067pt;}
.ws109{word-spacing:770.073067pt;}
.ws10d{word-spacing:771.621867pt;}
.wscb{word-spacing:795.110791pt;}
.ws100{word-spacing:809.205333pt;}
.ws10e{word-spacing:819.865067pt;}
.ws102{word-spacing:821.066667pt;}
.ws106{word-spacing:836.419733pt;}
.ws10c{word-spacing:841.198400pt;}
._d{margin-left:-2510.363200pt;}
._6f{margin-left:-53.150933pt;}
._71{margin-left:-43.374400pt;}
._76{margin-left:-41.709867pt;}
._c{margin-left:-12.448533pt;}
._6{margin-left:-9.130667pt;}
._34{margin-left:-6.864000pt;}
._7{margin-left:-5.904000pt;}
._12{margin-left:-4.912000pt;}
._4{margin-left:-3.968000pt;}
._5{margin-left:-2.432000pt;}
._1{margin-left:-1.414400pt;}
._0{width:1.514133pt;}
._2{width:2.475200pt;}
._3{width:3.608533pt;}
._b{width:4.543147pt;}
._e{width:5.979520pt;}
._a{width:6.906667pt;}
._8{width:8.357333pt;}
._9{width:9.808000pt;}
._f{width:11.472000pt;}
._75{width:12.522667pt;}
._73{width:13.461333pt;}
._21{width:14.389333pt;}
._72{width:15.760000pt;}
._35{width:16.715200pt;}
._33{width:18.175467pt;}
._11{width:20.784000pt;}
._13{width:25.984000pt;}
._70{width:32.923733pt;}
._74{width:33.856000pt;}
._40{width:42.736000pt;}
._38{width:54.257600pt;}
._3f{width:55.601600pt;}
._6e{width:57.001067pt;}
._10{width:58.708800pt;}
._15{width:60.045867pt;}
._32{width:61.321600pt;}
._3b{width:62.312000pt;}
._16{width:64.179200pt;}
._36{width:65.413333pt;}
._2d{width:69.376000pt;}
._28{width:72.586133pt;}
._2c{width:78.753600pt;}
._1b{width:84.322133pt;}
._23{width:85.580267pt;}
._19{width:90.369067pt;}
._2a{width:94.388267pt;}
._1c{width:95.731733pt;}
._20{width:97.996800pt;}
._3c{width:100.411200pt;}
._1a{width:108.510933pt;}
._2b{width:123.237333pt;}
._22{width:125.797333pt;}
._1e{width:128.990933pt;}
._37{width:130.953600pt;}
._1d{width:144.108800pt;}
._41{width:145.524800pt;}
._45{width:173.438933pt;}
._5c{width:177.612800pt;}
._46{width:184.104533pt;}
._3e{width:191.988800pt;}
._1f{width:201.384533pt;}
._5a{width:205.437867pt;}
._2f{width:224.478933pt;}
._2e{width:232.286933pt;}
._3a{width:252.005867pt;}
._31{width:295.732267pt;}
._18{width:299.383467pt;}
._43{width:313.084800pt;}
._30{width:340.574933pt;}
._27{width:352.820800pt;}
._42{width:356.003733pt;}
._25{width:357.428800pt;}
._5d{width:400.625067pt;}
._24{width:407.092267pt;}
._29{width:410.975467pt;}
._48{width:414.043200pt;}
._4c{width:432.210133pt;}
._26{width:433.802133pt;}
._3d{width:472.464533pt;}
._79{width:487.077333pt;}
._17{width:490.998933pt;}
._39{width:496.229867pt;}
._7b{width:498.677333pt;}
._55{width:500.123733pt;}
._7c{width:524.384533pt;}
._14{width:526.426667pt;}
._82{width:540.618667pt;}
._64{width:546.934400pt;}
._84{width:553.198400pt;}
._77{width:563.868267pt;}
._57{width:574.961067pt;}
._85{width:576.963733pt;}
._88{width:606.446400pt;}
._7a{width:610.208000pt;}
._86{width:611.310400pt;}
._80{width:630.688000pt;}
._83{width:635.033067pt;}
._78{width:659.914667pt;}
._7d{width:671.733333pt;}
._8a{width:682.393067pt;}
._89{width:687.214400pt;}
._7e{width:688.373333pt;}
._87{width:701.337067pt;}
._81{width:712.053333pt;}
._47{width:713.542400pt;}
._60{width:721.227733pt;}
._4a{width:738.331733pt;}
._7f{width:742.858667pt;}
._49{width:747.803733pt;}
._56{width:768.027733pt;}
._58{width:771.489067pt;}
._4e{width:775.115733pt;}
._5b{width:778.145067pt;}
._50{width:836.555733pt;}
._5e{width:842.737067pt;}
._62{width:855.158400pt;}
._59{width:868.214400pt;}
._52{width:872.438400pt;}
._53{width:901.915733pt;}
._4f{width:920.353067pt;}
._61{width:948.811733pt;}
._51{width:958.326400pt;}
._44{width:960.630400pt;}
._5f{width:971.638400pt;}
._54{width:1025.483733pt;}
._4b{width:1082.443733pt;}
._4d{width:1092.086400pt;}
._63{width:1130.102400pt;}
._6b{width:1160.817600pt;}
._6a{width:1321.841600pt;}
._68{width:1393.052267pt;}
._6d{width:1409.564267pt;}
._6c{width:1430.897600pt;}
._67{width:1546.993600pt;}
._69{width:1793.521600pt;}
._66{width:1814.854933pt;}
._65{width:1848.006933pt;}
.fs7{font-size:31.093333pt;}
.fsa{font-size:33.087467pt;}
.fs5{font-size:33.600000pt;}
.fsb{font-size:35.033600pt;}
.fs6{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs9{font-size:42.819200pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y22b{bottom:2.320267pt;}
.y23{bottom:56.051733pt;}
.y22{bottom:67.251733pt;}
.y27{bottom:68.524000pt;}
.y21{bottom:78.451733pt;}
.yf2{bottom:100.346400pt;}
.y177{bottom:102.125200pt;}
.y5f{bottom:103.717733pt;}
.y77{bottom:103.889067pt;}
.y11a{bottom:104.837200pt;}
.y1ac{bottom:107.020933pt;}
.ybe{bottom:108.152800pt;}
.yf1{bottom:113.679733pt;}
.y22d{bottom:115.667467pt;}
.y261{bottom:116.109600pt;}
.y24c{bottom:116.246267pt;}
.y1d1{bottom:116.262133pt;}
.y176{bottom:118.125200pt;}
.y119{bottom:119.414133pt;}
.y5e{bottom:119.717733pt;}
.y76{bottom:119.889067pt;}
.y1ec{bottom:120.888933pt;}
.y2d0{bottom:121.400933pt;}
.y20{bottom:122.074267pt;}
.y1ab{bottom:123.298667pt;}
.ybd{bottom:123.863600pt;}
.yf0{bottom:131.839867pt;}
.y260{bottom:132.109600pt;}
.y24b{bottom:132.246267pt;}
.y1d0{bottom:132.262133pt;}
.y118{bottom:133.991067pt;}
.y175{bottom:134.125200pt;}
.y1eb{bottom:134.222267pt;}
.y5d{bottom:135.717733pt;}
.y75{bottom:135.889067pt;}
.y2cf{bottom:137.400933pt;}
.y1f{bottom:138.074267pt;}
.ybc{bottom:139.574400pt;}
.y1aa{bottom:139.576400pt;}
.yef{bottom:146.416800pt;}
.y117{bottom:147.324400pt;}
.y25f{bottom:148.109600pt;}
.y24a{bottom:148.246267pt;}
.y1cf{bottom:148.262133pt;}
.y1ea{bottom:149.366133pt;}
.y174{bottom:150.125200pt;}
.y5c{bottom:151.717733pt;}
.y74{bottom:151.889067pt;}
.y2ce{bottom:153.400933pt;}
.y1e{bottom:154.074267pt;}
.ybb{bottom:155.285200pt;}
.y1a9{bottom:155.854133pt;}
.yee{bottom:160.993733pt;}
.y116{bottom:161.901467pt;}
.y25e{bottom:164.109600pt;}
.y249{bottom:164.246267pt;}
.y1ce{bottom:164.262133pt;}
.y1e9{bottom:164.510000pt;}
.y173{bottom:166.125200pt;}
.y5b{bottom:167.717733pt;}
.y73{bottom:167.889067pt;}
.y2cd{bottom:169.400933pt;}
.y1d{bottom:170.074267pt;}
.yba{bottom:171.329333pt;}
.y1a8{bottom:172.131867pt;}
.yed{bottom:175.570667pt;}
.y115{bottom:176.478267pt;}
.y1e8{bottom:179.653867pt;}
.y25d{bottom:180.109600pt;}
.y248{bottom:180.246267pt;}
.y1cd{bottom:180.262133pt;}
.y172{bottom:182.125200pt;}
.y5a{bottom:183.717733pt;}
.y72{bottom:183.889067pt;}
.y2cc{bottom:185.400933pt;}
.y1a7{bottom:185.465200pt;}
.y1c{bottom:186.074267pt;}
.yb9{bottom:186.868267pt;}
.y1fe{bottom:188.606400pt;}
.yec{bottom:190.147600pt;}
.y114{bottom:191.055200pt;}
.y1e7{bottom:194.797733pt;}
.y25c{bottom:196.109600pt;}
.y247{bottom:196.246267pt;}
.y1cc{bottom:196.262133pt;}
.y171{bottom:198.125200pt;}
.y59{bottom:199.717733pt;}
.y71{bottom:199.889067pt;}
.y2cb{bottom:201.400933pt;}
.y1a6{bottom:201.742933pt;}
.y1b{bottom:202.074267pt;}
.yeb{bottom:204.724533pt;}
.y113{bottom:205.632267pt;}
.y1e6{bottom:209.941600pt;}
.yb8{bottom:211.097467pt;}
.y25b{bottom:212.109600pt;}
.y246{bottom:212.246267pt;}
.y1cb{bottom:212.262133pt;}
.y170{bottom:214.125200pt;}
.y58{bottom:215.717733pt;}
.y70{bottom:215.889067pt;}
.y2ca{bottom:217.400933pt;}
.y1a5{bottom:218.020533pt;}
.y1a{bottom:218.074267pt;}
.y112{bottom:218.965600pt;}
.yea{bottom:219.301467pt;}
.y1e5{bottom:225.095867pt;}
.y25a{bottom:228.109600pt;}
.y245{bottom:228.246267pt;}
.y1ca{bottom:228.262133pt;}
.y16f{bottom:230.125200pt;}
.y1a4{bottom:231.353867pt;}
.y57{bottom:231.717733pt;}
.y6f{bottom:231.889067pt;}
.y2c9{bottom:233.400933pt;}
.y111{bottom:233.542533pt;}
.ye9{bottom:233.878400pt;}
.y19{bottom:234.074267pt;}
.y1e4{bottom:238.429200pt;}
.yb7{bottom:240.792000pt;}
.ya4{bottom:241.011600pt;}
.y259{bottom:244.109600pt;}
.y244{bottom:244.246267pt;}
.y1c9{bottom:244.262133pt;}
.y1a3{bottom:244.687200pt;}
.y16e{bottom:246.125200pt;}
.y110{bottom:246.875867pt;}
.y56{bottom:247.717733pt;}
.y6e{bottom:247.889067pt;}
.ye8{bottom:248.455333pt;}
.y2c8{bottom:249.400933pt;}
.y18{bottom:250.074267pt;}
.y1e3{bottom:253.573067pt;}
.yb6{bottom:256.792000pt;}
.ya3{bottom:257.011600pt;}
.y258{bottom:260.109600pt;}
.y243{bottom:260.246267pt;}
.y1c8{bottom:260.262133pt;}
.y1a2{bottom:260.964933pt;}
.y10f{bottom:261.452800pt;}
.y16d{bottom:262.125200pt;}
.ye7{bottom:263.032267pt;}
.y55{bottom:263.717733pt;}
.y6d{bottom:263.889067pt;}
.y2c7{bottom:265.400933pt;}
.y17{bottom:266.074133pt;}
.y1e2{bottom:268.716933pt;}
.yb5{bottom:272.792000pt;}
.ya2{bottom:273.011600pt;}
.y10e{bottom:274.786133pt;}
.y257{bottom:276.109600pt;}
.y242{bottom:276.246267pt;}
.y1c7{bottom:276.262133pt;}
.y1a1{bottom:277.242667pt;}
.ye6{bottom:277.609200pt;}
.y16c{bottom:278.125200pt;}
.y54{bottom:279.717733pt;}
.y6c{bottom:279.889067pt;}
.y2c6{bottom:281.400933pt;}
.y16{bottom:282.074133pt;}
.y1e1{bottom:283.860800pt;}
.yb4{bottom:288.792000pt;}
.ya1{bottom:289.011600pt;}
.y10d{bottom:289.362933pt;}
.y256{bottom:292.109600pt;}
.ye5{bottom:292.186133pt;}
.y241{bottom:292.246267pt;}
.y1c6{bottom:292.262133pt;}
.y1a0{bottom:293.520400pt;}
.y16b{bottom:294.125200pt;}
.y53{bottom:295.717733pt;}
.y6b{bottom:295.889067pt;}
.y2c5{bottom:297.400933pt;}
.y1e0{bottom:299.004667pt;}
.y10c{bottom:303.768000pt;}
.yb3{bottom:304.792000pt;}
.ya0{bottom:305.011600pt;}
.ye4{bottom:306.591200pt;}
.y255{bottom:308.109600pt;}
.y240{bottom:308.246267pt;}
.y1c5{bottom:308.262133pt;}
.y19f{bottom:309.798133pt;}
.y16a{bottom:310.125200pt;}
.y15{bottom:310.546667pt;}
.y52{bottom:311.717733pt;}
.y6a{bottom:311.889067pt;}
.y2c4{bottom:313.400933pt;}
.y1df{bottom:314.148533pt;}
.y10b{bottom:318.345067pt;}
.yb2{bottom:320.792000pt;}
.y9f{bottom:321.011600pt;}
.ye3{bottom:321.168133pt;}
.y19e{bottom:323.131467pt;}
.y254{bottom:324.109600pt;}
.y23f{bottom:324.246267pt;}
.y1c4{bottom:324.262133pt;}
.y169{bottom:326.125200pt;}
.y51{bottom:327.717733pt;}
.y69{bottom:327.889067pt;}
.y1de{bottom:329.302800pt;}
.y2c3{bottom:329.400933pt;}
.y146{bottom:330.644267pt;}
.y10a{bottom:331.678400pt;}
.ye2{bottom:335.745067pt;}
.y19d{bottom:336.464800pt;}
.yb1{bottom:336.792000pt;}
.y9e{bottom:337.011600pt;}
.y253{bottom:340.109600pt;}
.y23e{bottom:340.246267pt;}
.y1c3{bottom:340.262133pt;}
.y168{bottom:342.125200pt;}
.y1dd{bottom:342.636133pt;}
.y50{bottom:343.717733pt;}
.y68{bottom:343.889067pt;}
.y109{bottom:345.011733pt;}
.y2c2{bottom:345.400933pt;}
.ye1{bottom:350.322000pt;}
.y19c{bottom:352.742533pt;}
.yb0{bottom:352.792000pt;}
.y9d{bottom:353.011600pt;}
.y252{bottom:356.109600pt;}
.y23d{bottom:356.246267pt;}
.y1c2{bottom:356.262133pt;}
.y1dc{bottom:357.780000pt;}
.y167{bottom:358.125200pt;}
.y108{bottom:358.345067pt;}
.y4f{bottom:359.717733pt;}
.y67{bottom:359.889067pt;}
.y2c1{bottom:361.400933pt;}
.y144{bottom:364.505867pt;}
.ye0{bottom:364.899067pt;}
.y139{bottom:366.269600pt;}
.yaf{bottom:368.792000pt;}
.y9c{bottom:369.011600pt;}
.y19b{bottom:369.020267pt;}
.y107{bottom:371.678400pt;}
.y251{bottom:372.109600pt;}
.y23c{bottom:372.246267pt;}
.y1c1{bottom:372.262133pt;}
.y1db{bottom:372.923867pt;}
.y2b3{bottom:373.351200pt;}
.y4e{bottom:375.717733pt;}
.y66{bottom:375.889067pt;}
.ydf{bottom:379.475867pt;}
.y143{bottom:380.505867pt;}
.y138{bottom:382.269600pt;}
.y14{bottom:383.890400pt;}
.yae{bottom:384.792000pt;}
.y9b{bottom:385.011600pt;}
.y106{bottom:385.011733pt;}
.y19a{bottom:385.298000pt;}
.y1da{bottom:388.067733pt;}
.y250{bottom:388.109600pt;}
.y23b{bottom:388.246267pt;}
.y1c0{bottom:388.262133pt;}
.y2b2{bottom:389.351200pt;}
.y4d{bottom:391.717733pt;}
.yde{bottom:394.052800pt;}
.y2c0{bottom:396.067600pt;}
.y1b3{bottom:396.208800pt;}
.y142{bottom:396.505867pt;}
.y137{bottom:398.269600pt;}
.y105{bottom:398.345067pt;}
.yad{bottom:400.792000pt;}
.y9a{bottom:401.011600pt;}
.y199{bottom:401.575733pt;}
.y1d9{bottom:403.211600pt;}
.y24f{bottom:404.109600pt;}
.y23a{bottom:404.246267pt;}
.y1bf{bottom:404.262133pt;}
.y65{bottom:407.007200pt;}
.y13{bottom:407.449467pt;}
.y4c{bottom:407.717733pt;}
.ydd{bottom:408.457867pt;}
.y1ee{bottom:411.011067pt;}
.y22a{bottom:411.484933pt;}
.y104{bottom:411.678400pt;}
.y1b2{bottom:411.919600pt;}
.y141{bottom:412.505867pt;}
.y136{bottom:414.269600pt;}
.y198{bottom:414.909067pt;}
.yac{bottom:416.792000pt;}
.y99{bottom:417.011600pt;}
.y28d{bottom:418.345733pt;}
.y1d8{bottom:418.355467pt;}
.y294{bottom:418.483867pt;}
.y24e{bottom:420.109600pt;}
.y1be{bottom:420.262133pt;}
.ydc{bottom:422.862933pt;}
.y64{bottom:423.007200pt;}
.y103{bottom:425.011733pt;}
.y1b1{bottom:427.630400pt;}
.y197{bottom:428.242400pt;}
.y140{bottom:428.505867pt;}
.y135{bottom:430.269600pt;}
.yab{bottom:432.792000pt;}
.y98{bottom:433.011600pt;}
.y1d7{bottom:433.509733pt;}
.y28c{bottom:434.345733pt;}
.y293{bottom:434.483867pt;}
.y24d{bottom:436.109600pt;}
.y1bd{bottom:436.262133pt;}
.y239{bottom:436.324400pt;}
.y4b{bottom:437.051067pt;}
.ydb{bottom:437.268000pt;}
.y102{bottom:438.345067pt;}
.y63{bottom:439.007200pt;}
.y1b0{bottom:443.341200pt;}
.y13f{bottom:444.505867pt;}
.y196{bottom:444.520133pt;}
.y134{bottom:446.269600pt;}
.y1d6{bottom:448.653600pt;}
.yaa{bottom:448.792000pt;}
.y97{bottom:449.011600pt;}
.y28b{bottom:450.345733pt;}
.y292{bottom:450.483867pt;}
.y2bf{bottom:451.416667pt;}
.y1bc{bottom:452.262133pt;}
.y101{bottom:452.922000pt;}
.y62{bottom:455.007200pt;}
.y1af{bottom:459.385333pt;}
.y13e{bottom:460.505867pt;}
.yda{bottom:460.741333pt;}
.y195{bottom:460.797867pt;}
.y1d5{bottom:463.797467pt;}
.ya9{bottom:464.792000pt;}
.y96{bottom:465.011600pt;}
.y100{bottom:466.255333pt;}
.y28a{bottom:466.345733pt;}
.y291{bottom:466.483867pt;}
.y2be{bottom:467.416667pt;}
.y4a{bottom:467.458667pt;}
.y1bb{bottom:468.262133pt;}
.y61{bottom:471.007200pt;}
.y284{bottom:473.893200pt;}
.y194{bottom:474.131200pt;}
.y1ae{bottom:474.924267pt;}
.y13d{bottom:476.505867pt;}
.y133{bottom:477.387733pt;}
.y1d4{bottom:479.274667pt;}
.yff{bottom:479.588667pt;}
.ya8{bottom:480.792000pt;}
.y95{bottom:481.011600pt;}
.y289{bottom:482.345733pt;}
.y290{bottom:482.483867pt;}
.y1ba{bottom:484.262133pt;}
.yd9{bottom:485.222400pt;}
.y12{bottom:485.475733pt;}
.y60{bottom:487.007200pt;}
.y283{bottom:489.432133pt;}
.y193{bottom:490.408933pt;}
.y13c{bottom:492.505867pt;}
.yfe{bottom:492.922000pt;}
.y132{bottom:493.387733pt;}
.y1d3{bottom:494.246667pt;}
.ya7{bottom:496.792000pt;}
.y94{bottom:497.011600pt;}
.y288{bottom:498.345733pt;}
.y28f{bottom:498.483867pt;}
.y1ad{bottom:499.153467pt;}
.y1b9{bottom:500.262133pt;}
.yd8{bottom:501.222400pt;}
.y11{bottom:501.475733pt;}
.y2bd{bottom:502.083733pt;}
.y282{bottom:505.142800pt;}
.y2ee{bottom:505.668533pt;}
.y302{bottom:506.001867pt;}
.yfd{bottom:506.255333pt;}
.y192{bottom:506.686667pt;}
.y13b{bottom:508.505867pt;}
.y131{bottom:509.387733pt;}
.ya6{bottom:512.792000pt;}
.y93{bottom:513.011600pt;}
.y287{bottom:514.345733pt;}
.y1b8{bottom:516.262133pt;}
.yd7{bottom:517.222400pt;}
.y10{bottom:517.475733pt;}
.y1d2{bottom:517.908933pt;}
.y49{bottom:518.125333pt;}
.y191{bottom:520.020000pt;}
.yfc{bottom:520.832133pt;}
.y281{bottom:520.853733pt;}
.y2ed{bottom:521.379333pt;}
.y301{bottom:521.712667pt;}
.y13a{bottom:524.505867pt;}
.y92{bottom:529.011600pt;}
.y286{bottom:530.345733pt;}
.y1b7{bottom:532.262133pt;}
.yd6{bottom:533.222400pt;}
.y190{bottom:533.353333pt;}
.yf{bottom:533.475733pt;}
.y166{bottom:534.125200pt;}
.y48{bottom:534.125333pt;}
.yfb{bottom:534.165467pt;}
.y280{bottom:536.564400pt;}
.y2ec{bottom:537.090133pt;}
.y300{bottom:537.423467pt;}
.y28e{bottom:540.124133pt;}
.y130{bottom:540.505867pt;}
.y91{bottom:545.011600pt;}
.y285{bottom:546.345733pt;}
.ya5{bottom:547.458667pt;}
.yfa{bottom:547.498800pt;}
.y1b6{bottom:548.262133pt;}
.yd5{bottom:549.222400pt;}
.ye{bottom:549.475733pt;}
.y18f{bottom:549.631067pt;}
.y2bc{bottom:550.083333pt;}
.y165{bottom:550.125200pt;}
.y47{bottom:550.125333pt;}
.y27f{bottom:552.275333pt;}
.y2eb{bottom:552.800933pt;}
.y2ff{bottom:553.134267pt;}
.y12f{bottom:556.505867pt;}
.yf9{bottom:560.832133pt;}
.y90{bottom:561.011600pt;}
.y1b5{bottom:564.262133pt;}
.yd4{bottom:565.222400pt;}
.y18e{bottom:565.908667pt;}
.y2bb{bottom:566.083333pt;}
.y164{bottom:566.125200pt;}
.y46{bottom:566.125333pt;}
.y27e{bottom:567.814133pt;}
.y2ea{bottom:568.511733pt;}
.y2fe{bottom:568.845067pt;}
.y12e{bottom:572.505867pt;}
.yd{bottom:573.034800pt;}
.yf8{bottom:574.165467pt;}
.y8f{bottom:577.011600pt;}
.y1b4{bottom:580.262133pt;}
.yd3{bottom:581.222400pt;}
.y163{bottom:582.125200pt;}
.y45{bottom:582.125333pt;}
.y18d{bottom:582.186400pt;}
.y2b1{bottom:582.393600pt;}
.y27d{bottom:583.353067pt;}
.y2e9{bottom:584.222533pt;}
.y2fd{bottom:584.555867pt;}
.y12d{bottom:588.505867pt;}
.yf7{bottom:588.742533pt;}
.y8e{bottom:593.011600pt;}
.y18c{bottom:595.519733pt;}
.yd2{bottom:597.222400pt;}
.y2b0{bottom:597.726400pt;}
.y162{bottom:598.125200pt;}
.y44{bottom:598.125333pt;}
.y27c{bottom:599.074267pt;}
.y2e8{bottom:599.933333pt;}
.y2fc{bottom:600.266667pt;}
.y2ba{bottom:600.750000pt;}
.y1ed{bottom:602.346667pt;}
.yf6{bottom:603.147600pt;}
.y12c{bottom:604.505867pt;}
.y8d{bottom:609.011600pt;}
.y18b{bottom:611.797467pt;}
.y2af{bottom:613.059333pt;}
.yd1{bottom:613.222400pt;}
.y161{bottom:614.125200pt;}
.y43{bottom:614.125333pt;}
.y226{bottom:614.565391pt;}
.y20b{bottom:614.615022pt;}
.y27b{bottom:614.795467pt;}
.y2e7{bottom:615.644000pt;}
.y2fb{bottom:615.977333pt;}
.yf5{bottom:617.552667pt;}
.y12b{bottom:620.505867pt;}
.y8c{bottom:625.011600pt;}
.y225{bottom:626.245267pt;}
.y20a{bottom:626.294898pt;}
.y18a{bottom:628.075200pt;}
.y2ae{bottom:628.392133pt;}
.yd0{bottom:629.222400pt;}
.y160{bottom:630.125200pt;}
.y42{bottom:630.125333pt;}
.y27a{bottom:630.516667pt;}
.y2e6{bottom:631.354800pt;}
.y2fa{bottom:631.688133pt;}
.yf4{bottom:631.957600pt;}
.y22c{bottom:634.733600pt;}
.yc{bottom:635.943067pt;}
.y12a{bottom:636.505867pt;}
.y224{bottom:637.925142pt;}
.y209{bottom:637.974774pt;}
.y8b{bottom:641.011600pt;}
.y2ad{bottom:643.724933pt;}
.y189{bottom:644.352933pt;}
.y15f{bottom:646.125200pt;}
.y41{bottom:646.125333pt;}
.y279{bottom:646.227467pt;}
.y2e5{bottom:647.065733pt;}
.y2f9{bottom:647.399067pt;}
.y208{bottom:649.654649pt;}
.yb{bottom:651.009733pt;}
.y129{bottom:652.505867pt;}
.yf3{bottom:655.430933pt;}
.y22f{bottom:655.818267pt;}
.y8a{bottom:657.011600pt;}
.y2ac{bottom:659.057867pt;}
.ycf{bottom:660.340533pt;}
.y188{bottom:660.630667pt;}
.y223{bottom:661.284894pt;}
.y207{bottom:661.334525pt;}
.y278{bottom:661.938267pt;}
.y15e{bottom:662.125200pt;}
.y40{bottom:662.125333pt;}
.y2e4{bottom:662.776400pt;}
.y2f8{bottom:663.109733pt;}
.ya{bottom:666.076400pt;}
.y222{bottom:672.964770pt;}
.y89{bottom:673.011600pt;}
.y206{bottom:673.014401pt;}
.y2b9{bottom:674.093867pt;}
.y2ab{bottom:674.390667pt;}
.yce{bottom:676.340533pt;}
.y187{bottom:676.908400pt;}
.y277{bottom:677.649067pt;}
.y15d{bottom:678.125200pt;}
.y3f{bottom:678.125333pt;}
.y2e3{bottom:678.487200pt;}
.y2f7{bottom:678.820533pt;}
.y9{bottom:681.143067pt;}
.y221{bottom:684.644645pt;}
.y205{bottom:684.694277pt;}
.y88{bottom:689.011600pt;}
.y2aa{bottom:689.723467pt;}
.ycd{bottom:692.340533pt;}
.y186{bottom:693.186133pt;}
.y276{bottom:693.370267pt;}
.y15c{bottom:694.125200pt;}
.y3e{bottom:694.125333pt;}
.y2e2{bottom:694.198133pt;}
.y2f6{bottom:694.531467pt;}
.y8{bottom:696.209733pt;}
.y220{bottom:696.324521pt;}
.y204{bottom:696.374152pt;}
.y128{bottom:699.692000pt;}
.y233{bottom:701.433733pt;}
.y87{bottom:705.011600pt;}
.y2a9{bottom:705.056267pt;}
.y2b8{bottom:705.211867pt;}
.ycc{bottom:708.340533pt;}
.y275{bottom:709.091600pt;}
.y185{bottom:709.463867pt;}
.y2e1{bottom:709.908800pt;}
.y15b{bottom:710.125200pt;}
.y3d{bottom:710.125333pt;}
.y2f5{bottom:710.242133pt;}
.y229{bottom:710.361879pt;}
.y7{bottom:711.276400pt;}
.y22e{bottom:713.532133pt;}
.y127{bottom:715.692000pt;}
.y2a8{bottom:720.389200pt;}
.y86{bottom:721.011600pt;}
.y2b7{bottom:721.211867pt;}
.ycb{bottom:724.340533pt;}
.y274{bottom:724.812800pt;}
.y2e0{bottom:725.619600pt;}
.y184{bottom:725.741600pt;}
.y2f4{bottom:725.952933pt;}
.y15a{bottom:726.125200pt;}
.y3c{bottom:726.125333pt;}
.y6{bottom:726.343067pt;}
.y21f{bottom:732.505666pt;}
.y203{bottom:732.555297pt;}
.y2a7{bottom:735.722000pt;}
.y232{bottom:736.688800pt;}
.y85{bottom:737.011600pt;}
.yca{bottom:740.340533pt;}
.y273{bottom:740.534000pt;}
.y2df{bottom:741.330400pt;}
.y126{bottom:741.547067pt;}
.y2f3{bottom:741.663733pt;}
.y183{bottom:742.019333pt;}
.y159{bottom:742.125200pt;}
.y3b{bottom:742.125333pt;}
.y21e{bottom:744.185542pt;}
.y202{bottom:744.235173pt;}
.y5{bottom:748.968800pt;}
.y2a6{bottom:751.054800pt;}
.y2b6{bottom:752.330133pt;}
.y84{bottom:753.011600pt;}
.y21d{bottom:755.865417pt;}
.y201{bottom:755.915049pt;}
.y272{bottom:756.255200pt;}
.yc9{bottom:756.340533pt;}
.y2de{bottom:757.041200pt;}
.y2f2{bottom:757.374533pt;}
.y125{bottom:757.547067pt;}
.y158{bottom:758.125200pt;}
.y3a{bottom:758.125333pt;}
.y182{bottom:758.297067pt;}
.y2a5{bottom:766.387733pt;}
.y21c{bottom:767.545293pt;}
.y200{bottom:767.594924pt;}
.y83{bottom:769.011600pt;}
.y271{bottom:771.976400pt;}
.yc8{bottom:772.340533pt;}
.y2dd{bottom:772.752000pt;}
.y2f1{bottom:773.085333pt;}
.y124{bottom:773.547067pt;}
.y157{bottom:774.125200pt;}
.y39{bottom:774.125333pt;}
.y181{bottom:774.574667pt;}
.y21b{bottom:779.225169pt;}
.y1ff{bottom:779.274800pt;}
.y2a4{bottom:781.548667pt;}
.y2b5{bottom:783.448133pt;}
.y82{bottom:785.011600pt;}
.y270{bottom:787.687200pt;}
.y180{bottom:787.908000pt;}
.y2dc{bottom:788.462800pt;}
.y2f0{bottom:788.796133pt;}
.y123{bottom:789.547067pt;}
.y156{bottom:790.125200pt;}
.y38{bottom:790.125333pt;}
.y21a{bottom:790.905045pt;}
.y1fd{bottom:790.929696pt;}
.y2a3{bottom:796.881467pt;}
.y2b4{bottom:799.448133pt;}
.y81{bottom:801.011600pt;}
.y17f{bottom:801.241333pt;}
.y219{bottom:802.584920pt;}
.y1fc{bottom:802.609572pt;}
.y26f{bottom:803.226133pt;}
.yc7{bottom:803.458667pt;}
.y2db{bottom:804.506933pt;}
.y2ef{bottom:804.840267pt;}
.y122{bottom:805.547067pt;}
.y155{bottom:806.125200pt;}
.y37{bottom:806.125333pt;}
.y4{bottom:808.097333pt;}
.y237{bottom:810.359600pt;}
.y2a2{bottom:812.214400pt;}
.y230{bottom:813.504933pt;}
.y218{bottom:814.264796pt;}
.y1fb{bottom:814.289448pt;}
.y80{bottom:817.011600pt;}
.y17e{bottom:817.519067pt;}
.y26e{bottom:818.764933pt;}
.yc6{bottom:819.458667pt;}
.y121{bottom:821.547067pt;}
.y154{bottom:822.125200pt;}
.y36{bottom:822.125333pt;}
.y2a1{bottom:825.547733pt;}
.y217{bottom:825.944672pt;}
.y1fa{bottom:825.969323pt;}
.y2da{bottom:828.736133pt;}
.y17d{bottom:830.852400pt;}
.y7f{bottom:833.011600pt;}
.y26d{bottom:834.475733pt;}
.yc5{bottom:835.458667pt;}
.y120{bottom:837.547067pt;}
.y216{bottom:837.624547pt;}
.y1f9{bottom:837.649199pt;}
.y153{bottom:838.125200pt;}
.y35{bottom:838.125333pt;}
.y2a0{bottom:840.880533pt;}
.y238{bottom:843.452933pt;}
.y234{bottom:845.615200pt;}
.y17c{bottom:847.463600pt;}
.y7e{bottom:849.011600pt;}
.y215{bottom:849.304423pt;}
.y1f8{bottom:849.329075pt;}
.y26c{bottom:850.186667pt;}
.yc4{bottom:851.458667pt;}
.y11f{bottom:853.547067pt;}
.y152{bottom:854.125200pt;}
.y34{bottom:854.125333pt;}
.y29f{bottom:856.213333pt;}
.y3{bottom:858.113067pt;}
.y214{bottom:860.984299pt;}
.y1f7{bottom:861.008951pt;}
.y17b{bottom:863.569333pt;}
.y7d{bottom:865.011600pt;}
.y26b{bottom:865.897333pt;}
.y2d9{bottom:867.291867pt;}
.yc3{bottom:867.458667pt;}
.y11e{bottom:869.547067pt;}
.y151{bottom:870.125200pt;}
.y33{bottom:870.125333pt;}
.y29e{bottom:871.546267pt;}
.y228{bottom:874.996841pt;}
.y17a{bottom:879.675200pt;}
.y7c{bottom:881.011600pt;}
.y26a{bottom:881.608133pt;}
.yc2{bottom:883.458667pt;}
.y11d{bottom:885.547067pt;}
.y150{bottom:886.125200pt;}
.y32{bottom:886.125333pt;}
.y29d{bottom:886.879067pt;}
.y2{bottom:893.311733pt;}
.y7b{bottom:897.011600pt;}
.y269{bottom:897.329467pt;}
.y213{bottom:897.761018pt;}
.y1f6{bottom:897.785670pt;}
.yc1{bottom:899.458667pt;}
.y11c{bottom:901.547067pt;}
.y14f{bottom:902.125200pt;}
.y31{bottom:902.125333pt;}
.y29c{bottom:902.211867pt;}
.y179{bottom:904.282400pt;}
.y212{bottom:909.440894pt;}
.y1f5{bottom:909.465546pt;}
.y7a{bottom:913.011600pt;}
.y268{bottom:913.050667pt;}
.y29b{bottom:917.544800pt;}
.y14e{bottom:918.125200pt;}
.y30{bottom:918.125333pt;}
.y2d8{bottom:919.974267pt;}
.y178{bottom:920.282400pt;}
.y1{bottom:920.511867pt;}
.y211{bottom:921.120770pt;}
.y1f4{bottom:921.145421pt;}
.y236{bottom:921.947733pt;}
.y267{bottom:928.771867pt;}
.yc0{bottom:928.792000pt;}
.y11b{bottom:930.125333pt;}
.y210{bottom:932.800645pt;}
.y1f3{bottom:932.825297pt;}
.y29a{bottom:932.877600pt;}
.y231{bottom:933.013067pt;}
.y14d{bottom:934.125200pt;}
.y2f{bottom:934.125333pt;}
.y2d7{bottom:935.974267pt;}
.y20f{bottom:944.480521pt;}
.y266{bottom:944.493067pt;}
.y1f2{bottom:944.505173pt;}
.y79{bottom:946.125333pt;}
.y299{bottom:948.210400pt;}
.y14c{bottom:950.125200pt;}
.y2e{bottom:950.125333pt;}
.y2d6{bottom:951.974267pt;}
.y20e{bottom:956.160397pt;}
.y1f1{bottom:956.185049pt;}
.y235{bottom:957.202667pt;}
.y265{bottom:960.203733pt;}
.y298{bottom:961.543733pt;}
.ybf{bottom:963.458667pt;}
.y14b{bottom:966.125200pt;}
.y2d{bottom:966.125333pt;}
.y20d{bottom:967.840273pt;}
.y1f0{bottom:967.864924pt;}
.y2d5{bottom:967.974267pt;}
.y264{bottom:975.742800pt;}
.y297{bottom:976.876667pt;}
.y20c{bottom:979.520148pt;}
.y1ef{bottom:979.544800pt;}
.y14a{bottom:982.125200pt;}
.y2c{bottom:982.125333pt;}
.y2d4{bottom:983.974267pt;}
.y26{bottom:985.165333pt;}
.y263{bottom:991.281600pt;}
.y296{bottom:992.037600pt;}
.y227{bottom:993.524419pt;}
.y149{bottom:998.125200pt;}
.y2b{bottom:998.125333pt;}
.y2d3{bottom:999.974267pt;}
.y262{bottom:1006.820533pt;}
.y295{bottom:1007.198533pt;}
.y148{bottom:1014.125200pt;}
.y2a{bottom:1014.125333pt;}
.y2d2{bottom:1015.974267pt;}
.y25{bottom:1029.431200pt;}
.y147{bottom:1030.125200pt;}
.y29{bottom:1030.125333pt;}
.y145{bottom:1031.049867pt;}
.y2d1{bottom:1031.974267pt;}
.y24{bottom:1041.431200pt;}
.y78{bottom:1061.417600pt;}
.y28{bottom:1061.417733pt;}
.h9{height:25.347656pt;}
.h11{height:28.895833pt;}
.he{height:28.916667pt;}
.hf{height:29.625000pt;}
.h10{height:29.645833pt;}
.ha{height:30.175781pt;}
.h18{height:30.833333pt;}
.h14{height:31.583491pt;}
.h4{height:33.328125pt;}
.h6{height:33.351562pt;}
.h15{height:33.441164pt;}
.hc{height:36.145833pt;}
.h8{height:37.031250pt;}
.h7{height:37.057292pt;}
.h17{height:38.541667pt;}
.hd{height:39.349219pt;}
.h13{height:40.872873pt;}
.hb{height:45.440000pt;}
.h3{height:45.760000pt;}
.h16{height:54.866691pt;}
.h19{height:59.989333pt;}
.h5{height:61.013333pt;}
.h2{height:64.826667pt;}
.h12{height:419.253333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:521.541333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:6.619067pt;}
.x27{left:31.607467pt;}
.x1{left:68.031467pt;}
.x13{left:71.811067pt;}
.x46{left:76.208400pt;}
.x44{left:77.985867pt;}
.x10{left:83.149600pt;}
.x45{left:86.929067pt;}
.x8{left:98.267733pt;}
.x18{left:102.047200pt;}
.x48{left:106.231200pt;}
.xa{left:113.385733pt;}
.x14{left:120.944800pt;}
.x2{left:133.309467pt;}
.x26{left:151.197333pt;}
.x2e{left:176.275733pt;}
.x22{left:212.325467pt;}
.x34{left:214.347200pt;}
.x21{left:215.301600pt;}
.x20{left:217.718400pt;}
.x1f{left:224.015200pt;}
.x31{left:229.834267pt;}
.x38{left:235.343467pt;}
.x12{left:241.325867pt;}
.x17{left:245.537733pt;}
.x16{left:248.701200pt;}
.x15{left:254.464667pt;}
.x2c{left:260.336400pt;}
.x19{left:262.998667pt;}
.x11{left:296.984400pt;}
.x3a{left:315.857867pt;}
.x39{left:317.708267pt;}
.x32{left:324.097467pt;}
.x7{left:326.403600pt;}
.x30{left:330.128000pt;}
.x9{left:339.145733pt;}
.x5{left:344.515333pt;}
.x41{left:347.395733pt;}
.x3f{left:365.744000pt;}
.x3e{left:374.146267pt;}
.x3d{left:376.573200pt;}
.x2b{left:380.831067pt;}
.x3{left:391.181067pt;}
.x25{left:394.960667pt;}
.x47{left:399.144667pt;}
.x43{left:400.708133pt;}
.x4{left:406.299200pt;}
.xc{left:421.417200pt;}
.x1d{left:425.196800pt;}
.x36{left:426.120133pt;}
.x35{left:428.117333pt;}
.x49{left:429.380800pt;}
.x33{left:434.511200pt;}
.xb{left:436.535333pt;}
.xd{left:444.094400pt;}
.x3b{left:445.245333pt;}
.x2f{left:450.298400pt;}
.x29{left:453.037067pt;}
.x3c{left:455.023867pt;}
.x37{left:456.712800pt;}
.x40{left:476.087600pt;}
.x42{left:483.570000pt;}
.x2a{left:532.031004pt;}
.x24{left:540.867867pt;}
.x23{left:547.164800pt;}
.x6{left:554.131867pt;}
.x28{left:557.582800pt;}
.x1e{left:565.711200pt;}
.x1c{left:568.687200pt;}
.x1b{left:571.104000pt;}
.x1a{left:577.400800pt;}
.xe{left:592.874400pt;}
.xf{left:676.683067pt;}
}




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