
    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_9e16bfd9c9eafcc920a91dea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_0779ab2fb367eaac5ac21cfe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_3385769965f1afb5ab45e84e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_590eff0104055fbb2cb2b48b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_79537b055d69cbfec1eb19ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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_f0a424ad5a769f700df60601.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953000;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_e101fc36622ef98d635ffe9a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100000;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_590eff0104055fbb2cb2b48b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927000;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_272c7b766c45338ae35f38ed.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941000;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_87cfc96d6cbc1cb7d1148bdf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100000;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_b40dcaeb5109e84253068ec4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.927000;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_11752ff9f69c602bb675bb0f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.953000;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_64efb116308497c5886d3db8.woff2')format("woff");}.fff{font-family:fff;line-height:0.932000;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_ebbf86c515927db4e9f74c0b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_8c27682f21c589bd1c3c7fb6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d96af669490c50ea36bc90f1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_fd6634cfecbff36dfb46a87d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b6a9457dc8826ef21a6399fe.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_1ce52c3df1d68f1febd171af.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_0779ab2fb367eaac5ac21cfe.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.927000;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);}
.m2{transform:matrix(1.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250007,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-2.802789px;}
.lsf{letter-spacing:-2.341152px;}
.ls1e{letter-spacing:-0.916560px;}
.ls1d{letter-spacing:-0.482400px;}
.lsd{letter-spacing:-0.385920px;}
.ls25{letter-spacing:-0.356719px;}
.ls1f{letter-spacing:-0.336960px;}
.lsc{letter-spacing:-0.192960px;}
.ls9{letter-spacing:-0.162000px;}
.ls1c{letter-spacing:-0.144720px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000341px;}
.ls15{letter-spacing:0.162000px;}
.ls21{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.337680px;}
.ls23{letter-spacing:0.404681px;}
.ls20{letter-spacing:0.421200px;}
.ls6{letter-spacing:0.611518px;}
.ls22{letter-spacing:0.629504px;}
.ls5{letter-spacing:1.049175px;}
.ls7{letter-spacing:1.064160px;}
.ls4{letter-spacing:1.124115px;}
.ls3{letter-spacing:1.273995px;}
.ls8{letter-spacing:1.630200px;}
.ls2{letter-spacing:1.807080px;}
.ls1{letter-spacing:2.391735px;}
.ls13{letter-spacing:179.501040px;}
.ls10{letter-spacing:251.185680px;}
.lsb{letter-spacing:305.166240px;}
.ls11{letter-spacing:321.300000px;}
.ls12{letter-spacing:326.102400px;}
.ls14{letter-spacing:1097.590248px;}
.ls18{letter-spacing:1576.746000px;}
.ls19{letter-spacing:1579.699800px;}
.ls1a{letter-spacing:1601.910000px;}
.ls1b{letter-spacing:1619.190000px;}
.ls16{letter-spacing:1660.986000px;}
.ls17{letter-spacing:1758.888000px;}
.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;}
}
.wsfd{word-spacing:-190.499760px;}
.ws101{word-spacing:-23.418720px;}
.ws13e{word-spacing:-17.275372px;}
.ws140{word-spacing:-17.022694px;}
.ws1{word-spacing:-16.052337px;}
.ws2{word-spacing:-15.721596px;}
.ws20{word-spacing:-15.389860px;}
.ws159{word-spacing:-14.832000px;}
.ws141{word-spacing:-14.421623px;}
.ws13a{word-spacing:-14.163849px;}
.ws1d{word-spacing:-13.871976px;}
.ws77{word-spacing:-13.444675px;}
.ws13c{word-spacing:-13.444415px;}
.wsff{word-spacing:-13.410720px;}
.ws6f{word-spacing:-13.408416px;}
.ws100{word-spacing:-13.217760px;}
.wsfb{word-spacing:-12.794126px;}
.ws15a{word-spacing:-12.790910px;}
.wsfe{word-spacing:-12.494160px;}
.ws103{word-spacing:-12.312000px;}
.ws15b{word-spacing:-12.252002px;}
.wscc{word-spacing:-12.150000px;}
.ws13f{word-spacing:-11.975553px;}
.ws13d{word-spacing:-11.735761px;}
.ws1c{word-spacing:-11.286115px;}
.ws13b{word-spacing:-11.241150px;}
.ws1f{word-spacing:-10.953387px;}
.ws70{word-spacing:-10.840830px;}
.ws97{word-spacing:-10.612800px;}
.wsfc{word-spacing:-10.516320px;}
.wsf7{word-spacing:-10.234003px;}
.wsce{word-spacing:-10.003104px;}
.ws15c{word-spacing:-5.475452px;}
.ws93{word-spacing:-5.026435px;}
.ws68{word-spacing:-4.065930px;}
.ws127{word-spacing:-3.252744px;}
.wsd5{word-spacing:-3.198532px;}
.ws16{word-spacing:-2.873257px;}
.ws31{word-spacing:-2.819045px;}
.ws9a{word-spacing:-2.701440px;}
.ws147{word-spacing:-2.331133px;}
.ws5d{word-spacing:-2.222708px;}
.ws64{word-spacing:-2.114284px;}
.wsa1{word-spacing:-2.005859px;}
.ws9b{word-spacing:-1.977840px;}
.ws24{word-spacing:-1.951646px;}
.ws5a{word-spacing:-1.789009px;}
.wsdb{word-spacing:-1.734797px;}
.wsd8{word-spacing:-1.680584px;}
.ws102{word-spacing:-1.600560px;}
.wsc4{word-spacing:-1.572160px;}
.wsa9{word-spacing:-1.517947px;}
.wsa5{word-spacing:-1.355310px;}
.wsec{word-spacing:-1.301098px;}
.wscd{word-spacing:-1.254240px;}
.ws4e{word-spacing:-1.246885px;}
.ws72{word-spacing:-1.192673px;}
.wsed{word-spacing:-1.138460px;}
.ws125{word-spacing:-1.134000px;}
.ws6a{word-spacing:-1.030036px;}
.ws10c{word-spacing:-0.975823px;}
.wsbd{word-spacing:-0.921611px;}
.ws14{word-spacing:-0.758974px;}
.ws1a{word-spacing:-0.650549px;}
.ws50{word-spacing:-0.596336px;}
.ws120{word-spacing:-0.530640px;}
.ws84{word-spacing:-0.487912px;}
.ws94{word-spacing:-0.385920px;}
.ws79{word-spacing:-0.379487px;}
.ws124{word-spacing:-0.378000px;}
.ws98{word-spacing:-0.337680px;}
.ws126{word-spacing:-0.324000px;}
.ws7d{word-spacing:-0.316982px;}
.ws11f{word-spacing:-0.271062px;}
.ws130{word-spacing:-0.216850px;}
.wsaa{word-spacing:-0.162637px;}
.ws36{word-spacing:-0.108425px;}
.ws139{word-spacing:-0.084189px;}
.ws0{word-spacing:0.000000px;}
.ws148{word-spacing:0.054212px;}
.ws71{word-spacing:0.108000px;}
.ws82{word-spacing:0.108425px;}
.ws95{word-spacing:0.144720px;}
.ws123{word-spacing:0.162000px;}
.ws99{word-spacing:0.192960px;}
.ws5c{word-spacing:0.216850px;}
.wsb{word-spacing:0.271062px;}
.wsd3{word-spacing:0.325274px;}
.ws122{word-spacing:0.336960px;}
.ws67{word-spacing:0.379487px;}
.wsb1{word-spacing:0.433699px;}
.ws121{word-spacing:0.482400px;}
.ws73{word-spacing:0.487912px;}
.wse7{word-spacing:0.542124px;}
.ws8f{word-spacing:0.650549px;}
.ws1b{word-spacing:0.813186px;}
.ws52{word-spacing:0.867398px;}
.wsfa{word-spacing:0.916560px;}
.ws9d{word-spacing:0.921611px;}
.ws149{word-spacing:1.084248px;}
.ws74{word-spacing:1.246885px;}
.wsab{word-spacing:1.355310px;}
.ws25{word-spacing:1.409522px;}
.wsde{word-spacing:1.463735px;}
.ws90{word-spacing:1.517947px;}
.ws2e{word-spacing:1.572160px;}
.wseb{word-spacing:1.626372px;}
.wsa8{word-spacing:1.734797px;}
.ws30{word-spacing:1.843222px;}
.ws47{word-spacing:1.951646px;}
.ws4c{word-spacing:2.005859px;}
.ws34{word-spacing:2.060071px;}
.ws11{word-spacing:2.222708px;}
.wsf0{word-spacing:2.331133px;}
.wsca{word-spacing:2.493770px;}
.wsd2{word-spacing:2.547983px;}
.ws55{word-spacing:2.602195px;}
.ws119{word-spacing:2.656408px;}
.ws78{word-spacing:2.710620px;}
.ws48{word-spacing:2.764832px;}
.wsf2{word-spacing:2.819045px;}
.ws7b{word-spacing:2.927470px;}
.wsad{word-spacing:2.981682px;}
.wse2{word-spacing:3.035894px;}
.ws128{word-spacing:3.090107px;}
.wsb8{word-spacing:3.144319px;}
.wsdd{word-spacing:3.306956px;}
.ws23{word-spacing:3.361169px;}
.ws37{word-spacing:3.415381px;}
.wsaf{word-spacing:3.523806px;}
.wsbe{word-spacing:3.578018px;}
.wsd0{word-spacing:3.686443px;}
.ws54{word-spacing:3.740656px;}
.wsa{word-spacing:3.849080px;}
.wsd9{word-spacing:3.903293px;}
.ws12e{word-spacing:3.957505px;}
.ws92{word-spacing:4.011718px;}
.ws10e{word-spacing:4.065930px;}
.ws3c{word-spacing:4.174355px;}
.wse4{word-spacing:4.228567px;}
.ws45{word-spacing:4.282780px;}
.ws83{word-spacing:4.445417px;}
.ws62{word-spacing:4.608054px;}
.wsd6{word-spacing:4.716479px;}
.wsf1{word-spacing:4.770691px;}
.ws21{word-spacing:4.777058px;}
.ws53{word-spacing:4.824904px;}
.ws38{word-spacing:4.879116px;}
.wsb3{word-spacing:4.933328px;}
.ws10{word-spacing:4.987541px;}
.wsb4{word-spacing:5.041753px;}
.ws43{word-spacing:5.095966px;}
.ws28{word-spacing:5.150178px;}
.ws111{word-spacing:5.204390px;}
.ws5e{word-spacing:5.258603px;}
.ws9e{word-spacing:5.421240px;}
.wse{word-spacing:5.475452px;}
.ws11d{word-spacing:5.529665px;}
.wsc7{word-spacing:5.583877px;}
.ws58{word-spacing:5.638090px;}
.ws4{word-spacing:5.692302px;}
.wsd1{word-spacing:5.746514px;}
.ws91{word-spacing:5.800727px;}
.wsc1{word-spacing:5.854939px;}
.ws8e{word-spacing:5.909152px;}
.ws12f{word-spacing:5.963364px;}
.ws7e{word-spacing:6.017576px;}
.wse5{word-spacing:6.071789px;}
.ws131{word-spacing:6.180214px;}
.wsc0{word-spacing:6.288638px;}
.ws4f{word-spacing:6.397063px;}
.ws143{word-spacing:6.451276px;}
.ws75{word-spacing:6.613913px;}
.ws46{word-spacing:6.722338px;}
.ws60{word-spacing:6.830762px;}
.ws29{word-spacing:6.939187px;}
.ws44{word-spacing:7.047612px;}
.ws51{word-spacing:7.101824px;}
.ws2f{word-spacing:7.156037px;}
.ws12a{word-spacing:7.264462px;}
.ws138{word-spacing:7.318674px;}
.wsae{word-spacing:7.372886px;}
.ws3a{word-spacing:7.427099px;}
.ws17{word-spacing:7.481311px;}
.wse8{word-spacing:7.535524px;}
.ws63{word-spacing:7.589736px;}
.ws14a{word-spacing:7.643948px;}
.ws12{word-spacing:7.806586px;}
.ws32{word-spacing:7.860798px;}
.wsa6{word-spacing:7.915010px;}
.ws15{word-spacing:8.023435px;}
.wsa3{word-spacing:8.186072px;}
.wsf{word-spacing:8.240285px;}
.ws4b{word-spacing:8.294497px;}
.wsc9{word-spacing:8.348710px;}
.ws9f{word-spacing:8.402922px;}
.ws155{word-spacing:8.457134px;}
.wsdc{word-spacing:8.565559px;}
.ws6e{word-spacing:8.673984px;}
.wsbb{word-spacing:8.782409px;}
.ws57{word-spacing:8.890834px;}
.ws14f{word-spacing:8.945046px;}
.ws3f{word-spacing:8.999258px;}
.wscb{word-spacing:9.053471px;}
.ws2a{word-spacing:9.107683px;}
.ws69{word-spacing:9.161896px;}
.wsc3{word-spacing:9.216108px;}
.ws8b{word-spacing:9.324533px;}
.wsd4{word-spacing:9.378745px;}
.ws8a{word-spacing:9.432958px;}
.wsb7{word-spacing:9.487170px;}
.wsc8{word-spacing:9.704020px;}
.ws6{word-spacing:9.812444px;}
.ws3{word-spacing:9.866657px;}
.ws22{word-spacing:9.920869px;}
.ws6d{word-spacing:10.029294px;}
.ws13{word-spacing:10.083506px;}
.ws104{word-spacing:10.137719px;}
.ws3b{word-spacing:10.191931px;}
.ws76{word-spacing:10.408781px;}
.ws7c{word-spacing:10.505702px;}
.wsac{word-spacing:10.517206px;}
.ws59{word-spacing:10.679843px;}
.ws112{word-spacing:10.734055px;}
.ws146{word-spacing:10.788268px;}
.ws9{word-spacing:10.842480px;}
.ws33{word-spacing:10.896692px;}
.ws35{word-spacing:10.950905px;}
.ws106{word-spacing:11.005117px;}
.wsd7{word-spacing:11.113542px;}
.ws27{word-spacing:11.167754px;}
.ws11a{word-spacing:11.221967px;}
.ws42{word-spacing:11.276179px;}
.ws113{word-spacing:11.330392px;}
.wsa0{word-spacing:11.655666px;}
.ws7f{word-spacing:11.709878px;}
.ws115{word-spacing:11.818303px;}
.wsa7{word-spacing:11.872516px;}
.wsbc{word-spacing:12.089365px;}
.ws134{word-spacing:12.143578px;}
.ws89{word-spacing:12.306215px;}
.ws136{word-spacing:12.360427px;}
.wsf5{word-spacing:12.407597px;}
.wsda{word-spacing:12.468852px;}
.wsc2{word-spacing:12.523064px;}
.ws11e{word-spacing:12.577277px;}
.ws11c{word-spacing:12.685702px;}
.ws85{word-spacing:12.739914px;}
.wsea{word-spacing:12.848339px;}
.ws26{word-spacing:12.902551px;}
.wsd{word-spacing:13.065188px;}
.ws4d{word-spacing:13.119401px;}
.ws6c{word-spacing:13.173613px;}
.wsef{word-spacing:13.282038px;}
.ws144{word-spacing:13.444675px;}
.wsc{word-spacing:13.553100px;}
.ws65{word-spacing:13.607312px;}
.wse9{word-spacing:13.661525px;}
.ws2b{word-spacing:13.769950px;}
.ws41{word-spacing:13.824162px;}
.ws10d{word-spacing:14.149436px;}
.ws40{word-spacing:14.203649px;}
.ws2c{word-spacing:14.366286px;}
.ws117{word-spacing:14.474711px;}
.ws151{word-spacing:14.583136px;}
.ws4a{word-spacing:14.637348px;}
.ws105{word-spacing:14.854198px;}
.ws150{word-spacing:15.071047px;}
.wsba{word-spacing:15.125260px;}
.ws135{word-spacing:15.287897px;}
.ws7{word-spacing:15.396322px;}
.ws39{word-spacing:15.450534px;}
.ws10b{word-spacing:15.667384px;}
.ws5{word-spacing:15.775808px;}
.ws3e{word-spacing:15.884233px;}
.ws8c{word-spacing:16.101083px;}
.ws10f{word-spacing:16.263720px;}
.ws133{word-spacing:16.317932px;}
.wsa4{word-spacing:16.480570px;}
.ws8{word-spacing:16.588994px;}
.wsbf{word-spacing:16.751632px;}
.ws61{word-spacing:16.805844px;}
.ws14e{word-spacing:16.860056px;}
.ws12c{word-spacing:16.914269px;}
.ws88{word-spacing:17.239543px;}
.wse6{word-spacing:17.293756px;}
.wsb2{word-spacing:17.402180px;}
.ws157{word-spacing:17.510605px;}
.wsee{word-spacing:17.781667px;}
.wse3{word-spacing:17.835880px;}
.wsc6{word-spacing:18.052729px;}
.ws129{word-spacing:18.161154px;}
.wsa2{word-spacing:18.378004px;}
.ws153{word-spacing:18.540641px;}
.ws10a{word-spacing:18.920128px;}
.ws5f{word-spacing:18.974340px;}
.ws56{word-spacing:19.028552px;}
.ws12b{word-spacing:19.245402px;}
.ws114{word-spacing:19.408039px;}
.ws8d{word-spacing:19.462252px;}
.ws19{word-spacing:19.516464px;}
.ws6b{word-spacing:19.679101px;}
.wscf{word-spacing:19.841738px;}
.ws2d{word-spacing:19.895951px;}
.wse0{word-spacing:19.950163px;}
.wsc5{word-spacing:20.112800px;}
.ws18{word-spacing:20.221225px;}
.wsb5{word-spacing:20.275438px;}
.ws87{word-spacing:20.329650px;}
.wsb9{word-spacing:20.438075px;}
.ws14c{word-spacing:20.817562px;}
.ws7a{word-spacing:21.034411px;}
.ws14d{word-spacing:21.088624px;}
.ws9c{word-spacing:21.197048px;}
.wsb0{word-spacing:21.251261px;}
.ws142{word-spacing:21.359686px;}
.wse1{word-spacing:21.468110px;}
.ws116{word-spacing:21.522323px;}
.wsf3{word-spacing:21.630748px;}
.ws158{word-spacing:21.684960px;}
.ws49{word-spacing:21.739172px;}
.ws145{word-spacing:21.956022px;}
.ws110{word-spacing:22.010234px;}
.ws5b{word-spacing:22.443934px;}
.wsb6{word-spacing:22.714996px;}
.ws109{word-spacing:22.769208px;}
.ws137{word-spacing:23.311332px;}
.ws107{word-spacing:23.853456px;}
.wsf4{word-spacing:23.961881px;}
.ws3d{word-spacing:24.666642px;}
.ws66{word-spacing:26.509864px;}
.ws14b{word-spacing:27.594112px;}
.ws156{word-spacing:27.919386px;}
.ws132{word-spacing:28.515722px;}
.ws11b{word-spacing:28.786784px;}
.ws108{word-spacing:32.798502px;}
.ws86{word-spacing:34.099600px;}
.wsdf{word-spacing:34.153812px;}
.ws152{word-spacing:36.376520px;}
.ws81{word-spacing:39.195565px;}
.ws118{word-spacing:41.092999px;}
.ws12d{word-spacing:43.261495px;}
.ws154{word-spacing:45.701053px;}
.ws80{word-spacing:46.839514px;}
.ws1e{word-spacing:67.877014px;}
.wsf6{word-spacing:230.297760px;}
.ws96{word-spacing:284.278320px;}
.wsf8{word-spacing:297.162000px;}
.wsf9{word-spacing:305.214480px;}
._1f{margin-left:-179.501040px;}
._b{margin-left:-63.667579px;}
._13{margin-left:-20.383862px;}
._2{margin-left:-16.285450px;}
._1{margin-left:-13.661525px;}
._f{margin-left:-10.842480px;}
._7{margin-left:-9.758218px;}
._8{margin-left:-7.423899px;}
._5{margin-left:-6.314175px;}
._0{margin-left:-4.336992px;}
._4{margin-left:-3.157090px;}
._1a{margin-left:-2.153502px;}
._3{margin-left:-1.148033px;}
._12{width:1.303979px;}
._11{width:3.383198px;}
._d{width:4.639957px;}
._14{width:8.309491px;}
._c{width:9.758218px;}
._9{width:12.255173px;}
._10{width:24.558217px;}
._e{width:35.363543px;}
._a{width:65.437459px;}
._6{width:74.382492px;}
._1b{width:101.767924px;}
._16{width:156.023287px;}
._15{width:191.030168px;}
._17{width:203.730199px;}
._1c{width:229.960080px;}
._19{width:283.940640px;}
._1d{width:297.000000px;}
._1e{width:304.876800px;}
._18{width:330.554604px;}
.fc12{color:rgb(0,103,139);}
.fc0{color:rgb(0,0,0);}
.fce{color:rgb(202,229,232);}
.fc2{color:rgb(255,255,255);}
.fc8{color:rgb(37,101,111);}
.fc1{color:rgb(227,5,19);}
.fc3{color:rgb(64,129,136);}
.fc4{color:rgb(138,201,209);}
.fc6{color:rgb(214,0,126);}
.fc11{color:rgb(0,115,153);}
.fcf{color:rgb(89,89,89);}
.fc7{color:rgb(135,137,136);}
.fc10{color:transparent;}
.fca{color:rgb(172,215,220);}
.fc9{color:rgb(56,151,166);}
.fcd{color:rgb(44,95,102);}
.fcb{color:rgb(82,159,168);}
.fc5{color:rgb(237,179,207);}
.fcc{color:rgb(95,187,201);}
.fs12{font-size:40.755000px;}
.fse{font-size:41.967000px;}
.fs4{font-size:42.000000px;}
.fs11{font-size:42.566400px;}
.fsf{font-size:44.645400px;}
.fsd{font-size:44.964600px;}
.fs10{font-size:45.283200px;}
.fsc{font-size:47.834400px;}
.fs14{font-size:48.240000px;}
.fsa{font-size:50.959800px;}
.fs13{font-size:54.000000px;}
.fs9{font-size:54.212400px;}
.fs16{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:72.283200px;}
.fsb{font-size:84.189000px;}
.fs15{font-size:84.240000px;}
.fs8{font-size:95.669400px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:216.850200px;}
.fs5{font-size:336.000000px;}
.y21e{bottom:-885.954450px;}
.y0{bottom:0.000000px;}
.y222{bottom:2.879550px;}
.y221{bottom:18.359550px;}
.y50{bottom:31.464600px;}
.y49{bottom:64.842600px;}
.y142{bottom:64.842750px;}
.yc2{bottom:64.844852px;}
.y5{bottom:66.525004px;}
.y1cc{bottom:69.362402px;}
.y2b7{bottom:73.878000px;}
.yc1{bottom:78.395850px;}
.y1a5{bottom:78.397802px;}
.y141{bottom:78.397952px;}
.y48{bottom:79.830750px;}
.y81{bottom:82.913400px;}
.yfe{bottom:82.916203px;}
.y176{bottom:82.917054px;}
.yc0{bottom:91.948950px;}
.y1a4{bottom:91.951052px;}
.yd7{bottom:91.955407px;}
.y4{bottom:97.125005px;}
.yfd{bottom:100.984200px;}
.y80{bottom:100.993385px;}
.yae{bottom:101.011756px;}
.y175{bottom:105.502050px;}
.y140{bottom:105.504302px;}
.yd6{bottom:105.506405px;}
.ybf{bottom:105.510760px;}
.y157{bottom:105.512862px;}
.y21d{bottom:110.028000px;}
.y1cb{bottom:114.537450px;}
.y13f{bottom:119.055300px;}
.yd5{bottom:119.057402px;}
.y174{bottom:119.057953px;}
.y7f{bottom:119.059668px;}
.y2b6{bottom:119.059818px;}
.ybe{bottom:119.061757px;}
.y156{bottom:119.063860px;}
.yad{bottom:119.078038px;}
.y228{bottom:119.393550px;}
.y1ca{bottom:128.094905px;}
.yd4{bottom:132.608400px;}
.y13e{bottom:132.611503px;}
.ybd{bottom:132.612755px;}
.y155{bottom:132.614857px;}
.y4c{bottom:137.125950px;}
.y2b5{bottom:137.126100px;}
.yac{bottom:137.144321px;}
.y20{bottom:139.264499px;}
.y227{bottom:141.893550px;}
.y117{bottom:142.623000px;}
.ybc{bottom:146.163752px;}
.y154{bottom:146.165855px;}
.yd3{bottom:146.168107px;}
.y2c2{bottom:146.995950px;}
.y13d{bottom:150.679500px;}
.y4b{bottom:152.116463px;}
.y1a3{bottom:155.196900px;}
.y7e{bottom:155.210603px;}
.ybb{bottom:159.714750px;}
.y153{bottom:159.716852px;}
.yd2{bottom:159.719105px;}
.y2b4{bottom:164.232300px;}
.y13c{bottom:164.232600px;}
.y226{bottom:164.393550px;}
.y2c1{bottom:165.066900px;}
.y4a{bottom:170.102197px;}
.y1a2{bottom:173.267700px;}
.y152{bottom:173.267850px;}
.yba{bottom:173.270102px;}
.y7d{bottom:173.276885px;}
.y1d7{bottom:174.317250px;}
.y111{bottom:175.812120px;}
.y10b{bottom:175.824180px;}
.y105{bottom:175.836240px;}
.yff{bottom:175.848300px;}
.y118{bottom:176.294520px;}
.y13b{bottom:177.792157px;}
.y2c0{bottom:183.137850px;}
.yb9{bottom:186.821100px;}
.y225{bottom:186.893550px;}
.y2b3{bottom:191.338500px;}
.y1a1{bottom:191.338650px;}
.y13a{bottom:191.343155px;}
.y7c{bottom:191.343168px;}
.y236{bottom:191.361538px;}
.y17{bottom:196.933500px;}
.y139{bottom:204.894152px;}
.y177{bottom:207.750300px;}
.y224{bottom:209.393550px;}
.y4f{bottom:209.409450px;}
.y235{bottom:209.427821px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y2bf{bottom:210.244050px;}
.y112{bottom:214.018200px;}
.y10c{bottom:214.030260px;}
.y106{bottom:214.042320px;}
.y100{bottom:214.054380px;}
.y119{bottom:214.500600px;}
.y180{bottom:214.581300px;}
.y138{bottom:218.445150px;}
.y1e9{bottom:219.422490px;}
.y21f{bottom:219.425550px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y4e{bottom:224.397766px;}
.y7b{bottom:227.484918px;}
.yab{bottom:227.489435px;}
.y234{bottom:227.494103px;}
.y2be{bottom:228.315000px;}
.y223{bottom:231.893550px;}
.y137{bottom:232.004857px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y4d{bottom:242.383500px;}
.yaa{bottom:245.555718px;}
.y136{bottom:245.555855px;}
.y2b2{bottom:245.555868px;}
.y7a{bottom:245.560385px;}
.y1e5{bottom:247.618770px;}
.y1e1{bottom:247.630830px;}
.y1dd{bottom:247.642890px;}
.y1d9{bottom:247.654950px;}
.y1ea{bottom:248.101170px;}
.y220{bottom:248.994000px;}
.ye0{bottom:250.071002px;}
.y113{bottom:252.224280px;}
.y10d{bottom:252.236340px;}
.y107{bottom:252.248400px;}
.y101{bottom:252.260460px;}
.y11a{bottom:252.706680px;}
.y2bd{bottom:255.421200px;}
.y178{bottom:255.729300px;}
.y135{bottom:259.106852px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y181{bottom:262.560300px;}
.ya9{bottom:263.622000px;}
.y2b1{bottom:263.622150px;}
.ydf{bottom:263.625654px;}
.y79{bottom:263.626668px;}
.y17c{bottom:268.297800px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y134{bottom:272.657850px;}
.y2bc{bottom:273.492000px;}
.y1e6{bottom:275.827110px;}
.y1e2{bottom:275.839170px;}
.y1de{bottom:275.851230px;}
.y1da{bottom:275.863290px;}
.y1eb{bottom:276.309510px;}
.y78{bottom:281.692950px;}
.ya8{bottom:281.706653px;}
.y1a8{bottom:284.986650px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.yde{bottom:286.210650px;}
.y133{bottom:286.213052px;}
.y114{bottom:290.430360px;}
.y10e{bottom:290.442420px;}
.y108{bottom:290.454480px;}
.y102{bottom:290.466540px;}
.y2b0{bottom:290.728350px;}
.y11b{bottom:290.912760px;}
.y2bb{bottom:291.562950px;}
.y21c{bottom:299.429850px;}
.y47{bottom:299.763750px;}
.y132{bottom:299.764050px;}
.y77{bottom:299.768418px;}
.ya7{bottom:299.772935px;}
.y233{bottom:299.777603px;}
.y179{bottom:303.708300px;}
.y1e7{bottom:304.035450px;}
.y1e3{bottom:304.047510px;}
.y1df{bottom:304.059570px;}
.y1db{bottom:304.071630px;}
.y1ec{bottom:304.517850px;}
.y2ba{bottom:309.633750px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y182{bottom:310.539300px;}
.y17d{bottom:316.276800px;}
.y1a7{bottom:316.522650px;}
.y21b{bottom:317.500800px;}
.y76{bottom:317.830332px;}
.y2af{bottom:317.834550px;}
.y35{bottom:317.834700px;}
.ya6{bottom:317.839218px;}
.y232{bottom:317.843885px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y2b9{bottom:327.700457px;}
.y115{bottom:328.636440px;}
.y10f{bottom:328.648500px;}
.y109{bottom:328.660560px;}
.y103{bottom:328.672620px;}
.y11c{bottom:329.118840px;}
.y1e8{bottom:332.243790px;}
.y1e4{bottom:332.255850px;}
.y1e0{bottom:332.267910px;}
.y1dc{bottom:332.279970px;}
.y1ed{bottom:332.726190px;}
.y34{bottom:335.905500px;}
.y151{bottom:335.910168px;}
.ye{bottom:348.133500px;}
.y17a{bottom:351.687300px;}
.y2ae{bottom:353.976300px;}
.y75{bottom:353.976450px;}
.y33{bottom:353.985635px;}
.y190{bottom:353.990153px;}
.y2b8{bottom:354.806657px;}
.y1ef{bottom:355.302510px;}
.y183{bottom:358.518300px;}
.y17e{bottom:364.255800px;}
.y1d6{bottom:365.424000px;}
.y116{bottom:366.842520px;}
.y110{bottom:366.854580px;}
.y10a{bottom:366.866640px;}
.y104{bottom:366.878700px;}
.y21a{bottom:367.195650px;}
.y11d{bottom:367.324920px;}
.y1ee{bottom:369.159450px;}
.y1d1{bottom:370.496850px;}
.y150{bottom:372.047250px;}
.y32{bottom:372.051918px;}
.ya5{bottom:372.056435px;}
.y74{bottom:372.060953px;}
.yd{bottom:386.785499px;}
.y1a9{bottom:387.519150px;}
.y1a6{bottom:389.004150px;}
.y40{bottom:390.118050px;}
.y31{bottom:390.118200px;}
.ya4{bottom:390.122718px;}
.y73{bottom:390.127235px;}
.ye2{bottom:396.078750px;}
.y11f{bottom:399.501000px;}
.y17b{bottom:399.666300px;}
.y1cd{bottom:402.653850px;}
.y1d2{bottom:403.719000px;}
.y184{bottom:406.497300px;}
.yc{bottom:408.044999px;}
.ya3{bottom:408.189000px;}
.y3f{bottom:408.193518px;}
.y30{bottom:408.198185px;}
.y2ad{bottom:409.023600px;}
.y17f{bottom:412.234800px;}
.y11e{bottom:413.357940px;}
.y3e{bottom:426.259800px;}
.y2f{bottom:426.264468px;}
.y18f{bottom:426.273503px;}
.y14f{bottom:426.273653px;}
.ya2{bottom:426.282839px;}
.y231{bottom:426.287356px;}
.y1ce{bottom:435.242850px;}
.y1d3{bottom:436.305120px;}
.y187{bottom:439.802970px;}
.y2e{bottom:444.330750px;}
.y3d{bottom:444.339785px;}
.y131{bottom:444.339935px;}
.ya1{bottom:444.349121px;}
.y230{bottom:444.353638px;}
.y72{bottom:444.367342px;}
.y186{bottom:453.479010px;}
.y1a0{bottom:462.391218px;}
.y2d{bottom:462.401550px;}
.y3c{bottom:462.406068px;}
.y130{bottom:462.406218px;}
.ya0{bottom:462.415403px;}
.y22f{bottom:462.419921px;}
.y71{bottom:462.433624px;}
.yfc{bottom:463.294668px;}
.y185{bottom:467.335950px;}
.y1cf{bottom:467.831850px;}
.y1d4{bottom:468.891240px;}
.y19f{bottom:480.457500px;}
.y3b{bottom:480.472350px;}
.y12f{bottom:480.472500px;}
.y2c{bottom:480.477018px;}
.y9f{bottom:480.481685px;}
.y1fd{bottom:480.486203px;}
.y70{bottom:480.499906px;}
.yfb{bottom:481.360950px;}
.ye1{bottom:490.794750px;}
.ye3{bottom:494.547750px;}
.y19e{bottom:498.528300px;}
.y2b{bottom:498.543300px;}
.y3a{bottom:498.547818px;}
.y9e{bottom:498.547968px;}
.y1fc{bottom:498.552485px;}
.y208{bottom:498.561521px;}
.y6f{bottom:498.566188px;}
.yfa{bottom:499.431900px;}
.y1d0{bottom:500.420850px;}
.y1d5{bottom:501.477360px;}
.y173{bottom:515.965968px;}
.y19d{bottom:516.603768px;}
.y39{bottom:516.614100px;}
.y2a{bottom:516.614250px;}
.y12e{bottom:516.618768px;}
.y18e{bottom:516.623285px;}
.y207{bottom:516.627803px;}
.y6e{bottom:516.632471px;}
.yb{bottom:520.864502px;}
.y1d8{bottom:525.881250px;}
.y172{bottom:534.032250px;}
.y19c{bottom:534.670050px;}
.y12d{bottom:534.685050px;}
.y38{bottom:534.689568px;}
.y206{bottom:534.694085px;}
.y29{bottom:534.694235px;}
.y6d{bottom:534.698753px;}
.y9d{bottom:534.703421px;}
.ya{bottom:538.864499px;}
.y26e{bottom:540.331123px;}
.ye4{bottom:547.589250px;}
.yf9{bottom:549.126750px;}
.y171{bottom:552.103200px;}
.y37{bottom:552.755850px;}
.y205{bottom:552.760368px;}
.y28{bottom:552.760518px;}
.y6c{bottom:552.765035px;}
.y9c{bottom:552.769703px;}
.y1fb{bottom:552.774221px;}
.y12c{bottom:552.801777px;}
.y26d{bottom:555.315248px;}
.y9{bottom:556.864499px;}
.y170{bottom:570.174000px;}
.y26c{bottom:570.299374px;}
.y29d{bottom:570.315621px;}
.y1c9{bottom:570.820985px;}
.y204{bottom:570.826650px;}
.y27{bottom:570.826800px;}
.y6b{bottom:570.831318px;}
.y9b{bottom:570.835985px;}
.y1fa{bottom:570.840503px;}
.y12b{bottom:570.868059px;}
.y19b{bottom:584.364900px;}
.y26b{bottom:585.283500px;}
.y29c{bottom:585.299747px;}
.y1c8{bottom:588.887268px;}
.y36{bottom:588.896700px;}
.y26{bottom:588.897600px;}
.y203{bottom:588.902118px;}
.y9a{bottom:588.902268px;}
.y1f9{bottom:588.906785px;}
.y2a7{bottom:588.911453px;}
.y12a{bottom:588.934342px;}
.y26a{bottom:600.283873px;}
.y1c7{bottom:606.953550px;}
.y202{bottom:606.968400px;}
.y6a{bottom:606.968550px;}
.y1f8{bottom:606.973068px;}
.y2a6{bottom:606.977735px;}
.y14e{bottom:606.991438px;}
.y129{bottom:607.000624px;}
.y269{bottom:615.267998px;}
.y16f{bottom:619.868850px;}
.y1c6{bottom:625.024350px;}
.y69{bottom:625.039350px;}
.ydd{bottom:625.042721px;}
.y2a5{bottom:625.044018px;}
.y99{bottom:625.048535px;}
.y14d{bottom:625.057721px;}
.y128{bottom:625.066906px;}
.y268{bottom:630.252124px;}
.ydc{bottom:643.109003px;}
.y1f7{bottom:643.110150px;}
.y2a4{bottom:643.110300px;}
.y98{bottom:643.114818px;}
.y14c{bottom:643.124003px;}
.y68{bottom:643.128821px;}
.y127{bottom:643.133188px;}
.y24c{bottom:643.179115px;}
.y267{bottom:645.236250px;}
.y8{bottom:645.510000px;}
.y266{bottom:660.224664px;}
.y284{bottom:660.228424px;}
.ydb{bottom:661.175285px;}
.y97{bottom:661.181100px;}
.yec{bottom:661.184053px;}
.y1f6{bottom:661.185618px;}
.y14b{bottom:661.190285px;}
.y67{bottom:661.195103px;}
.y126{bottom:661.199471px;}
.y19a{bottom:661.213174px;}
.y24b{bottom:661.245398px;}
.y7{bottom:666.771000px;}
.y25{bottom:670.748250px;}
.y1c5{bottom:674.719200px;}
.y283{bottom:675.212550px;}
.y29b{bottom:675.216724px;}
.yda{bottom:679.241568px;}
.y1f5{bottom:679.251900px;}
.y96{bottom:679.252050px;}
.y14a{bottom:679.256568px;}
.yd1{bottom:679.261085px;}
.y201{bottom:679.265603px;}
.y125{bottom:679.265753px;}
.y199{bottom:679.279456px;}
.y24a{bottom:679.311680px;}
.y282{bottom:690.200850px;}
.y265{bottom:690.204874px;}
.y29a{bottom:690.208898px;}
.yd9{bottom:697.307850px;}
.y149{bottom:697.322850px;}
.y95{bottom:697.327368px;}
.yeb{bottom:697.331788px;}
.y200{bottom:697.331885px;}
.y124{bottom:697.332035px;}
.y2ab{bottom:697.336553px;}
.y66{bottom:697.341221px;}
.y198{bottom:697.345739px;}
.y249{bottom:697.377962px;}
.y1af{bottom:701.840550px;}
.y264{bottom:705.189000px;}
.y281{bottom:705.193024px;}
.y24{bottom:711.141900px;}
.yd0{bottom:715.393650px;}
.y1ae{bottom:715.396603px;}
.y1ff{bottom:715.398168px;}
.y94{bottom:715.398318px;}
.y148{bottom:715.402835px;}
.y65{bottom:715.407503px;}
.y197{bottom:715.412021px;}
.y248{bottom:715.444245px;}
.y280{bottom:720.177150px;}
.y263{bottom:720.189373px;}
.y6{bottom:726.298500px;}
.y1fe{bottom:733.464450px;}
.y93{bottom:733.464600px;}
.ycf{bottom:733.469118px;}
.y64{bottom:733.473785px;}
.y196{bottom:733.478303px;}
.y247{bottom:733.510527px;}
.y299{bottom:735.165300px;}
.y262{bottom:735.173498px;}
.y27f{bottom:735.181811px;}
.y159{bottom:741.423900px;}
.y164{bottom:742.004400px;}
.yd8{bottom:747.002700px;}
.y261{bottom:750.157624px;}
.y27e{bottom:750.165937px;}
.y92{bottom:751.535400px;}
.y63{bottom:751.540068px;}
.y195{bottom:751.544585px;}
.y123{bottom:751.558289px;}
.y246{bottom:751.576809px;}
.y3{bottom:752.599495px;}
.y260{bottom:765.141750px;}
.y23{bottom:765.354450px;}
.y15a{bottom:767.883900px;}
.y165{bottom:768.464400px;}
.y62{bottom:769.606350px;}
.y194{bottom:769.610868px;}
.y122{bottom:769.624571px;}
.yce{bottom:769.629238px;}
.y245{bottom:769.643092px;}
.y20d{bottom:774.123900px;}
.y298{bottom:780.133924px;}
.y25f{bottom:780.138212px;}
.y27d{bottom:780.146147px;}
.yb8{bottom:787.677150px;}
.y91{bottom:787.681668px;}
.y2aa{bottom:787.686335px;}
.y61{bottom:787.690853px;}
.ycd{bottom:787.695521px;}
.y147{bottom:787.700188px;}
.y244{bottom:787.709374px;}
.y1ba{bottom:792.222360px;}
.y15b{bottom:794.343900px;}
.y166{bottom:794.924400px;}
.y297{bottom:795.118050px;}
.y25e{bottom:795.122338px;}
.y27c{bottom:795.130273px;}
.yf6{bottom:803.837250px;}
.y90{bottom:805.747950px;}
.y193{bottom:805.752618px;}
.y60{bottom:805.757135px;}
.ycc{bottom:805.761803px;}
.y146{bottom:805.766471px;}
.y243{bottom:805.775656px;}
.yee{bottom:806.245050px;}
.y25d{bottom:810.106464px;}
.y296{bottom:810.110638px;}
.y27b{bottom:810.114398px;}
.yf2{bottom:811.297800px;}
.y1b0{bottom:816.933300px;}
.y1bb{bottom:817.427760px;}
.y15c{bottom:820.803900px;}
.y167{bottom:821.384400px;}
.y8f{bottom:823.818900px;}
.y5f{bottom:823.823418px;}
.ycb{bottom:823.828085px;}
.y145{bottom:823.832753px;}
.y242{bottom:823.841938px;}
.y27a{bottom:825.098524px;}
.y217{bottom:832.191810px;}
.y1b1{bottom:838.207140px;}
.y1bc{bottom:838.701600px;}
.y279{bottom:840.082650px;}
.y25c{bottom:840.086674px;}
.y295{bottom:840.090848px;}
.yb7{bottom:841.889700px;}
.yca{bottom:841.894368px;}
.y5e{bottom:841.899035px;}
.y241{bottom:841.908221px;}
.y8e{bottom:841.944812px;}
.y216{bottom:845.964330px;}
.y15d{bottom:847.263900px;}
.y168{bottom:847.844400px;}
.y25b{bottom:855.070800px;}
.y294{bottom:855.074974px;}
.y278{bottom:855.075088px;}
.yef{bottom:857.099550px;}
.y1b2{bottom:859.480980px;}
.y219{bottom:859.724790px;}
.y215{bottom:859.736850px;}
.yc9{bottom:859.960650px;}
.y5d{bottom:859.965318px;}
.y22e{bottom:859.969835px;}
.y240{bottom:859.974503px;}
.y1bd{bottom:859.975440px;}
.y8d{bottom:860.011095px;}
.y293{bottom:870.059100px;}
.y25a{bottom:870.063124px;}
.yf1{bottom:870.589800px;}
.y218{bottom:873.497310px;}
.y214{bottom:873.509370px;}
.y15e{bottom:873.723900px;}
.y169{bottom:874.304400px;}
.y121{bottom:878.027232px;}
.y18d{bottom:878.031450px;}
.y5c{bottom:878.031600px;}
.y22d{bottom:878.036118px;}
.y23f{bottom:878.040785px;}
.y192{bottom:878.045303px;}
.yc8{bottom:878.054488px;}
.y2a3{bottom:878.059006px;}
.y8c{bottom:878.077377px;}
.y2{bottom:879.369000px;}
.y1b3{bottom:880.754820px;}
.y1be{bottom:881.249280px;}
.y277{bottom:885.055298px;}
.y259{bottom:885.063497px;}
.y292{bottom:885.097939px;}
.yf5{bottom:885.552750px;}
.yf7{bottom:887.456250px;}
.y22c{bottom:896.102400px;}
.y5b{bottom:896.107068px;}
.yb6{bottom:896.111585px;}
.y1f4{bottom:896.116103px;}
.yc7{bottom:896.120771px;}
.y2a2{bottom:896.125288px;}
.y8b{bottom:896.143659px;}
.yed{bottom:899.948550px;}
.y276{bottom:900.039424px;}
.y258{bottom:900.047623px;}
.y291{bottom:900.082064px;}
.y15f{bottom:900.183900px;}
.y16a{bottom:900.764400px;}
.y1b4{bottom:902.028660px;}
.y1bf{bottom:902.523120px;}
.yf3{bottom:906.796800px;}
.y5a{bottom:914.173350px;}
.yb5{bottom:914.177868px;}
.y1f3{bottom:914.182385px;}
.yc6{bottom:914.187053px;}
.y2a1{bottom:914.191571px;}
.y8a{bottom:914.209942px;}
.y275{bottom:915.023550px;}
.y257{bottom:915.031748px;}
.y290{bottom:915.066190px;}
.y20e{bottom:919.554450px;}
.yf0{bottom:921.778050px;}
.yf8{bottom:921.827250px;}
.y1b5{bottom:923.302500px;}
.y1c0{bottom:923.796960px;}
.y160{bottom:926.643900px;}
.y16b{bottom:927.224400px;}
.y274{bottom:930.011850px;}
.y256{bottom:930.015874px;}
.y28f{bottom:930.050316px;}
.yb4{bottom:932.244150px;}
.y59{bottom:932.248668px;}
.yc5{bottom:932.253335px;}
.y120{bottom:932.253485px;}
.y2a0{bottom:932.257853px;}
.y23e{bottom:932.271856px;}
.y89{bottom:932.276224px;}
.yf4{bottom:932.851800px;}
.y1b6{bottom:944.576340px;}
.y255{bottom:945.000000px;}
.y28e{bottom:945.034442px;}
.y1c1{bottom:945.070800px;}
.y20f{bottom:948.992910px;}
.y58{bottom:950.314950px;}
.yc4{bottom:950.319618px;}
.y18c{bottom:950.324135px;}
.y46{bottom:950.326393px;}
.y1f2{bottom:950.333321px;}
.y23d{bottom:950.338139px;}
.y88{bottom:950.342506px;}
.y161{bottom:953.103900px;}
.y16c{bottom:953.684400px;}
.y254{bottom:959.988150px;}
.y273{bottom:959.988414px;}
.y28d{bottom:960.018568px;}
.y1b7{bottom:965.850180px;}
.y1c2{bottom:966.344640px;}
.y1{bottom:966.726000px;}
.yc3{bottom:968.385900px;}
.y144{bottom:968.390418px;}
.yb3{bottom:968.395085px;}
.y57{bottom:968.399603px;}
.y87{bottom:968.408788px;}
.y213{bottom:970.978290px;}
.y22{bottom:971.999850px;}
.y210{bottom:976.320870px;}
.y162{bottom:979.563900px;}
.y16d{bottom:980.144400px;}
.y143{bottom:986.456700px;}
.yea{bottom:986.460071px;}
.yb2{bottom:986.461368px;}
.y45{bottom:986.465282px;}
.y56{bottom:986.465885px;}
.y86{bottom:986.475071px;}
.y23c{bottom:986.484256px;}
.y1b8{bottom:987.124020px;}
.y1c3{bottom:987.618480px;}
.y253{bottom:989.968624px;}
.y28c{bottom:989.998778px;}
.y2ac{bottom:997.451700px;}
.y18b{bottom:1004.523432px;}
.yb1{bottom:1004.527650px;}
.y55{bottom:1004.532168px;}
.y29f{bottom:1004.536685px;}
.y85{bottom:1004.541353px;}
.y23b{bottom:1004.550538px;}
.y272{bottom:1004.952750px;}
.y252{bottom:1004.956774px;}
.y28b{bottom:1004.982904px;}
.y212{bottom:1005.626670px;}
.y163{bottom:1006.023900px;}
.y16e{bottom:1006.604400px;}
.y1b9{bottom:1008.397860px;}
.y1c4{bottom:1008.892320px;}
.y251{bottom:1019.940900px;}
.y28a{bottom:1019.967029px;}
.y54{bottom:1022.598450px;}
.yb0{bottom:1022.602968px;}
.y44{bottom:1022.604172px;}
.y84{bottom:1022.607635px;}
.y23a{bottom:1022.616821px;}
.y21{bottom:1023.023400px;}
.y211{bottom:1023.342810px;}
.y271{bottom:1034.929200px;}
.y250{bottom:1034.937248px;}
.y289{bottom:1034.951155px;}
.ye9{bottom:1040.658918px;}
.y2a9{bottom:1040.669250px;}
.y18a{bottom:1040.669550px;}
.y83{bottom:1040.673918px;}
.y53{bottom:1040.678435px;}
.y239{bottom:1040.683103px;}
.y22b{bottom:1040.687621px;}
.y24f{bottom:1049.921374px;}
.y288{bottom:1049.935281px;}
.ye8{bottom:1058.725200px;}
.y158{bottom:1058.729718px;}
.y20c{bottom:1058.734385px;}
.y82{bottom:1058.740200px;}
.y43{bottom:1058.743061px;}
.y52{bottom:1058.744718px;}
.y238{bottom:1058.749385px;}
.y22a{bottom:1058.753903px;}
.y1ad{bottom:1060.532418px;}
.y24e{bottom:1064.905500px;}
.y287{bottom:1064.919407px;}
.ye7{bottom:1076.796000px;}
.y20b{bottom:1076.800668px;}
.y51{bottom:1076.811000px;}
.yaf{bottom:1076.815668px;}
.y229{bottom:1076.820185px;}
.y1ac{bottom:1078.598700px;}
.y24d{bottom:1079.893650px;}
.y270{bottom:1079.903155px;}
.y286{bottom:1079.903533px;}
.ye6{bottom:1094.866950px;}
.y42{bottom:1094.881950px;}
.y1f1{bottom:1094.882100px;}
.y191{bottom:1094.886468px;}
.y26f{bottom:1094.887280px;}
.y285{bottom:1094.887658px;}
.y1ab{bottom:1096.669500px;}
.y20a{bottom:1112.937750px;}
.y237{bottom:1112.944782px;}
.y1f0{bottom:1112.948382px;}
.y189{bottom:1112.952750px;}
.y188{bottom:1131.028218px;}
.ye5{bottom:1144.561800px;}
.y1aa{bottom:1146.364500px;}
.y41{bottom:1149.094500px;}
.y2a8{bottom:1149.096768px;}
.y209{bottom:1162.632600px;}
.y29e{bottom:1203.307050px;}
.h7{height:32.130000px;}
.h22{height:32.365500px;}
.h17{height:33.373718px;}
.h14{height:33.573341px;}
.h1a{height:34.052966px;}
.h1c{height:35.120039px;}
.h25{height:35.253953px;}
.h11{height:35.445290px;}
.h12{height:35.971469px;}
.h1b{height:39.313477px;}
.h18{height:39.954539px;}
.h1d{height:40.171388px;}
.h16{height:40.709597px;}
.h19{height:40.767725px;}
.h27{height:40.784698px;}
.h13{height:43.003126px;}
.h23{height:43.506914px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.he{height:48.736948px;}
.hf{height:48.740548px;}
.h1e{height:48.753818px;}
.h15{height:48.754418px;}
.h24{height:48.768818px;}
.ha{height:53.561851px;}
.hd{height:54.356966px;}
.h2{height:55.080000px;}
.h21{height:61.329023px;}
.h26{height:65.952000px;}
.hc{height:70.508348px;}
.h10{height:77.117124px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h20{height:171.331500px;}
.h1f{height:187.318500px;}
.hb{height:198.634783px;}
.h9{height:307.776000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:281.340000px;}
.w7{width:377.056500px;}
.w2{width:637.794021px;}
.w4{width:655.740000px;}
.w5{width:659.073000px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.xa{left:-12.756000px;}
.x0{left:0.000000px;}
.xaa{left:4.319550px;}
.x95{left:14.352750px;}
.x8{left:36.875400px;}
.xb{left:38.218650px;}
.x5{left:75.086700px;}
.xd{left:81.125385px;}
.x6{left:82.874100px;}
.x94{left:85.822500px;}
.xb0{left:87.083850px;}
.x67{left:90.541050px;}
.x5a{left:92.797050px;}
.x89{left:96.484200px;}
.xa1{left:98.246280px;}
.xe{left:99.917770px;}
.x49{left:101.044410px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1f{left:111.215550px;}
.x27{left:126.640800px;}
.x88{left:136.438980px;}
.x57{left:137.698050px;}
.x12{left:147.131304px;}
.x4b{left:149.150716px;}
.x9{left:150.277650px;}
.x4a{left:151.475550px;}
.x56{left:153.682050px;}
.xac{left:155.941050px;}
.x55{left:157.394550px;}
.x28{left:158.946300px;}
.x14{left:164.314488px;}
.x13{left:167.934980px;}
.x46{left:171.776310px;}
.x48{left:172.873770px;}
.x9f{left:176.455380px;}
.x93{left:177.765060px;}
.x18{left:179.247000px;}
.x9e{left:181.930620px;}
.x47{left:183.824250px;}
.xa0{left:186.308400px;}
.x20{left:187.913250px;}
.x58{left:190.591050px;}
.x65{left:193.277250px;}
.x5c{left:194.978550px;}
.x66{left:198.204750px;}
.x4{left:203.484001px;}
.x87{left:204.831240px;}
.x5b{left:214.621050px;}
.x21{left:216.215400px;}
.x26{left:219.750300px;}
.x64{left:222.815250px;}
.x45{left:231.437130px;}
.x1c{left:236.515800px;}
.x86{left:246.956820px;}
.x9d{left:260.839200px;}
.x5d{left:262.006050px;}
.x19{left:263.622000px;}
.x22{left:265.664100px;}
.x98{left:278.241780px;}
.x8b{left:279.717900px;}
.x8a{left:281.513400px;}
.x96{left:282.547200px;}
.x44{left:284.054910px;}
.x97{left:285.682800px;}
.x1d{left:286.938300px;}
.x85{left:288.539700px;}
.x1a{left:291.924150px;}
.x23{left:293.966250px;}
.x8c{left:303.666900px;}
.x59{left:308.770050px;}
.x6b{left:310.826250px;}
.x33{left:313.191870px;}
.x32{left:316.363650px;}
.x54{left:320.461050px;}
.x34{left:328.616610px;}
.x6c{left:339.128400px;}
.x31{left:341.930850px;}
.x2f{left:346.138500px;}
.x1b{left:350.725800px;}
.x35{left:351.868290px;}
.x24{left:354.067500px;}
.x6f{left:362.346900px;}
.x70{left:363.769980px;}
.x71{left:365.337780px;}
.x72{left:366.399060px;}
.x73{left:367.641240px;}
.x8d{left:369.938400px;}
.x74{left:376.167660px;}
.x75{left:379.363560px;}
.x25{left:382.369650px;}
.x2e{left:391.026000px;}
.x30{left:392.079000px;}
.x37{left:402.363510px;}
.xaf{left:403.936950px;}
.x8e{left:413.367900px;}
.x11{left:418.099693px;}
.x10{left:419.885349px;}
.x7{left:420.922192px;}
.x77{left:428.206560px;}
.xab{left:432.961500px;}
.x2d{left:435.495000px;}
.xf{left:437.951632px;}
.x78{left:444.547860px;}
.x76{left:448.624140px;}
.x7a{left:453.773760px;}
.x3{left:454.959000px;}
.x79{left:463.723260px;}
.x6d{left:471.342300px;}
.x38{left:481.199730px;}
.x17{left:487.181984px;}
.x15{left:488.848800px;}
.x36{left:495.985290px;}
.x6e{left:499.644450px;}
.xa8{left:501.018420px;}
.x4c{left:504.925402px;}
.x16{left:505.983082px;}
.xa2{left:513.235200px;}
.x3c{left:516.065190px;}
.x69{left:517.278600px;}
.xa7{left:519.892320px;}
.x9b{left:521.106060px;}
.x9a{left:523.578360px;}
.x63{left:525.309750px;}
.x7b{left:526.760880px;}
.x8f{left:529.116900px;}
.x39{left:530.151270px;}
.x81{left:534.021000px;}
.x99{left:538.834260px;}
.x5f{left:551.013750px;}
.x7c{left:553.039620px;}
.x7f{left:559.962060px;}
.xa3{left:562.174680px;}
.x7e{left:567.246300px;}
.x5e{left:568.685250px;}
.x80{left:569.718600px;}
.x7d{left:572.215020px;}
.x3a{left:575.243610px;}
.x62{left:582.063750px;}
.x3d{left:584.107710px;}
.x60{left:588.489750px;}
.x2b{left:596.267250px;}
.x6a{left:600.912000px;}
.xae{left:602.068844px;}
.x2a{left:603.368250px;}
.x4e{left:606.188550px;}
.x61{left:608.294250px;}
.xa4{left:615.696960px;}
.x4f{left:624.805050px;}
.x3b{left:628.283490px;}
.x2c{left:631.299750px;}
.x40{left:641.380650px;}
.x4d{left:642.922050px;}
.x82{left:643.935840px;}
.x50{left:650.279550px;}
.x9c{left:653.512800px;}
.x3e{left:655.539090px;}
.x51{left:658.609050px;}
.x92{left:659.634900px;}
.x90{left:664.562400px;}
.x3f{left:666.899610px;}
.x83{left:669.852780px;}
.x84{left:670.914060px;}
.x29{left:672.353250px;}
.x41{left:674.774790px;}
.x91{left:683.961900px;}
.x1e{left:688.388100px;}
.xad{left:690.172200px;}
.x42{left:692.056770px;}
.xc{left:693.208050px;}
.x43{left:695.433570px;}
.x52{left:697.313550px;}
.x53{left:709.558050px;}
.xa5{left:713.901540px;}
.x68{left:756.419700px;}
.xa6{left:763.456080px;}
.xa9{left:771.238200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-2.491368pt;}
.lsf{letter-spacing:-2.081024pt;}
.ls1e{letter-spacing:-0.814720pt;}
.ls1d{letter-spacing:-0.428800pt;}
.lsd{letter-spacing:-0.343040pt;}
.ls25{letter-spacing:-0.317083pt;}
.ls1f{letter-spacing:-0.299520pt;}
.lsc{letter-spacing:-0.171520pt;}
.ls9{letter-spacing:-0.144000pt;}
.ls1c{letter-spacing:-0.128640pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000303pt;}
.ls15{letter-spacing:0.144000pt;}
.ls21{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.300160pt;}
.ls23{letter-spacing:0.359717pt;}
.ls20{letter-spacing:0.374400pt;}
.ls6{letter-spacing:0.543571pt;}
.ls22{letter-spacing:0.559559pt;}
.ls5{letter-spacing:0.932600pt;}
.ls7{letter-spacing:0.945920pt;}
.ls4{letter-spacing:0.999213pt;}
.ls3{letter-spacing:1.132440pt;}
.ls8{letter-spacing:1.449067pt;}
.ls2{letter-spacing:1.606293pt;}
.ls1{letter-spacing:2.125987pt;}
.ls13{letter-spacing:159.556480pt;}
.ls10{letter-spacing:223.276160pt;}
.lsb{letter-spacing:271.258880pt;}
.ls11{letter-spacing:285.600000pt;}
.ls12{letter-spacing:289.868800pt;}
.ls14{letter-spacing:975.635776pt;}
.ls18{letter-spacing:1401.552000pt;}
.ls19{letter-spacing:1404.177600pt;}
.ls1a{letter-spacing:1423.920000pt;}
.ls1b{letter-spacing:1439.280000pt;}
.ls16{letter-spacing:1476.432000pt;}
.ls17{letter-spacing:1563.456000pt;}
.wsfd{word-spacing:-169.333120pt;}
.ws101{word-spacing:-20.816640pt;}
.ws13e{word-spacing:-15.355886pt;}
.ws140{word-spacing:-15.131283pt;}
.ws1{word-spacing:-14.268744pt;}
.ws2{word-spacing:-13.974752pt;}
.ws20{word-spacing:-13.679875pt;}
.ws159{word-spacing:-13.184000pt;}
.ws141{word-spacing:-12.819221pt;}
.ws13a{word-spacing:-12.590088pt;}
.ws1d{word-spacing:-12.330645pt;}
.ws77{word-spacing:-11.950822pt;}
.ws13c{word-spacing:-11.950591pt;}
.wsff{word-spacing:-11.920640pt;}
.ws6f{word-spacing:-11.918592pt;}
.ws100{word-spacing:-11.749120pt;}
.wsfb{word-spacing:-11.372557pt;}
.ws15a{word-spacing:-11.369698pt;}
.wsfe{word-spacing:-11.105920pt;}
.ws103{word-spacing:-10.944000pt;}
.ws15b{word-spacing:-10.890669pt;}
.wscc{word-spacing:-10.800000pt;}
.ws13f{word-spacing:-10.644936pt;}
.ws13d{word-spacing:-10.431787pt;}
.ws1c{word-spacing:-10.032102pt;}
.ws13b{word-spacing:-9.992133pt;}
.ws1f{word-spacing:-9.736344pt;}
.ws70{word-spacing:-9.636293pt;}
.ws97{word-spacing:-9.433600pt;}
.wsfc{word-spacing:-9.347840pt;}
.wsf7{word-spacing:-9.096892pt;}
.wsce{word-spacing:-8.891648pt;}
.ws15c{word-spacing:-4.867069pt;}
.ws93{word-spacing:-4.467942pt;}
.ws68{word-spacing:-3.614160pt;}
.ws127{word-spacing:-2.891328pt;}
.wsd5{word-spacing:-2.843139pt;}
.ws16{word-spacing:-2.554006pt;}
.ws31{word-spacing:-2.505818pt;}
.ws9a{word-spacing:-2.401280pt;}
.ws147{word-spacing:-2.072118pt;}
.ws5d{word-spacing:-1.975741pt;}
.ws64{word-spacing:-1.879363pt;}
.wsa1{word-spacing:-1.782986pt;}
.ws9b{word-spacing:-1.758080pt;}
.ws24{word-spacing:-1.734797pt;}
.ws5a{word-spacing:-1.590230pt;}
.wsdb{word-spacing:-1.542042pt;}
.wsd8{word-spacing:-1.493853pt;}
.ws102{word-spacing:-1.422720pt;}
.wsc4{word-spacing:-1.397475pt;}
.wsa9{word-spacing:-1.349286pt;}
.wsa5{word-spacing:-1.204720pt;}
.wsec{word-spacing:-1.156531pt;}
.wscd{word-spacing:-1.114880pt;}
.ws4e{word-spacing:-1.108342pt;}
.ws72{word-spacing:-1.060154pt;}
.wsed{word-spacing:-1.011965pt;}
.ws125{word-spacing:-1.008000pt;}
.ws6a{word-spacing:-0.915587pt;}
.ws10c{word-spacing:-0.867398pt;}
.wsbd{word-spacing:-0.819210pt;}
.ws14{word-spacing:-0.674643pt;}
.ws1a{word-spacing:-0.578266pt;}
.ws50{word-spacing:-0.530077pt;}
.ws120{word-spacing:-0.471680pt;}
.ws84{word-spacing:-0.433699pt;}
.ws94{word-spacing:-0.343040pt;}
.ws79{word-spacing:-0.337322pt;}
.ws124{word-spacing:-0.336000pt;}
.ws98{word-spacing:-0.300160pt;}
.ws126{word-spacing:-0.288000pt;}
.ws7d{word-spacing:-0.281762pt;}
.ws11f{word-spacing:-0.240944pt;}
.ws130{word-spacing:-0.192755pt;}
.wsaa{word-spacing:-0.144566pt;}
.ws36{word-spacing:-0.096378pt;}
.ws139{word-spacing:-0.074835pt;}
.ws0{word-spacing:0.000000pt;}
.ws148{word-spacing:0.048189pt;}
.ws71{word-spacing:0.096000pt;}
.ws82{word-spacing:0.096378pt;}
.ws95{word-spacing:0.128640pt;}
.ws123{word-spacing:0.144000pt;}
.ws99{word-spacing:0.171520pt;}
.ws5c{word-spacing:0.192755pt;}
.wsb{word-spacing:0.240944pt;}
.wsd3{word-spacing:0.289133pt;}
.ws122{word-spacing:0.299520pt;}
.ws67{word-spacing:0.337322pt;}
.wsb1{word-spacing:0.385510pt;}
.ws121{word-spacing:0.428800pt;}
.ws73{word-spacing:0.433699pt;}
.wse7{word-spacing:0.481888pt;}
.ws8f{word-spacing:0.578266pt;}
.ws1b{word-spacing:0.722832pt;}
.ws52{word-spacing:0.771021pt;}
.wsfa{word-spacing:0.814720pt;}
.ws9d{word-spacing:0.819210pt;}
.ws149{word-spacing:0.963776pt;}
.ws74{word-spacing:1.108342pt;}
.wsab{word-spacing:1.204720pt;}
.ws25{word-spacing:1.252909pt;}
.wsde{word-spacing:1.301098pt;}
.ws90{word-spacing:1.349286pt;}
.ws2e{word-spacing:1.397475pt;}
.wseb{word-spacing:1.445664pt;}
.wsa8{word-spacing:1.542042pt;}
.ws30{word-spacing:1.638419pt;}
.ws47{word-spacing:1.734797pt;}
.ws4c{word-spacing:1.782986pt;}
.ws34{word-spacing:1.831174pt;}
.ws11{word-spacing:1.975741pt;}
.wsf0{word-spacing:2.072118pt;}
.wsca{word-spacing:2.216685pt;}
.wsd2{word-spacing:2.264874pt;}
.ws55{word-spacing:2.313062pt;}
.ws119{word-spacing:2.361251pt;}
.ws78{word-spacing:2.409440pt;}
.ws48{word-spacing:2.457629pt;}
.wsf2{word-spacing:2.505818pt;}
.ws7b{word-spacing:2.602195pt;}
.wsad{word-spacing:2.650384pt;}
.wse2{word-spacing:2.698573pt;}
.ws128{word-spacing:2.746762pt;}
.wsb8{word-spacing:2.794950pt;}
.wsdd{word-spacing:2.939517pt;}
.ws23{word-spacing:2.987706pt;}
.ws37{word-spacing:3.035894pt;}
.wsaf{word-spacing:3.132272pt;}
.wsbe{word-spacing:3.180461pt;}
.wsd0{word-spacing:3.276838pt;}
.ws54{word-spacing:3.325027pt;}
.wsa{word-spacing:3.421405pt;}
.wsd9{word-spacing:3.469594pt;}
.ws12e{word-spacing:3.517782pt;}
.ws92{word-spacing:3.565971pt;}
.ws10e{word-spacing:3.614160pt;}
.ws3c{word-spacing:3.710538pt;}
.wse4{word-spacing:3.758726pt;}
.ws45{word-spacing:3.806915pt;}
.ws83{word-spacing:3.951482pt;}
.ws62{word-spacing:4.096048pt;}
.wsd6{word-spacing:4.192426pt;}
.wsf1{word-spacing:4.240614pt;}
.ws21{word-spacing:4.246274pt;}
.ws53{word-spacing:4.288803pt;}
.ws38{word-spacing:4.336992pt;}
.wsb3{word-spacing:4.385181pt;}
.ws10{word-spacing:4.433370pt;}
.wsb4{word-spacing:4.481558pt;}
.ws43{word-spacing:4.529747pt;}
.ws28{word-spacing:4.577936pt;}
.ws111{word-spacing:4.626125pt;}
.ws5e{word-spacing:4.674314pt;}
.ws9e{word-spacing:4.818880pt;}
.wse{word-spacing:4.867069pt;}
.ws11d{word-spacing:4.915258pt;}
.wsc7{word-spacing:4.963446pt;}
.ws58{word-spacing:5.011635pt;}
.ws4{word-spacing:5.059824pt;}
.wsd1{word-spacing:5.108013pt;}
.ws91{word-spacing:5.156202pt;}
.wsc1{word-spacing:5.204390pt;}
.ws8e{word-spacing:5.252579pt;}
.ws12f{word-spacing:5.300768pt;}
.ws7e{word-spacing:5.348957pt;}
.wse5{word-spacing:5.397146pt;}
.ws131{word-spacing:5.493523pt;}
.wsc0{word-spacing:5.589901pt;}
.ws4f{word-spacing:5.686278pt;}
.ws143{word-spacing:5.734467pt;}
.ws75{word-spacing:5.879034pt;}
.ws46{word-spacing:5.975411pt;}
.ws60{word-spacing:6.071789pt;}
.ws29{word-spacing:6.168166pt;}
.ws44{word-spacing:6.264544pt;}
.ws51{word-spacing:6.312733pt;}
.ws2f{word-spacing:6.360922pt;}
.ws12a{word-spacing:6.457299pt;}
.ws138{word-spacing:6.505488pt;}
.wsae{word-spacing:6.553677pt;}
.ws3a{word-spacing:6.601866pt;}
.ws17{word-spacing:6.650054pt;}
.wse8{word-spacing:6.698243pt;}
.ws63{word-spacing:6.746432pt;}
.ws14a{word-spacing:6.794621pt;}
.ws12{word-spacing:6.939187pt;}
.ws32{word-spacing:6.987376pt;}
.wsa6{word-spacing:7.035565pt;}
.ws15{word-spacing:7.131942pt;}
.wsa3{word-spacing:7.276509pt;}
.wsf{word-spacing:7.324698pt;}
.ws4b{word-spacing:7.372886pt;}
.wsc9{word-spacing:7.421075pt;}
.ws9f{word-spacing:7.469264pt;}
.ws155{word-spacing:7.517453pt;}
.wsdc{word-spacing:7.613830pt;}
.ws6e{word-spacing:7.710208pt;}
.wsbb{word-spacing:7.806586pt;}
.ws57{word-spacing:7.902963pt;}
.ws14f{word-spacing:7.951152pt;}
.ws3f{word-spacing:7.999341pt;}
.wscb{word-spacing:8.047530pt;}
.ws2a{word-spacing:8.095718pt;}
.ws69{word-spacing:8.143907pt;}
.wsc3{word-spacing:8.192096pt;}
.ws8b{word-spacing:8.288474pt;}
.wsd4{word-spacing:8.336662pt;}
.ws8a{word-spacing:8.384851pt;}
.wsb7{word-spacing:8.433040pt;}
.wsc8{word-spacing:8.625795pt;}
.ws6{word-spacing:8.722173pt;}
.ws3{word-spacing:8.770362pt;}
.ws22{word-spacing:8.818550pt;}
.ws6d{word-spacing:8.914928pt;}
.ws13{word-spacing:8.963117pt;}
.ws104{word-spacing:9.011306pt;}
.ws3b{word-spacing:9.059494pt;}
.ws76{word-spacing:9.252250pt;}
.ws7c{word-spacing:9.338402pt;}
.wsac{word-spacing:9.348627pt;}
.ws59{word-spacing:9.493194pt;}
.ws112{word-spacing:9.541382pt;}
.ws146{word-spacing:9.589571pt;}
.ws9{word-spacing:9.637760pt;}
.ws33{word-spacing:9.685949pt;}
.ws35{word-spacing:9.734138pt;}
.ws106{word-spacing:9.782326pt;}
.wsd7{word-spacing:9.878704pt;}
.ws27{word-spacing:9.926893pt;}
.ws11a{word-spacing:9.975082pt;}
.ws42{word-spacing:10.023270pt;}
.ws113{word-spacing:10.071459pt;}
.wsa0{word-spacing:10.360592pt;}
.ws7f{word-spacing:10.408781pt;}
.ws115{word-spacing:10.505158pt;}
.wsa7{word-spacing:10.553347pt;}
.wsbc{word-spacing:10.746102pt;}
.ws134{word-spacing:10.794291pt;}
.ws89{word-spacing:10.938858pt;}
.ws136{word-spacing:10.987046pt;}
.wsf5{word-spacing:11.028975pt;}
.wsda{word-spacing:11.083424pt;}
.wsc2{word-spacing:11.131613pt;}
.ws11e{word-spacing:11.179802pt;}
.ws11c{word-spacing:11.276179pt;}
.ws85{word-spacing:11.324368pt;}
.wsea{word-spacing:11.420746pt;}
.ws26{word-spacing:11.468934pt;}
.wsd{word-spacing:11.613501pt;}
.ws4d{word-spacing:11.661690pt;}
.ws6c{word-spacing:11.709878pt;}
.wsef{word-spacing:11.806256pt;}
.ws144{word-spacing:11.950822pt;}
.wsc{word-spacing:12.047200pt;}
.ws65{word-spacing:12.095389pt;}
.wse9{word-spacing:12.143578pt;}
.ws2b{word-spacing:12.239955pt;}
.ws41{word-spacing:12.288144pt;}
.ws10d{word-spacing:12.577277pt;}
.ws40{word-spacing:12.625466pt;}
.ws2c{word-spacing:12.770032pt;}
.ws117{word-spacing:12.866410pt;}
.ws151{word-spacing:12.962787pt;}
.ws4a{word-spacing:13.010976pt;}
.ws105{word-spacing:13.203731pt;}
.ws150{word-spacing:13.396486pt;}
.wsba{word-spacing:13.444675pt;}
.ws135{word-spacing:13.589242pt;}
.ws7{word-spacing:13.685619pt;}
.ws39{word-spacing:13.733808pt;}
.ws10b{word-spacing:13.926563pt;}
.ws5{word-spacing:14.022941pt;}
.ws3e{word-spacing:14.119318pt;}
.ws8c{word-spacing:14.312074pt;}
.ws10f{word-spacing:14.456640pt;}
.ws133{word-spacing:14.504829pt;}
.wsa4{word-spacing:14.649395pt;}
.ws8{word-spacing:14.745773pt;}
.wsbf{word-spacing:14.890339pt;}
.ws61{word-spacing:14.938528pt;}
.ws14e{word-spacing:14.986717pt;}
.ws12c{word-spacing:15.034906pt;}
.ws88{word-spacing:15.324038pt;}
.wse6{word-spacing:15.372227pt;}
.wsb2{word-spacing:15.468605pt;}
.ws157{word-spacing:15.564982pt;}
.wsee{word-spacing:15.805926pt;}
.wse3{word-spacing:15.854115pt;}
.wsc6{word-spacing:16.046870pt;}
.ws129{word-spacing:16.143248pt;}
.wsa2{word-spacing:16.336003pt;}
.ws153{word-spacing:16.480570pt;}
.ws10a{word-spacing:16.817891pt;}
.ws5f{word-spacing:16.866080pt;}
.ws56{word-spacing:16.914269pt;}
.ws12b{word-spacing:17.107024pt;}
.ws114{word-spacing:17.251590pt;}
.ws8d{word-spacing:17.299779pt;}
.ws19{word-spacing:17.347968pt;}
.ws6b{word-spacing:17.492534pt;}
.wscf{word-spacing:17.637101pt;}
.ws2d{word-spacing:17.685290pt;}
.wse0{word-spacing:17.733478pt;}
.wsc5{word-spacing:17.878045pt;}
.ws18{word-spacing:17.974422pt;}
.wsb5{word-spacing:18.022611pt;}
.ws87{word-spacing:18.070800pt;}
.wsb9{word-spacing:18.167178pt;}
.ws14c{word-spacing:18.504499pt;}
.ws7a{word-spacing:18.697254pt;}
.ws14d{word-spacing:18.745443pt;}
.ws9c{word-spacing:18.841821pt;}
.wsb0{word-spacing:18.890010pt;}
.ws142{word-spacing:18.986387pt;}
.wse1{word-spacing:19.082765pt;}
.ws116{word-spacing:19.130954pt;}
.wsf3{word-spacing:19.227331pt;}
.ws158{word-spacing:19.275520pt;}
.ws49{word-spacing:19.323709pt;}
.ws145{word-spacing:19.516464pt;}
.ws110{word-spacing:19.564653pt;}
.ws5b{word-spacing:19.950163pt;}
.wsb6{word-spacing:20.191107pt;}
.ws109{word-spacing:20.239296pt;}
.ws137{word-spacing:20.721184pt;}
.ws107{word-spacing:21.203072pt;}
.wsf4{word-spacing:21.299450pt;}
.ws3d{word-spacing:21.925904pt;}
.ws66{word-spacing:23.564323pt;}
.ws14b{word-spacing:24.528099pt;}
.ws156{word-spacing:24.817232pt;}
.ws132{word-spacing:25.347309pt;}
.ws11b{word-spacing:25.588253pt;}
.ws108{word-spacing:29.154224pt;}
.ws86{word-spacing:30.310755pt;}
.wsdf{word-spacing:30.358944pt;}
.ws152{word-spacing:32.334685pt;}
.ws81{word-spacing:34.840502pt;}
.ws118{word-spacing:36.527110pt;}
.ws12d{word-spacing:38.454662pt;}
.ws154{word-spacing:40.623158pt;}
.ws80{word-spacing:41.635123pt;}
.ws1e{word-spacing:60.335123pt;}
.wsf6{word-spacing:204.709120pt;}
.ws96{word-spacing:252.691840pt;}
.wsf8{word-spacing:264.144000pt;}
.wsf9{word-spacing:271.301760pt;}
._1f{margin-left:-159.556480pt;}
._b{margin-left:-56.593404pt;}
._13{margin-left:-18.118989pt;}
._2{margin-left:-14.475956pt;}
._1{margin-left:-12.143578pt;}
._f{margin-left:-9.637760pt;}
._7{margin-left:-8.673971pt;}
._8{margin-left:-6.599021pt;}
._5{margin-left:-5.612600pt;}
._0{margin-left:-3.855104pt;}
._4{margin-left:-2.806302pt;}
._1a{margin-left:-1.914224pt;}
._3{margin-left:-1.020474pt;}
._12{width:1.159092pt;}
._11{width:3.007287pt;}
._d{width:4.124406pt;}
._14{width:7.386214pt;}
._c{width:8.673971pt;}
._9{width:10.893487pt;}
._10{width:21.829526pt;}
._e{width:31.434260pt;}
._a{width:58.166630pt;}
._6{width:66.117771pt;}
._1b{width:90.460377pt;}
._16{width:138.687366pt;}
._15{width:169.804594pt;}
._17{width:181.093510pt;}
._1c{width:204.408960pt;}
._19{width:252.391680pt;}
._1d{width:264.000000pt;}
._1e{width:271.001600pt;}
._18{width:293.826314pt;}
.fs12{font-size:36.226667pt;}
.fse{font-size:37.304000pt;}
.fs4{font-size:37.333333pt;}
.fs11{font-size:37.836800pt;}
.fsf{font-size:39.684800pt;}
.fsd{font-size:39.968533pt;}
.fs10{font-size:40.251733pt;}
.fsc{font-size:42.519467pt;}
.fs14{font-size:42.880000pt;}
.fsa{font-size:45.297600pt;}
.fs13{font-size:48.000000pt;}
.fs9{font-size:48.188800pt;}
.fs16{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:64.251733pt;}
.fsb{font-size:74.834667pt;}
.fs15{font-size:74.880000pt;}
.fs8{font-size:85.039467pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:192.755733pt;}
.fs5{font-size:298.666667pt;}
.y21e{bottom:-787.515067pt;}
.y0{bottom:0.000000pt;}
.y222{bottom:2.559600pt;}
.y221{bottom:16.319600pt;}
.y50{bottom:27.968533pt;}
.y49{bottom:57.637867pt;}
.y142{bottom:57.638000pt;}
.yc2{bottom:57.639869pt;}
.y5{bottom:59.133337pt;}
.y1cc{bottom:61.655469pt;}
.y2b7{bottom:65.669333pt;}
.yc1{bottom:69.685200pt;}
.y1a5{bottom:69.686935pt;}
.y141{bottom:69.687069pt;}
.y48{bottom:70.960667pt;}
.y81{bottom:73.700800pt;}
.yfe{bottom:73.703292pt;}
.y176{bottom:73.704048pt;}
.yc0{bottom:81.732400pt;}
.y1a4{bottom:81.734269pt;}
.yd7{bottom:81.738140pt;}
.y4{bottom:86.333337pt;}
.yfd{bottom:89.763733pt;}
.y80{bottom:89.771898pt;}
.yae{bottom:89.788228pt;}
.y175{bottom:93.779600pt;}
.y140{bottom:93.781602pt;}
.yd6{bottom:93.783471pt;}
.ybf{bottom:93.787342pt;}
.y157{bottom:93.789211pt;}
.y21d{bottom:97.802667pt;}
.y1cb{bottom:101.811067pt;}
.y13f{bottom:105.826933pt;}
.yd5{bottom:105.828802pt;}
.y174{bottom:105.829292pt;}
.y7f{bottom:105.830816pt;}
.y2b6{bottom:105.830949pt;}
.ybe{bottom:105.832673pt;}
.y156{bottom:105.834542pt;}
.yad{bottom:105.847145pt;}
.y228{bottom:106.127600pt;}
.y1ca{bottom:113.862138pt;}
.yd4{bottom:117.874133pt;}
.y13e{bottom:117.876892pt;}
.ybd{bottom:117.878004pt;}
.y155{bottom:117.879873pt;}
.y4c{bottom:121.889733pt;}
.y2b5{bottom:121.889867pt;}
.yac{bottom:121.906063pt;}
.y20{bottom:123.790666pt;}
.y227{bottom:126.127600pt;}
.y117{bottom:126.776000pt;}
.ybc{bottom:129.923335pt;}
.y154{bottom:129.925204pt;}
.yd3{bottom:129.927206pt;}
.y2c2{bottom:130.663067pt;}
.y13d{bottom:133.937333pt;}
.y4b{bottom:135.214634pt;}
.y1a3{bottom:137.952800pt;}
.y7e{bottom:137.964981pt;}
.ybb{bottom:141.968667pt;}
.y153{bottom:141.970535pt;}
.yd2{bottom:141.972538pt;}
.y2b4{bottom:145.984267pt;}
.y13c{bottom:145.984533pt;}
.y226{bottom:146.127600pt;}
.y2c1{bottom:146.726133pt;}
.y4a{bottom:151.201953pt;}
.y1a2{bottom:154.015733pt;}
.y152{bottom:154.015867pt;}
.yba{bottom:154.017869pt;}
.y7d{bottom:154.023898pt;}
.y1d7{bottom:154.948667pt;}
.y111{bottom:156.277440pt;}
.y10b{bottom:156.288160pt;}
.y105{bottom:156.298880pt;}
.yff{bottom:156.309600pt;}
.y118{bottom:156.706240pt;}
.y13b{bottom:158.037473pt;}
.y2c0{bottom:162.789200pt;}
.yb9{bottom:166.063200pt;}
.y225{bottom:166.127600pt;}
.y2b3{bottom:170.078667pt;}
.y1a1{bottom:170.078800pt;}
.y13a{bottom:170.082804pt;}
.y7c{bottom:170.082816pt;}
.y236{bottom:170.099145pt;}
.y17{bottom:175.052000pt;}
.y139{bottom:182.128135pt;}
.y177{bottom:184.666933pt;}
.y224{bottom:186.127600pt;}
.y4f{bottom:186.141733pt;}
.y235{bottom:186.158063pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y2bf{bottom:186.883600pt;}
.y112{bottom:190.238400pt;}
.y10c{bottom:190.249120pt;}
.y106{bottom:190.259840pt;}
.y100{bottom:190.270560pt;}
.y119{bottom:190.667200pt;}
.y180{bottom:190.738933pt;}
.y138{bottom:194.173467pt;}
.y1e9{bottom:195.042213pt;}
.y21f{bottom:195.044933pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y4e{bottom:199.464681pt;}
.y7b{bottom:202.208816pt;}
.yab{bottom:202.212831pt;}
.y234{bottom:202.216981pt;}
.y2be{bottom:202.946667pt;}
.y223{bottom:206.127600pt;}
.y137{bottom:206.226540pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y4d{bottom:215.452000pt;}
.yaa{bottom:218.271749pt;}
.y136{bottom:218.271871pt;}
.y2b2{bottom:218.271882pt;}
.y7a{bottom:218.275898pt;}
.y1e5{bottom:220.105573pt;}
.y1e1{bottom:220.116293pt;}
.y1dd{bottom:220.127013pt;}
.y1d9{bottom:220.137733pt;}
.y1ea{bottom:220.534373pt;}
.y220{bottom:221.328000pt;}
.ye0{bottom:222.285335pt;}
.y113{bottom:224.199360pt;}
.y10d{bottom:224.210080pt;}
.y107{bottom:224.220800pt;}
.y101{bottom:224.231520pt;}
.y11a{bottom:224.628160pt;}
.y2bd{bottom:227.041067pt;}
.y178{bottom:227.314933pt;}
.y135{bottom:230.317202pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y181{bottom:233.386933pt;}
.ya9{bottom:234.330667pt;}
.y2b1{bottom:234.330800pt;}
.ydf{bottom:234.333915pt;}
.y79{bottom:234.334816pt;}
.y17c{bottom:238.486933pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y134{bottom:242.362533pt;}
.y2bc{bottom:243.104000pt;}
.y1e6{bottom:245.179653pt;}
.y1e2{bottom:245.190373pt;}
.y1de{bottom:245.201093pt;}
.y1da{bottom:245.211813pt;}
.y1eb{bottom:245.608453pt;}
.y78{bottom:250.393733pt;}
.ya8{bottom:250.405914pt;}
.y1a8{bottom:253.321467pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.yde{bottom:254.409467pt;}
.y133{bottom:254.411602pt;}
.y114{bottom:258.160320pt;}
.y10e{bottom:258.171040pt;}
.y108{bottom:258.181760pt;}
.y102{bottom:258.192480pt;}
.y2b0{bottom:258.425200pt;}
.y11b{bottom:258.589120pt;}
.y2bb{bottom:259.167067pt;}
.y21c{bottom:266.159867pt;}
.y47{bottom:266.456667pt;}
.y132{bottom:266.456933pt;}
.y77{bottom:266.460816pt;}
.ya7{bottom:266.464831pt;}
.y233{bottom:266.468981pt;}
.y179{bottom:269.962933pt;}
.y1e7{bottom:270.253733pt;}
.y1e3{bottom:270.264453pt;}
.y1df{bottom:270.275173pt;}
.y1db{bottom:270.285893pt;}
.y1ec{bottom:270.682533pt;}
.y2ba{bottom:275.230000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y182{bottom:276.034933pt;}
.y17d{bottom:281.134933pt;}
.y1a7{bottom:281.353467pt;}
.y21b{bottom:282.222933pt;}
.y76{bottom:282.515851pt;}
.y2af{bottom:282.519600pt;}
.y35{bottom:282.519733pt;}
.ya6{bottom:282.523749pt;}
.y232{bottom:282.527898pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y2b9{bottom:291.289295pt;}
.y115{bottom:292.121280pt;}
.y10f{bottom:292.132000pt;}
.y109{bottom:292.142720pt;}
.y103{bottom:292.153440pt;}
.y11c{bottom:292.550080pt;}
.y1e8{bottom:295.327813pt;}
.y1e4{bottom:295.338533pt;}
.y1e0{bottom:295.349253pt;}
.y1dc{bottom:295.359973pt;}
.y1ed{bottom:295.756613pt;}
.y34{bottom:298.582667pt;}
.y151{bottom:298.586816pt;}
.ye{bottom:309.452000pt;}
.y17a{bottom:312.610933pt;}
.y2ae{bottom:314.645600pt;}
.y75{bottom:314.645733pt;}
.y33{bottom:314.653898pt;}
.y190{bottom:314.657914pt;}
.y2b8{bottom:315.383695pt;}
.y1ef{bottom:315.824453pt;}
.y183{bottom:318.682933pt;}
.y17e{bottom:323.782933pt;}
.y1d6{bottom:324.821333pt;}
.y116{bottom:326.082240pt;}
.y110{bottom:326.092960pt;}
.y10a{bottom:326.103680pt;}
.y104{bottom:326.114400pt;}
.y21a{bottom:326.396133pt;}
.y11d{bottom:326.511040pt;}
.y1ee{bottom:328.141733pt;}
.y1d1{bottom:329.330533pt;}
.y150{bottom:330.708667pt;}
.y32{bottom:330.712816pt;}
.ya5{bottom:330.716831pt;}
.y74{bottom:330.720847pt;}
.yd{bottom:343.809333pt;}
.y1a9{bottom:344.461467pt;}
.y1a6{bottom:345.781467pt;}
.y40{bottom:346.771600pt;}
.y31{bottom:346.771733pt;}
.ya4{bottom:346.775749pt;}
.y73{bottom:346.779765pt;}
.ye2{bottom:352.070000pt;}
.y11f{bottom:355.112000pt;}
.y17b{bottom:355.258933pt;}
.y1cd{bottom:357.914533pt;}
.y1d2{bottom:358.861333pt;}
.y184{bottom:361.330933pt;}
.yc{bottom:362.706666pt;}
.ya3{bottom:362.834667pt;}
.y3f{bottom:362.838682pt;}
.y30{bottom:362.842831pt;}
.y2ad{bottom:363.576533pt;}
.y17f{bottom:366.430933pt;}
.y11e{bottom:367.429280pt;}
.y3e{bottom:378.897600pt;}
.y2f{bottom:378.901749pt;}
.y18f{bottom:378.909781pt;}
.y14f{bottom:378.909914pt;}
.ya2{bottom:378.918079pt;}
.y231{bottom:378.922094pt;}
.y1ce{bottom:386.882533pt;}
.y1d3{bottom:387.826773pt;}
.y187{bottom:390.935973pt;}
.y2e{bottom:394.960667pt;}
.y3d{bottom:394.968698pt;}
.y131{bottom:394.968831pt;}
.ya1{bottom:394.976996pt;}
.y230{bottom:394.981012pt;}
.y72{bottom:394.993193pt;}
.y186{bottom:403.092453pt;}
.y1a0{bottom:411.014416pt;}
.y2d{bottom:411.023600pt;}
.y3c{bottom:411.027616pt;}
.y130{bottom:411.027749pt;}
.ya0{bottom:411.035914pt;}
.y22f{bottom:411.039930pt;}
.y71{bottom:411.052110pt;}
.yfc{bottom:411.817482pt;}
.y185{bottom:415.409733pt;}
.y1cf{bottom:415.850533pt;}
.y1d4{bottom:416.792213pt;}
.y19f{bottom:427.073333pt;}
.y3b{bottom:427.086533pt;}
.y12f{bottom:427.086667pt;}
.y2c{bottom:427.090682pt;}
.y9f{bottom:427.094831pt;}
.y1fd{bottom:427.098847pt;}
.y70{bottom:427.111028pt;}
.yfb{bottom:427.876400pt;}
.ye1{bottom:436.262000pt;}
.ye3{bottom:439.598000pt;}
.y19e{bottom:443.136267pt;}
.y2b{bottom:443.149600pt;}
.y3a{bottom:443.153616pt;}
.y9e{bottom:443.153749pt;}
.y1fc{bottom:443.157765pt;}
.y208{bottom:443.165796pt;}
.y6f{bottom:443.169945pt;}
.yfa{bottom:443.939467pt;}
.y1d0{bottom:444.818533pt;}
.y1d5{bottom:445.757653pt;}
.y173{bottom:458.636416pt;}
.y19d{bottom:459.203349pt;}
.y39{bottom:459.212533pt;}
.y2a{bottom:459.212667pt;}
.y12e{bottom:459.216682pt;}
.y18e{bottom:459.220698pt;}
.y207{bottom:459.224714pt;}
.y6e{bottom:459.228863pt;}
.yb{bottom:462.990669pt;}
.y1d8{bottom:467.450000pt;}
.y172{bottom:474.695333pt;}
.y19c{bottom:475.262267pt;}
.y12d{bottom:475.275600pt;}
.y38{bottom:475.279616pt;}
.y206{bottom:475.283631pt;}
.y29{bottom:475.283765pt;}
.y6d{bottom:475.287781pt;}
.y9d{bottom:475.291930pt;}
.ya{bottom:478.990666pt;}
.y26e{bottom:480.294331pt;}
.ye4{bottom:486.746000pt;}
.yf9{bottom:488.112667pt;}
.y171{bottom:490.758400pt;}
.y37{bottom:491.338533pt;}
.y205{bottom:491.342549pt;}
.y28{bottom:491.342682pt;}
.y6c{bottom:491.346698pt;}
.y9c{bottom:491.350847pt;}
.y1fb{bottom:491.354863pt;}
.y12c{bottom:491.379357pt;}
.y26d{bottom:493.613554pt;}
.y9{bottom:494.990666pt;}
.y170{bottom:506.821333pt;}
.y26c{bottom:506.932777pt;}
.y29d{bottom:506.947219pt;}
.y1c9{bottom:507.396431pt;}
.y204{bottom:507.401467pt;}
.y27{bottom:507.401600pt;}
.y6b{bottom:507.405616pt;}
.y9b{bottom:507.409765pt;}
.y1fa{bottom:507.413781pt;}
.y12b{bottom:507.438275pt;}
.y19b{bottom:519.435467pt;}
.y26b{bottom:520.252000pt;}
.y29c{bottom:520.266442pt;}
.y1c8{bottom:523.455349pt;}
.y36{bottom:523.463733pt;}
.y26{bottom:523.464533pt;}
.y203{bottom:523.468549pt;}
.y9a{bottom:523.468682pt;}
.y1f9{bottom:523.472698pt;}
.y2a7{bottom:523.476847pt;}
.y12a{bottom:523.497193pt;}
.y26a{bottom:533.585665pt;}
.y1c7{bottom:539.514267pt;}
.y202{bottom:539.527467pt;}
.y6a{bottom:539.527600pt;}
.y1f8{bottom:539.531616pt;}
.y2a6{bottom:539.535765pt;}
.y14e{bottom:539.547945pt;}
.y129{bottom:539.556110pt;}
.y269{bottom:546.904887pt;}
.y16f{bottom:550.994533pt;}
.y1c6{bottom:555.577200pt;}
.y69{bottom:555.590533pt;}
.ydd{bottom:555.593530pt;}
.y2a5{bottom:555.594682pt;}
.y99{bottom:555.598698pt;}
.y14d{bottom:555.606863pt;}
.y128{bottom:555.615028pt;}
.y268{bottom:560.224110pt;}
.ydc{bottom:571.652447pt;}
.y1f7{bottom:571.653467pt;}
.y2a4{bottom:571.653600pt;}
.y98{bottom:571.657616pt;}
.y14c{bottom:571.665781pt;}
.y68{bottom:571.670063pt;}
.y127{bottom:571.673945pt;}
.y24c{bottom:571.714769pt;}
.y267{bottom:573.543333pt;}
.y8{bottom:573.786667pt;}
.y266{bottom:586.866368pt;}
.y284{bottom:586.869710pt;}
.ydb{bottom:587.711365pt;}
.y97{bottom:587.716533pt;}
.yec{bottom:587.719158pt;}
.y1f6{bottom:587.720549pt;}
.y14b{bottom:587.724698pt;}
.y67{bottom:587.728981pt;}
.y126{bottom:587.732863pt;}
.y19a{bottom:587.745043pt;}
.y24b{bottom:587.773687pt;}
.y7{bottom:592.685334pt;}
.y25{bottom:596.220667pt;}
.y1c5{bottom:599.750400pt;}
.y283{bottom:600.188933pt;}
.y29b{bottom:600.192644pt;}
.yda{bottom:603.770282pt;}
.y1f5{bottom:603.779467pt;}
.y96{bottom:603.779600pt;}
.y14a{bottom:603.783616pt;}
.yd1{bottom:603.787631pt;}
.y201{bottom:603.791647pt;}
.y125{bottom:603.791781pt;}
.y199{bottom:603.803961pt;}
.y24a{bottom:603.832605pt;}
.y282{bottom:613.511867pt;}
.y265{bottom:613.515444pt;}
.y29a{bottom:613.519021pt;}
.yd9{bottom:619.829200pt;}
.y149{bottom:619.842533pt;}
.y95{bottom:619.846549pt;}
.yeb{bottom:619.850479pt;}
.y200{bottom:619.850565pt;}
.y124{bottom:619.850698pt;}
.y2ab{bottom:619.854714pt;}
.y66{bottom:619.858863pt;}
.y198{bottom:619.862879pt;}
.y249{bottom:619.891522pt;}
.y1af{bottom:623.858267pt;}
.y264{bottom:626.834667pt;}
.y281{bottom:626.838244pt;}
.y24{bottom:632.126133pt;}
.yd0{bottom:635.905467pt;}
.y1ae{bottom:635.908092pt;}
.y1ff{bottom:635.909482pt;}
.y94{bottom:635.909616pt;}
.y148{bottom:635.913631pt;}
.y65{bottom:635.917781pt;}
.y197{bottom:635.921796pt;}
.y248{bottom:635.950440pt;}
.y280{bottom:640.157467pt;}
.y263{bottom:640.168331pt;}
.y6{bottom:645.598667pt;}
.y1fe{bottom:651.968400pt;}
.y93{bottom:651.968533pt;}
.ycf{bottom:651.972549pt;}
.y64{bottom:651.976698pt;}
.y196{bottom:651.980714pt;}
.y247{bottom:652.009357pt;}
.y299{bottom:653.480267pt;}
.y262{bottom:653.487554pt;}
.y27f{bottom:653.494943pt;}
.y159{bottom:659.043467pt;}
.y164{bottom:659.559467pt;}
.yd8{bottom:664.002400pt;}
.y261{bottom:666.806777pt;}
.y27e{bottom:666.814166pt;}
.y92{bottom:668.031467pt;}
.y63{bottom:668.035616pt;}
.y195{bottom:668.039631pt;}
.y123{bottom:668.051812pt;}
.y246{bottom:668.068275pt;}
.y3{bottom:668.977329pt;}
.y260{bottom:680.126000pt;}
.y23{bottom:680.315067pt;}
.y15a{bottom:682.563467pt;}
.y165{bottom:683.079467pt;}
.y62{bottom:684.094533pt;}
.y194{bottom:684.098549pt;}
.y122{bottom:684.110730pt;}
.yce{bottom:684.114879pt;}
.y245{bottom:684.127193pt;}
.y20d{bottom:688.110133pt;}
.y298{bottom:693.452377pt;}
.y25f{bottom:693.456189pt;}
.y27d{bottom:693.463242pt;}
.yb8{bottom:700.157467pt;}
.y91{bottom:700.161482pt;}
.y2aa{bottom:700.165631pt;}
.y61{bottom:700.169647pt;}
.ycd{bottom:700.173796pt;}
.y147{bottom:700.177945pt;}
.y244{bottom:700.186110pt;}
.y1ba{bottom:704.197653pt;}
.y15b{bottom:706.083467pt;}
.y166{bottom:706.599467pt;}
.y297{bottom:706.771600pt;}
.y25e{bottom:706.775412pt;}
.y27c{bottom:706.782465pt;}
.yf6{bottom:714.522000pt;}
.y90{bottom:716.220400pt;}
.y193{bottom:716.224549pt;}
.y60{bottom:716.228565pt;}
.ycc{bottom:716.232714pt;}
.y146{bottom:716.236863pt;}
.y243{bottom:716.245028pt;}
.yee{bottom:716.662267pt;}
.y25d{bottom:720.094635pt;}
.y296{bottom:720.098345pt;}
.y27b{bottom:720.101687pt;}
.yf2{bottom:721.153600pt;}
.y1b0{bottom:726.162933pt;}
.y1bb{bottom:726.602453pt;}
.y15c{bottom:729.603467pt;}
.y167{bottom:730.119467pt;}
.y8f{bottom:732.283467pt;}
.y5f{bottom:732.287482pt;}
.ycb{bottom:732.291631pt;}
.y145{bottom:732.295781pt;}
.y242{bottom:732.303945pt;}
.y27a{bottom:733.420910pt;}
.y217{bottom:739.726053pt;}
.y1b1{bottom:745.073013pt;}
.y1bc{bottom:745.512533pt;}
.y279{bottom:746.740133pt;}
.y25c{bottom:746.743710pt;}
.y295{bottom:746.747421pt;}
.yb7{bottom:748.346400pt;}
.yca{bottom:748.350549pt;}
.y5e{bottom:748.354698pt;}
.y241{bottom:748.362863pt;}
.y8e{bottom:748.395389pt;}
.y216{bottom:751.968293pt;}
.y15d{bottom:753.123467pt;}
.y168{bottom:753.639467pt;}
.y25b{bottom:760.062933pt;}
.y294{bottom:760.066644pt;}
.y278{bottom:760.066745pt;}
.yef{bottom:761.866267pt;}
.y1b2{bottom:763.983093pt;}
.y219{bottom:764.199813pt;}
.y215{bottom:764.210533pt;}
.yc9{bottom:764.409467pt;}
.y5d{bottom:764.413616pt;}
.y22e{bottom:764.417631pt;}
.y240{bottom:764.421781pt;}
.y1bd{bottom:764.422613pt;}
.y8d{bottom:764.454306pt;}
.y293{bottom:773.385867pt;}
.y25a{bottom:773.389444pt;}
.yf1{bottom:773.857600pt;}
.y218{bottom:776.442053pt;}
.y214{bottom:776.452773pt;}
.y15e{bottom:776.643467pt;}
.y169{bottom:777.159467pt;}
.y121{bottom:780.468651pt;}
.y18d{bottom:780.472400pt;}
.y5c{bottom:780.472533pt;}
.y22d{bottom:780.476549pt;}
.y23f{bottom:780.480698pt;}
.y192{bottom:780.484714pt;}
.yc8{bottom:780.492879pt;}
.y2a3{bottom:780.496894pt;}
.y8c{bottom:780.513224pt;}
.y2{bottom:781.661334pt;}
.y1b3{bottom:782.893173pt;}
.y1be{bottom:783.332693pt;}
.y277{bottom:786.715821pt;}
.y259{bottom:786.723108pt;}
.y292{bottom:786.753723pt;}
.yf5{bottom:787.158000pt;}
.yf7{bottom:788.850000pt;}
.y22c{bottom:796.535467pt;}
.y5b{bottom:796.539616pt;}
.yb6{bottom:796.543631pt;}
.y1f4{bottom:796.547647pt;}
.yc7{bottom:796.551796pt;}
.y2a2{bottom:796.555812pt;}
.y8b{bottom:796.572142pt;}
.yed{bottom:799.954267pt;}
.y276{bottom:800.035044pt;}
.y258{bottom:800.042331pt;}
.y291{bottom:800.072946pt;}
.y15f{bottom:800.163467pt;}
.y16a{bottom:800.679467pt;}
.y1b4{bottom:801.803253pt;}
.y1bf{bottom:802.242773pt;}
.yf3{bottom:806.041600pt;}
.y5a{bottom:812.598533pt;}
.yb5{bottom:812.602549pt;}
.y1f3{bottom:812.606565pt;}
.yc6{bottom:812.610714pt;}
.y2a1{bottom:812.614730pt;}
.y8a{bottom:812.631059pt;}
.y275{bottom:813.354267pt;}
.y257{bottom:813.361554pt;}
.y290{bottom:813.392169pt;}
.y20e{bottom:817.381733pt;}
.yf0{bottom:819.358267pt;}
.yf8{bottom:819.402000pt;}
.y1b5{bottom:820.713333pt;}
.y1c0{bottom:821.152853pt;}
.y160{bottom:823.683467pt;}
.y16b{bottom:824.199467pt;}
.y274{bottom:826.677200pt;}
.y256{bottom:826.680777pt;}
.y28f{bottom:826.711392pt;}
.yb4{bottom:828.661467pt;}
.y59{bottom:828.665482pt;}
.yc5{bottom:828.669631pt;}
.y120{bottom:828.669765pt;}
.y2a0{bottom:828.673647pt;}
.y23e{bottom:828.686094pt;}
.y89{bottom:828.689977pt;}
.yf4{bottom:829.201600pt;}
.y1b6{bottom:839.623413pt;}
.y255{bottom:840.000000pt;}
.y28e{bottom:840.030615pt;}
.y1c1{bottom:840.062933pt;}
.y20f{bottom:843.549253pt;}
.y58{bottom:844.724400pt;}
.yc4{bottom:844.728549pt;}
.y18c{bottom:844.732565pt;}
.y46{bottom:844.734572pt;}
.y1f2{bottom:844.740730pt;}
.y23d{bottom:844.745012pt;}
.y88{bottom:844.748894pt;}
.y161{bottom:847.203467pt;}
.y16c{bottom:847.719467pt;}
.y254{bottom:853.322800pt;}
.y273{bottom:853.323035pt;}
.y28d{bottom:853.349838pt;}
.y1b7{bottom:858.533493pt;}
.y1c2{bottom:858.973013pt;}
.y1{bottom:859.312000pt;}
.yc3{bottom:860.787467pt;}
.y144{bottom:860.791482pt;}
.yb3{bottom:860.795631pt;}
.y57{bottom:860.799647pt;}
.y87{bottom:860.807812pt;}
.y213{bottom:863.091813pt;}
.y22{bottom:863.999867pt;}
.y210{bottom:867.840773pt;}
.y162{bottom:870.723467pt;}
.y16d{bottom:871.239467pt;}
.y143{bottom:876.850400pt;}
.yea{bottom:876.853396pt;}
.yb2{bottom:876.854549pt;}
.y45{bottom:876.858029pt;}
.y56{bottom:876.858565pt;}
.y86{bottom:876.866730pt;}
.y23c{bottom:876.874894pt;}
.y1b8{bottom:877.443573pt;}
.y1c3{bottom:877.883093pt;}
.y253{bottom:879.972110pt;}
.y28c{bottom:879.998914pt;}
.y2ac{bottom:886.623733pt;}
.y18b{bottom:892.909718pt;}
.yb1{bottom:892.913467pt;}
.y55{bottom:892.917482pt;}
.y29f{bottom:892.921498pt;}
.y85{bottom:892.925647pt;}
.y23b{bottom:892.933812pt;}
.y272{bottom:893.291333pt;}
.y252{bottom:893.294910pt;}
.y28b{bottom:893.318137pt;}
.y212{bottom:893.890373pt;}
.y163{bottom:894.243467pt;}
.y16e{bottom:894.759467pt;}
.y1b9{bottom:896.353653pt;}
.y1c4{bottom:896.793173pt;}
.y251{bottom:906.614133pt;}
.y28a{bottom:906.637359pt;}
.y54{bottom:908.976400pt;}
.yb0{bottom:908.980416pt;}
.y44{bottom:908.981486pt;}
.y84{bottom:908.984565pt;}
.y23a{bottom:908.992730pt;}
.y21{bottom:909.354133pt;}
.y211{bottom:909.638053pt;}
.y271{bottom:919.937067pt;}
.y250{bottom:919.944221pt;}
.y289{bottom:919.956582pt;}
.ye9{bottom:925.030149pt;}
.y2a9{bottom:925.039333pt;}
.y18a{bottom:925.039600pt;}
.y83{bottom:925.043482pt;}
.y53{bottom:925.047498pt;}
.y239{bottom:925.051647pt;}
.y22b{bottom:925.055663pt;}
.y24f{bottom:933.263444pt;}
.y288{bottom:933.275805pt;}
.ye8{bottom:941.089067pt;}
.y158{bottom:941.093082pt;}
.y20c{bottom:941.097231pt;}
.y82{bottom:941.102400pt;}
.y43{bottom:941.104943pt;}
.y52{bottom:941.106416pt;}
.y238{bottom:941.110565pt;}
.y22a{bottom:941.114581pt;}
.y1ad{bottom:942.695482pt;}
.y24e{bottom:946.582667pt;}
.y287{bottom:946.595028pt;}
.ye7{bottom:957.152000pt;}
.y20b{bottom:957.156149pt;}
.y51{bottom:957.165333pt;}
.yaf{bottom:957.169482pt;}
.y229{bottom:957.173498pt;}
.y1ac{bottom:958.754400pt;}
.y24d{bottom:959.905467pt;}
.y270{bottom:959.913915pt;}
.y286{bottom:959.914251pt;}
.ye6{bottom:973.215067pt;}
.y42{bottom:973.228400pt;}
.y1f1{bottom:973.228533pt;}
.y191{bottom:973.232416pt;}
.y26f{bottom:973.233138pt;}
.y285{bottom:973.233474pt;}
.y1ab{bottom:974.817333pt;}
.y20a{bottom:989.278000pt;}
.y237{bottom:989.284251pt;}
.y1f0{bottom:989.287451pt;}
.y189{bottom:989.291333pt;}
.y188{bottom:1005.358416pt;}
.ye5{bottom:1017.388267pt;}
.y1aa{bottom:1018.990667pt;}
.y41{bottom:1021.417333pt;}
.y2a8{bottom:1021.419349pt;}
.y209{bottom:1033.451200pt;}
.y29e{bottom:1069.606267pt;}
.h7{height:28.560000pt;}
.h22{height:28.769333pt;}
.h17{height:29.665527pt;}
.h14{height:29.842970pt;}
.h1a{height:30.269303pt;}
.h1c{height:31.217812pt;}
.h25{height:31.336847pt;}
.h11{height:31.506925pt;}
.h12{height:31.974639pt;}
.h1b{height:34.945312pt;}
.h18{height:35.515146pt;}
.h1d{height:35.707901pt;}
.h16{height:36.186308pt;}
.h19{height:36.237978pt;}
.h27{height:36.253065pt;}
.h13{height:38.225001pt;}
.h23{height:38.672812pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.he{height:43.321731pt;}
.hf{height:43.324931pt;}
.h1e{height:43.336727pt;}
.h15{height:43.337261pt;}
.h24{height:43.350061pt;}
.ha{height:47.610534pt;}
.hd{height:48.317303pt;}
.h2{height:48.960000pt;}
.h21{height:54.514687pt;}
.h26{height:58.624000pt;}
.hc{height:62.674087pt;}
.h10{height:68.548555pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h20{height:152.294667pt;}
.h1f{height:166.505333pt;}
.hb{height:176.564252pt;}
.h9{height:273.578667pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:250.080000pt;}
.w7{width:335.161333pt;}
.w2{width:566.928019pt;}
.w4{width:582.880000pt;}
.w5{width:585.842667pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa{left:-11.338667pt;}
.x0{left:0.000000pt;}
.xaa{left:3.839600pt;}
.x95{left:12.758000pt;}
.x8{left:32.778133pt;}
.xb{left:33.972133pt;}
.x5{left:66.743733pt;}
.xd{left:72.111453pt;}
.x6{left:73.665867pt;}
.x94{left:76.286667pt;}
.xb0{left:77.407867pt;}
.x67{left:80.480933pt;}
.x5a{left:82.486267pt;}
.x89{left:85.763733pt;}
.xa1{left:87.330027pt;}
.xe{left:88.815796pt;}
.x49{left:89.817253pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1f{left:98.858267pt;}
.x27{left:112.569600pt;}
.x88{left:121.279093pt;}
.x57{left:122.398267pt;}
.x12{left:130.783381pt;}
.x4b{left:132.578414pt;}
.x9{left:133.580133pt;}
.x4a{left:134.644933pt;}
.x56{left:136.606267pt;}
.xac{left:138.614267pt;}
.x55{left:139.906267pt;}
.x28{left:141.285600pt;}
.x14{left:146.057323pt;}
.x13{left:149.275538pt;}
.x46{left:152.690053pt;}
.x48{left:153.665573pt;}
.x9f{left:156.849227pt;}
.x93{left:158.013387pt;}
.x18{left:159.330667pt;}
.x9e{left:161.716107pt;}
.x47{left:163.399333pt;}
.xa0{left:165.607467pt;}
.x20{left:167.034000pt;}
.x58{left:169.414267pt;}
.x65{left:171.802000pt;}
.x5c{left:173.314267pt;}
.x66{left:176.182000pt;}
.x4{left:180.874667pt;}
.x87{left:182.072213pt;}
.x5b{left:190.774267pt;}
.x21{left:192.191467pt;}
.x26{left:195.333600pt;}
.x64{left:198.058000pt;}
.x45{left:205.721893pt;}
.x1c{left:210.236267pt;}
.x86{left:219.517173pt;}
.x9d{left:231.857067pt;}
.x5d{left:232.894267pt;}
.x19{left:234.330667pt;}
.x22{left:236.145867pt;}
.x98{left:247.326027pt;}
.x8b{left:248.638133pt;}
.x8a{left:250.234133pt;}
.x96{left:251.153067pt;}
.x44{left:252.493253pt;}
.x97{left:253.940267pt;}
.x1d{left:255.056267pt;}
.x85{left:256.479733pt;}
.x1a{left:259.488133pt;}
.x23{left:261.303333pt;}
.x8c{left:269.926133pt;}
.x59{left:274.462267pt;}
.x6b{left:276.290000pt;}
.x33{left:278.392773pt;}
.x32{left:281.212133pt;}
.x54{left:284.854267pt;}
.x34{left:292.103653pt;}
.x6c{left:301.447467pt;}
.x31{left:303.938533pt;}
.x2f{left:307.678667pt;}
.x1b{left:311.756267pt;}
.x35{left:312.771813pt;}
.x24{left:314.726667pt;}
.x6f{left:322.086133pt;}
.x70{left:323.351093pt;}
.x71{left:324.744693pt;}
.x72{left:325.688053pt;}
.x73{left:326.792213pt;}
.x8d{left:328.834133pt;}
.x74{left:334.371253pt;}
.x75{left:337.212053pt;}
.x25{left:339.884133pt;}
.x2e{left:347.578667pt;}
.x30{left:348.514667pt;}
.x37{left:357.656453pt;}
.xaf{left:359.055067pt;}
.x8e{left:367.438133pt;}
.x11{left:371.644172pt;}
.x10{left:373.231422pt;}
.x7{left:374.153059pt;}
.x77{left:380.628053pt;}
.xab{left:384.854667pt;}
.x2d{left:387.106667pt;}
.xf{left:389.290339pt;}
.x78{left:395.153653pt;}
.x76{left:398.777013pt;}
.x7a{left:403.354453pt;}
.x3{left:404.408000pt;}
.x79{left:412.198453pt;}
.x6d{left:418.970933pt;}
.x38{left:427.733093pt;}
.x17{left:433.050652pt;}
.x15{left:434.532267pt;}
.x36{left:440.875813pt;}
.x6e{left:444.128400pt;}
.xa8{left:445.349707pt;}
.x4c{left:448.822580pt;}
.x16{left:449.762739pt;}
.xa2{left:456.209067pt;}
.x3c{left:458.724613pt;}
.x69{left:459.803200pt;}
.xa7{left:462.126507pt;}
.x9b{left:463.205387pt;}
.x9a{left:465.402987pt;}
.x63{left:466.942000pt;}
.x7b{left:468.231893pt;}
.x8f{left:470.326133pt;}
.x39{left:471.245573pt;}
.x81{left:474.685333pt;}
.x99{left:478.963787pt;}
.x5f{left:489.790000pt;}
.x7c{left:491.590773pt;}
.x7f{left:497.744053pt;}
.xa3{left:499.710827pt;}
.x7e{left:504.218933pt;}
.x5e{left:505.498000pt;}
.x80{left:506.416533pt;}
.x7d{left:508.635573pt;}
.x3a{left:511.327653pt;}
.x62{left:517.390000pt;}
.x3d{left:519.206853pt;}
.x60{left:523.102000pt;}
.x2b{left:530.015333pt;}
.x6a{left:534.144000pt;}
.xae{left:535.172306pt;}
.x2a{left:536.327333pt;}
.x4e{left:538.834267pt;}
.x61{left:540.706000pt;}
.xa4{left:547.286187pt;}
.x4f{left:555.382267pt;}
.x3b{left:558.474213pt;}
.x2c{left:561.155333pt;}
.x40{left:570.116133pt;}
.x4d{left:571.486267pt;}
.x82{left:572.387413pt;}
.x50{left:578.026267pt;}
.x9c{left:580.900267pt;}
.x3e{left:582.701413pt;}
.x51{left:585.430267pt;}
.x92{left:586.342133pt;}
.x90{left:590.722133pt;}
.x3f{left:592.799653pt;}
.x83{left:595.424693pt;}
.x84{left:596.368053pt;}
.x29{left:597.647333pt;}
.x41{left:599.799813pt;}
.x91{left:607.966133pt;}
.x1e{left:611.900533pt;}
.xad{left:613.486400pt;}
.x42{left:615.161573pt;}
.xc{left:616.184933pt;}
.x43{left:618.163173pt;}
.x52{left:619.834267pt;}
.x53{left:630.718267pt;}
.xa5{left:634.579147pt;}
.x68{left:672.373067pt;}
.xa6{left:678.627627pt;}
.xa9{left:685.545067pt;}
}




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