
    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_9fe82211db2bf3050c1e0550.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.857910;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_93b823866635b029a911473c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_697d96329489d775ca30c2a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_ab51587567d91a56f60a32de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825195;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_e298add31d7b9a3d12522509.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_9ff421c4a26d5fb45d35b05c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861328;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_2a631159ba5a4ffeaaf27745.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922363;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_1d46dbe1efeb488cafa7b3dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;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_1ba766eb3383959ae9bd21ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854980;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_a901b988e60376125a3ff178.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919922;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_1eb2c67389e2b45595b5b519.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_fa4ba6845d198e12a6f38776.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.916992;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_d79fb53d33d9a5cd99bd6782.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b9cd762bc31ae397e73e5ad6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_b99bd63ecf14c29c1bbe2f60.woff2')format("woff");}.fff{font-family:fff;line-height:0.682129;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_74651cd54f6878ef78a9a777.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-2.314800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:24.670200px;}
.v3{vertical-align:27.000000px;}
.v4{vertical-align:29.333400px;}
.v2{vertical-align:48.600000px;}
.v8{vertical-align:51.696600px;}
.v7{vertical-align:54.000000px;}
.v6{vertical-align:56.338800px;}
.v1{vertical-align:144.000000px;}
.ls1{letter-spacing:-7.506000px;}
.ls31{letter-spacing:-7.092000px;}
.ls30{letter-spacing:-7.086000px;}
.ls24{letter-spacing:-6.774000px;}
.ls25{letter-spacing:-6.768000px;}
.ls32{letter-spacing:-6.474000px;}
.ls7{letter-spacing:-6.444000px;}
.ls37{letter-spacing:-5.508000px;}
.ls10{letter-spacing:-5.484000px;}
.ls8{letter-spacing:-5.478000px;}
.ls33{letter-spacing:-5.472000px;}
.lsf{letter-spacing:-5.160000px;}
.ls6{letter-spacing:-5.154000px;}
.ls2{letter-spacing:-5.070000px;}
.ls3{letter-spacing:-5.052000px;}
.ls34{letter-spacing:-4.836000px;}
.ls9{letter-spacing:-4.692000px;}
.ls29{letter-spacing:-4.644000px;}
.ls2e{letter-spacing:-4.632000px;}
.ls2d{letter-spacing:-4.614000px;}
.ls2f{letter-spacing:-4.602000px;}
.lsb{letter-spacing:-4.380000px;}
.ls20{letter-spacing:-4.260000px;}
.ls23{letter-spacing:-3.510000px;}
.ls2b{letter-spacing:-3.024000px;}
.ls1c{letter-spacing:-3.000000px;}
.ls2a{letter-spacing:-2.970000px;}
.ls27{letter-spacing:-2.916000px;}
.ls2c{letter-spacing:-1.404000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.420000px;}
.ls1d{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.240000px;}
.ls12{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.120000px;}
.ls1f{letter-spacing:-0.060000px;}
.ls15{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.030000px;}
.ls5{letter-spacing:0.034200px;}
.ls36{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.108000px;}
.lse{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.420000px;}
.ls38{letter-spacing:0.432600px;}
.ls17{letter-spacing:0.480000px;}
.ls19{letter-spacing:0.540000px;}
.ls39{letter-spacing:0.541200px;}
.ls1a{letter-spacing:0.702000px;}
.ls26{letter-spacing:0.840000px;}
.ls22{letter-spacing:0.918000px;}
.ls21{letter-spacing:1.020000px;}
.ls16{letter-spacing:1.140000px;}
.ls18{letter-spacing:1.188000px;}
.ls28{letter-spacing:1.350000px;}
.ls4{letter-spacing:78.762000px;}
.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;}
}
.ws17{word-spacing:-62.051616px;}
.ws102{word-spacing:-55.350000px;}
.ws101{word-spacing:-51.084000px;}
.ws105{word-spacing:-50.976000px;}
.ws103{word-spacing:-41.704200px;}
.ws1{word-spacing:-32.208000px;}
.ws125{word-spacing:-17.160000px;}
.ws18{word-spacing:-14.520000px;}
.wsea{word-spacing:-14.040000px;}
.ws70{word-spacing:-13.740000px;}
.ws6e{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.560000px;}
.ws6b{word-spacing:-13.440000px;}
.ws8c{word-spacing:-13.200000px;}
.ws6a{word-spacing:-13.080000px;}
.ws6f{word-spacing:-13.068000px;}
.wsc3{word-spacing:-12.960000px;}
.ws8e{word-spacing:-12.840000px;}
.ws8f{word-spacing:-12.660000px;}
.ws71{word-spacing:-12.582000px;}
.ws46{word-spacing:-11.988000px;}
.ws47{word-spacing:-11.934000px;}
.ws8d{word-spacing:-10.200000px;}
.wsc2{word-spacing:-8.940000px;}
.ws45{word-spacing:-8.820000px;}
.ws2{word-spacing:-8.508000px;}
.wsc5{word-spacing:-8.370000px;}
.wsda{word-spacing:-7.752000px;}
.ws11d{word-spacing:-7.434000px;}
.ws11c{word-spacing:-7.428000px;}
.ws26{word-spacing:-7.128000px;}
.ws13d{word-spacing:-6.336000px;}
.wse4{word-spacing:-6.204000px;}
.ws11a{word-spacing:-6.072000px;}
.ws7c{word-spacing:-5.610000px;}
.ws7d{word-spacing:-5.214000px;}
.ws19{word-spacing:-5.148000px;}
.wsd2{word-spacing:-5.016000px;}
.ws123{word-spacing:-4.950000px;}
.ws129{word-spacing:-4.752000px;}
.ws10{word-spacing:-4.620000px;}
.ws2d{word-spacing:-4.488000px;}
.ws82{word-spacing:-4.422000px;}
.wsb7{word-spacing:-4.356000px;}
.wsfe{word-spacing:-4.290000px;}
.wsd8{word-spacing:-4.224000px;}
.wsbb{word-spacing:-4.158000px;}
.ws137{word-spacing:-4.092000px;}
.ws2e{word-spacing:-4.026000px;}
.ws6{word-spacing:-3.480000px;}
.wsca{word-spacing:-3.432000px;}
.ws61{word-spacing:-3.300000px;}
.ws1a{word-spacing:-3.234000px;}
.ws12e{word-spacing:-3.168000px;}
.wscf{word-spacing:-3.036000px;}
.ws3d{word-spacing:-2.970000px;}
.ws53{word-spacing:-2.838000px;}
.ws27{word-spacing:-2.772000px;}
.ws1b{word-spacing:-2.706000px;}
.ws7b{word-spacing:-2.640000px;}
.ws3a{word-spacing:-2.574000px;}
.ws92{word-spacing:-2.508000px;}
.ws10c{word-spacing:-2.442000px;}
.wsb1{word-spacing:-2.376000px;}
.ws64{word-spacing:-2.244000px;}
.ws7f{word-spacing:-2.178000px;}
.wsa2{word-spacing:-2.112000px;}
.ws120{word-spacing:-2.046000px;}
.ws11b{word-spacing:-1.980000px;}
.ws3c{word-spacing:-1.914000px;}
.ws28{word-spacing:-1.848000px;}
.ws23{word-spacing:-1.782000px;}
.ws25{word-spacing:-1.716000px;}
.wsf9{word-spacing:-1.650000px;}
.wsf6{word-spacing:-1.584000px;}
.ws7{word-spacing:-1.560000px;}
.ws5a{word-spacing:-1.518000px;}
.ws9b{word-spacing:-1.452000px;}
.ws5{word-spacing:-1.440000px;}
.ws52{word-spacing:-1.386000px;}
.ws1c{word-spacing:-1.320000px;}
.ws113{word-spacing:-1.254000px;}
.wsb3{word-spacing:-1.188000px;}
.ws79{word-spacing:-1.140000px;}
.wscc{word-spacing:-1.122000px;}
.wsd7{word-spacing:-1.056000px;}
.wsc8{word-spacing:-1.020000px;}
.wsa0{word-spacing:-0.924000px;}
.wsc9{word-spacing:-0.918000px;}
.wsb5{word-spacing:-0.858000px;}
.ws73{word-spacing:-0.726000px;}
.ws13{word-spacing:-0.720000px;}
.ws15{word-spacing:-0.684000px;}
.ws121{word-spacing:-0.660000px;}
.ws16{word-spacing:-0.636000px;}
.ws14{word-spacing:-0.624000px;}
.ws135{word-spacing:-0.594000px;}
.ws9e{word-spacing:-0.528000px;}
.ws5b{word-spacing:-0.462000px;}
.ws2b{word-spacing:-0.396000px;}
.ws8{word-spacing:-0.360000px;}
.ws67{word-spacing:-0.330000px;}
.ws65{word-spacing:-0.264000px;}
.wsc7{word-spacing:-0.240000px;}
.ws5e{word-spacing:-0.216000px;}
.ws3f{word-spacing:-0.198000px;}
.ws34{word-spacing:-0.132000px;}
.ws77{word-spacing:-0.108000px;}
.wsa9{word-spacing:-0.066000px;}
.ws5c{word-spacing:-0.054000px;}
.ws4f{word-spacing:-0.018000px;}
.wsf4{word-spacing:-0.006000px;}
.ws3{word-spacing:0.000000px;}
.ws78{word-spacing:0.054000px;}
.ws90{word-spacing:0.060000px;}
.wsf5{word-spacing:0.066000px;}
.ws12{word-spacing:0.084000px;}
.ws114{word-spacing:0.132000px;}
.wsc6{word-spacing:0.180000px;}
.ws55{word-spacing:0.198000px;}
.ws5d{word-spacing:0.240000px;}
.wsb6{word-spacing:0.264000px;}
.ws33{word-spacing:0.330000px;}
.ws117{word-spacing:0.396000px;}
.ws5f{word-spacing:0.462000px;}
.ws21{word-spacing:0.528000px;}
.ws98{word-spacing:0.594000px;}
.ws83{word-spacing:0.660000px;}
.wsa6{word-spacing:0.726000px;}
.ws7e{word-spacing:0.792000px;}
.wsee{word-spacing:0.924000px;}
.wse6{word-spacing:0.990000px;}
.ws11{word-spacing:1.020000px;}
.wsbf{word-spacing:1.056000px;}
.ws85{word-spacing:1.122000px;}
.ws62{word-spacing:1.188000px;}
.wse{word-spacing:1.200000px;}
.wsb0{word-spacing:1.254000px;}
.ws59{word-spacing:1.320000px;}
.wsdf{word-spacing:1.386000px;}
.ws10a{word-spacing:1.404000px;}
.wse1{word-spacing:1.452000px;}
.wsbc{word-spacing:1.518000px;}
.wsb8{word-spacing:1.584000px;}
.ws13c{word-spacing:1.650000px;}
.ws109{word-spacing:1.782000px;}
.wsa1{word-spacing:1.848000px;}
.wscd{word-spacing:1.914000px;}
.wsfa{word-spacing:1.980000px;}
.ws40{word-spacing:2.046000px;}
.ws96{word-spacing:2.112000px;}
.wsff{word-spacing:2.178000px;}
.wsd1{word-spacing:2.244000px;}
.ws10f{word-spacing:2.310000px;}
.wsb9{word-spacing:2.376000px;}
.ws9f{word-spacing:2.442000px;}
.ws74{word-spacing:2.508000px;}
.ws10b{word-spacing:2.574000px;}
.ws4e{word-spacing:2.598000px;}
.ws4a{word-spacing:2.604000px;}
.ws48{word-spacing:2.640000px;}
.ws4d{word-spacing:2.676000px;}
.ws4c{word-spacing:2.682000px;}
.ws49{word-spacing:2.694000px;}
.ws56{word-spacing:2.706000px;}
.ws4b{word-spacing:2.712000px;}
.ws76{word-spacing:2.772000px;}
.wsa7{word-spacing:2.838000px;}
.ws93{word-spacing:2.970000px;}
.ws87{word-spacing:3.036000px;}
.ws95{word-spacing:3.102000px;}
.wsa3{word-spacing:3.168000px;}
.wsd0{word-spacing:3.234000px;}
.ws9{word-spacing:3.300000px;}
.ws2c{word-spacing:3.366000px;}
.ws131{word-spacing:3.432000px;}
.ws9a{word-spacing:3.498000px;}
.ws30{word-spacing:3.564000px;}
.ws2f{word-spacing:3.630000px;}
.ws128{word-spacing:3.696000px;}
.ws43{word-spacing:3.828000px;}
.ws127{word-spacing:3.852000px;}
.wsde{word-spacing:3.894000px;}
.ws10e{word-spacing:3.960000px;}
.wsa5{word-spacing:4.026000px;}
.ws10d{word-spacing:4.092000px;}
.ws41{word-spacing:4.158000px;}
.ws1e{word-spacing:4.224000px;}
.ws36{word-spacing:4.290000px;}
.ws35{word-spacing:4.356000px;}
.ws91{word-spacing:4.422000px;}
.ws4{word-spacing:4.440000px;}
.ws50{word-spacing:4.488000px;}
.wsed{word-spacing:4.620000px;}
.ws11f{word-spacing:4.686000px;}
.ws20{word-spacing:4.752000px;}
.wsba{word-spacing:4.818000px;}
.wsb{word-spacing:4.860000px;}
.ws24{word-spacing:4.884000px;}
.ws2a{word-spacing:4.950000px;}
.ws75{word-spacing:5.016000px;}
.ws22{word-spacing:5.082000px;}
.ws9c{word-spacing:5.148000px;}
.ws126{word-spacing:5.280000px;}
.ws51{word-spacing:5.346000px;}
.ws100{word-spacing:5.412000px;}
.ws122{word-spacing:5.478000px;}
.ws118{word-spacing:5.544000px;}
.ws1f{word-spacing:5.676000px;}
.wsd{word-spacing:5.700000px;}
.ws111{word-spacing:5.742000px;}
.wsd9{word-spacing:5.874000px;}
.ws81{word-spacing:6.006000px;}
.ws39{word-spacing:6.138000px;}
.wsdc{word-spacing:6.162000px;}
.wsdd{word-spacing:6.168000px;}
.wsd4{word-spacing:6.204000px;}
.ws66{word-spacing:6.270000px;}
.ws32{word-spacing:6.336000px;}
.ws112{word-spacing:6.402000px;}
.wsa4{word-spacing:6.468000px;}
.ws63{word-spacing:6.534000px;}
.wsce{word-spacing:6.600000px;}
.wsfb{word-spacing:6.666000px;}
.wsf{word-spacing:6.720000px;}
.wse3{word-spacing:6.732000px;}
.wse2{word-spacing:6.798000px;}
.ws84{word-spacing:6.864000px;}
.wsf7{word-spacing:6.930000px;}
.ws58{word-spacing:6.996000px;}
.ws12f{word-spacing:7.062000px;}
.ws31{word-spacing:7.194000px;}
.wsa{word-spacing:7.260000px;}
.wse5{word-spacing:7.326000px;}
.wsb4{word-spacing:7.392000px;}
.ws97{word-spacing:7.458000px;}
.ws57{word-spacing:7.524000px;}
.ws94{word-spacing:7.590000px;}
.ws124{word-spacing:7.656000px;}
.ws99{word-spacing:7.722000px;}
.ws60{word-spacing:7.788000px;}
.ws54{word-spacing:7.854000px;}
.wsf1{word-spacing:7.860000px;}
.wsf2{word-spacing:7.866000px;}
.wsf3{word-spacing:7.884000px;}
.ws86{word-spacing:7.920000px;}
.wsa8{word-spacing:8.052000px;}
.wsc{word-spacing:8.100000px;}
.ws13e{word-spacing:8.118000px;}
.wsf8{word-spacing:8.184000px;}
.wsd5{word-spacing:8.382000px;}
.wsd3{word-spacing:8.448000px;}
.ws37{word-spacing:8.514000px;}
.ws1d{word-spacing:8.580000px;}
.wsaf{word-spacing:8.646000px;}
.wsfd{word-spacing:8.778000px;}
.wsbd{word-spacing:8.844000px;}
.wsae{word-spacing:8.988000px;}
.wsab{word-spacing:9.042000px;}
.wsad{word-spacing:9.078000px;}
.wsaa{word-spacing:9.102000px;}
.wsac{word-spacing:9.108000px;}
.ws80{word-spacing:9.240000px;}
.ws3b{word-spacing:9.438000px;}
.ws9d{word-spacing:9.504000px;}
.wsfc{word-spacing:9.702000px;}
.ws132{word-spacing:9.768000px;}
.ws88{word-spacing:10.230000px;}
.wse0{word-spacing:10.296000px;}
.wsbe{word-spacing:10.890000px;}
.ws139{word-spacing:10.956000px;}
.ws133{word-spacing:11.154000px;}
.ws12b{word-spacing:11.178000px;}
.ws12d{word-spacing:11.220000px;}
.ws12c{word-spacing:11.292000px;}
.wscb{word-spacing:11.418000px;}
.ws110{word-spacing:11.682000px;}
.wsb2{word-spacing:11.748000px;}
.ws3e{word-spacing:11.946000px;}
.ws13a{word-spacing:12.078000px;}
.ws13b{word-spacing:12.342000px;}
.ws119{word-spacing:12.672000px;}
.ws7a{word-spacing:12.936000px;}
.ws138{word-spacing:13.860000px;}
.wsec{word-spacing:13.992000px;}
.ws12a{word-spacing:15.048000px;}
.ws11e{word-spacing:15.180000px;}
.ws38{word-spacing:15.510000px;}
.ws42{word-spacing:17.160000px;}
.ws29{word-spacing:18.612000px;}
.ws134{word-spacing:20.196000px;}
.wsd6{word-spacing:20.658000px;}
.ws115{word-spacing:21.054000px;}
.ws136{word-spacing:21.384000px;}
.ws116{word-spacing:24.222000px;}
.ws130{word-spacing:26.928000px;}
.ws104{word-spacing:29.850600px;}
.ws72{word-spacing:43.386000px;}
.wsc4{word-spacing:143.034000px;}
.ws89{word-spacing:186.870000px;}
.ws8a{word-spacing:197.484000px;}
.ws8b{word-spacing:201.612000px;}
.ws68{word-spacing:331.584000px;}
.ws69{word-spacing:414.193200px;}
.wse9{word-spacing:858.751200px;}
.wseb{word-spacing:888.715800px;}
.wse8{word-spacing:937.326000px;}
.wse7{word-spacing:944.232000px;}
.wsc1{word-spacing:1022.346000px;}
.ws6c{word-spacing:1044.492600px;}
.wsc0{word-spacing:1073.394000px;}
.wsef{word-spacing:1120.512000px;}
.ws108{word-spacing:1146.792000px;}
.ws106{word-spacing:1150.992000px;}
.ws107{word-spacing:1153.872000px;}
.ws6d{word-spacing:1194.996000px;}
.ws44{word-spacing:1214.652000px;}
.wsf0{word-spacing:1243.032000px;}
.wsdb{word-spacing:1281.672000px;}
._14{margin-left:-8.605200px;}
._4{margin-left:-7.064400px;}
._5{margin-left:-5.288400px;}
._0{margin-left:-4.056000px;}
._3{margin-left:-3.037800px;}
._1{margin-left:-1.338000px;}
._2{width:1.266000px;}
._8{width:2.316600px;}
._9{width:3.401400px;}
._20{width:4.447800px;}
._6{width:5.502000px;}
._7{width:6.852000px;}
._3d{width:25.972800px;}
._f{width:64.612800px;}
._11{width:67.246800px;}
._12{width:132.004800px;}
._10{width:141.538200px;}
._33{width:158.191800px;}
._29{width:160.976400px;}
._d{width:175.265400px;}
._e{width:211.584000px;}
._37{width:227.038200px;}
._1c{width:233.043000px;}
._1b{width:241.599000px;}
._24{width:253.053600px;}
._38{width:265.071600px;}
._32{width:283.462800px;}
._c{width:315.442200px;}
._27{width:318.561600px;}
._3b{width:327.046800px;}
._1d{width:347.279400px;}
._34{width:360.609000px;}
._26{width:373.849200px;}
._1e{width:420.169800px;}
._1f{width:429.969600px;}
._2f{width:432.044400px;}
._3c{width:465.748200px;}
._a{width:468.682800px;}
._17{width:506.937000px;}
._b{width:512.776800px;}
._25{width:530.541600px;}
._31{width:534.567600px;}
._2d{width:639.844200px;}
._2a{width:656.230800px;}
._18{width:660.315000px;}
._3a{width:677.655600px;}
._23{width:691.899000px;}
._22{width:697.493400px;}
._28{width:724.072200px;}
._36{width:745.408200px;}
._21{width:765.211200px;}
._30{width:843.184800px;}
._19{width:881.860800px;}
._1a{width:905.483400px;}
._13{width:926.713800px;}
._2e{width:949.137000px;}
._2c{width:971.158800px;}
._35{width:979.132200px;}
._15{width:1002.165600px;}
._16{width:1083.658800px;}
._2b{width:1106.458800px;}
._39{width:1108.103400px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(74,53,29);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs6{font-size:282.052800px;}
.y0{bottom:0.000000px;}
.yf9{bottom:99.606900px;}
.y195{bottom:103.286700px;}
.y8c{bottom:104.296950px;}
.y2c6{bottom:110.330700px;}
.y207{bottom:111.820800px;}
.y293{bottom:112.268250px;}
.y300{bottom:117.415650px;}
.y58{bottom:117.481650px;}
.yf8{bottom:117.608400px;}
.yc3{bottom:118.415700px;}
.y194{bottom:121.288200px;}
.y8b{bottom:122.298450px;}
.y16a{bottom:122.316600px;}
.y206{bottom:125.320800px;}
.y2c5{bottom:128.330700px;}
.y25e{bottom:128.654400px;}
.y292{bottom:130.269750px;}
.y1d2{bottom:130.448250px;}
.y2ff{bottom:135.417150px;}
.y57{bottom:135.483150px;}
.yf7{bottom:135.609900px;}
.yc2{bottom:136.417200px;}
.y205{bottom:138.820800px;}
.y193{bottom:139.289700px;}
.y8a{bottom:140.299950px;}
.y169{bottom:140.318100px;}
.y2c4{bottom:146.330700px;}
.y291{bottom:148.271250px;}
.y1d1{bottom:148.449750px;}
.y204{bottom:152.320800px;}
.y2fe{bottom:153.418650px;}
.y56{bottom:153.484650px;}
.yf6{bottom:153.611400px;}
.yc1{bottom:154.418700px;}
.y192{bottom:157.291200px;}
.y89{bottom:158.301450px;}
.y168{bottom:158.319600px;}
.y25d{bottom:161.417550px;}
.y2c3{bottom:164.330700px;}
.y203{bottom:165.820800px;}
.y290{bottom:166.272750px;}
.y2fd{bottom:171.420150px;}
.y55{bottom:171.486150px;}
.yf5{bottom:171.612900px;}
.yc0{bottom:172.420200px;}
.y1d0{bottom:174.953700px;}
.y191{bottom:175.292700px;}
.y88{bottom:176.302950px;}
.y167{bottom:176.321100px;}
.y2c2{bottom:182.330700px;}
.y28f{bottom:184.274250px;}
.y25c{bottom:184.664550px;}
.y202{bottom:188.325300px;}
.y2fc{bottom:189.421650px;}
.y54{bottom:189.487650px;}
.yf4{bottom:189.614400px;}
.ybf{bottom:190.421700px;}
.y239{bottom:190.604100px;}
.y190{bottom:193.294200px;}
.y87{bottom:194.304450px;}
.y2c1{bottom:200.330700px;}
.y201{bottom:201.825300px;}
.y28e{bottom:202.275750px;}
.y166{bottom:202.820100px;}
.y1cf{bottom:207.328950px;}
.y2fb{bottom:207.423150px;}
.y53{bottom:207.489150px;}
.y25b{bottom:207.533550px;}
.yf3{bottom:207.615900px;}
.ybe{bottom:208.423200px;}
.y238{bottom:208.605600px;}
.y4{bottom:210.994500px;}
.y18f{bottom:211.295700px;}
.y86{bottom:212.305950px;}
.y200{bottom:215.325300px;}
.y2c0{bottom:218.330700px;}
.y28d{bottom:220.277250px;}
.y165{bottom:220.821600px;}
.y1ce{bottom:220.828950px;}
.y25a{bottom:221.033550px;}
.y2fa{bottom:225.424650px;}
.y52{bottom:225.490650px;}
.yf2{bottom:225.617400px;}
.ybd{bottom:226.424700px;}
.y237{bottom:226.607100px;}
.y18e{bottom:229.297200px;}
.y85{bottom:230.307450px;}
.y3{bottom:235.582500px;}
.y2bf{bottom:236.330700px;}
.y1ff{bottom:237.829800px;}
.y28c{bottom:238.278750px;}
.y164{bottom:238.823100px;}
.y1cd{bottom:243.333450px;}
.y2f9{bottom:243.426150px;}
.y51{bottom:243.492150px;}
.y259{bottom:243.538050px;}
.yf1{bottom:243.618900px;}
.ybc{bottom:244.426200px;}
.y236{bottom:244.608600px;}
.y18d{bottom:247.298700px;}
.y84{bottom:248.308950px;}
.y1c9{bottom:249.503700px;}
.y1fe{bottom:251.329800px;}
.y2be{bottom:254.330700px;}
.y28b{bottom:256.280250px;}
.y163{bottom:256.824600px;}
.y1cc{bottom:256.833450px;}
.y258{bottom:257.038050px;}
.y2f8{bottom:261.427650px;}
.y50{bottom:261.493650px;}
.ybb{bottom:262.427700px;}
.y235{bottom:262.610100px;}
.y1fd{bottom:264.829800px;}
.y18c{bottom:265.300200px;}
.y83{bottom:266.310450px;}
.yf0{bottom:270.117900px;}
.y2bd{bottom:272.330700px;}
.y28a{bottom:274.281750px;}
.y162{bottom:274.826100px;}
.y1cb{bottom:279.337950px;}
.y2f7{bottom:279.429150px;}
.y4f{bottom:279.486150px;}
.y257{bottom:279.538800px;}
.yba{bottom:280.429200px;}
.y18b{bottom:283.301700px;}
.y82{bottom:284.311950px;}
.y1fc{bottom:287.698800px;}
.yef{bottom:288.119400px;}
.y234{bottom:289.109100px;}
.y126{bottom:289.273350px;}
.y2bc{bottom:290.330700px;}
.y289{bottom:292.283250px;}
.y161{bottom:292.827600px;}
.y1ca{bottom:292.837950px;}
.y2f6{bottom:297.430650px;}
.y4e{bottom:297.487650px;}
.yb9{bottom:298.430700px;}
.y18a{bottom:301.303200px;}
.y81{bottom:302.313450px;}
.yee{bottom:306.120900px;}
.y233{bottom:307.110600px;}
.y125{bottom:307.274850px;}
.y2bb{bottom:308.330700px;}
.y288{bottom:310.284750px;}
.y1fb{bottom:310.567800px;}
.y160{bottom:310.829100px;}
.y2f5{bottom:315.432150px;}
.y4d{bottom:315.489150px;}
.y1c8{bottom:315.917400px;}
.yb8{bottom:316.432200px;}
.y19{bottom:318.504450px;}
.y189{bottom:319.304700px;}
.y80{bottom:320.314950px;}
.y256{bottom:320.586900px;}
.y1fa{bottom:324.067800px;}
.yed{bottom:324.122400px;}
.y232{bottom:325.112100px;}
.y124{bottom:325.276350px;}
.y2ba{bottom:326.330700px;}
.y287{bottom:328.286250px;}
.y15f{bottom:328.830600px;}
.y2f4{bottom:333.433650px;}
.y4c{bottom:333.490650px;}
.yb7{bottom:334.433700px;}
.y17{bottom:336.504450px;}
.y188{bottom:337.306200px;}
.y1f9{bottom:337.567800px;}
.y7f{bottom:338.316450px;}
.y1c7{bottom:339.002400px;}
.yec{bottom:342.123900px;}
.y231{bottom:343.113600px;}
.y123{bottom:343.277850px;}
.y2b9{bottom:344.330700px;}
.y286{bottom:346.287750px;}
.y1c3{bottom:351.339300px;}
.y2f3{bottom:351.435150px;}
.y4b{bottom:351.492150px;}
.yb6{bottom:352.435200px;}
.y1c6{bottom:352.502400px;}
.y255{bottom:352.596900px;}
.y16{bottom:354.504450px;}
.y15e{bottom:355.329600px;}
.y1f8{bottom:360.068550px;}
.yeb{bottom:360.125400px;}
.y230{bottom:361.115100px;}
.y122{bottom:361.279350px;}
.y2b8{bottom:362.330700px;}
.y187{bottom:363.810000px;}
.y285{bottom:364.289250px;}
.y7e{bottom:364.820400px;}
.y2f2{bottom:369.436650px;}
.y4a{bottom:369.493650px;}
.yb5{bottom:370.436700px;}
.y15{bottom:372.504450px;}
.y15d{bottom:373.331100px;}
.y1c5{bottom:375.006900px;}
.yea{bottom:378.126900px;}
.y22f{bottom:379.116600px;}
.y121{bottom:379.280850px;}
.y2b7{bottom:380.330700px;}
.y284{bottom:382.290750px;}
.y254{bottom:384.982050px;}
.y2f1{bottom:387.438150px;}
.y49{bottom:387.484650px;}
.yb4{bottom:388.438200px;}
.y1c4{bottom:388.506900px;}
.y14{bottom:390.504450px;}
.y15c{bottom:391.332600px;}
.y22e{bottom:397.118100px;}
.y120{bottom:397.282350px;}
.y2b6{bottom:398.330700px;}
.y253{bottom:398.482050px;}
.y1f7{bottom:401.118900px;}
.y186{bottom:401.817900px;}
.y7d{bottom:402.828150px;}
.ye9{bottom:404.625900px;}
.y2f0{bottom:405.439650px;}
.y48{bottom:405.486150px;}
.yb3{bottom:406.439700px;}
.y13{bottom:408.504450px;}
.y283{bottom:408.789750px;}
.y15b{bottom:409.334100px;}
.y1c2{bottom:411.000150px;}
.y22d{bottom:415.119600px;}
.y11f{bottom:415.283850px;}
.y2b5{bottom:416.330700px;}
.y252{bottom:421.729050px;}
.ye8{bottom:422.627400px;}
.y2ef{bottom:423.441150px;}
.y47{bottom:423.487650px;}
.yb2{bottom:424.441200px;}
.y1c1{bottom:424.500150px;}
.y1f6{bottom:424.612500px;}
.y12{bottom:426.504450px;}
.y282{bottom:426.791250px;}
.y15a{bottom:427.335600px;}
.y11e{bottom:433.285350px;}
.y2b4{bottom:434.330700px;}
.y7c{bottom:436.110600px;}
.y185{bottom:436.678500px;}
.y1c0{bottom:438.000150px;}
.ye7{bottom:440.628900px;}
.y2ee{bottom:441.442650px;}
.y46{bottom:441.489150px;}
.y22c{bottom:441.618600px;}
.yb1{bottom:442.442700px;}
.y1f5{bottom:442.614000px;}
.y11{bottom:444.504450px;}
.y281{bottom:444.792750px;}
.y251{bottom:444.976050px;}
.y7b{bottom:448.260600px;}
.y184{bottom:450.178500px;}
.y11d{bottom:451.286850px;}
.y324{bottom:452.293650px;}
.y2b3{bottom:452.330700px;}
.y159{bottom:453.834600px;}
.ye6{bottom:458.630400px;}
.y2ed{bottom:459.444150px;}
.y45{bottom:459.490650px;}
.y22b{bottom:459.620100px;}
.y1bb{bottom:459.926550px;}
.yb0{bottom:460.444200px;}
.y1bf{bottom:460.504650px;}
.y1f4{bottom:460.615500px;}
.y280{bottom:462.794250px;}
.y250{bottom:467.480550px;}
.y11c{bottom:469.288350px;}
.y323{bottom:470.295150px;}
.y2b2{bottom:470.330700px;}
.y158{bottom:471.836100px;}
.y1be{bottom:474.004650px;}
.ye5{bottom:476.631900px;}
.y2ec{bottom:477.445650px;}
.y44{bottom:477.492150px;}
.y22a{bottom:477.621600px;}
.y182{bottom:477.691500px;}
.yaf{bottom:478.445700px;}
.y27f{bottom:480.795750px;}
.y24f{bottom:480.980550px;}
.y7a{bottom:484.710600px;}
.y1f3{bottom:487.114500px;}
.y2{bottom:487.225050px;}
.y11b{bottom:487.289850px;}
.y322{bottom:488.296650px;}
.y2b1{bottom:488.330700px;}
.y157{bottom:489.837600px;}
.y181{bottom:491.191500px;}
.ye4{bottom:494.633400px;}
.y2eb{bottom:495.447150px;}
.y43{bottom:495.493650px;}
.y229{bottom:495.623100px;}
.yae{bottom:496.444200px;}
.y1bd{bottom:496.509150px;}
.y79{bottom:496.860600px;}
.y183{bottom:497.941500px;}
.y24e{bottom:503.481300px;}
.y180{bottom:504.691500px;}
.y1f2{bottom:505.116000px;}
.y11a{bottom:505.291350px;}
.y321{bottom:506.298150px;}
.y2b0{bottom:506.330700px;}
.y156{bottom:507.839100px;}
.y1bc{bottom:510.009150px;}
.ye3{bottom:512.634900px;}
.y2ea{bottom:513.448650px;}
.y42{bottom:513.480150px;}
.yad{bottom:514.445700px;}
.y27e{bottom:515.803500px;}
.y17f{bottom:518.191500px;}
.y228{bottom:522.122100px;}
.y1f1{bottom:523.117500px;}
.y119{bottom:523.292850px;}
.y320{bottom:524.299650px;}
.y2af{bottom:524.330700px;}
.y155{bottom:525.840600px;}
.ye2{bottom:530.636400px;}
.y2e9{bottom:531.450150px;}
.y41{bottom:531.481650px;}
.yac{bottom:532.442700px;}
.y1ba{bottom:532.502400px;}
.y78{bottom:532.727250px;}
.y227{bottom:540.123600px;}
.y1f0{bottom:541.119000px;}
.y118{bottom:541.294350px;}
.y31f{bottom:542.301150px;}
.y2ae{bottom:542.330700px;}
.y154{bottom:543.842100px;}
.y24d{bottom:544.529550px;}
.y17e{bottom:545.704500px;}
.y1b9{bottom:546.002400px;}
.ye1{bottom:548.637900px;}
.y2e8{bottom:549.451650px;}
.y40{bottom:549.483150px;}
.yab{bottom:550.444200px;}
.y27d{bottom:553.786200px;}
.y77{bottom:557.027250px;}
.y75{bottom:557.610750px;}
.y226{bottom:558.125100px;}
.y1ef{bottom:559.120500px;}
.y17d{bottom:559.204500px;}
.y117{bottom:559.295850px;}
.y31e{bottom:560.302650px;}
.y2ad{bottom:560.330700px;}
.y153{bottom:561.843600px;}
.ye0{bottom:566.639400px;}
.y2e7{bottom:567.453150px;}
.y3f{bottom:567.484650px;}
.yaa{bottom:568.445700px;}
.y1b7{bottom:568.506900px;}
.y27c{bottom:571.787700px;}
.y17c{bottom:572.704500px;}
.y225{bottom:576.126600px;}
.y24c{bottom:576.539550px;}
.y116{bottom:577.297350px;}
.y31d{bottom:578.304150px;}
.y2ac{bottom:578.330700px;}
.y76{bottom:581.910750px;}
.y1b6{bottom:582.006900px;}
.ydf{bottom:584.640900px;}
.y2e6{bottom:585.454650px;}
.y3e{bottom:585.486150px;}
.y1ee{bottom:585.619500px;}
.y18{bottom:585.834450px;}
.ya9{bottom:586.444200px;}
.y152{bottom:588.342600px;}
.y1b8{bottom:588.756900px;}
.y27b{bottom:589.789200px;}
.y224{bottom:594.128100px;}
.y1b0{bottom:594.928650px;}
.y115{bottom:595.298850px;}
.y1b5{bottom:595.506900px;}
.y31c{bottom:596.305650px;}
.y2ab{bottom:596.330700px;}
.y17b{bottom:600.217500px;}
.yde{bottom:602.642400px;}
.y2e5{bottom:603.456150px;}
.y3d{bottom:603.487650px;}
.y1ed{bottom:603.621000px;}
.y10{bottom:603.834450px;}
.ya8{bottom:604.445700px;}
.y74{bottom:605.627250px;}
.y151{bottom:606.344100px;}
.y27a{bottom:607.790700px;}
.y24b{bottom:608.938200px;}
.y1b4{bottom:609.006900px;}
.y114{bottom:613.300350px;}
.y17a{bottom:613.717500px;}
.y31b{bottom:614.307150px;}
.y2aa{bottom:614.330700px;}
.y223{bottom:620.627100px;}
.ydd{bottom:620.643900px;}
.y2e4{bottom:621.457650px;}
.y3c{bottom:621.489150px;}
.y1ec{bottom:621.622500px;}
.yf{bottom:621.834450px;}
.y24a{bottom:622.438200px;}
.ya7{bottom:622.444200px;}
.y150{bottom:624.345600px;}
.y279{bottom:625.792200px;}
.y73{bottom:629.927250px;}
.y113{bottom:631.301850px;}
.y1b3{bottom:631.511400px;}
.y31a{bottom:632.308650px;}
.y2a9{bottom:632.330700px;}
.y222{bottom:638.628600px;}
.ydc{bottom:638.645400px;}
.y2e3{bottom:639.459150px;}
.y3b{bottom:639.490650px;}
.y1eb{bottom:639.624000px;}
.ye{bottom:639.834450px;}
.ya6{bottom:640.445700px;}
.y179{bottom:641.230500px;}
.y14f{bottom:642.347100px;}
.y278{bottom:643.793700px;}
.y1b2{bottom:645.011400px;}
.y249{bottom:645.307200px;}
.y6f{bottom:647.535750px;}
.y112{bottom:649.303350px;}
.y319{bottom:650.310150px;}
.y2a8{bottom:650.330700px;}
.y178{bottom:654.730500px;}
.y72{bottom:654.812250px;}
.y221{bottom:656.630100px;}
.ydb{bottom:656.646900px;}
.y2e2{bottom:657.460650px;}
.y3a{bottom:657.492150px;}
.y1ea{bottom:657.625500px;}
.yd{bottom:657.834450px;}
.y1b1{bottom:658.511400px;}
.y14e{bottom:660.348600px;}
.y6e{bottom:661.035750px;}
.y277{bottom:661.795200px;}
.ya5{bottom:666.949650px;}
.y111{bottom:667.304850px;}
.y177{bottom:668.230500px;}
.y318{bottom:668.311650px;}
.y2a7{bottom:668.330700px;}
.y248{bottom:668.554200px;}
.y220{bottom:674.631600px;}
.yda{bottom:674.648400px;}
.y2e1{bottom:675.462150px;}
.y39{bottom:675.493650px;}
.y1e9{bottom:675.627000px;}
.yc{bottom:675.834450px;}
.y14d{bottom:678.350100px;}
.y71{bottom:679.112250px;}
.y1af{bottom:681.014700px;}
.y110{bottom:685.306350px;}
.y317{bottom:686.313150px;}
.y2a6{bottom:686.330700px;}
.y276{bottom:688.294200px;}
.y247{bottom:691.423200px;}
.y21f{bottom:692.633100px;}
.yd9{bottom:692.649900px;}
.y2e0{bottom:693.463650px;}
.y38{bottom:693.484650px;}
.yb{bottom:693.834450px;}
.y1ae{bottom:694.514700px;}
.y176{bottom:695.743500px;}
.y14c{bottom:696.351600px;}
.y1e8{bottom:702.126000px;}
.y70{bottom:702.885750px;}
.y10f{bottom:703.307850px;}
.y316{bottom:704.314650px;}
.y2a5{bottom:704.330700px;}
.y246{bottom:704.923200px;}
.ya4{bottom:704.957550px;}
.y275{bottom:706.295700px;}
.y175{bottom:709.243500px;}
.y21e{bottom:710.634600px;}
.yd8{bottom:710.651400px;}
.y2df{bottom:711.465150px;}
.y37{bottom:711.486150px;}
.ya{bottom:711.834450px;}
.y1aa{bottom:716.805150px;}
.y1ad{bottom:717.019200px;}
.y1e7{bottom:720.127500px;}
.y10e{bottom:721.309350px;}
.y315{bottom:722.316150px;}
.y2a4{bottom:722.330700px;}
.y174{bottom:722.743500px;}
.y14b{bottom:722.855550px;}
.y274{bottom:724.297200px;}
.y6d{bottom:725.761050px;}
.y245{bottom:727.423800px;}
.y21d{bottom:728.636100px;}
.yd7{bottom:728.652900px;}
.y2de{bottom:729.466650px;}
.y36{bottom:729.487650px;}
.y1ac{bottom:730.519200px;}
.ya3{bottom:737.340450px;}
.y1e6{bottom:738.129000px;}
.y10d{bottom:739.310850px;}
.y314{bottom:740.317650px;}
.y2a3{bottom:740.330700px;}
.y1{bottom:742.060050px;}
.y273{bottom:742.298700px;}
.y21c{bottom:746.637600px;}
.y2dd{bottom:747.468150px;}
.y35{bottom:747.489150px;}
.y172{bottom:750.256500px;}
.ya2{bottom:750.840450px;}
.y1ab{bottom:753.388200px;}
.yd6{bottom:755.156700px;}
.y1e5{bottom:756.130500px;}
.y2c9{bottom:756.323700px;}
.y10c{bottom:757.312350px;}
.y14a{bottom:757.742400px;}
.y313{bottom:758.319150px;}
.y2a2{bottom:758.330700px;}
.y272{bottom:760.300200px;}
.y171{bottom:763.756500px;}
.y2dc{bottom:765.469650px;}
.y34{bottom:765.490650px;}
.y6c{bottom:766.811700px;}
.y244{bottom:768.474300px;}
.y173{bottom:770.506500px;}
.y148{bottom:770.657700px;}
.y149{bottom:771.242400px;}
.y21b{bottom:773.136600px;}
.ya1{bottom:773.656050px;}
.y1e4{bottom:774.132000px;}
.y2c8{bottom:774.323700px;}
.y10b{bottom:775.313850px;}
.y1a9{bottom:776.259750px;}
.y312{bottom:776.320650px;}
.y2a1{bottom:776.330700px;}
.y170{bottom:777.256500px;}
.y271{bottom:778.301700px;}
.y9d{bottom:779.640300px;}
.y2db{bottom:783.471150px;}
.y33{bottom:783.492150px;}
.yd5{bottom:784.644150px;}
.y1a8{bottom:789.759750px;}
.y6b{bottom:790.315200px;}
.y16f{bottom:790.756500px;}
.y21a{bottom:791.138100px;}
.y243{bottom:791.976750px;}
.y9c{bottom:793.140300px;}
.y10a{bottom:793.315350px;}
.y311{bottom:794.322150px;}
.y2a0{bottom:794.330700px;}
.ya0{bottom:797.641050px;}
.y1a5{bottom:800.430000px;}
.y1e3{bottom:800.631000px;}
.y2c7{bottom:800.827200px;}
.y2da{bottom:801.472650px;}
.y32{bottom:801.493650px;}
.yd4{bottom:802.645650px;}
.y9f{bottom:804.391050px;}
.y270{bottom:804.800700px;}
.y6a{bottom:808.315200px;}
.y219{bottom:809.139600px;}
.y242{bottom:809.978250px;}
.y146{bottom:812.251050px;}
.y1a7{bottom:812.264250px;}
.y310{bottom:812.323650px;}
.y29f{bottom:812.330700px;}
.y16e{bottom:818.265000px;}
.y1e2{bottom:818.632500px;}
.y31{bottom:819.472650px;}
.y2d9{bottom:819.474150px;}
.y109{bottom:819.819300px;}
.yd3{bottom:820.647150px;}
.y26f{bottom:822.802200px;}
.y145{bottom:825.751050px;}
.y1a6{bottom:825.764250px;}
.y69{bottom:826.315200px;}
.y218{bottom:827.141100px;}
.y30f{bottom:830.325150px;}
.y29e{bottom:830.330700px;}
.y9e{bottom:835.708350px;}
.y241{bottom:836.482050px;}
.y1e1{bottom:836.634000px;}
.y9{bottom:837.325500px;}
.y30{bottom:837.474150px;}
.y2d8{bottom:837.475650px;}
.yd2{bottom:838.648650px;}
.y144{bottom:839.251050px;}
.y26e{bottom:840.803700px;}
.y68{bottom:844.315200px;}
.y217{bottom:845.142600px;}
.y1a4{bottom:848.265000px;}
.y30e{bottom:848.326650px;}
.y29d{bottom:848.330700px;}
.y108{bottom:849.308700px;}
.y13f{bottom:852.166350px;}
.y147{bottom:852.167700px;}
.y143{bottom:852.751050px;}
.y1e0{bottom:854.635500px;}
.y2f{bottom:855.475650px;}
.y2d7{bottom:855.477150px;}
.yd1{bottom:856.650150px;}
.y8{bottom:857.830500px;}
.y26d{bottom:858.805200px;}
.y9b{bottom:859.107750px;}
.y16d{bottom:861.819300px;}
.y67{bottom:862.315200px;}
.y216{bottom:863.144100px;}
.y142{bottom:866.251050px;}
.y30d{bottom:866.328150px;}
.y29c{bottom:866.330700px;}
.y107{bottom:867.310200px;}
.y9a{bottom:872.607750px;}
.y1df{bottom:872.637000px;}
.y2e{bottom:873.477150px;}
.y2d6{bottom:873.478650px;}
.yd0{bottom:874.651650px;}
.y26c{bottom:876.806700px;}
.y240{bottom:876.901950px;}
.y141{bottom:879.751050px;}
.y66{bottom:880.315200px;}
.y97{bottom:883.856850px;}
.y30c{bottom:884.329650px;}
.y29b{bottom:884.330700px;}
.y106{bottom:885.311700px;}
.y1a3{bottom:889.315350px;}
.y215{bottom:889.643100px;}
.y1de{bottom:890.638500px;}
.y2d{bottom:891.478650px;}
.y2d5{bottom:891.480150px;}
.ycf{bottom:892.653150px;}
.y140{bottom:893.251050px;}
.y26b{bottom:894.808200px;}
.y99{bottom:895.106850px;}
.y65{bottom:898.315200px;}
.y30b{bottom:902.328150px;}
.y29a{bottom:902.330700px;}
.y105{bottom:903.313200px;}
.y214{bottom:907.644600px;}
.y98{bottom:908.606850px;}
.y2c{bottom:909.480150px;}
.y2d4{bottom:909.481650px;}
.yce{bottom:910.654650px;}
.y1a2{bottom:912.820650px;}
.y7{bottom:916.159500px;}
.y64{bottom:916.315200px;}
.y1dd{bottom:917.142450px;}
.y30a{bottom:920.329650px;}
.y299{bottom:920.330700px;}
.y13d{bottom:920.759700px;}
.y104{bottom:921.314700px;}
.y213{bottom:925.646100px;}
.y2b{bottom:927.481650px;}
.y2d3{bottom:927.483150px;}
.ycd{bottom:928.656150px;}
.y26a{bottom:929.821200px;}
.y1a1{bottom:930.822150px;}
.y96{bottom:932.276850px;}
.y13c{bottom:934.259700px;}
.y63{bottom:934.315200px;}
.y23a{bottom:937.651950px;}
.y298{bottom:938.330700px;}
.y309{bottom:938.331150px;}
.y95{bottom:939.026850px;}
.y23d{bottom:939.150450px;}
.y103{bottom:939.316200px;}
.y135{bottom:940.423200px;}
.y212{bottom:943.647600px;}
.y2a{bottom:945.483150px;}
.y2d2{bottom:945.484650px;}
.ycc{bottom:946.657650px;}
.y13b{bottom:947.759700px;}
.y269{bottom:947.822700px;}
.y1db{bottom:949.527900px;}
.y62{bottom:952.315200px;}
.y134{bottom:953.923200px;}
.y308{bottom:956.314650px;}
.y297{bottom:956.330700px;}
.y102{bottom:957.317700px;}
.y1a0{bottom:957.321150px;}
.y13a{bottom:961.259700px;}
.y211{bottom:961.649100px;}
.y1da{bottom:963.027900px;}
.y29{bottom:963.484650px;}
.y2d1{bottom:963.486150px;}
.ycb{bottom:964.659150px;}
.y268{bottom:965.824200px;}
.y133{bottom:967.423200px;}
.y13e{bottom:967.426350px;}
.y6{bottom:968.857500px;}
.y1dc{bottom:969.777900px;}
.y61{bottom:970.315200px;}
.y307{bottom:974.316150px;}
.y296{bottom:974.330700px;}
.y139{bottom:974.759700px;}
.y16c{bottom:975.319200px;}
.y19f{bottom:975.322650px;}
.y1d9{bottom:976.527900px;}
.y210{bottom:979.650600px;}
.y132{bottom:980.923200px;}
.y28{bottom:981.486150px;}
.y2d0{bottom:981.487650px;}
.yca{bottom:982.660650px;}
.y101{bottom:983.816700px;}
.y267{bottom:983.825700px;}
.y94{bottom:986.827500px;}
.y138{bottom:988.259700px;}
.y60{bottom:988.315200px;}
.y1d8{bottom:990.027900px;}
.y306{bottom:992.317650px;}
.y295{bottom:992.330700px;}
.y16b{bottom:993.320700px;}
.y19e{bottom:993.324150px;}
.y131{bottom:994.423200px;}
.y20f{bottom:997.652100px;}
.y5{bottom:998.289000px;}
.y27{bottom:999.487650px;}
.y2cf{bottom:999.489150px;}
.y137{bottom:1001.759700px;}
.y100{bottom:1001.818200px;}
.y266{bottom:1001.827200px;}
.y5f{bottom:1006.315200px;}
.y23b{bottom:1006.650450px;}
.y23e{bottom:1008.148950px;}
.yc9{bottom:1009.162500px;}
.y305{bottom:1010.319150px;}
.y294{bottom:1010.330700px;}
.y93{bottom:1010.331000px;}
.y19d{bottom:1011.325650px;}
.y1d7{bottom:1012.532400px;}
.y136{bottom:1015.259700px;}
.y26{bottom:1017.489150px;}
.y2ce{bottom:1017.490650px;}
.yff{bottom:1019.819700px;}
.y20e{bottom:1024.156050px;}
.y5e{bottom:1024.315200px;}
.y1d6{bottom:1026.032400px;}
.y304{bottom:1028.320650px;}
.y265{bottom:1028.330700px;}
.y92{bottom:1028.331000px;}
.y19c{bottom:1029.327150px;}
.y25{bottom:1035.490650px;}
.y2cd{bottom:1035.492150px;}
.y23{bottom:1035.493650px;}
.yfe{bottom:1037.821200px;}
.yc8{bottom:1041.862500px;}
.y5d{bottom:1042.315200px;}
.y12b{bottom:1042.763550px;}
.y12f{bottom:1043.351550px;}
.y303{bottom:1046.322150px;}
.y264{bottom:1046.330700px;}
.y91{bottom:1046.331000px;}
.y19b{bottom:1047.328650px;}
.y1d5{bottom:1048.901400px;}
.y24{bottom:1053.492150px;}
.y2cc{bottom:1053.493650px;}
.yfd{bottom:1055.822700px;}
.y12a{bottom:1056.263550px;}
.y12e{bottom:1056.851550px;}
.y20d{bottom:1062.163950px;}
.y130{bottom:1063.018200px;}
.y302{bottom:1064.323650px;}
.y263{bottom:1064.330700px;}
.y90{bottom:1064.331000px;}
.yc6{bottom:1066.162500px;}
.y5c{bottom:1068.818700px;}
.y129{bottom:1069.763550px;}
.y12d{bottom:1070.351550px;}
.y2cb{bottom:1071.493650px;}
.y1d4{bottom:1071.776850px;}
.yfc{bottom:1073.824200px;}
.y19a{bottom:1073.827650px;}
.y23c{bottom:1075.648950px;}
.y23f{bottom:1077.147450px;}
.y20c{bottom:1077.551550px;}
.y301{bottom:1082.325150px;}
.y262{bottom:1082.330700px;}
.y8f{bottom:1082.331000px;}
.y128{bottom:1083.263550px;}
.y12c{bottom:1083.851550px;}
.y22{bottom:1089.490650px;}
.yc7{bottom:1090.462500px;}
.y20b{bottom:1091.051550px;}
.yfb{bottom:1091.825700px;}
.y199{bottom:1100.326650px;}
.y261{bottom:1100.330700px;}
.y8e{bottom:1100.331000px;}
.y5b{bottom:1106.827500px;}
.y21{bottom:1107.492150px;}
.yfa{bottom:1109.827200px;}
.y127{bottom:1111.943550px;}
.y1d3{bottom:1112.827500px;}
.y20a{bottom:1113.920550px;}
.yc5{bottom:1114.447500px;}
.y198{bottom:1118.328150px;}
.y260{bottom:1118.330700px;}
.y8d{bottom:1118.331000px;}
.y20{bottom:1125.493650px;}
.y1d{bottom:1134.636000px;}
.y197{bottom:1136.329650px;}
.y25f{bottom:1136.330700px;}
.y5a{bottom:1136.331000px;}
.y209{bottom:1136.789550px;}
.y208{bottom:1150.289550px;}
.y1f{bottom:1151.997600px;}
.y1c{bottom:1152.636000px;}
.y59{bottom:1154.331000px;}
.y196{bottom:1154.331150px;}
.yc4{bottom:1155.497850px;}
.y1b{bottom:1170.636000px;}
.y1a{bottom:1188.636000px;}
.y2ca{bottom:1205.446500px;}
.y1e{bottom:1205.671500px;}
.h1f{height:37.494141px;}
.h1e{height:37.731445px;}
.h20{height:40.458984px;}
.h2{height:40.781250px;}
.ha{height:41.015625px;}
.hb{height:42.070312px;}
.h8{height:42.246094px;}
.h9{height:43.066406px;}
.h22{height:46.470703px;}
.h10{height:46.986328px;}
.h3{height:47.373047px;}
.h7{height:49.218750px;}
.h1d{height:49.892231px;}
.hf{height:52.207031px;}
.hc{height:54.691406px;}
.h5{height:57.093750px;}
.hd{height:57.427734px;}
.h21{height:57.439734px;}
.h6{height:62.648438px;}
.h4{height:65.250000px;}
.h18{height:73.986328px;}
.h13{height:76.319728px;}
.h14{height:76.329928px;}
.h1a{height:76.862831px;}
.h15{height:76.877231px;}
.h19{height:76.888631px;}
.h1b{height:76.903631px;}
.h12{height:79.207031px;}
.h11{height:95.586328px;}
.h17{height:100.986328px;}
.h16{height:103.325128px;}
.h1c{height:103.903631px;}
.he{height:245.418989px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:50.877150px;}
.x1{left:53.149650px;}
.xf{left:74.393550px;}
.x4b{left:90.095400px;}
.x7{left:91.212000px;}
.xe{left:92.675550px;}
.x4a{left:94.428900px;}
.xc{left:95.682450px;}
.x2a{left:98.283600px;}
.x10{left:101.409450px;}
.x36{left:103.300500px;}
.x45{left:106.221750px;}
.x6d{left:107.596200px;}
.x48{left:109.805400px;}
.x13{left:111.017250px;}
.x3d{left:113.151750px;}
.x25{left:115.472100px;}
.xb{left:116.934450px;}
.x37{left:118.450500px;}
.x1e{left:123.996300px;}
.x50{left:125.298150px;}
.x4f{left:126.993150px;}
.x20{left:128.208300px;}
.x54{left:129.699300px;}
.x67{left:131.839200px;}
.x68{left:133.661700px;}
.x61{left:137.259300px;}
.x7b{left:139.221000px;}
.x80{left:140.455950px;}
.x46{left:141.904650px;}
.x23{left:145.399500px;}
.xa{left:150.450000px;}
.x78{left:154.686300px;}
.x6b{left:156.897300px;}
.x5{left:160.713000px;}
.x7c{left:166.451850px;}
.x12{left:172.118250px;}
.x7a{left:173.214000px;}
.x4d{left:177.521400px;}
.x72{left:181.648200px;}
.x82{left:183.466950px;}
.x14{left:189.951750px;}
.x1a{left:193.237800px;}
.x6f{left:207.752700px;}
.x35{left:210.155400px;}
.x39{left:212.414250px;}
.x3e{left:213.419400px;}
.x3a{left:215.451750px;}
.x38{left:217.841250px;}
.x41{left:220.439400px;}
.x42{left:226.399650px;}
.x40{left:231.914400px;}
.x43{left:233.163150px;}
.x3f{left:239.595900px;}
.x32{left:241.110900px;}
.x58{left:247.526400px;}
.x11{left:248.999550px;}
.x51{left:251.519250px;}
.x59{left:252.993900px;}
.x5d{left:254.145750px;}
.x53{left:256.311750px;}
.x57{left:258.002400px;}
.x8{left:259.216500px;}
.x5a{left:261.606900px;}
.x5f{left:263.582250px;}
.x56{left:265.494750px;}
.x31{left:269.426700px;}
.x81{left:271.378950px;}
.x55{left:273.189750px;}
.x4e{left:274.208400px;}
.x6{left:275.448000px;}
.x62{left:278.568600px;}
.x70{left:285.094200px;}
.x28{left:287.016750px;}
.x7e{left:289.762800px;}
.x64{left:291.526950px;}
.x27{left:296.897100px;}
.x26{left:299.222100px;}
.x24{left:300.286950px;}
.x44{left:302.283150px;}
.x29{left:307.104750px;}
.x2{left:318.904650px;}
.x4c{left:321.701400px;}
.x6e{left:327.484200px;}
.x71{left:335.624700px;}
.x69{left:341.831700px;}
.x3b{left:343.013250px;}
.x63{left:344.637600px;}
.x22{left:347.231850px;}
.x6c{left:349.585500px;}
.x9{left:350.973000px;}
.x47{left:363.316050px;}
.x1f{left:368.224800px;}
.x66{left:376.056900px;}
.x7d{left:377.754750px;}
.x7f{left:381.687450px;}
.x5e{left:386.472750px;}
.x60{left:387.525750px;}
.x1d{left:390.333900px;}
.x65{left:393.222450px;}
.x1c{left:402.618900px;}
.x74{left:408.418800px;}
.x79{left:411.976050px;}
.x73{left:413.130300px;}
.x5b{left:417.126900px;}
.x15{left:419.546250px;}
.x5c{left:432.273900px;}
.x16{left:434.436750px;}
.x34{left:436.680900px;}
.x83{left:440.205000px;}
.x52{left:441.410250px;}
.x2f{left:451.961850px;}
.x33{left:454.710900px;}
.x18{left:456.268350px;}
.x17{left:458.831250px;}
.x2c{left:466.527300px;}
.x19{left:471.538350px;}
.x21{left:482.178300px;}
.x2e{left:483.702300px;}
.x1b{left:485.607300px;}
.x2b{left:500.635650px;}
.x30{left:513.292350px;}
.x75{left:549.574800px;}
.x77{left:615.441300px;}
.x76{left:620.152800px;}
.x4{left:680.269500px;}
.x3{left:686.715000px;}
.x2d{left:696.687300px;}
.x6a{left:701.296200px;}
.x49{left:726.390900px;}
.x3c{left:744.471750px;}
@media print{
.v9{vertical-align:-2.057600pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.929067pt;}
.v3{vertical-align:24.000000pt;}
.v4{vertical-align:26.074133pt;}
.v2{vertical-align:43.200000pt;}
.v8{vertical-align:45.952533pt;}
.v7{vertical-align:48.000000pt;}
.v6{vertical-align:50.078933pt;}
.v1{vertical-align:128.000000pt;}
.ls1{letter-spacing:-6.672000pt;}
.ls31{letter-spacing:-6.304000pt;}
.ls30{letter-spacing:-6.298667pt;}
.ls24{letter-spacing:-6.021333pt;}
.ls25{letter-spacing:-6.016000pt;}
.ls32{letter-spacing:-5.754667pt;}
.ls7{letter-spacing:-5.728000pt;}
.ls37{letter-spacing:-4.896000pt;}
.ls10{letter-spacing:-4.874667pt;}
.ls8{letter-spacing:-4.869333pt;}
.ls33{letter-spacing:-4.864000pt;}
.lsf{letter-spacing:-4.586667pt;}
.ls6{letter-spacing:-4.581333pt;}
.ls2{letter-spacing:-4.506667pt;}
.ls3{letter-spacing:-4.490667pt;}
.ls34{letter-spacing:-4.298667pt;}
.ls9{letter-spacing:-4.170667pt;}
.ls29{letter-spacing:-4.128000pt;}
.ls2e{letter-spacing:-4.117333pt;}
.ls2d{letter-spacing:-4.101333pt;}
.ls2f{letter-spacing:-4.090667pt;}
.lsb{letter-spacing:-3.893333pt;}
.ls20{letter-spacing:-3.786667pt;}
.ls23{letter-spacing:-3.120000pt;}
.ls2b{letter-spacing:-2.688000pt;}
.ls1c{letter-spacing:-2.666667pt;}
.ls2a{letter-spacing:-2.640000pt;}
.ls27{letter-spacing:-2.592000pt;}
.ls2c{letter-spacing:-1.248000pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.373333pt;}
.ls1d{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.106667pt;}
.ls1f{letter-spacing:-0.053333pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.026667pt;}
.ls5{letter-spacing:0.030400pt;}
.ls36{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls38{letter-spacing:0.384533pt;}
.ls17{letter-spacing:0.426667pt;}
.ls19{letter-spacing:0.480000pt;}
.ls39{letter-spacing:0.481067pt;}
.ls1a{letter-spacing:0.624000pt;}
.ls26{letter-spacing:0.746667pt;}
.ls22{letter-spacing:0.816000pt;}
.ls21{letter-spacing:0.906667pt;}
.ls16{letter-spacing:1.013333pt;}
.ls18{letter-spacing:1.056000pt;}
.ls28{letter-spacing:1.200000pt;}
.ls4{letter-spacing:70.010667pt;}
.ws17{word-spacing:-55.156992pt;}
.ws102{word-spacing:-49.200000pt;}
.ws101{word-spacing:-45.408000pt;}
.ws105{word-spacing:-45.312000pt;}
.ws103{word-spacing:-37.070400pt;}
.ws1{word-spacing:-28.629333pt;}
.ws125{word-spacing:-15.253333pt;}
.ws18{word-spacing:-12.906667pt;}
.wsea{word-spacing:-12.480000pt;}
.ws70{word-spacing:-12.213333pt;}
.ws6e{word-spacing:-12.160000pt;}
.ws0{word-spacing:-12.053333pt;}
.ws6b{word-spacing:-11.946667pt;}
.ws8c{word-spacing:-11.733333pt;}
.ws6a{word-spacing:-11.626667pt;}
.ws6f{word-spacing:-11.616000pt;}
.wsc3{word-spacing:-11.520000pt;}
.ws8e{word-spacing:-11.413333pt;}
.ws8f{word-spacing:-11.253333pt;}
.ws71{word-spacing:-11.184000pt;}
.ws46{word-spacing:-10.656000pt;}
.ws47{word-spacing:-10.608000pt;}
.ws8d{word-spacing:-9.066667pt;}
.wsc2{word-spacing:-7.946667pt;}
.ws45{word-spacing:-7.840000pt;}
.ws2{word-spacing:-7.562667pt;}
.wsc5{word-spacing:-7.440000pt;}
.wsda{word-spacing:-6.890667pt;}
.ws11d{word-spacing:-6.608000pt;}
.ws11c{word-spacing:-6.602667pt;}
.ws26{word-spacing:-6.336000pt;}
.ws13d{word-spacing:-5.632000pt;}
.wse4{word-spacing:-5.514667pt;}
.ws11a{word-spacing:-5.397333pt;}
.ws7c{word-spacing:-4.986667pt;}
.ws7d{word-spacing:-4.634667pt;}
.ws19{word-spacing:-4.576000pt;}
.wsd2{word-spacing:-4.458667pt;}
.ws123{word-spacing:-4.400000pt;}
.ws129{word-spacing:-4.224000pt;}
.ws10{word-spacing:-4.106667pt;}
.ws2d{word-spacing:-3.989333pt;}
.ws82{word-spacing:-3.930667pt;}
.wsb7{word-spacing:-3.872000pt;}
.wsfe{word-spacing:-3.813333pt;}
.wsd8{word-spacing:-3.754667pt;}
.wsbb{word-spacing:-3.696000pt;}
.ws137{word-spacing:-3.637333pt;}
.ws2e{word-spacing:-3.578667pt;}
.ws6{word-spacing:-3.093333pt;}
.wsca{word-spacing:-3.050667pt;}
.ws61{word-spacing:-2.933333pt;}
.ws1a{word-spacing:-2.874667pt;}
.ws12e{word-spacing:-2.816000pt;}
.wscf{word-spacing:-2.698667pt;}
.ws3d{word-spacing:-2.640000pt;}
.ws53{word-spacing:-2.522667pt;}
.ws27{word-spacing:-2.464000pt;}
.ws1b{word-spacing:-2.405333pt;}
.ws7b{word-spacing:-2.346667pt;}
.ws3a{word-spacing:-2.288000pt;}
.ws92{word-spacing:-2.229333pt;}
.ws10c{word-spacing:-2.170667pt;}
.wsb1{word-spacing:-2.112000pt;}
.ws64{word-spacing:-1.994667pt;}
.ws7f{word-spacing:-1.936000pt;}
.wsa2{word-spacing:-1.877333pt;}
.ws120{word-spacing:-1.818667pt;}
.ws11b{word-spacing:-1.760000pt;}
.ws3c{word-spacing:-1.701333pt;}
.ws28{word-spacing:-1.642667pt;}
.ws23{word-spacing:-1.584000pt;}
.ws25{word-spacing:-1.525333pt;}
.wsf9{word-spacing:-1.466667pt;}
.wsf6{word-spacing:-1.408000pt;}
.ws7{word-spacing:-1.386667pt;}
.ws5a{word-spacing:-1.349333pt;}
.ws9b{word-spacing:-1.290667pt;}
.ws5{word-spacing:-1.280000pt;}
.ws52{word-spacing:-1.232000pt;}
.ws1c{word-spacing:-1.173333pt;}
.ws113{word-spacing:-1.114667pt;}
.wsb3{word-spacing:-1.056000pt;}
.ws79{word-spacing:-1.013333pt;}
.wscc{word-spacing:-0.997333pt;}
.wsd7{word-spacing:-0.938667pt;}
.wsc8{word-spacing:-0.906667pt;}
.wsa0{word-spacing:-0.821333pt;}
.wsc9{word-spacing:-0.816000pt;}
.wsb5{word-spacing:-0.762667pt;}
.ws73{word-spacing:-0.645333pt;}
.ws13{word-spacing:-0.640000pt;}
.ws15{word-spacing:-0.608000pt;}
.ws121{word-spacing:-0.586667pt;}
.ws16{word-spacing:-0.565333pt;}
.ws14{word-spacing:-0.554667pt;}
.ws135{word-spacing:-0.528000pt;}
.ws9e{word-spacing:-0.469333pt;}
.ws5b{word-spacing:-0.410667pt;}
.ws2b{word-spacing:-0.352000pt;}
.ws8{word-spacing:-0.320000pt;}
.ws67{word-spacing:-0.293333pt;}
.ws65{word-spacing:-0.234667pt;}
.wsc7{word-spacing:-0.213333pt;}
.ws5e{word-spacing:-0.192000pt;}
.ws3f{word-spacing:-0.176000pt;}
.ws34{word-spacing:-0.117333pt;}
.ws77{word-spacing:-0.096000pt;}
.wsa9{word-spacing:-0.058667pt;}
.ws5c{word-spacing:-0.048000pt;}
.ws4f{word-spacing:-0.016000pt;}
.wsf4{word-spacing:-0.005333pt;}
.ws3{word-spacing:0.000000pt;}
.ws78{word-spacing:0.048000pt;}
.ws90{word-spacing:0.053333pt;}
.wsf5{word-spacing:0.058667pt;}
.ws12{word-spacing:0.074667pt;}
.ws114{word-spacing:0.117333pt;}
.wsc6{word-spacing:0.160000pt;}
.ws55{word-spacing:0.176000pt;}
.ws5d{word-spacing:0.213333pt;}
.wsb6{word-spacing:0.234667pt;}
.ws33{word-spacing:0.293333pt;}
.ws117{word-spacing:0.352000pt;}
.ws5f{word-spacing:0.410667pt;}
.ws21{word-spacing:0.469333pt;}
.ws98{word-spacing:0.528000pt;}
.ws83{word-spacing:0.586667pt;}
.wsa6{word-spacing:0.645333pt;}
.ws7e{word-spacing:0.704000pt;}
.wsee{word-spacing:0.821333pt;}
.wse6{word-spacing:0.880000pt;}
.ws11{word-spacing:0.906667pt;}
.wsbf{word-spacing:0.938667pt;}
.ws85{word-spacing:0.997333pt;}
.ws62{word-spacing:1.056000pt;}
.wse{word-spacing:1.066667pt;}
.wsb0{word-spacing:1.114667pt;}
.ws59{word-spacing:1.173333pt;}
.wsdf{word-spacing:1.232000pt;}
.ws10a{word-spacing:1.248000pt;}
.wse1{word-spacing:1.290667pt;}
.wsbc{word-spacing:1.349333pt;}
.wsb8{word-spacing:1.408000pt;}
.ws13c{word-spacing:1.466667pt;}
.ws109{word-spacing:1.584000pt;}
.wsa1{word-spacing:1.642667pt;}
.wscd{word-spacing:1.701333pt;}
.wsfa{word-spacing:1.760000pt;}
.ws40{word-spacing:1.818667pt;}
.ws96{word-spacing:1.877333pt;}
.wsff{word-spacing:1.936000pt;}
.wsd1{word-spacing:1.994667pt;}
.ws10f{word-spacing:2.053333pt;}
.wsb9{word-spacing:2.112000pt;}
.ws9f{word-spacing:2.170667pt;}
.ws74{word-spacing:2.229333pt;}
.ws10b{word-spacing:2.288000pt;}
.ws4e{word-spacing:2.309333pt;}
.ws4a{word-spacing:2.314667pt;}
.ws48{word-spacing:2.346667pt;}
.ws4d{word-spacing:2.378667pt;}
.ws4c{word-spacing:2.384000pt;}
.ws49{word-spacing:2.394667pt;}
.ws56{word-spacing:2.405333pt;}
.ws4b{word-spacing:2.410667pt;}
.ws76{word-spacing:2.464000pt;}
.wsa7{word-spacing:2.522667pt;}
.ws93{word-spacing:2.640000pt;}
.ws87{word-spacing:2.698667pt;}
.ws95{word-spacing:2.757333pt;}
.wsa3{word-spacing:2.816000pt;}
.wsd0{word-spacing:2.874667pt;}
.ws9{word-spacing:2.933333pt;}
.ws2c{word-spacing:2.992000pt;}
.ws131{word-spacing:3.050667pt;}
.ws9a{word-spacing:3.109333pt;}
.ws30{word-spacing:3.168000pt;}
.ws2f{word-spacing:3.226667pt;}
.ws128{word-spacing:3.285333pt;}
.ws43{word-spacing:3.402667pt;}
.ws127{word-spacing:3.424000pt;}
.wsde{word-spacing:3.461333pt;}
.ws10e{word-spacing:3.520000pt;}
.wsa5{word-spacing:3.578667pt;}
.ws10d{word-spacing:3.637333pt;}
.ws41{word-spacing:3.696000pt;}
.ws1e{word-spacing:3.754667pt;}
.ws36{word-spacing:3.813333pt;}
.ws35{word-spacing:3.872000pt;}
.ws91{word-spacing:3.930667pt;}
.ws4{word-spacing:3.946667pt;}
.ws50{word-spacing:3.989333pt;}
.wsed{word-spacing:4.106667pt;}
.ws11f{word-spacing:4.165333pt;}
.ws20{word-spacing:4.224000pt;}
.wsba{word-spacing:4.282667pt;}
.wsb{word-spacing:4.320000pt;}
.ws24{word-spacing:4.341333pt;}
.ws2a{word-spacing:4.400000pt;}
.ws75{word-spacing:4.458667pt;}
.ws22{word-spacing:4.517333pt;}
.ws9c{word-spacing:4.576000pt;}
.ws126{word-spacing:4.693333pt;}
.ws51{word-spacing:4.752000pt;}
.ws100{word-spacing:4.810667pt;}
.ws122{word-spacing:4.869333pt;}
.ws118{word-spacing:4.928000pt;}
.ws1f{word-spacing:5.045333pt;}
.wsd{word-spacing:5.066667pt;}
.ws111{word-spacing:5.104000pt;}
.wsd9{word-spacing:5.221333pt;}
.ws81{word-spacing:5.338667pt;}
.ws39{word-spacing:5.456000pt;}
.wsdc{word-spacing:5.477333pt;}
.wsdd{word-spacing:5.482667pt;}
.wsd4{word-spacing:5.514667pt;}
.ws66{word-spacing:5.573333pt;}
.ws32{word-spacing:5.632000pt;}
.ws112{word-spacing:5.690667pt;}
.wsa4{word-spacing:5.749333pt;}
.ws63{word-spacing:5.808000pt;}
.wsce{word-spacing:5.866667pt;}
.wsfb{word-spacing:5.925333pt;}
.wsf{word-spacing:5.973333pt;}
.wse3{word-spacing:5.984000pt;}
.wse2{word-spacing:6.042667pt;}
.ws84{word-spacing:6.101333pt;}
.wsf7{word-spacing:6.160000pt;}
.ws58{word-spacing:6.218667pt;}
.ws12f{word-spacing:6.277333pt;}
.ws31{word-spacing:6.394667pt;}
.wsa{word-spacing:6.453333pt;}
.wse5{word-spacing:6.512000pt;}
.wsb4{word-spacing:6.570667pt;}
.ws97{word-spacing:6.629333pt;}
.ws57{word-spacing:6.688000pt;}
.ws94{word-spacing:6.746667pt;}
.ws124{word-spacing:6.805333pt;}
.ws99{word-spacing:6.864000pt;}
.ws60{word-spacing:6.922667pt;}
.ws54{word-spacing:6.981333pt;}
.wsf1{word-spacing:6.986667pt;}
.wsf2{word-spacing:6.992000pt;}
.wsf3{word-spacing:7.008000pt;}
.ws86{word-spacing:7.040000pt;}
.wsa8{word-spacing:7.157333pt;}
.wsc{word-spacing:7.200000pt;}
.ws13e{word-spacing:7.216000pt;}
.wsf8{word-spacing:7.274667pt;}
.wsd5{word-spacing:7.450667pt;}
.wsd3{word-spacing:7.509333pt;}
.ws37{word-spacing:7.568000pt;}
.ws1d{word-spacing:7.626667pt;}
.wsaf{word-spacing:7.685333pt;}
.wsfd{word-spacing:7.802667pt;}
.wsbd{word-spacing:7.861333pt;}
.wsae{word-spacing:7.989333pt;}
.wsab{word-spacing:8.037333pt;}
.wsad{word-spacing:8.069333pt;}
.wsaa{word-spacing:8.090667pt;}
.wsac{word-spacing:8.096000pt;}
.ws80{word-spacing:8.213333pt;}
.ws3b{word-spacing:8.389333pt;}
.ws9d{word-spacing:8.448000pt;}
.wsfc{word-spacing:8.624000pt;}
.ws132{word-spacing:8.682667pt;}
.ws88{word-spacing:9.093333pt;}
.wse0{word-spacing:9.152000pt;}
.wsbe{word-spacing:9.680000pt;}
.ws139{word-spacing:9.738667pt;}
.ws133{word-spacing:9.914667pt;}
.ws12b{word-spacing:9.936000pt;}
.ws12d{word-spacing:9.973333pt;}
.ws12c{word-spacing:10.037333pt;}
.wscb{word-spacing:10.149333pt;}
.ws110{word-spacing:10.384000pt;}
.wsb2{word-spacing:10.442667pt;}
.ws3e{word-spacing:10.618667pt;}
.ws13a{word-spacing:10.736000pt;}
.ws13b{word-spacing:10.970667pt;}
.ws119{word-spacing:11.264000pt;}
.ws7a{word-spacing:11.498667pt;}
.ws138{word-spacing:12.320000pt;}
.wsec{word-spacing:12.437333pt;}
.ws12a{word-spacing:13.376000pt;}
.ws11e{word-spacing:13.493333pt;}
.ws38{word-spacing:13.786667pt;}
.ws42{word-spacing:15.253333pt;}
.ws29{word-spacing:16.544000pt;}
.ws134{word-spacing:17.952000pt;}
.wsd6{word-spacing:18.362667pt;}
.ws115{word-spacing:18.714667pt;}
.ws136{word-spacing:19.008000pt;}
.ws116{word-spacing:21.530667pt;}
.ws130{word-spacing:23.936000pt;}
.ws104{word-spacing:26.533867pt;}
.ws72{word-spacing:38.565333pt;}
.wsc4{word-spacing:127.141333pt;}
.ws89{word-spacing:166.106667pt;}
.ws8a{word-spacing:175.541333pt;}
.ws8b{word-spacing:179.210667pt;}
.ws68{word-spacing:294.741333pt;}
.ws69{word-spacing:368.171733pt;}
.wse9{word-spacing:763.334400pt;}
.wseb{word-spacing:789.969600pt;}
.wse8{word-spacing:833.178667pt;}
.wse7{word-spacing:839.317333pt;}
.wsc1{word-spacing:908.752000pt;}
.ws6c{word-spacing:928.437867pt;}
.wsc0{word-spacing:954.128000pt;}
.wsef{word-spacing:996.010667pt;}
.ws108{word-spacing:1019.370667pt;}
.ws106{word-spacing:1023.104000pt;}
.ws107{word-spacing:1025.664000pt;}
.ws6d{word-spacing:1062.218667pt;}
.ws44{word-spacing:1079.690667pt;}
.wsf0{word-spacing:1104.917333pt;}
.wsdb{word-spacing:1139.264000pt;}
._14{margin-left:-7.649067pt;}
._4{margin-left:-6.279467pt;}
._5{margin-left:-4.700800pt;}
._0{margin-left:-3.605333pt;}
._3{margin-left:-2.700267pt;}
._1{margin-left:-1.189333pt;}
._2{width:1.125333pt;}
._8{width:2.059200pt;}
._9{width:3.023467pt;}
._20{width:3.953600pt;}
._6{width:4.890667pt;}
._7{width:6.090667pt;}
._3d{width:23.086933pt;}
._f{width:57.433600pt;}
._11{width:59.774933pt;}
._12{width:117.337600pt;}
._10{width:125.811733pt;}
._33{width:140.614933pt;}
._29{width:143.090133pt;}
._d{width:155.791467pt;}
._e{width:188.074667pt;}
._37{width:201.811733pt;}
._1c{width:207.149333pt;}
._1b{width:214.754667pt;}
._24{width:224.936533pt;}
._38{width:235.619200pt;}
._32{width:251.966933pt;}
._c{width:280.393067pt;}
._27{width:283.165867pt;}
._3b{width:290.708267pt;}
._1d{width:308.692800pt;}
._34{width:320.541333pt;}
._26{width:332.310400pt;}
._1e{width:373.484267pt;}
._1f{width:382.195200pt;}
._2f{width:384.039467pt;}
._3c{width:413.998400pt;}
._a{width:416.606933pt;}
._17{width:450.610667pt;}
._b{width:455.801600pt;}
._25{width:471.592533pt;}
._31{width:475.171200pt;}
._2d{width:568.750400pt;}
._2a{width:583.316267pt;}
._18{width:586.946667pt;}
._3a{width:602.360533pt;}
._23{width:615.021333pt;}
._22{width:619.994133pt;}
._28{width:643.619733pt;}
._36{width:662.585067pt;}
._21{width:680.187733pt;}
._30{width:749.497600pt;}
._19{width:783.876267pt;}
._1a{width:804.874133pt;}
._13{width:823.745600pt;}
._2e{width:843.677333pt;}
._2c{width:863.252267pt;}
._35{width:870.339733pt;}
._15{width:890.813867pt;}
._16{width:963.252267pt;}
._2b{width:983.518933pt;}
._39{width:984.980800pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs6{font-size:250.713600pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:88.539467pt;}
.y195{bottom:91.810400pt;}
.y8c{bottom:92.708400pt;}
.y2c6{bottom:98.071733pt;}
.y207{bottom:99.396267pt;}
.y293{bottom:99.794000pt;}
.y300{bottom:104.369467pt;}
.y58{bottom:104.428133pt;}
.yf8{bottom:104.540800pt;}
.yc3{bottom:105.258400pt;}
.y194{bottom:107.811733pt;}
.y8b{bottom:108.709733pt;}
.y16a{bottom:108.725867pt;}
.y206{bottom:111.396267pt;}
.y2c5{bottom:114.071733pt;}
.y25e{bottom:114.359467pt;}
.y292{bottom:115.795333pt;}
.y1d2{bottom:115.954000pt;}
.y2ff{bottom:120.370800pt;}
.y57{bottom:120.429467pt;}
.yf7{bottom:120.542133pt;}
.yc2{bottom:121.259733pt;}
.y205{bottom:123.396267pt;}
.y193{bottom:123.813067pt;}
.y8a{bottom:124.711067pt;}
.y169{bottom:124.727200pt;}
.y2c4{bottom:130.071733pt;}
.y291{bottom:131.796667pt;}
.y1d1{bottom:131.955333pt;}
.y204{bottom:135.396267pt;}
.y2fe{bottom:136.372133pt;}
.y56{bottom:136.430800pt;}
.yf6{bottom:136.543467pt;}
.yc1{bottom:137.261067pt;}
.y192{bottom:139.814400pt;}
.y89{bottom:140.712400pt;}
.y168{bottom:140.728533pt;}
.y25d{bottom:143.482267pt;}
.y2c3{bottom:146.071733pt;}
.y203{bottom:147.396267pt;}
.y290{bottom:147.798000pt;}
.y2fd{bottom:152.373467pt;}
.y55{bottom:152.432133pt;}
.yf5{bottom:152.544800pt;}
.yc0{bottom:153.262400pt;}
.y1d0{bottom:155.514400pt;}
.y191{bottom:155.815733pt;}
.y88{bottom:156.713733pt;}
.y167{bottom:156.729867pt;}
.y2c2{bottom:162.071733pt;}
.y28f{bottom:163.799333pt;}
.y25c{bottom:164.146267pt;}
.y202{bottom:167.400267pt;}
.y2fc{bottom:168.374800pt;}
.y54{bottom:168.433467pt;}
.yf4{bottom:168.546133pt;}
.ybf{bottom:169.263733pt;}
.y239{bottom:169.425867pt;}
.y190{bottom:171.817067pt;}
.y87{bottom:172.715067pt;}
.y2c1{bottom:178.071733pt;}
.y201{bottom:179.400267pt;}
.y28e{bottom:179.800667pt;}
.y166{bottom:180.284533pt;}
.y1cf{bottom:184.292400pt;}
.y2fb{bottom:184.376133pt;}
.y53{bottom:184.434800pt;}
.y25b{bottom:184.474267pt;}
.yf3{bottom:184.547467pt;}
.ybe{bottom:185.265067pt;}
.y238{bottom:185.427200pt;}
.y4{bottom:187.550667pt;}
.y18f{bottom:187.818400pt;}
.y86{bottom:188.716400pt;}
.y200{bottom:191.400267pt;}
.y2c0{bottom:194.071733pt;}
.y28d{bottom:195.802000pt;}
.y165{bottom:196.285867pt;}
.y1ce{bottom:196.292400pt;}
.y25a{bottom:196.474267pt;}
.y2fa{bottom:200.377467pt;}
.y52{bottom:200.436133pt;}
.yf2{bottom:200.548800pt;}
.ybd{bottom:201.266400pt;}
.y237{bottom:201.428533pt;}
.y18e{bottom:203.819733pt;}
.y85{bottom:204.717733pt;}
.y3{bottom:209.406667pt;}
.y2bf{bottom:210.071733pt;}
.y1ff{bottom:211.404267pt;}
.y28c{bottom:211.803333pt;}
.y164{bottom:212.287200pt;}
.y1cd{bottom:216.296400pt;}
.y2f9{bottom:216.378800pt;}
.y51{bottom:216.437467pt;}
.y259{bottom:216.478267pt;}
.yf1{bottom:216.550133pt;}
.ybc{bottom:217.267733pt;}
.y236{bottom:217.429867pt;}
.y18d{bottom:219.821067pt;}
.y84{bottom:220.719067pt;}
.y1c9{bottom:221.781067pt;}
.y1fe{bottom:223.404267pt;}
.y2be{bottom:226.071733pt;}
.y28b{bottom:227.804667pt;}
.y163{bottom:228.288533pt;}
.y1cc{bottom:228.296400pt;}
.y258{bottom:228.478267pt;}
.y2f8{bottom:232.380133pt;}
.y50{bottom:232.438800pt;}
.ybb{bottom:233.269067pt;}
.y235{bottom:233.431200pt;}
.y1fd{bottom:235.404267pt;}
.y18c{bottom:235.822400pt;}
.y83{bottom:236.720400pt;}
.yf0{bottom:240.104800pt;}
.y2bd{bottom:242.071733pt;}
.y28a{bottom:243.806000pt;}
.y162{bottom:244.289867pt;}
.y1cb{bottom:248.300400pt;}
.y2f7{bottom:248.381467pt;}
.y4f{bottom:248.432133pt;}
.y257{bottom:248.478933pt;}
.yba{bottom:249.270400pt;}
.y18b{bottom:251.823733pt;}
.y82{bottom:252.721733pt;}
.y1fc{bottom:255.732267pt;}
.yef{bottom:256.106133pt;}
.y234{bottom:256.985867pt;}
.y126{bottom:257.131867pt;}
.y2bc{bottom:258.071733pt;}
.y289{bottom:259.807333pt;}
.y161{bottom:260.291200pt;}
.y1ca{bottom:260.300400pt;}
.y2f6{bottom:264.382800pt;}
.y4e{bottom:264.433467pt;}
.yb9{bottom:265.271733pt;}
.y18a{bottom:267.825067pt;}
.y81{bottom:268.723067pt;}
.yee{bottom:272.107467pt;}
.y233{bottom:272.987200pt;}
.y125{bottom:273.133200pt;}
.y2bb{bottom:274.071733pt;}
.y288{bottom:275.808667pt;}
.y1fb{bottom:276.060267pt;}
.y160{bottom:276.292533pt;}
.y2f5{bottom:280.384133pt;}
.y4d{bottom:280.434800pt;}
.y1c8{bottom:280.815467pt;}
.yb8{bottom:281.273067pt;}
.y19{bottom:283.115067pt;}
.y189{bottom:283.826400pt;}
.y80{bottom:284.724400pt;}
.y256{bottom:284.966133pt;}
.y1fa{bottom:288.060267pt;}
.yed{bottom:288.108800pt;}
.y232{bottom:288.988533pt;}
.y124{bottom:289.134533pt;}
.y2ba{bottom:290.071733pt;}
.y287{bottom:291.810000pt;}
.y15f{bottom:292.293867pt;}
.y2f4{bottom:296.385467pt;}
.y4c{bottom:296.436133pt;}
.yb7{bottom:297.274400pt;}
.y17{bottom:299.115067pt;}
.y188{bottom:299.827733pt;}
.y1f9{bottom:300.060267pt;}
.y7f{bottom:300.725733pt;}
.y1c7{bottom:301.335467pt;}
.yec{bottom:304.110133pt;}
.y231{bottom:304.989867pt;}
.y123{bottom:305.135867pt;}
.y2b9{bottom:306.071733pt;}
.y286{bottom:307.811333pt;}
.y1c3{bottom:312.301600pt;}
.y2f3{bottom:312.386800pt;}
.y4b{bottom:312.437467pt;}
.yb6{bottom:313.275733pt;}
.y1c6{bottom:313.335467pt;}
.y255{bottom:313.419467pt;}
.y16{bottom:315.115067pt;}
.y15e{bottom:315.848533pt;}
.y1f8{bottom:320.060933pt;}
.yeb{bottom:320.111467pt;}
.y230{bottom:320.991200pt;}
.y122{bottom:321.137200pt;}
.y2b8{bottom:322.071733pt;}
.y187{bottom:323.386667pt;}
.y285{bottom:323.812667pt;}
.y7e{bottom:324.284800pt;}
.y2f2{bottom:328.388133pt;}
.y4a{bottom:328.438800pt;}
.yb5{bottom:329.277067pt;}
.y15{bottom:331.115067pt;}
.y15d{bottom:331.849867pt;}
.y1c5{bottom:333.339467pt;}
.yea{bottom:336.112800pt;}
.y22f{bottom:336.992533pt;}
.y121{bottom:337.138533pt;}
.y2b7{bottom:338.071733pt;}
.y284{bottom:339.814000pt;}
.y254{bottom:342.206267pt;}
.y2f1{bottom:344.389467pt;}
.y49{bottom:344.430800pt;}
.yb4{bottom:345.278400pt;}
.y1c4{bottom:345.339467pt;}
.y14{bottom:347.115067pt;}
.y15c{bottom:347.851200pt;}
.y22e{bottom:352.993867pt;}
.y120{bottom:353.139867pt;}
.y2b6{bottom:354.071733pt;}
.y253{bottom:354.206267pt;}
.y1f7{bottom:356.550133pt;}
.y186{bottom:357.171467pt;}
.y7d{bottom:358.069467pt;}
.ye9{bottom:359.667467pt;}
.y2f0{bottom:360.390800pt;}
.y48{bottom:360.432133pt;}
.yb3{bottom:361.279733pt;}
.y13{bottom:363.115067pt;}
.y283{bottom:363.368667pt;}
.y15b{bottom:363.852533pt;}
.y1c2{bottom:365.333467pt;}
.y22d{bottom:368.995200pt;}
.y11f{bottom:369.141200pt;}
.y2b5{bottom:370.071733pt;}
.y252{bottom:374.870267pt;}
.ye8{bottom:375.668800pt;}
.y2ef{bottom:376.392133pt;}
.y47{bottom:376.433467pt;}
.yb2{bottom:377.281067pt;}
.y1c1{bottom:377.333467pt;}
.y1f6{bottom:377.433333pt;}
.y12{bottom:379.115067pt;}
.y282{bottom:379.370000pt;}
.y15a{bottom:379.853867pt;}
.y11e{bottom:385.142533pt;}
.y2b4{bottom:386.071733pt;}
.y7c{bottom:387.653867pt;}
.y185{bottom:388.158667pt;}
.y1c0{bottom:389.333467pt;}
.ye7{bottom:391.670133pt;}
.y2ee{bottom:392.393467pt;}
.y46{bottom:392.434800pt;}
.y22c{bottom:392.549867pt;}
.yb1{bottom:393.282400pt;}
.y1f5{bottom:393.434667pt;}
.y11{bottom:395.115067pt;}
.y281{bottom:395.371333pt;}
.y251{bottom:395.534267pt;}
.y7b{bottom:398.453867pt;}
.y184{bottom:400.158667pt;}
.y11d{bottom:401.143867pt;}
.y324{bottom:402.038800pt;}
.y2b3{bottom:402.071733pt;}
.y159{bottom:403.408533pt;}
.ye6{bottom:407.671467pt;}
.y2ed{bottom:408.394800pt;}
.y45{bottom:408.436133pt;}
.y22b{bottom:408.551200pt;}
.y1bb{bottom:408.823600pt;}
.yb0{bottom:409.283733pt;}
.y1bf{bottom:409.337467pt;}
.y1f4{bottom:409.436000pt;}
.y280{bottom:411.372667pt;}
.y250{bottom:415.538267pt;}
.y11c{bottom:417.145200pt;}
.y323{bottom:418.040133pt;}
.y2b2{bottom:418.071733pt;}
.y158{bottom:419.409867pt;}
.y1be{bottom:421.337467pt;}
.ye5{bottom:423.672800pt;}
.y2ec{bottom:424.396133pt;}
.y44{bottom:424.437467pt;}
.y22a{bottom:424.552533pt;}
.y182{bottom:424.614667pt;}
.yaf{bottom:425.285067pt;}
.y27f{bottom:427.374000pt;}
.y24f{bottom:427.538267pt;}
.y7a{bottom:430.853867pt;}
.y1f3{bottom:432.990667pt;}
.y2{bottom:433.088933pt;}
.y11b{bottom:433.146533pt;}
.y322{bottom:434.041467pt;}
.y2b1{bottom:434.071733pt;}
.y157{bottom:435.411200pt;}
.y181{bottom:436.614667pt;}
.ye4{bottom:439.674133pt;}
.y2eb{bottom:440.397467pt;}
.y43{bottom:440.438800pt;}
.y229{bottom:440.553867pt;}
.yae{bottom:441.283733pt;}
.y1bd{bottom:441.341467pt;}
.y79{bottom:441.653867pt;}
.y183{bottom:442.614667pt;}
.y24e{bottom:447.538933pt;}
.y180{bottom:448.614667pt;}
.y1f2{bottom:448.992000pt;}
.y11a{bottom:449.147867pt;}
.y321{bottom:450.042800pt;}
.y2b0{bottom:450.071733pt;}
.y156{bottom:451.412533pt;}
.y1bc{bottom:453.341467pt;}
.ye3{bottom:455.675467pt;}
.y2ea{bottom:456.398800pt;}
.y42{bottom:456.426800pt;}
.yad{bottom:457.285067pt;}
.y27e{bottom:458.492000pt;}
.y17f{bottom:460.614667pt;}
.y228{bottom:464.108533pt;}
.y1f1{bottom:464.993333pt;}
.y119{bottom:465.149200pt;}
.y320{bottom:466.044133pt;}
.y2af{bottom:466.071733pt;}
.y155{bottom:467.413867pt;}
.ye2{bottom:471.676800pt;}
.y2e9{bottom:472.400133pt;}
.y41{bottom:472.428133pt;}
.yac{bottom:473.282400pt;}
.y1ba{bottom:473.335467pt;}
.y78{bottom:473.535333pt;}
.y227{bottom:480.109867pt;}
.y1f0{bottom:480.994667pt;}
.y118{bottom:481.150533pt;}
.y31f{bottom:482.045467pt;}
.y2ae{bottom:482.071733pt;}
.y154{bottom:483.415200pt;}
.y24d{bottom:484.026267pt;}
.y17e{bottom:485.070667pt;}
.y1b9{bottom:485.335467pt;}
.ye1{bottom:487.678133pt;}
.y2e8{bottom:488.401467pt;}
.y40{bottom:488.429467pt;}
.yab{bottom:489.283733pt;}
.y27d{bottom:492.254400pt;}
.y77{bottom:495.135333pt;}
.y75{bottom:495.654000pt;}
.y226{bottom:496.111200pt;}
.y1ef{bottom:496.996000pt;}
.y17d{bottom:497.070667pt;}
.y117{bottom:497.151867pt;}
.y31e{bottom:498.046800pt;}
.y2ad{bottom:498.071733pt;}
.y153{bottom:499.416533pt;}
.ye0{bottom:503.679467pt;}
.y2e7{bottom:504.402800pt;}
.y3f{bottom:504.430800pt;}
.yaa{bottom:505.285067pt;}
.y1b7{bottom:505.339467pt;}
.y27c{bottom:508.255733pt;}
.y17c{bottom:509.070667pt;}
.y225{bottom:512.112533pt;}
.y24c{bottom:512.479600pt;}
.y116{bottom:513.153200pt;}
.y31d{bottom:514.048133pt;}
.y2ac{bottom:514.071733pt;}
.y76{bottom:517.254000pt;}
.y1b6{bottom:517.339467pt;}
.ydf{bottom:519.680800pt;}
.y2e6{bottom:520.404133pt;}
.y3e{bottom:520.432133pt;}
.y1ee{bottom:520.550667pt;}
.y18{bottom:520.741733pt;}
.ya9{bottom:521.283733pt;}
.y152{bottom:522.971200pt;}
.y1b8{bottom:523.339467pt;}
.y27b{bottom:524.257067pt;}
.y224{bottom:528.113867pt;}
.y1b0{bottom:528.825467pt;}
.y115{bottom:529.154533pt;}
.y1b5{bottom:529.339467pt;}
.y31c{bottom:530.049467pt;}
.y2ab{bottom:530.071733pt;}
.y17b{bottom:533.526667pt;}
.yde{bottom:535.682133pt;}
.y2e5{bottom:536.405467pt;}
.y3d{bottom:536.433467pt;}
.y1ed{bottom:536.552000pt;}
.y10{bottom:536.741733pt;}
.ya8{bottom:537.285067pt;}
.y74{bottom:538.335333pt;}
.y151{bottom:538.972533pt;}
.y27a{bottom:540.258400pt;}
.y24b{bottom:541.278400pt;}
.y1b4{bottom:541.339467pt;}
.y114{bottom:545.155867pt;}
.y17a{bottom:545.526667pt;}
.y31b{bottom:546.050800pt;}
.y2aa{bottom:546.071733pt;}
.y223{bottom:551.668533pt;}
.ydd{bottom:551.683467pt;}
.y2e4{bottom:552.406800pt;}
.y3c{bottom:552.434800pt;}
.y1ec{bottom:552.553333pt;}
.yf{bottom:552.741733pt;}
.y24a{bottom:553.278400pt;}
.ya7{bottom:553.283733pt;}
.y150{bottom:554.973867pt;}
.y279{bottom:556.259733pt;}
.y73{bottom:559.935333pt;}
.y113{bottom:561.157200pt;}
.y1b3{bottom:561.343467pt;}
.y31a{bottom:562.052133pt;}
.y2a9{bottom:562.071733pt;}
.y222{bottom:567.669867pt;}
.ydc{bottom:567.684800pt;}
.y2e3{bottom:568.408133pt;}
.y3b{bottom:568.436133pt;}
.y1eb{bottom:568.554667pt;}
.ye{bottom:568.741733pt;}
.ya6{bottom:569.285067pt;}
.y179{bottom:569.982667pt;}
.y14f{bottom:570.975200pt;}
.y278{bottom:572.261067pt;}
.y1b2{bottom:573.343467pt;}
.y249{bottom:573.606400pt;}
.y6f{bottom:575.587333pt;}
.y112{bottom:577.158533pt;}
.y319{bottom:578.053467pt;}
.y2a8{bottom:578.071733pt;}
.y178{bottom:581.982667pt;}
.y72{bottom:582.055333pt;}
.y221{bottom:583.671200pt;}
.ydb{bottom:583.686133pt;}
.y2e2{bottom:584.409467pt;}
.y3a{bottom:584.437467pt;}
.y1ea{bottom:584.556000pt;}
.yd{bottom:584.741733pt;}
.y1b1{bottom:585.343467pt;}
.y14e{bottom:586.976533pt;}
.y6e{bottom:587.587333pt;}
.y277{bottom:588.262400pt;}
.ya5{bottom:592.844133pt;}
.y111{bottom:593.159867pt;}
.y177{bottom:593.982667pt;}
.y318{bottom:594.054800pt;}
.y2a7{bottom:594.071733pt;}
.y248{bottom:594.270400pt;}
.y220{bottom:599.672533pt;}
.yda{bottom:599.687467pt;}
.y2e1{bottom:600.410800pt;}
.y39{bottom:600.438800pt;}
.y1e9{bottom:600.557333pt;}
.yc{bottom:600.741733pt;}
.y14d{bottom:602.977867pt;}
.y71{bottom:603.655333pt;}
.y1af{bottom:605.346400pt;}
.y110{bottom:609.161200pt;}
.y317{bottom:610.056133pt;}
.y2a6{bottom:610.071733pt;}
.y276{bottom:611.817067pt;}
.y247{bottom:614.598400pt;}
.y21f{bottom:615.673867pt;}
.yd9{bottom:615.688800pt;}
.y2e0{bottom:616.412133pt;}
.y38{bottom:616.430800pt;}
.yb{bottom:616.741733pt;}
.y1ae{bottom:617.346400pt;}
.y176{bottom:618.438667pt;}
.y14c{bottom:618.979200pt;}
.y1e8{bottom:624.112000pt;}
.y70{bottom:624.787333pt;}
.y10f{bottom:625.162533pt;}
.y316{bottom:626.057467pt;}
.y2a5{bottom:626.071733pt;}
.y246{bottom:626.598400pt;}
.ya4{bottom:626.628933pt;}
.y275{bottom:627.818400pt;}
.y175{bottom:630.438667pt;}
.y21e{bottom:631.675200pt;}
.yd8{bottom:631.690133pt;}
.y2df{bottom:632.413467pt;}
.y37{bottom:632.432133pt;}
.ya{bottom:632.741733pt;}
.y1aa{bottom:637.160133pt;}
.y1ad{bottom:637.350400pt;}
.y1e7{bottom:640.113333pt;}
.y10e{bottom:641.163867pt;}
.y315{bottom:642.058800pt;}
.y2a4{bottom:642.071733pt;}
.y174{bottom:642.438667pt;}
.y14b{bottom:642.538267pt;}
.y274{bottom:643.819733pt;}
.y6d{bottom:645.120933pt;}
.y245{bottom:646.598933pt;}
.y21d{bottom:647.676533pt;}
.yd7{bottom:647.691467pt;}
.y2de{bottom:648.414800pt;}
.y36{bottom:648.433467pt;}
.y1ac{bottom:649.350400pt;}
.ya3{bottom:655.413733pt;}
.y1e6{bottom:656.114667pt;}
.y10d{bottom:657.165200pt;}
.y314{bottom:658.060133pt;}
.y2a3{bottom:658.071733pt;}
.y1{bottom:659.608933pt;}
.y273{bottom:659.821067pt;}
.y21c{bottom:663.677867pt;}
.y2dd{bottom:664.416133pt;}
.y35{bottom:664.434800pt;}
.y172{bottom:666.894667pt;}
.ya2{bottom:667.413733pt;}
.y1ab{bottom:669.678400pt;}
.yd6{bottom:671.250400pt;}
.y1e5{bottom:672.116000pt;}
.y2c9{bottom:672.287733pt;}
.y10c{bottom:673.166533pt;}
.y14a{bottom:673.548800pt;}
.y313{bottom:674.061467pt;}
.y2a2{bottom:674.071733pt;}
.y272{bottom:675.822400pt;}
.y171{bottom:678.894667pt;}
.y2dc{bottom:680.417467pt;}
.y34{bottom:680.436133pt;}
.y6c{bottom:681.610400pt;}
.y244{bottom:683.088267pt;}
.y173{bottom:684.894667pt;}
.y148{bottom:685.029067pt;}
.y149{bottom:685.548800pt;}
.y21b{bottom:687.232533pt;}
.ya1{bottom:687.694267pt;}
.y1e4{bottom:688.117333pt;}
.y2c8{bottom:688.287733pt;}
.y10b{bottom:689.167867pt;}
.y1a9{bottom:690.008667pt;}
.y312{bottom:690.062800pt;}
.y2a1{bottom:690.071733pt;}
.y170{bottom:690.894667pt;}
.y271{bottom:691.823733pt;}
.y9d{bottom:693.013600pt;}
.y2db{bottom:696.418800pt;}
.y33{bottom:696.437467pt;}
.yd5{bottom:697.461467pt;}
.y1a8{bottom:702.008667pt;}
.y6b{bottom:702.502400pt;}
.y16f{bottom:702.894667pt;}
.y21a{bottom:703.233867pt;}
.y243{bottom:703.979333pt;}
.y9c{bottom:705.013600pt;}
.y10a{bottom:705.169200pt;}
.y311{bottom:706.064133pt;}
.y2a0{bottom:706.071733pt;}
.ya0{bottom:709.014267pt;}
.y1a5{bottom:711.493333pt;}
.y1e3{bottom:711.672000pt;}
.y2c7{bottom:711.846400pt;}
.y2da{bottom:712.420133pt;}
.y32{bottom:712.438800pt;}
.yd4{bottom:713.462800pt;}
.y9f{bottom:715.014267pt;}
.y270{bottom:715.378400pt;}
.y6a{bottom:718.502400pt;}
.y219{bottom:719.235200pt;}
.y242{bottom:719.980667pt;}
.y146{bottom:722.000933pt;}
.y1a7{bottom:722.012667pt;}
.y310{bottom:722.065467pt;}
.y29f{bottom:722.071733pt;}
.y16e{bottom:727.346667pt;}
.y1e2{bottom:727.673333pt;}
.y31{bottom:728.420133pt;}
.y2d9{bottom:728.421467pt;}
.y109{bottom:728.728267pt;}
.yd3{bottom:729.464133pt;}
.y26f{bottom:731.379733pt;}
.y145{bottom:734.000933pt;}
.y1a6{bottom:734.012667pt;}
.y69{bottom:734.502400pt;}
.y218{bottom:735.236533pt;}
.y30f{bottom:738.066800pt;}
.y29e{bottom:738.071733pt;}
.y9e{bottom:742.851867pt;}
.y241{bottom:743.539600pt;}
.y1e1{bottom:743.674667pt;}
.y9{bottom:744.289333pt;}
.y30{bottom:744.421467pt;}
.y2d8{bottom:744.422800pt;}
.yd2{bottom:745.465467pt;}
.y144{bottom:746.000933pt;}
.y26e{bottom:747.381067pt;}
.y68{bottom:750.502400pt;}
.y217{bottom:751.237867pt;}
.y1a4{bottom:754.013333pt;}
.y30e{bottom:754.068133pt;}
.y29d{bottom:754.071733pt;}
.y108{bottom:754.941067pt;}
.y13f{bottom:757.481200pt;}
.y147{bottom:757.482400pt;}
.y143{bottom:758.000933pt;}
.y1e0{bottom:759.676000pt;}
.y2f{bottom:760.422800pt;}
.y2d7{bottom:760.424133pt;}
.yd1{bottom:761.466800pt;}
.y8{bottom:762.516000pt;}
.y26d{bottom:763.382400pt;}
.y9b{bottom:763.651333pt;}
.y16d{bottom:766.061600pt;}
.y67{bottom:766.502400pt;}
.y216{bottom:767.239200pt;}
.y142{bottom:770.000933pt;}
.y30d{bottom:770.069467pt;}
.y29c{bottom:770.071733pt;}
.y107{bottom:770.942400pt;}
.y9a{bottom:775.651333pt;}
.y1df{bottom:775.677333pt;}
.y2e{bottom:776.424133pt;}
.y2d6{bottom:776.425467pt;}
.yd0{bottom:777.468133pt;}
.y26c{bottom:779.383733pt;}
.y240{bottom:779.468400pt;}
.y141{bottom:782.000933pt;}
.y66{bottom:782.502400pt;}
.y97{bottom:785.650533pt;}
.y30c{bottom:786.070800pt;}
.y29b{bottom:786.071733pt;}
.y106{bottom:786.943733pt;}
.y1a3{bottom:790.502533pt;}
.y215{bottom:790.793867pt;}
.y1de{bottom:791.678667pt;}
.y2d{bottom:792.425467pt;}
.y2d5{bottom:792.426800pt;}
.ycf{bottom:793.469467pt;}
.y140{bottom:794.000933pt;}
.y26b{bottom:795.385067pt;}
.y99{bottom:795.650533pt;}
.y65{bottom:798.502400pt;}
.y30b{bottom:802.069467pt;}
.y29a{bottom:802.071733pt;}
.y105{bottom:802.945067pt;}
.y214{bottom:806.795200pt;}
.y98{bottom:807.650533pt;}
.y2c{bottom:808.426800pt;}
.y2d4{bottom:808.428133pt;}
.yce{bottom:809.470800pt;}
.y1a2{bottom:811.396133pt;}
.y7{bottom:814.364000pt;}
.y64{bottom:814.502400pt;}
.y1dd{bottom:815.237733pt;}
.y30a{bottom:818.070800pt;}
.y299{bottom:818.071733pt;}
.y13d{bottom:818.453067pt;}
.y104{bottom:818.946400pt;}
.y213{bottom:822.796533pt;}
.y2b{bottom:824.428133pt;}
.y2d3{bottom:824.429467pt;}
.ycd{bottom:825.472133pt;}
.y26a{bottom:826.507733pt;}
.y1a1{bottom:827.397467pt;}
.y96{bottom:828.690533pt;}
.y13c{bottom:830.453067pt;}
.y63{bottom:830.502400pt;}
.y23a{bottom:833.468400pt;}
.y298{bottom:834.071733pt;}
.y309{bottom:834.072133pt;}
.y95{bottom:834.690533pt;}
.y23d{bottom:834.800400pt;}
.y103{bottom:834.947733pt;}
.y135{bottom:835.931733pt;}
.y212{bottom:838.797867pt;}
.y2a{bottom:840.429467pt;}
.y2d2{bottom:840.430800pt;}
.ycc{bottom:841.473467pt;}
.y13b{bottom:842.453067pt;}
.y269{bottom:842.509067pt;}
.y1db{bottom:844.024800pt;}
.y62{bottom:846.502400pt;}
.y134{bottom:847.931733pt;}
.y308{bottom:850.057467pt;}
.y297{bottom:850.071733pt;}
.y102{bottom:850.949067pt;}
.y1a0{bottom:850.952133pt;}
.y13a{bottom:854.453067pt;}
.y211{bottom:854.799200pt;}
.y1da{bottom:856.024800pt;}
.y29{bottom:856.430800pt;}
.y2d1{bottom:856.432133pt;}
.ycb{bottom:857.474800pt;}
.y268{bottom:858.510400pt;}
.y133{bottom:859.931733pt;}
.y13e{bottom:859.934533pt;}
.y6{bottom:861.206667pt;}
.y1dc{bottom:862.024800pt;}
.y61{bottom:862.502400pt;}
.y307{bottom:866.058800pt;}
.y296{bottom:866.071733pt;}
.y139{bottom:866.453067pt;}
.y16c{bottom:866.950400pt;}
.y19f{bottom:866.953467pt;}
.y1d9{bottom:868.024800pt;}
.y210{bottom:870.800533pt;}
.y132{bottom:871.931733pt;}
.y28{bottom:872.432133pt;}
.y2d0{bottom:872.433467pt;}
.yca{bottom:873.476133pt;}
.y101{bottom:874.503733pt;}
.y267{bottom:874.511733pt;}
.y94{bottom:877.180000pt;}
.y138{bottom:878.453067pt;}
.y60{bottom:878.502400pt;}
.y1d8{bottom:880.024800pt;}
.y306{bottom:882.060133pt;}
.y295{bottom:882.071733pt;}
.y16b{bottom:882.951733pt;}
.y19e{bottom:882.954800pt;}
.y131{bottom:883.931733pt;}
.y20f{bottom:886.801867pt;}
.y5{bottom:887.368000pt;}
.y27{bottom:888.433467pt;}
.y2cf{bottom:888.434800pt;}
.y137{bottom:890.453067pt;}
.y100{bottom:890.505067pt;}
.y266{bottom:890.513067pt;}
.y5f{bottom:894.502400pt;}
.y23b{bottom:894.800400pt;}
.y23e{bottom:896.132400pt;}
.yc9{bottom:897.033333pt;}
.y305{bottom:898.061467pt;}
.y294{bottom:898.071733pt;}
.y93{bottom:898.072000pt;}
.y19d{bottom:898.956133pt;}
.y1d7{bottom:900.028800pt;}
.y136{bottom:902.453067pt;}
.y26{bottom:904.434800pt;}
.y2ce{bottom:904.436133pt;}
.yff{bottom:906.506400pt;}
.y20e{bottom:910.360933pt;}
.y5e{bottom:910.502400pt;}
.y1d6{bottom:912.028800pt;}
.y304{bottom:914.062800pt;}
.y265{bottom:914.071733pt;}
.y92{bottom:914.072000pt;}
.y19c{bottom:914.957467pt;}
.y25{bottom:920.436133pt;}
.y2cd{bottom:920.437467pt;}
.y23{bottom:920.438800pt;}
.yfe{bottom:922.507733pt;}
.yc8{bottom:926.100000pt;}
.y5d{bottom:926.502400pt;}
.y12b{bottom:926.900933pt;}
.y12f{bottom:927.423600pt;}
.y303{bottom:930.064133pt;}
.y264{bottom:930.071733pt;}
.y91{bottom:930.072000pt;}
.y19b{bottom:930.958800pt;}
.y1d5{bottom:932.356800pt;}
.y24{bottom:936.437467pt;}
.y2cc{bottom:936.438800pt;}
.yfd{bottom:938.509067pt;}
.y12a{bottom:938.900933pt;}
.y12e{bottom:939.423600pt;}
.y20d{bottom:944.145733pt;}
.y130{bottom:944.905067pt;}
.y302{bottom:946.065467pt;}
.y263{bottom:946.071733pt;}
.y90{bottom:946.072000pt;}
.yc6{bottom:947.700000pt;}
.y5c{bottom:950.061067pt;}
.y129{bottom:950.900933pt;}
.y12d{bottom:951.423600pt;}
.y2cb{bottom:952.438800pt;}
.y1d4{bottom:952.690533pt;}
.yfc{bottom:954.510400pt;}
.y19a{bottom:954.513467pt;}
.y23c{bottom:956.132400pt;}
.y23f{bottom:957.464400pt;}
.y20c{bottom:957.823600pt;}
.y301{bottom:962.066800pt;}
.y262{bottom:962.071733pt;}
.y8f{bottom:962.072000pt;}
.y128{bottom:962.900933pt;}
.y12c{bottom:963.423600pt;}
.y22{bottom:968.436133pt;}
.yc7{bottom:969.300000pt;}
.y20b{bottom:969.823600pt;}
.yfb{bottom:970.511733pt;}
.y199{bottom:978.068133pt;}
.y261{bottom:978.071733pt;}
.y8e{bottom:978.072000pt;}
.y5b{bottom:983.846667pt;}
.y21{bottom:984.437467pt;}
.yfa{bottom:986.513067pt;}
.y127{bottom:988.394267pt;}
.y1d3{bottom:989.180000pt;}
.y20a{bottom:990.151600pt;}
.yc5{bottom:990.620000pt;}
.y198{bottom:994.069467pt;}
.y260{bottom:994.071733pt;}
.y8d{bottom:994.072000pt;}
.y20{bottom:1000.438800pt;}
.y1d{bottom:1008.565333pt;}
.y197{bottom:1010.070800pt;}
.y25f{bottom:1010.071733pt;}
.y5a{bottom:1010.072000pt;}
.y209{bottom:1010.479600pt;}
.y208{bottom:1022.479600pt;}
.y1f{bottom:1023.997867pt;}
.y1c{bottom:1024.565333pt;}
.y59{bottom:1026.072000pt;}
.y196{bottom:1026.072133pt;}
.yc4{bottom:1027.109200pt;}
.y1b{bottom:1040.565333pt;}
.y1a{bottom:1056.565333pt;}
.y2ca{bottom:1071.508000pt;}
.y1e{bottom:1071.708000pt;}
.h1f{height:33.328125pt;}
.h1e{height:33.539062pt;}
.h20{height:35.963542pt;}
.h2{height:36.250000pt;}
.ha{height:36.458333pt;}
.hb{height:37.395833pt;}
.h8{height:37.552083pt;}
.h9{height:38.281250pt;}
.h22{height:41.307292pt;}
.h10{height:41.765625pt;}
.h3{height:42.109375pt;}
.h7{height:43.750000pt;}
.h1d{height:44.348650pt;}
.hf{height:46.406250pt;}
.hc{height:48.614583pt;}
.h5{height:50.750000pt;}
.hd{height:51.046875pt;}
.h21{height:51.057542pt;}
.h6{height:55.687500pt;}
.h4{height:58.000000pt;}
.h18{height:65.765625pt;}
.h13{height:67.839758pt;}
.h14{height:67.848825pt;}
.h1a{height:68.322517pt;}
.h15{height:68.335317pt;}
.h19{height:68.345450pt;}
.h1b{height:68.358783pt;}
.h12{height:70.406250pt;}
.h11{height:84.965625pt;}
.h17{height:89.765625pt;}
.h16{height:91.844558pt;}
.h1c{height:92.358783pt;}
.he{height:218.150212pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:45.224133pt;}
.x1{left:47.244133pt;}
.xf{left:66.127600pt;}
.x4b{left:80.084800pt;}
.x7{left:81.077333pt;}
.xe{left:82.378267pt;}
.x4a{left:83.936800pt;}
.xc{left:85.051067pt;}
.x2a{left:87.363200pt;}
.x10{left:90.141733pt;}
.x36{left:91.822667pt;}
.x45{left:94.419333pt;}
.x6d{left:95.641067pt;}
.x48{left:97.604800pt;}
.x13{left:98.682000pt;}
.x3d{left:100.579333pt;}
.x25{left:102.641867pt;}
.xb{left:103.941733pt;}
.x37{left:105.289333pt;}
.x1e{left:110.218933pt;}
.x50{left:111.376133pt;}
.x4f{left:112.882800pt;}
.x20{left:113.962933pt;}
.x54{left:115.288267pt;}
.x67{left:117.190400pt;}
.x68{left:118.810400pt;}
.x61{left:122.008267pt;}
.x7b{left:123.752000pt;}
.x80{left:124.849733pt;}
.x46{left:126.137467pt;}
.x23{left:129.244000pt;}
.xa{left:133.733333pt;}
.x78{left:137.498933pt;}
.x6b{left:139.464267pt;}
.x5{left:142.856000pt;}
.x7c{left:147.957200pt;}
.x12{left:152.994000pt;}
.x7a{left:153.968000pt;}
.x4d{left:157.796800pt;}
.x72{left:161.465067pt;}
.x82{left:163.081733pt;}
.x14{left:168.846000pt;}
.x1a{left:171.766933pt;}
.x6f{left:184.669067pt;}
.x35{left:186.804800pt;}
.x39{left:188.812667pt;}
.x3e{left:189.706133pt;}
.x3a{left:191.512667pt;}
.x38{left:193.636667pt;}
.x41{left:195.946133pt;}
.x42{left:201.244133pt;}
.x40{left:206.146133pt;}
.x43{left:207.256133pt;}
.x3f{left:212.974133pt;}
.x32{left:214.320800pt;}
.x58{left:220.023467pt;}
.x11{left:221.332933pt;}
.x51{left:223.572667pt;}
.x59{left:224.883467pt;}
.x5d{left:225.907333pt;}
.x53{left:227.832667pt;}
.x57{left:229.335467pt;}
.x8{left:230.414667pt;}
.x5a{left:232.539467pt;}
.x5f{left:234.295333pt;}
.x56{left:235.995333pt;}
.x31{left:239.490400pt;}
.x81{left:241.225733pt;}
.x55{left:242.835333pt;}
.x4e{left:243.740800pt;}
.x6{left:244.842667pt;}
.x62{left:247.616533pt;}
.x70{left:253.417067pt;}
.x28{left:255.126000pt;}
.x7e{left:257.566933pt;}
.x64{left:259.135067pt;}
.x27{left:263.908533pt;}
.x26{left:265.975200pt;}
.x24{left:266.921733pt;}
.x44{left:268.696133pt;}
.x29{left:272.982000pt;}
.x2{left:283.470800pt;}
.x4c{left:285.956800pt;}
.x6e{left:291.097067pt;}
.x71{left:298.333067pt;}
.x69{left:303.850400pt;}
.x3b{left:304.900667pt;}
.x63{left:306.344533pt;}
.x22{left:308.650533pt;}
.x6c{left:310.742667pt;}
.x9{left:311.976000pt;}
.x47{left:322.947600pt;}
.x1f{left:327.310933pt;}
.x66{left:334.272800pt;}
.x7d{left:335.782000pt;}
.x7f{left:339.277733pt;}
.x5e{left:343.531333pt;}
.x60{left:344.467333pt;}
.x1d{left:346.963467pt;}
.x65{left:349.531067pt;}
.x1c{left:357.883467pt;}
.x74{left:363.038933pt;}
.x79{left:366.200933pt;}
.x73{left:367.226933pt;}
.x5b{left:370.779467pt;}
.x15{left:372.930000pt;}
.x5c{left:384.243467pt;}
.x16{left:386.166000pt;}
.x34{left:388.160800pt;}
.x83{left:391.293333pt;}
.x52{left:392.364667pt;}
.x2f{left:401.743867pt;}
.x33{left:404.187467pt;}
.x18{left:405.571867pt;}
.x17{left:407.850000pt;}
.x2c{left:414.690933pt;}
.x19{left:419.145200pt;}
.x21{left:428.602933pt;}
.x2e{left:429.957600pt;}
.x1b{left:431.650933pt;}
.x2b{left:445.009467pt;}
.x30{left:456.259867pt;}
.x75{left:488.510933pt;}
.x77{left:547.058933pt;}
.x76{left:551.246933pt;}
.x4{left:604.684000pt;}
.x3{left:610.413333pt;}
.x2d{left:619.277600pt;}
.x6a{left:623.374400pt;}
.x49{left:645.680800pt;}
.x3c{left:661.752667pt;}
}




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