
    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_4ba8f9b905e6d9157b362fb3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_e92f2f1e1adbd7ab1a200269.woff')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_93356dc4e9140a118e4ddd30.woff')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_b5f313fbb3846787035774fe.woff')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_99b5f82eb6f2f88a67d1c52f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_1899ff2ef3e2c0f491c9016f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_6daf32bb03a92d9ba7cfc5d6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a1745734eb5ac26e6ca52b4e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.144000;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_cd7c53d51ba8a1db9993b604.woff')format("woff");}.ff9{font-family:ff9;line-height:0.677246;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_cba3e15bab688d8546c8a41d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.328000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400011px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls38{letter-spacing:-1.377000px;}
.ls39{letter-spacing:-0.969000px;}
.ls37{letter-spacing:-0.765000px;}
.ls2b{letter-spacing:-0.420000px;}
.ls63{letter-spacing:-0.408000px;}
.ls29{letter-spacing:-0.360000px;}
.ls65{letter-spacing:-0.357000px;}
.lse{letter-spacing:-0.300000px;}
.ls34{letter-spacing:-0.240000px;}
.ls64{letter-spacing:-0.204000px;}
.ls2a{letter-spacing:-0.180000px;}
.ls66{letter-spacing:-0.153000px;}
.ls2c{letter-spacing:-0.120000px;}
.ls3a{letter-spacing:-0.102000px;}
.lsc{letter-spacing:-0.060000px;}
.ls62{letter-spacing:-0.051000px;}
.lsb{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000037px;}
.ls1{letter-spacing:0.000085px;}
.ls1c{letter-spacing:0.030000px;}
.ls8f{letter-spacing:0.030600px;}
.ls51{letter-spacing:0.051000px;}
.ls26{letter-spacing:0.060000px;}
.ls56{letter-spacing:0.102000px;}
.ls5{letter-spacing:0.120000px;}
.ls2d{letter-spacing:0.150000px;}
.ls4f{letter-spacing:0.153000px;}
.ls90{letter-spacing:0.173377px;}
.ls8{letter-spacing:0.178791px;}
.ls6{letter-spacing:0.180000px;}
.ls50{letter-spacing:0.204000px;}
.ls2{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.255000px;}
.ls52{letter-spacing:0.264000px;}
.ls1d{letter-spacing:0.276000px;}
.ls57{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls89{letter-spacing:0.305976px;}
.ls7b{letter-spacing:0.305988px;}
.ls7e{letter-spacing:0.305994px;}
.ls70{letter-spacing:0.306000px;}
.ls28{letter-spacing:0.330000px;}
.ls78{letter-spacing:0.331500px;}
.ls55{letter-spacing:0.357000px;}
.ls20{letter-spacing:0.359980px;}
.ls15{letter-spacing:0.359992px;}
.ls23{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.362100px;}
.ls7a{letter-spacing:0.408000px;}
.lsd{letter-spacing:0.420000px;}
.ls45{letter-spacing:0.450000px;}
.ls53{letter-spacing:0.459000px;}
.ls19{letter-spacing:0.480000px;}
.ls7c{letter-spacing:0.484500px;}
.ls32{letter-spacing:0.510000px;}
.ls7{letter-spacing:0.540000px;}
.ls4e{letter-spacing:0.561000px;}
.ls12{letter-spacing:0.570000px;}
.ls8b{letter-spacing:0.586500px;}
.ls1a{letter-spacing:0.600000px;}
.ls54{letter-spacing:0.612000px;}
.ls30{letter-spacing:0.630000px;}
.ls5c{letter-spacing:0.637500px;}
.ls3{letter-spacing:0.660000px;}
.ls71{letter-spacing:0.663000px;}
.ls31{letter-spacing:0.690000px;}
.ls17{letter-spacing:0.707963px;}
.ls67{letter-spacing:0.714000px;}
.ls14{letter-spacing:0.720000px;}
.ls4a{letter-spacing:0.744000px;}
.ls33{letter-spacing:0.750000px;}
.ls59{letter-spacing:0.765000px;}
.lsf{letter-spacing:0.780000px;}
.ls80{letter-spacing:0.790500px;}
.ls27{letter-spacing:0.810000px;}
.ls58{letter-spacing:0.816000px;}
.ls8c{letter-spacing:0.821100px;}
.ls22{letter-spacing:0.840000px;}
.ls11{letter-spacing:0.851952px;}
.ls5e{letter-spacing:0.867000px;}
.ls2e{letter-spacing:0.870000px;}
.ls69{letter-spacing:0.892500px;}
.ls1f{letter-spacing:0.900000px;}
.ls5f{letter-spacing:0.918000px;}
.ls1b{letter-spacing:0.960000px;}
.ls6c{letter-spacing:0.969000px;}
.ls35{letter-spacing:0.990000px;}
.ls36{letter-spacing:1.020000px;}
.ls6f{letter-spacing:1.071000px;}
.ls16{letter-spacing:1.080000px;}
.ls3d{letter-spacing:1.110000px;}
.ls60{letter-spacing:1.122000px;}
.ls13{letter-spacing:1.140000px;}
.ls94{letter-spacing:1.147500px;}
.ls7d{letter-spacing:1.173000px;}
.ls1e{letter-spacing:1.200000px;}
.ls84{letter-spacing:1.224000px;}
.ls85{letter-spacing:1.249500px;}
.ls18{letter-spacing:1.260000px;}
.ls77{letter-spacing:1.274982px;}
.ls6e{letter-spacing:1.275000px;}
.ls10{letter-spacing:1.320000px;}
.ls83{letter-spacing:1.326000px;}
.ls8d{letter-spacing:1.377000px;}
.ls21{letter-spacing:1.380000px;}
.ls5d{letter-spacing:1.382094px;}
.ls3b{letter-spacing:1.410000px;}
.ls79{letter-spacing:1.428000px;}
.ls24{letter-spacing:1.440000px;}
.ls76{letter-spacing:1.479000px;}
.ls25{letter-spacing:1.500000px;}
.ls40{letter-spacing:1.530000px;}
.ls43{letter-spacing:1.560000px;}
.ls8a{letter-spacing:1.581000px;}
.ls49{letter-spacing:1.620000px;}
.ls74{letter-spacing:1.632000px;}
.ls3c{letter-spacing:1.680000px;}
.ls72{letter-spacing:1.683000px;}
.ls87{letter-spacing:1.734000px;}
.ls3f{letter-spacing:1.770000px;}
.ls7f{letter-spacing:1.785000px;}
.ls2f{letter-spacing:1.800000px;}
.ls81{letter-spacing:1.836000px;}
.ls46{letter-spacing:1.860000px;}
.ls91{letter-spacing:1.887000px;}
.ls4d{letter-spacing:1.920000px;}
.ls5b{letter-spacing:1.932864px;}
.ls6d{letter-spacing:1.938000px;}
.ls4b{letter-spacing:1.950000px;}
.ls44{letter-spacing:1.980000px;}
.ls41{letter-spacing:2.010000px;}
.ls48{letter-spacing:2.040000px;}
.ls3e{letter-spacing:2.100000px;}
.ls42{letter-spacing:2.160000px;}
.ls4c{letter-spacing:2.280000px;}
.ls5a{letter-spacing:2.289900px;}
.ls95{letter-spacing:2.340900px;}
.ls68{letter-spacing:2.346000px;}
.ls61{letter-spacing:2.448000px;}
.ls47{letter-spacing:2.520000px;}
.ls92{letter-spacing:2.601000px;}
.ls86{letter-spacing:2.968200px;}
.ls93{letter-spacing:3.100768px;}
.ls6a{letter-spacing:3.417000px;}
.ls0{letter-spacing:3.990000px;}
.ls8e{letter-spacing:4.176900px;}
.ls73{letter-spacing:4.819500px;}
.ls75{letter-spacing:4.947000px;}
.ls88{letter-spacing:5.441700px;}
.ls82{letter-spacing:5.905800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4c{word-spacing:-15.780000px;}
.ws18{word-spacing:-15.300000px;}
.ws9a{word-spacing:-13.719000px;}
.ws7d{word-spacing:-13.515000px;}
.ws9b{word-spacing:-13.362000px;}
.ws7b{word-spacing:-13.005000px;}
.ws7c{word-spacing:-12.852000px;}
.ws42{word-spacing:-12.750000px;}
.ws2{word-spacing:-12.420000px;}
.ws64{word-spacing:-11.985000px;}
.ws68{word-spacing:-11.781000px;}
.ws7{word-spacing:-11.760000px;}
.ws6{word-spacing:-11.640000px;}
.ws8{word-spacing:-11.520000px;}
.ws5{word-spacing:-11.460000px;}
.ws66{word-spacing:-11.373000px;}
.ws1{word-spacing:-9.996000px;}
.ws3{word-spacing:-8.694000px;}
.ws67{word-spacing:-6.375000px;}
.ws78{word-spacing:-1.920000px;}
.wsb1{word-spacing:-1.836000px;}
.wsad{word-spacing:-1.785000px;}
.ws69{word-spacing:-1.734000px;}
.wsa8{word-spacing:-1.683000px;}
.wsa9{word-spacing:-1.632000px;}
.ws37{word-spacing:-1.560000px;}
.wsb{word-spacing:-1.500000px;}
.ws31{word-spacing:-1.440000px;}
.wsc6{word-spacing:-1.428000px;}
.ws33{word-spacing:-1.380000px;}
.ws83{word-spacing:-1.326000px;}
.ws1b{word-spacing:-1.320000px;}
.ws81{word-spacing:-1.275000px;}
.ws23{word-spacing:-1.260000px;}
.wsb3{word-spacing:-1.224000px;}
.ws2f{word-spacing:-1.200000px;}
.ws24{word-spacing:-1.140000px;}
.ws95{word-spacing:-1.122000px;}
.ws20{word-spacing:-1.080000px;}
.ws89{word-spacing:-1.071000px;}
.wsf{word-spacing:-1.020000px;}
.ws80{word-spacing:-0.969000px;}
.ws6f{word-spacing:-0.960000px;}
.wsa0{word-spacing:-0.918000px;}
.ws2c{word-spacing:-0.900000px;}
.wsbf{word-spacing:-0.867000px;}
.ws1e{word-spacing:-0.840000px;}
.wsa4{word-spacing:-0.816000px;}
.ws50{word-spacing:-0.780000px;}
.ws88{word-spacing:-0.765000px;}
.wsd{word-spacing:-0.720000px;}
.ws8a{word-spacing:-0.714000px;}
.ws7a{word-spacing:-0.660000px;}
.ws16{word-spacing:-0.612000px;}
.ws59{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.570000px;}
.ws3c{word-spacing:-0.540000px;}
.ws87{word-spacing:-0.510000px;}
.ws4a{word-spacing:-0.480000px;}
.wsba{word-spacing:-0.459000px;}
.wse{word-spacing:-0.420000px;}
.ws86{word-spacing:-0.408000px;}
.ws38{word-spacing:-0.360000px;}
.wsa3{word-spacing:-0.357000px;}
.ws4{word-spacing:-0.300000px;}
.ws85{word-spacing:-0.264000px;}
.ws8f{word-spacing:-0.255000px;}
.ws11{word-spacing:-0.240000px;}
.ws94{word-spacing:-0.204000px;}
.ws13{word-spacing:-0.180000px;}
.ws92{word-spacing:-0.153000px;}
.ws6d{word-spacing:-0.120000px;}
.wsbc{word-spacing:-0.102000px;}
.ws17{word-spacing:-0.072000px;}
.ws48{word-spacing:-0.060000px;}
.ws6a{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.ws9f{word-spacing:0.051000px;}
.ws58{word-spacing:0.060000px;}
.ws6b{word-spacing:0.102000px;}
.ws4f{word-spacing:0.120000px;}
.wsaa{word-spacing:0.153000px;}
.ws57{word-spacing:0.180000px;}
.wsc7{word-spacing:0.204000px;}
.ws2e{word-spacing:0.240000px;}
.wsab{word-spacing:0.255000px;}
.ws12{word-spacing:0.300000px;}
.wsa6{word-spacing:0.357000px;}
.ws29{word-spacing:0.360000px;}
.wsb9{word-spacing:0.459000px;}
.wsb8{word-spacing:0.510000px;}
.ws35{word-spacing:0.600000px;}
.wsa5{word-spacing:0.612000px;}
.ws14{word-spacing:0.660000px;}
.ws74{word-spacing:0.720000px;}
.ws36{word-spacing:0.780000px;}
.ws5d{word-spacing:0.840000px;}
.wsb4{word-spacing:0.867000px;}
.ws1d{word-spacing:0.900000px;}
.ws93{word-spacing:0.918000px;}
.ws56{word-spacing:0.960000px;}
.ws90{word-spacing:0.969000px;}
.ws75{word-spacing:1.020000px;}
.wsb5{word-spacing:1.071000px;}
.ws2d{word-spacing:1.140000px;}
.ws84{word-spacing:1.173000px;}
.ws5e{word-spacing:1.200000px;}
.ws8d{word-spacing:1.224000px;}
.ws30{word-spacing:1.260000px;}
.ws82{word-spacing:1.275000px;}
.ws10{word-spacing:1.320000px;}
.wsbd{word-spacing:1.377000px;}
.ws55{word-spacing:1.380000px;}
.ws5a{word-spacing:1.440000px;}
.wsc{word-spacing:1.500000px;}
.ws41{word-spacing:1.560000px;}
.wsb7{word-spacing:1.581000px;}
.ws51{word-spacing:1.620000px;}
.ws9c{word-spacing:1.632000px;}
.ws19{word-spacing:1.680000px;}
.wsa1{word-spacing:1.683000px;}
.ws54{word-spacing:1.740000px;}
.ws8e{word-spacing:1.785000px;}
.ws3f{word-spacing:1.800000px;}
.ws4d{word-spacing:1.860000px;}
.ws34{word-spacing:1.920000px;}
.wsc5{word-spacing:1.938000px;}
.ws91{word-spacing:1.989000px;}
.ws4b{word-spacing:2.040000px;}
.ws8b{word-spacing:2.091000px;}
.ws2a{word-spacing:2.100000px;}
.ws8c{word-spacing:2.142000px;}
.ws46{word-spacing:2.160000px;}
.wsc4{word-spacing:2.193000px;}
.ws3e{word-spacing:2.220000px;}
.wsaf{word-spacing:2.244000px;}
.ws5b{word-spacing:2.280000px;}
.ws2b{word-spacing:2.340000px;}
.wsbb{word-spacing:2.346000px;}
.ws3d{word-spacing:2.400000px;}
.ws27{word-spacing:2.460000px;}
.wsc2{word-spacing:2.499000px;}
.ws70{word-spacing:2.520000px;}
.ws96{word-spacing:2.550000px;}
.ws6c{word-spacing:2.580000px;}
.ws97{word-spacing:2.601000px;}
.ws5c{word-spacing:2.640000px;}
.ws61{word-spacing:2.700000px;}
.wsc0{word-spacing:2.754000px;}
.ws9d{word-spacing:2.805000px;}
.ws76{word-spacing:2.820000px;}
.wsb2{word-spacing:2.958000px;}
.ws47{word-spacing:3.000000px;}
.wsa7{word-spacing:3.009000px;}
.ws1f{word-spacing:3.060000px;}
.wsbe{word-spacing:3.111000px;}
.ws79{word-spacing:3.120000px;}
.ws40{word-spacing:3.240000px;}
.ws53{word-spacing:3.300000px;}
.wsb6{word-spacing:3.315000px;}
.ws1c{word-spacing:3.360000px;}
.ws72{word-spacing:3.420000px;}
.wsae{word-spacing:3.519000px;}
.ws98{word-spacing:3.570000px;}
.ws52{word-spacing:3.600000px;}
.ws9e{word-spacing:3.621000px;}
.ws60{word-spacing:3.660000px;}
.ws28{word-spacing:3.780000px;}
.wsb0{word-spacing:3.825000px;}
.ws43{word-spacing:3.840000px;}
.ws5f{word-spacing:3.900000px;}
.ws3a{word-spacing:3.960000px;}
.ws26{word-spacing:4.020000px;}
.wsc1{word-spacing:4.029000px;}
.ws21{word-spacing:4.080000px;}
.wsac{word-spacing:4.131000px;}
.ws22{word-spacing:4.140000px;}
.ws6e{word-spacing:4.200000px;}
.ws44{word-spacing:4.260000px;}
.wsa2{word-spacing:4.284000px;}
.ws1a{word-spacing:4.320000px;}
.ws4e{word-spacing:4.380000px;}
.ws62{word-spacing:4.386000px;}
.ws25{word-spacing:4.440000px;}
.ws71{word-spacing:4.500000px;}
.ws7f{word-spacing:4.680000px;}
.ws32{word-spacing:4.740000px;}
.ws77{word-spacing:4.800000px;}
.ws39{word-spacing:4.920000px;}
.ws7e{word-spacing:4.980000px;}
.ws45{word-spacing:5.220000px;}
.ws3b{word-spacing:5.340000px;}
.ws73{word-spacing:6.180000px;}
.ws49{word-spacing:6.540000px;}
.wsc3{word-spacing:7.446000px;}
.ws99{word-spacing:10.455000px;}
.wsc8{word-spacing:13.515000px;}
.wsc9{word-spacing:17.595000px;}
.ws63{word-spacing:20.298000px;}
.ws15{word-spacing:72.267000px;}
.ws65{word-spacing:232.457992px;}
._3d{margin-left:-18.972000px;}
._8{margin-left:-16.575000px;}
._10{margin-left:-14.574001px;}
._3e{margin-left:-12.444000px;}
._3a{margin-left:-11.373000px;}
._31{margin-left:-9.180000px;}
._30{margin-left:-6.723300px;}
._3{margin-left:-5.664000px;}
._4{margin-left:-4.128000px;}
._2{margin-left:-2.756700px;}
._0{margin-left:-1.632000px;}
._1{width:1.575900px;}
._2f{width:3.690000px;}
._14{width:5.568000px;}
._33{width:6.579000px;}
._35{width:8.262000px;}
._39{width:10.608000px;}
._32{width:12.138000px;}
._7{width:13.499990px;}
._e{width:15.150000px;}
._6{width:17.172000px;}
._9{width:18.360000px;}
._3f{width:19.635000px;}
._3b{width:20.808000px;}
._40{width:21.816001px;}
._3c{width:23.154000px;}
._38{width:24.684000px;}
._34{width:25.908000px;}
._36{width:27.081000px;}
._37{width:29.631000px;}
._41{width:31.722000px;}
._17{width:38.300991px;}
._5{width:39.326515px;}
._13{width:49.098001px;}
._b{width:54.621000px;}
._11{width:56.150701px;}
._f{width:66.774001px;}
._15{width:70.889991px;}
._a{width:72.267000px;}
._1d{width:76.653000px;}
._27{width:84.915000px;}
._2b{width:88.842000px;}
._12{width:91.140000px;}
._1e{width:118.370994px;}
._2a{width:120.003000px;}
._2c{width:122.859000px;}
._25{width:128.366994px;}
._d{width:131.520000px;}
._1c{width:136.272000px;}
._21{width:142.295094px;}
._29{width:147.237000px;}
._2e{width:154.122000px;}
._1a{width:163.608000px;}
._18{width:166.413000px;}
._20{width:181.508994px;}
._28{width:186.405000px;}
._23{width:189.158994px;}
._22{width:193.646994px;}
._19{width:211.701000px;}
._26{width:223.635000px;}
._1f{width:248.727006px;}
._2d{width:281.979000px;}
._24{width:315.281994px;}
._1b{width:437.018994px;}
._16{width:1847.526068px;}
._c{width:2347.376978px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.829002px;}
.y17f{bottom:112.932033px;}
.y16c{bottom:112.932077px;}
.y15a{bottom:112.932120px;}
.y153{bottom:112.932152px;}
.y1bb{bottom:112.932183px;}
.y1a9{bottom:112.932226px;}
.y197{bottom:112.932268px;}
.y152{bottom:112.932300px;}
.y2c{bottom:112.962300px;}
.y9b{bottom:113.415298px;}
.y104{bottom:113.544296px;}
.y69{bottom:114.432312px;}
.y144{bottom:114.735260px;}
.y126{bottom:114.735306px;}
.y235{bottom:114.738316px;}
.y2c7{bottom:116.614823px;}
.y151{bottom:121.368160px;}
.y180{bottom:121.933533px;}
.y16d{bottom:121.933577px;}
.y15b{bottom:121.933620px;}
.y1bc{bottom:121.933683px;}
.y1aa{bottom:121.933726px;}
.y198{bottom:121.933768px;}
.yd5{bottom:122.609978px;}
.y285{bottom:126.814797px;}
.y2b{bottom:127.956300px;}
.y200{bottom:131.283325px;}
.y2c6{bottom:131.608823px;}
.y308{bottom:132.004073px;}
.y9a{bottom:132.165298px;}
.y103{bottom:132.294296px;}
.y24e{bottom:132.928794px;}
.y68{bottom:133.182312px;}
.y143{bottom:133.485260px;}
.y125{bottom:133.485306px;}
.y234{bottom:133.488316px;}
.yd4{bottom:137.603978px;}
.y150{bottom:140.161660px;}
.y284{bottom:141.808797px;}
.y2a{bottom:142.950300px;}
.y2c5{bottom:146.602823px;}
.y307{bottom:146.998073px;}
.y24d{bottom:147.922794px;}
.y1ff{bottom:150.033325px;}
.y99{bottom:150.915298px;}
.y102{bottom:151.044296px;}
.y67{bottom:151.932312px;}
.y142{bottom:152.235260px;}
.y124{bottom:152.235306px;}
.y233{bottom:152.238316px;}
.yd2{bottom:156.384728px;}
.y283{bottom:156.802797px;}
.y29{bottom:157.944300px;}
.y14f{bottom:158.878660px;}
.y2c4{bottom:161.596823px;}
.y306{bottom:161.992073px;}
.y1fe{bottom:168.783325px;}
.y98{bottom:169.665298px;}
.y101{bottom:169.794296px;}
.y66{bottom:170.682312px;}
.y141{bottom:170.985260px;}
.y123{bottom:170.985306px;}
.y232{bottom:170.988316px;}
.yd1{bottom:171.378728px;}
.y282{bottom:171.796797px;}
.y28{bottom:172.938300px;}
.y2c3{bottom:176.590823px;}
.y305{bottom:176.986073px;}
.y14e{bottom:177.595660px;}
.y24c{bottom:177.923544px;}
.y37{bottom:180.527995px;}
.yd0{bottom:186.372728px;}
.yd3{bottom:186.385478px;}
.y281{bottom:186.790797px;}
.y1fd{bottom:187.533325px;}
.y97{bottom:188.415298px;}
.y100{bottom:188.544296px;}
.y65{bottom:189.432312px;}
.y140{bottom:189.735260px;}
.y122{bottom:189.735306px;}
.y231{bottom:189.738316px;}
.y129{bottom:189.840305px;}
.y2c2{bottom:191.584823px;}
.y304{bottom:191.980073px;}
.y24b{bottom:192.917544px;}
.y27{bottom:193.032303px;}
.y36{bottom:195.521995px;}
.y14d{bottom:196.312660px;}
.y280{bottom:201.784797px;}
.ycf{bottom:205.089728px;}
.y1fc{bottom:206.283325px;}
.y2c1{bottom:206.578823px;}
.y303{bottom:206.974073px;}
.y96{bottom:207.165298px;}
.yff{bottom:207.294296px;}
.y64{bottom:208.182312px;}
.y13f{bottom:208.485260px;}
.y121{bottom:208.485306px;}
.y230{bottom:208.488316px;}
.y35{bottom:210.515995px;}
.y181{bottom:211.655283px;}
.y16e{bottom:211.655327px;}
.y15c{bottom:211.655370px;}
.y1bd{bottom:211.655433px;}
.y1ab{bottom:211.655476px;}
.y199{bottom:211.655518px;}
.y14c{bottom:215.029660px;}
.y27f{bottom:216.778797px;}
.y26{bottom:218.066541px;}
.yce{bottom:220.083728px;}
.y182{bottom:220.656783px;}
.y16f{bottom:220.656827px;}
.y15d{bottom:220.656870px;}
.y1be{bottom:220.656933px;}
.y1ac{bottom:220.656976px;}
.y19a{bottom:220.657018px;}
.y2c0{bottom:221.572823px;}
.y302{bottom:221.968073px;}
.y24a{bottom:222.918294px;}
.y1fb{bottom:225.033325px;}
.y95{bottom:225.915298px;}
.yfe{bottom:226.044296px;}
.y63{bottom:226.932312px;}
.y13e{bottom:227.235260px;}
.y120{bottom:227.235306px;}
.y22f{bottom:227.238316px;}
.y34{bottom:230.609848px;}
.y27e{bottom:231.772797px;}
.y25{bottom:233.060541px;}
.y14b{bottom:233.746660px;}
.y2bf{bottom:236.566823px;}
.y301{bottom:236.962073px;}
.y249{bottom:237.912294px;}
.ycc{bottom:238.800728px;}
.y1fa{bottom:243.783325px;}
.y94{bottom:244.665298px;}
.yfd{bottom:244.794296px;}
.y62{bottom:245.682312px;}
.y13d{bottom:245.985260px;}
.y11f{bottom:245.985306px;}
.y22e{bottom:245.988316px;}
.y27d{bottom:246.766797px;}
.y33{bottom:248.081259px;}
.y2be{bottom:251.560823px;}
.y300{bottom:251.956073px;}
.y14a{bottom:252.463660px;}
.y248{bottom:252.906294px;}
.ycb{bottom:253.794728px;}
.y24{bottom:255.602541px;}
.y27c{bottom:261.760797px;}
.y1f9{bottom:262.533325px;}
.y32{bottom:263.075259px;}
.y93{bottom:263.415298px;}
.yfc{bottom:263.544296px;}
.y61{bottom:264.432312px;}
.y13c{bottom:264.735260px;}
.y11e{bottom:264.735306px;}
.y22d{bottom:264.738316px;}
.y2bd{bottom:266.554823px;}
.y2ff{bottom:266.950073px;}
.y247{bottom:267.900294px;}
.yca{bottom:268.788728px;}
.y23{bottom:270.596541px;}
.y27b{bottom:276.754797px;}
.y31{bottom:278.069259px;}
.y149{bottom:280.551910px;}
.y1f8{bottom:281.283325px;}
.y2bc{bottom:281.548823px;}
.y2fe{bottom:281.944073px;}
.y92{bottom:282.165298px;}
.yfb{bottom:282.294296px;}
.y246{bottom:282.894294px;}
.y60{bottom:283.182312px;}
.y13b{bottom:283.485260px;}
.y11d{bottom:283.485306px;}
.y22c{bottom:283.488316px;}
.yc9{bottom:283.782728px;}
.ycd{bottom:283.795478px;}
.y27a{bottom:291.748797px;}
.y30{bottom:293.063259px;}
.y22{bottom:293.138541px;}
.y2bb{bottom:296.542823px;}
.y2fd{bottom:296.938073px;}
.y245{bottom:297.888294px;}
.y1f7{bottom:300.033325px;}
.y91{bottom:300.915298px;}
.yfa{bottom:301.044296px;}
.y5f{bottom:301.932312px;}
.y13a{bottom:302.235260px;}
.y11c{bottom:302.235306px;}
.y22b{bottom:302.238316px;}
.yc8{bottom:302.499728px;}
.y148{bottom:306.052930px;}
.y279{bottom:306.742797px;}
.y21{bottom:308.132541px;}
.y183{bottom:311.041533px;}
.y170{bottom:311.041577px;}
.y15e{bottom:311.041620px;}
.y1bf{bottom:311.041683px;}
.y1ad{bottom:311.041726px;}
.y19b{bottom:311.041768px;}
.y2ba{bottom:311.536823px;}
.y2fc{bottom:311.932073px;}
.y244{bottom:312.882294px;}
.y2f{bottom:313.157249px;}
.yc7{bottom:317.493728px;}
.y1f6{bottom:318.783325px;}
.y90{bottom:319.665298px;}
.yf9{bottom:319.794296px;}
.y171{bottom:320.043077px;}
.y15f{bottom:320.043120px;}
.y1ae{bottom:320.043226px;}
.y19c{bottom:320.043268px;}
.y5e{bottom:320.682312px;}
.y139{bottom:320.985260px;}
.y11b{bottom:320.985306px;}
.y22a{bottom:320.988316px;}
.y147{bottom:321.046930px;}
.y278{bottom:321.736797px;}
.y2b9{bottom:326.530823px;}
.y2fb{bottom:326.926073px;}
.y2e{bottom:330.610500px;}
.y20{bottom:330.674541px;}
.yc4{bottom:336.197978px;}
.y277{bottom:336.730797px;}
.y1f5{bottom:337.533325px;}
.y8f{bottom:338.415298px;}
.yf8{bottom:338.544296px;}
.y5d{bottom:339.432312px;}
.y138{bottom:339.735260px;}
.y11a{bottom:339.735306px;}
.y229{bottom:339.738316px;}
.y2b8{bottom:341.524823px;}
.y2fa{bottom:341.920073px;}
.y1f{bottom:345.668541px;}
.y2d{bottom:350.704491px;}
.yc3{bottom:351.191978px;}
.yc6{bottom:351.204728px;}
.y276{bottom:351.724797px;}
.y1f4{bottom:356.283325px;}
.y2b7{bottom:356.518823px;}
.y2f9{bottom:356.914073px;}
.y8e{bottom:357.165298px;}
.yf7{bottom:357.294296px;}
.y5c{bottom:358.182312px;}
.y137{bottom:358.485260px;}
.y119{bottom:358.485306px;}
.y228{bottom:358.488316px;}
.y243{bottom:361.632294px;}
.yc2{bottom:366.185978px;}
.yc5{bottom:366.198728px;}
.y275{bottom:366.718797px;}
.y2b6{bottom:371.512823px;}
.y146{bottom:371.536930px;}
.y2f8{bottom:371.908073px;}
.y1f3{bottom:375.033325px;}
.y8d{bottom:375.915298px;}
.yf6{bottom:376.044296px;}
.y5b{bottom:376.932312px;}
.y136{bottom:377.235260px;}
.y118{bottom:377.235306px;}
.y227{bottom:377.238316px;}
.y242{bottom:380.382294px;}
.y274{bottom:381.712797px;}
.yc1{bottom:384.902978px;}
.y2b5{bottom:386.506823px;}
.y145{bottom:386.530930px;}
.y2f7{bottom:386.902073px;}
.y1f2{bottom:393.783325px;}
.yf5{bottom:394.794296px;}
.y5a{bottom:395.682312px;}
.y135{bottom:395.985260px;}
.y117{bottom:395.985306px;}
.y226{bottom:395.988316px;}
.y273{bottom:396.706797px;}
.y241{bottom:399.132294px;}
.yc0{bottom:399.896978px;}
.y2b4{bottom:401.500823px;}
.y2f6{bottom:401.896073px;}
.y184{bottom:409.114533px;}
.y172{bottom:409.114577px;}
.y160{bottom:409.114620px;}
.y154{bottom:409.114652px;}
.y1c1{bottom:409.114683px;}
.y1af{bottom:409.114726px;}
.y19d{bottom:409.114768px;}
.y191{bottom:409.114800px;}
.y272{bottom:411.700797px;}
.y1f1{bottom:412.533325px;}
.y8c{bottom:413.415298px;}
.yf4{bottom:413.544296px;}
.y59{bottom:414.432312px;}
.y134{bottom:414.735260px;}
.y116{bottom:414.735306px;}
.y225{bottom:414.738316px;}
.y2b3{bottom:416.494823px;}
.y2f5{bottom:416.890073px;}
.y240{bottom:417.882294px;}
.y185{bottom:418.116033px;}
.y173{bottom:418.116077px;}
.y161{bottom:418.116120px;}
.y1c0{bottom:418.116183px;}
.y1b0{bottom:418.116226px;}
.y19e{bottom:418.116268px;}
.ybe{bottom:418.613978px;}
.y271{bottom:426.694797px;}
.y1f0{bottom:431.283325px;}
.y2b2{bottom:431.488823px;}
.y2f4{bottom:431.884073px;}
.yf3{bottom:432.294296px;}
.y58{bottom:433.182312px;}
.y133{bottom:433.485260px;}
.y115{bottom:433.485306px;}
.y224{bottom:433.488316px;}
.ybd{bottom:433.607978px;}
.y23f{bottom:436.632294px;}
.y1e{bottom:441.211395px;}
.y270{bottom:441.688797px;}
.y2b1{bottom:446.482823px;}
.y2f3{bottom:446.878073px;}
.ybc{bottom:448.601978px;}
.ybf{bottom:448.614728px;}
.y1ef{bottom:450.033325px;}
.yf2{bottom:451.044296px;}
.y57{bottom:451.932312px;}
.y132{bottom:452.235260px;}
.y114{bottom:452.235306px;}
.y223{bottom:452.238316px;}
.y23e{bottom:455.382294px;}
.y26f{bottom:456.682797px;}
.y2b0{bottom:461.476823px;}
.y2f2{bottom:461.872073px;}
.ybb{bottom:467.318978px;}
.y1ee{bottom:468.783325px;}
.y8b{bottom:469.662300px;}
.yf1{bottom:469.794296px;}
.y56{bottom:470.682312px;}
.y131{bottom:470.985260px;}
.y113{bottom:470.985306px;}
.y222{bottom:470.988316px;}
.y26e{bottom:471.676797px;}
.y23d{bottom:474.132294px;}
.y2af{bottom:476.470823px;}
.y2f1{bottom:476.866073px;}
.y1d{bottom:478.711395px;}
.yba{bottom:482.312978px;}
.y26d{bottom:486.670797px;}
.y1ed{bottom:487.533325px;}
.y8a{bottom:488.412300px;}
.yf0{bottom:488.544296px;}
.y55{bottom:489.432312px;}
.y130{bottom:489.735260px;}
.y112{bottom:489.735306px;}
.y221{bottom:489.738316px;}
.y2ae{bottom:491.464823px;}
.y2f0{bottom:491.860073px;}
.y23c{bottom:492.882294px;}
.y1c{bottom:497.461395px;}
.yb9{bottom:501.029978px;}
.y26c{bottom:501.664797px;}
.y1ec{bottom:506.283325px;}
.y2ad{bottom:506.458823px;}
.y2ef{bottom:506.854073px;}
.y89{bottom:507.162300px;}
.yef{bottom:507.294296px;}
.y54{bottom:508.182312px;}
.y12f{bottom:508.485260px;}
.y111{bottom:508.485306px;}
.y220{bottom:508.488316px;}
.y23b{bottom:511.632294px;}
.y186{bottom:515.271033px;}
.y174{bottom:515.271075px;}
.y162{bottom:515.271119px;}
.y155{bottom:515.271152px;}
.y1c2{bottom:515.271181px;}
.y1b1{bottom:515.271225px;}
.y19f{bottom:515.271268px;}
.y192{bottom:515.271300px;}
.yb8{bottom:516.023978px;}
.y1b{bottom:516.211395px;}
.y26b{bottom:516.658797px;}
.y2ac{bottom:521.452823px;}
.y2ee{bottom:521.848073px;}
.y187{bottom:524.272533px;}
.y175{bottom:524.272575px;}
.y163{bottom:524.272619px;}
.y1c3{bottom:524.272681px;}
.y1b2{bottom:524.272725px;}
.y1a0{bottom:524.272768px;}
.y1eb{bottom:525.033325px;}
.y88{bottom:525.912300px;}
.yee{bottom:526.044296px;}
.y53{bottom:526.932312px;}
.y12e{bottom:527.235260px;}
.y110{bottom:527.235306px;}
.y21f{bottom:527.238316px;}
.y23a{bottom:530.382294px;}
.y26a{bottom:531.652797px;}
.y1a{bottom:534.961395px;}
.y2ab{bottom:536.446823px;}
.y2ed{bottom:536.842073px;}
.y1ea{bottom:543.783325px;}
.yb7{bottom:544.112228px;}
.y87{bottom:544.662300px;}
.yed{bottom:544.794296px;}
.y52{bottom:545.682312px;}
.y12d{bottom:545.985260px;}
.y10f{bottom:545.985306px;}
.y21e{bottom:545.988316px;}
.y269{bottom:546.646797px;}
.y239{bottom:549.132294px;}
.y2aa{bottom:551.440823px;}
.y2ec{bottom:551.836073px;}
.y19{bottom:553.711395px;}
.y268{bottom:561.640797px;}
.y1e9{bottom:562.533325px;}
.y86{bottom:563.412300px;}
.yec{bottom:563.544296px;}
.y51{bottom:564.432312px;}
.y12c{bottom:564.735260px;}
.y10e{bottom:564.735306px;}
.y21d{bottom:564.738316px;}
.y2a9{bottom:566.434823px;}
.y2eb{bottom:566.830073px;}
.y238{bottom:567.882294px;}
.yb6{bottom:569.602798px;}
.y18{bottom:572.461395px;}
.y267{bottom:576.634797px;}
.y1e8{bottom:581.283325px;}
.y2a8{bottom:581.428823px;}
.y2ea{bottom:581.824073px;}
.y85{bottom:582.162300px;}
.yeb{bottom:582.294296px;}
.y50{bottom:583.182312px;}
.y12b{bottom:583.485260px;}
.y10d{bottom:583.485306px;}
.y21c{bottom:583.488316px;}
.y237{bottom:586.632294px;}
.y17{bottom:591.211395px;}
.y266{bottom:591.628797px;}
.y2a7{bottom:596.422823px;}
.y2e9{bottom:596.818073px;}
.y1e7{bottom:600.033325px;}
.y84{bottom:600.912300px;}
.yea{bottom:601.044296px;}
.y4f{bottom:601.932312px;}
.y12a{bottom:602.235260px;}
.y10c{bottom:602.235306px;}
.y21b{bottom:602.238316px;}
.y265{bottom:606.622797px;}
.y16{bottom:609.961395px;}
.y2a6{bottom:611.416823px;}
.y2e8{bottom:611.812073px;}
.y189{bottom:613.866783px;}
.y177{bottom:613.866825px;}
.y165{bottom:613.866869px;}
.y156{bottom:613.866899px;}
.y1c5{bottom:613.866931px;}
.y1b4{bottom:613.866975px;}
.y1a2{bottom:613.867018px;}
.y193{bottom:613.867047px;}
.y1e6{bottom:618.783325px;}
.y83{bottom:619.662300px;}
.ye9{bottom:619.794296px;}
.y4e{bottom:620.682312px;}
.yb5{bottom:620.985260px;}
.y10b{bottom:620.985306px;}
.y21a{bottom:620.988316px;}
.y264{bottom:621.616797px;}
.y236{bottom:624.132294px;}
.y2a5{bottom:626.410823px;}
.y2e7{bottom:626.806073px;}
.y15{bottom:628.711395px;}
.y263{bottom:636.610797px;}
.y1e5{bottom:637.533325px;}
.y82{bottom:638.412300px;}
.ye8{bottom:638.544296px;}
.y4d{bottom:639.432312px;}
.yb4{bottom:639.735260px;}
.y219{bottom:639.738316px;}
.y2a4{bottom:641.404823px;}
.y2e6{bottom:641.800073px;}
.y14{bottom:647.461395px;}
.y262{bottom:651.604797px;}
.y1e4{bottom:656.283325px;}
.y2a3{bottom:656.398823px;}
.y2e5{bottom:656.794073px;}
.y81{bottom:657.162300px;}
.ye7{bottom:657.294296px;}
.y4c{bottom:658.182312px;}
.yb3{bottom:658.485260px;}
.y10a{bottom:658.485306px;}
.y218{bottom:658.488316px;}
.y13{bottom:666.211395px;}
.y2a2{bottom:671.392823px;}
.y2e4{bottom:671.788073px;}
.y188{bottom:674.939283px;}
.y176{bottom:674.939325px;}
.y164{bottom:674.939369px;}
.y1c4{bottom:674.939431px;}
.y1a1{bottom:674.939518px;}
.y1e3{bottom:675.033325px;}
.y80{bottom:675.912300px;}
.ye6{bottom:676.044296px;}
.y4b{bottom:676.932312px;}
.yb2{bottom:677.235260px;}
.y217{bottom:677.238316px;}
.y1cc{bottom:681.314325px;}
.y1b3{bottom:681.314475px;}
.y12{bottom:684.961395px;}
.y261{bottom:685.354797px;}
.y2a1{bottom:686.386823px;}
.y2e3{bottom:686.782073px;}
.y1e2{bottom:693.783325px;}
.y7f{bottom:694.662300px;}
.ye5{bottom:694.794296px;}
.y4a{bottom:695.682312px;}
.yb1{bottom:695.985260px;}
.y216{bottom:695.988316px;}
.y2a0{bottom:701.380823px;}
.y2e2{bottom:701.776073px;}
.y11{bottom:703.711395px;}
.y18a{bottom:711.060033px;}
.y178{bottom:711.060075px;}
.y166{bottom:711.060119px;}
.y157{bottom:711.060149px;}
.y1c6{bottom:711.060181px;}
.y1b5{bottom:711.060225px;}
.y1a3{bottom:711.060268px;}
.y194{bottom:711.060297px;}
.y1e1{bottom:712.533325px;}
.y7e{bottom:713.412300px;}
.ye4{bottom:713.544296px;}
.y49{bottom:714.432312px;}
.yb0{bottom:714.735260px;}
.y215{bottom:714.738316px;}
.y29f{bottom:716.374823px;}
.y2e1{bottom:716.770073px;}
.y10{bottom:722.461395px;}
.y1e0{bottom:731.283325px;}
.y29e{bottom:731.368823px;}
.y2e0{bottom:731.764073px;}
.y7d{bottom:732.162300px;}
.ye3{bottom:732.294296px;}
.y48{bottom:733.182312px;}
.yaf{bottom:733.485260px;}
.y214{bottom:733.488316px;}
.yf{bottom:741.211395px;}
.y29d{bottom:746.362823px;}
.y2df{bottom:746.758073px;}
.y1df{bottom:750.033325px;}
.y7c{bottom:750.912300px;}
.ye2{bottom:751.044296px;}
.y260{bottom:751.141842px;}
.y47{bottom:751.932312px;}
.yae{bottom:752.235260px;}
.y213{bottom:752.238316px;}
.ye{bottom:759.961395px;}
.y29c{bottom:761.356823px;}
.y2de{bottom:761.752073px;}
.y25f{bottom:766.135842px;}
.y1de{bottom:768.783325px;}
.y7b{bottom:769.662300px;}
.y46{bottom:770.682312px;}
.yad{bottom:770.985260px;}
.y212{bottom:770.988316px;}
.y29b{bottom:776.350823px;}
.y2dd{bottom:776.746073px;}
.yd{bottom:778.711395px;}
.y25e{bottom:781.129842px;}
.y1dd{bottom:787.533325px;}
.y7a{bottom:788.412300px;}
.ye1{bottom:788.544342px;}
.y45{bottom:789.432312px;}
.yac{bottom:789.735260px;}
.y211{bottom:789.738316px;}
.y29a{bottom:791.344823px;}
.y2dc{bottom:791.740073px;}
.y25d{bottom:796.123842px;}
.yc{bottom:797.461395px;}
.y1dc{bottom:806.283325px;}
.y299{bottom:806.338823px;}
.y2db{bottom:806.734073px;}
.y18c{bottom:806.901783px;}
.y17a{bottom:806.901825px;}
.y158{bottom:806.901899px;}
.y195{bottom:806.902047px;}
.y79{bottom:807.162300px;}
.y44{bottom:808.182312px;}
.yab{bottom:808.485260px;}
.y210{bottom:808.488316px;}
.y25c{bottom:811.117842px;}
.y18b{bottom:815.903283px;}
.y179{bottom:815.903325px;}
.y167{bottom:815.903369px;}
.y1c7{bottom:815.903431px;}
.y1b6{bottom:815.903475px;}
.y1a4{bottom:815.903518px;}
.yb{bottom:816.211395px;}
.y298{bottom:821.332823px;}
.y2da{bottom:821.728073px;}
.y1db{bottom:825.033325px;}
.y78{bottom:825.912300px;}
.y25b{bottom:826.111842px;}
.y43{bottom:826.932312px;}
.yaa{bottom:827.235260px;}
.y20f{bottom:827.238316px;}
.y297{bottom:836.326823px;}
.y2d9{bottom:836.722073px;}
.y25a{bottom:841.105842px;}
.y1da{bottom:843.783325px;}
.y77{bottom:844.662300px;}
.ye0{bottom:844.794342px;}
.y42{bottom:845.682312px;}
.ya9{bottom:845.985260px;}
.y20e{bottom:845.988316px;}
.y296{bottom:851.320823px;}
.y2d8{bottom:851.716073px;}
.y259{bottom:856.099842px;}
.ya{bottom:860.394153px;}
.y1d9{bottom:862.533325px;}
.y76{bottom:863.412300px;}
.ydf{bottom:863.544342px;}
.y41{bottom:864.432312px;}
.ya8{bottom:864.735260px;}
.y20d{bottom:864.738316px;}
.y295{bottom:866.314823px;}
.y2d7{bottom:866.710073px;}
.y258{bottom:871.093842px;}
.y9{bottom:875.388153px;}
.y1d8{bottom:881.283325px;}
.y294{bottom:881.308823px;}
.y2d6{bottom:881.704073px;}
.y75{bottom:882.162300px;}
.yde{bottom:882.294342px;}
.y40{bottom:883.182312px;}
.ya7{bottom:883.485260px;}
.y20c{bottom:883.488316px;}
.y257{bottom:886.087842px;}
.y293{bottom:896.302823px;}
.y2d5{bottom:896.698073px;}
.y1d7{bottom:900.033325px;}
.y74{bottom:900.912300px;}
.ydd{bottom:901.044342px;}
.y256{bottom:901.081842px;}
.ya6{bottom:902.235260px;}
.y20b{bottom:902.238316px;}
.y18d{bottom:904.056783px;}
.y17b{bottom:904.056825px;}
.y168{bottom:904.056869px;}
.y159{bottom:904.056898px;}
.y1c8{bottom:904.056931px;}
.y1b7{bottom:904.056975px;}
.y1a5{bottom:904.057018px;}
.y196{bottom:904.057046px;}
.y292{bottom:911.296823px;}
.y2d4{bottom:911.692073px;}
.y18e{bottom:913.058283px;}
.y17c{bottom:913.058325px;}
.y169{bottom:913.058369px;}
.y1c9{bottom:913.058431px;}
.y1b8{bottom:913.058475px;}
.y1a6{bottom:913.058518px;}
.y255{bottom:916.075842px;}
.y8{bottom:917.988190px;}
.y1d6{bottom:918.783325px;}
.y73{bottom:919.662300px;}
.ydc{bottom:919.794342px;}
.y3f{bottom:920.682312px;}
.ya5{bottom:920.985260px;}
.y20a{bottom:920.988316px;}
.y291{bottom:926.290823px;}
.y2d3{bottom:926.686073px;}
.y7{bottom:936.738190px;}
.y1d5{bottom:937.533325px;}
.y72{bottom:938.412300px;}
.ydb{bottom:938.544342px;}
.ya4{bottom:939.735260px;}
.y209{bottom:939.738316px;}
.y290{bottom:941.284823px;}
.y2d2{bottom:941.680073px;}
.y254{bottom:953.560842px;}
.y311{bottom:956.266074px;}
.y28f{bottom:956.278823px;}
.y1d4{bottom:956.283325px;}
.y2d1{bottom:956.674073px;}
.y71{bottom:957.162300px;}
.ya3{bottom:958.485260px;}
.y208{bottom:958.488316px;}
.y253{bottom:968.554842px;}
.y310{bottom:971.260074px;}
.y28e{bottom:971.272823px;}
.y2d0{bottom:971.668073px;}
.y1d3{bottom:975.033325px;}
.y70{bottom:975.912300px;}
.yda{bottom:976.044342px;}
.ya2{bottom:977.235260px;}
.y207{bottom:977.238316px;}
.y6{bottom:981.424622px;}
.y28d{bottom:986.266823px;}
.y2cf{bottom:986.662073px;}
.y1d2{bottom:993.783325px;}
.y6f{bottom:994.662300px;}
.y3e{bottom:994.665344px;}
.ya1{bottom:995.985260px;}
.y206{bottom:995.988316px;}
.y252{bottom:998.555592px;}
.y28c{bottom:1001.260823px;}
.y30f{bottom:1001.350073px;}
.y2ce{bottom:1001.656073px;}
.y18f{bottom:1002.729031px;}
.y17d{bottom:1002.729075px;}
.y16a{bottom:1002.729119px;}
.y1ca{bottom:1002.729181px;}
.y1b9{bottom:1002.729225px;}
.y1a7{bottom:1002.729268px;}
.y5{bottom:1008.424622px;}
.y190{bottom:1011.730531px;}
.y1cd{bottom:1011.730574px;}
.y17e{bottom:1011.730575px;}
.y16b{bottom:1011.730619px;}
.y1cb{bottom:1011.730681px;}
.y1ba{bottom:1011.730725px;}
.y1a8{bottom:1011.730768px;}
.y1d1{bottom:1012.533325px;}
.y6e{bottom:1013.412300px;}
.y3d{bottom:1013.415344px;}
.yd9{bottom:1013.544342px;}
.y251{bottom:1013.549592px;}
.y109{bottom:1014.729332px;}
.ya0{bottom:1014.735260px;}
.y205{bottom:1014.738316px;}
.y28b{bottom:1016.254823px;}
.y30e{bottom:1016.344073px;}
.y2cd{bottom:1016.650073px;}
.y250{bottom:1028.543592px;}
.y28a{bottom:1031.248823px;}
.y1d0{bottom:1031.283325px;}
.y30d{bottom:1031.338073px;}
.y2cc{bottom:1031.644073px;}
.y6d{bottom:1032.162300px;}
.y3c{bottom:1032.165344px;}
.yd8{bottom:1032.294342px;}
.y108{bottom:1033.479332px;}
.y9f{bottom:1033.485260px;}
.y204{bottom:1033.488316px;}
.y289{bottom:1046.242823px;}
.y30c{bottom:1046.332073px;}
.y2cb{bottom:1046.638073px;}
.y1cf{bottom:1050.033325px;}
.y6c{bottom:1050.912300px;}
.y3b{bottom:1050.915344px;}
.yd7{bottom:1051.044342px;}
.y107{bottom:1052.229332px;}
.y9e{bottom:1052.235260px;}
.y203{bottom:1052.238316px;}
.y24f{bottom:1058.544342px;}
.y288{bottom:1061.236823px;}
.y30b{bottom:1061.326073px;}
.y2ca{bottom:1061.632073px;}
.y6b{bottom:1069.662300px;}
.y3a{bottom:1069.665344px;}
.y106{bottom:1070.979332px;}
.y9d{bottom:1070.985260px;}
.y202{bottom:1070.988316px;}
.y128{bottom:1075.108844px;}
.y4{bottom:1076.132080px;}
.y287{bottom:1076.230823px;}
.y30a{bottom:1076.320073px;}
.y2c9{bottom:1076.626073px;}
.y1ce{bottom:1087.533325px;}
.y6a{bottom:1088.412300px;}
.y39{bottom:1088.415344px;}
.yd6{bottom:1088.544342px;}
.y105{bottom:1089.729332px;}
.y9c{bottom:1089.735260px;}
.y201{bottom:1089.738316px;}
.y127{bottom:1090.102844px;}
.y286{bottom:1091.224823px;}
.y309{bottom:1091.314073px;}
.y2c8{bottom:1091.620073px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y38{bottom:1127.482361px;}
.hc{height:25.204199px;}
.h2{height:33.840000px;}
.hb{height:36.006000px;}
.ha{height:36.855469px;}
.h9{height:42.360000px;}
.h7{height:43.260000px;}
.h3{height:44.676000px;}
.hf{height:45.186000px;}
.hd{height:51.912000px;}
.h10{height:52.173000px;}
.h8{height:53.160000px;}
.h4{height:55.461000px;}
.he{height:59.004000px;}
.h6{height:64.866000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.x7{left:93.530398px;}
.x4{left:97.796100px;}
.x62{left:102.047253px;}
.x35{left:110.485645px;}
.xd{left:111.588455px;}
.x36{left:125.479645px;}
.xe{left:126.582455px;}
.x37{left:153.147145px;}
.xf{left:154.670705px;}
.x9{left:166.293148px;}
.x38{left:168.141145px;}
.x10{left:169.664705px;}
.x39{left:183.135145px;}
.x11{left:184.658705px;}
.x3a{left:198.129145px;}
.x12{left:199.652705px;}
.x3b{left:213.123145px;}
.x13{left:214.646705px;}
.x3c{left:228.117145px;}
.x14{left:229.640705px;}
.xa{left:230.744427px;}
.xc{left:239.745952px;}
.x3d{left:243.060145px;}
.x15{left:244.634705px;}
.x3e{left:258.054145px;}
.x16{left:259.628705px;}
.x3f{left:273.048145px;}
.x17{left:274.622705px;}
.x40{left:287.952901px;}
.x18{left:289.565709px;}
.x41{left:302.946901px;}
.x19{left:304.559709px;}
.x57{left:317.889897px;}
.x1a{left:319.426213px;}
.x42{left:321.612901px;}
.x58{left:332.883897px;}
.x1b{left:334.356463px;}
.x43{left:336.606901px;}
.x59{left:347.877897px;}
.x1c{left:349.350463px;}
.x44{left:351.600901px;}
.x1d{left:364.344463px;}
.x45{left:366.594901px;}
.x46{left:381.588901px;}
.x1e{left:382.997713px;}
.x47{left:396.582901px;}
.x1f{left:397.991713px;}
.x48{left:411.576901px;}
.x20{left:412.985713px;}
.x49{left:426.570901px;}
.x21{left:427.979713px;}
.x4a{left:441.564901px;}
.x22{left:442.973713px;}
.x4b{left:456.558901px;}
.x23{left:457.916715px;}
.x5{left:459.212540px;}
.x4c{left:471.552901px;}
.x24{left:472.872465px;}
.x8{left:476.195396px;}
.x6{left:480.466799px;}
.x61{left:484.725290px;}
.x5a{left:486.521401px;}
.x4d{left:490.078655px;}
.x25{left:491.551215px;}
.x5b{left:501.515401px;}
.x4e{left:505.072655px;}
.x26{left:506.545215px;}
.x5c{left:516.509401px;}
.x4f{left:520.066655px;}
.x27{left:521.539215px;}
.x5d{left:531.503401px;}
.x50{left:535.060655px;}
.x28{left:536.533215px;}
.x5e{left:546.497401px;}
.x51{left:550.054655px;}
.x29{left:551.527215px;}
.x5f{left:561.325651px;}
.x52{left:565.048655px;}
.x2a{left:566.521215px;}
.x60{left:576.243156px;}
.x53{left:580.042655px;}
.x2b{left:581.515215px;}
.x54{left:595.036655px;}
.x2c{left:596.509215px;}
.x55{left:610.030655px;}
.x2d{left:611.503215px;}
.x56{left:624.820665px;}
.x2e{left:626.497215px;}
.x2f{left:641.491215px;}
.x30{left:656.485215px;}
.x31{left:671.415465px;}
.x32{left:686.409465px;}
.x33{left:701.403465px;}
.x34{left:716.397465px;}
.x1{left:728.220612px;}
.xb{left:778.254944px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls38{letter-spacing:-1.224000pt;}
.ls39{letter-spacing:-0.861333pt;}
.ls37{letter-spacing:-0.680000pt;}
.ls2b{letter-spacing:-0.373333pt;}
.ls63{letter-spacing:-0.362667pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls65{letter-spacing:-0.317333pt;}
.lse{letter-spacing:-0.266667pt;}
.ls34{letter-spacing:-0.213333pt;}
.ls64{letter-spacing:-0.181333pt;}
.ls2a{letter-spacing:-0.160000pt;}
.ls66{letter-spacing:-0.136000pt;}
.ls2c{letter-spacing:-0.106667pt;}
.ls3a{letter-spacing:-0.090667pt;}
.lsc{letter-spacing:-0.053333pt;}
.ls62{letter-spacing:-0.045333pt;}
.lsb{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000033pt;}
.ls1{letter-spacing:0.000076pt;}
.ls1c{letter-spacing:0.026667pt;}
.ls8f{letter-spacing:0.027200pt;}
.ls51{letter-spacing:0.045333pt;}
.ls26{letter-spacing:0.053333pt;}
.ls56{letter-spacing:0.090667pt;}
.ls5{letter-spacing:0.106667pt;}
.ls2d{letter-spacing:0.133333pt;}
.ls4f{letter-spacing:0.136000pt;}
.ls90{letter-spacing:0.154113pt;}
.ls8{letter-spacing:0.158926pt;}
.ls6{letter-spacing:0.160000pt;}
.ls50{letter-spacing:0.181333pt;}
.ls2{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.226667pt;}
.ls52{letter-spacing:0.234667pt;}
.ls1d{letter-spacing:0.245333pt;}
.ls57{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls89{letter-spacing:0.271979pt;}
.ls7b{letter-spacing:0.271989pt;}
.ls7e{letter-spacing:0.271994pt;}
.ls70{letter-spacing:0.272000pt;}
.ls28{letter-spacing:0.293333pt;}
.ls78{letter-spacing:0.294667pt;}
.ls55{letter-spacing:0.317333pt;}
.ls20{letter-spacing:0.319982pt;}
.ls15{letter-spacing:0.319993pt;}
.ls23{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.321867pt;}
.ls7a{letter-spacing:0.362667pt;}
.lsd{letter-spacing:0.373333pt;}
.ls45{letter-spacing:0.400000pt;}
.ls53{letter-spacing:0.408000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls7c{letter-spacing:0.430667pt;}
.ls32{letter-spacing:0.453333pt;}
.ls7{letter-spacing:0.480000pt;}
.ls4e{letter-spacing:0.498667pt;}
.ls12{letter-spacing:0.506667pt;}
.ls8b{letter-spacing:0.521333pt;}
.ls1a{letter-spacing:0.533333pt;}
.ls54{letter-spacing:0.544000pt;}
.ls30{letter-spacing:0.560000pt;}
.ls5c{letter-spacing:0.566667pt;}
.ls3{letter-spacing:0.586667pt;}
.ls71{letter-spacing:0.589333pt;}
.ls31{letter-spacing:0.613333pt;}
.ls17{letter-spacing:0.629301pt;}
.ls67{letter-spacing:0.634667pt;}
.ls14{letter-spacing:0.640000pt;}
.ls4a{letter-spacing:0.661333pt;}
.ls33{letter-spacing:0.666667pt;}
.ls59{letter-spacing:0.680000pt;}
.lsf{letter-spacing:0.693333pt;}
.ls80{letter-spacing:0.702667pt;}
.ls27{letter-spacing:0.720000pt;}
.ls58{letter-spacing:0.725333pt;}
.ls8c{letter-spacing:0.729867pt;}
.ls22{letter-spacing:0.746667pt;}
.ls11{letter-spacing:0.757291pt;}
.ls5e{letter-spacing:0.770667pt;}
.ls2e{letter-spacing:0.773333pt;}
.ls69{letter-spacing:0.793333pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls5f{letter-spacing:0.816000pt;}
.ls1b{letter-spacing:0.853333pt;}
.ls6c{letter-spacing:0.861333pt;}
.ls35{letter-spacing:0.880000pt;}
.ls36{letter-spacing:0.906667pt;}
.ls6f{letter-spacing:0.952000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls3d{letter-spacing:0.986667pt;}
.ls60{letter-spacing:0.997333pt;}
.ls13{letter-spacing:1.013333pt;}
.ls94{letter-spacing:1.020000pt;}
.ls7d{letter-spacing:1.042667pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls84{letter-spacing:1.088000pt;}
.ls85{letter-spacing:1.110667pt;}
.ls18{letter-spacing:1.120000pt;}
.ls77{letter-spacing:1.133317pt;}
.ls6e{letter-spacing:1.133333pt;}
.ls10{letter-spacing:1.173333pt;}
.ls83{letter-spacing:1.178667pt;}
.ls8d{letter-spacing:1.224000pt;}
.ls21{letter-spacing:1.226667pt;}
.ls5d{letter-spacing:1.228528pt;}
.ls3b{letter-spacing:1.253333pt;}
.ls79{letter-spacing:1.269333pt;}
.ls24{letter-spacing:1.280000pt;}
.ls76{letter-spacing:1.314667pt;}
.ls25{letter-spacing:1.333333pt;}
.ls40{letter-spacing:1.360000pt;}
.ls43{letter-spacing:1.386667pt;}
.ls8a{letter-spacing:1.405333pt;}
.ls49{letter-spacing:1.440000pt;}
.ls74{letter-spacing:1.450667pt;}
.ls3c{letter-spacing:1.493333pt;}
.ls72{letter-spacing:1.496000pt;}
.ls87{letter-spacing:1.541333pt;}
.ls3f{letter-spacing:1.573333pt;}
.ls7f{letter-spacing:1.586667pt;}
.ls2f{letter-spacing:1.600000pt;}
.ls81{letter-spacing:1.632000pt;}
.ls46{letter-spacing:1.653333pt;}
.ls91{letter-spacing:1.677333pt;}
.ls4d{letter-spacing:1.706667pt;}
.ls5b{letter-spacing:1.718102pt;}
.ls6d{letter-spacing:1.722667pt;}
.ls4b{letter-spacing:1.733333pt;}
.ls44{letter-spacing:1.760000pt;}
.ls41{letter-spacing:1.786667pt;}
.ls48{letter-spacing:1.813333pt;}
.ls3e{letter-spacing:1.866667pt;}
.ls42{letter-spacing:1.920000pt;}
.ls4c{letter-spacing:2.026667pt;}
.ls5a{letter-spacing:2.035467pt;}
.ls95{letter-spacing:2.080800pt;}
.ls68{letter-spacing:2.085333pt;}
.ls61{letter-spacing:2.176000pt;}
.ls47{letter-spacing:2.240000pt;}
.ls92{letter-spacing:2.312000pt;}
.ls86{letter-spacing:2.638400pt;}
.ls93{letter-spacing:2.756238pt;}
.ls6a{letter-spacing:3.037333pt;}
.ls0{letter-spacing:3.546667pt;}
.ls8e{letter-spacing:3.712800pt;}
.ls73{letter-spacing:4.284000pt;}
.ls75{letter-spacing:4.397333pt;}
.ls88{letter-spacing:4.837067pt;}
.ls82{letter-spacing:5.249600pt;}
.ws4c{word-spacing:-14.026667pt;}
.ws18{word-spacing:-13.600000pt;}
.ws9a{word-spacing:-12.194667pt;}
.ws7d{word-spacing:-12.013333pt;}
.ws9b{word-spacing:-11.877333pt;}
.ws7b{word-spacing:-11.560000pt;}
.ws7c{word-spacing:-11.424000pt;}
.ws42{word-spacing:-11.333333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws64{word-spacing:-10.653333pt;}
.ws68{word-spacing:-10.472000pt;}
.ws7{word-spacing:-10.453333pt;}
.ws6{word-spacing:-10.346667pt;}
.ws8{word-spacing:-10.240000pt;}
.ws5{word-spacing:-10.186667pt;}
.ws66{word-spacing:-10.109333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws67{word-spacing:-5.666667pt;}
.ws78{word-spacing:-1.706667pt;}
.wsb1{word-spacing:-1.632000pt;}
.wsad{word-spacing:-1.586667pt;}
.ws69{word-spacing:-1.541333pt;}
.wsa8{word-spacing:-1.496000pt;}
.wsa9{word-spacing:-1.450667pt;}
.ws37{word-spacing:-1.386667pt;}
.wsb{word-spacing:-1.333333pt;}
.ws31{word-spacing:-1.280000pt;}
.wsc6{word-spacing:-1.269333pt;}
.ws33{word-spacing:-1.226667pt;}
.ws83{word-spacing:-1.178667pt;}
.ws1b{word-spacing:-1.173333pt;}
.ws81{word-spacing:-1.133333pt;}
.ws23{word-spacing:-1.120000pt;}
.wsb3{word-spacing:-1.088000pt;}
.ws2f{word-spacing:-1.066667pt;}
.ws24{word-spacing:-1.013333pt;}
.ws95{word-spacing:-0.997333pt;}
.ws20{word-spacing:-0.960000pt;}
.ws89{word-spacing:-0.952000pt;}
.wsf{word-spacing:-0.906667pt;}
.ws80{word-spacing:-0.861333pt;}
.ws6f{word-spacing:-0.853333pt;}
.wsa0{word-spacing:-0.816000pt;}
.ws2c{word-spacing:-0.800000pt;}
.wsbf{word-spacing:-0.770667pt;}
.ws1e{word-spacing:-0.746667pt;}
.wsa4{word-spacing:-0.725333pt;}
.ws50{word-spacing:-0.693333pt;}
.ws88{word-spacing:-0.680000pt;}
.wsd{word-spacing:-0.640000pt;}
.ws8a{word-spacing:-0.634667pt;}
.ws7a{word-spacing:-0.586667pt;}
.ws16{word-spacing:-0.544000pt;}
.ws59{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.506667pt;}
.ws3c{word-spacing:-0.480000pt;}
.ws87{word-spacing:-0.453333pt;}
.ws4a{word-spacing:-0.426667pt;}
.wsba{word-spacing:-0.408000pt;}
.wse{word-spacing:-0.373333pt;}
.ws86{word-spacing:-0.362667pt;}
.ws38{word-spacing:-0.320000pt;}
.wsa3{word-spacing:-0.317333pt;}
.ws4{word-spacing:-0.266667pt;}
.ws85{word-spacing:-0.234667pt;}
.ws8f{word-spacing:-0.226667pt;}
.ws11{word-spacing:-0.213333pt;}
.ws94{word-spacing:-0.181333pt;}
.ws13{word-spacing:-0.160000pt;}
.ws92{word-spacing:-0.136000pt;}
.ws6d{word-spacing:-0.106667pt;}
.wsbc{word-spacing:-0.090667pt;}
.ws17{word-spacing:-0.064000pt;}
.ws48{word-spacing:-0.053333pt;}
.ws6a{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.045333pt;}
.ws58{word-spacing:0.053333pt;}
.ws6b{word-spacing:0.090667pt;}
.ws4f{word-spacing:0.106667pt;}
.wsaa{word-spacing:0.136000pt;}
.ws57{word-spacing:0.160000pt;}
.wsc7{word-spacing:0.181333pt;}
.ws2e{word-spacing:0.213333pt;}
.wsab{word-spacing:0.226667pt;}
.ws12{word-spacing:0.266667pt;}
.wsa6{word-spacing:0.317333pt;}
.ws29{word-spacing:0.320000pt;}
.wsb9{word-spacing:0.408000pt;}
.wsb8{word-spacing:0.453333pt;}
.ws35{word-spacing:0.533333pt;}
.wsa5{word-spacing:0.544000pt;}
.ws14{word-spacing:0.586667pt;}
.ws74{word-spacing:0.640000pt;}
.ws36{word-spacing:0.693333pt;}
.ws5d{word-spacing:0.746667pt;}
.wsb4{word-spacing:0.770667pt;}
.ws1d{word-spacing:0.800000pt;}
.ws93{word-spacing:0.816000pt;}
.ws56{word-spacing:0.853333pt;}
.ws90{word-spacing:0.861333pt;}
.ws75{word-spacing:0.906667pt;}
.wsb5{word-spacing:0.952000pt;}
.ws2d{word-spacing:1.013333pt;}
.ws84{word-spacing:1.042667pt;}
.ws5e{word-spacing:1.066667pt;}
.ws8d{word-spacing:1.088000pt;}
.ws30{word-spacing:1.120000pt;}
.ws82{word-spacing:1.133333pt;}
.ws10{word-spacing:1.173333pt;}
.wsbd{word-spacing:1.224000pt;}
.ws55{word-spacing:1.226667pt;}
.ws5a{word-spacing:1.280000pt;}
.wsc{word-spacing:1.333333pt;}
.ws41{word-spacing:1.386667pt;}
.wsb7{word-spacing:1.405333pt;}
.ws51{word-spacing:1.440000pt;}
.ws9c{word-spacing:1.450667pt;}
.ws19{word-spacing:1.493333pt;}
.wsa1{word-spacing:1.496000pt;}
.ws54{word-spacing:1.546667pt;}
.ws8e{word-spacing:1.586667pt;}
.ws3f{word-spacing:1.600000pt;}
.ws4d{word-spacing:1.653333pt;}
.ws34{word-spacing:1.706667pt;}
.wsc5{word-spacing:1.722667pt;}
.ws91{word-spacing:1.768000pt;}
.ws4b{word-spacing:1.813333pt;}
.ws8b{word-spacing:1.858667pt;}
.ws2a{word-spacing:1.866667pt;}
.ws8c{word-spacing:1.904000pt;}
.ws46{word-spacing:1.920000pt;}
.wsc4{word-spacing:1.949333pt;}
.ws3e{word-spacing:1.973333pt;}
.wsaf{word-spacing:1.994667pt;}
.ws5b{word-spacing:2.026667pt;}
.ws2b{word-spacing:2.080000pt;}
.wsbb{word-spacing:2.085333pt;}
.ws3d{word-spacing:2.133333pt;}
.ws27{word-spacing:2.186667pt;}
.wsc2{word-spacing:2.221333pt;}
.ws70{word-spacing:2.240000pt;}
.ws96{word-spacing:2.266667pt;}
.ws6c{word-spacing:2.293333pt;}
.ws97{word-spacing:2.312000pt;}
.ws5c{word-spacing:2.346667pt;}
.ws61{word-spacing:2.400000pt;}
.wsc0{word-spacing:2.448000pt;}
.ws9d{word-spacing:2.493333pt;}
.ws76{word-spacing:2.506667pt;}
.wsb2{word-spacing:2.629333pt;}
.ws47{word-spacing:2.666667pt;}
.wsa7{word-spacing:2.674667pt;}
.ws1f{word-spacing:2.720000pt;}
.wsbe{word-spacing:2.765333pt;}
.ws79{word-spacing:2.773333pt;}
.ws40{word-spacing:2.880000pt;}
.ws53{word-spacing:2.933333pt;}
.wsb6{word-spacing:2.946667pt;}
.ws1c{word-spacing:2.986667pt;}
.ws72{word-spacing:3.040000pt;}
.wsae{word-spacing:3.128000pt;}
.ws98{word-spacing:3.173333pt;}
.ws52{word-spacing:3.200000pt;}
.ws9e{word-spacing:3.218667pt;}
.ws60{word-spacing:3.253333pt;}
.ws28{word-spacing:3.360000pt;}
.wsb0{word-spacing:3.400000pt;}
.ws43{word-spacing:3.413333pt;}
.ws5f{word-spacing:3.466667pt;}
.ws3a{word-spacing:3.520000pt;}
.ws26{word-spacing:3.573333pt;}
.wsc1{word-spacing:3.581333pt;}
.ws21{word-spacing:3.626667pt;}
.wsac{word-spacing:3.672000pt;}
.ws22{word-spacing:3.680000pt;}
.ws6e{word-spacing:3.733333pt;}
.ws44{word-spacing:3.786667pt;}
.wsa2{word-spacing:3.808000pt;}
.ws1a{word-spacing:3.840000pt;}
.ws4e{word-spacing:3.893333pt;}
.ws62{word-spacing:3.898667pt;}
.ws25{word-spacing:3.946667pt;}
.ws71{word-spacing:4.000000pt;}
.ws7f{word-spacing:4.160000pt;}
.ws32{word-spacing:4.213333pt;}
.ws77{word-spacing:4.266667pt;}
.ws39{word-spacing:4.373333pt;}
.ws7e{word-spacing:4.426667pt;}
.ws45{word-spacing:4.640000pt;}
.ws3b{word-spacing:4.746667pt;}
.ws73{word-spacing:5.493333pt;}
.ws49{word-spacing:5.813333pt;}
.wsc3{word-spacing:6.618667pt;}
.ws99{word-spacing:9.293333pt;}
.wsc8{word-spacing:12.013333pt;}
.wsc9{word-spacing:15.640000pt;}
.ws63{word-spacing:18.042667pt;}
.ws15{word-spacing:64.237333pt;}
.ws65{word-spacing:206.629326pt;}
._3d{margin-left:-16.864000pt;}
._8{margin-left:-14.733333pt;}
._10{margin-left:-12.954668pt;}
._3e{margin-left:-11.061333pt;}
._3a{margin-left:-10.109333pt;}
._31{margin-left:-8.160000pt;}
._30{margin-left:-5.976267pt;}
._3{margin-left:-5.034667pt;}
._4{margin-left:-3.669333pt;}
._2{margin-left:-2.450400pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.400800pt;}
._2f{width:3.280000pt;}
._14{width:4.949333pt;}
._33{width:5.848000pt;}
._35{width:7.344000pt;}
._39{width:9.429333pt;}
._32{width:10.789333pt;}
._7{width:11.999991pt;}
._e{width:13.466667pt;}
._6{width:15.264000pt;}
._9{width:16.320000pt;}
._3f{width:17.453333pt;}
._3b{width:18.496000pt;}
._40{width:19.392001pt;}
._3c{width:20.581333pt;}
._38{width:21.941333pt;}
._34{width:23.029333pt;}
._36{width:24.072000pt;}
._37{width:26.338667pt;}
._41{width:28.197333pt;}
._17{width:34.045326pt;}
._5{width:34.956903pt;}
._13{width:43.642668pt;}
._b{width:48.552000pt;}
._11{width:49.911735pt;}
._f{width:59.354668pt;}
._15{width:63.013326pt;}
._a{width:64.237333pt;}
._1d{width:68.136000pt;}
._27{width:75.480000pt;}
._2b{width:78.970667pt;}
._12{width:81.013333pt;}
._1e{width:105.218661pt;}
._2a{width:106.669333pt;}
._2c{width:109.208000pt;}
._25{width:114.103994pt;}
._d{width:116.906667pt;}
._1c{width:121.130667pt;}
._21{width:126.484528pt;}
._29{width:130.877333pt;}
._2e{width:136.997333pt;}
._1a{width:145.429333pt;}
._18{width:147.922667pt;}
._20{width:161.341328pt;}
._28{width:165.693333pt;}
._23{width:168.141328pt;}
._22{width:172.130661pt;}
._19{width:188.178667pt;}
._26{width:198.786667pt;}
._1f{width:221.090672pt;}
._2d{width:250.648000pt;}
._24{width:280.250661pt;}
._1b{width:388.461328pt;}
._16{width:1642.245394pt;}
._c{width:2086.557314pt;}
.fs6{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.181335pt;}
.y17f{bottom:100.384029pt;}
.y16c{bottom:100.384068pt;}
.y15a{bottom:100.384107pt;}
.y153{bottom:100.384135pt;}
.y1bb{bottom:100.384163pt;}
.y1a9{bottom:100.384201pt;}
.y197{bottom:100.384239pt;}
.y152{bottom:100.384267pt;}
.y2c{bottom:100.410933pt;}
.y9b{bottom:100.813599pt;}
.y104{bottom:100.928263pt;}
.y69{bottom:101.717611pt;}
.y144{bottom:101.986898pt;}
.y126{bottom:101.986938pt;}
.y235{bottom:101.989614pt;}
.y2c7{bottom:103.657620pt;}
.y151{bottom:107.882809pt;}
.y180{bottom:108.385363pt;}
.y16d{bottom:108.385401pt;}
.y15b{bottom:108.385440pt;}
.y1bc{bottom:108.385496pt;}
.y1aa{bottom:108.385534pt;}
.y198{bottom:108.385572pt;}
.yd5{bottom:108.986647pt;}
.y285{bottom:112.724264pt;}
.y2b{bottom:113.738933pt;}
.y200{bottom:116.696289pt;}
.y2c6{bottom:116.985620pt;}
.y308{bottom:117.336954pt;}
.y9a{bottom:117.480265pt;}
.y103{bottom:117.594930pt;}
.y24e{bottom:118.158928pt;}
.y68{bottom:118.384277pt;}
.y143{bottom:118.653564pt;}
.y125{bottom:118.653605pt;}
.y234{bottom:118.656281pt;}
.yd4{bottom:122.314647pt;}
.y150{bottom:124.588143pt;}
.y284{bottom:126.052264pt;}
.y2a{bottom:127.066933pt;}
.y2c5{bottom:130.313620pt;}
.y307{bottom:130.664954pt;}
.y24d{bottom:131.486928pt;}
.y1ff{bottom:133.362956pt;}
.y99{bottom:134.146932pt;}
.y102{bottom:134.261597pt;}
.y67{bottom:135.050944pt;}
.y142{bottom:135.320231pt;}
.y124{bottom:135.320272pt;}
.y233{bottom:135.322947pt;}
.yd2{bottom:139.008647pt;}
.y283{bottom:139.380264pt;}
.y29{bottom:140.394933pt;}
.y14f{bottom:141.225476pt;}
.y2c4{bottom:143.641620pt;}
.y306{bottom:143.992954pt;}
.y1fe{bottom:150.029622pt;}
.y98{bottom:150.813599pt;}
.y101{bottom:150.928263pt;}
.y66{bottom:151.717611pt;}
.y141{bottom:151.986898pt;}
.y123{bottom:151.986938pt;}
.y232{bottom:151.989614pt;}
.yd1{bottom:152.336647pt;}
.y282{bottom:152.708264pt;}
.y28{bottom:153.722933pt;}
.y2c3{bottom:156.969620pt;}
.y305{bottom:157.320954pt;}
.y14e{bottom:157.862809pt;}
.y24c{bottom:158.154261pt;}
.y37{bottom:160.469328pt;}
.yd0{bottom:165.664647pt;}
.yd3{bottom:165.675981pt;}
.y281{bottom:166.036264pt;}
.y1fd{bottom:166.696289pt;}
.y97{bottom:167.480265pt;}
.y100{bottom:167.594930pt;}
.y65{bottom:168.384277pt;}
.y140{bottom:168.653564pt;}
.y122{bottom:168.653605pt;}
.y231{bottom:168.656281pt;}
.y129{bottom:168.746938pt;}
.y2c2{bottom:170.297620pt;}
.y304{bottom:170.648954pt;}
.y24b{bottom:171.482261pt;}
.y27{bottom:171.584269pt;}
.y36{bottom:173.797328pt;}
.y14d{bottom:174.500143pt;}
.y280{bottom:179.364264pt;}
.ycf{bottom:182.301981pt;}
.y1fc{bottom:183.362956pt;}
.y2c1{bottom:183.625620pt;}
.y303{bottom:183.976954pt;}
.y96{bottom:184.146932pt;}
.yff{bottom:184.261597pt;}
.y64{bottom:185.050944pt;}
.y13f{bottom:185.320231pt;}
.y121{bottom:185.320272pt;}
.y230{bottom:185.322947pt;}
.y35{bottom:187.125328pt;}
.y181{bottom:188.138029pt;}
.y16e{bottom:188.138068pt;}
.y15c{bottom:188.138107pt;}
.y1bd{bottom:188.138163pt;}
.y1ab{bottom:188.138201pt;}
.y199{bottom:188.138239pt;}
.y14c{bottom:191.137476pt;}
.y27f{bottom:192.692264pt;}
.y26{bottom:193.836925pt;}
.yce{bottom:195.629981pt;}
.y182{bottom:196.139363pt;}
.y16f{bottom:196.139401pt;}
.y15d{bottom:196.139440pt;}
.y1be{bottom:196.139496pt;}
.y1ac{bottom:196.139534pt;}
.y19a{bottom:196.139572pt;}
.y2c0{bottom:196.953620pt;}
.y302{bottom:197.304954pt;}
.y24a{bottom:198.149594pt;}
.y1fb{bottom:200.029622pt;}
.y95{bottom:200.813599pt;}
.yfe{bottom:200.928263pt;}
.y63{bottom:201.717611pt;}
.y13e{bottom:201.986898pt;}
.y120{bottom:201.986938pt;}
.y22f{bottom:201.989614pt;}
.y34{bottom:204.986532pt;}
.y27e{bottom:206.020264pt;}
.y25{bottom:207.164925pt;}
.y14b{bottom:207.774809pt;}
.y2bf{bottom:210.281620pt;}
.y301{bottom:210.632954pt;}
.y249{bottom:211.477594pt;}
.ycc{bottom:212.267314pt;}
.y1fa{bottom:216.696289pt;}
.y94{bottom:217.480265pt;}
.yfd{bottom:217.594930pt;}
.y62{bottom:218.384277pt;}
.y13d{bottom:218.653564pt;}
.y11f{bottom:218.653605pt;}
.y22e{bottom:218.656281pt;}
.y27d{bottom:219.348264pt;}
.y33{bottom:220.516674pt;}
.y2be{bottom:223.609620pt;}
.y300{bottom:223.960954pt;}
.y14a{bottom:224.412143pt;}
.y248{bottom:224.805594pt;}
.ycb{bottom:225.595314pt;}
.y24{bottom:227.202259pt;}
.y27c{bottom:232.676264pt;}
.y1f9{bottom:233.362956pt;}
.y32{bottom:233.844674pt;}
.y93{bottom:234.146932pt;}
.yfc{bottom:234.261597pt;}
.y61{bottom:235.050944pt;}
.y13c{bottom:235.320231pt;}
.y11e{bottom:235.320272pt;}
.y22d{bottom:235.322947pt;}
.y2bd{bottom:236.937620pt;}
.y2ff{bottom:237.288954pt;}
.y247{bottom:238.133594pt;}
.yca{bottom:238.923314pt;}
.y23{bottom:240.530259pt;}
.y27b{bottom:246.004264pt;}
.y31{bottom:247.172674pt;}
.y149{bottom:249.379476pt;}
.y1f8{bottom:250.029622pt;}
.y2bc{bottom:250.265620pt;}
.y2fe{bottom:250.616954pt;}
.y92{bottom:250.813599pt;}
.yfb{bottom:250.928263pt;}
.y246{bottom:251.461594pt;}
.y60{bottom:251.717611pt;}
.y13b{bottom:251.986898pt;}
.y11d{bottom:251.986938pt;}
.y22c{bottom:251.989614pt;}
.yc9{bottom:252.251314pt;}
.ycd{bottom:252.262647pt;}
.y27a{bottom:259.332264pt;}
.y30{bottom:260.500674pt;}
.y22{bottom:260.567592pt;}
.y2bb{bottom:263.593620pt;}
.y2fd{bottom:263.944954pt;}
.y245{bottom:264.789594pt;}
.y1f7{bottom:266.696289pt;}
.y91{bottom:267.480265pt;}
.yfa{bottom:267.594930pt;}
.y5f{bottom:268.384277pt;}
.y13a{bottom:268.653564pt;}
.y11c{bottom:268.653605pt;}
.y22b{bottom:268.656281pt;}
.yc8{bottom:268.888647pt;}
.y148{bottom:272.047049pt;}
.y279{bottom:272.660264pt;}
.y21{bottom:273.895592pt;}
.y183{bottom:276.481363pt;}
.y170{bottom:276.481401pt;}
.y15e{bottom:276.481440pt;}
.y1bf{bottom:276.481496pt;}
.y1ad{bottom:276.481534pt;}
.y19b{bottom:276.481572pt;}
.y2ba{bottom:276.921620pt;}
.y2fc{bottom:277.272954pt;}
.y244{bottom:278.117594pt;}
.y2f{bottom:278.362000pt;}
.yc7{bottom:282.216647pt;}
.y1f6{bottom:283.362956pt;}
.y90{bottom:284.146932pt;}
.yf9{bottom:284.261597pt;}
.y171{bottom:284.482735pt;}
.y15f{bottom:284.482773pt;}
.y1ae{bottom:284.482868pt;}
.y19c{bottom:284.482905pt;}
.y5e{bottom:285.050944pt;}
.y139{bottom:285.320231pt;}
.y11b{bottom:285.320272pt;}
.y22a{bottom:285.322947pt;}
.y147{bottom:285.375049pt;}
.y278{bottom:285.988264pt;}
.y2b9{bottom:290.249620pt;}
.y2fb{bottom:290.600954pt;}
.y2e{bottom:293.876000pt;}
.y20{bottom:293.932925pt;}
.yc4{bottom:298.842647pt;}
.y277{bottom:299.316264pt;}
.y1f5{bottom:300.029622pt;}
.y8f{bottom:300.813599pt;}
.yf8{bottom:300.928263pt;}
.y5d{bottom:301.717611pt;}
.y138{bottom:301.986898pt;}
.y11a{bottom:301.986938pt;}
.y229{bottom:301.989614pt;}
.y2b8{bottom:303.577620pt;}
.y2fa{bottom:303.928954pt;}
.y1f{bottom:307.260925pt;}
.y2d{bottom:311.737325pt;}
.yc3{bottom:312.170647pt;}
.yc6{bottom:312.181981pt;}
.y276{bottom:312.644264pt;}
.y1f4{bottom:316.696289pt;}
.y2b7{bottom:316.905620pt;}
.y2f9{bottom:317.256954pt;}
.y8e{bottom:317.480265pt;}
.yf7{bottom:317.594930pt;}
.y5c{bottom:318.384277pt;}
.y137{bottom:318.653564pt;}
.y119{bottom:318.653605pt;}
.y228{bottom:318.656281pt;}
.y243{bottom:321.450928pt;}
.yc2{bottom:325.498647pt;}
.yc5{bottom:325.509981pt;}
.y275{bottom:325.972264pt;}
.y2b6{bottom:330.233620pt;}
.y146{bottom:330.255049pt;}
.y2f8{bottom:330.584954pt;}
.y1f3{bottom:333.362956pt;}
.y8d{bottom:334.146932pt;}
.yf6{bottom:334.261597pt;}
.y5b{bottom:335.050944pt;}
.y136{bottom:335.320231pt;}
.y118{bottom:335.320272pt;}
.y227{bottom:335.322947pt;}
.y242{bottom:338.117594pt;}
.y274{bottom:339.300264pt;}
.yc1{bottom:342.135981pt;}
.y2b5{bottom:343.561620pt;}
.y145{bottom:343.583049pt;}
.y2f7{bottom:343.912954pt;}
.y1f2{bottom:350.029622pt;}
.yf5{bottom:350.928263pt;}
.y5a{bottom:351.717611pt;}
.y135{bottom:351.986898pt;}
.y117{bottom:351.986938pt;}
.y226{bottom:351.989614pt;}
.y273{bottom:352.628264pt;}
.y241{bottom:354.784261pt;}
.yc0{bottom:355.463981pt;}
.y2b4{bottom:356.889620pt;}
.y2f6{bottom:357.240954pt;}
.y184{bottom:363.657363pt;}
.y172{bottom:363.657401pt;}
.y160{bottom:363.657440pt;}
.y154{bottom:363.657468pt;}
.y1c1{bottom:363.657496pt;}
.y1af{bottom:363.657534pt;}
.y19d{bottom:363.657572pt;}
.y191{bottom:363.657600pt;}
.y272{bottom:365.956264pt;}
.y1f1{bottom:366.696289pt;}
.y8c{bottom:367.480265pt;}
.yf4{bottom:367.594930pt;}
.y59{bottom:368.384277pt;}
.y134{bottom:368.653564pt;}
.y116{bottom:368.653605pt;}
.y225{bottom:368.656281pt;}
.y2b3{bottom:370.217620pt;}
.y2f5{bottom:370.568954pt;}
.y240{bottom:371.450928pt;}
.y185{bottom:371.658696pt;}
.y173{bottom:371.658735pt;}
.y161{bottom:371.658773pt;}
.y1c0{bottom:371.658829pt;}
.y1b0{bottom:371.658868pt;}
.y19e{bottom:371.658905pt;}
.ybe{bottom:372.101314pt;}
.y271{bottom:379.284264pt;}
.y1f0{bottom:383.362956pt;}
.y2b2{bottom:383.545620pt;}
.y2f4{bottom:383.896954pt;}
.yf3{bottom:384.261597pt;}
.y58{bottom:385.050944pt;}
.y133{bottom:385.320231pt;}
.y115{bottom:385.320272pt;}
.y224{bottom:385.322947pt;}
.ybd{bottom:385.429314pt;}
.y23f{bottom:388.117594pt;}
.y1e{bottom:392.187907pt;}
.y270{bottom:392.612264pt;}
.y2b1{bottom:396.873620pt;}
.y2f3{bottom:397.224954pt;}
.ybc{bottom:398.757314pt;}
.ybf{bottom:398.768647pt;}
.y1ef{bottom:400.029622pt;}
.yf2{bottom:400.928263pt;}
.y57{bottom:401.717611pt;}
.y132{bottom:401.986898pt;}
.y114{bottom:401.986938pt;}
.y223{bottom:401.989614pt;}
.y23e{bottom:404.784261pt;}
.y26f{bottom:405.940264pt;}
.y2b0{bottom:410.201620pt;}
.y2f2{bottom:410.552954pt;}
.ybb{bottom:415.394647pt;}
.y1ee{bottom:416.696289pt;}
.y8b{bottom:417.477600pt;}
.yf1{bottom:417.594930pt;}
.y56{bottom:418.384277pt;}
.y131{bottom:418.653564pt;}
.y113{bottom:418.653605pt;}
.y222{bottom:418.656281pt;}
.y26e{bottom:419.268264pt;}
.y23d{bottom:421.450928pt;}
.y2af{bottom:423.529620pt;}
.y2f1{bottom:423.880954pt;}
.y1d{bottom:425.521240pt;}
.yba{bottom:428.722647pt;}
.y26d{bottom:432.596264pt;}
.y1ed{bottom:433.362956pt;}
.y8a{bottom:434.144267pt;}
.yf0{bottom:434.261597pt;}
.y55{bottom:435.050944pt;}
.y130{bottom:435.320231pt;}
.y112{bottom:435.320272pt;}
.y221{bottom:435.322947pt;}
.y2ae{bottom:436.857620pt;}
.y2f0{bottom:437.208954pt;}
.y23c{bottom:438.117594pt;}
.y1c{bottom:442.187907pt;}
.yb9{bottom:445.359981pt;}
.y26c{bottom:445.924264pt;}
.y1ec{bottom:450.029622pt;}
.y2ad{bottom:450.185620pt;}
.y2ef{bottom:450.536954pt;}
.y89{bottom:450.810933pt;}
.yef{bottom:450.928263pt;}
.y54{bottom:451.717611pt;}
.y12f{bottom:451.986898pt;}
.y111{bottom:451.986938pt;}
.y220{bottom:451.989614pt;}
.y23b{bottom:454.784261pt;}
.y186{bottom:458.018696pt;}
.y174{bottom:458.018733pt;}
.y162{bottom:458.018772pt;}
.y155{bottom:458.018802pt;}
.y1c2{bottom:458.018828pt;}
.y1b1{bottom:458.018867pt;}
.y19f{bottom:458.018905pt;}
.y192{bottom:458.018933pt;}
.yb8{bottom:458.687981pt;}
.y1b{bottom:458.854574pt;}
.y26b{bottom:459.252264pt;}
.y2ac{bottom:463.513620pt;}
.y2ee{bottom:463.864954pt;}
.y187{bottom:466.020029pt;}
.y175{bottom:466.020067pt;}
.y163{bottom:466.020105pt;}
.y1c3{bottom:466.020161pt;}
.y1b2{bottom:466.020200pt;}
.y1a0{bottom:466.020239pt;}
.y1eb{bottom:466.696289pt;}
.y88{bottom:467.477600pt;}
.yee{bottom:467.594930pt;}
.y53{bottom:468.384277pt;}
.y12e{bottom:468.653564pt;}
.y110{bottom:468.653605pt;}
.y21f{bottom:468.656281pt;}
.y23a{bottom:471.450928pt;}
.y26a{bottom:472.580264pt;}
.y1a{bottom:475.521240pt;}
.y2ab{bottom:476.841620pt;}
.y2ed{bottom:477.192954pt;}
.y1ea{bottom:483.362956pt;}
.yb7{bottom:483.655314pt;}
.y87{bottom:484.144267pt;}
.yed{bottom:484.261597pt;}
.y52{bottom:485.050944pt;}
.y12d{bottom:485.320231pt;}
.y10f{bottom:485.320272pt;}
.y21e{bottom:485.322947pt;}
.y269{bottom:485.908264pt;}
.y239{bottom:488.117594pt;}
.y2aa{bottom:490.169620pt;}
.y2ec{bottom:490.520954pt;}
.y19{bottom:492.187907pt;}
.y268{bottom:499.236264pt;}
.y1e9{bottom:500.029622pt;}
.y86{bottom:500.810933pt;}
.yec{bottom:500.928263pt;}
.y51{bottom:501.717611pt;}
.y12c{bottom:501.986898pt;}
.y10e{bottom:501.986938pt;}
.y21d{bottom:501.989614pt;}
.y2a9{bottom:503.497620pt;}
.y2eb{bottom:503.848954pt;}
.y238{bottom:504.784261pt;}
.yb6{bottom:506.313599pt;}
.y18{bottom:508.854574pt;}
.y267{bottom:512.564264pt;}
.y1e8{bottom:516.696289pt;}
.y2a8{bottom:516.825620pt;}
.y2ea{bottom:517.176954pt;}
.y85{bottom:517.477600pt;}
.yeb{bottom:517.594930pt;}
.y50{bottom:518.384277pt;}
.y12b{bottom:518.653564pt;}
.y10d{bottom:518.653605pt;}
.y21c{bottom:518.656281pt;}
.y237{bottom:521.450928pt;}
.y17{bottom:525.521240pt;}
.y266{bottom:525.892264pt;}
.y2a7{bottom:530.153620pt;}
.y2e9{bottom:530.504954pt;}
.y1e7{bottom:533.362956pt;}
.y84{bottom:534.144267pt;}
.yea{bottom:534.261597pt;}
.y4f{bottom:535.050944pt;}
.y12a{bottom:535.320231pt;}
.y10c{bottom:535.320272pt;}
.y21b{bottom:535.322947pt;}
.y265{bottom:539.220264pt;}
.y16{bottom:542.187907pt;}
.y2a6{bottom:543.481620pt;}
.y2e8{bottom:543.832954pt;}
.y189{bottom:545.659363pt;}
.y177{bottom:545.659400pt;}
.y165{bottom:545.659439pt;}
.y156{bottom:545.659466pt;}
.y1c5{bottom:545.659495pt;}
.y1b4{bottom:545.659533pt;}
.y1a2{bottom:545.659572pt;}
.y193{bottom:545.659598pt;}
.y1e6{bottom:550.029622pt;}
.y83{bottom:550.810933pt;}
.ye9{bottom:550.928263pt;}
.y4e{bottom:551.717611pt;}
.yb5{bottom:551.986898pt;}
.y10b{bottom:551.986938pt;}
.y21a{bottom:551.989614pt;}
.y264{bottom:552.548264pt;}
.y236{bottom:554.784261pt;}
.y2a5{bottom:556.809620pt;}
.y2e7{bottom:557.160954pt;}
.y15{bottom:558.854574pt;}
.y263{bottom:565.876264pt;}
.y1e5{bottom:566.696289pt;}
.y82{bottom:567.477600pt;}
.ye8{bottom:567.594930pt;}
.y4d{bottom:568.384277pt;}
.yb4{bottom:568.653564pt;}
.y219{bottom:568.656281pt;}
.y2a4{bottom:570.137620pt;}
.y2e6{bottom:570.488954pt;}
.y14{bottom:575.521240pt;}
.y262{bottom:579.204264pt;}
.y1e4{bottom:583.362956pt;}
.y2a3{bottom:583.465620pt;}
.y2e5{bottom:583.816954pt;}
.y81{bottom:584.144267pt;}
.ye7{bottom:584.261597pt;}
.y4c{bottom:585.050944pt;}
.yb3{bottom:585.320231pt;}
.y10a{bottom:585.320272pt;}
.y218{bottom:585.322947pt;}
.y13{bottom:592.187907pt;}
.y2a2{bottom:596.793620pt;}
.y2e4{bottom:597.144954pt;}
.y188{bottom:599.946029pt;}
.y176{bottom:599.946067pt;}
.y164{bottom:599.946105pt;}
.y1c4{bottom:599.946161pt;}
.y1a1{bottom:599.946239pt;}
.y1e3{bottom:600.029622pt;}
.y80{bottom:600.810933pt;}
.ye6{bottom:600.928263pt;}
.y4b{bottom:601.717611pt;}
.yb2{bottom:601.986898pt;}
.y217{bottom:601.989614pt;}
.y1cc{bottom:605.612733pt;}
.y1b3{bottom:605.612867pt;}
.y12{bottom:608.854574pt;}
.y261{bottom:609.204264pt;}
.y2a1{bottom:610.121620pt;}
.y2e3{bottom:610.472954pt;}
.y1e2{bottom:616.696289pt;}
.y7f{bottom:617.477600pt;}
.ye5{bottom:617.594930pt;}
.y4a{bottom:618.384277pt;}
.yb1{bottom:618.653564pt;}
.y216{bottom:618.656281pt;}
.y2a0{bottom:623.449620pt;}
.y2e2{bottom:623.800954pt;}
.y11{bottom:625.521240pt;}
.y18a{bottom:632.053363pt;}
.y178{bottom:632.053400pt;}
.y166{bottom:632.053439pt;}
.y157{bottom:632.053466pt;}
.y1c6{bottom:632.053495pt;}
.y1b5{bottom:632.053533pt;}
.y1a3{bottom:632.053572pt;}
.y194{bottom:632.053598pt;}
.y1e1{bottom:633.362956pt;}
.y7e{bottom:634.144267pt;}
.ye4{bottom:634.261597pt;}
.y49{bottom:635.050944pt;}
.yb0{bottom:635.320231pt;}
.y215{bottom:635.322947pt;}
.y29f{bottom:636.777620pt;}
.y2e1{bottom:637.128954pt;}
.y10{bottom:642.187907pt;}
.y1e0{bottom:650.029622pt;}
.y29e{bottom:650.105620pt;}
.y2e0{bottom:650.456954pt;}
.y7d{bottom:650.810933pt;}
.ye3{bottom:650.928263pt;}
.y48{bottom:651.717611pt;}
.yaf{bottom:651.986898pt;}
.y214{bottom:651.989614pt;}
.yf{bottom:658.854574pt;}
.y29d{bottom:663.433620pt;}
.y2df{bottom:663.784954pt;}
.y1df{bottom:666.696289pt;}
.y7c{bottom:667.477600pt;}
.ye2{bottom:667.594930pt;}
.y260{bottom:667.681637pt;}
.y47{bottom:668.384277pt;}
.yae{bottom:668.653564pt;}
.y213{bottom:668.656281pt;}
.ye{bottom:675.521240pt;}
.y29c{bottom:676.761620pt;}
.y2de{bottom:677.112954pt;}
.y25f{bottom:681.009637pt;}
.y1de{bottom:683.362956pt;}
.y7b{bottom:684.144267pt;}
.y46{bottom:685.050944pt;}
.yad{bottom:685.320231pt;}
.y212{bottom:685.322947pt;}
.y29b{bottom:690.089620pt;}
.y2dd{bottom:690.440954pt;}
.yd{bottom:692.187907pt;}
.y25e{bottom:694.337637pt;}
.y1dd{bottom:700.029622pt;}
.y7a{bottom:700.810933pt;}
.ye1{bottom:700.928304pt;}
.y45{bottom:701.717611pt;}
.yac{bottom:701.986898pt;}
.y211{bottom:701.989614pt;}
.y29a{bottom:703.417620pt;}
.y2dc{bottom:703.768954pt;}
.y25d{bottom:707.665637pt;}
.yc{bottom:708.854574pt;}
.y1dc{bottom:716.696289pt;}
.y299{bottom:716.745620pt;}
.y2db{bottom:717.096954pt;}
.y18c{bottom:717.246029pt;}
.y17a{bottom:717.246067pt;}
.y158{bottom:717.246133pt;}
.y195{bottom:717.246264pt;}
.y79{bottom:717.477600pt;}
.y44{bottom:718.384277pt;}
.yab{bottom:718.653564pt;}
.y210{bottom:718.656281pt;}
.y25c{bottom:720.993637pt;}
.y18b{bottom:725.247363pt;}
.y179{bottom:725.247400pt;}
.y167{bottom:725.247439pt;}
.y1c7{bottom:725.247495pt;}
.y1b6{bottom:725.247533pt;}
.y1a4{bottom:725.247572pt;}
.yb{bottom:725.521240pt;}
.y298{bottom:730.073620pt;}
.y2da{bottom:730.424954pt;}
.y1db{bottom:733.362956pt;}
.y78{bottom:734.144267pt;}
.y25b{bottom:734.321637pt;}
.y43{bottom:735.050944pt;}
.yaa{bottom:735.320231pt;}
.y20f{bottom:735.322947pt;}
.y297{bottom:743.401620pt;}
.y2d9{bottom:743.752954pt;}
.y25a{bottom:747.649637pt;}
.y1da{bottom:750.029622pt;}
.y77{bottom:750.810933pt;}
.ye0{bottom:750.928304pt;}
.y42{bottom:751.717611pt;}
.ya9{bottom:751.986898pt;}
.y20e{bottom:751.989614pt;}
.y296{bottom:756.729620pt;}
.y2d8{bottom:757.080954pt;}
.y259{bottom:760.977637pt;}
.ya{bottom:764.794803pt;}
.y1d9{bottom:766.696289pt;}
.y76{bottom:767.477600pt;}
.ydf{bottom:767.594971pt;}
.y41{bottom:768.384277pt;}
.ya8{bottom:768.653564pt;}
.y20d{bottom:768.656281pt;}
.y295{bottom:770.057620pt;}
.y2d7{bottom:770.408954pt;}
.y258{bottom:774.305637pt;}
.y9{bottom:778.122803pt;}
.y1d8{bottom:783.362956pt;}
.y294{bottom:783.385620pt;}
.y2d6{bottom:783.736954pt;}
.y75{bottom:784.144267pt;}
.yde{bottom:784.261637pt;}
.y40{bottom:785.050944pt;}
.ya7{bottom:785.320231pt;}
.y20c{bottom:785.322947pt;}
.y257{bottom:787.633637pt;}
.y293{bottom:796.713620pt;}
.y2d5{bottom:797.064954pt;}
.y1d7{bottom:800.029622pt;}
.y74{bottom:800.810933pt;}
.ydd{bottom:800.928304pt;}
.y256{bottom:800.961637pt;}
.ya6{bottom:801.986898pt;}
.y20b{bottom:801.989614pt;}
.y18d{bottom:803.606029pt;}
.y17b{bottom:803.606067pt;}
.y168{bottom:803.606105pt;}
.y159{bottom:803.606131pt;}
.y1c8{bottom:803.606161pt;}
.y1b7{bottom:803.606200pt;}
.y1a5{bottom:803.606239pt;}
.y196{bottom:803.606263pt;}
.y292{bottom:810.041620pt;}
.y2d4{bottom:810.392954pt;}
.y18e{bottom:811.607363pt;}
.y17c{bottom:811.607400pt;}
.y169{bottom:811.607439pt;}
.y1c9{bottom:811.607495pt;}
.y1b8{bottom:811.607533pt;}
.y1a6{bottom:811.607572pt;}
.y255{bottom:814.289637pt;}
.y8{bottom:815.989502pt;}
.y1d6{bottom:816.696289pt;}
.y73{bottom:817.477600pt;}
.ydc{bottom:817.594971pt;}
.y3f{bottom:818.384277pt;}
.ya5{bottom:818.653564pt;}
.y20a{bottom:818.656281pt;}
.y291{bottom:823.369620pt;}
.y2d3{bottom:823.720954pt;}
.y7{bottom:832.656169pt;}
.y1d5{bottom:833.362956pt;}
.y72{bottom:834.144267pt;}
.ydb{bottom:834.261637pt;}
.ya4{bottom:835.320231pt;}
.y209{bottom:835.322947pt;}
.y290{bottom:836.697620pt;}
.y2d2{bottom:837.048954pt;}
.y254{bottom:847.609637pt;}
.y311{bottom:850.014288pt;}
.y28f{bottom:850.025620pt;}
.y1d4{bottom:850.029622pt;}
.y2d1{bottom:850.376954pt;}
.y71{bottom:850.810933pt;}
.ya3{bottom:851.986898pt;}
.y208{bottom:851.989614pt;}
.y253{bottom:860.937637pt;}
.y310{bottom:863.342288pt;}
.y28e{bottom:863.353620pt;}
.y2d0{bottom:863.704954pt;}
.y1d3{bottom:866.696289pt;}
.y70{bottom:867.477600pt;}
.yda{bottom:867.594971pt;}
.ya2{bottom:868.653564pt;}
.y207{bottom:868.656281pt;}
.y6{bottom:872.377441pt;}
.y28d{bottom:876.681620pt;}
.y2cf{bottom:877.032954pt;}
.y1d2{bottom:883.362956pt;}
.y6f{bottom:884.144267pt;}
.y3e{bottom:884.146973pt;}
.ya1{bottom:885.320231pt;}
.y206{bottom:885.322947pt;}
.y252{bottom:887.604971pt;}
.y28c{bottom:890.009620pt;}
.y30f{bottom:890.088954pt;}
.y2ce{bottom:890.360954pt;}
.y18f{bottom:891.314694pt;}
.y17d{bottom:891.314733pt;}
.y16a{bottom:891.314772pt;}
.y1ca{bottom:891.314828pt;}
.y1b9{bottom:891.314867pt;}
.y1a7{bottom:891.314905pt;}
.y5{bottom:896.377441pt;}
.y190{bottom:899.316028pt;}
.y1cd{bottom:899.316066pt;}
.y17e{bottom:899.316067pt;}
.y16b{bottom:899.316105pt;}
.y1cb{bottom:899.316161pt;}
.y1ba{bottom:899.316200pt;}
.y1a8{bottom:899.316239pt;}
.y1d1{bottom:900.029622pt;}
.y6e{bottom:900.810933pt;}
.y3d{bottom:900.813639pt;}
.yd9{bottom:900.928304pt;}
.y251{bottom:900.932971pt;}
.y109{bottom:901.981628pt;}
.ya0{bottom:901.986898pt;}
.y205{bottom:901.989614pt;}
.y28b{bottom:903.337620pt;}
.y30e{bottom:903.416954pt;}
.y2cd{bottom:903.688954pt;}
.y250{bottom:914.260971pt;}
.y28a{bottom:916.665620pt;}
.y1d0{bottom:916.696289pt;}
.y30d{bottom:916.744954pt;}
.y2cc{bottom:917.016954pt;}
.y6d{bottom:917.477600pt;}
.y3c{bottom:917.480306pt;}
.yd8{bottom:917.594971pt;}
.y108{bottom:918.648295pt;}
.y9f{bottom:918.653564pt;}
.y204{bottom:918.656281pt;}
.y289{bottom:929.993620pt;}
.y30c{bottom:930.072954pt;}
.y2cb{bottom:930.344954pt;}
.y1cf{bottom:933.362956pt;}
.y6c{bottom:934.144267pt;}
.y3b{bottom:934.146973pt;}
.yd7{bottom:934.261637pt;}
.y107{bottom:935.314962pt;}
.y9e{bottom:935.320231pt;}
.y203{bottom:935.322947pt;}
.y24f{bottom:940.928304pt;}
.y288{bottom:943.321620pt;}
.y30b{bottom:943.400954pt;}
.y2ca{bottom:943.672954pt;}
.y6b{bottom:950.810933pt;}
.y3a{bottom:950.813639pt;}
.y106{bottom:951.981628pt;}
.y9d{bottom:951.986898pt;}
.y202{bottom:951.989614pt;}
.y128{bottom:955.652306pt;}
.y4{bottom:956.561849pt;}
.y287{bottom:956.649620pt;}
.y30a{bottom:956.728954pt;}
.y2c9{bottom:957.000954pt;}
.y1ce{bottom:966.696289pt;}
.y6a{bottom:967.477600pt;}
.y39{bottom:967.480306pt;}
.yd6{bottom:967.594971pt;}
.y105{bottom:968.648295pt;}
.y9c{bottom:968.653564pt;}
.y201{bottom:968.656281pt;}
.y127{bottom:968.980306pt;}
.y286{bottom:969.977620pt;}
.y309{bottom:970.056954pt;}
.y2c8{bottom:970.328954pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y38{bottom:1002.206543pt;}
.hc{height:22.403733pt;}
.h2{height:30.080000pt;}
.hb{height:32.005333pt;}
.ha{height:32.760417pt;}
.h9{height:37.653333pt;}
.h7{height:38.453333pt;}
.h3{height:39.712000pt;}
.hf{height:40.165333pt;}
.hd{height:46.144000pt;}
.h10{height:46.376000pt;}
.h8{height:47.253333pt;}
.h4{height:49.298667pt;}
.he{height:52.448000pt;}
.h6{height:57.658667pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.x7{left:83.138132pt;}
.x4{left:86.929867pt;}
.x62{left:90.708669pt;}
.x35{left:98.209462pt;}
.xd{left:99.189738pt;}
.x36{left:111.537462pt;}
.xe{left:112.517738pt;}
.x37{left:136.130796pt;}
.xf{left:137.485071pt;}
.x9{left:147.816132pt;}
.x38{left:149.458796pt;}
.x10{left:150.813071pt;}
.x39{left:162.786796pt;}
.x11{left:164.141071pt;}
.x3a{left:176.114796pt;}
.x12{left:177.469071pt;}
.x3b{left:189.442796pt;}
.x13{left:190.797071pt;}
.x3c{left:202.770796pt;}
.x14{left:204.125071pt;}
.xa{left:205.106157pt;}
.xc{left:213.107512pt;}
.x3d{left:216.053462pt;}
.x15{left:217.453071pt;}
.x3e{left:229.381462pt;}
.x16{left:230.781071pt;}
.x3f{left:242.709462pt;}
.x17{left:244.109071pt;}
.x40{left:255.958134pt;}
.x18{left:257.391741pt;}
.x41{left:269.286134pt;}
.x19{left:270.719741pt;}
.x57{left:282.568798pt;}
.x1a{left:283.934411pt;}
.x42{left:285.878134pt;}
.x58{left:295.896798pt;}
.x1b{left:297.205745pt;}
.x43{left:299.206134pt;}
.x59{left:309.224798pt;}
.x1c{left:310.533745pt;}
.x44{left:312.534134pt;}
.x1d{left:323.861745pt;}
.x45{left:325.862134pt;}
.x46{left:339.190134pt;}
.x1e{left:340.442411pt;}
.x47{left:352.518134pt;}
.x1f{left:353.770411pt;}
.x48{left:365.846134pt;}
.x20{left:367.098411pt;}
.x49{left:379.174134pt;}
.x21{left:380.426411pt;}
.x4a{left:392.502134pt;}
.x22{left:393.754411pt;}
.x4b{left:405.830134pt;}
.x23{left:407.037080pt;}
.x5{left:408.188924pt;}
.x4c{left:419.158134pt;}
.x24{left:420.331080pt;}
.x8{left:423.284796pt;}
.x6{left:427.081599pt;}
.x61{left:430.866924pt;}
.x5a{left:432.463468pt;}
.x4d{left:435.625471pt;}
.x25{left:436.934413pt;}
.x5b{left:445.791468pt;}
.x4e{left:448.953471pt;}
.x26{left:450.262413pt;}
.x5c{left:459.119468pt;}
.x4f{left:462.281471pt;}
.x27{left:463.590413pt;}
.x5d{left:472.447468pt;}
.x50{left:475.609471pt;}
.x28{left:476.918413pt;}
.x5e{left:485.775468pt;}
.x51{left:488.937471pt;}
.x29{left:490.246413pt;}
.x5f{left:498.956135pt;}
.x52{left:502.265471pt;}
.x2a{left:503.574413pt;}
.x60{left:512.216138pt;}
.x53{left:515.593471pt;}
.x2b{left:516.902413pt;}
.x54{left:528.921471pt;}
.x2c{left:530.230413pt;}
.x55{left:542.249471pt;}
.x2d{left:543.558413pt;}
.x56{left:555.396147pt;}
.x2e{left:556.886413pt;}
.x2f{left:570.214413pt;}
.x30{left:583.542413pt;}
.x31{left:596.813746pt;}
.x32{left:610.141746pt;}
.x33{left:623.469746pt;}
.x34{left:636.797746pt;}
.x1{left:647.307210pt;}
.xb{left:691.782172pt;}
}




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