
    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_8c526c2239fd5817d599e702.woff')format("woff");}.ff1{font-family:ff1;line-height:0.970000;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_653cf5c408917d58b1423419.woff')format("woff");}.ff2{font-family:ff2;line-height:1.007000;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_2b807c116f6ba63896ae01a0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_8d4a71a5b1c6c8db66aa360a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.952148;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_d82011df6ec4e0d4c5dc7b84.woff')format("woff");}.ff5{font-family:ff5;line-height:1.007000;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_ad528d7f5c4f48032efb795d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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_cd5c978d31d60d66c9f015a8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_4ffa3e59f6d51a39ee641b75.woff')format("woff");}.ff8{font-family:ff8;line-height:0.918945;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_0a5f06984ab75296665747e7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.919434;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_c7cec71c7ef9c201ec75cda4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.916504;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_d275bd3d61c25566f5f2c01a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5fd6439dda4478473f7ad5c0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_c4f4a95332c647d587ebbff7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.942000;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_a9f6abf49d69a6bad051b652.woff')format("woff");}.ffe{font-family:ffe;line-height:0.757812;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_0c5d2b10f5cba8289ac4ef95.woff')format("woff");}.fff{font-family:fff;line-height:0.942000;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_44a588bc1926449aae1907aa.woff')format("woff");}.ff10{font-family:ff10;line-height:0.958000;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_0c5d2b10f5cba8289ac4ef95.woff')format("woff");}.ff11{font-family:ff11;line-height:0.942000;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_862c614f72353486cc0c5571.woff')format("woff");}.ff12{font-family:ff12;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043412,0.246202,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-44.719200px;}
.v5{vertical-align:-7.219200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.607600px;}
.v4{vertical-align:6.855000px;}
.v1{vertical-align:23.976000px;}
.v2{vertical-align:37.500000px;}
.v7{vertical-align:75.000000px;}
.lse{letter-spacing:-5.643000px;}
.ls20{letter-spacing:-2.340000px;}
.ls13{letter-spacing:-1.653000px;}
.ls21{letter-spacing:-1.254000px;}
.ls16{letter-spacing:-1.083000px;}
.ls1a{letter-spacing:-1.071000px;}
.ls10{letter-spacing:-0.969000px;}
.lsa{letter-spacing:-0.912000px;}
.ls7{letter-spacing:-0.855000px;}
.lsd{letter-spacing:-0.741000px;}
.ls2{letter-spacing:-0.693000px;}
.lsf{letter-spacing:-0.684000px;}
.ls1c{letter-spacing:-0.630000px;}
.lsc{letter-spacing:-0.627000px;}
.ls9{letter-spacing:-0.570000px;}
.ls19{letter-spacing:-0.567000px;}
.ls4{letter-spacing:-0.513000px;}
.ls15{letter-spacing:-0.456000px;}
.ls18{letter-spacing:-0.441000px;}
.ls12{letter-spacing:-0.399000px;}
.ls14{letter-spacing:-0.342000px;}
.ls1b{letter-spacing:-0.315000px;}
.ls8{letter-spacing:-0.285000px;}
.ls1d{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.228000px;}
.ls5{letter-spacing:-0.171000px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012600px;}
.ls11{letter-spacing:0.285000px;}
.ls1f{letter-spacing:0.300000px;}
.ls1e{letter-spacing:0.378000px;}
.ls17{letter-spacing:3.997800px;}
.ls6{letter-spacing:135.008400px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(44,101,176),0 0.015em rgb(44,101,176),0.015em 0 rgb(44,101,176),0 -0.015em  rgb(44,101,176);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(44,101,176);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsad{word-spacing:-14.679000px;}
.wsac{word-spacing:-13.734000px;}
.wsae{word-spacing:-13.620000px;}
.ws10d{word-spacing:-13.053000px;}
.ws62{word-spacing:-12.939000px;}
.wsf4{word-spacing:-12.825000px;}
.ws0{word-spacing:-12.726000px;}
.wsdc{word-spacing:-12.654000px;}
.wsda{word-spacing:-12.483000px;}
.ws6e{word-spacing:-12.426000px;}
.ws5f{word-spacing:-12.369000px;}
.ws9a{word-spacing:-12.312000px;}
.ws64{word-spacing:-12.255000px;}
.wsdb{word-spacing:-12.141000px;}
.wsf5{word-spacing:-11.970000px;}
.ws94{word-spacing:-11.913000px;}
.ws10e{word-spacing:-11.400000px;}
.ws1{word-spacing:-8.689032px;}
.ws1e{word-spacing:-7.938000px;}
.ws63{word-spacing:-7.296000px;}
.wsbb{word-spacing:-5.733000px;}
.wsc1{word-spacing:-5.292000px;}
.ws46{word-spacing:-4.473000px;}
.ws41{word-spacing:-2.898000px;}
.ws2e{word-spacing:-2.394000px;}
.wsf2{word-spacing:-2.337000px;}
.ws15{word-spacing:-2.331000px;}
.ws116{word-spacing:-2.280000px;}
.ws115{word-spacing:-2.223000px;}
.wse3{word-spacing:-2.109000px;}
.wse0{word-spacing:-2.079000px;}
.ws65{word-spacing:-2.052000px;}
.ws11b{word-spacing:-1.824000px;}
.wsf3{word-spacing:-1.767000px;}
.ws3f{word-spacing:-1.764000px;}
.ws30{word-spacing:-1.575000px;}
.wsf7{word-spacing:-1.368000px;}
.wsfc{word-spacing:-1.311000px;}
.wsfd{word-spacing:-1.140000px;}
.ws109{word-spacing:-1.083000px;}
.ws3e{word-spacing:-1.071000px;}
.ws2b{word-spacing:-0.882000px;}
.ws113{word-spacing:-0.798000px;}
.wsd8{word-spacing:-0.693000px;}
.ws13{word-spacing:-0.630000px;}
.ws11c{word-spacing:-0.627000px;}
.wsf0{word-spacing:-0.570000px;}
.wsef{word-spacing:-0.513000px;}
.ws1f{word-spacing:-0.504000px;}
.wsfe{word-spacing:-0.399000px;}
.ws3d{word-spacing:-0.378000px;}
.ws77{word-spacing:-0.285000px;}
.ws104{word-spacing:-0.228000px;}
.ws103{word-spacing:-0.114000px;}
.ws3{word-spacing:-0.057000px;}
.ws2{word-spacing:0.000000px;}
.ws4a{word-spacing:0.171000px;}
.ws6a{word-spacing:0.228000px;}
.wsd5{word-spacing:0.252000px;}
.ws67{word-spacing:0.285000px;}
.ws25{word-spacing:0.315000px;}
.ws8f{word-spacing:0.342000px;}
.ws4d{word-spacing:0.378000px;}
.ws78{word-spacing:0.399000px;}
.ws32{word-spacing:0.441000px;}
.ws97{word-spacing:0.456000px;}
.ws49{word-spacing:0.513000px;}
.ws68{word-spacing:0.570000px;}
.ws6b{word-spacing:0.627000px;}
.ws7a{word-spacing:0.684000px;}
.ws18{word-spacing:0.693000px;}
.ws6c{word-spacing:0.741000px;}
.wse6{word-spacing:0.798000px;}
.ws66{word-spacing:0.855000px;}
.wsc2{word-spacing:0.882000px;}
.ws69{word-spacing:0.912000px;}
.ws76{word-spacing:0.969000px;}
.ws102{word-spacing:1.026000px;}
.wsca{word-spacing:1.071000px;}
.wsa9{word-spacing:1.083000px;}
.ws36{word-spacing:1.134000px;}
.wsf8{word-spacing:1.140000px;}
.ws106{word-spacing:1.254000px;}
.wsf9{word-spacing:1.311000px;}
.wsfa{word-spacing:1.425000px;}
.ws11a{word-spacing:1.482000px;}
.ws105{word-spacing:1.539000px;}
.ws79{word-spacing:1.653000px;}
.ws38{word-spacing:1.764000px;}
.ws111{word-spacing:1.881000px;}
.wsbd{word-spacing:1.890000px;}
.wse8{word-spacing:1.938000px;}
.wse1{word-spacing:2.109000px;}
.ws114{word-spacing:2.280000px;}
.ws54{word-spacing:2.331000px;}
.ws1c{word-spacing:2.337000px;}
.wsd9{word-spacing:2.340000px;}
.wsb6{word-spacing:2.394000px;}
.wse9{word-spacing:2.451000px;}
.ws112{word-spacing:2.508000px;}
.wse7{word-spacing:2.622000px;}
.ws40{word-spacing:2.646000px;}
.wsdd{word-spacing:2.709000px;}
.wsf1{word-spacing:2.793000px;}
.ws107{word-spacing:2.850000px;}
.ws3c{word-spacing:3.024000px;}
.wsed{word-spacing:3.192000px;}
.wseb{word-spacing:3.249000px;}
.wsec{word-spacing:3.306000px;}
.wsd7{word-spacing:3.402000px;}
.ws2d{word-spacing:3.465000px;}
.ws17{word-spacing:3.654000px;}
.wsf6{word-spacing:3.705000px;}
.wsee{word-spacing:3.762000px;}
.ws37{word-spacing:3.780000px;}
.ws10f{word-spacing:3.819000px;}
.ws1a{word-spacing:3.843000px;}
.ws110{word-spacing:3.876000px;}
.wse2{word-spacing:3.933000px;}
.wsb9{word-spacing:3.969000px;}
.wsc3{word-spacing:4.032000px;}
.ws16{word-spacing:4.095000px;}
.ws11d{word-spacing:4.104000px;}
.ws4c{word-spacing:4.158000px;}
.wse5{word-spacing:4.161000px;}
.wsd3{word-spacing:4.284000px;}
.ws11e{word-spacing:4.332000px;}
.ws119{word-spacing:4.503000px;}
.wsb7{word-spacing:4.914000px;}
.ws42{word-spacing:4.977000px;}
.ws108{word-spacing:5.073000px;}
.ws53{word-spacing:5.292000px;}
.ws117{word-spacing:5.301000px;}
.ws8{word-spacing:5.481000px;}
.ws31{word-spacing:5.544000px;}
.wsea{word-spacing:5.586000px;}
.ws2c{word-spacing:5.607000px;}
.ws26{word-spacing:5.796000px;}
.ws118{word-spacing:5.928000px;}
.ws45{word-spacing:5.985000px;}
.ws48{word-spacing:6.237000px;}
.ws19{word-spacing:6.363000px;}
.ws10a{word-spacing:6.384000px;}
.ws52{word-spacing:6.426000px;}
.wsfb{word-spacing:6.555000px;}
.ws39{word-spacing:6.678000px;}
.ws14{word-spacing:6.867000px;}
.ws9{word-spacing:6.930000px;}
.ws4b{word-spacing:6.993000px;}
.wsb3{word-spacing:7.056000px;}
.ws23{word-spacing:7.245000px;}
.ws1b{word-spacing:7.467000px;}
.wse4{word-spacing:7.524000px;}
.wse{word-spacing:8.064000px;}
.ws11{word-spacing:8.127000px;}
.ws10b{word-spacing:8.208000px;}
.wsd1{word-spacing:8.253000px;}
.ws6{word-spacing:8.316000px;}
.ws10c{word-spacing:8.550000px;}
.wsc4{word-spacing:8.631000px;}
.wsc5{word-spacing:8.694000px;}
.ws47{word-spacing:8.757000px;}
.wsff{word-spacing:8.778000px;}
.wsf{word-spacing:8.820000px;}
.ws101{word-spacing:8.835000px;}
.ws10{word-spacing:8.883000px;}
.ws7{word-spacing:9.072000px;}
.ws33{word-spacing:9.261000px;}
.wsd0{word-spacing:9.702000px;}
.ws100{word-spacing:9.747000px;}
.ws28{word-spacing:9.765000px;}
.wsd{word-spacing:9.828000px;}
.ws43{word-spacing:9.891000px;}
.wsb8{word-spacing:10.080000px;}
.wsb1{word-spacing:10.269000px;}
.ws50{word-spacing:10.395000px;}
.wsdf{word-spacing:10.458000px;}
.wsbf{word-spacing:10.521000px;}
.ws4e{word-spacing:10.584000px;}
.ws5b{word-spacing:11.466000px;}
.wscb{word-spacing:12.285000px;}
.wscc{word-spacing:12.411000px;}
.wsc6{word-spacing:12.726000px;}
.wsc7{word-spacing:12.852000px;}
.wsb{word-spacing:13.104000px;}
.wsb5{word-spacing:13.167000px;}
.ws3b{word-spacing:13.356000px;}
.ws24{word-spacing:13.860000px;}
.wsa{word-spacing:13.923000px;}
.wsb4{word-spacing:13.986000px;}
.ws51{word-spacing:14.994000px;}
.ws44{word-spacing:15.687000px;}
.wsd4{word-spacing:16.443000px;}
.ws35{word-spacing:17.640000px;}
.ws27{word-spacing:17.892000px;}
.wsd6{word-spacing:18.081000px;}
.wsb2{word-spacing:18.207000px;}
.wsbe{word-spacing:18.585000px;}
.ws12{word-spacing:18.837000px;}
.wsde{word-spacing:18.963000px;}
.ws2f{word-spacing:19.593000px;}
.wsd2{word-spacing:19.656000px;}
.wsc{word-spacing:19.908000px;}
.ws56{word-spacing:20.223000px;}
.wsce{word-spacing:20.412000px;}
.ws29{word-spacing:20.853000px;}
.wscd{word-spacing:21.231000px;}
.ws57{word-spacing:21.798000px;}
.ws4f{word-spacing:22.176000px;}
.ws55{word-spacing:22.491000px;}
.wsba{word-spacing:22.806000px;}
.ws2a{word-spacing:24.381000px;}
.wsc0{word-spacing:25.515000px;}
.wscf{word-spacing:27.027000px;}
.ws5a{word-spacing:27.594000px;}
.ws21{word-spacing:27.657000px;}
.ws59{word-spacing:30.744000px;}
.ws5d{word-spacing:30.996000px;}
.ws5c{word-spacing:31.185000px;}
.ws34{word-spacing:31.248000px;}
.wsbc{word-spacing:31.311000px;}
.ws4{word-spacing:31.815000px;}
.ws3a{word-spacing:31.941000px;}
.ws1d{word-spacing:34.650000px;}
.ws58{word-spacing:35.595000px;}
.wsc9{word-spacing:35.658000px;}
.wsc8{word-spacing:36.540000px;}
.ws5e{word-spacing:41.706000px;}
.ws22{word-spacing:47.061000px;}
.ws20{word-spacing:49.896000px;}
.wsaf{word-spacing:85.589400px;}
.ws81{word-spacing:106.902000px;}
.ws7c{word-spacing:106.962600px;}
.ws8b{word-spacing:108.628200px;}
.ws5{word-spacing:119.007000px;}
.ws7b{word-spacing:120.073200px;}
.wsb0{word-spacing:132.064200px;}
.ws8d{word-spacing:133.223400px;}
.ws93{word-spacing:136.112400px;}
.wsa7{word-spacing:148.245000px;}
.ws7f{word-spacing:165.213600px;}
.ws9d{word-spacing:174.022800px;}
.wsa8{word-spacing:186.651000px;}
.ws86{word-spacing:215.444400px;}
.wsab{word-spacing:219.037800px;}
.wsa6{word-spacing:228.726600px;}
.wsa0{word-spacing:229.483200px;}
.ws9f{word-spacing:232.332600px;}
.ws95{word-spacing:233.097000px;}
.wsaa{word-spacing:233.244000px;}
.ws75{word-spacing:240.325200px;}
.ws85{word-spacing:241.009200px;}
.ws72{word-spacing:242.835600px;}
.ws9b{word-spacing:243.322200px;}
.ws99{word-spacing:243.608400px;}
.ws74{word-spacing:246.397200px;}
.wsa3{word-spacing:260.861400px;}
.wsa4{word-spacing:263.581800px;}
.ws8e{word-spacing:263.695200px;}
.ws89{word-spacing:263.751600px;}
.ws98{word-spacing:271.722000px;}
.ws90{word-spacing:274.393200px;}
.ws9e{word-spacing:275.025600px;}
.wsa1{word-spacing:275.751600px;}
.ws92{word-spacing:279.210000px;}
.wsa2{word-spacing:286.722600px;}
.ws83{word-spacing:326.997000px;}
.ws6d{word-spacing:328.366200px;}
.ws8c{word-spacing:328.706400px;}
.ws80{word-spacing:333.411000px;}
.ws87{word-spacing:335.489400px;}
.ws73{word-spacing:349.968000px;}
.ws96{word-spacing:358.338000px;}
.wsa5{word-spacing:360.456000px;}
.ws7e{word-spacing:369.093600px;}
.ws61{word-spacing:389.996400px;}
.ws6f{word-spacing:396.310200px;}
.ws88{word-spacing:396.617400px;}
.ws70{word-spacing:396.936000px;}
.ws71{word-spacing:396.936600px;}
.ws91{word-spacing:401.151600px;}
.ws60{word-spacing:401.174400px;}
.ws9c{word-spacing:401.220000px;}
.ws7d{word-spacing:401.801400px;}
.ws84{word-spacing:403.086600px;}
.ws82{word-spacing:684.662400px;}
.ws8a{word-spacing:801.181800px;}
._b{margin-left:-293.127300px;}
._c{margin-left:-13.824295px;}
._2e{margin-left:-8.151000px;}
._2{margin-left:-6.391800px;}
._5{margin-left:-4.536900px;}
._1{margin-left:-2.730300px;}
._0{margin-left:-1.145700px;}
._3{width:1.026000px;}
._8{width:2.468100px;}
._7{width:4.047000px;}
._6{width:5.107200px;}
._9{width:6.646200px;}
._a{width:7.774800px;}
._99{width:8.896500px;}
._95{width:13.159500px;}
._4{width:14.768700px;}
._97{width:18.936000px;}
._96{width:20.425200px;}
._94{width:30.834300px;}
._27{width:63.949500px;}
._3f{width:89.080800px;}
._45{width:90.819000px;}
._8e{width:98.811000px;}
._92{width:100.236000px;}
._10{width:113.289300px;}
._3e{width:116.025600px;}
._30{width:117.793800px;}
._33{width:127.967400px;}
._83{width:131.635800px;}
._47{width:138.925200px;}
._4a{width:143.656800px;}
._91{width:147.355500px;}
._58{width:149.780700px;}
._98{width:154.565700px;}
._46{width:169.817100px;}
._63{width:171.929400px;}
._86{width:173.213400px;}
._5d{width:174.701700px;}
._3d{width:177.012600px;}
._5b{width:179.140200px;}
._79{width:181.006800px;}
._40{width:184.721100px;}
._77{width:186.090600px;}
._5e{width:188.248800px;}
._78{width:190.327800px;}
._41{width:197.722800px;}
._73{width:202.875000px;}
._61{width:204.304200px;}
._85{width:207.025500px;}
._7d{width:209.228700px;}
._88{width:212.553900px;}
._89{width:213.729900px;}
._55{width:217.416300px;}
._7c{width:220.658400px;}
._32{width:222.230400px;}
._81{width:223.264200px;}
._43{width:224.740800px;}
._42{width:226.633500px;}
._3b{width:228.170400px;}
._8d{width:229.525200px;}
._31{width:230.643300px;}
._90{width:232.722300px;}
._39{width:234.606300px;}
._68{width:236.921400px;}
._50{width:238.308000px;}
._2a{width:240.296400px;}
._36{width:242.209200px;}
._2b{width:244.116600px;}
._2c{width:245.195400px;}
._37{width:246.365100px;}
._35{width:247.544700px;}
._51{width:248.796000px;}
._82{width:249.801300px;}
._7a{width:250.884000px;}
._6c{width:252.039600px;}
._3a{width:253.251600px;}
._5c{width:254.645400px;}
._62{width:257.028600px;}
._52{width:259.849200px;}
._7f{width:260.998200px;}
._57{width:263.273400px;}
._71{width:265.172400px;}
._28{width:268.252800px;}
._4c{width:269.880300px;}
._84{width:271.236000px;}
._74{width:272.780400px;}
._66{width:274.762500px;}
._59{width:281.171700px;}
._4d{width:282.453600px;}
._5a{width:285.700200px;}
._6e{width:287.505600px;}
._60{width:288.871500px;}
._f{width:292.432500px;}
._8f{width:293.974800px;}
._56{width:295.280700px;}
._4e{width:297.048300px;}
._44{width:302.428800px;}
._7b{width:305.029200px;}
._38{width:307.008600px;}
._8c{width:312.914100px;}
._5f{width:316.775400px;}
._75{width:318.346800px;}
._8a{width:323.891700px;}
._2d{width:326.337300px;}
._4f{width:327.634200px;}
._87{width:329.665200px;}
._6b{width:333.589200px;}
._48{width:335.038500px;}
._6f{width:336.257100px;}
._64{width:339.239400px;}
._67{width:345.708600px;}
._80{width:347.185500px;}
._72{width:348.204600px;}
._34{width:350.124000px;}
._6d{width:353.574000px;}
._4b{width:357.661800px;}
._70{width:360.684000px;}
._54{width:365.016600px;}
._8b{width:369.817200px;}
._53{width:381.659400px;}
._29{width:384.350400px;}
._93{width:401.175000px;}
._7e{width:424.833600px;}
._65{width:443.547600px;}
._1a{width:476.308500px;}
._15{width:488.193900px;}
._19{width:489.988800px;}
._14{width:516.465000px;}
._e{width:552.299400px;}
._20{width:553.505100px;}
._18{width:554.543700px;}
._1f{width:568.162800px;}
._23{width:576.374100px;}
._17{width:581.272200px;}
._22{width:590.278200px;}
._1e{width:600.280800px;}
._2f{width:613.730700px;}
._1c{width:614.986800px;}
._1b{width:628.039800px;}
._12{width:631.920300px;}
._6a{width:642.963000px;}
._11{width:645.825000px;}
._25{width:649.584000px;}
._69{width:654.417300px;}
._24{width:662.868600px;}
._16{width:671.473200px;}
._13{width:685.153800px;}
._21{width:698.833800px;}
._1d{width:702.368400px;}
._3c{width:710.657100px;}
._76{width:717.514800px;}
._49{width:758.416500px;}
._d{width:1704.313800px;}
._26{width:1708.872000px;}
.fc4{color:rgb(123,127,132);}
.fc3{color:transparent;}
.fc2{color:rgb(46,117,170);}
.fc1{color:rgb(44,101,176);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:41.976000px;}
.fs7{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs6{font-size:67.018160px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:52.724250px;}
.y3f{bottom:53.780100px;}
.y40{bottom:56.705700px;}
.y5{bottom:79.099950px;}
.y6a{bottom:122.878950px;}
.y22f{bottom:124.695600px;}
.y237{bottom:125.173950px;}
.y265{bottom:135.499650px;}
.y22e{bottom:144.945600px;}
.y236{bottom:145.423950px;}
.y295{bottom:150.440400px;}
.y69{bottom:150.558750px;}
.y264{bottom:152.599650px;}
.y216{bottom:153.371250px;}
.yf7{bottom:157.682850px;}
.y22d{bottom:165.195600px;}
.y235{bottom:165.673950px;}
.y19{bottom:166.520250px;}
.yf4{bottom:167.057850px;}
.y294{bottom:167.540400px;}
.y15e{bottom:167.543250px;}
.y215{bottom:172.121250px;}
.y263{bottom:174.199650px;}
.yf3{bottom:176.432850px;}
.y3e{bottom:177.951300px;}
.y134{bottom:179.074050px;}
.yb9{bottom:180.573000px;}
.y68{bottom:184.308750px;}
.y293{bottom:184.640400px;}
.y22c{bottom:185.445600px;}
.yf5{bottom:185.807850px;}
.y234{bottom:185.923950px;}
.y15d{bottom:186.293250px;}
.y18{bottom:186.770250px;}
.ybb{bottom:189.948000px;}
.y214{bottom:190.871250px;}
.y262{bottom:191.299650px;}
.yf6{bottom:195.182850px;}
.y1b4{bottom:197.122200px;}
.y3d{bottom:198.201300px;}
.yb8{bottom:199.323000px;}
.y133{bottom:201.433800px;}
.y22b{bottom:205.695600px;}
.y233{bottom:206.173950px;}
.y292{bottom:206.240400px;}
.y17{bottom:207.020100px;}
.y15c{bottom:208.652850px;}
.yba{bottom:208.698000px;}
.y213{bottom:209.621250px;}
.yb4{bottom:210.502800px;}
.y261{bottom:212.899650px;}
.y1b1{bottom:215.872200px;}
.y67{bottom:216.558750px;}
.yf2{bottom:217.542600px;}
.yb7{bottom:218.073000px;}
.y3c{bottom:218.451300px;}
.yb3{bottom:219.877800px;}
.y132{bottom:220.183800px;}
.y291{bottom:223.340400px;}
.y1b0{bottom:225.247200px;}
.y22a{bottom:225.945600px;}
.y232{bottom:226.423950px;}
.yf1{bottom:226.917600px;}
.y16{bottom:227.270100px;}
.y15b{bottom:227.402850px;}
.y212{bottom:228.371250px;}
.y260{bottom:234.499650px;}
.y1b3{bottom:234.622200px;}
.y3b{bottom:238.701300px;}
.yb6{bottom:240.432600px;}
.y129{bottom:240.738450px;}
.y20c{bottom:241.356000px;}
.y130{bottom:242.543250px;}
.y290{bottom:244.940400px;}
.y15a{bottom:246.152850px;}
.y229{bottom:246.195600px;}
.y231{bottom:246.673950px;}
.y66{bottom:247.308750px;}
.y15{bottom:247.520100px;}
.y183{bottom:249.762450px;}
.y128{bottom:250.113450px;}
.y20b{bottom:250.731000px;}
.y25f{bottom:251.599650px;}
.y12f{bottom:251.918250px;}
.y1b2{bottom:253.372200px;}
.y156{bottom:255.527850px;}
.yf0{bottom:258.652200px;}
.y3a{bottom:258.951300px;}
.yb5{bottom:259.182600px;}
.y131{bottom:261.293250px;}
.y28f{bottom:262.040400px;}
.y155{bottom:264.902850px;}
.y228{bottom:266.445600px;}
.y230{bottom:266.923950px;}
.y14{bottom:267.770100px;}
.yee{bottom:268.027200px;}
.y182{bottom:268.512450px;}
.y211{bottom:269.481000px;}
.y1d6{bottom:270.668250px;}
.y25e{bottom:273.199650px;}
.y65{bottom:275.058750px;}
.y1af{bottom:275.731650px;}
.yed{bottom:277.402200px;}
.y39{bottom:279.201300px;}
.y1d5{bottom:280.043250px;}
.yb2{bottom:281.542200px;}
.y28e{bottom:283.640400px;}
.y12e{bottom:283.652850px;}
.y227{bottom:286.695600px;}
.y181{bottom:287.262450px;}
.y13{bottom:288.020100px;}
.y1d7{bottom:289.418250px;}
.y25d{bottom:290.299650px;}
.yb1{bottom:290.917200px;}
.y210{bottom:291.840600px;}
.y12c{bottom:293.027850px;}
.y1ae{bottom:294.481650px;}
.yef{bottom:296.152200px;}
.y1d4{bottom:298.793250px;}
.y38{bottom:299.451300px;}
.y28d{bottom:300.740400px;}
.y64{bottom:302.058750px;}
.y12a{bottom:302.402850px;}
.y1ab{bottom:303.856650px;}
.y180{bottom:306.012450px;}
.y226{bottom:306.945600px;}
.y12{bottom:308.270100px;}
.y20e{bottom:310.590600px;}
.y12b{bottom:311.777850px;}
.y25c{bottom:311.899650px;}
.y1ad{bottom:313.231650px;}
.yec{bottom:318.511800px;}
.y37{bottom:319.701300px;}
.y12d{bottom:321.152850px;}
.y2bc{bottom:321.372000px;}
.y28c{bottom:322.340400px;}
.yb0{bottom:322.651800px;}
.y158{bottom:324.762450px;}
.y225{bottom:327.195600px;}
.yea{bottom:327.886800px;}
.y11{bottom:328.520100px;}
.y25b{bottom:328.999650px;}
.y20d{bottom:329.340600px;}
.y1ac{bottom:331.981650px;}
.y63{bottom:332.058750px;}
.yad{bottom:333.831600px;}
.y159{bottom:334.137450px;}
.ye9{bottom:337.261800px;}
.y17e{bottom:337.747050px;}
.y2bb{bottom:338.472000px;}
.y28b{bottom:339.440400px;}
.y1d3{bottom:339.902850px;}
.y36{bottom:339.951300px;}
.yaf{bottom:341.401800px;}
.yac{bottom:343.206600px;}
.y127{bottom:343.512450px;}
.y17d{bottom:347.122050px;}
.y224{bottom:347.445600px;}
.y20f{bottom:348.090600px;}
.y10{bottom:348.770100px;}
.y25a{bottom:350.599650px;}
.y126{bottom:352.887450px;}
.y1aa{bottom:354.341250px;}
.yeb{bottom:356.011800px;}
.y28a{bottom:356.540400px;}
.y1d2{bottom:358.652850px;}
.y2ba{bottom:360.072000px;}
.y35{bottom:360.201300px;}
.y62{bottom:362.058750px;}
.y157{bottom:362.262450px;}
.y1a9{bottom:363.716250px;}
.yae{bottom:363.761400px;}
.y17f{bottom:365.872050px;}
.y223{bottom:367.695600px;}
.yf{bottom:369.020100px;}
.y1ce{bottom:369.832650px;}
.y208{bottom:370.450200px;}
.y259{bottom:372.199650px;}
.y1d1{bottom:377.402850px;}
.y289{bottom:378.140400px;}
.ye8{bottom:378.371400px;}
.y20a{bottom:379.825200px;}
.y34{bottom:380.451300px;}
.y2b9{bottom:381.672000px;}
.y125{bottom:384.622050px;}
.yab{bottom:386.121000px;}
.y222{bottom:387.945600px;}
.y206{bottom:389.200200px;}
.y61{bottom:389.246250px;}
.ye{bottom:389.270250px;}
.y258{bottom:389.299650px;}
.y154{bottom:393.997050px;}
.y288{bottom:395.240400px;}
.y1a7{bottom:395.450850px;}
.ya9{bottom:395.496000px;}
.ye6{bottom:397.121400px;}
.y209{bottom:398.575200px;}
.y60{bottom:398.621250px;}
.y2b8{bottom:398.772000px;}
.y1d0{bottom:399.762450px;}
.y33{bottom:400.701300px;}
.y124{bottom:403.372050px;}
.y1a6{bottom:404.825850px;}
.ya8{bottom:404.871000px;}
.y207{bottom:407.950200px;}
.y221{bottom:408.195600px;}
.y1cd{bottom:409.137450px;}
.yd{bottom:409.520250px;}
.y257{bottom:410.899650px;}
.y1a8{bottom:414.200850px;}
.ye7{bottom:415.871400px;}
.y287{bottom:416.840400px;}
.y1cf{bottom:418.512450px;}
.y2b7{bottom:420.372000px;}
.y32{bottom:420.951300px;}
.y123{bottom:422.122050px;}
.yaa{bottom:423.621000px;}
.y153{bottom:425.731650px;}
.y256{bottom:427.999650px;}
.y220{bottom:428.445600px;}
.yc{bottom:429.770250px;}
.y205{bottom:430.309800px;}
.y1a5{bottom:436.560450px;}
.y2b6{bottom:437.472000px;}
.ye5{bottom:438.231000px;}
.y286{bottom:438.440400px;}
.y5f{bottom:440.242500px;}
.y1cc{bottom:440.872050px;}
.y31{bottom:441.201300px;}
.y202{bottom:441.489600px;}
.y122{bottom:444.481650px;}
.ya7{bottom:445.980600px;}
.ye4{bottom:447.606000px;}
.y21f{bottom:448.695600px;}
.y255{bottom:449.599650px;}
.yb{bottom:450.020250px;}
.y201{bottom:450.864600px;}
.y204{bottom:452.669400px;}
.y11f{bottom:453.856650px;}
.y1a3{bottom:455.310450px;}
.ya5{bottom:455.355600px;}
.y285{bottom:455.540400px;}
.y2b5{bottom:459.072000px;}
.y5e{bottom:459.142500px;}
.y1ca{bottom:459.622050px;}
.y30{bottom:461.451300px;}
.y203{bottom:462.044400px;}
.y121{bottom:463.231650px;}
.ya4{bottom:464.730600px;}
.y254{bottom:466.699650px;}
.y17c{bottom:466.841250px;}
.y21e{bottom:468.945600px;}
.ya{bottom:470.270250px;}
.y11e{bottom:472.606650px;}
.y284{bottom:472.640400px;}
.y1a4{bottom:474.060450px;}
.y2b4{bottom:476.172000px;}
.y1cb{bottom:478.372050px;}
.ye3{bottom:479.340600px;}
.y2f{bottom:481.701300px;}
.y120{bottom:481.981650px;}
.ya6{bottom:483.480600px;}
.y253{bottom:488.299650px;}
.ydf{bottom:488.715600px;}
.y21d{bottom:489.195600px;}
.y17b{bottom:489.200850px;}
.y9{bottom:490.520250px;}
.y200{bottom:493.779000px;}
.y283{bottom:494.240400px;}
.y1a2{bottom:496.420050px;}
.y2b3{bottom:497.772000px;}
.yde{bottom:498.090600px;}
.y1c9{bottom:500.731650px;}
.y2e{bottom:501.951300px;}
.y1c8{bottom:502.536600px;}
.y11d{bottom:504.341250px;}
.y252{bottom:505.399650px;}
.ya3{bottom:505.840200px;}
.y5d{bottom:509.799900px;}
.y8{bottom:510.770250px;}
.y17a{bottom:511.560450px;}
.y1ff{bottom:512.529000px;}
.y2b2{bottom:514.872000px;}
.y7e{bottom:515.724300px;}
.y282{bottom:515.840400px;}
.y1a1{bottom:518.779650px;}
.ye2{bottom:520.450200px;}
.y179{bottom:520.935450px;}
.y1c6{bottom:521.286600px;}
.y2d{bottom:522.201300px;}
.y251{bottom:522.499650px;}
.y11c{bottom:523.091250px;}
.ya1{bottom:524.590200px;}
.y19f{bottom:528.154650px;}
.y5c{bottom:530.049900px;}
.y7{bottom:531.020250px;}
.y1fe{bottom:531.279000px;}
.y150{bottom:532.466250px;}
.y281{bottom:532.940400px;}
.y238{bottom:533.799900px;}
.y117{bottom:534.271050px;}
.y7d{bottom:535.974300px;}
.y2b1{bottom:536.472000px;}
.y19e{bottom:537.529650px;}
.ye0{bottom:539.200200px;}
.y1c7{bottom:540.036600px;}
.y152{bottom:541.841250px;}
.y2c{bottom:542.451300px;}
.ya2{bottom:543.340200px;}
.y116{bottom:543.646050px;}
.y250{bottom:544.099650px;}
.y11b{bottom:545.450850px;}
.y5b{bottom:550.299900px;}
.y1f7{bottom:551.833800px;}
.y178{bottom:552.670050px;}
.y2b0{bottom:553.572000px;}
.y1fd{bottom:553.638600px;}
.y280{bottom:554.540400px;}
.y119{bottom:554.825850px;}
.y7c{bottom:556.224300px;}
.y1a0{bottom:556.279650px;}
.ye1{bottom:557.950200px;}
.y6{bottom:559.774050px;}
.y151{bottom:560.591250px;}
.y24f{bottom:561.199650px;}
.y1f6{bottom:561.208800px;}
.y176{bottom:562.045050px;}
.y2b{bottom:562.701300px;}
.y118{bottom:564.200850px;}
.y9f{bottom:565.699800px;}
.y23b{bottom:567.345150px;}
.y5a{bottom:570.549900px;}
.y2af{bottom:570.672000px;}
.y175{bottom:571.420050px;}
.y27f{bottom:571.640400px;}
.y149{bottom:571.771050px;}
.y1fa{bottom:572.388600px;}
.y1c5{bottom:573.575850px;}
.ya0{bottom:575.074800px;}
.y7b{bottom:576.474300px;}
.y19d{bottom:578.639400px;}
.ydd{bottom:580.309800px;}
.y148{bottom:581.146050px;}
.y1fb{bottom:581.763600px;}
.y24e{bottom:582.799650px;}
.y11a{bottom:582.950850px;}
.y9d{bottom:584.449800px;}
.y23a{bottom:585.345150px;}
.ydc{bottom:589.684800px;}
.y177{bottom:590.170050px;}
.y59{bottom:590.799900px;}
.y1f9{bottom:591.138600px;}
.y2ae{bottom:592.272000px;}
.y27e{bottom:593.240400px;}
.y7a{bottom:596.724300px;}
.y19c{bottom:597.389400px;}
.y24d{bottom:599.899650px;}
.y14f{bottom:601.700850px;}
.y9e{bottom:603.199800px;}
.y114{bottom:605.310450px;}
.y199{bottom:606.764400px;}
.y2ad{bottom:609.372000px;}
.y1f8{bottom:609.888600px;}
.y27d{bottom:610.340400px;}
.y58{bottom:611.049900px;}
.y14b{bottom:611.075850px;}
.y174{bottom:612.529650px;}
.y113{bottom:614.685450px;}
.y197{bottom:616.139400px;}
.y79{bottom:616.974300px;}
.y24c{bottom:616.999650px;}
.y14e{bottom:620.450850px;}
.ydb{bottom:621.419400px;}
.y173{bottom:621.904650px;}
.y25{bottom:622.116150px;}
.y115{bottom:624.060450px;}
.y196{bottom:625.514400px;}
.y9c{bottom:625.559400px;}
.y1fc{bottom:628.638600px;}
.y14a{bottom:629.825850px;}
.yda{bottom:630.794400px;}
.y2ac{bottom:630.972000px;}
.y57{bottom:631.299900px;}
.y27c{bottom:631.940400px;}
.y1c3{bottom:633.435450px;}
.y19b{bottom:634.889400px;}
.y78{bottom:637.224300px;}
.y24b{bottom:638.599650px;}
.y14d{bottom:639.200850px;}
.y1c2{bottom:642.810450px;}
.y198{bottom:644.264400px;}
.y112{bottom:646.420050px;}
.y9b{bottom:647.919000px;}
.y2ab{bottom:648.072000px;}
.y27b{bottom:649.040400px;}
.y1f4{bottom:650.998200px;}
.y56{bottom:651.549900px;}
.y172{bottom:653.639400px;}
.y95{bottom:655.489200px;}
.y24a{bottom:655.699650px;}
.y77{bottom:657.474300px;}
.y14c{bottom:657.950850px;}
.y1f3{bottom:660.373200px;}
.y24{bottom:661.425600px;}
.y1c4{bottom:661.560450px;}
.yd9{bottom:662.529000px;}
.y171{bottom:663.014400px;}
.y111{bottom:665.170050px;}
.y9a{bottom:666.669000px;}
.y2aa{bottom:669.672000px;}
.y1f5{bottom:669.748200px;}
.y27a{bottom:670.640400px;}
.y55{bottom:671.799900px;}
.y19a{bottom:672.389400px;}
.y249{bottom:672.799650px;}
.y93{bottom:674.239200px;}
.y97{bottom:676.044000px;}
.y76{bottom:677.724300px;}
.y23{bottom:680.175750px;}
.y147{bottom:680.310450px;}
.y110{bottom:683.920050px;}
.yd8{bottom:684.888600px;}
.y96{bottom:685.419000px;}
.y2a9{bottom:686.772000px;}
.y279{bottom:687.740400px;}
.y54{bottom:692.049900px;}
.y1f2{bottom:692.107800px;}
.y94{bottom:692.989200px;}
.y248{bottom:694.399650px;}
.y170{bottom:694.749000px;}
.y75{bottom:697.974300px;}
.y22{bottom:698.925750px;}
.y146{bottom:699.060450px;}
.y145{bottom:700.865250px;}
.y10c{bottom:702.670050px;}
.yd7{bottom:703.638600px;}
.y99{bottom:704.169000px;}
.y1bf{bottom:704.475000px;}
.yd3{bottom:705.443250px;}
.y2a8{bottom:708.372000px;}
.y278{bottom:709.340400px;}
.y144{bottom:710.240250px;}
.y1f1{bottom:710.857800px;}
.y247{bottom:711.499650px;}
.y53{bottom:712.299900px;}
.y16e{bottom:713.499000px;}
.y109{bottom:713.849850px;}
.y1bc{bottom:713.850000px;}
.y195{bottom:717.108600px;}
.y21{bottom:717.675750px;}
.y74{bottom:718.224300px;}
.y10f{bottom:721.420050px;}
.y1ed{bottom:722.037600px;}
.yd6{bottom:722.388600px;}
.y16c{bottom:722.874000px;}
.y98{bottom:722.919000px;}
.y108{bottom:723.224850px;}
.y1be{bottom:723.225000px;}
.yd1{bottom:724.193250px;}
.y1c1{bottom:725.029650px;}
.y2a7{bottom:725.471850px;}
.y277{bottom:726.440400px;}
.y192{bottom:726.483600px;}
.y1f0{bottom:729.607800px;}
.y1ec{bottom:731.412600px;}
.y16b{bottom:732.249000px;}
.y52{bottom:732.549900px;}
.y246{bottom:733.099650px;}
.y191{bottom:735.858600px;}
.y20{bottom:736.425750px;}
.y73{bottom:738.474300px;}
.y10e{bottom:740.170050px;}
.y1bd{bottom:741.975000px;}
.yd2{bottom:742.943250px;}
.y1c0{bottom:743.779650px;}
.yd5{bottom:744.748050px;}
.y193{bottom:745.233600px;}
.y90{bottom:745.278600px;}
.y2a6{bottom:747.072000px;}
.y276{bottom:748.040400px;}
.y245{bottom:750.199650px;}
.y16d{bottom:750.999000px;}
.y1ef{bottom:751.967400px;}
.y51{bottom:752.799900px;}
.yd4{bottom:754.123050px;}
.y194{bottom:754.608600px;}
.y92{bottom:754.653600px;}
.y1f{bottom:755.175750px;}
.y72{bottom:758.724300px;}
.y10d{bottom:758.920050px;}
.y143{bottom:762.529650px;}
.y8e{bottom:764.028600px;}
.y275{bottom:765.140400px;}
.y1bb{bottom:766.139250px;}
.y2a5{bottom:768.672000px;}
.y239{bottom:768.957150px;}
.y16f{bottom:769.749000px;}
.y1ee{bottom:770.717400px;}
.y244{bottom:771.799650px;}
.y50{bottom:773.049900px;}
.y91{bottom:773.403600px;}
.y140{bottom:773.709450px;}
.y1e{bottom:773.925600px;}
.y1ba{bottom:775.514250px;}
.y190{bottom:776.968200px;}
.y71{bottom:778.974300px;}
.y10b{bottom:781.279650px;}
.y8f{bottom:782.778600px;}
.y13f{bottom:783.084450px;}
.y142{bottom:784.889250px;}
.y2a4{bottom:785.772000px;}
.yd0{bottom:785.857800px;}
.y274{bottom:786.740400px;}
.y16a{bottom:792.108600px;}
.y1d{bottom:792.675600px;}
.y1ea{bottom:793.077000px;}
.y4f{bottom:793.299900px;}
.y243{bottom:793.399650px;}
.yce{bottom:795.232800px;}
.y18f{bottom:795.718200px;}
.y70{bottom:799.224300px;}
.y10a{bottom:800.029650px;}
.y1e9{bottom:802.452000px;}
.y141{bottom:803.639250px;}
.ycd{bottom:804.607800px;}
.y18d{bottom:805.093200px;}
.y8d{bottom:805.138200px;}
.y1b9{bottom:807.249000px;}
.y2a3{bottom:807.372000px;}
.y273{bottom:808.340400px;}
.y242{bottom:810.499650px;}
.y169{bottom:810.858600px;}
.y1c{bottom:811.425600px;}
.y1eb{bottom:811.827000px;}
.y4e{bottom:813.549900px;}
.y18c{bottom:814.468200px;}
.y8c{bottom:814.513200px;}
.y6f{bottom:819.474300px;}
.y165{bottom:822.038250px;}
.y107{bottom:822.389250px;}
.ycf{bottom:823.357800px;}
.y2a2{bottom:824.471850px;}
.y272{bottom:825.440400px;}
.y13e{bottom:825.999000px;}
.y168{bottom:829.608600px;}
.y1b{bottom:830.175600px;}
.y164{bottom:831.413250px;}
.y241{bottom:832.099800px;}
.y18e{bottom:833.218200px;}
.y4d{bottom:833.799900px;}
.y1e7{bottom:834.186600px;}
.y13d{bottom:835.374000px;}
.y1b8{bottom:837.178650px;}
.y6e{bottom:839.724300px;}
.y1e6{bottom:843.561600px;}
.y105{bottom:844.749000px;}
.ycb{bottom:845.717400px;}
.y2a1{bottom:846.072000px;}
.y8b{bottom:846.247800px;}
.y1b7{bottom:846.553650px;}
.y271{bottom:847.040400px;}
.y240{bottom:849.199800px;}
.y167{bottom:851.968200px;}
.y1e8{bottom:852.936600px;}
.y4c{bottom:854.049900px;}
.y104{bottom:854.124000px;}
.yca{bottom:855.092400px;}
.y8a{bottom:855.622800px;}
.yc8{bottom:856.897200px;}
.y1a{bottom:857.429700px;}
.y6d{bottom:859.974300px;}
.y21b{bottom:861.343200px;}
.y2a0{bottom:863.172000px;}
.y106{bottom:863.499000px;}
.y270{bottom:864.140400px;}
.ycc{bottom:864.467400px;}
.yc7{bottom:866.272200px;}
.y13c{bottom:867.108600px;}
.y166{bottom:870.718200px;}
.y4b{bottom:874.299900px;}
.y189{bottom:874.327650px;}
.y1e5{bottom:875.296200px;}
.y13b{bottom:876.483600px;}
.y23f{bottom:879.303750px;}
.y18b{bottom:883.702650px;}
.y1e3{bottom:884.671200px;}
.y29f{bottom:884.772000px;}
.y26f{bottom:885.740400px;}
.y103{bottom:885.858600px;}
.yc9{bottom:886.827000px;}
.y89{bottom:887.357550px;}
.y6c{bottom:888.728250px;}
.y21c{bottom:889.468200px;}
.y163{bottom:893.077650px;}
.y1e2{bottom:894.046200px;}
.y4a{bottom:894.549900px;}
.y88{bottom:896.732550px;}
.y86{bottom:898.537200px;}
.y29e{bottom:901.872000px;}
.y18a{bottom:902.452650px;}
.y26e{bottom:902.840400px;}
.y85{bottom:907.912200px;}
.y102{bottom:908.218200px;}
.yc5{bottom:909.186600px;}
.y162{bottom:911.827650px;}
.y6b{bottom:912.128250px;}
.y2a{bottom:912.187800px;}
.y1e4{bottom:912.796200px;}
.y49{bottom:914.799900px;}
.yfe{bottom:917.593200px;}
.yc4{bottom:918.561600px;}
.y26d{bottom:919.940400px;}
.y160{bottom:921.202650px;}
.y29d{bottom:923.471850px;}
.y23e{bottom:923.874300px;}
.y100{bottom:926.968200px;}
.yc6{bottom:927.936600px;}
.y87{bottom:928.467000px;}
.y15f{bottom:930.577650px;}
.y29{bottom:931.987800px;}
.y188{bottom:934.187400px;}
.y48{bottom:935.049900px;}
.y1df{bottom:935.155950px;}
.yfc{bottom:936.343200px;}
.y29c{bottom:940.572000px;}
.y26c{bottom:941.540400px;}
.y1e1{bottom:942.726000px;}
.y23d{bottom:944.124300px;}
.yff{bottom:945.718200px;}
.y13a{bottom:949.327650px;}
.yc3{bottom:950.296200px;}
.y187{bottom:952.937400px;}
.y84{bottom:952.959300px;}
.y1dc{bottom:953.905950px;}
.yfd{bottom:955.093200px;}
.y47{bottom:955.299900px;}
.y26b{bottom:958.640400px;}
.y139{bottom:958.702650px;}
.y28{bottom:960.504300px;}
.y1e0{bottom:961.476000px;}
.y29b{bottom:962.172000px;}
.y21a{bottom:962.312400px;}
.y1db{bottom:963.280950px;}
.y101{bottom:964.468200px;}
.y161{bottom:968.077650px;}
.yc1{bottom:969.046200px;}
.y185{bottom:971.687400px;}
.y1de{bottom:972.655950px;}
.y23c{bottom:972.878250px;}
.y46{bottom:975.549900px;}
.y29a{bottom:979.272000px;}
.y26a{bottom:980.240400px;}
.y184{bottom:981.062400px;}
.y83{bottom:984.201750px;}
.yfb{bottom:986.827650px;}
.yc2{bottom:987.796200px;}
.y138{bottom:990.437400px;}
.y1dd{bottom:991.405950px;}
.y219{bottom:994.047000px;}
.y45{bottom:995.799900px;}
.y137{bottom:999.812400px;}
.y299{bottom:1000.872000px;}
.y269{bottom:1001.840400px;}
.y82{bottom:1006.561350px;}
.yfa{bottom:1009.187400px;}
.y27{bottom:1009.742100px;}
.yc0{bottom:1010.155950px;}
.y218{bottom:1012.797000px;}
.y1da{bottom:1013.765400px;}
.y81{bottom:1015.936350px;}
.y44{bottom:1016.049900px;}
.y298{bottom:1017.971850px;}
.yf9{bottom:1018.562400px;}
.y268{bottom:1018.940400px;}
.y1b6{bottom:1020.367200px;}
.ybd{bottom:1021.335600px;}
.y217{bottom:1022.172000px;}
.y1d8{bottom:1023.140400px;}
.y186{bottom:1027.937400px;}
.y1b5{bottom:1029.742200px;}
.ybc{bottom:1030.710600px;}
.y136{bottom:1031.547000px;}
.ybf{bottom:1032.515400px;}
.y43{bottom:1036.299900px;}
.y297{bottom:1039.572000px;}
.y267{bottom:1040.540400px;}
.y135{bottom:1040.922000px;}
.ybe{bottom:1041.890400px;}
.y26{bottom:1042.742100px;}
.yf8{bottom:1050.297000px;}
.y1d9{bottom:1051.265400px;}
.y42{bottom:1056.549900px;}
.y296{bottom:1056.672000px;}
.y266{bottom:1057.640400px;}
.y4{bottom:1086.343500px;}
.y2{bottom:1086.445650px;}
.y3{bottom:1103.443500px;}
.y1{bottom:1103.545650px;}
.y80{bottom:1115.127450px;}
.y41{bottom:1115.185050px;}
.hc{height:36.003000px;}
.h6{height:39.938965px;}
.h7{height:39.966797px;}
.h15{height:40.071000px;}
.hd{height:40.500000px;}
.h13{height:40.641000px;}
.hf{height:40.698000px;}
.h2{height:41.097000px;}
.h1{height:42.750000px;}
.h18{height:45.000000px;}
.h8{height:45.423000px;}
.h4{height:47.250000px;}
.hb{height:48.320093px;}
.h10{height:49.962600px;}
.ha{height:53.778960px;}
.h17{height:54.000000px;}
.h5{height:56.238000px;}
.h3{height:58.271484px;}
.h9{height:77.868000px;}
.h14{height:78.141000px;}
.h16{height:78.141600px;}
.he{height:78.198000px;}
.h11{height:80.250000px;}
.h12{height:117.750000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:54.100950px;}
.x13{left:75.047250px;}
.x3{left:90.354300px;}
.x97{left:95.236650px;}
.x57{left:96.925200px;}
.x5{left:98.858250px;}
.x6{left:100.984200px;}
.x36{left:108.362100px;}
.x4{left:112.818900px;}
.xa6{left:114.165300px;}
.x7{left:142.740750px;}
.xe{left:153.169500px;}
.x8c{left:161.216700px;}
.x65{left:163.914450px;}
.xf{left:166.403400px;}
.xa{left:167.962950px;}
.x70{left:171.028950px;}
.x2a{left:172.464450px;}
.x52{left:176.187900px;}
.x91{left:177.708000px;}
.x11{left:180.446550px;}
.x90{left:181.519800px;}
.x7f{left:183.160800px;}
.x1f{left:186.899400px;}
.x21{left:188.923350px;}
.x80{left:191.283000px;}
.x1{left:192.337800px;}
.x29{left:194.487600px;}
.x3a{left:196.402200px;}
.x23{left:198.199500px;}
.x8e{left:199.263450px;}
.x20{left:200.807250px;}
.x1e{left:201.918900px;}
.x7a{left:203.782200px;}
.x4a{left:206.932500px;}
.x8d{left:208.055850px;}
.x39{left:210.431250px;}
.x47{left:212.112300px;}
.x18{left:214.978800px;}
.x5e{left:217.443900px;}
.x71{left:220.839300px;}
.x37{left:225.008850px;}
.x43{left:227.473800px;}
.x76{left:230.600400px;}
.x9e{left:233.065500px;}
.xa1{left:248.187000px;}
.xa2{left:275.614350px;}
.xa3{left:311.145300px;}
.x5f{left:334.672200px;}
.x2e{left:343.186650px;}
.x31{left:345.473700px;}
.x95{left:346.820250px;}
.x19{left:348.003150px;}
.x6a{left:349.834050px;}
.x28{left:351.672450px;}
.x1c{left:352.684050px;}
.x22{left:353.816700px;}
.x2c{left:355.854900px;}
.x77{left:357.844050px;}
.x2d{left:359.232000px;}
.x98{left:361.119900px;}
.x2b{left:362.708550px;}
.x2f{left:364.540200px;}
.x73{left:365.596050px;}
.x3b{left:366.829050px;}
.x9b{left:367.947600px;}
.x78{left:369.229650px;}
.x4b{left:370.797150px;}
.x46{left:372.329250px;}
.x40{left:374.324550px;}
.x6d{left:375.699000px;}
.x8f{left:376.948200px;}
.x59{left:378.322650px;}
.x45{left:380.123850px;}
.x82{left:381.284700px;}
.x44{left:382.667700px;}
.x17{left:384.378900px;}
.x51{left:386.143800px;}
.x6e{left:387.775800px;}
.x56{left:389.359200px;}
.x5d{left:391.354050px;}
.x7c{left:392.706000px;}
.x89{left:393.862800px;}
.x48{left:395.257050px;}
.x3c{left:397.936500px;}
.x16{left:406.401900px;}
.x49{left:412.335150px;}
.x81{left:420.962850px;}
.x9f{left:469.500000px;}
.xc{left:484.830750px;}
.x99{left:486.546000px;}
.xa0{left:492.035400px;}
.x15{left:502.968750px;}
.x6b{left:504.386700px;}
.x1a{left:506.004000px;}
.x12{left:507.035400px;}
.x86{left:510.964950px;}
.x8a{left:521.046600px;}
.x79{left:522.805500px;}
.x3d{left:523.823400px;}
.x9{left:531.505500px;}
.x3e{left:535.415400px;}
.xa4{left:561.450450px;}
.xb{left:581.957700px;}
.x96{left:596.845050px;}
.x6c{left:601.725300px;}
.x58{left:602.943750px;}
.x67{left:605.202000px;}
.x33{left:606.292500px;}
.x1b{left:611.244300px;}
.x30{left:613.973250px;}
.x92{left:615.397800px;}
.x66{left:617.250450px;}
.x32{left:620.720550px;}
.x3f{left:624.568200px;}
.x54{left:627.317400px;}
.x1d{left:629.961300px;}
.x87{left:631.997850px;}
.x4c{left:633.758700px;}
.x4d{left:635.461800px;}
.x50{left:636.580050px;}
.x9a{left:637.989000px;}
.x83{left:640.084500px;}
.x4e{left:643.391700px;}
.x85{left:645.014850px;}
.x6f{left:647.229750px;}
.x38{left:648.322800px;}
.xa5{left:668.145300px;}
.x2{left:677.125950px;}
.x8{left:705.683550px;}
.x60{left:707.634150px;}
.x62{left:708.980550px;}
.x64{left:709.991850px;}
.x10{left:711.790050px;}
.x63{left:714.103500px;}
.x68{left:715.998450px;}
.x5b{left:718.485150px;}
.x93{left:719.738850px;}
.x25{left:722.432550px;}
.x26{left:725.132700px;}
.x34{left:726.913950px;}
.x5c{left:728.958600px;}
.x9c{left:730.111350px;}
.x5a{left:732.015150px;}
.x14{left:733.566150px;}
.x94{left:734.708250px;}
.x24{left:735.713100px;}
.x27{left:737.551350px;}
.x61{left:738.890700px;}
.x72{left:740.214600px;}
.x88{left:741.430350px;}
.x42{left:743.317650px;}
.x69{left:746.386050px;}
.x75{left:747.766800px;}
.x35{left:749.043750px;}
.x53{left:751.232550px;}
.x41{left:753.762750px;}
.x84{left:755.829450px;}
.x9d{left:757.000350px;}
.x55{left:758.065200px;}
.x7e{left:763.462800px;}
.x7d{left:764.730900px;}
.x7b{left:766.077600px;}
.x74{left:772.489800px;}
.x8b{left:775.914600px;}
.x4f{left:778.150950px;}
@media print{
.v6{vertical-align:-39.750400pt;}
.v5{vertical-align:-6.417067pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.317867pt;}
.v4{vertical-align:6.093333pt;}
.v1{vertical-align:21.312000pt;}
.v2{vertical-align:33.333333pt;}
.v7{vertical-align:66.666667pt;}
.lse{letter-spacing:-5.016000pt;}
.ls20{letter-spacing:-2.080000pt;}
.ls13{letter-spacing:-1.469333pt;}
.ls21{letter-spacing:-1.114667pt;}
.ls16{letter-spacing:-0.962667pt;}
.ls1a{letter-spacing:-0.952000pt;}
.ls10{letter-spacing:-0.861333pt;}
.lsa{letter-spacing:-0.810667pt;}
.ls7{letter-spacing:-0.760000pt;}
.lsd{letter-spacing:-0.658667pt;}
.ls2{letter-spacing:-0.616000pt;}
.lsf{letter-spacing:-0.608000pt;}
.ls1c{letter-spacing:-0.560000pt;}
.lsc{letter-spacing:-0.557333pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls19{letter-spacing:-0.504000pt;}
.ls4{letter-spacing:-0.456000pt;}
.ls15{letter-spacing:-0.405333pt;}
.ls18{letter-spacing:-0.392000pt;}
.ls12{letter-spacing:-0.354667pt;}
.ls14{letter-spacing:-0.304000pt;}
.ls1b{letter-spacing:-0.280000pt;}
.ls8{letter-spacing:-0.253333pt;}
.ls1d{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.202667pt;}
.ls5{letter-spacing:-0.152000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.011200pt;}
.ls11{letter-spacing:0.253333pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls1e{letter-spacing:0.336000pt;}
.ls17{letter-spacing:3.553600pt;}
.ls6{letter-spacing:120.007467pt;}
.wsad{word-spacing:-13.048000pt;}
.wsac{word-spacing:-12.208000pt;}
.wsae{word-spacing:-12.106667pt;}
.ws10d{word-spacing:-11.602667pt;}
.ws62{word-spacing:-11.501333pt;}
.wsf4{word-spacing:-11.400000pt;}
.ws0{word-spacing:-11.312000pt;}
.wsdc{word-spacing:-11.248000pt;}
.wsda{word-spacing:-11.096000pt;}
.ws6e{word-spacing:-11.045333pt;}
.ws5f{word-spacing:-10.994667pt;}
.ws9a{word-spacing:-10.944000pt;}
.ws64{word-spacing:-10.893333pt;}
.wsdb{word-spacing:-10.792000pt;}
.wsf5{word-spacing:-10.640000pt;}
.ws94{word-spacing:-10.589333pt;}
.ws10e{word-spacing:-10.133333pt;}
.ws1{word-spacing:-7.723584pt;}
.ws1e{word-spacing:-7.056000pt;}
.ws63{word-spacing:-6.485333pt;}
.wsbb{word-spacing:-5.096000pt;}
.wsc1{word-spacing:-4.704000pt;}
.ws46{word-spacing:-3.976000pt;}
.ws41{word-spacing:-2.576000pt;}
.ws2e{word-spacing:-2.128000pt;}
.wsf2{word-spacing:-2.077333pt;}
.ws15{word-spacing:-2.072000pt;}
.ws116{word-spacing:-2.026667pt;}
.ws115{word-spacing:-1.976000pt;}
.wse3{word-spacing:-1.874667pt;}
.wse0{word-spacing:-1.848000pt;}
.ws65{word-spacing:-1.824000pt;}
.ws11b{word-spacing:-1.621333pt;}
.wsf3{word-spacing:-1.570667pt;}
.ws3f{word-spacing:-1.568000pt;}
.ws30{word-spacing:-1.400000pt;}
.wsf7{word-spacing:-1.216000pt;}
.wsfc{word-spacing:-1.165333pt;}
.wsfd{word-spacing:-1.013333pt;}
.ws109{word-spacing:-0.962667pt;}
.ws3e{word-spacing:-0.952000pt;}
.ws2b{word-spacing:-0.784000pt;}
.ws113{word-spacing:-0.709333pt;}
.wsd8{word-spacing:-0.616000pt;}
.ws13{word-spacing:-0.560000pt;}
.ws11c{word-spacing:-0.557333pt;}
.wsf0{word-spacing:-0.506667pt;}
.wsef{word-spacing:-0.456000pt;}
.ws1f{word-spacing:-0.448000pt;}
.wsfe{word-spacing:-0.354667pt;}
.ws3d{word-spacing:-0.336000pt;}
.ws77{word-spacing:-0.253333pt;}
.ws104{word-spacing:-0.202667pt;}
.ws103{word-spacing:-0.101333pt;}
.ws3{word-spacing:-0.050667pt;}
.ws2{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.152000pt;}
.ws6a{word-spacing:0.202667pt;}
.wsd5{word-spacing:0.224000pt;}
.ws67{word-spacing:0.253333pt;}
.ws25{word-spacing:0.280000pt;}
.ws8f{word-spacing:0.304000pt;}
.ws4d{word-spacing:0.336000pt;}
.ws78{word-spacing:0.354667pt;}
.ws32{word-spacing:0.392000pt;}
.ws97{word-spacing:0.405333pt;}
.ws49{word-spacing:0.456000pt;}
.ws68{word-spacing:0.506667pt;}
.ws6b{word-spacing:0.557333pt;}
.ws7a{word-spacing:0.608000pt;}
.ws18{word-spacing:0.616000pt;}
.ws6c{word-spacing:0.658667pt;}
.wse6{word-spacing:0.709333pt;}
.ws66{word-spacing:0.760000pt;}
.wsc2{word-spacing:0.784000pt;}
.ws69{word-spacing:0.810667pt;}
.ws76{word-spacing:0.861333pt;}
.ws102{word-spacing:0.912000pt;}
.wsca{word-spacing:0.952000pt;}
.wsa9{word-spacing:0.962667pt;}
.ws36{word-spacing:1.008000pt;}
.wsf8{word-spacing:1.013333pt;}
.ws106{word-spacing:1.114667pt;}
.wsf9{word-spacing:1.165333pt;}
.wsfa{word-spacing:1.266667pt;}
.ws11a{word-spacing:1.317333pt;}
.ws105{word-spacing:1.368000pt;}
.ws79{word-spacing:1.469333pt;}
.ws38{word-spacing:1.568000pt;}
.ws111{word-spacing:1.672000pt;}
.wsbd{word-spacing:1.680000pt;}
.wse8{word-spacing:1.722667pt;}
.wse1{word-spacing:1.874667pt;}
.ws114{word-spacing:2.026667pt;}
.ws54{word-spacing:2.072000pt;}
.ws1c{word-spacing:2.077333pt;}
.wsd9{word-spacing:2.080000pt;}
.wsb6{word-spacing:2.128000pt;}
.wse9{word-spacing:2.178667pt;}
.ws112{word-spacing:2.229333pt;}
.wse7{word-spacing:2.330667pt;}
.ws40{word-spacing:2.352000pt;}
.wsdd{word-spacing:2.408000pt;}
.wsf1{word-spacing:2.482667pt;}
.ws107{word-spacing:2.533333pt;}
.ws3c{word-spacing:2.688000pt;}
.wsed{word-spacing:2.837333pt;}
.wseb{word-spacing:2.888000pt;}
.wsec{word-spacing:2.938667pt;}
.wsd7{word-spacing:3.024000pt;}
.ws2d{word-spacing:3.080000pt;}
.ws17{word-spacing:3.248000pt;}
.wsf6{word-spacing:3.293333pt;}
.wsee{word-spacing:3.344000pt;}
.ws37{word-spacing:3.360000pt;}
.ws10f{word-spacing:3.394667pt;}
.ws1a{word-spacing:3.416000pt;}
.ws110{word-spacing:3.445333pt;}
.wse2{word-spacing:3.496000pt;}
.wsb9{word-spacing:3.528000pt;}
.wsc3{word-spacing:3.584000pt;}
.ws16{word-spacing:3.640000pt;}
.ws11d{word-spacing:3.648000pt;}
.ws4c{word-spacing:3.696000pt;}
.wse5{word-spacing:3.698667pt;}
.wsd3{word-spacing:3.808000pt;}
.ws11e{word-spacing:3.850667pt;}
.ws119{word-spacing:4.002667pt;}
.wsb7{word-spacing:4.368000pt;}
.ws42{word-spacing:4.424000pt;}
.ws108{word-spacing:4.509333pt;}
.ws53{word-spacing:4.704000pt;}
.ws117{word-spacing:4.712000pt;}
.ws8{word-spacing:4.872000pt;}
.ws31{word-spacing:4.928000pt;}
.wsea{word-spacing:4.965333pt;}
.ws2c{word-spacing:4.984000pt;}
.ws26{word-spacing:5.152000pt;}
.ws118{word-spacing:5.269333pt;}
.ws45{word-spacing:5.320000pt;}
.ws48{word-spacing:5.544000pt;}
.ws19{word-spacing:5.656000pt;}
.ws10a{word-spacing:5.674667pt;}
.ws52{word-spacing:5.712000pt;}
.wsfb{word-spacing:5.826667pt;}
.ws39{word-spacing:5.936000pt;}
.ws14{word-spacing:6.104000pt;}
.ws9{word-spacing:6.160000pt;}
.ws4b{word-spacing:6.216000pt;}
.wsb3{word-spacing:6.272000pt;}
.ws23{word-spacing:6.440000pt;}
.ws1b{word-spacing:6.637333pt;}
.wse4{word-spacing:6.688000pt;}
.wse{word-spacing:7.168000pt;}
.ws11{word-spacing:7.224000pt;}
.ws10b{word-spacing:7.296000pt;}
.wsd1{word-spacing:7.336000pt;}
.ws6{word-spacing:7.392000pt;}
.ws10c{word-spacing:7.600000pt;}
.wsc4{word-spacing:7.672000pt;}
.wsc5{word-spacing:7.728000pt;}
.ws47{word-spacing:7.784000pt;}
.wsff{word-spacing:7.802667pt;}
.wsf{word-spacing:7.840000pt;}
.ws101{word-spacing:7.853333pt;}
.ws10{word-spacing:7.896000pt;}
.ws7{word-spacing:8.064000pt;}
.ws33{word-spacing:8.232000pt;}
.wsd0{word-spacing:8.624000pt;}
.ws100{word-spacing:8.664000pt;}
.ws28{word-spacing:8.680000pt;}
.wsd{word-spacing:8.736000pt;}
.ws43{word-spacing:8.792000pt;}
.wsb8{word-spacing:8.960000pt;}
.wsb1{word-spacing:9.128000pt;}
.ws50{word-spacing:9.240000pt;}
.wsdf{word-spacing:9.296000pt;}
.wsbf{word-spacing:9.352000pt;}
.ws4e{word-spacing:9.408000pt;}
.ws5b{word-spacing:10.192000pt;}
.wscb{word-spacing:10.920000pt;}
.wscc{word-spacing:11.032000pt;}
.wsc6{word-spacing:11.312000pt;}
.wsc7{word-spacing:11.424000pt;}
.wsb{word-spacing:11.648000pt;}
.wsb5{word-spacing:11.704000pt;}
.ws3b{word-spacing:11.872000pt;}
.ws24{word-spacing:12.320000pt;}
.wsa{word-spacing:12.376000pt;}
.wsb4{word-spacing:12.432000pt;}
.ws51{word-spacing:13.328000pt;}
.ws44{word-spacing:13.944000pt;}
.wsd4{word-spacing:14.616000pt;}
.ws35{word-spacing:15.680000pt;}
.ws27{word-spacing:15.904000pt;}
.wsd6{word-spacing:16.072000pt;}
.wsb2{word-spacing:16.184000pt;}
.wsbe{word-spacing:16.520000pt;}
.ws12{word-spacing:16.744000pt;}
.wsde{word-spacing:16.856000pt;}
.ws2f{word-spacing:17.416000pt;}
.wsd2{word-spacing:17.472000pt;}
.wsc{word-spacing:17.696000pt;}
.ws56{word-spacing:17.976000pt;}
.wsce{word-spacing:18.144000pt;}
.ws29{word-spacing:18.536000pt;}
.wscd{word-spacing:18.872000pt;}
.ws57{word-spacing:19.376000pt;}
.ws4f{word-spacing:19.712000pt;}
.ws55{word-spacing:19.992000pt;}
.wsba{word-spacing:20.272000pt;}
.ws2a{word-spacing:21.672000pt;}
.wsc0{word-spacing:22.680000pt;}
.wscf{word-spacing:24.024000pt;}
.ws5a{word-spacing:24.528000pt;}
.ws21{word-spacing:24.584000pt;}
.ws59{word-spacing:27.328000pt;}
.ws5d{word-spacing:27.552000pt;}
.ws5c{word-spacing:27.720000pt;}
.ws34{word-spacing:27.776000pt;}
.wsbc{word-spacing:27.832000pt;}
.ws4{word-spacing:28.280000pt;}
.ws3a{word-spacing:28.392000pt;}
.ws1d{word-spacing:30.800000pt;}
.ws58{word-spacing:31.640000pt;}
.wsc9{word-spacing:31.696000pt;}
.wsc8{word-spacing:32.480000pt;}
.ws5e{word-spacing:37.072000pt;}
.ws22{word-spacing:41.832000pt;}
.ws20{word-spacing:44.352000pt;}
.wsaf{word-spacing:76.079467pt;}
.ws81{word-spacing:95.024000pt;}
.ws7c{word-spacing:95.077867pt;}
.ws8b{word-spacing:96.558400pt;}
.ws5{word-spacing:105.784000pt;}
.ws7b{word-spacing:106.731733pt;}
.wsb0{word-spacing:117.390400pt;}
.ws8d{word-spacing:118.420800pt;}
.ws93{word-spacing:120.988800pt;}
.wsa7{word-spacing:131.773333pt;}
.ws7f{word-spacing:146.856533pt;}
.ws9d{word-spacing:154.686933pt;}
.wsa8{word-spacing:165.912000pt;}
.ws86{word-spacing:191.506133pt;}
.wsab{word-spacing:194.700267pt;}
.wsa6{word-spacing:203.312533pt;}
.wsa0{word-spacing:203.985067pt;}
.ws9f{word-spacing:206.517867pt;}
.ws95{word-spacing:207.197333pt;}
.wsaa{word-spacing:207.328000pt;}
.ws75{word-spacing:213.622400pt;}
.ws85{word-spacing:214.230400pt;}
.ws72{word-spacing:215.853867pt;}
.ws9b{word-spacing:216.286400pt;}
.ws99{word-spacing:216.540800pt;}
.ws74{word-spacing:219.019733pt;}
.wsa3{word-spacing:231.876800pt;}
.wsa4{word-spacing:234.294933pt;}
.ws8e{word-spacing:234.395733pt;}
.ws89{word-spacing:234.445867pt;}
.ws98{word-spacing:241.530667pt;}
.ws90{word-spacing:243.905067pt;}
.ws9e{word-spacing:244.467200pt;}
.wsa1{word-spacing:245.112533pt;}
.ws92{word-spacing:248.186667pt;}
.wsa2{word-spacing:254.864533pt;}
.ws83{word-spacing:290.664000pt;}
.ws6d{word-spacing:291.881067pt;}
.ws8c{word-spacing:292.183467pt;}
.ws80{word-spacing:296.365333pt;}
.ws87{word-spacing:298.212800pt;}
.ws73{word-spacing:311.082667pt;}
.ws96{word-spacing:318.522667pt;}
.wsa5{word-spacing:320.405333pt;}
.ws7e{word-spacing:328.083200pt;}
.ws61{word-spacing:346.663467pt;}
.ws6f{word-spacing:352.275733pt;}
.ws88{word-spacing:352.548800pt;}
.ws70{word-spacing:352.832000pt;}
.ws71{word-spacing:352.832533pt;}
.ws91{word-spacing:356.579200pt;}
.ws60{word-spacing:356.599467pt;}
.ws9c{word-spacing:356.640000pt;}
.ws7d{word-spacing:357.156800pt;}
.ws84{word-spacing:358.299200pt;}
.ws82{word-spacing:608.588800pt;}
.ws8a{word-spacing:712.161600pt;}
._b{margin-left:-260.557600pt;}
._c{margin-left:-12.288263pt;}
._2e{margin-left:-7.245333pt;}
._2{margin-left:-5.681600pt;}
._5{margin-left:-4.032800pt;}
._1{margin-left:-2.426933pt;}
._0{margin-left:-1.018400pt;}
._3{width:0.912000pt;}
._8{width:2.193867pt;}
._7{width:3.597333pt;}
._6{width:4.539733pt;}
._9{width:5.907733pt;}
._a{width:6.910933pt;}
._99{width:7.908000pt;}
._95{width:11.697333pt;}
._4{width:13.127733pt;}
._97{width:16.832000pt;}
._96{width:18.155733pt;}
._94{width:27.408267pt;}
._27{width:56.844000pt;}
._3f{width:79.182933pt;}
._45{width:80.728000pt;}
._8e{width:87.832000pt;}
._92{width:89.098667pt;}
._10{width:100.701600pt;}
._3e{width:103.133867pt;}
._30{width:104.705600pt;}
._33{width:113.748800pt;}
._83{width:117.009600pt;}
._47{width:123.489067pt;}
._4a{width:127.694933pt;}
._91{width:130.982667pt;}
._58{width:133.138400pt;}
._98{width:137.391733pt;}
._46{width:150.948533pt;}
._63{width:152.826133pt;}
._86{width:153.967467pt;}
._5d{width:155.290400pt;}
._3d{width:157.344533pt;}
._5b{width:159.235733pt;}
._79{width:160.894933pt;}
._40{width:164.196533pt;}
._77{width:165.413867pt;}
._5e{width:167.332267pt;}
._78{width:169.180267pt;}
._41{width:175.753600pt;}
._73{width:180.333333pt;}
._61{width:181.603733pt;}
._85{width:184.022667pt;}
._7d{width:185.981067pt;}
._88{width:188.936800pt;}
._89{width:189.982133pt;}
._55{width:193.258933pt;}
._7c{width:196.140800pt;}
._32{width:197.538133pt;}
._81{width:198.457067pt;}
._43{width:199.769600pt;}
._42{width:201.452000pt;}
._3b{width:202.818133pt;}
._8d{width:204.022400pt;}
._31{width:205.016267pt;}
._90{width:206.864267pt;}
._39{width:208.538933pt;}
._68{width:210.596800pt;}
._50{width:211.829333pt;}
._2a{width:213.596800pt;}
._36{width:215.297067pt;}
._2b{width:216.992533pt;}
._2c{width:217.951467pt;}
._37{width:218.991200pt;}
._35{width:220.039733pt;}
._51{width:221.152000pt;}
._82{width:222.045600pt;}
._7a{width:223.008000pt;}
._6c{width:224.035200pt;}
._3a{width:225.112533pt;}
._5c{width:226.351467pt;}
._62{width:228.469867pt;}
._52{width:230.977067pt;}
._7f{width:231.998400pt;}
._57{width:234.020800pt;}
._71{width:235.708800pt;}
._28{width:238.446933pt;}
._4c{width:239.893600pt;}
._84{width:241.098667pt;}
._74{width:242.471467pt;}
._66{width:244.233333pt;}
._59{width:249.930400pt;}
._4d{width:251.069867pt;}
._5a{width:253.955733pt;}
._6e{width:255.560533pt;}
._60{width:256.774667pt;}
._f{width:259.940000pt;}
._8f{width:261.310933pt;}
._56{width:262.471733pt;}
._4e{width:264.042933pt;}
._44{width:268.825600pt;}
._7b{width:271.137067pt;}
._38{width:272.896533pt;}
._8c{width:278.145867pt;}
._5f{width:281.578133pt;}
._75{width:282.974933pt;}
._8a{width:287.903733pt;}
._2d{width:290.077600pt;}
._4f{width:291.230400pt;}
._87{width:293.035733pt;}
._6b{width:296.523733pt;}
._48{width:297.812000pt;}
._6f{width:298.895200pt;}
._64{width:301.546133pt;}
._67{width:307.296533pt;}
._80{width:308.609333pt;}
._72{width:309.515200pt;}
._34{width:311.221333pt;}
._6d{width:314.288000pt;}
._4b{width:317.921600pt;}
._70{width:320.608000pt;}
._54{width:324.459200pt;}
._8b{width:328.726400pt;}
._53{width:339.252800pt;}
._29{width:341.644800pt;}
._93{width:356.600000pt;}
._7e{width:377.629867pt;}
._65{width:394.264533pt;}
._1a{width:423.385333pt;}
._15{width:433.950133pt;}
._19{width:435.545600pt;}
._14{width:459.080000pt;}
._e{width:490.932800pt;}
._20{width:492.004533pt;}
._18{width:492.927733pt;}
._1f{width:505.033600pt;}
._23{width:512.332533pt;}
._17{width:516.686400pt;}
._22{width:524.691733pt;}
._1e{width:533.582933pt;}
._2f{width:545.538400pt;}
._1c{width:546.654933pt;}
._1b{width:558.257600pt;}
._12{width:561.706933pt;}
._6a{width:571.522667pt;}
._11{width:574.066667pt;}
._25{width:577.408000pt;}
._69{width:581.704267pt;}
._24{width:589.216533pt;}
._16{width:596.865067pt;}
._13{width:609.025600pt;}
._21{width:621.185600pt;}
._1d{width:624.327467pt;}
._3c{width:631.695200pt;}
._76{width:637.790933pt;}
._49{width:674.148000pt;}
._d{width:1514.945600pt;}
._26{width:1518.997333pt;}
.fs5{font-size:37.312000pt;}
.fs7{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs6{font-size:59.571698pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:46.866000pt;}
.y3f{bottom:47.804533pt;}
.y40{bottom:50.405067pt;}
.y5{bottom:70.311067pt;}
.y6a{bottom:109.225733pt;}
.y22f{bottom:110.840533pt;}
.y237{bottom:111.265733pt;}
.y265{bottom:120.444133pt;}
.y22e{bottom:128.840533pt;}
.y236{bottom:129.265733pt;}
.y295{bottom:133.724800pt;}
.y69{bottom:133.830000pt;}
.y264{bottom:135.644133pt;}
.y216{bottom:136.330000pt;}
.yf7{bottom:140.162533pt;}
.y22d{bottom:146.840533pt;}
.y235{bottom:147.265733pt;}
.y19{bottom:148.018000pt;}
.yf4{bottom:148.495867pt;}
.y294{bottom:148.924800pt;}
.y15e{bottom:148.927333pt;}
.y215{bottom:152.996667pt;}
.y263{bottom:154.844133pt;}
.yf3{bottom:156.829200pt;}
.y3e{bottom:158.178933pt;}
.y134{bottom:159.176933pt;}
.yb9{bottom:160.509333pt;}
.y68{bottom:163.830000pt;}
.y293{bottom:164.124800pt;}
.y22c{bottom:164.840533pt;}
.yf5{bottom:165.162533pt;}
.y234{bottom:165.265733pt;}
.y15d{bottom:165.594000pt;}
.y18{bottom:166.018000pt;}
.ybb{bottom:168.842667pt;}
.y214{bottom:169.663333pt;}
.y262{bottom:170.044133pt;}
.yf6{bottom:173.495867pt;}
.y1b4{bottom:175.219733pt;}
.y3d{bottom:176.178933pt;}
.yb8{bottom:177.176000pt;}
.y133{bottom:179.052267pt;}
.y22b{bottom:182.840533pt;}
.y233{bottom:183.265733pt;}
.y292{bottom:183.324800pt;}
.y17{bottom:184.017867pt;}
.y15c{bottom:185.469200pt;}
.yba{bottom:185.509333pt;}
.y213{bottom:186.330000pt;}
.yb4{bottom:187.113600pt;}
.y261{bottom:189.244133pt;}
.y1b1{bottom:191.886400pt;}
.y67{bottom:192.496667pt;}
.yf2{bottom:193.371200pt;}
.yb7{bottom:193.842667pt;}
.y3c{bottom:194.178933pt;}
.yb3{bottom:195.446933pt;}
.y132{bottom:195.718933pt;}
.y291{bottom:198.524800pt;}
.y1b0{bottom:200.219733pt;}
.y22a{bottom:200.840533pt;}
.y232{bottom:201.265733pt;}
.yf1{bottom:201.704533pt;}
.y16{bottom:202.017867pt;}
.y15b{bottom:202.135867pt;}
.y212{bottom:202.996667pt;}
.y260{bottom:208.444133pt;}
.y1b3{bottom:208.553067pt;}
.y3b{bottom:212.178933pt;}
.yb6{bottom:213.717867pt;}
.y129{bottom:213.989733pt;}
.y20c{bottom:214.538667pt;}
.y130{bottom:215.594000pt;}
.y290{bottom:217.724800pt;}
.y15a{bottom:218.802533pt;}
.y229{bottom:218.840533pt;}
.y231{bottom:219.265733pt;}
.y66{bottom:219.830000pt;}
.y15{bottom:220.017867pt;}
.y183{bottom:222.011067pt;}
.y128{bottom:222.323067pt;}
.y20b{bottom:222.872000pt;}
.y25f{bottom:223.644133pt;}
.y12f{bottom:223.927333pt;}
.y1b2{bottom:225.219733pt;}
.y156{bottom:227.135867pt;}
.yf0{bottom:229.913067pt;}
.y3a{bottom:230.178933pt;}
.yb5{bottom:230.384533pt;}
.y131{bottom:232.260667pt;}
.y28f{bottom:232.924800pt;}
.y155{bottom:235.469200pt;}
.y228{bottom:236.840533pt;}
.y230{bottom:237.265733pt;}
.y14{bottom:238.017867pt;}
.yee{bottom:238.246400pt;}
.y182{bottom:238.677733pt;}
.y211{bottom:239.538667pt;}
.y1d6{bottom:240.594000pt;}
.y25e{bottom:242.844133pt;}
.y65{bottom:244.496667pt;}
.y1af{bottom:245.094800pt;}
.yed{bottom:246.579733pt;}
.y39{bottom:248.178933pt;}
.y1d5{bottom:248.927333pt;}
.yb2{bottom:250.259733pt;}
.y28e{bottom:252.124800pt;}
.y12e{bottom:252.135867pt;}
.y227{bottom:254.840533pt;}
.y181{bottom:255.344400pt;}
.y13{bottom:256.017867pt;}
.y1d7{bottom:257.260667pt;}
.y25d{bottom:258.044133pt;}
.yb1{bottom:258.593067pt;}
.y210{bottom:259.413867pt;}
.y12c{bottom:260.469200pt;}
.y1ae{bottom:261.761467pt;}
.yef{bottom:263.246400pt;}
.y1d4{bottom:265.594000pt;}
.y38{bottom:266.178933pt;}
.y28d{bottom:267.324800pt;}
.y64{bottom:268.496667pt;}
.y12a{bottom:268.802533pt;}
.y1ab{bottom:270.094800pt;}
.y180{bottom:272.011067pt;}
.y226{bottom:272.840533pt;}
.y12{bottom:274.017867pt;}
.y20e{bottom:276.080533pt;}
.y12b{bottom:277.135867pt;}
.y25c{bottom:277.244133pt;}
.y1ad{bottom:278.428133pt;}
.yec{bottom:283.121600pt;}
.y37{bottom:284.178933pt;}
.y12d{bottom:285.469200pt;}
.y2bc{bottom:285.664000pt;}
.y28c{bottom:286.524800pt;}
.yb0{bottom:286.801600pt;}
.y158{bottom:288.677733pt;}
.y225{bottom:290.840533pt;}
.yea{bottom:291.454933pt;}
.y11{bottom:292.017867pt;}
.y25b{bottom:292.444133pt;}
.y20d{bottom:292.747200pt;}
.y1ac{bottom:295.094800pt;}
.y63{bottom:295.163333pt;}
.yad{bottom:296.739200pt;}
.y159{bottom:297.011067pt;}
.ye9{bottom:299.788267pt;}
.y17e{bottom:300.219600pt;}
.y2bb{bottom:300.864000pt;}
.y28b{bottom:301.724800pt;}
.y1d3{bottom:302.135867pt;}
.y36{bottom:302.178933pt;}
.yaf{bottom:303.468267pt;}
.yac{bottom:305.072533pt;}
.y127{bottom:305.344400pt;}
.y17d{bottom:308.552933pt;}
.y224{bottom:308.840533pt;}
.y20f{bottom:309.413867pt;}
.y10{bottom:310.017867pt;}
.y25a{bottom:311.644133pt;}
.y126{bottom:313.677733pt;}
.y1aa{bottom:314.970000pt;}
.yeb{bottom:316.454933pt;}
.y28a{bottom:316.924800pt;}
.y1d2{bottom:318.802533pt;}
.y2ba{bottom:320.064000pt;}
.y35{bottom:320.178933pt;}
.y62{bottom:321.830000pt;}
.y157{bottom:322.011067pt;}
.y1a9{bottom:323.303333pt;}
.yae{bottom:323.343467pt;}
.y17f{bottom:325.219600pt;}
.y223{bottom:326.840533pt;}
.yf{bottom:328.017867pt;}
.y1ce{bottom:328.740133pt;}
.y208{bottom:329.289067pt;}
.y259{bottom:330.844133pt;}
.y1d1{bottom:335.469200pt;}
.y289{bottom:336.124800pt;}
.ye8{bottom:336.330133pt;}
.y20a{bottom:337.622400pt;}
.y34{bottom:338.178933pt;}
.y2b9{bottom:339.264000pt;}
.y125{bottom:341.886267pt;}
.yab{bottom:343.218667pt;}
.y222{bottom:344.840533pt;}
.y206{bottom:345.955733pt;}
.y61{bottom:345.996667pt;}
.ye{bottom:346.018000pt;}
.y258{bottom:346.044133pt;}
.y154{bottom:350.219600pt;}
.y288{bottom:351.324800pt;}
.y1a7{bottom:351.511867pt;}
.ya9{bottom:351.552000pt;}
.ye6{bottom:352.996800pt;}
.y209{bottom:354.289067pt;}
.y60{bottom:354.330000pt;}
.y2b8{bottom:354.464000pt;}
.y1d0{bottom:355.344400pt;}
.y33{bottom:356.178933pt;}
.y124{bottom:358.552933pt;}
.y1a6{bottom:359.845200pt;}
.ya8{bottom:359.885333pt;}
.y207{bottom:362.622400pt;}
.y221{bottom:362.840533pt;}
.y1cd{bottom:363.677733pt;}
.yd{bottom:364.018000pt;}
.y257{bottom:365.244133pt;}
.y1a8{bottom:368.178533pt;}
.ye7{bottom:369.663467pt;}
.y287{bottom:370.524800pt;}
.y1cf{bottom:372.011067pt;}
.y2b7{bottom:373.664000pt;}
.y32{bottom:374.178933pt;}
.y123{bottom:375.219600pt;}
.yaa{bottom:376.552000pt;}
.y153{bottom:378.428133pt;}
.y256{bottom:380.444133pt;}
.y220{bottom:380.840533pt;}
.yc{bottom:382.018000pt;}
.y205{bottom:382.497600pt;}
.y1a5{bottom:388.053733pt;}
.y2b6{bottom:388.864000pt;}
.ye5{bottom:389.538667pt;}
.y286{bottom:389.724800pt;}
.y5f{bottom:391.326667pt;}
.y1cc{bottom:391.886267pt;}
.y31{bottom:392.178933pt;}
.y202{bottom:392.435200pt;}
.y122{bottom:395.094800pt;}
.ya7{bottom:396.427200pt;}
.ye4{bottom:397.872000pt;}
.y21f{bottom:398.840533pt;}
.y255{bottom:399.644133pt;}
.yb{bottom:400.018000pt;}
.y201{bottom:400.768533pt;}
.y204{bottom:402.372800pt;}
.y11f{bottom:403.428133pt;}
.y1a3{bottom:404.720400pt;}
.ya5{bottom:404.760533pt;}
.y285{bottom:404.924800pt;}
.y2b5{bottom:408.064000pt;}
.y5e{bottom:408.126667pt;}
.y1ca{bottom:408.552933pt;}
.y30{bottom:410.178933pt;}
.y203{bottom:410.706133pt;}
.y121{bottom:411.761467pt;}
.ya4{bottom:413.093867pt;}
.y254{bottom:414.844133pt;}
.y17c{bottom:414.970000pt;}
.y21e{bottom:416.840533pt;}
.ya{bottom:418.018000pt;}
.y11e{bottom:420.094800pt;}
.y284{bottom:420.124800pt;}
.y1a4{bottom:421.387067pt;}
.y2b4{bottom:423.264000pt;}
.y1cb{bottom:425.219600pt;}
.ye3{bottom:426.080533pt;}
.y2f{bottom:428.178933pt;}
.y120{bottom:428.428133pt;}
.ya6{bottom:429.760533pt;}
.y253{bottom:434.044133pt;}
.ydf{bottom:434.413867pt;}
.y21d{bottom:434.840533pt;}
.y17b{bottom:434.845200pt;}
.y9{bottom:436.018000pt;}
.y200{bottom:438.914667pt;}
.y283{bottom:439.324800pt;}
.y1a2{bottom:441.262267pt;}
.y2b3{bottom:442.464000pt;}
.yde{bottom:442.747200pt;}
.y1c9{bottom:445.094800pt;}
.y2e{bottom:446.178933pt;}
.y1c8{bottom:446.699200pt;}
.y11d{bottom:448.303333pt;}
.y252{bottom:449.244133pt;}
.ya3{bottom:449.635733pt;}
.y5d{bottom:453.155467pt;}
.y8{bottom:454.018000pt;}
.y17a{bottom:454.720400pt;}
.y1ff{bottom:455.581333pt;}
.y2b2{bottom:457.664000pt;}
.y7e{bottom:458.421600pt;}
.y282{bottom:458.524800pt;}
.y1a1{bottom:461.137467pt;}
.ye2{bottom:462.622400pt;}
.y179{bottom:463.053733pt;}
.y1c6{bottom:463.365867pt;}
.y2d{bottom:464.178933pt;}
.y251{bottom:464.444133pt;}
.y11c{bottom:464.970000pt;}
.ya1{bottom:466.302400pt;}
.y19f{bottom:469.470800pt;}
.y5c{bottom:471.155467pt;}
.y7{bottom:472.018000pt;}
.y1fe{bottom:472.248000pt;}
.y150{bottom:473.303333pt;}
.y281{bottom:473.724800pt;}
.y238{bottom:474.488800pt;}
.y117{bottom:474.907600pt;}
.y7d{bottom:476.421600pt;}
.y2b1{bottom:476.864000pt;}
.y19e{bottom:477.804133pt;}
.ye0{bottom:479.289067pt;}
.y1c7{bottom:480.032533pt;}
.y152{bottom:481.636667pt;}
.y2c{bottom:482.178933pt;}
.ya2{bottom:482.969067pt;}
.y116{bottom:483.240933pt;}
.y250{bottom:483.644133pt;}
.y11b{bottom:484.845200pt;}
.y5b{bottom:489.155467pt;}
.y1f7{bottom:490.518933pt;}
.y178{bottom:491.262267pt;}
.y2b0{bottom:492.064000pt;}
.y1fd{bottom:492.123200pt;}
.y280{bottom:492.924800pt;}
.y119{bottom:493.178533pt;}
.y7c{bottom:494.421600pt;}
.y1a0{bottom:494.470800pt;}
.ye1{bottom:495.955733pt;}
.y6{bottom:497.576933pt;}
.y151{bottom:498.303333pt;}
.y24f{bottom:498.844133pt;}
.y1f6{bottom:498.852267pt;}
.y176{bottom:499.595600pt;}
.y2b{bottom:500.178933pt;}
.y118{bottom:501.511867pt;}
.y9f{bottom:502.844267pt;}
.y23b{bottom:504.306800pt;}
.y5a{bottom:507.155467pt;}
.y2af{bottom:507.264000pt;}
.y175{bottom:507.928933pt;}
.y27f{bottom:508.124800pt;}
.y149{bottom:508.240933pt;}
.y1fa{bottom:508.789867pt;}
.y1c5{bottom:509.845200pt;}
.ya0{bottom:511.177600pt;}
.y7b{bottom:512.421600pt;}
.y19d{bottom:514.346133pt;}
.ydd{bottom:515.830933pt;}
.y148{bottom:516.574267pt;}
.y1fb{bottom:517.123200pt;}
.y24e{bottom:518.044133pt;}
.y11a{bottom:518.178533pt;}
.y9d{bottom:519.510933pt;}
.y23a{bottom:520.306800pt;}
.ydc{bottom:524.164267pt;}
.y177{bottom:524.595600pt;}
.y59{bottom:525.155467pt;}
.y1f9{bottom:525.456533pt;}
.y2ae{bottom:526.464000pt;}
.y27e{bottom:527.324800pt;}
.y7a{bottom:530.421600pt;}
.y19c{bottom:531.012800pt;}
.y24d{bottom:533.244133pt;}
.y14f{bottom:534.845200pt;}
.y9e{bottom:536.177600pt;}
.y114{bottom:538.053733pt;}
.y199{bottom:539.346133pt;}
.y2ad{bottom:541.664000pt;}
.y1f8{bottom:542.123200pt;}
.y27d{bottom:542.524800pt;}
.y58{bottom:543.155467pt;}
.y14b{bottom:543.178533pt;}
.y174{bottom:544.470800pt;}
.y113{bottom:546.387067pt;}
.y197{bottom:547.679467pt;}
.y79{bottom:548.421600pt;}
.y24c{bottom:548.444133pt;}
.y14e{bottom:551.511867pt;}
.ydb{bottom:552.372800pt;}
.y173{bottom:552.804133pt;}
.y25{bottom:552.992133pt;}
.y115{bottom:554.720400pt;}
.y196{bottom:556.012800pt;}
.y9c{bottom:556.052800pt;}
.y1fc{bottom:558.789867pt;}
.y14a{bottom:559.845200pt;}
.yda{bottom:560.706133pt;}
.y2ac{bottom:560.864000pt;}
.y57{bottom:561.155467pt;}
.y27c{bottom:561.724800pt;}
.y1c3{bottom:563.053733pt;}
.y19b{bottom:564.346133pt;}
.y78{bottom:566.421600pt;}
.y24b{bottom:567.644133pt;}
.y14d{bottom:568.178533pt;}
.y1c2{bottom:571.387067pt;}
.y198{bottom:572.679467pt;}
.y112{bottom:574.595600pt;}
.y9b{bottom:575.928000pt;}
.y2ab{bottom:576.064000pt;}
.y27b{bottom:576.924800pt;}
.y1f4{bottom:578.665067pt;}
.y56{bottom:579.155467pt;}
.y172{bottom:581.012800pt;}
.y95{bottom:582.657067pt;}
.y24a{bottom:582.844133pt;}
.y77{bottom:584.421600pt;}
.y14c{bottom:584.845200pt;}
.y1f3{bottom:586.998400pt;}
.y24{bottom:587.933867pt;}
.y1c4{bottom:588.053733pt;}
.yd9{bottom:588.914667pt;}
.y171{bottom:589.346133pt;}
.y111{bottom:591.262267pt;}
.y9a{bottom:592.594667pt;}
.y2aa{bottom:595.264000pt;}
.y1f5{bottom:595.331733pt;}
.y27a{bottom:596.124800pt;}
.y55{bottom:597.155467pt;}
.y19a{bottom:597.679467pt;}
.y249{bottom:598.044133pt;}
.y93{bottom:599.323733pt;}
.y97{bottom:600.928000pt;}
.y76{bottom:602.421600pt;}
.y23{bottom:604.600667pt;}
.y147{bottom:604.720400pt;}
.y110{bottom:607.928933pt;}
.yd8{bottom:608.789867pt;}
.y96{bottom:609.261333pt;}
.y2a9{bottom:610.464000pt;}
.y279{bottom:611.324800pt;}
.y54{bottom:615.155467pt;}
.y1f2{bottom:615.206933pt;}
.y94{bottom:615.990400pt;}
.y248{bottom:617.244133pt;}
.y170{bottom:617.554667pt;}
.y75{bottom:620.421600pt;}
.y22{bottom:621.267333pt;}
.y146{bottom:621.387067pt;}
.y145{bottom:622.991333pt;}
.y10c{bottom:624.595600pt;}
.yd7{bottom:625.456533pt;}
.y99{bottom:625.928000pt;}
.y1bf{bottom:626.200000pt;}
.yd3{bottom:627.060667pt;}
.y2a8{bottom:629.664000pt;}
.y278{bottom:630.524800pt;}
.y144{bottom:631.324667pt;}
.y1f1{bottom:631.873600pt;}
.y247{bottom:632.444133pt;}
.y53{bottom:633.155467pt;}
.y16e{bottom:634.221333pt;}
.y109{bottom:634.533200pt;}
.y1bc{bottom:634.533333pt;}
.y195{bottom:637.429867pt;}
.y21{bottom:637.934000pt;}
.y74{bottom:638.421600pt;}
.y10f{bottom:641.262267pt;}
.y1ed{bottom:641.811200pt;}
.yd6{bottom:642.123200pt;}
.y16c{bottom:642.554667pt;}
.y98{bottom:642.594667pt;}
.y108{bottom:642.866533pt;}
.y1be{bottom:642.866667pt;}
.yd1{bottom:643.727333pt;}
.y1c1{bottom:644.470800pt;}
.y2a7{bottom:644.863867pt;}
.y277{bottom:645.724800pt;}
.y192{bottom:645.763200pt;}
.y1f0{bottom:648.540267pt;}
.y1ec{bottom:650.144533pt;}
.y16b{bottom:650.888000pt;}
.y52{bottom:651.155467pt;}
.y246{bottom:651.644133pt;}
.y191{bottom:654.096533pt;}
.y20{bottom:654.600667pt;}
.y73{bottom:656.421600pt;}
.y10e{bottom:657.928933pt;}
.y1bd{bottom:659.533333pt;}
.yd2{bottom:660.394000pt;}
.y1c0{bottom:661.137467pt;}
.yd5{bottom:661.998267pt;}
.y193{bottom:662.429867pt;}
.y90{bottom:662.469867pt;}
.y2a6{bottom:664.064000pt;}
.y276{bottom:664.924800pt;}
.y245{bottom:666.844133pt;}
.y16d{bottom:667.554667pt;}
.y1ef{bottom:668.415467pt;}
.y51{bottom:669.155467pt;}
.yd4{bottom:670.331600pt;}
.y194{bottom:670.763200pt;}
.y92{bottom:670.803200pt;}
.y1f{bottom:671.267333pt;}
.y72{bottom:674.421600pt;}
.y10d{bottom:674.595600pt;}
.y143{bottom:677.804133pt;}
.y8e{bottom:679.136533pt;}
.y275{bottom:680.124800pt;}
.y1bb{bottom:681.012667pt;}
.y2a5{bottom:683.264000pt;}
.y239{bottom:683.517467pt;}
.y16f{bottom:684.221333pt;}
.y1ee{bottom:685.082133pt;}
.y244{bottom:686.044133pt;}
.y50{bottom:687.155467pt;}
.y91{bottom:687.469867pt;}
.y140{bottom:687.741733pt;}
.y1e{bottom:687.933867pt;}
.y1ba{bottom:689.346000pt;}
.y190{bottom:690.638400pt;}
.y71{bottom:692.421600pt;}
.y10b{bottom:694.470800pt;}
.y8f{bottom:695.803200pt;}
.y13f{bottom:696.075067pt;}
.y142{bottom:697.679333pt;}
.y2a4{bottom:698.464000pt;}
.yd0{bottom:698.540267pt;}
.y274{bottom:699.324800pt;}
.y16a{bottom:704.096533pt;}
.y1d{bottom:704.600533pt;}
.y1ea{bottom:704.957333pt;}
.y4f{bottom:705.155467pt;}
.y243{bottom:705.244133pt;}
.yce{bottom:706.873600pt;}
.y18f{bottom:707.305067pt;}
.y70{bottom:710.421600pt;}
.y10a{bottom:711.137467pt;}
.y1e9{bottom:713.290667pt;}
.y141{bottom:714.346000pt;}
.ycd{bottom:715.206933pt;}
.y18d{bottom:715.638400pt;}
.y8d{bottom:715.678400pt;}
.y1b9{bottom:717.554667pt;}
.y2a3{bottom:717.664000pt;}
.y273{bottom:718.524800pt;}
.y242{bottom:720.444133pt;}
.y169{bottom:720.763200pt;}
.y1c{bottom:721.267200pt;}
.y1eb{bottom:721.624000pt;}
.y4e{bottom:723.155467pt;}
.y18c{bottom:723.971733pt;}
.y8c{bottom:724.011733pt;}
.y6f{bottom:728.421600pt;}
.y165{bottom:730.700667pt;}
.y107{bottom:731.012667pt;}
.ycf{bottom:731.873600pt;}
.y2a2{bottom:732.863867pt;}
.y272{bottom:733.724800pt;}
.y13e{bottom:734.221333pt;}
.y168{bottom:737.429867pt;}
.y1b{bottom:737.933867pt;}
.y164{bottom:739.034000pt;}
.y241{bottom:739.644267pt;}
.y18e{bottom:740.638400pt;}
.y4d{bottom:741.155467pt;}
.y1e7{bottom:741.499200pt;}
.y13d{bottom:742.554667pt;}
.y1b8{bottom:744.158800pt;}
.y6e{bottom:746.421600pt;}
.y1e6{bottom:749.832533pt;}
.y105{bottom:750.888000pt;}
.ycb{bottom:751.748800pt;}
.y2a1{bottom:752.064000pt;}
.y8b{bottom:752.220267pt;}
.y1b7{bottom:752.492133pt;}
.y271{bottom:752.924800pt;}
.y240{bottom:754.844267pt;}
.y167{bottom:757.305067pt;}
.y1e8{bottom:758.165867pt;}
.y4c{bottom:759.155467pt;}
.y104{bottom:759.221333pt;}
.yca{bottom:760.082133pt;}
.y8a{bottom:760.553600pt;}
.yc8{bottom:761.686400pt;}
.y1a{bottom:762.159733pt;}
.y6d{bottom:764.421600pt;}
.y21b{bottom:765.638400pt;}
.y2a0{bottom:767.264000pt;}
.y106{bottom:767.554667pt;}
.y270{bottom:768.124800pt;}
.ycc{bottom:768.415467pt;}
.yc7{bottom:770.019733pt;}
.y13c{bottom:770.763200pt;}
.y166{bottom:773.971733pt;}
.y4b{bottom:777.155467pt;}
.y189{bottom:777.180133pt;}
.y1e5{bottom:778.041067pt;}
.y13b{bottom:779.096533pt;}
.y23f{bottom:781.603333pt;}
.y18b{bottom:785.513467pt;}
.y1e3{bottom:786.374400pt;}
.y29f{bottom:786.464000pt;}
.y26f{bottom:787.324800pt;}
.y103{bottom:787.429867pt;}
.yc9{bottom:788.290667pt;}
.y89{bottom:788.762267pt;}
.y6c{bottom:789.980667pt;}
.y21c{bottom:790.638400pt;}
.y163{bottom:793.846800pt;}
.y1e2{bottom:794.707733pt;}
.y4a{bottom:795.155467pt;}
.y88{bottom:797.095600pt;}
.y86{bottom:798.699733pt;}
.y29e{bottom:801.664000pt;}
.y18a{bottom:802.180133pt;}
.y26e{bottom:802.524800pt;}
.y85{bottom:807.033067pt;}
.y102{bottom:807.305067pt;}
.yc5{bottom:808.165867pt;}
.y162{bottom:810.513467pt;}
.y6b{bottom:810.780667pt;}
.y2a{bottom:810.833600pt;}
.y1e4{bottom:811.374400pt;}
.y49{bottom:813.155467pt;}
.yfe{bottom:815.638400pt;}
.yc4{bottom:816.499200pt;}
.y26d{bottom:817.724800pt;}
.y160{bottom:818.846800pt;}
.y29d{bottom:820.863867pt;}
.y23e{bottom:821.221600pt;}
.y100{bottom:823.971733pt;}
.yc6{bottom:824.832533pt;}
.y87{bottom:825.304000pt;}
.y15f{bottom:827.180133pt;}
.y29{bottom:828.433600pt;}
.y188{bottom:830.388800pt;}
.y48{bottom:831.155467pt;}
.y1df{bottom:831.249733pt;}
.yfc{bottom:832.305067pt;}
.y29c{bottom:836.064000pt;}
.y26c{bottom:836.924800pt;}
.y1e1{bottom:837.978667pt;}
.y23d{bottom:839.221600pt;}
.yff{bottom:840.638400pt;}
.y13a{bottom:843.846800pt;}
.yc3{bottom:844.707733pt;}
.y187{bottom:847.055467pt;}
.y84{bottom:847.074933pt;}
.y1dc{bottom:847.916400pt;}
.yfd{bottom:848.971733pt;}
.y47{bottom:849.155467pt;}
.y26b{bottom:852.124800pt;}
.y139{bottom:852.180133pt;}
.y28{bottom:853.781600pt;}
.y1e0{bottom:854.645333pt;}
.y29b{bottom:855.264000pt;}
.y21a{bottom:855.388800pt;}
.y1db{bottom:856.249733pt;}
.y101{bottom:857.305067pt;}
.y161{bottom:860.513467pt;}
.yc1{bottom:861.374400pt;}
.y185{bottom:863.722133pt;}
.y1de{bottom:864.583067pt;}
.y23c{bottom:864.780667pt;}
.y46{bottom:867.155467pt;}
.y29a{bottom:870.464000pt;}
.y26a{bottom:871.324800pt;}
.y184{bottom:872.055467pt;}
.y83{bottom:874.846000pt;}
.yfb{bottom:877.180133pt;}
.yc2{bottom:878.041067pt;}
.y138{bottom:880.388800pt;}
.y1dd{bottom:881.249733pt;}
.y219{bottom:883.597333pt;}
.y45{bottom:885.155467pt;}
.y137{bottom:888.722133pt;}
.y299{bottom:889.664000pt;}
.y269{bottom:890.524800pt;}
.y82{bottom:894.721200pt;}
.yfa{bottom:897.055467pt;}
.y27{bottom:897.548533pt;}
.yc0{bottom:897.916400pt;}
.y218{bottom:900.264000pt;}
.y1da{bottom:901.124800pt;}
.y81{bottom:903.054533pt;}
.y44{bottom:903.155467pt;}
.y298{bottom:904.863867pt;}
.yf9{bottom:905.388800pt;}
.y268{bottom:905.724800pt;}
.y1b6{bottom:906.993067pt;}
.ybd{bottom:907.853867pt;}
.y217{bottom:908.597333pt;}
.y1d8{bottom:909.458133pt;}
.y186{bottom:913.722133pt;}
.y1b5{bottom:915.326400pt;}
.ybc{bottom:916.187200pt;}
.y136{bottom:916.930667pt;}
.ybf{bottom:917.791467pt;}
.y43{bottom:921.155467pt;}
.y297{bottom:924.064000pt;}
.y267{bottom:924.924800pt;}
.y135{bottom:925.264000pt;}
.ybe{bottom:926.124800pt;}
.y26{bottom:926.881867pt;}
.yf8{bottom:933.597333pt;}
.y1d9{bottom:934.458133pt;}
.y42{bottom:939.155467pt;}
.y296{bottom:939.264000pt;}
.y266{bottom:940.124800pt;}
.y4{bottom:965.638667pt;}
.y2{bottom:965.729467pt;}
.y3{bottom:980.838667pt;}
.y1{bottom:980.929467pt;}
.y80{bottom:991.224400pt;}
.y41{bottom:991.275600pt;}
.hc{height:32.002667pt;}
.h6{height:35.501302pt;}
.h7{height:35.526042pt;}
.h15{height:35.618667pt;}
.hd{height:36.000000pt;}
.h13{height:36.125333pt;}
.hf{height:36.176000pt;}
.h2{height:36.530667pt;}
.h1{height:38.000000pt;}
.h18{height:40.000000pt;}
.h8{height:40.376000pt;}
.h4{height:42.000000pt;}
.hb{height:42.951194pt;}
.h10{height:44.411200pt;}
.ha{height:47.803520pt;}
.h17{height:48.000000pt;}
.h5{height:49.989333pt;}
.h3{height:51.796875pt;}
.h9{height:69.216000pt;}
.h14{height:69.458667pt;}
.h16{height:69.459200pt;}
.he{height:69.509333pt;}
.h11{height:71.333333pt;}
.h12{height:104.666667pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:48.089733pt;}
.x13{left:66.708667pt;}
.x3{left:80.314933pt;}
.x97{left:84.654800pt;}
.x57{left:86.155733pt;}
.x5{left:87.874000pt;}
.x6{left:89.763733pt;}
.x36{left:96.321867pt;}
.x4{left:100.283467pt;}
.xa6{left:101.480267pt;}
.x7{left:126.880667pt;}
.xe{left:136.150667pt;}
.x8c{left:143.303733pt;}
.x65{left:145.701733pt;}
.xf{left:147.914133pt;}
.xa{left:149.300400pt;}
.x70{left:152.025733pt;}
.x2a{left:153.301733pt;}
.x52{left:156.611467pt;}
.x91{left:157.962667pt;}
.x11{left:160.396933pt;}
.x90{left:161.350933pt;}
.x7f{left:162.809600pt;}
.x1f{left:166.132800pt;}
.x21{left:167.931867pt;}
.x80{left:170.029333pt;}
.x1{left:170.966933pt;}
.x29{left:172.877867pt;}
.x3a{left:174.579733pt;}
.x23{left:176.177333pt;}
.x8e{left:177.123067pt;}
.x20{left:178.495333pt;}
.x1e{left:179.483467pt;}
.x7a{left:181.139733pt;}
.x4a{left:183.940000pt;}
.x8d{left:184.938533pt;}
.x39{left:187.050000pt;}
.x47{left:188.544267pt;}
.x18{left:191.092267pt;}
.x5e{left:193.283467pt;}
.x71{left:196.301600pt;}
.x37{left:200.007867pt;}
.x43{left:202.198933pt;}
.x76{left:204.978133pt;}
.x9e{left:207.169333pt;}
.xa1{left:220.610667pt;}
.xa2{left:244.990533pt;}
.xa3{left:276.573600pt;}
.x5f{left:297.486400pt;}
.x2e{left:305.054800pt;}
.x31{left:307.087733pt;}
.x95{left:308.284667pt;}
.x19{left:309.336133pt;}
.x6a{left:310.963600pt;}
.x28{left:312.597733pt;}
.x1c{left:313.496933pt;}
.x22{left:314.503733pt;}
.x2c{left:316.315467pt;}
.x77{left:318.083600pt;}
.x2d{left:319.317333pt;}
.x98{left:320.995467pt;}
.x2b{left:322.407600pt;}
.x2f{left:324.035733pt;}
.x73{left:324.974267pt;}
.x3b{left:326.070267pt;}
.x9b{left:327.064533pt;}
.x78{left:328.204133pt;}
.x4b{left:329.597467pt;}
.x46{left:330.959333pt;}
.x40{left:332.732933pt;}
.x6d{left:333.954667pt;}
.x8f{left:335.065067pt;}
.x59{left:336.286800pt;}
.x45{left:337.887867pt;}
.x82{left:338.919733pt;}
.x44{left:340.149067pt;}
.x17{left:341.670133pt;}
.x51{left:343.238933pt;}
.x6e{left:344.689600pt;}
.x56{left:346.097067pt;}
.x5d{left:347.870267pt;}
.x7c{left:349.072000pt;}
.x89{left:350.100267pt;}
.x48{left:351.339600pt;}
.x3c{left:353.721333pt;}
.x16{left:361.246133pt;}
.x49{left:366.520133pt;}
.x81{left:374.189200pt;}
.x9f{left:417.333333pt;}
.xc{left:430.960667pt;}
.x99{left:432.485333pt;}
.xa0{left:437.364800pt;}
.x15{left:447.083333pt;}
.x6b{left:448.343733pt;}
.x1a{left:449.781333pt;}
.x12{left:450.698133pt;}
.x86{left:454.191067pt;}
.x8a{left:463.152533pt;}
.x79{left:464.716000pt;}
.x3d{left:465.620800pt;}
.x9{left:472.449333pt;}
.x3e{left:475.924800pt;}
.xa4{left:499.067067pt;}
.xb{left:517.295733pt;}
.x96{left:530.528933pt;}
.x6c{left:534.866933pt;}
.x58{left:535.950000pt;}
.x67{left:537.957333pt;}
.x33{left:538.926667pt;}
.x1b{left:543.328267pt;}
.x30{left:545.754000pt;}
.x92{left:547.020267pt;}
.x66{left:548.667067pt;}
.x32{left:551.751600pt;}
.x3f{left:555.171733pt;}
.x54{left:557.615467pt;}
.x1d{left:559.965600pt;}
.x87{left:561.775867pt;}
.x4c{left:563.341067pt;}
.x4d{left:564.854933pt;}
.x50{left:565.848933pt;}
.x9a{left:567.101333pt;}
.x83{left:568.964000pt;}
.x4e{left:571.903733pt;}
.x85{left:573.346533pt;}
.x6f{left:575.315333pt;}
.x38{left:576.286933pt;}
.xa5{left:593.906933pt;}
.x2{left:601.889733pt;}
.x8{left:627.274267pt;}
.x60{left:629.008133pt;}
.x62{left:630.204933pt;}
.x64{left:631.103867pt;}
.x10{left:632.702267pt;}
.x63{left:634.758667pt;}
.x68{left:636.443067pt;}
.x5b{left:638.653467pt;}
.x93{left:639.767867pt;}
.x25{left:642.162267pt;}
.x26{left:644.562400pt;}
.x34{left:646.145733pt;}
.x5c{left:647.963200pt;}
.x9c{left:648.987867pt;}
.x5a{left:650.680133pt;}
.x14{left:652.058800pt;}
.x94{left:653.074000pt;}
.x24{left:653.967200pt;}
.x27{left:655.601200pt;}
.x61{left:656.791733pt;}
.x72{left:657.968533pt;}
.x88{left:659.049200pt;}
.x42{left:660.726800pt;}
.x69{left:663.454267pt;}
.x75{left:664.681600pt;}
.x35{left:665.816667pt;}
.x53{left:667.762267pt;}
.x41{left:670.011333pt;}
.x84{left:671.848400pt;}
.x9d{left:672.889200pt;}
.x55{left:673.835733pt;}
.x7e{left:678.633600pt;}
.x7d{left:679.760800pt;}
.x7b{left:680.957867pt;}
.x74{left:686.657600pt;}
.x8b{left:689.701867pt;}
.x4f{left:691.689733pt;}
}




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