
    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_90bf96158cf993e49b13af2d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.748000;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_9cad0212e4117c5a165872ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.416000;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_54293f8fe4d00b12f20e9fe3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.450000;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_c80dd298fc432e0246576773.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.468000;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_052bc6706a328bad310407b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.362000;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_bbab11f9f5fa29514716b270.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.342000;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_9b1c524ec9db624b44e1480e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.295000;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_52754400b114d23ddeb6d75d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.305000;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_3519c63c478cd0c7807d6699.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.305000;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_de24990e077e1d8c8e03ed3a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.349000;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_2954fe0d7e872037ad29e5a6.woff2')format("woff");}.ffb{font-family:ffb;line-height:4.002000;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_77b6d1177cc34c55c60e3707.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.419000;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_629ffc85fb302a68f4f6d775.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.362000;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_cc3bd3b70b463ee19900a0f6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.362000;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_4d65351d399e4483c8e6cac6.woff2')format("woff");}.fff{font-family:fff;line-height:4.002000;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_c4b4242462582f874bc6da9f.woff2')format("woff");}.ff10{font-family:ff10;line-height:4.002000;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_551139f5a19a587c6fe8ffa6.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.393000;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:ff12;src:url('chunks/assets/font_6b8930c5a55795542669da26.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.730957;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:ff13;src:url('chunks/assets/font_633c486eba8175f01119c7a9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.392000;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:ff14;src:url('chunks/assets/font_0ec9d23733e4b74a50333d85.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.329000;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:ff15;src:url('chunks/assets/font_172c51a8372d6773eaf2853f.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.355000;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:ff16;src:url('chunks/assets/font_61f7fd7d34a6df7851a5eaca.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.959000;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:ff17;src:url('chunks/assets/font_9b4da141afce0dd0d35ca1cb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.999000;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:ff18;src:url('chunks/assets/font_c72cbc364921f274ae6b5d16.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.999000;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:ff19;src:url('chunks/assets/font_37e4280a9091647d9c3c5c24.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.384000;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);}
.v1c{vertical-align:-59.664000px;}
.v1b{vertical-align:-53.790000px;}
.v26{vertical-align:-47.142000px;}
.v17{vertical-align:-23.946000px;}
.v28{vertical-align:-20.298000px;}
.v4{vertical-align:-17.946000px;}
.v15{vertical-align:-15.696000px;}
.v10{vertical-align:-13.374000px;}
.v2{vertical-align:-10.134000px;}
.v8{vertical-align:-8.514000px;}
.v9{vertical-align:-6.780000px;}
.v1d{vertical-align:-5.400000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:1.650000px;}
.v18{vertical-align:7.020000px;}
.ve{vertical-align:8.652000px;}
.v6{vertical-align:11.148000px;}
.vd{vertical-align:12.366000px;}
.v11{vertical-align:13.608000px;}
.vf{vertical-align:15.396000px;}
.v14{vertical-align:16.434000px;}
.v5{vertical-align:17.970000px;}
.v22{vertical-align:19.920000px;}
.v3{vertical-align:23.946000px;}
.v1f{vertical-align:30.216000px;}
.vb{vertical-align:31.338000px;}
.v7{vertical-align:35.496000px;}
.va{vertical-align:37.668000px;}
.v13{vertical-align:39.342000px;}
.v24{vertical-align:40.410000px;}
.v19{vertical-align:41.592000px;}
.v1a{vertical-align:42.744000px;}
.v1{vertical-align:48.132000px;}
.vc{vertical-align:51.276000px;}
.v16{vertical-align:62.166000px;}
.v27{vertical-align:64.614000px;}
.v20{vertical-align:78.156000px;}
.v23{vertical-align:81.348000px;}
.v25{vertical-align:82.644000px;}
.v21{vertical-align:86.526000px;}
.v1e{vertical-align:111.288000px;}
.ls21{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.000180px;}
.ls55{letter-spacing:0.000600px;}
.ls50{letter-spacing:0.001200px;}
.ls5f{letter-spacing:0.001800px;}
.ls26{letter-spacing:0.002400px;}
.ls3b{letter-spacing:0.003000px;}
.ls52{letter-spacing:0.004200px;}
.ls80{letter-spacing:0.006600px;}
.ls7b{letter-spacing:0.336000px;}
.ls74{letter-spacing:0.702000px;}
.ls7e{letter-spacing:1.026000px;}
.ls64{letter-spacing:1.455000px;}
.ls4d{letter-spacing:1.674000px;}
.ls6c{letter-spacing:1.780800px;}
.ls62{letter-spacing:1.785000px;}
.ls82{letter-spacing:1.890000px;}
.ls28{letter-spacing:2.040600px;}
.ls9f{letter-spacing:2.046600px;}
.ls6{letter-spacing:2.074500px;}
.ls4e{letter-spacing:2.430000px;}
.ls31{letter-spacing:2.490000px;}
.ls1a{letter-spacing:2.496000px;}
.ls8f{letter-spacing:2.910000px;}
.ls1c{letter-spacing:2.916000px;}
.ls1b{letter-spacing:2.985600px;}
.ls49{letter-spacing:2.988000px;}
.ls8{letter-spacing:2.988060px;}
.ls56{letter-spacing:2.989200px;}
.ls13{letter-spacing:2.991600px;}
.ls24{letter-spacing:2.994000px;}
.ls3d{letter-spacing:3.140400px;}
.ls85{letter-spacing:3.251400px;}
.ls23{letter-spacing:3.257400px;}
.ls7a{letter-spacing:3.696000px;}
.ls61{letter-spacing:4.186200px;}
.ls1e{letter-spacing:4.854000px;}
.ls12{letter-spacing:4.860000px;}
.ls5{letter-spacing:5.130000px;}
.ls4{letter-spacing:5.193000px;}
.ls57{letter-spacing:5.484000px;}
.ls3a{letter-spacing:5.550000px;}
.ls29{letter-spacing:5.976000px;}
.ls43{letter-spacing:5.982000px;}
.ls20{letter-spacing:6.248400px;}
.ls18{letter-spacing:6.254400px;}
.ls63{letter-spacing:6.456000px;}
.ls16{letter-spacing:6.552000px;}
.ls5d{letter-spacing:7.174200px;}
.ls68{letter-spacing:7.175400px;}
.ls27{letter-spacing:7.842000px;}
.ls2d{letter-spacing:7.848000px;}
.ls5a{letter-spacing:8.218200px;}
.ls60{letter-spacing:8.224200px;}
.ls10{letter-spacing:8.292600px;}
.ls3c{letter-spacing:8.373000px;}
.ls17{letter-spacing:8.376000px;}
.ls5b{letter-spacing:8.586000px;}
.ls54{letter-spacing:9.016200px;}
.ls53{letter-spacing:9.022200px;}
.ls9c{letter-spacing:9.396000px;}
.ls9d{letter-spacing:9.450000px;}
.lse{letter-spacing:9.930000px;}
.lsd{letter-spacing:10.161600px;}
.ls67{letter-spacing:10.653600px;}
.ls14{letter-spacing:10.954200px;}
.ls69{letter-spacing:10.956000px;}
.ls15{letter-spacing:10.960200px;}
.ls6e{letter-spacing:10.962000px;}
.lsf{letter-spacing:11.292000px;}
.ls90{letter-spacing:11.310000px;}
.ls91{letter-spacing:11.316000px;}
.ls70{letter-spacing:11.371200px;}
.ls71{letter-spacing:11.377200px;}
.ls3{letter-spacing:11.430000px;}
.ls8a{letter-spacing:11.890200px;}
.ls6f{letter-spacing:12.589200px;}
.ls8c{letter-spacing:12.736200px;}
.ls88{letter-spacing:12.839400px;}
.ls4b{letter-spacing:13.154400px;}
.ls4a{letter-spacing:13.578060px;}
.ls5c{letter-spacing:13.696200px;}
.ls2b{letter-spacing:13.700400px;}
.ls4f{letter-spacing:13.702200px;}
.lsb{letter-spacing:13.704000px;}
.ls7d{letter-spacing:13.812000px;}
.ls7c{letter-spacing:13.928400px;}
.ls79{letter-spacing:13.934400px;}
.ls51{letter-spacing:13.950000px;}
.ls87{letter-spacing:14.093400px;}
.ls84{letter-spacing:14.216400px;}
.ls45{letter-spacing:14.238000px;}
.ls83{letter-spacing:14.578200px;}
.ls46{letter-spacing:14.892000px;}
.ls33{letter-spacing:15.060000px;}
.ls2c{letter-spacing:15.280200px;}
.ls96{letter-spacing:15.354000px;}
.ls41{letter-spacing:15.588000px;}
.ls0{letter-spacing:16.198560px;}
.ls59{letter-spacing:16.234200px;}
.ls58{letter-spacing:16.242000px;}
.ls3f{letter-spacing:16.284000px;}
.ls7{letter-spacing:16.446060px;}
.ls32{letter-spacing:16.674000px;}
.ls25{letter-spacing:16.680000px;}
.ls81{letter-spacing:16.686000px;}
.ls86{letter-spacing:16.691400px;}
.ls73{letter-spacing:16.692000px;}
.ls1d{letter-spacing:17.010000px;}
.lsa{letter-spacing:17.118000px;}
.ls9a{letter-spacing:17.400000px;}
.ls95{letter-spacing:17.676000px;}
.ls99{letter-spacing:17.724000px;}
.ls8e{letter-spacing:17.988000px;}
.ls34{letter-spacing:18.048000px;}
.ls4c{letter-spacing:18.086400px;}
.lsa4{letter-spacing:18.240000px;}
.ls75{letter-spacing:18.488400px;}
.ls1f{letter-spacing:18.525600px;}
.ls9e{letter-spacing:18.540000px;}
.ls8b{letter-spacing:18.720000px;}
.ls22{letter-spacing:18.813600px;}
.lsa3{letter-spacing:18.876000px;}
.ls2f{letter-spacing:19.494000px;}
.ls7f{letter-spacing:19.546200px;}
.ls39{letter-spacing:19.818000px;}
.ls6b{letter-spacing:19.821600px;}
.ls93{letter-spacing:19.824000px;}
.ls42{letter-spacing:19.850400px;}
.lsa1{letter-spacing:19.914000px;}
.ls77{letter-spacing:20.052000px;}
.ls19{letter-spacing:20.223600px;}
.ls11{letter-spacing:20.229600px;}
.ls40{letter-spacing:20.340000px;}
.ls2a{letter-spacing:20.770200px;}
.ls94{letter-spacing:21.054000px;}
.ls37{letter-spacing:21.102000px;}
.ls78{letter-spacing:21.162000px;}
.ls38{letter-spacing:21.378000px;}
.ls76{letter-spacing:21.474000px;}
.ls47{letter-spacing:21.646200px;}
.ls98{letter-spacing:21.750000px;}
.ls9{letter-spacing:21.942000px;}
.ls92{letter-spacing:21.960000px;}
.ls3e{letter-spacing:22.179000px;}
.ls65{letter-spacing:22.668000px;}
.ls30{letter-spacing:23.052000px;}
.lsa0{letter-spacing:23.328000px;}
.ls72{letter-spacing:23.856000px;}
.lsa2{letter-spacing:24.648000px;}
.ls9b{letter-spacing:24.816000px;}
.ls35{letter-spacing:25.020000px;}
.lsc{letter-spacing:25.214400px;}
.ls8d{letter-spacing:25.368000px;}
.ls36{letter-spacing:26.088000px;}
.ls2e{letter-spacing:29.016000px;}
.ls89{letter-spacing:29.928000px;}
.ls44{letter-spacing:31.386000px;}
.ls97{letter-spacing:32.862000px;}
.ls66{letter-spacing:32.877000px;}
.ls6d{letter-spacing:32.878200px;}
.ls6a{letter-spacing:47.746200px;}
.ls2{letter-spacing:107.026500px;}
.ls1{letter-spacing:107.032500px;}
.ls5e{letter-spacing:132.962400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb6{word-spacing:-33.301800px;}
.ws1e{word-spacing:-32.076000px;}
.ws86{word-spacing:-28.512000px;}
.ws1d{word-spacing:-23.581800px;}
.wsc9{word-spacing:-22.453200px;}
.wsa{word-spacing:-14.346180px;}
.ws0{word-spacing:-12.911616px;}
.wsd{word-spacing:-12.258000px;}
.wsd8{word-spacing:-10.944000px;}
.ws167{word-spacing:-10.215000px;}
.ws166{word-spacing:-9.000000px;}
.wsca{word-spacing:-8.580600px;}
.ws8{word-spacing:-1.817439px;}
.wsfc{word-spacing:-1.302000px;}
.ws72{word-spacing:-1.296000px;}
.ws44{word-spacing:-1.242000px;}
.wsda{word-spacing:-1.188000px;}
.ws92{word-spacing:-1.080000px;}
.ws8d{word-spacing:-1.026000px;}
.ws76{word-spacing:-0.972000px;}
.ws15f{word-spacing:-0.945000px;}
.ws9c{word-spacing:-0.918000px;}
.ws15b{word-spacing:-0.900000px;}
.ws12f{word-spacing:-0.864000px;}
.ws9d{word-spacing:-0.756000px;}
.ws134{word-spacing:-0.702000px;}
.ws126{word-spacing:-0.648000px;}
.ws12b{word-spacing:-0.540000px;}
.ws6b{word-spacing:-0.432000px;}
.wsb9{word-spacing:-0.378000px;}
.wsb5{word-spacing:-0.324000px;}
.wse{word-spacing:-0.270000px;}
.ws112{word-spacing:-0.234000px;}
.ws42{word-spacing:-0.216000px;}
.ws91{word-spacing:-0.162000px;}
.wsdf{word-spacing:-0.108000px;}
.ws179{word-spacing:-0.090000px;}
.ws3{word-spacing:-0.054000px;}
.ws23{word-spacing:-0.048000px;}
.ws155{word-spacing:-0.045000px;}
.ws3d{word-spacing:-0.037800px;}
.ws87{word-spacing:-0.033600px;}
.ws7{word-spacing:-0.031500px;}
.wscf{word-spacing:-0.027000px;}
.wsf2{word-spacing:-0.006000px;}
.ws163{word-spacing:-0.003000px;}
.ws2{word-spacing:0.000000px;}
.ws3f{word-spacing:0.054000px;}
.ws11f{word-spacing:0.102000px;}
.ws40{word-spacing:0.108000px;}
.wscc{word-spacing:0.162000px;}
.ws85{word-spacing:0.192000px;}
.wsd5{word-spacing:0.216000px;}
.ws11d{word-spacing:0.270000px;}
.ws47{word-spacing:0.324000px;}
.ws58{word-spacing:0.378000px;}
.wsd9{word-spacing:0.426000px;}
.ws59{word-spacing:0.432000px;}
.ws110{word-spacing:0.486000px;}
.ws6f{word-spacing:0.594000px;}
.ws12a{word-spacing:0.648000px;}
.ws162{word-spacing:0.675000px;}
.ws136{word-spacing:0.702000px;}
.ws16{word-spacing:0.756000px;}
.ws11e{word-spacing:0.810000px;}
.ws8c{word-spacing:0.864000px;}
.wsae{word-spacing:0.918000px;}
.ws160{word-spacing:0.945000px;}
.wsad{word-spacing:0.972000px;}
.ws84{word-spacing:1.008000px;}
.ws88{word-spacing:1.056000px;}
.ws101{word-spacing:1.080000px;}
.ws142{word-spacing:1.134000px;}
.wsf{word-spacing:1.188000px;}
.ws107{word-spacing:1.200000px;}
.ws43{word-spacing:1.242000px;}
.ws65{word-spacing:1.296000px;}
.ws4e{word-spacing:1.350000px;}
.ws97{word-spacing:1.392000px;}
.ws28{word-spacing:1.428000px;}
.ws29{word-spacing:1.458000px;}
.ws54{word-spacing:1.512000px;}
.wsa9{word-spacing:1.566000px;}
.ws5c{word-spacing:1.620000px;}
.ws159{word-spacing:1.665000px;}
.ws48{word-spacing:1.674000px;}
.ws12{word-spacing:1.728000px;}
.ws80{word-spacing:1.782000px;}
.ws10f{word-spacing:1.836000px;}
.ws14{word-spacing:1.890000px;}
.ws106{word-spacing:1.920000px;}
.wsfe{word-spacing:1.944000px;}
.ws10d{word-spacing:1.968000px;}
.ws138{word-spacing:1.998000px;}
.ws15e{word-spacing:2.025000px;}
.ws15{word-spacing:2.052000px;}
.ws15d{word-spacing:2.070000px;}
.ws74{word-spacing:2.100000px;}
.ws75{word-spacing:2.106000px;}
.ws124{word-spacing:2.214000px;}
.wsa4{word-spacing:2.268000px;}
.ws33{word-spacing:2.322000px;}
.ws119{word-spacing:2.376000px;}
.ws169{word-spacing:2.385000px;}
.ws4f{word-spacing:2.430000px;}
.ws9a{word-spacing:2.484000px;}
.ws2b{word-spacing:2.538000px;}
.ws19{word-spacing:2.592000px;}
.ws1a{word-spacing:2.646000px;}
.ws156{word-spacing:2.655000px;}
.ws165{word-spacing:2.700000px;}
.ws144{word-spacing:2.754000px;}
.ws157{word-spacing:2.790000px;}
.ws95{word-spacing:2.808000px;}
.ws4a{word-spacing:2.862000px;}
.wsf6{word-spacing:2.880000px;}
.wsb4{word-spacing:2.916000px;}
.ws20{word-spacing:2.970000px;}
.wsf5{word-spacing:2.976000px;}
.ws38{word-spacing:3.012000px;}
.ws36{word-spacing:3.018000px;}
.ws39{word-spacing:3.024000px;}
.wsd4{word-spacing:3.078000px;}
.ws55{word-spacing:3.132000px;}
.ws113{word-spacing:3.186000px;}
.ws17{word-spacing:3.240000px;}
.ws22{word-spacing:3.282000px;}
.ws21{word-spacing:3.294000px;}
.wse7{word-spacing:3.348000px;}
.ws16c{word-spacing:3.375000px;}
.wsfb{word-spacing:3.402000px;}
.ws122{word-spacing:3.510000px;}
.ws10c{word-spacing:3.552000px;}
.ws24{word-spacing:3.564000px;}
.ws7c{word-spacing:3.618000px;}
.ws172{word-spacing:3.645000px;}
.ws11b{word-spacing:3.672000px;}
.wsf4{word-spacing:3.696000px;}
.wsaa{word-spacing:3.726000px;}
.ws93{word-spacing:3.888000px;}
.ws94{word-spacing:3.942000px;}
.wsbf{word-spacing:3.996000px;}
.ws130{word-spacing:4.050000px;}
.wsd1{word-spacing:4.080000px;}
.ws73{word-spacing:4.104000px;}
.ws83{word-spacing:4.128000px;}
.ws64{word-spacing:4.158000px;}
.ws41{word-spacing:4.266000px;}
.ws118{word-spacing:4.320000px;}
.ws125{word-spacing:4.374000px;}
.ws135{word-spacing:4.428000px;}
.ws3a{word-spacing:4.482000px;}
.ws35{word-spacing:4.536000px;}
.ws11a{word-spacing:4.560000px;}
.wse4{word-spacing:4.590000px;}
.wsc1{word-spacing:4.644000px;}
.ws16b{word-spacing:4.725000px;}
.ws60{word-spacing:4.752000px;}
.ws46{word-spacing:4.806000px;}
.ws45{word-spacing:4.860000px;}
.ws16e{word-spacing:4.905000px;}
.ws102{word-spacing:4.914000px;}
.ws164{word-spacing:4.950000px;}
.ws62{word-spacing:5.022000px;}
.ws9b{word-spacing:5.076000px;}
.ws13d{word-spacing:5.130000px;}
.ws13e{word-spacing:5.184000px;}
.ws12e{word-spacing:5.238000px;}
.wsa3{word-spacing:5.292000px;}
.ws123{word-spacing:5.346000px;}
.ws5f{word-spacing:5.400000px;}
.ws15c{word-spacing:5.445000px;}
.ws57{word-spacing:5.454000px;}
.ws69{word-spacing:5.508000px;}
.wsdb{word-spacing:5.616000px;}
.wsac{word-spacing:5.670000px;}
.ws105{word-spacing:5.724000px;}
.wsd2{word-spacing:5.778000px;}
.ws18{word-spacing:5.832000px;}
.ws52{word-spacing:5.886000px;}
.ws1b{word-spacing:5.940000px;}
.wsc{word-spacing:5.994000px;}
.ws3c{word-spacing:6.048000px;}
.ws117{word-spacing:6.102000px;}
.ws161{word-spacing:6.120000px;}
.ws99{word-spacing:6.156000px;}
.wse1{word-spacing:6.210000px;}
.wse3{word-spacing:6.228000px;}
.ws104{word-spacing:6.264000px;}
.wsde{word-spacing:6.318000px;}
.ws170{word-spacing:6.345000px;}
.wsab{word-spacing:6.372000px;}
.wsf7{word-spacing:6.426000px;}
.ws5e{word-spacing:6.480000px;}
.ws137{word-spacing:6.534000px;}
.ws158{word-spacing:6.570000px;}
.ws3b{word-spacing:6.588000px;}
.wsc3{word-spacing:6.642000px;}
.wse0{word-spacing:6.687600px;}
.ws63{word-spacing:6.696000px;}
.ws131{word-spacing:6.750000px;}
.ws4b{word-spacing:6.804000px;}
.ws70{word-spacing:6.858000px;}
.ws77{word-spacing:6.912000px;}
.ws15a{word-spacing:6.930000px;}
.ws11c{word-spacing:6.966000px;}
.ws173{word-spacing:6.975000px;}
.ws7f{word-spacing:7.020000px;}
.ws128{word-spacing:7.074000px;}
.ws8f{word-spacing:7.128000px;}
.ws5a{word-spacing:7.182000px;}
.ws71{word-spacing:7.236000px;}
.wsf9{word-spacing:7.284000px;}
.wsfa{word-spacing:7.290000px;}
.ws53{word-spacing:7.344000px;}
.ws9e{word-spacing:7.398000px;}
.ws8b{word-spacing:7.452000px;}
.ws56{word-spacing:7.560000px;}
.ws79{word-spacing:7.614000px;}
.ws10a{word-spacing:7.668000px;}
.ws109{word-spacing:7.722000px;}
.ws178{word-spacing:7.740000px;}
.ws5d{word-spacing:7.776000px;}
.ws50{word-spacing:7.830000px;}
.ws13a{word-spacing:7.884000px;}
.ws171{word-spacing:7.965000px;}
.ws4d{word-spacing:7.992000px;}
.wsa6{word-spacing:8.046000px;}
.ws66{word-spacing:8.085600px;}
.ws68{word-spacing:8.100000px;}
.ws10e{word-spacing:8.208000px;}
.ws2a{word-spacing:8.262000px;}
.wsba{word-spacing:8.424000px;}
.ws31{word-spacing:8.478000px;}
.ws30{word-spacing:8.532000px;}
.ws67{word-spacing:8.694000px;}
.ws5b{word-spacing:8.748000px;}
.wsea{word-spacing:8.802000px;}
.ws34{word-spacing:8.856000px;}
.ws6e{word-spacing:8.910000px;}
.ws6d{word-spacing:8.964000px;}
.wsb8{word-spacing:9.018000px;}
.ws78{word-spacing:9.072000px;}
.ws26{word-spacing:9.096000px;}
.ws27{word-spacing:9.126000px;}
.wsa5{word-spacing:9.180000px;}
.wsef{word-spacing:9.234000px;}
.ws6a{word-spacing:9.288000px;}
.wsbe{word-spacing:9.342000px;}
.wsa8{word-spacing:9.396000px;}
.wsaf{word-spacing:9.450000px;}
.ws132{word-spacing:9.504000px;}
.ws49{word-spacing:9.558000px;}
.wsf0{word-spacing:9.666000px;}
.ws81{word-spacing:9.720000px;}
.wseb{word-spacing:9.882000px;}
.wsec{word-spacing:9.936000px;}
.ws116{word-spacing:9.990000px;}
.ws1c{word-spacing:10.044000px;}
.ws16a{word-spacing:10.167000px;}
.wse8{word-spacing:10.167600px;}
.ws51{word-spacing:10.206000px;}
.wsfd{word-spacing:10.260000px;}
.ws133{word-spacing:10.368000px;}
.ws108{word-spacing:10.422000px;}
.wsb{word-spacing:10.476000px;}
.ws127{word-spacing:10.638000px;}
.wse5{word-spacing:10.692000px;}
.wsb2{word-spacing:10.746000px;}
.ws90{word-spacing:10.854000px;}
.wsf1{word-spacing:10.896000px;}
.wsbd{word-spacing:10.908000px;}
.ws111{word-spacing:11.016000px;}
.ws177{word-spacing:11.115000px;}
.ws2f{word-spacing:11.124000px;}
.ws176{word-spacing:11.160000px;}
.ws25{word-spacing:11.178000px;}
.ws32{word-spacing:11.232000px;}
.ws174{word-spacing:11.250000px;}
.wsd6{word-spacing:11.322000px;}
.ws175{word-spacing:11.340000px;}
.ws13c{word-spacing:11.448000px;}
.ws103{word-spacing:11.664000px;}
.wsb7{word-spacing:11.718000px;}
.ws168{word-spacing:11.835000px;}
.ws61{word-spacing:11.835600px;}
.wsc6{word-spacing:11.880000px;}
.wsf8{word-spacing:12.150000px;}
.ws11{word-spacing:12.198000px;}
.ws141{word-spacing:12.204000px;}
.ws13b{word-spacing:12.258000px;}
.ws6{word-spacing:12.288000px;}
.wsb1{word-spacing:12.312000px;}
.wsc7{word-spacing:12.366000px;}
.ws149{word-spacing:12.420000px;}
.ws9{word-spacing:12.481177px;}
.ws150{word-spacing:12.582000px;}
.ws14e{word-spacing:12.600000px;}
.wsbb{word-spacing:12.798000px;}
.ws96{word-spacing:12.906000px;}
.wse9{word-spacing:12.960000px;}
.wsc4{word-spacing:13.014000px;}
.ws7d{word-spacing:13.122000px;}
.ws7e{word-spacing:13.176000px;}
.ws12d{word-spacing:13.419600px;}
.ws4c{word-spacing:13.451400px;}
.ws148{word-spacing:13.662000px;}
.ws16d{word-spacing:13.680000px;}
.ws146{word-spacing:13.716000px;}
.ws3e{word-spacing:13.770000px;}
.ws115{word-spacing:13.878000px;}
.ws14a{word-spacing:13.908000px;}
.ws14c{word-spacing:13.932000px;}
.wse6{word-spacing:13.986000px;}
.ws13{word-spacing:14.094000px;}
.wsdc{word-spacing:14.148000px;}
.wsdd{word-spacing:14.202000px;}
.ws12c{word-spacing:14.310000px;}
.ws7a{word-spacing:14.364000px;}
.ws10b{word-spacing:14.448000px;}
.wsf3{word-spacing:14.592000px;}
.ws120{word-spacing:14.628000px;}
.ws121{word-spacing:14.634000px;}
.wsbc{word-spacing:14.796000px;}
.ws114{word-spacing:14.958000px;}
.ws82{word-spacing:15.024000px;}
.ws139{word-spacing:15.066000px;}
.ws16f{word-spacing:15.210000px;}
.wsa2{word-spacing:15.282000px;}
.wsc5{word-spacing:15.390000px;}
.wscb{word-spacing:15.606000px;}
.ws6c{word-spacing:15.747600px;}
.ws140{word-spacing:15.876000px;}
.wsa7{word-spacing:16.061400px;}
.ws89{word-spacing:16.134000px;}
.ws9f{word-spacing:16.146000px;}
.ws8a{word-spacing:16.200000px;}
.wsc0{word-spacing:16.405200px;}
.wsb3{word-spacing:16.578000px;}
.wsd7{word-spacing:16.722000px;}
.ws8e{word-spacing:16.731000px;}
.ws37{word-spacing:16.951200px;}
.wsed{word-spacing:16.957200px;}
.ws147{word-spacing:17.280000px;}
.wsa0{word-spacing:17.550000px;}
.wsb0{word-spacing:17.712000px;}
.ws129{word-spacing:17.874000px;}
.ws2e{word-spacing:18.630000px;}
.wsa1{word-spacing:18.954000px;}
.ws98{word-spacing:20.088000px;}
.wsff{word-spacing:20.736000px;}
.ws100{word-spacing:20.790000px;}
.ws151{word-spacing:21.060000px;}
.ws153{word-spacing:21.114000px;}
.ws7b{word-spacing:21.183600px;}
.wsc2{word-spacing:21.337200px;}
.wsee{word-spacing:21.384000px;}
.wse2{word-spacing:21.739200px;}
.ws10{word-spacing:21.870000px;}
.ws2c{word-spacing:22.302000px;}
.wsc8{word-spacing:23.328000px;}
.ws14f{word-spacing:23.706000px;}
.ws14d{word-spacing:24.138000px;}
.ws145{word-spacing:24.732000px;}
.ws14b{word-spacing:24.948000px;}
.ws2d{word-spacing:26.352000px;}
.ws154{word-spacing:27.162000px;}
.ws13f{word-spacing:27.486000px;}
.ws143{word-spacing:29.106000px;}
.ws152{word-spacing:31.806000px;}
.ws4{word-spacing:97.572000px;}
.ws5{word-spacing:97.573500px;}
.ws1f{word-spacing:101.448000px;}
.ws1{word-spacing:197.202000px;}
.wscd{word-spacing:268.920000px;}
.wsce{word-spacing:305.424000px;}
.wsd0{word-spacing:313.578000px;}
.wsd3{word-spacing:334.368000px;}
._1{margin-left:-6.000000px;}
._b{margin-left:-2.880000px;}
._f{width:1.812000px;}
._2{width:2.992500px;}
._7{width:4.860000px;}
._11{width:6.925500px;}
._8{width:8.220000px;}
._d{width:9.504000px;}
._5{width:10.530000px;}
._3{width:11.697981px;}
._4{width:14.208180px;}
._e{width:17.928000px;}
._9{width:20.382000px;}
._a{width:21.816000px;}
._6{width:26.580000px;}
._0{width:1288.762810px;}
._10{width:1830.558000px;}
._12{width:1833.438000px;}
._c{width:1852.446000px;}
.fc3{color:rgb(83,172,228);}
.fc1{color:rgb(76,75,81);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:27.000000px;}
.fsc{font-size:30.000000px;}
.fs4{font-size:31.500000px;}
.fsb{font-size:33.600000px;}
.fs9{font-size:36.000000px;}
.fs8{font-size:37.200000px;}
.fs7{font-size:37.800000px;}
.fsd{font-size:45.000000px;}
.fs6{font-size:47.820600px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:71.731200px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:61.180500px;}
.y35{bottom:80.710500px;}
.y196{bottom:149.514000px;}
.y33{bottom:150.273000px;}
.y34{bottom:150.490500px;}
.y7a{bottom:151.266000px;}
.y189{bottom:152.466000px;}
.y195{bottom:153.363000px;}
.y32{bottom:154.122000px;}
.y28{bottom:154.675500px;}
.ybe{bottom:156.282000px;}
.y15e{bottom:156.780000px;}
.y19e{bottom:157.644000px;}
.y205{bottom:160.240500px;}
.y1c8{bottom:160.987500px;}
.y19d{bottom:161.494500px;}
.y231{bottom:162.963000px;}
.y79{bottom:163.167000px;}
.y188{bottom:164.367000px;}
.y194{bottom:165.264000px;}
.y261{bottom:166.210500px;}
.y230{bottom:166.812000px;}
.y78{bottom:167.016000px;}
.y187{bottom:168.216000px;}
.y193{bottom:169.113000px;}
.ybd{bottom:169.782000px;}
.y31{bottom:169.872000px;}
.y27{bottom:170.425500px;}
.y151{bottom:172.225500px;}
.y204{bottom:175.990500px;}
.y19c{bottom:177.244500px;}
.y1c7{bottom:177.484500px;}
.y260{bottom:181.960500px;}
.y22f{bottom:182.562000px;}
.y77{bottom:182.766000px;}
.y186{bottom:183.966000px;}
.y192{bottom:184.863000px;}
.y30{bottom:185.622000px;}
.y26{bottom:186.175500px;}
.y203{bottom:191.740500px;}
.y19b{bottom:192.994500px;}
.y1c6{bottom:193.981500px;}
.y185{bottom:195.867000px;}
.y22e{bottom:198.312000px;}
.y76{bottom:198.516000px;}
.y184{bottom:199.716000px;}
.y191{bottom:200.613000px;}
.y25{bottom:201.925500px;}
.y25f{bottom:203.688000px;}
.y113{bottom:205.240500px;}
.y1c5{bottom:206.629500px;}
.y202{bottom:207.490500px;}
.y19a{bottom:208.744500px;}
.ya0{bottom:210.417000px;}
.y1c4{bottom:210.478500px;}
.y2d{bottom:213.006000px;}
.y22d{bottom:214.062000px;}
.y75{bottom:214.266000px;}
.y183{bottom:215.466000px;}
.y190{bottom:216.363000px;}
.y24{bottom:217.675500px;}
.y2e{bottom:218.574000px;}
.y2f{bottom:218.790000px;}
.yef{bottom:220.692000px;}
.y2c{bottom:222.423000px;}
.y201{bottom:223.240500px;}
.y2b{bottom:225.210000px;}
.y74{bottom:226.167000px;}
.y1c3{bottom:226.228500px;}
.y22c{bottom:229.812000px;}
.y73{bottom:230.016000px;}
.y182{bottom:231.216000px;}
.y18f{bottom:232.113000px;}
.y23{bottom:233.425500px;}
.y200{bottom:238.990500px;}
.y25e{bottom:239.608500px;}
.y1c2{bottom:241.978500px;}
.y22b{bottom:245.562000px;}
.y72{bottom:245.766000px;}
.y181{bottom:246.966000px;}
.y18e{bottom:247.863000px;}
.y22{bottom:249.175500px;}
.y112{bottom:254.386500px;}
.y1ff{bottom:254.740500px;}
.y25d{bottom:255.358500px;}
.y1c1{bottom:257.728500px;}
.y2a{bottom:258.142500px;}
.yee{bottom:259.885500px;}
.y22a{bottom:261.312000px;}
.y71{bottom:261.516000px;}
.y180{bottom:262.716000px;}
.y21{bottom:264.925500px;}
.y199{bottom:268.738500px;}
.y111{bottom:270.136500px;}
.y1c0{bottom:270.376500px;}
.y1fe{bottom:270.490500px;}
.y25c{bottom:271.108500px;}
.y29{bottom:273.892500px;}
.y1bf{bottom:274.227000px;}
.yed{bottom:275.635500px;}
.y229{bottom:277.062000px;}
.y70{bottom:277.266000px;}
.y17f{bottom:278.466000px;}
.y198{bottom:282.238500px;}
.y1fd{bottom:282.391500px;}
.y110{bottom:285.886500px;}
.y1fc{bottom:286.240500px;}
.y25b{bottom:286.858500px;}
.y20{bottom:289.642500px;}
.y1be{bottom:289.977000px;}
.yec{bottom:291.385500px;}
.y228{bottom:292.812000px;}
.y6f{bottom:293.016000px;}
.y17e{bottom:294.216000px;}
.y197{bottom:295.738500px;}
.y10f{bottom:301.636500px;}
.y1fb{bottom:301.990500px;}
.y18d{bottom:302.578500px;}
.y25a{bottom:302.608500px;}
.y1bd{bottom:302.623500px;}
.y227{bottom:304.713000px;}
.y6e{bottom:304.917000px;}
.y1bc{bottom:306.474000px;}
.yeb{bottom:307.135500px;}
.y226{bottom:308.562000px;}
.y6d{bottom:308.766000px;}
.y17d{bottom:309.966000px;}
.y18c{bottom:316.078500px;}
.y10e{bottom:317.386500px;}
.y1fa{bottom:317.740500px;}
.y259{bottom:318.358500px;}
.yea{bottom:322.885500px;}
.y1bb{bottom:322.971000px;}
.y225{bottom:324.312000px;}
.y6c{bottom:324.516000px;}
.y17c{bottom:325.716000px;}
.y18b{bottom:329.578500px;}
.y10d{bottom:333.136500px;}
.y1f9{bottom:333.490500px;}
.y258{bottom:334.108500px;}
.ye9{bottom:338.635500px;}
.y1ba{bottom:338.721000px;}
.y224{bottom:340.062000px;}
.y6b{bottom:340.266000px;}
.y17b{bottom:341.466000px;}
.y18a{bottom:343.078500px;}
.y1f8{bottom:349.240500px;}
.y257{bottom:349.858500px;}
.y10c{bottom:350.730000px;}
.ye8{bottom:354.385500px;}
.y1b9{bottom:354.471000px;}
.y223{bottom:355.812000px;}
.y6a{bottom:356.016000px;}
.y17a{bottom:357.216000px;}
.y1f{bottom:360.319500px;}
.y1f7{bottom:364.990500px;}
.y256{bottom:365.608500px;}
.y10b{bottom:366.480000px;}
.y69{bottom:367.917000px;}
.ye7{bottom:370.135500px;}
.y1b8{bottom:370.221000px;}
.y222{bottom:371.562000px;}
.y68{bottom:371.766000px;}
.y179{bottom:372.966000px;}
.y1e{bottom:376.069500px;}
.y1f6{bottom:380.740500px;}
.y255{bottom:381.358500px;}
.y10a{bottom:382.230000px;}
.ye6{bottom:385.885500px;}
.y1b7{bottom:386.718000px;}
.y221{bottom:387.312000px;}
.y67{bottom:387.516000px;}
.y178{bottom:388.716000px;}
.y1f5{bottom:396.490500px;}
.y254{bottom:397.108500px;}
.y109{bottom:397.980000px;}
.y1d{bottom:398.404500px;}
.ye5{bottom:401.635500px;}
.y220{bottom:403.062000px;}
.y1b6{bottom:403.215000px;}
.y66{bottom:403.266000px;}
.y177{bottom:404.466000px;}
.y1f4{bottom:412.240500px;}
.y253{bottom:412.858500px;}
.y1c{bottom:414.154500px;}
.y108{bottom:415.575000px;}
.ye4{bottom:417.385500px;}
.y21f{bottom:418.812000px;}
.y1b5{bottom:418.965000px;}
.y65{bottom:419.016000px;}
.y176{bottom:420.216000px;}
.y1f3{bottom:427.990500px;}
.y252{bottom:428.608500px;}
.y1b{bottom:429.904500px;}
.y107{bottom:431.325000px;}
.ye3{bottom:433.135500px;}
.y21e{bottom:434.562000px;}
.y1b4{bottom:434.715000px;}
.y64{bottom:434.766000px;}
.y175{bottom:435.966000px;}
.y15d{bottom:442.420500px;}
.y1f2{bottom:443.740500px;}
.y251{bottom:444.358500px;}
.y1a{bottom:445.654500px;}
.y9f{bottom:446.667000px;}
.y106{bottom:447.075000px;}
.ye2{bottom:448.885500px;}
.y21d{bottom:450.312000px;}
.y1b3{bottom:450.465000px;}
.y63{bottom:450.516000px;}
.y174{bottom:451.716000px;}
.y1f1{bottom:459.490500px;}
.y250{bottom:460.108500px;}
.y19{bottom:461.404500px;}
.y62{bottom:462.417000px;}
.y105{bottom:462.825000px;}
.ye1{bottom:464.635500px;}
.y21c{bottom:466.062000px;}
.y1b2{bottom:466.215000px;}
.y61{bottom:466.266000px;}
.y173{bottom:467.466000px;}
.y1f0{bottom:475.240500px;}
.y24f{bottom:475.858500px;}
.y18{bottom:477.154500px;}
.y104{bottom:478.575000px;}
.y60{bottom:480.004500px;}
.ye0{bottom:480.385500px;}
.y21b{bottom:481.812000px;}
.y1b1{bottom:481.965000px;}
.y9e{bottom:482.016000px;}
.y172{bottom:483.216000px;}
.y5f{bottom:483.853500px;}
.y1ef{bottom:490.990500px;}
.y24e{bottom:491.608500px;}
.y9d{bottom:493.917000px;}
.y103{bottom:494.325000px;}
.ydf{bottom:496.135500px;}
.y21a{bottom:497.562000px;}
.y1b0{bottom:497.715000px;}
.y9c{bottom:497.766000px;}
.y171{bottom:498.966000px;}
.y17{bottom:499.462500px;}
.y5e{bottom:499.603500px;}
.y1ee{bottom:506.740500px;}
.y24d{bottom:507.358500px;}
.y102{bottom:510.075000px;}
.y5d{bottom:511.504500px;}
.yde{bottom:511.885500px;}
.y219{bottom:513.312000px;}
.y1af{bottom:513.465000px;}
.y9b{bottom:513.516000px;}
.y170{bottom:514.716000px;}
.y2ac{bottom:514.855500px;}
.y5c{bottom:515.353500px;}
.y286{bottom:516.346500px;}
.y1ed{bottom:522.490500px;}
.y218{bottom:525.213000px;}
.y101{bottom:525.825000px;}
.ydd{bottom:527.635500px;}
.y2ab{bottom:528.306000px;}
.y217{bottom:529.062000px;}
.y1ae{bottom:529.215000px;}
.y9a{bottom:529.266000px;}
.y16f{bottom:530.466000px;}
.y5b{bottom:531.103500px;}
.y24c{bottom:532.075500px;}
.y1ec{bottom:534.391500px;}
.y285{bottom:535.048500px;}
.y1eb{bottom:538.240500px;}
.y1ad{bottom:541.116000px;}
.y100{bottom:541.575000px;}
.y2aa{bottom:541.755000px;}
.ydc{bottom:543.385500px;}
.y216{bottom:544.812000px;}
.y1ac{bottom:544.965000px;}
.y99{bottom:545.016000px;}
.y284{bottom:545.095500px;}
.y16e{bottom:546.216000px;}
.y5a{bottom:546.853500px;}
.y16{bottom:547.416000px;}
.y1ea{bottom:553.990500px;}
.y215{bottom:556.713000px;}
.yff{bottom:557.325000px;}
.y15{bottom:557.890500px;}
.ydb{bottom:559.135500px;}
.y2a9{bottom:560.278500px;}
.y214{bottom:560.562000px;}
.y1ab{bottom:560.715000px;}
.y98{bottom:560.766000px;}
.y16d{bottom:561.966000px;}
.y59{bottom:562.603500px;}
.y283{bottom:563.799000px;}
.y1e9{bottom:569.740500px;}
.y2a8{bottom:570.148500px;}
.yfe{bottom:573.075000px;}
.y58{bottom:574.504500px;}
.yda{bottom:574.885500px;}
.y213{bottom:576.312000px;}
.y1aa{bottom:576.465000px;}
.y97{bottom:576.516000px;}
.y14{bottom:577.303500px;}
.y16c{bottom:577.716000px;}
.y57{bottom:578.353500px;}
.y282{bottom:578.920500px;}
.y24b{bottom:581.190000px;}
.y2a7{bottom:583.597500px;}
.y1e8{bottom:585.490500px;}
.y1a9{bottom:588.366000px;}
.yfd{bottom:588.825000px;}
.y281{bottom:588.967500px;}
.yd9{bottom:590.635500px;}
.y212{bottom:592.062000px;}
.y1a8{bottom:592.215000px;}
.y13{bottom:592.248000px;}
.y96{bottom:592.266000px;}
.y16b{bottom:593.466000px;}
.y56{bottom:594.103500px;}
.y1e7{bottom:601.240500px;}
.y2a6{bottom:602.122500px;}
.y280{bottom:602.596500px;}
.yfc{bottom:604.575000px;}
.y24a{bottom:605.905500px;}
.yd8{bottom:606.385500px;}
.y211{bottom:607.812000px;}
.y1a7{bottom:607.965000px;}
.y95{bottom:608.016000px;}
.y16a{bottom:609.216000px;}
.y55{bottom:609.853500px;}
.y2a5{bottom:611.991000px;}
.y1e6{bottom:616.990500px;}
.y12{bottom:617.848500px;}
.yfb{bottom:620.325000px;}
.y27f{bottom:621.298500px;}
.yd7{bottom:622.135500px;}
.y210{bottom:623.562000px;}
.y1a6{bottom:623.715000px;}
.y94{bottom:623.766000px;}
.y169{bottom:624.966000px;}
.y2a4{bottom:625.441500px;}
.y54{bottom:625.603500px;}
.y249{bottom:629.872500px;}
.ybc{bottom:631.215000px;}
.y27e{bottom:631.345500px;}
.y1e5{bottom:632.740500px;}
.yfa{bottom:636.075000px;}
.ya5{bottom:636.445500px;}
.y11{bottom:637.335000px;}
.yd6{bottom:637.885500px;}
.y2a3{bottom:638.890500px;}
.y20f{bottom:639.312000px;}
.y1a5{bottom:639.465000px;}
.y93{bottom:639.516000px;}
.y168{bottom:640.716000px;}
.y53{bottom:641.353500px;}
.y37{bottom:644.010000px;}
.y27d{bottom:644.973000px;}
.ybb{bottom:646.965000px;}
.y1e4{bottom:648.490500px;}
.y10{bottom:652.335000px;}
.ya4{bottom:652.389000px;}
.yd5{bottom:653.635500px;}
.y20e{bottom:655.062000px;}
.y1a4{bottom:655.215000px;}
.y92{bottom:655.266000px;}
.y167{bottom:656.466000px;}
.yf9{bottom:657.055500px;}
.y52{bottom:657.103500px;}
.y2a2{bottom:657.415500px;}
.yba{bottom:662.715000px;}
.y27c{bottom:663.675000px;}
.y1e3{bottom:664.240500px;}
.ya3{bottom:665.889000px;}
.y2a1{bottom:667.284000px;}
.yf{bottom:667.335000px;}
.yd4{bottom:669.385500px;}
.y20d{bottom:670.812000px;}
.y51{bottom:670.842000px;}
.y1a3{bottom:670.965000px;}
.y91{bottom:671.016000px;}
.y166{bottom:672.216000px;}
.y12c{bottom:672.534000px;}
.y27b{bottom:673.723500px;}
.y150{bottom:674.292000px;}
.y50{bottom:674.691000px;}
.yb9{bottom:678.465000px;}
.ya2{bottom:679.389000px;}
.y1e2{bottom:679.990500px;}
.y248{bottom:680.737500px;}
.ye{bottom:682.335000px;}
.yd3{bottom:685.135500px;}
.y2a0{bottom:685.809000px;}
.y20c{bottom:686.562000px;}
.y1a2{bottom:686.715000px;}
.y90{bottom:686.766000px;}
.y27a{bottom:687.351000px;}
.y165{bottom:687.966000px;}
.y12b{bottom:688.284000px;}
.y14f{bottom:690.042000px;}
.y1e1{bottom:691.891500px;}
.ya1{bottom:692.889000px;}
.y1e0{bottom:695.740500px;}
.y29f{bottom:696.288000px;}
.y247{bottom:696.487500px;}
.y4f{bottom:697.165500px;}
.yd2{bottom:700.885500px;}
.yb8{bottom:700.941000px;}
.yd{bottom:701.518500px;}
.y20b{bottom:702.312000px;}
.yf8{bottom:702.465000px;}
.y8f{bottom:702.516000px;}
.y164{bottom:703.716000px;}
.y14e{bottom:705.792000px;}
.y279{bottom:706.053000px;}
.y29e{bottom:709.737000px;}
.y1df{bottom:711.490500px;}
.y246{bottom:712.237500px;}
.y278{bottom:716.100000px;}
.yd1{bottom:716.635500px;}
.y12a{bottom:716.865000px;}
.y20a{bottom:718.062000px;}
.yf7{bottom:718.215000px;}
.y8e{bottom:718.266000px;}
.y129{bottom:720.714000px;}
.y163{bottom:721.311000px;}
.y14d{bottom:721.542000px;}
.y127{bottom:726.282000px;}
.y1de{bottom:727.240500px;}
.y245{bottom:727.987500px;}
.y29d{bottom:728.262000px;}
.y277{bottom:729.729000px;}
.y126{bottom:730.131000px;}
.yb7{bottom:732.120000px;}
.yd0{bottom:732.385500px;}
.yc{bottom:733.236000px;}
.y209{bottom:733.812000px;}
.yf6{bottom:733.965000px;}
.y8d{bottom:734.016000px;}
.y128{bottom:736.680000px;}
.y29c{bottom:738.130500px;}
.y1dd{bottom:742.990500px;}
.y276{bottom:743.356500px;}
.y244{bottom:743.737500px;}
.y14c{bottom:744.016500px;}
.y1a1{bottom:745.866000px;}
.y4e{bottom:745.980000px;}
.yb6{bottom:747.870000px;}
.ycf{bottom:748.135500px;}
.y15c{bottom:748.230000px;}
.yf5{bottom:749.715000px;}
.y8c{bottom:749.766000px;}
.y29b{bottom:751.581000px;}
.yb{bottom:753.078000px;}
.y208{bottom:756.286500px;}
.y1dc{bottom:758.740500px;}
.y243{bottom:759.487500px;}
.y4d{bottom:761.730000px;}
.y275{bottom:762.058500px;}
.yb5{bottom:763.620000px;}
.yce{bottom:763.885500px;}
.y15b{bottom:763.980000px;}
.y29a{bottom:765.030000px;}
.yf4{bottom:765.465000px;}
.y8b{bottom:765.516000px;}
.y162{bottom:770.217000px;}
.y1db{bottom:770.641500px;}
.y125{bottom:771.382500px;}
.y274{bottom:772.105500px;}
.y1da{bottom:774.490500px;}
.y242{bottom:775.237500px;}
.y4c{bottom:777.480000px;}
.yb4{bottom:779.370000px;}
.y15a{bottom:779.730000px;}
.y14b{bottom:779.814000px;}
.yf3{bottom:781.215000px;}
.y8a{bottom:781.266000px;}
.y124{bottom:783.283500px;}
.y299{bottom:783.555000px;}
.y161{bottom:783.717000px;}
.ycd{bottom:786.061500px;}
.y123{bottom:787.132500px;}
.ya{bottom:788.683500px;}
.y1d9{bottom:790.240500px;}
.y273{bottom:790.807500px;}
.y241{bottom:790.987500px;}
.y298{bottom:793.423500px;}
.y4b{bottom:795.075000px;}
.yb3{bottom:795.120000px;}
.y159{bottom:795.480000px;}
.y14a{bottom:795.564000px;}
.yf2{bottom:796.965000px;}
.y89{bottom:797.016000px;}
.y160{bottom:797.217000px;}
.y272{bottom:800.856000px;}
.y122{bottom:802.882500px;}
.y1d8{bottom:805.990500px;}
.ycc{bottom:806.292000px;}
.y9{bottom:806.617500px;}
.y240{bottom:806.737500px;}
.y15f{bottom:810.717000px;}
.y4a{bottom:810.825000px;}
.yb2{bottom:810.870000px;}
.y158{bottom:811.230000px;}
.y297{bottom:811.948500px;}
.yf1{bottom:812.715000px;}
.y88{bottom:812.766000px;}
.y271{bottom:814.483500px;}
.y121{bottom:818.632500px;}
.y147{bottom:820.045500px;}
.y1d7{bottom:821.740500px;}
.y296{bottom:821.817000px;}
.y23f{bottom:822.487500px;}
.y157{bottom:823.131000px;}
.y8{bottom:823.579500px;}
.y146{bottom:825.147000px;}
.y149{bottom:825.232500px;}
.y148{bottom:825.520500px;}
.y49{bottom:826.575000px;}
.yb1{bottom:826.620000px;}
.y156{bottom:826.980000px;}
.y270{bottom:828.111000px;}
.yf0{bottom:828.465000px;}
.y87{bottom:828.516000px;}
.y145{bottom:829.462500px;}
.y120{bottom:834.382500px;}
.y1d6{bottom:837.490500px;}
.y23e{bottom:838.237500px;}
.ycb{bottom:838.984500px;}
.y295{bottom:840.342000px;}
.y1a0{bottom:840.366000px;}
.y48{bottom:842.325000px;}
.y207{bottom:842.370000px;}
.y155{bottom:842.730000px;}
.yb0{bottom:844.215000px;}
.y86{bottom:844.266000px;}
.y26f{bottom:846.813000px;}
.y1d5{bottom:849.390000px;}
.y11f{bottom:850.132500px;}
.y294{bottom:850.210500px;}
.y1d4{bottom:853.240500px;}
.y23d{bottom:853.987500px;}
.yca{bottom:854.734500px;}
.y26e{bottom:856.861500px;}
.y47{bottom:858.075000px;}
.y154{bottom:858.480000px;}
.yaf{bottom:859.965000px;}
.y85{bottom:860.016000px;}
.y293{bottom:863.661000px;}
.y11e{bottom:865.882500px;}
.y144{bottom:866.992500px;}
.y1d3{bottom:868.990500px;}
.y23c{bottom:869.737500px;}
.y46{bottom:869.974500px;}
.yc9{bottom:870.484500px;}
.y26d{bottom:870.489000px;}
.y206{bottom:871.866000px;}
.y45{bottom:873.825000px;}
.yae{bottom:875.715000px;}
.y84{bottom:875.766000px;}
.y7{bottom:879.507000px;}
.y153{bottom:880.954500px;}
.y11d{bottom:881.632500px;}
.y292{bottom:882.184500px;}
.y143{bottom:882.742500px;}
.y26c{bottom:884.116500px;}
.y1d2{bottom:884.740500px;}
.y23b{bottom:885.487500px;}
.yc8{bottom:886.234500px;}
.y44{bottom:889.575000px;}
.yad{bottom:891.465000px;}
.y83{bottom:891.516000px;}
.y291{bottom:892.054500px;}
.y11c{bottom:897.382500px;}
.y142{bottom:898.492500px;}
.y1d1{bottom:900.490500px;}
.y23a{bottom:901.237500px;}
.yc7{bottom:901.984500px;}
.y26b{bottom:902.818500px;}
.y43{bottom:905.325000px;}
.yac{bottom:907.215000px;}
.y82{bottom:907.266000px;}
.y11b{bottom:909.283500px;}
.y290{bottom:910.578000px;}
.y11a{bottom:911.377500px;}
.y26a{bottom:912.865500px;}
.y119{bottom:913.132500px;}
.y6{bottom:915.507000px;}
.y1d0{bottom:916.240500px;}
.y239{bottom:916.987500px;}
.yc6{bottom:917.734500px;}
.y19f{bottom:919.116000px;}
.y81{bottom:919.167000px;}
.y28f{bottom:920.448000px;}
.y42{bottom:921.075000px;}
.yab{bottom:922.965000px;}
.y80{bottom:923.016000px;}
.y141{bottom:923.370000px;}
.y140{bottom:923.659500px;}
.y13f{bottom:928.351500px;}
.y13c{bottom:928.464000px;}
.y118{bottom:928.882500px;}
.y13b{bottom:929.149500px;}
.y269{bottom:931.569000px;}
.y1cf{bottom:931.990500px;}
.y238{bottom:932.737500px;}
.yc5{bottom:933.484500px;}
.y136{bottom:934.251000px;}
.y41{bottom:936.825000px;}
.y135{bottom:938.566500px;}
.yaa{bottom:938.715000px;}
.y28e{bottom:938.971500px;}
.y13a{bottom:939.888000px;}
.y139{bottom:940.105500px;}
.y7f{bottom:941.382000px;}
.y268{bottom:941.616000px;}
.y117{bottom:944.632500px;}
.y13e{bottom:945.115500px;}
.y13d{bottom:945.403500px;}
.y7e{bottom:945.490500px;}
.y138{bottom:947.158500px;}
.y1ce{bottom:947.740500px;}
.y237{bottom:948.487500px;}
.y28d{bottom:948.841500px;}
.yc4{bottom:949.234500px;}
.y5{bottom:951.507000px;}
.y40{bottom:952.575000px;}
.y137{bottom:954.213000px;}
.ya9{bottom:954.465000px;}
.y267{bottom:960.318000px;}
.y116{bottom:960.382500px;}
.y1cd{bottom:963.490500px;}
.y236{bottom:964.237500px;}
.yc3{bottom:964.984500px;}
.y28c{bottom:967.365000px;}
.y3f{bottom:968.325000px;}
.ya8{bottom:970.215000px;}
.y266{bottom:970.366500px;}
.y115{bottom:977.943000px;}
.y1cc{bottom:979.240500px;}
.y235{bottom:979.987500px;}
.yc2{bottom:980.734500px;}
.y28b{bottom:982.309500px;}
.y134{bottom:983.257500px;}
.y265{bottom:983.994000px;}
.y3e{bottom:984.075000px;}
.ya7{bottom:985.965000px;}
.y4{bottom:987.507000px;}
.y28a{bottom:992.178000px;}
.y1cb{bottom:994.990500px;}
.y114{bottom:995.521500px;}
.y234{bottom:995.737500px;}
.yc1{bottom:996.484500px;}
.y264{bottom:997.621500px;}
.y152{bottom:997.866000px;}
.y133{bottom:999.007500px;}
.y3d{bottom:999.825000px;}
.y7d{bottom:1001.715000px;}
.y289{bottom:1010.703000px;}
.y1ca{bottom:1010.740500px;}
.y233{bottom:1011.487500px;}
.yc0{bottom:1012.234500px;}
.ya6{bottom:1013.616000px;}
.y3c{bottom:1015.575000px;}
.y263{bottom:1016.323500px;}
.y7c{bottom:1017.465000px;}
.y3{bottom:1023.507000px;}
.y132{bottom:1024.321500px;}
.y288{bottom:1025.646000px;}
.y131{bottom:1026.414000px;}
.y1c9{bottom:1026.490500px;}
.y232{bottom:1027.237500px;}
.ybf{bottom:1027.984500px;}
.y3b{bottom:1031.325000px;}
.y262{bottom:1031.445000px;}
.y7b{bottom:1033.215000px;}
.y287{bottom:1035.516000px;}
.y12e{bottom:1037.254500px;}
.y12d{bottom:1041.105000px;}
.y130{bottom:1041.618000px;}
.y39{bottom:1045.116000px;}
.y3a{bottom:1045.333500px;}
.y12f{bottom:1047.654000px;}
.y38{bottom:1048.965000px;}
.y2{bottom:1108.894500px;}
.y1{bottom:1129.815000px;}
.h1d{height:25.875000px;}
.h31{height:33.507000px;}
.h6{height:33.894000px;}
.h3e{height:34.800000px;}
.h36{height:37.384200px;}
.h8{height:37.591896px;}
.h27{height:37.875600px;}
.h2a{height:38.536200px;}
.h28{height:41.040000px;}
.h3f{height:44.505000px;}
.h41{height:45.090000px;}
.h13{height:46.036200px;}
.h15{height:46.042200px;}
.h40{height:46.080000px;}
.h22{height:46.906200px;}
.h20{height:46.912200px;}
.h25{height:47.944200px;}
.h7{height:49.632000px;}
.h9{height:49.876886px;}
.h1c{height:52.128000px;}
.h1{height:52.435507px;}
.h1b{height:53.232000px;}
.hb{height:53.406000px;}
.hd{height:54.108000px;}
.h1e{height:54.754800px;}
.he{height:54.760800px;}
.h18{height:55.056000px;}
.h3d{height:55.296000px;}
.h2b{height:61.128000px;}
.h1f{height:61.330200px;}
.ha{height:62.406144px;}
.h5{height:62.640000px;}
.h4{height:63.072000px;}
.hf{height:64.554000px;}
.h12{height:65.772000px;}
.h17{height:67.014000px;}
.h1a{height:67.932000px;}
.h23{height:68.802000px;}
.h3c{height:68.808000px;}
.h19{height:69.504000px;}
.h24{height:76.726200px;}
.h26{height:79.074000px;}
.hc{height:82.512000px;}
.h33{height:83.622000px;}
.h2f{height:89.538000px;}
.h10{height:89.604000px;}
.h39{height:93.816000px;}
.h16{height:97.044000px;}
.h14{height:97.908000px;}
.h21{height:97.914000px;}
.h3b{height:99.432000px;}
.h37{height:102.432000px;}
.h2{height:108.018000px;}
.h11{height:120.180000px;}
.h30{height:120.540000px;}
.h2d{height:135.576000px;}
.h3{height:139.200000px;}
.h2c{height:139.500000px;}
.h2e{height:139.506000px;}
.h29{height:144.678000px;}
.h34{height:160.668000px;}
.h35{height:169.038000px;}
.h3a{height:182.418000px;}
.h38{height:183.786000px;}
.h32{height:211.062000px;}
.h0{height:1188.000000px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x1b{left:43.741500px;}
.x1{left:52.707000px;}
.x2{left:66.157500px;}
.x3{left:72.135000px;}
.x4{left:75.123000px;}
.x40{left:80.020500px;}
.x41{left:88.495500px;}
.x5{left:93.055500px;}
.x76{left:112.602000px;}
.x42{left:114.049500px;}
.x78{left:117.603000px;}
.x77{left:121.077000px;}
.x43{left:123.705000px;}
.x79{left:126.076500px;}
.x62{left:129.664500px;}
.x63{left:138.139500px;}
.x6f{left:144.363000px;}
.x48{left:152.272500px;}
.x69{left:154.285500px;}
.x7a{left:155.488500px;}
.x49{left:159.495000px;}
.x6a{left:162.760500px;}
.x7b{left:163.962000px;}
.x4a{left:167.970000px;}
.x26{left:174.789000px;}
.x82{left:175.932000px;}
.x88{left:179.035500px;}
.x27{left:183.264000px;}
.x2e{left:184.723500px;}
.x89{left:187.510500px;}
.x2f{left:193.198500px;}
.x70{left:204.001500px;}
.x71{left:212.476500px;}
.x22{left:220.069500px;}
.x7c{left:225.507000px;}
.x23{left:228.544500px;}
.x21{left:232.246500px;}
.x7d{left:233.982000px;}
.x1d{left:239.769000px;}
.x8a{left:243.354000px;}
.x1e{left:245.977500px;}
.x2c{left:251.505000px;}
.x44{left:253.024500px;}
.x74{left:254.451000px;}
.x2d{left:259.978500px;}
.x45{left:261.499500px;}
.x75{left:262.926000px;}
.x32{left:266.616000px;}
.x33{left:275.091000px;}
.x66{left:277.521000px;}
.x1f{left:287.571000px;}
.x4b{left:289.677000px;}
.x20{left:292.599000px;}
.x28{left:296.362500px;}
.x4c{left:298.152000px;}
.x72{left:299.637000px;}
.x29{left:304.836000px;}
.x73{left:308.110500px;}
.x24{left:329.209500px;}
.x86{left:330.522000px;}
.x25{left:337.684500px;}
.x87{left:338.995500px;}
.x46{left:341.908500px;}
.x47{left:350.383500px;}
.x85{left:363.970500px;}
.x30{left:373.393500px;}
.x31{left:381.868500px;}
.x83{left:389.253000px;}
.x2a{left:391.990500px;}
.x84{left:397.726500px;}
.x2b{left:400.465500px;}
.x67{left:414.030000px;}
.x68{left:422.503500px;}
.x6{left:459.157500px;}
.x6b{left:465.135000px;}
.x6d{left:466.380000px;}
.x6e{left:474.853500px;}
.x35{left:486.055500px;}
.x3a{left:494.334000px;}
.x9{left:506.236500px;}
.x8{left:508.323000px;}
.x16{left:523.551000px;}
.xa{left:532.017000px;}
.x64{left:533.737500px;}
.x65{left:542.212500px;}
.x4d{left:554.397000px;}
.x55{left:556.432500px;}
.x17{left:560.971500px;}
.x56{left:567.915000px;}
.x4e{left:569.269500px;}
.xb{left:571.986000px;}
.x57{left:574.953000px;}
.x3b{left:579.511500px;}
.xc{left:580.855500px;}
.x34{left:589.054500px;}
.x18{left:590.565000px;}
.xd{left:594.787500px;}
.x19{left:596.773500px;}
.x58{left:598.744500px;}
.x7{left:600.648000px;}
.x36{left:603.688500px;}
.x37{left:612.163500px;}
.x51{left:616.072500px;}
.x59{left:618.648000px;}
.x60{left:621.888000px;}
.x1a{left:637.401000px;}
.x52{left:639.214500px;}
.xe{left:642.726000px;}
.x53{left:647.688000px;}
.xf{left:648.934500px;}
.x7f{left:652.200000px;}
.x4f{left:656.370000px;}
.x5c{left:659.929500px;}
.x50{left:664.845000px;}
.x5d{left:666.952500px;}
.x7e{left:668.143500px;}
.x5e{left:674.803500px;}
.x61{left:675.862500px;}
.x5a{left:677.095500px;}
.x5b{left:684.946500px;}
.x54{left:686.295000px;}
.x10{left:688.348500px;}
.x11{left:695.530500px;}
.x12{left:709.462500px;}
.x13{left:714.490500px;}
.x5f{left:717.333000px;}
.x14{left:756.219000px;}
.x15{left:761.247000px;}
.x3c{left:764.107500px;}
.x3d{left:772.581000px;}
.x6c{left:781.234500px;}
.x38{left:782.905500px;}
.x39{left:791.380500px;}
.x80{left:803.952000px;}
.x3e{left:807.030000px;}
.x81{left:812.425500px;}
.x3f{left:815.503500px;}
.x1c{left:869.250000px;}
@media print{
.v1c{vertical-align:-53.034667pt;}
.v1b{vertical-align:-47.813333pt;}
.v26{vertical-align:-41.904000pt;}
.v17{vertical-align:-21.285333pt;}
.v28{vertical-align:-18.042667pt;}
.v4{vertical-align:-15.952000pt;}
.v15{vertical-align:-13.952000pt;}
.v10{vertical-align:-11.888000pt;}
.v2{vertical-align:-9.008000pt;}
.v8{vertical-align:-7.568000pt;}
.v9{vertical-align:-6.026667pt;}
.v1d{vertical-align:-4.800000pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:1.466667pt;}
.v18{vertical-align:6.240000pt;}
.ve{vertical-align:7.690667pt;}
.v6{vertical-align:9.909333pt;}
.vd{vertical-align:10.992000pt;}
.v11{vertical-align:12.096000pt;}
.vf{vertical-align:13.685333pt;}
.v14{vertical-align:14.608000pt;}
.v5{vertical-align:15.973333pt;}
.v22{vertical-align:17.706667pt;}
.v3{vertical-align:21.285333pt;}
.v1f{vertical-align:26.858667pt;}
.vb{vertical-align:27.856000pt;}
.v7{vertical-align:31.552000pt;}
.va{vertical-align:33.482667pt;}
.v13{vertical-align:34.970667pt;}
.v24{vertical-align:35.920000pt;}
.v19{vertical-align:36.970667pt;}
.v1a{vertical-align:37.994667pt;}
.v1{vertical-align:42.784000pt;}
.vc{vertical-align:45.578667pt;}
.v16{vertical-align:55.258667pt;}
.v27{vertical-align:57.434667pt;}
.v20{vertical-align:69.472000pt;}
.v23{vertical-align:72.309333pt;}
.v25{vertical-align:73.461333pt;}
.v21{vertical-align:76.912000pt;}
.v1e{vertical-align:98.922667pt;}
.ls21{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.000160pt;}
.ls55{letter-spacing:0.000533pt;}
.ls50{letter-spacing:0.001067pt;}
.ls5f{letter-spacing:0.001600pt;}
.ls26{letter-spacing:0.002133pt;}
.ls3b{letter-spacing:0.002667pt;}
.ls52{letter-spacing:0.003733pt;}
.ls80{letter-spacing:0.005867pt;}
.ls7b{letter-spacing:0.298667pt;}
.ls74{letter-spacing:0.624000pt;}
.ls7e{letter-spacing:0.912000pt;}
.ls64{letter-spacing:1.293333pt;}
.ls4d{letter-spacing:1.488000pt;}
.ls6c{letter-spacing:1.582933pt;}
.ls62{letter-spacing:1.586667pt;}
.ls82{letter-spacing:1.680000pt;}
.ls28{letter-spacing:1.813867pt;}
.ls9f{letter-spacing:1.819200pt;}
.ls6{letter-spacing:1.844000pt;}
.ls4e{letter-spacing:2.160000pt;}
.ls31{letter-spacing:2.213333pt;}
.ls1a{letter-spacing:2.218667pt;}
.ls8f{letter-spacing:2.586667pt;}
.ls1c{letter-spacing:2.592000pt;}
.ls1b{letter-spacing:2.653867pt;}
.ls49{letter-spacing:2.656000pt;}
.ls8{letter-spacing:2.656053pt;}
.ls56{letter-spacing:2.657067pt;}
.ls13{letter-spacing:2.659200pt;}
.ls24{letter-spacing:2.661333pt;}
.ls3d{letter-spacing:2.791467pt;}
.ls85{letter-spacing:2.890133pt;}
.ls23{letter-spacing:2.895467pt;}
.ls7a{letter-spacing:3.285333pt;}
.ls61{letter-spacing:3.721067pt;}
.ls1e{letter-spacing:4.314667pt;}
.ls12{letter-spacing:4.320000pt;}
.ls5{letter-spacing:4.560000pt;}
.ls4{letter-spacing:4.616000pt;}
.ls57{letter-spacing:4.874667pt;}
.ls3a{letter-spacing:4.933333pt;}
.ls29{letter-spacing:5.312000pt;}
.ls43{letter-spacing:5.317333pt;}
.ls20{letter-spacing:5.554133pt;}
.ls18{letter-spacing:5.559467pt;}
.ls63{letter-spacing:5.738667pt;}
.ls16{letter-spacing:5.824000pt;}
.ls5d{letter-spacing:6.377067pt;}
.ls68{letter-spacing:6.378133pt;}
.ls27{letter-spacing:6.970667pt;}
.ls2d{letter-spacing:6.976000pt;}
.ls5a{letter-spacing:7.305067pt;}
.ls60{letter-spacing:7.310400pt;}
.ls10{letter-spacing:7.371200pt;}
.ls3c{letter-spacing:7.442667pt;}
.ls17{letter-spacing:7.445333pt;}
.ls5b{letter-spacing:7.632000pt;}
.ls54{letter-spacing:8.014400pt;}
.ls53{letter-spacing:8.019733pt;}
.ls9c{letter-spacing:8.352000pt;}
.ls9d{letter-spacing:8.400000pt;}
.lse{letter-spacing:8.826667pt;}
.lsd{letter-spacing:9.032533pt;}
.ls67{letter-spacing:9.469867pt;}
.ls14{letter-spacing:9.737067pt;}
.ls69{letter-spacing:9.738667pt;}
.ls15{letter-spacing:9.742400pt;}
.ls6e{letter-spacing:9.744000pt;}
.lsf{letter-spacing:10.037333pt;}
.ls90{letter-spacing:10.053333pt;}
.ls91{letter-spacing:10.058667pt;}
.ls70{letter-spacing:10.107733pt;}
.ls71{letter-spacing:10.113067pt;}
.ls3{letter-spacing:10.160000pt;}
.ls8a{letter-spacing:10.569067pt;}
.ls6f{letter-spacing:11.190400pt;}
.ls8c{letter-spacing:11.321067pt;}
.ls88{letter-spacing:11.412800pt;}
.ls4b{letter-spacing:11.692800pt;}
.ls4a{letter-spacing:12.069387pt;}
.ls5c{letter-spacing:12.174400pt;}
.ls2b{letter-spacing:12.178133pt;}
.ls4f{letter-spacing:12.179733pt;}
.lsb{letter-spacing:12.181333pt;}
.ls7d{letter-spacing:12.277333pt;}
.ls7c{letter-spacing:12.380800pt;}
.ls79{letter-spacing:12.386133pt;}
.ls51{letter-spacing:12.400000pt;}
.ls87{letter-spacing:12.527467pt;}
.ls84{letter-spacing:12.636800pt;}
.ls45{letter-spacing:12.656000pt;}
.ls83{letter-spacing:12.958400pt;}
.ls46{letter-spacing:13.237333pt;}
.ls33{letter-spacing:13.386667pt;}
.ls2c{letter-spacing:13.582400pt;}
.ls96{letter-spacing:13.648000pt;}
.ls41{letter-spacing:13.856000pt;}
.ls0{letter-spacing:14.398720pt;}
.ls59{letter-spacing:14.430400pt;}
.ls58{letter-spacing:14.437333pt;}
.ls3f{letter-spacing:14.474667pt;}
.ls7{letter-spacing:14.618720pt;}
.ls32{letter-spacing:14.821333pt;}
.ls25{letter-spacing:14.826667pt;}
.ls81{letter-spacing:14.832000pt;}
.ls86{letter-spacing:14.836800pt;}
.ls73{letter-spacing:14.837333pt;}
.ls1d{letter-spacing:15.120000pt;}
.lsa{letter-spacing:15.216000pt;}
.ls9a{letter-spacing:15.466667pt;}
.ls95{letter-spacing:15.712000pt;}
.ls99{letter-spacing:15.754667pt;}
.ls8e{letter-spacing:15.989333pt;}
.ls34{letter-spacing:16.042667pt;}
.ls4c{letter-spacing:16.076800pt;}
.lsa4{letter-spacing:16.213333pt;}
.ls75{letter-spacing:16.434133pt;}
.ls1f{letter-spacing:16.467200pt;}
.ls9e{letter-spacing:16.480000pt;}
.ls8b{letter-spacing:16.640000pt;}
.ls22{letter-spacing:16.723200pt;}
.lsa3{letter-spacing:16.778667pt;}
.ls2f{letter-spacing:17.328000pt;}
.ls7f{letter-spacing:17.374400pt;}
.ls39{letter-spacing:17.616000pt;}
.ls6b{letter-spacing:17.619200pt;}
.ls93{letter-spacing:17.621333pt;}
.ls42{letter-spacing:17.644800pt;}
.lsa1{letter-spacing:17.701333pt;}
.ls77{letter-spacing:17.824000pt;}
.ls19{letter-spacing:17.976533pt;}
.ls11{letter-spacing:17.981867pt;}
.ls40{letter-spacing:18.080000pt;}
.ls2a{letter-spacing:18.462400pt;}
.ls94{letter-spacing:18.714667pt;}
.ls37{letter-spacing:18.757333pt;}
.ls78{letter-spacing:18.810667pt;}
.ls38{letter-spacing:19.002667pt;}
.ls76{letter-spacing:19.088000pt;}
.ls47{letter-spacing:19.241067pt;}
.ls98{letter-spacing:19.333333pt;}
.ls9{letter-spacing:19.504000pt;}
.ls92{letter-spacing:19.520000pt;}
.ls3e{letter-spacing:19.714667pt;}
.ls65{letter-spacing:20.149333pt;}
.ls30{letter-spacing:20.490667pt;}
.lsa0{letter-spacing:20.736000pt;}
.ls72{letter-spacing:21.205333pt;}
.lsa2{letter-spacing:21.909333pt;}
.ls9b{letter-spacing:22.058667pt;}
.ls35{letter-spacing:22.240000pt;}
.lsc{letter-spacing:22.412800pt;}
.ls8d{letter-spacing:22.549333pt;}
.ls36{letter-spacing:23.189333pt;}
.ls2e{letter-spacing:25.792000pt;}
.ls89{letter-spacing:26.602667pt;}
.ls44{letter-spacing:27.898667pt;}
.ls97{letter-spacing:29.210667pt;}
.ls66{letter-spacing:29.224000pt;}
.ls6d{letter-spacing:29.225067pt;}
.ls6a{letter-spacing:42.441067pt;}
.ls2{letter-spacing:95.134667pt;}
.ls1{letter-spacing:95.140000pt;}
.ls5e{letter-spacing:118.188800pt;}
.wsb6{word-spacing:-29.601600pt;}
.ws1e{word-spacing:-28.512000pt;}
.ws86{word-spacing:-25.344000pt;}
.ws1d{word-spacing:-20.961600pt;}
.wsc9{word-spacing:-19.958400pt;}
.wsa{word-spacing:-12.752160pt;}
.ws0{word-spacing:-11.476992pt;}
.wsd{word-spacing:-10.896000pt;}
.wsd8{word-spacing:-9.728000pt;}
.ws167{word-spacing:-9.080000pt;}
.ws166{word-spacing:-8.000000pt;}
.wsca{word-spacing:-7.627200pt;}
.ws8{word-spacing:-1.615501pt;}
.wsfc{word-spacing:-1.157333pt;}
.ws72{word-spacing:-1.152000pt;}
.ws44{word-spacing:-1.104000pt;}
.wsda{word-spacing:-1.056000pt;}
.ws92{word-spacing:-0.960000pt;}
.ws8d{word-spacing:-0.912000pt;}
.ws76{word-spacing:-0.864000pt;}
.ws15f{word-spacing:-0.840000pt;}
.ws9c{word-spacing:-0.816000pt;}
.ws15b{word-spacing:-0.800000pt;}
.ws12f{word-spacing:-0.768000pt;}
.ws9d{word-spacing:-0.672000pt;}
.ws134{word-spacing:-0.624000pt;}
.ws126{word-spacing:-0.576000pt;}
.ws12b{word-spacing:-0.480000pt;}
.ws6b{word-spacing:-0.384000pt;}
.wsb9{word-spacing:-0.336000pt;}
.wsb5{word-spacing:-0.288000pt;}
.wse{word-spacing:-0.240000pt;}
.ws112{word-spacing:-0.208000pt;}
.ws42{word-spacing:-0.192000pt;}
.ws91{word-spacing:-0.144000pt;}
.wsdf{word-spacing:-0.096000pt;}
.ws179{word-spacing:-0.080000pt;}
.ws3{word-spacing:-0.048000pt;}
.ws23{word-spacing:-0.042667pt;}
.ws155{word-spacing:-0.040000pt;}
.ws3d{word-spacing:-0.033600pt;}
.ws87{word-spacing:-0.029867pt;}
.ws7{word-spacing:-0.028000pt;}
.wscf{word-spacing:-0.024000pt;}
.wsf2{word-spacing:-0.005333pt;}
.ws163{word-spacing:-0.002667pt;}
.ws2{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.048000pt;}
.ws11f{word-spacing:0.090667pt;}
.ws40{word-spacing:0.096000pt;}
.wscc{word-spacing:0.144000pt;}
.ws85{word-spacing:0.170667pt;}
.wsd5{word-spacing:0.192000pt;}
.ws11d{word-spacing:0.240000pt;}
.ws47{word-spacing:0.288000pt;}
.ws58{word-spacing:0.336000pt;}
.wsd9{word-spacing:0.378667pt;}
.ws59{word-spacing:0.384000pt;}
.ws110{word-spacing:0.432000pt;}
.ws6f{word-spacing:0.528000pt;}
.ws12a{word-spacing:0.576000pt;}
.ws162{word-spacing:0.600000pt;}
.ws136{word-spacing:0.624000pt;}
.ws16{word-spacing:0.672000pt;}
.ws11e{word-spacing:0.720000pt;}
.ws8c{word-spacing:0.768000pt;}
.wsae{word-spacing:0.816000pt;}
.ws160{word-spacing:0.840000pt;}
.wsad{word-spacing:0.864000pt;}
.ws84{word-spacing:0.896000pt;}
.ws88{word-spacing:0.938667pt;}
.ws101{word-spacing:0.960000pt;}
.ws142{word-spacing:1.008000pt;}
.wsf{word-spacing:1.056000pt;}
.ws107{word-spacing:1.066667pt;}
.ws43{word-spacing:1.104000pt;}
.ws65{word-spacing:1.152000pt;}
.ws4e{word-spacing:1.200000pt;}
.ws97{word-spacing:1.237333pt;}
.ws28{word-spacing:1.269333pt;}
.ws29{word-spacing:1.296000pt;}
.ws54{word-spacing:1.344000pt;}
.wsa9{word-spacing:1.392000pt;}
.ws5c{word-spacing:1.440000pt;}
.ws159{word-spacing:1.480000pt;}
.ws48{word-spacing:1.488000pt;}
.ws12{word-spacing:1.536000pt;}
.ws80{word-spacing:1.584000pt;}
.ws10f{word-spacing:1.632000pt;}
.ws14{word-spacing:1.680000pt;}
.ws106{word-spacing:1.706667pt;}
.wsfe{word-spacing:1.728000pt;}
.ws10d{word-spacing:1.749333pt;}
.ws138{word-spacing:1.776000pt;}
.ws15e{word-spacing:1.800000pt;}
.ws15{word-spacing:1.824000pt;}
.ws15d{word-spacing:1.840000pt;}
.ws74{word-spacing:1.866667pt;}
.ws75{word-spacing:1.872000pt;}
.ws124{word-spacing:1.968000pt;}
.wsa4{word-spacing:2.016000pt;}
.ws33{word-spacing:2.064000pt;}
.ws119{word-spacing:2.112000pt;}
.ws169{word-spacing:2.120000pt;}
.ws4f{word-spacing:2.160000pt;}
.ws9a{word-spacing:2.208000pt;}
.ws2b{word-spacing:2.256000pt;}
.ws19{word-spacing:2.304000pt;}
.ws1a{word-spacing:2.352000pt;}
.ws156{word-spacing:2.360000pt;}
.ws165{word-spacing:2.400000pt;}
.ws144{word-spacing:2.448000pt;}
.ws157{word-spacing:2.480000pt;}
.ws95{word-spacing:2.496000pt;}
.ws4a{word-spacing:2.544000pt;}
.wsf6{word-spacing:2.560000pt;}
.wsb4{word-spacing:2.592000pt;}
.ws20{word-spacing:2.640000pt;}
.wsf5{word-spacing:2.645333pt;}
.ws38{word-spacing:2.677333pt;}
.ws36{word-spacing:2.682667pt;}
.ws39{word-spacing:2.688000pt;}
.wsd4{word-spacing:2.736000pt;}
.ws55{word-spacing:2.784000pt;}
.ws113{word-spacing:2.832000pt;}
.ws17{word-spacing:2.880000pt;}
.ws22{word-spacing:2.917333pt;}
.ws21{word-spacing:2.928000pt;}
.wse7{word-spacing:2.976000pt;}
.ws16c{word-spacing:3.000000pt;}
.wsfb{word-spacing:3.024000pt;}
.ws122{word-spacing:3.120000pt;}
.ws10c{word-spacing:3.157333pt;}
.ws24{word-spacing:3.168000pt;}
.ws7c{word-spacing:3.216000pt;}
.ws172{word-spacing:3.240000pt;}
.ws11b{word-spacing:3.264000pt;}
.wsf4{word-spacing:3.285333pt;}
.wsaa{word-spacing:3.312000pt;}
.ws93{word-spacing:3.456000pt;}
.ws94{word-spacing:3.504000pt;}
.wsbf{word-spacing:3.552000pt;}
.ws130{word-spacing:3.600000pt;}
.wsd1{word-spacing:3.626667pt;}
.ws73{word-spacing:3.648000pt;}
.ws83{word-spacing:3.669333pt;}
.ws64{word-spacing:3.696000pt;}
.ws41{word-spacing:3.792000pt;}
.ws118{word-spacing:3.840000pt;}
.ws125{word-spacing:3.888000pt;}
.ws135{word-spacing:3.936000pt;}
.ws3a{word-spacing:3.984000pt;}
.ws35{word-spacing:4.032000pt;}
.ws11a{word-spacing:4.053333pt;}
.wse4{word-spacing:4.080000pt;}
.wsc1{word-spacing:4.128000pt;}
.ws16b{word-spacing:4.200000pt;}
.ws60{word-spacing:4.224000pt;}
.ws46{word-spacing:4.272000pt;}
.ws45{word-spacing:4.320000pt;}
.ws16e{word-spacing:4.360000pt;}
.ws102{word-spacing:4.368000pt;}
.ws164{word-spacing:4.400000pt;}
.ws62{word-spacing:4.464000pt;}
.ws9b{word-spacing:4.512000pt;}
.ws13d{word-spacing:4.560000pt;}
.ws13e{word-spacing:4.608000pt;}
.ws12e{word-spacing:4.656000pt;}
.wsa3{word-spacing:4.704000pt;}
.ws123{word-spacing:4.752000pt;}
.ws5f{word-spacing:4.800000pt;}
.ws15c{word-spacing:4.840000pt;}
.ws57{word-spacing:4.848000pt;}
.ws69{word-spacing:4.896000pt;}
.wsdb{word-spacing:4.992000pt;}
.wsac{word-spacing:5.040000pt;}
.ws105{word-spacing:5.088000pt;}
.wsd2{word-spacing:5.136000pt;}
.ws18{word-spacing:5.184000pt;}
.ws52{word-spacing:5.232000pt;}
.ws1b{word-spacing:5.280000pt;}
.wsc{word-spacing:5.328000pt;}
.ws3c{word-spacing:5.376000pt;}
.ws117{word-spacing:5.424000pt;}
.ws161{word-spacing:5.440000pt;}
.ws99{word-spacing:5.472000pt;}
.wse1{word-spacing:5.520000pt;}
.wse3{word-spacing:5.536000pt;}
.ws104{word-spacing:5.568000pt;}
.wsde{word-spacing:5.616000pt;}
.ws170{word-spacing:5.640000pt;}
.wsab{word-spacing:5.664000pt;}
.wsf7{word-spacing:5.712000pt;}
.ws5e{word-spacing:5.760000pt;}
.ws137{word-spacing:5.808000pt;}
.ws158{word-spacing:5.840000pt;}
.ws3b{word-spacing:5.856000pt;}
.wsc3{word-spacing:5.904000pt;}
.wse0{word-spacing:5.944533pt;}
.ws63{word-spacing:5.952000pt;}
.ws131{word-spacing:6.000000pt;}
.ws4b{word-spacing:6.048000pt;}
.ws70{word-spacing:6.096000pt;}
.ws77{word-spacing:6.144000pt;}
.ws15a{word-spacing:6.160000pt;}
.ws11c{word-spacing:6.192000pt;}
.ws173{word-spacing:6.200000pt;}
.ws7f{word-spacing:6.240000pt;}
.ws128{word-spacing:6.288000pt;}
.ws8f{word-spacing:6.336000pt;}
.ws5a{word-spacing:6.384000pt;}
.ws71{word-spacing:6.432000pt;}
.wsf9{word-spacing:6.474667pt;}
.wsfa{word-spacing:6.480000pt;}
.ws53{word-spacing:6.528000pt;}
.ws9e{word-spacing:6.576000pt;}
.ws8b{word-spacing:6.624000pt;}
.ws56{word-spacing:6.720000pt;}
.ws79{word-spacing:6.768000pt;}
.ws10a{word-spacing:6.816000pt;}
.ws109{word-spacing:6.864000pt;}
.ws178{word-spacing:6.880000pt;}
.ws5d{word-spacing:6.912000pt;}
.ws50{word-spacing:6.960000pt;}
.ws13a{word-spacing:7.008000pt;}
.ws171{word-spacing:7.080000pt;}
.ws4d{word-spacing:7.104000pt;}
.wsa6{word-spacing:7.152000pt;}
.ws66{word-spacing:7.187200pt;}
.ws68{word-spacing:7.200000pt;}
.ws10e{word-spacing:7.296000pt;}
.ws2a{word-spacing:7.344000pt;}
.wsba{word-spacing:7.488000pt;}
.ws31{word-spacing:7.536000pt;}
.ws30{word-spacing:7.584000pt;}
.ws67{word-spacing:7.728000pt;}
.ws5b{word-spacing:7.776000pt;}
.wsea{word-spacing:7.824000pt;}
.ws34{word-spacing:7.872000pt;}
.ws6e{word-spacing:7.920000pt;}
.ws6d{word-spacing:7.968000pt;}
.wsb8{word-spacing:8.016000pt;}
.ws78{word-spacing:8.064000pt;}
.ws26{word-spacing:8.085333pt;}
.ws27{word-spacing:8.112000pt;}
.wsa5{word-spacing:8.160000pt;}
.wsef{word-spacing:8.208000pt;}
.ws6a{word-spacing:8.256000pt;}
.wsbe{word-spacing:8.304000pt;}
.wsa8{word-spacing:8.352000pt;}
.wsaf{word-spacing:8.400000pt;}
.ws132{word-spacing:8.448000pt;}
.ws49{word-spacing:8.496000pt;}
.wsf0{word-spacing:8.592000pt;}
.ws81{word-spacing:8.640000pt;}
.wseb{word-spacing:8.784000pt;}
.wsec{word-spacing:8.832000pt;}
.ws116{word-spacing:8.880000pt;}
.ws1c{word-spacing:8.928000pt;}
.ws16a{word-spacing:9.037333pt;}
.wse8{word-spacing:9.037867pt;}
.ws51{word-spacing:9.072000pt;}
.wsfd{word-spacing:9.120000pt;}
.ws133{word-spacing:9.216000pt;}
.ws108{word-spacing:9.264000pt;}
.wsb{word-spacing:9.312000pt;}
.ws127{word-spacing:9.456000pt;}
.wse5{word-spacing:9.504000pt;}
.wsb2{word-spacing:9.552000pt;}
.ws90{word-spacing:9.648000pt;}
.wsf1{word-spacing:9.685333pt;}
.wsbd{word-spacing:9.696000pt;}
.ws111{word-spacing:9.792000pt;}
.ws177{word-spacing:9.880000pt;}
.ws2f{word-spacing:9.888000pt;}
.ws176{word-spacing:9.920000pt;}
.ws25{word-spacing:9.936000pt;}
.ws32{word-spacing:9.984000pt;}
.ws174{word-spacing:10.000000pt;}
.wsd6{word-spacing:10.064000pt;}
.ws175{word-spacing:10.080000pt;}
.ws13c{word-spacing:10.176000pt;}
.ws103{word-spacing:10.368000pt;}
.wsb7{word-spacing:10.416000pt;}
.ws168{word-spacing:10.520000pt;}
.ws61{word-spacing:10.520533pt;}
.wsc6{word-spacing:10.560000pt;}
.wsf8{word-spacing:10.800000pt;}
.ws11{word-spacing:10.842667pt;}
.ws141{word-spacing:10.848000pt;}
.ws13b{word-spacing:10.896000pt;}
.ws6{word-spacing:10.922667pt;}
.wsb1{word-spacing:10.944000pt;}
.wsc7{word-spacing:10.992000pt;}
.ws149{word-spacing:11.040000pt;}
.ws9{word-spacing:11.094379pt;}
.ws150{word-spacing:11.184000pt;}
.ws14e{word-spacing:11.200000pt;}
.wsbb{word-spacing:11.376000pt;}
.ws96{word-spacing:11.472000pt;}
.wse9{word-spacing:11.520000pt;}
.wsc4{word-spacing:11.568000pt;}
.ws7d{word-spacing:11.664000pt;}
.ws7e{word-spacing:11.712000pt;}
.ws12d{word-spacing:11.928533pt;}
.ws4c{word-spacing:11.956800pt;}
.ws148{word-spacing:12.144000pt;}
.ws16d{word-spacing:12.160000pt;}
.ws146{word-spacing:12.192000pt;}
.ws3e{word-spacing:12.240000pt;}
.ws115{word-spacing:12.336000pt;}
.ws14a{word-spacing:12.362667pt;}
.ws14c{word-spacing:12.384000pt;}
.wse6{word-spacing:12.432000pt;}
.ws13{word-spacing:12.528000pt;}
.wsdc{word-spacing:12.576000pt;}
.wsdd{word-spacing:12.624000pt;}
.ws12c{word-spacing:12.720000pt;}
.ws7a{word-spacing:12.768000pt;}
.ws10b{word-spacing:12.842667pt;}
.wsf3{word-spacing:12.970667pt;}
.ws120{word-spacing:13.002667pt;}
.ws121{word-spacing:13.008000pt;}
.wsbc{word-spacing:13.152000pt;}
.ws114{word-spacing:13.296000pt;}
.ws82{word-spacing:13.354667pt;}
.ws139{word-spacing:13.392000pt;}
.ws16f{word-spacing:13.520000pt;}
.wsa2{word-spacing:13.584000pt;}
.wsc5{word-spacing:13.680000pt;}
.wscb{word-spacing:13.872000pt;}
.ws6c{word-spacing:13.997867pt;}
.ws140{word-spacing:14.112000pt;}
.wsa7{word-spacing:14.276800pt;}
.ws89{word-spacing:14.341333pt;}
.ws9f{word-spacing:14.352000pt;}
.ws8a{word-spacing:14.400000pt;}
.wsc0{word-spacing:14.582400pt;}
.wsb3{word-spacing:14.736000pt;}
.wsd7{word-spacing:14.864000pt;}
.ws8e{word-spacing:14.872000pt;}
.ws37{word-spacing:15.067733pt;}
.wsed{word-spacing:15.073067pt;}
.ws147{word-spacing:15.360000pt;}
.wsa0{word-spacing:15.600000pt;}
.wsb0{word-spacing:15.744000pt;}
.ws129{word-spacing:15.888000pt;}
.ws2e{word-spacing:16.560000pt;}
.wsa1{word-spacing:16.848000pt;}
.ws98{word-spacing:17.856000pt;}
.wsff{word-spacing:18.432000pt;}
.ws100{word-spacing:18.480000pt;}
.ws151{word-spacing:18.720000pt;}
.ws153{word-spacing:18.768000pt;}
.ws7b{word-spacing:18.829867pt;}
.wsc2{word-spacing:18.966400pt;}
.wsee{word-spacing:19.008000pt;}
.wse2{word-spacing:19.323733pt;}
.ws10{word-spacing:19.440000pt;}
.ws2c{word-spacing:19.824000pt;}
.wsc8{word-spacing:20.736000pt;}
.ws14f{word-spacing:21.072000pt;}
.ws14d{word-spacing:21.456000pt;}
.ws145{word-spacing:21.984000pt;}
.ws14b{word-spacing:22.176000pt;}
.ws2d{word-spacing:23.424000pt;}
.ws154{word-spacing:24.144000pt;}
.ws13f{word-spacing:24.432000pt;}
.ws143{word-spacing:25.872000pt;}
.ws152{word-spacing:28.272000pt;}
.ws4{word-spacing:86.730667pt;}
.ws5{word-spacing:86.732000pt;}
.ws1f{word-spacing:90.176000pt;}
.ws1{word-spacing:175.290667pt;}
.wscd{word-spacing:239.040000pt;}
.wsce{word-spacing:271.488000pt;}
.wsd0{word-spacing:278.736000pt;}
.wsd3{word-spacing:297.216000pt;}
._1{margin-left:-5.333333pt;}
._b{margin-left:-2.560000pt;}
._f{width:1.610667pt;}
._2{width:2.660000pt;}
._7{width:4.320000pt;}
._11{width:6.156000pt;}
._8{width:7.306667pt;}
._d{width:8.448000pt;}
._5{width:9.360000pt;}
._3{width:10.398205pt;}
._4{width:12.629493pt;}
._e{width:15.936000pt;}
._9{width:18.117333pt;}
._a{width:19.392000pt;}
._6{width:23.626667pt;}
._0{width:1145.566942pt;}
._10{width:1627.162667pt;}
._12{width:1629.722667pt;}
._c{width:1646.618667pt;}
.fsa{font-size:24.000000pt;}
.fsc{font-size:26.666667pt;}
.fs4{font-size:28.000000pt;}
.fsb{font-size:29.866667pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:33.066667pt;}
.fs7{font-size:33.600000pt;}
.fsd{font-size:40.000000pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:63.761067pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:54.382667pt;}
.y35{bottom:71.742667pt;}
.y196{bottom:132.901333pt;}
.y33{bottom:133.576000pt;}
.y34{bottom:133.769333pt;}
.y7a{bottom:134.458667pt;}
.y189{bottom:135.525333pt;}
.y195{bottom:136.322667pt;}
.y32{bottom:136.997333pt;}
.y28{bottom:137.489333pt;}
.ybe{bottom:138.917333pt;}
.y15e{bottom:139.360000pt;}
.y19e{bottom:140.128000pt;}
.y205{bottom:142.436000pt;}
.y1c8{bottom:143.100000pt;}
.y19d{bottom:143.550667pt;}
.y231{bottom:144.856000pt;}
.y79{bottom:145.037333pt;}
.y188{bottom:146.104000pt;}
.y194{bottom:146.901333pt;}
.y261{bottom:147.742667pt;}
.y230{bottom:148.277333pt;}
.y78{bottom:148.458667pt;}
.y187{bottom:149.525333pt;}
.y193{bottom:150.322667pt;}
.ybd{bottom:150.917333pt;}
.y31{bottom:150.997333pt;}
.y27{bottom:151.489333pt;}
.y151{bottom:153.089333pt;}
.y204{bottom:156.436000pt;}
.y19c{bottom:157.550667pt;}
.y1c7{bottom:157.764000pt;}
.y260{bottom:161.742667pt;}
.y22f{bottom:162.277333pt;}
.y77{bottom:162.458667pt;}
.y186{bottom:163.525333pt;}
.y192{bottom:164.322667pt;}
.y30{bottom:164.997333pt;}
.y26{bottom:165.489333pt;}
.y203{bottom:170.436000pt;}
.y19b{bottom:171.550667pt;}
.y1c6{bottom:172.428000pt;}
.y185{bottom:174.104000pt;}
.y22e{bottom:176.277333pt;}
.y76{bottom:176.458667pt;}
.y184{bottom:177.525333pt;}
.y191{bottom:178.322667pt;}
.y25{bottom:179.489333pt;}
.y25f{bottom:181.056000pt;}
.y113{bottom:182.436000pt;}
.y1c5{bottom:183.670667pt;}
.y202{bottom:184.436000pt;}
.y19a{bottom:185.550667pt;}
.ya0{bottom:187.037333pt;}
.y1c4{bottom:187.092000pt;}
.y2d{bottom:189.338667pt;}
.y22d{bottom:190.277333pt;}
.y75{bottom:190.458667pt;}
.y183{bottom:191.525333pt;}
.y190{bottom:192.322667pt;}
.y24{bottom:193.489333pt;}
.y2e{bottom:194.288000pt;}
.y2f{bottom:194.480000pt;}
.yef{bottom:196.170667pt;}
.y2c{bottom:197.709333pt;}
.y201{bottom:198.436000pt;}
.y2b{bottom:200.186667pt;}
.y74{bottom:201.037333pt;}
.y1c3{bottom:201.092000pt;}
.y22c{bottom:204.277333pt;}
.y73{bottom:204.458667pt;}
.y182{bottom:205.525333pt;}
.y18f{bottom:206.322667pt;}
.y23{bottom:207.489333pt;}
.y200{bottom:212.436000pt;}
.y25e{bottom:212.985333pt;}
.y1c2{bottom:215.092000pt;}
.y22b{bottom:218.277333pt;}
.y72{bottom:218.458667pt;}
.y181{bottom:219.525333pt;}
.y18e{bottom:220.322667pt;}
.y22{bottom:221.489333pt;}
.y112{bottom:226.121333pt;}
.y1ff{bottom:226.436000pt;}
.y25d{bottom:226.985333pt;}
.y1c1{bottom:229.092000pt;}
.y2a{bottom:229.460000pt;}
.yee{bottom:231.009333pt;}
.y22a{bottom:232.277333pt;}
.y71{bottom:232.458667pt;}
.y180{bottom:233.525333pt;}
.y21{bottom:235.489333pt;}
.y199{bottom:238.878667pt;}
.y111{bottom:240.121333pt;}
.y1c0{bottom:240.334667pt;}
.y1fe{bottom:240.436000pt;}
.y25c{bottom:240.985333pt;}
.y29{bottom:243.460000pt;}
.y1bf{bottom:243.757333pt;}
.yed{bottom:245.009333pt;}
.y229{bottom:246.277333pt;}
.y70{bottom:246.458667pt;}
.y17f{bottom:247.525333pt;}
.y198{bottom:250.878667pt;}
.y1fd{bottom:251.014667pt;}
.y110{bottom:254.121333pt;}
.y1fc{bottom:254.436000pt;}
.y25b{bottom:254.985333pt;}
.y20{bottom:257.460000pt;}
.y1be{bottom:257.757333pt;}
.yec{bottom:259.009333pt;}
.y228{bottom:260.277333pt;}
.y6f{bottom:260.458667pt;}
.y17e{bottom:261.525333pt;}
.y197{bottom:262.878667pt;}
.y10f{bottom:268.121333pt;}
.y1fb{bottom:268.436000pt;}
.y18d{bottom:268.958667pt;}
.y25a{bottom:268.985333pt;}
.y1bd{bottom:268.998667pt;}
.y227{bottom:270.856000pt;}
.y6e{bottom:271.037333pt;}
.y1bc{bottom:272.421333pt;}
.yeb{bottom:273.009333pt;}
.y226{bottom:274.277333pt;}
.y6d{bottom:274.458667pt;}
.y17d{bottom:275.525333pt;}
.y18c{bottom:280.958667pt;}
.y10e{bottom:282.121333pt;}
.y1fa{bottom:282.436000pt;}
.y259{bottom:282.985333pt;}
.yea{bottom:287.009333pt;}
.y1bb{bottom:287.085333pt;}
.y225{bottom:288.277333pt;}
.y6c{bottom:288.458667pt;}
.y17c{bottom:289.525333pt;}
.y18b{bottom:292.958667pt;}
.y10d{bottom:296.121333pt;}
.y1f9{bottom:296.436000pt;}
.y258{bottom:296.985333pt;}
.ye9{bottom:301.009333pt;}
.y1ba{bottom:301.085333pt;}
.y224{bottom:302.277333pt;}
.y6b{bottom:302.458667pt;}
.y17b{bottom:303.525333pt;}
.y18a{bottom:304.958667pt;}
.y1f8{bottom:310.436000pt;}
.y257{bottom:310.985333pt;}
.y10c{bottom:311.760000pt;}
.ye8{bottom:315.009333pt;}
.y1b9{bottom:315.085333pt;}
.y223{bottom:316.277333pt;}
.y6a{bottom:316.458667pt;}
.y17a{bottom:317.525333pt;}
.y1f{bottom:320.284000pt;}
.y1f7{bottom:324.436000pt;}
.y256{bottom:324.985333pt;}
.y10b{bottom:325.760000pt;}
.y69{bottom:327.037333pt;}
.ye7{bottom:329.009333pt;}
.y1b8{bottom:329.085333pt;}
.y222{bottom:330.277333pt;}
.y68{bottom:330.458667pt;}
.y179{bottom:331.525333pt;}
.y1e{bottom:334.284000pt;}
.y1f6{bottom:338.436000pt;}
.y255{bottom:338.985333pt;}
.y10a{bottom:339.760000pt;}
.ye6{bottom:343.009333pt;}
.y1b7{bottom:343.749333pt;}
.y221{bottom:344.277333pt;}
.y67{bottom:344.458667pt;}
.y178{bottom:345.525333pt;}
.y1f5{bottom:352.436000pt;}
.y254{bottom:352.985333pt;}
.y109{bottom:353.760000pt;}
.y1d{bottom:354.137333pt;}
.ye5{bottom:357.009333pt;}
.y220{bottom:358.277333pt;}
.y1b6{bottom:358.413333pt;}
.y66{bottom:358.458667pt;}
.y177{bottom:359.525333pt;}
.y1f4{bottom:366.436000pt;}
.y253{bottom:366.985333pt;}
.y1c{bottom:368.137333pt;}
.y108{bottom:369.400000pt;}
.ye4{bottom:371.009333pt;}
.y21f{bottom:372.277333pt;}
.y1b5{bottom:372.413333pt;}
.y65{bottom:372.458667pt;}
.y176{bottom:373.525333pt;}
.y1f3{bottom:380.436000pt;}
.y252{bottom:380.985333pt;}
.y1b{bottom:382.137333pt;}
.y107{bottom:383.400000pt;}
.ye3{bottom:385.009333pt;}
.y21e{bottom:386.277333pt;}
.y1b4{bottom:386.413333pt;}
.y64{bottom:386.458667pt;}
.y175{bottom:387.525333pt;}
.y15d{bottom:393.262667pt;}
.y1f2{bottom:394.436000pt;}
.y251{bottom:394.985333pt;}
.y1a{bottom:396.137333pt;}
.y9f{bottom:397.037333pt;}
.y106{bottom:397.400000pt;}
.ye2{bottom:399.009333pt;}
.y21d{bottom:400.277333pt;}
.y1b3{bottom:400.413333pt;}
.y63{bottom:400.458667pt;}
.y174{bottom:401.525333pt;}
.y1f1{bottom:408.436000pt;}
.y250{bottom:408.985333pt;}
.y19{bottom:410.137333pt;}
.y62{bottom:411.037333pt;}
.y105{bottom:411.400000pt;}
.ye1{bottom:413.009333pt;}
.y21c{bottom:414.277333pt;}
.y1b2{bottom:414.413333pt;}
.y61{bottom:414.458667pt;}
.y173{bottom:415.525333pt;}
.y1f0{bottom:422.436000pt;}
.y24f{bottom:422.985333pt;}
.y18{bottom:424.137333pt;}
.y104{bottom:425.400000pt;}
.y60{bottom:426.670667pt;}
.ye0{bottom:427.009333pt;}
.y21b{bottom:428.277333pt;}
.y1b1{bottom:428.413333pt;}
.y9e{bottom:428.458667pt;}
.y172{bottom:429.525333pt;}
.y5f{bottom:430.092000pt;}
.y1ef{bottom:436.436000pt;}
.y24e{bottom:436.985333pt;}
.y9d{bottom:439.037333pt;}
.y103{bottom:439.400000pt;}
.ydf{bottom:441.009333pt;}
.y21a{bottom:442.277333pt;}
.y1b0{bottom:442.413333pt;}
.y9c{bottom:442.458667pt;}
.y171{bottom:443.525333pt;}
.y17{bottom:443.966667pt;}
.y5e{bottom:444.092000pt;}
.y1ee{bottom:450.436000pt;}
.y24d{bottom:450.985333pt;}
.y102{bottom:453.400000pt;}
.y5d{bottom:454.670667pt;}
.yde{bottom:455.009333pt;}
.y219{bottom:456.277333pt;}
.y1af{bottom:456.413333pt;}
.y9b{bottom:456.458667pt;}
.y170{bottom:457.525333pt;}
.y2ac{bottom:457.649333pt;}
.y5c{bottom:458.092000pt;}
.y286{bottom:458.974667pt;}
.y1ed{bottom:464.436000pt;}
.y218{bottom:466.856000pt;}
.y101{bottom:467.400000pt;}
.ydd{bottom:469.009333pt;}
.y2ab{bottom:469.605333pt;}
.y217{bottom:470.277333pt;}
.y1ae{bottom:470.413333pt;}
.y9a{bottom:470.458667pt;}
.y16f{bottom:471.525333pt;}
.y5b{bottom:472.092000pt;}
.y24c{bottom:472.956000pt;}
.y1ec{bottom:475.014667pt;}
.y285{bottom:475.598667pt;}
.y1eb{bottom:478.436000pt;}
.y1ad{bottom:480.992000pt;}
.y100{bottom:481.400000pt;}
.y2aa{bottom:481.560000pt;}
.ydc{bottom:483.009333pt;}
.y216{bottom:484.277333pt;}
.y1ac{bottom:484.413333pt;}
.y99{bottom:484.458667pt;}
.y284{bottom:484.529333pt;}
.y16e{bottom:485.525333pt;}
.y5a{bottom:486.092000pt;}
.y16{bottom:486.592000pt;}
.y1ea{bottom:492.436000pt;}
.y215{bottom:494.856000pt;}
.yff{bottom:495.400000pt;}
.y15{bottom:495.902667pt;}
.ydb{bottom:497.009333pt;}
.y2a9{bottom:498.025333pt;}
.y214{bottom:498.277333pt;}
.y1ab{bottom:498.413333pt;}
.y98{bottom:498.458667pt;}
.y16d{bottom:499.525333pt;}
.y59{bottom:500.092000pt;}
.y283{bottom:501.154667pt;}
.y1e9{bottom:506.436000pt;}
.y2a8{bottom:506.798667pt;}
.yfe{bottom:509.400000pt;}
.y58{bottom:510.670667pt;}
.yda{bottom:511.009333pt;}
.y213{bottom:512.277333pt;}
.y1aa{bottom:512.413333pt;}
.y97{bottom:512.458667pt;}
.y14{bottom:513.158667pt;}
.y16c{bottom:513.525333pt;}
.y57{bottom:514.092000pt;}
.y282{bottom:514.596000pt;}
.y24b{bottom:516.613333pt;}
.y2a7{bottom:518.753333pt;}
.y1e8{bottom:520.436000pt;}
.y1a9{bottom:522.992000pt;}
.yfd{bottom:523.400000pt;}
.y281{bottom:523.526667pt;}
.yd9{bottom:525.009333pt;}
.y212{bottom:526.277333pt;}
.y1a8{bottom:526.413333pt;}
.y13{bottom:526.442667pt;}
.y96{bottom:526.458667pt;}
.y16b{bottom:527.525333pt;}
.y56{bottom:528.092000pt;}
.y1e7{bottom:534.436000pt;}
.y2a6{bottom:535.220000pt;}
.y280{bottom:535.641333pt;}
.yfc{bottom:537.400000pt;}
.y24a{bottom:538.582667pt;}
.yd8{bottom:539.009333pt;}
.y211{bottom:540.277333pt;}
.y1a7{bottom:540.413333pt;}
.y95{bottom:540.458667pt;}
.y16a{bottom:541.525333pt;}
.y55{bottom:542.092000pt;}
.y2a5{bottom:543.992000pt;}
.y1e6{bottom:548.436000pt;}
.y12{bottom:549.198667pt;}
.yfb{bottom:551.400000pt;}
.y27f{bottom:552.265333pt;}
.yd7{bottom:553.009333pt;}
.y210{bottom:554.277333pt;}
.y1a6{bottom:554.413333pt;}
.y94{bottom:554.458667pt;}
.y169{bottom:555.525333pt;}
.y2a4{bottom:555.948000pt;}
.y54{bottom:556.092000pt;}
.y249{bottom:559.886667pt;}
.ybc{bottom:561.080000pt;}
.y27e{bottom:561.196000pt;}
.y1e5{bottom:562.436000pt;}
.yfa{bottom:565.400000pt;}
.ya5{bottom:565.729333pt;}
.y11{bottom:566.520000pt;}
.yd6{bottom:567.009333pt;}
.y2a3{bottom:567.902667pt;}
.y20f{bottom:568.277333pt;}
.y1a5{bottom:568.413333pt;}
.y93{bottom:568.458667pt;}
.y168{bottom:569.525333pt;}
.y53{bottom:570.092000pt;}
.y37{bottom:572.453333pt;}
.y27d{bottom:573.309333pt;}
.ybb{bottom:575.080000pt;}
.y1e4{bottom:576.436000pt;}
.y10{bottom:579.853333pt;}
.ya4{bottom:579.901333pt;}
.yd5{bottom:581.009333pt;}
.y20e{bottom:582.277333pt;}
.y1a4{bottom:582.413333pt;}
.y92{bottom:582.458667pt;}
.y167{bottom:583.525333pt;}
.yf9{bottom:584.049333pt;}
.y52{bottom:584.092000pt;}
.y2a2{bottom:584.369333pt;}
.yba{bottom:589.080000pt;}
.y27c{bottom:589.933333pt;}
.y1e3{bottom:590.436000pt;}
.ya3{bottom:591.901333pt;}
.y2a1{bottom:593.141333pt;}
.yf{bottom:593.186667pt;}
.yd4{bottom:595.009333pt;}
.y20d{bottom:596.277333pt;}
.y51{bottom:596.304000pt;}
.y1a3{bottom:596.413333pt;}
.y91{bottom:596.458667pt;}
.y166{bottom:597.525333pt;}
.y12c{bottom:597.808000pt;}
.y27b{bottom:598.865333pt;}
.y150{bottom:599.370667pt;}
.y50{bottom:599.725333pt;}
.yb9{bottom:603.080000pt;}
.ya2{bottom:603.901333pt;}
.y1e2{bottom:604.436000pt;}
.y248{bottom:605.100000pt;}
.ye{bottom:606.520000pt;}
.yd3{bottom:609.009333pt;}
.y2a0{bottom:609.608000pt;}
.y20c{bottom:610.277333pt;}
.y1a2{bottom:610.413333pt;}
.y90{bottom:610.458667pt;}
.y27a{bottom:610.978667pt;}
.y165{bottom:611.525333pt;}
.y12b{bottom:611.808000pt;}
.y14f{bottom:613.370667pt;}
.y1e1{bottom:615.014667pt;}
.ya1{bottom:615.901333pt;}
.y1e0{bottom:618.436000pt;}
.y29f{bottom:618.922667pt;}
.y247{bottom:619.100000pt;}
.y4f{bottom:619.702667pt;}
.yd2{bottom:623.009333pt;}
.yb8{bottom:623.058667pt;}
.yd{bottom:623.572000pt;}
.y20b{bottom:624.277333pt;}
.yf8{bottom:624.413333pt;}
.y8f{bottom:624.458667pt;}
.y164{bottom:625.525333pt;}
.y14e{bottom:627.370667pt;}
.y279{bottom:627.602667pt;}
.y29e{bottom:630.877333pt;}
.y1df{bottom:632.436000pt;}
.y246{bottom:633.100000pt;}
.y278{bottom:636.533333pt;}
.yd1{bottom:637.009333pt;}
.y12a{bottom:637.213333pt;}
.y20a{bottom:638.277333pt;}
.yf7{bottom:638.413333pt;}
.y8e{bottom:638.458667pt;}
.y129{bottom:640.634667pt;}
.y163{bottom:641.165333pt;}
.y14d{bottom:641.370667pt;}
.y127{bottom:645.584000pt;}
.y1de{bottom:646.436000pt;}
.y245{bottom:647.100000pt;}
.y29d{bottom:647.344000pt;}
.y277{bottom:648.648000pt;}
.y126{bottom:649.005333pt;}
.yb7{bottom:650.773333pt;}
.yd0{bottom:651.009333pt;}
.yc{bottom:651.765333pt;}
.y209{bottom:652.277333pt;}
.yf6{bottom:652.413333pt;}
.y8d{bottom:652.458667pt;}
.y128{bottom:654.826667pt;}
.y29c{bottom:656.116000pt;}
.y1dd{bottom:660.436000pt;}
.y276{bottom:660.761333pt;}
.y244{bottom:661.100000pt;}
.y14c{bottom:661.348000pt;}
.y1a1{bottom:662.992000pt;}
.y4e{bottom:663.093333pt;}
.yb6{bottom:664.773333pt;}
.ycf{bottom:665.009333pt;}
.y15c{bottom:665.093333pt;}
.yf5{bottom:666.413333pt;}
.y8c{bottom:666.458667pt;}
.y29b{bottom:668.072000pt;}
.yb{bottom:669.402667pt;}
.y208{bottom:672.254667pt;}
.y1dc{bottom:674.436000pt;}
.y243{bottom:675.100000pt;}
.y4d{bottom:677.093333pt;}
.y275{bottom:677.385333pt;}
.yb5{bottom:678.773333pt;}
.yce{bottom:679.009333pt;}
.y15b{bottom:679.093333pt;}
.y29a{bottom:680.026667pt;}
.yf4{bottom:680.413333pt;}
.y8b{bottom:680.458667pt;}
.y162{bottom:684.637333pt;}
.y1db{bottom:685.014667pt;}
.y125{bottom:685.673333pt;}
.y274{bottom:686.316000pt;}
.y1da{bottom:688.436000pt;}
.y242{bottom:689.100000pt;}
.y4c{bottom:691.093333pt;}
.yb4{bottom:692.773333pt;}
.y15a{bottom:693.093333pt;}
.y14b{bottom:693.168000pt;}
.yf3{bottom:694.413333pt;}
.y8a{bottom:694.458667pt;}
.y124{bottom:696.252000pt;}
.y299{bottom:696.493333pt;}
.y161{bottom:696.637333pt;}
.ycd{bottom:698.721333pt;}
.y123{bottom:699.673333pt;}
.ya{bottom:701.052000pt;}
.y1d9{bottom:702.436000pt;}
.y273{bottom:702.940000pt;}
.y241{bottom:703.100000pt;}
.y298{bottom:705.265333pt;}
.y4b{bottom:706.733333pt;}
.yb3{bottom:706.773333pt;}
.y159{bottom:707.093333pt;}
.y14a{bottom:707.168000pt;}
.yf2{bottom:708.413333pt;}
.y89{bottom:708.458667pt;}
.y160{bottom:708.637333pt;}
.y272{bottom:711.872000pt;}
.y122{bottom:713.673333pt;}
.y1d8{bottom:716.436000pt;}
.ycc{bottom:716.704000pt;}
.y9{bottom:716.993333pt;}
.y240{bottom:717.100000pt;}
.y15f{bottom:720.637333pt;}
.y4a{bottom:720.733333pt;}
.yb2{bottom:720.773333pt;}
.y158{bottom:721.093333pt;}
.y297{bottom:721.732000pt;}
.yf1{bottom:722.413333pt;}
.y88{bottom:722.458667pt;}
.y271{bottom:723.985333pt;}
.y121{bottom:727.673333pt;}
.y147{bottom:728.929333pt;}
.y1d7{bottom:730.436000pt;}
.y296{bottom:730.504000pt;}
.y23f{bottom:731.100000pt;}
.y157{bottom:731.672000pt;}
.y8{bottom:732.070667pt;}
.y146{bottom:733.464000pt;}
.y149{bottom:733.540000pt;}
.y148{bottom:733.796000pt;}
.y49{bottom:734.733333pt;}
.yb1{bottom:734.773333pt;}
.y156{bottom:735.093333pt;}
.y270{bottom:736.098667pt;}
.yf0{bottom:736.413333pt;}
.y87{bottom:736.458667pt;}
.y145{bottom:737.300000pt;}
.y120{bottom:741.673333pt;}
.y1d6{bottom:744.436000pt;}
.y23e{bottom:745.100000pt;}
.ycb{bottom:745.764000pt;}
.y295{bottom:746.970667pt;}
.y1a0{bottom:746.992000pt;}
.y48{bottom:748.733333pt;}
.y207{bottom:748.773333pt;}
.y155{bottom:749.093333pt;}
.yb0{bottom:750.413333pt;}
.y86{bottom:750.458667pt;}
.y26f{bottom:752.722667pt;}
.y1d5{bottom:755.013333pt;}
.y11f{bottom:755.673333pt;}
.y294{bottom:755.742667pt;}
.y1d4{bottom:758.436000pt;}
.y23d{bottom:759.100000pt;}
.yca{bottom:759.764000pt;}
.y26e{bottom:761.654667pt;}
.y47{bottom:762.733333pt;}
.y154{bottom:763.093333pt;}
.yaf{bottom:764.413333pt;}
.y85{bottom:764.458667pt;}
.y293{bottom:767.698667pt;}
.y11e{bottom:769.673333pt;}
.y144{bottom:770.660000pt;}
.y1d3{bottom:772.436000pt;}
.y23c{bottom:773.100000pt;}
.y46{bottom:773.310667pt;}
.yc9{bottom:773.764000pt;}
.y26d{bottom:773.768000pt;}
.y206{bottom:774.992000pt;}
.y45{bottom:776.733333pt;}
.yae{bottom:778.413333pt;}
.y84{bottom:778.458667pt;}
.y7{bottom:781.784000pt;}
.y153{bottom:783.070667pt;}
.y11d{bottom:783.673333pt;}
.y292{bottom:784.164000pt;}
.y143{bottom:784.660000pt;}
.y26c{bottom:785.881333pt;}
.y1d2{bottom:786.436000pt;}
.y23b{bottom:787.100000pt;}
.yc8{bottom:787.764000pt;}
.y44{bottom:790.733333pt;}
.yad{bottom:792.413333pt;}
.y83{bottom:792.458667pt;}
.y291{bottom:792.937333pt;}
.y11c{bottom:797.673333pt;}
.y142{bottom:798.660000pt;}
.y1d1{bottom:800.436000pt;}
.y23a{bottom:801.100000pt;}
.yc7{bottom:801.764000pt;}
.y26b{bottom:802.505333pt;}
.y43{bottom:804.733333pt;}
.yac{bottom:806.413333pt;}
.y82{bottom:806.458667pt;}
.y11b{bottom:808.252000pt;}
.y290{bottom:809.402667pt;}
.y11a{bottom:810.113333pt;}
.y26a{bottom:811.436000pt;}
.y119{bottom:811.673333pt;}
.y6{bottom:813.784000pt;}
.y1d0{bottom:814.436000pt;}
.y239{bottom:815.100000pt;}
.yc6{bottom:815.764000pt;}
.y19f{bottom:816.992000pt;}
.y81{bottom:817.037333pt;}
.y28f{bottom:818.176000pt;}
.y42{bottom:818.733333pt;}
.yab{bottom:820.413333pt;}
.y80{bottom:820.458667pt;}
.y141{bottom:820.773333pt;}
.y140{bottom:821.030667pt;}
.y13f{bottom:825.201333pt;}
.y13c{bottom:825.301333pt;}
.y118{bottom:825.673333pt;}
.y13b{bottom:825.910667pt;}
.y269{bottom:828.061333pt;}
.y1cf{bottom:828.436000pt;}
.y238{bottom:829.100000pt;}
.yc5{bottom:829.764000pt;}
.y136{bottom:830.445333pt;}
.y41{bottom:832.733333pt;}
.y135{bottom:834.281333pt;}
.yaa{bottom:834.413333pt;}
.y28e{bottom:834.641333pt;}
.y13a{bottom:835.456000pt;}
.y139{bottom:835.649333pt;}
.y7f{bottom:836.784000pt;}
.y268{bottom:836.992000pt;}
.y117{bottom:839.673333pt;}
.y13e{bottom:840.102667pt;}
.y13d{bottom:840.358667pt;}
.y7e{bottom:840.436000pt;}
.y138{bottom:841.918667pt;}
.y1ce{bottom:842.436000pt;}
.y237{bottom:843.100000pt;}
.y28d{bottom:843.414667pt;}
.yc4{bottom:843.764000pt;}
.y5{bottom:845.784000pt;}
.y40{bottom:846.733333pt;}
.y137{bottom:848.189333pt;}
.ya9{bottom:848.413333pt;}
.y267{bottom:853.616000pt;}
.y116{bottom:853.673333pt;}
.y1cd{bottom:856.436000pt;}
.y236{bottom:857.100000pt;}
.yc3{bottom:857.764000pt;}
.y28c{bottom:859.880000pt;}
.y3f{bottom:860.733333pt;}
.ya8{bottom:862.413333pt;}
.y266{bottom:862.548000pt;}
.y115{bottom:869.282667pt;}
.y1cc{bottom:870.436000pt;}
.y235{bottom:871.100000pt;}
.yc2{bottom:871.764000pt;}
.y28b{bottom:873.164000pt;}
.y134{bottom:874.006667pt;}
.y265{bottom:874.661333pt;}
.y3e{bottom:874.733333pt;}
.ya7{bottom:876.413333pt;}
.y4{bottom:877.784000pt;}
.y28a{bottom:881.936000pt;}
.y1cb{bottom:884.436000pt;}
.y114{bottom:884.908000pt;}
.y234{bottom:885.100000pt;}
.yc1{bottom:885.764000pt;}
.y264{bottom:886.774667pt;}
.y152{bottom:886.992000pt;}
.y133{bottom:888.006667pt;}
.y3d{bottom:888.733333pt;}
.y7d{bottom:890.413333pt;}
.y289{bottom:898.402667pt;}
.y1ca{bottom:898.436000pt;}
.y233{bottom:899.100000pt;}
.yc0{bottom:899.764000pt;}
.ya6{bottom:900.992000pt;}
.y3c{bottom:902.733333pt;}
.y263{bottom:903.398667pt;}
.y7c{bottom:904.413333pt;}
.y3{bottom:909.784000pt;}
.y132{bottom:910.508000pt;}
.y288{bottom:911.685333pt;}
.y131{bottom:912.368000pt;}
.y1c9{bottom:912.436000pt;}
.y232{bottom:913.100000pt;}
.ybf{bottom:913.764000pt;}
.y3b{bottom:916.733333pt;}
.y262{bottom:916.840000pt;}
.y7b{bottom:918.413333pt;}
.y287{bottom:920.458667pt;}
.y12e{bottom:922.004000pt;}
.y12d{bottom:925.426667pt;}
.y130{bottom:925.882667pt;}
.y39{bottom:928.992000pt;}
.y3a{bottom:929.185333pt;}
.y12f{bottom:931.248000pt;}
.y38{bottom:932.413333pt;}
.y2{bottom:985.684000pt;}
.y1{bottom:1004.280000pt;}
.h1d{height:23.000000pt;}
.h31{height:29.784000pt;}
.h6{height:30.128000pt;}
.h3e{height:30.933333pt;}
.h36{height:33.230400pt;}
.h8{height:33.415019pt;}
.h27{height:33.667200pt;}
.h2a{height:34.254400pt;}
.h28{height:36.480000pt;}
.h3f{height:39.560000pt;}
.h41{height:40.080000pt;}
.h13{height:40.921067pt;}
.h15{height:40.926400pt;}
.h40{height:40.960000pt;}
.h22{height:41.694400pt;}
.h20{height:41.699733pt;}
.h25{height:42.617067pt;}
.h7{height:44.117333pt;}
.h9{height:44.335010pt;}
.h1c{height:46.336000pt;}
.h1{height:46.609340pt;}
.h1b{height:47.317333pt;}
.hb{height:47.472000pt;}
.hd{height:48.096000pt;}
.h1e{height:48.670933pt;}
.he{height:48.676267pt;}
.h18{height:48.938667pt;}
.h3d{height:49.152000pt;}
.h2b{height:54.336000pt;}
.h1f{height:54.515733pt;}
.ha{height:55.472128pt;}
.h5{height:55.680000pt;}
.h4{height:56.064000pt;}
.hf{height:57.381333pt;}
.h12{height:58.464000pt;}
.h17{height:59.568000pt;}
.h1a{height:60.384000pt;}
.h23{height:61.157333pt;}
.h3c{height:61.162667pt;}
.h19{height:61.781333pt;}
.h24{height:68.201067pt;}
.h26{height:70.288000pt;}
.hc{height:73.344000pt;}
.h33{height:74.330667pt;}
.h2f{height:79.589333pt;}
.h10{height:79.648000pt;}
.h39{height:83.392000pt;}
.h16{height:86.261333pt;}
.h14{height:87.029333pt;}
.h21{height:87.034667pt;}
.h3b{height:88.384000pt;}
.h37{height:91.050667pt;}
.h2{height:96.016000pt;}
.h11{height:106.826667pt;}
.h30{height:107.146667pt;}
.h2d{height:120.512000pt;}
.h3{height:123.733333pt;}
.h2c{height:124.000000pt;}
.h2e{height:124.005333pt;}
.h29{height:128.602667pt;}
.h34{height:142.816000pt;}
.h35{height:150.256000pt;}
.h3a{height:162.149333pt;}
.h38{height:163.365333pt;}
.h32{height:187.610667pt;}
.h0{height:1056.000000pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:38.881333pt;}
.x1{left:46.850667pt;}
.x2{left:58.806667pt;}
.x3{left:64.120000pt;}
.x4{left:66.776000pt;}
.x40{left:71.129333pt;}
.x41{left:78.662667pt;}
.x5{left:82.716000pt;}
.x76{left:100.090667pt;}
.x42{left:101.377333pt;}
.x78{left:104.536000pt;}
.x77{left:107.624000pt;}
.x43{left:109.960000pt;}
.x79{left:112.068000pt;}
.x62{left:115.257333pt;}
.x63{left:122.790667pt;}
.x6f{left:128.322667pt;}
.x48{left:135.353333pt;}
.x69{left:137.142667pt;}
.x7a{left:138.212000pt;}
.x49{left:141.773333pt;}
.x6a{left:144.676000pt;}
.x7b{left:145.744000pt;}
.x4a{left:149.306667pt;}
.x26{left:155.368000pt;}
.x82{left:156.384000pt;}
.x88{left:159.142667pt;}
.x27{left:162.901333pt;}
.x2e{left:164.198667pt;}
.x89{left:166.676000pt;}
.x2f{left:171.732000pt;}
.x70{left:181.334667pt;}
.x71{left:188.868000pt;}
.x22{left:195.617333pt;}
.x7c{left:200.450667pt;}
.x23{left:203.150667pt;}
.x21{left:206.441333pt;}
.x7d{left:207.984000pt;}
.x1d{left:213.128000pt;}
.x8a{left:216.314667pt;}
.x1e{left:218.646667pt;}
.x2c{left:223.560000pt;}
.x44{left:224.910667pt;}
.x74{left:226.178667pt;}
.x2d{left:231.092000pt;}
.x45{left:232.444000pt;}
.x75{left:233.712000pt;}
.x32{left:236.992000pt;}
.x33{left:244.525333pt;}
.x66{left:246.685333pt;}
.x1f{left:255.618667pt;}
.x4b{left:257.490667pt;}
.x20{left:260.088000pt;}
.x28{left:263.433333pt;}
.x4c{left:265.024000pt;}
.x72{left:266.344000pt;}
.x29{left:270.965333pt;}
.x73{left:273.876000pt;}
.x24{left:292.630667pt;}
.x86{left:293.797333pt;}
.x25{left:300.164000pt;}
.x87{left:301.329333pt;}
.x46{left:303.918667pt;}
.x47{left:311.452000pt;}
.x85{left:323.529333pt;}
.x30{left:331.905333pt;}
.x31{left:339.438667pt;}
.x83{left:346.002667pt;}
.x2a{left:348.436000pt;}
.x84{left:353.534667pt;}
.x2b{left:355.969333pt;}
.x67{left:368.026667pt;}
.x68{left:375.558667pt;}
.x6{left:408.140000pt;}
.x6b{left:413.453333pt;}
.x6d{left:414.560000pt;}
.x6e{left:422.092000pt;}
.x35{left:432.049333pt;}
.x3a{left:439.408000pt;}
.x9{left:449.988000pt;}
.x8{left:451.842667pt;}
.x16{left:465.378667pt;}
.xa{left:472.904000pt;}
.x64{left:474.433333pt;}
.x65{left:481.966667pt;}
.x4d{left:492.797333pt;}
.x55{left:494.606667pt;}
.x17{left:498.641333pt;}
.x56{left:504.813333pt;}
.x4e{left:506.017333pt;}
.xb{left:508.432000pt;}
.x57{left:511.069333pt;}
.x3b{left:515.121333pt;}
.xc{left:516.316000pt;}
.x34{left:523.604000pt;}
.x18{left:524.946667pt;}
.xd{left:528.700000pt;}
.x19{left:530.465333pt;}
.x58{left:532.217333pt;}
.x7{left:533.909333pt;}
.x36{left:536.612000pt;}
.x37{left:544.145333pt;}
.x51{left:547.620000pt;}
.x59{left:549.909333pt;}
.x60{left:552.789333pt;}
.x1a{left:566.578667pt;}
.x52{left:568.190667pt;}
.xe{left:571.312000pt;}
.x53{left:575.722667pt;}
.xf{left:576.830667pt;}
.x7f{left:579.733333pt;}
.x4f{left:583.440000pt;}
.x5c{left:586.604000pt;}
.x50{left:590.973333pt;}
.x5d{left:592.846667pt;}
.x7e{left:593.905333pt;}
.x5e{left:599.825333pt;}
.x61{left:600.766667pt;}
.x5a{left:601.862667pt;}
.x5b{left:608.841333pt;}
.x54{left:610.040000pt;}
.x10{left:611.865333pt;}
.x11{left:618.249333pt;}
.x12{left:630.633333pt;}
.x13{left:635.102667pt;}
.x5f{left:637.629333pt;}
.x14{left:672.194667pt;}
.x15{left:676.664000pt;}
.x3c{left:679.206667pt;}
.x3d{left:686.738667pt;}
.x6c{left:694.430667pt;}
.x38{left:695.916000pt;}
.x39{left:703.449333pt;}
.x80{left:714.624000pt;}
.x3e{left:717.360000pt;}
.x81{left:722.156000pt;}
.x3f{left:724.892000pt;}
.x1c{left:772.666667pt;}
}




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