
    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_2623000edf6ed4b3a9365e76.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.047852;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_3f766aac9b432958cc171740.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.047852;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_05a160884ed3d5849129cc7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.047852;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_35e053d32ce65b5fc02da27f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946289;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_da1d33baa0ce24cb19b30362.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.047852;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_f92f2dedca871b93e79f9e66.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_b67afb8ef6784bfacba4e818.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.699000;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_856b6cdf70ab90767cdf1ce8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.969000;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_e57e4ac368e9bcf079ab8da3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;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_20762e36e143d608d73e847b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.934500;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_eb6bf327afb04ee61930008d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.047852;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_2d14d20496e487cb5697796a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.047852;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_d5034ac6214ae7af429f0a93.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.047852;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_eb6bf327afb04ee61930008d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.047852;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_2d14d20496e487cb5697796a.woff2')format("woff");}.fff{font-family:fff;line-height:1.047852;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_d5034ac6214ae7af429f0a93.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.047852;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_a2258d3cb49352ae6b157421.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_52e6327e92bfcfed2aff940e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ed61b3f35e833769b9b8afa4.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.951660;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e4fe797dc915b1a4c760bb4c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v6{vertical-align:-19.379400px;}
.v9{vertical-align:-18.360000px;}
.v3{vertical-align:-17.340000px;}
.v5{vertical-align:-11.445000px;}
.vb{vertical-align:-8.535000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.340000px;}
.v7{vertical-align:18.360000px;}
.v2{vertical-align:19.365000px;}
.v1{vertical-align:20.400000px;}
.v8{vertical-align:22.512000px;}
.va{vertical-align:30.788550px;}
.ls2c{letter-spacing:-2.223000px;}
.ls27{letter-spacing:-1.653000px;}
.ls45{letter-spacing:-1.395000px;}
.lsd{letter-spacing:-1.254000px;}
.ls10{letter-spacing:-1.083000px;}
.ls11{letter-spacing:-1.026000px;}
.lsf{letter-spacing:-0.969000px;}
.ls1a{letter-spacing:-0.918000px;}
.ls16{letter-spacing:-0.912000px;}
.ls44{letter-spacing:-0.855000px;}
.ls15{letter-spacing:-0.741000px;}
.ls40{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.714000px;}
.lsc{letter-spacing:-0.684000px;}
.ls17{letter-spacing:-0.627000px;}
.ls41{letter-spacing:-0.585000px;}
.ls9{letter-spacing:-0.570000px;}
.ls42{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.513000px;}
.ls3d{letter-spacing:-0.450000px;}
.ls3f{letter-spacing:-0.405000px;}
.ls2d{letter-spacing:-0.399000px;}
.ls43{letter-spacing:-0.315000px;}
.ls28{letter-spacing:-0.285000px;}
.ls2a{letter-spacing:-0.259350px;}
.lsa{letter-spacing:-0.228000px;}
.ls24{letter-spacing:-0.216000px;}
.ls3e{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.126000px;}
.ls8{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.001200px;}
.ls5{letter-spacing:0.004050px;}
.ls6{letter-spacing:0.004800px;}
.ls4{letter-spacing:0.007800px;}
.ls14{letter-spacing:0.062700px;}
.ls22{letter-spacing:0.126000px;}
.ls1d{letter-spacing:0.171000px;}
.ls30{letter-spacing:0.256500px;}
.ls1b{letter-spacing:0.285000px;}
.ls1c{letter-spacing:0.290700px;}
.ls1f{letter-spacing:0.342000px;}
.ls39{letter-spacing:0.594000px;}
.ls7{letter-spacing:0.960000px;}
.ls49{letter-spacing:2.142000px;}
.ls0{letter-spacing:2.592000px;}
.ls48{letter-spacing:2.668500px;}
.lsb{letter-spacing:2.700000px;}
.ls38{letter-spacing:2.745000px;}
.ls2{letter-spacing:2.767500px;}
.ls37{letter-spacing:2.794500px;}
.ls34{letter-spacing:2.925000px;}
.ls35{letter-spacing:2.970000px;}
.ls36{letter-spacing:3.015000px;}
.ls33{letter-spacing:3.019500px;}
.ls47{letter-spacing:3.037500px;}
.ls2e{letter-spacing:3.060000px;}
.ls31{letter-spacing:3.064500px;}
.ls2f{letter-spacing:3.069000px;}
.ls3a{letter-spacing:3.073500px;}
.ls3c{letter-spacing:3.082500px;}
.ls3{letter-spacing:3.331800px;}
.ls3b{letter-spacing:3.555000px;}
.ls1{letter-spacing:3.840000px;}
.ls4a{letter-spacing:3.881700px;}
.ls13{letter-spacing:3.887400px;}
.ls2b{letter-spacing:4.620000px;}
.ls46{letter-spacing:4.684500px;}
.ls25{letter-spacing:6.120000px;}
.ls32{letter-spacing:7.371000px;}
.ls1e{letter-spacing:7.421400px;}
.ls29{letter-spacing:7.455600px;}
.ls12{letter-spacing:8.635500px;}
.ls18{letter-spacing:11.742000px;}
.ls19{letter-spacing:14.742000px;}
.ls20{letter-spacing:349.566000px;}
.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;}
}
.wsf5{word-spacing:-21.792000px;}
.ws2{word-spacing:-15.067500px;}
.ws29{word-spacing:-13.596000px;}
.wsb3{word-spacing:-13.281000px;}
.ws26{word-spacing:-13.053000px;}
.ws7{word-spacing:-12.939000px;}
.ws27{word-spacing:-12.825000px;}
.ws109{word-spacing:-12.654000px;}
.ws5{word-spacing:-12.483000px;}
.ws6f{word-spacing:-12.426000px;}
.ws6d{word-spacing:-12.360000px;}
.ws6c{word-spacing:-12.312000px;}
.ws25{word-spacing:-12.255000px;}
.wsdb{word-spacing:-12.198000px;}
.ws0{word-spacing:-12.192000px;}
.ws6e{word-spacing:-12.141000px;}
.ws2a{word-spacing:-12.084000px;}
.ws2c{word-spacing:-12.027000px;}
.ws2b{word-spacing:-11.970000px;}
.wsf3{word-spacing:-11.856000px;}
.ws9c{word-spacing:-11.826000px;}
.ws28{word-spacing:-11.799000px;}
.ws4{word-spacing:-11.124000px;}
.ws9d{word-spacing:-10.908000px;}
.ws13{word-spacing:-10.545000px;}
.ws156{word-spacing:-10.305000px;}
.ws118{word-spacing:-10.215000px;}
.ws115{word-spacing:-10.125000px;}
.wsc1{word-spacing:-9.990000px;}
.ws114{word-spacing:-9.855000px;}
.ws119{word-spacing:-9.720000px;}
.ws116{word-spacing:-9.585000px;}
.wsc6{word-spacing:-9.534000px;}
.wsc4{word-spacing:-9.198000px;}
.wsc3{word-spacing:-9.114000px;}
.wsc5{word-spacing:-8.484000px;}
.ws6{word-spacing:-8.410350px;}
.wsf4{word-spacing:-8.151000px;}
.ws3{word-spacing:-8.034000px;}
.ws9e{word-spacing:-7.967700px;}
.ws117{word-spacing:-6.639750px;}
.ws8{word-spacing:-6.630000px;}
.wsda{word-spacing:-6.120000px;}
.ws93{word-spacing:-5.814000px;}
.ws10a{word-spacing:-4.620000px;}
.wsce{word-spacing:-3.864000px;}
.wsff{word-spacing:-3.477000px;}
.wsfd{word-spacing:-3.360000px;}
.wsfe{word-spacing:-2.850000px;}
.ws24{word-spacing:-2.760000px;}
.ws1{word-spacing:-2.640000px;}
.ws168{word-spacing:-1.881000px;}
.ws138{word-spacing:-1.575000px;}
.wsb1{word-spacing:-1.368000px;}
.ws163{word-spacing:-0.810000px;}
.ws12b{word-spacing:-0.720000px;}
.wsbd{word-spacing:-0.570000px;}
.ws8e{word-spacing:-0.399000px;}
.wse{word-spacing:-0.360000px;}
.ws108{word-spacing:-0.037050px;}
.wsc2{word-spacing:-0.035100px;}
.ws9{word-spacing:0.000000px;}
.ws77{word-spacing:0.171000px;}
.ws1b{word-spacing:0.228000px;}
.wse7{word-spacing:0.285000px;}
.ws124{word-spacing:0.360000px;}
.wsf7{word-spacing:0.399000px;}
.ws15a{word-spacing:0.450000px;}
.ws47{word-spacing:0.456000px;}
.ws48{word-spacing:0.513000px;}
.ws34{word-spacing:0.570000px;}
.ws3c{word-spacing:0.684000px;}
.ws3d{word-spacing:0.741000px;}
.ws14d{word-spacing:0.765000px;}
.ws103{word-spacing:0.780000px;}
.ws82{word-spacing:0.798000px;}
.wsb7{word-spacing:0.855000px;}
.ws11a{word-spacing:0.912000px;}
.wseb{word-spacing:0.969000px;}
.wsb4{word-spacing:1.026000px;}
.ws159{word-spacing:1.035000px;}
.wsf{word-spacing:1.080000px;}
.wsbc{word-spacing:1.083000px;}
.ws7a{word-spacing:1.140000px;}
.ws72{word-spacing:1.197000px;}
.wse9{word-spacing:1.254000px;}
.ws57{word-spacing:1.311000px;}
.ws111{word-spacing:1.368000px;}
.wsd{word-spacing:1.380000px;}
.ws141{word-spacing:1.395000px;}
.ws38{word-spacing:1.425000px;}
.ws41{word-spacing:1.482000px;}
.ws16c{word-spacing:1.518000px;}
.wsbf{word-spacing:1.539000px;}
.wsad{word-spacing:1.596000px;}
.wsba{word-spacing:1.653000px;}
.ws155{word-spacing:1.665000px;}
.ws84{word-spacing:1.710000px;}
.ws40{word-spacing:1.767000px;}
.ws49{word-spacing:1.824000px;}
.ws3f{word-spacing:1.881000px;}
.ws166{word-spacing:1.890000px;}
.ws167{word-spacing:1.935000px;}
.wsab{word-spacing:1.938000px;}
.wsf2{word-spacing:1.995000px;}
.ws8a{word-spacing:2.052000px;}
.wsd7{word-spacing:2.109000px;}
.wsd2{word-spacing:2.166000px;}
.ws43{word-spacing:2.223000px;}
.ws3e{word-spacing:2.280000px;}
.ws14c{word-spacing:2.295000px;}
.ws50{word-spacing:2.337000px;}
.ws157{word-spacing:2.385000px;}
.ws12{word-spacing:2.394000px;}
.ws12c{word-spacing:2.430000px;}
.ws2e{word-spacing:2.451000px;}
.ws10b{word-spacing:2.460000px;}
.wsb8{word-spacing:2.508000px;}
.wse5{word-spacing:2.565000px;}
.ws100{word-spacing:2.580000px;}
.ws12d{word-spacing:2.610000px;}
.ws10c{word-spacing:2.622000px;}
.ws15b{word-spacing:2.655000px;}
.ws39{word-spacing:2.679000px;}
.ws160{word-spacing:2.700000px;}
.ws20{word-spacing:2.703000px;}
.wscd{word-spacing:2.730000px;}
.ws73{word-spacing:2.736000px;}
.ws14a{word-spacing:2.745000px;}
.ws14b{word-spacing:2.790000px;}
.wsa1{word-spacing:2.793000px;}
.ws164{word-spacing:2.835000px;}
.ws54{word-spacing:2.850000px;}
.wscf{word-spacing:2.856000px;}
.wsa{word-spacing:2.880000px;}
.ws75{word-spacing:2.907000px;}
.ws158{word-spacing:2.925000px;}
.ws11{word-spacing:2.964000px;}
.ws13d{word-spacing:2.970000px;}
.ws12e{word-spacing:3.015000px;}
.ws91{word-spacing:3.021000px;}
.ws23{word-spacing:3.060000px;}
.ws31{word-spacing:3.078000px;}
.ws11c{word-spacing:3.105000px;}
.ws1a{word-spacing:3.135000px;}
.ws13e{word-spacing:3.150000px;}
.ws74{word-spacing:3.192000px;}
.ws120{word-spacing:3.285000px;}
.ws8d{word-spacing:3.306000px;}
.ws165{word-spacing:3.330000px;}
.ws10{word-spacing:3.348000px;}
.ws86{word-spacing:3.363000px;}
.ws8f{word-spacing:3.420000px;}
.ws162{word-spacing:3.465000px;}
.wsac{word-spacing:3.477000px;}
.wsa4{word-spacing:3.510000px;}
.ws55{word-spacing:3.534000px;}
.ws130{word-spacing:3.555000px;}
.wsa5{word-spacing:3.564000px;}
.ws21{word-spacing:3.570000px;}
.ws14{word-spacing:3.591000px;}
.ws152{word-spacing:3.600000px;}
.ws18{word-spacing:3.648000px;}
.wsa6{word-spacing:3.672000px;}
.wse1{word-spacing:3.705000px;}
.wsc{word-spacing:3.720000px;}
.ws8c{word-spacing:3.762000px;}
.ws1d{word-spacing:3.774000px;}
.ws153{word-spacing:3.780000px;}
.ws12f{word-spacing:3.825000px;}
.ws32{word-spacing:3.876000px;}
.ws53{word-spacing:3.933000px;}
.wsd0{word-spacing:3.942000px;}
.wsfb{word-spacing:3.960000px;}
.ws112{word-spacing:3.990000px;}
.ws56{word-spacing:4.047000px;}
.ws131{word-spacing:4.050000px;}
.ws16d{word-spacing:4.092000px;}
.ws132{word-spacing:4.095000px;}
.ws7b{word-spacing:4.104000px;}
.ws7d{word-spacing:4.161000px;}
.ws15{word-spacing:4.218000px;}
.ws133{word-spacing:4.275000px;}
.ws63{word-spacing:4.332000px;}
.ws134{word-spacing:4.365000px;}
.wsd3{word-spacing:4.389000px;}
.ws144{word-spacing:4.410000px;}
.ws51{word-spacing:4.503000px;}
.ws22{word-spacing:4.539000px;}
.wsd1{word-spacing:4.560000px;}
.wsea{word-spacing:4.617000px;}
.ws16{word-spacing:4.674000px;}
.ws15e{word-spacing:4.680000px;}
.ws15f{word-spacing:4.725000px;}
.ws52{word-spacing:4.731000px;}
.ws142{word-spacing:4.770000px;}
.ws5b{word-spacing:4.788000px;}
.ws85{word-spacing:4.845000px;}
.ws96{word-spacing:4.902000px;}
.ws13c{word-spacing:4.905000px;}
.ws36{word-spacing:4.959000px;}
.ws143{word-spacing:4.995000px;}
.ws80{word-spacing:5.016000px;}
.ws30{word-spacing:5.073000px;}
.ws14f{word-spacing:5.085000px;}
.ws10e{word-spacing:5.100000px;}
.ws46{word-spacing:5.130000px;}
.ws19{word-spacing:5.187000px;}
.ws3b{word-spacing:5.244000px;}
.ws95{word-spacing:5.301000px;}
.ws150{word-spacing:5.310000px;}
.ws14e{word-spacing:5.355000px;}
.wse4{word-spacing:5.358000px;}
.ws145{word-spacing:5.400000px;}
.ws17{word-spacing:5.415000px;}
.ws146{word-spacing:5.445000px;}
.ws4e{word-spacing:5.472000px;}
.ws15c{word-spacing:5.490000px;}
.ws37{word-spacing:5.529000px;}
.ws129{word-spacing:5.535000px;}
.ws12a{word-spacing:5.580000px;}
.ws149{word-spacing:5.625000px;}
.wsb0{word-spacing:5.643000px;}
.ws4f{word-spacing:5.700000px;}
.ws87{word-spacing:5.757000px;}
.ws128{word-spacing:5.760000px;}
.ws151{word-spacing:5.805000px;}
.wse2{word-spacing:5.814000px;}
.ws15d{word-spacing:5.850000px;}
.wsec{word-spacing:5.871000px;}
.ws2f{word-spacing:5.985000px;}
.ws7c{word-spacing:6.042000px;}
.wsb5{word-spacing:6.099000px;}
.ws1f{word-spacing:6.120000px;}
.wsf1{word-spacing:6.156000px;}
.ws154{word-spacing:6.255000px;}
.ws78{word-spacing:6.270000px;}
.wsbb{word-spacing:6.300000px;}
.ws1e{word-spacing:6.375000px;}
.ws8b{word-spacing:6.384000px;}
.ws90{word-spacing:6.441000px;}
.ws83{word-spacing:6.498000px;}
.wsf6{word-spacing:6.555000px;}
.ws10d{word-spacing:6.612000px;}
.ws147{word-spacing:6.660000px;}
.ws35{word-spacing:6.669000px;}
.ws148{word-spacing:6.705000px;}
.ws59{word-spacing:6.726000px;}
.ws33{word-spacing:6.840000px;}
.wsa3{word-spacing:6.897000px;}
.ws13f{word-spacing:6.930000px;}
.ws61{word-spacing:6.954000px;}
.ws44{word-spacing:7.011000px;}
.ws2d{word-spacing:7.068000px;}
.ws76{word-spacing:7.125000px;}
.ws140{word-spacing:7.155000px;}
.ws5a{word-spacing:7.182000px;}
.ws102{word-spacing:7.239000px;}
.ws58{word-spacing:7.296000px;}
.ws136{word-spacing:7.335000px;}
.wsed{word-spacing:7.353000px;}
.ws7e{word-spacing:7.380000px;}
.wsdf{word-spacing:7.410000px;}
.ws137{word-spacing:7.425000px;}
.ws45{word-spacing:7.467000px;}
.ws6a{word-spacing:7.524000px;}
.ws6b{word-spacing:7.581000px;}
.ws135{word-spacing:7.605000px;}
.ws79{word-spacing:7.638000px;}
.ws7f{word-spacing:7.695000px;}
.wsbe{word-spacing:7.752000px;}
.ws92{word-spacing:7.809000px;}
.ws106{word-spacing:7.866000px;}
.wsfa{word-spacing:7.923000px;}
.ws139{word-spacing:7.965000px;}
.ws169{word-spacing:7.980000px;}
.wsc0{word-spacing:8.037000px;}
.ws110{word-spacing:8.040000px;}
.ws89{word-spacing:8.094000px;}
.ws97{word-spacing:8.151000px;}
.wsd4{word-spacing:8.208000px;}
.wsfc{word-spacing:8.265000px;}
.wsae{word-spacing:8.322000px;}
.ws9a{word-spacing:8.379000px;}
.ws99{word-spacing:8.436000px;}
.wse8{word-spacing:8.493000px;}
.ws13a{word-spacing:8.595000px;}
.ws71{word-spacing:8.607000px;}
.wsb9{word-spacing:8.664000px;}
.ws70{word-spacing:8.721000px;}
.wsb6{word-spacing:8.778000px;}
.ws88{word-spacing:8.820000px;}
.ws105{word-spacing:8.835000px;}
.wse3{word-spacing:8.892000px;}
.ws98{word-spacing:8.949000px;}
.wsd5{word-spacing:9.006000px;}
.ws5e{word-spacing:9.120000px;}
.wsd9{word-spacing:9.177000px;}
.ws5d{word-spacing:9.234000px;}
.ws3a{word-spacing:9.291000px;}
.ws13b{word-spacing:9.360000px;}
.ws16e{word-spacing:9.405000px;}
.ws5f{word-spacing:9.462000px;}
.ws5c{word-spacing:9.576000px;}
.ws161{word-spacing:9.585000px;}
.wsd6{word-spacing:9.633000px;}
.wsb{word-spacing:9.672000px;}
.ws10f{word-spacing:9.747000px;}
.wsb2{word-spacing:9.861000px;}
.ws42{word-spacing:9.918000px;}
.wsf9{word-spacing:10.089000px;}
.ws113{word-spacing:10.146000px;}
.ws94{word-spacing:10.260000px;}
.wse6{word-spacing:10.317000px;}
.ws125{word-spacing:10.530000px;}
.ws11f{word-spacing:10.575000px;}
.ws81{word-spacing:10.602000px;}
.ws126{word-spacing:10.800000px;}
.ws127{word-spacing:10.935000px;}
.wsde{word-spacing:11.001000px;}
.wsd8{word-spacing:11.058000px;}
.wsee{word-spacing:11.115000px;}
.ws1c{word-spacing:11.172000px;}
.ws16a{word-spacing:11.286000px;}
.wse0{word-spacing:11.400000px;}
.wsf0{word-spacing:11.457000px;}
.wsa2{word-spacing:11.571000px;}
.ws107{word-spacing:11.628000px;}
.ws9f{word-spacing:11.685000px;}
.ws11d{word-spacing:11.700000px;}
.ws11e{word-spacing:11.790000px;}
.wsdc{word-spacing:11.856000px;}
.wsdd{word-spacing:11.913000px;}
.ws66{word-spacing:11.940000px;}
.ws60{word-spacing:12.141000px;}
.wsa0{word-spacing:12.198000px;}
.ws16b{word-spacing:12.426000px;}
.ws4b{word-spacing:12.480000px;}
.ws67{word-spacing:12.483000px;}
.ws68{word-spacing:12.597000px;}
.ws9b{word-spacing:12.825000px;}
.wsef{word-spacing:13.053000px;}
.ws11b{word-spacing:13.851000px;}
.wsa8{word-spacing:14.520000px;}
.ws64{word-spacing:14.991000px;}
.wsf8{word-spacing:15.105000px;}
.ws65{word-spacing:15.180000px;}
.wsa9{word-spacing:15.219000px;}
.ws104{word-spacing:15.390000px;}
.wsaa{word-spacing:15.732000px;}
.ws4d{word-spacing:15.846000px;}
.ws4c{word-spacing:15.960000px;}
.ws101{word-spacing:16.074000px;}
.ws69{word-spacing:17.100000px;}
.ws4a{word-spacing:18.000000px;}
.wsaf{word-spacing:18.297000px;}
.ws62{word-spacing:18.582000px;}
.ws121{word-spacing:21.825000px;}
.ws122{word-spacing:22.005000px;}
.ws123{word-spacing:22.185000px;}
.wsa7{word-spacing:30.720000px;}
.wsc8{word-spacing:164.892000px;}
.wscb{word-spacing:172.578000px;}
.wsca{word-spacing:176.568000px;}
.wsc9{word-spacing:376.618200px;}
.wscc{word-spacing:379.638000px;}
.wsc7{word-spacing:441.298200px;}
._4e{margin-left:-24.003000px;}
._4b{margin-left:-19.115400px;}
._4a{margin-left:-17.691000px;}
._12{margin-left:-16.416000px;}
._13{margin-left:-14.733600px;}
._4c{margin-left:-13.569300px;}
._16{margin-left:-12.447000px;}
._b{margin-left:-11.130000px;}
._f{margin-left:-9.225000px;}
._8{margin-left:-7.677000px;}
._e{margin-left:-6.207000px;}
._4{margin-left:-4.434000px;}
._2{margin-left:-2.792400px;}
._0{margin-left:-1.776000px;}
._7{width:1.149000px;}
._3{width:2.195400px;}
._5{width:3.229200px;}
._6{width:4.279200px;}
._a{width:6.283800px;}
._10{width:7.296000px;}
._1{width:9.328800px;}
._14{width:10.388700px;}
._45{width:11.400000px;}
._9{width:13.390800px;}
._44{width:14.558400px;}
._d{width:16.074000px;}
._15{width:33.631800px;}
._c{width:35.155800px;}
._4d{width:39.909600px;}
._46{width:42.567000px;}
._48{width:44.367600px;}
._49{width:46.503600px;}
._11{width:48.088800px;}
._47{width:50.707200px;}
._1c{width:88.158000px;}
._33{width:104.412000px;}
._2d{width:114.798000px;}
._32{width:129.224400px;}
._1e{width:135.273000px;}
._3e{width:141.048000px;}
._1d{width:154.790400px;}
._27{width:160.239000px;}
._29{width:165.714000px;}
._2c{width:169.776000px;}
._26{width:180.242400px;}
._19{width:186.240000px;}
._1f{width:190.230000px;}
._31{width:191.918400px;}
._28{width:214.220400px;}
._3a{width:216.542400px;}
._37{width:234.705000px;}
._39{width:238.470000px;}
._1b{width:242.688000px;}
._38{width:257.480400px;}
._36{width:258.572400px;}
._18{width:265.704000px;}
._43{width:284.643000px;}
._35{width:286.884000px;}
._42{width:298.494000px;}
._17{width:305.318400px;}
._34{width:306.914400px;}
._1a{width:325.772400px;}
._2b{width:327.696000px;}
._30{width:336.639000px;}
._40{width:343.611000px;}
._3b{width:347.066400px;}
._41{width:352.022400px;}
._2f{width:355.676400px;}
._2a{width:363.488400px;}
._3d{width:371.292000px;}
._25{width:373.728000px;}
._3f{width:387.660000px;}
._21{width:393.090000px;}
._24{width:396.668400px;}
._23{width:405.992400px;}
._3c{width:407.042400px;}
._20{width:412.838400px;}
._2e{width:471.638400px;}
._22{width:474.914400px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs10{font-size:29.250000px;}
.fs8{font-size:33.150000px;}
.fsc{font-size:35.100000px;}
.fs7{font-size:37.050000px;}
.fs4{font-size:39.000000px;}
.fsd{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsb{font-size:66.000000px;}
.fse{font-size:96.000000px;}
.fsa{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y2a{bottom:64.048500px;}
.y155{bottom:64.053750px;}
.y6f{bottom:64.057500px;}
.y201{bottom:64.087500px;}
.yae{bottom:64.300800px;}
.y198{bottom:64.312050px;}
.yd1{bottom:64.315800px;}
.y248{bottom:66.798300px;}
.yee{bottom:71.444550px;}
.y154{bottom:79.800000px;}
.y6e{bottom:79.803750px;}
.ya8{bottom:79.818750px;}
.y200{bottom:79.833750px;}
.y247{bottom:79.927050px;}
.yad{bottom:80.047050px;}
.y197{bottom:80.058300px;}
.yd0{bottom:80.062050px;}
.y29{bottom:81.299250px;}
.y162{bottom:84.652950px;}
.yed{bottom:87.190800px;}
.y246{bottom:93.055800px;}
.y13c{bottom:95.118300px;}
.y6d{bottom:95.550000px;}
.y1cb{bottom:95.553750px;}
.ya7{bottom:95.565000px;}
.y1ff{bottom:95.580000px;}
.yac{bottom:95.804550px;}
.ycf{bottom:95.808300px;}
.y28{bottom:98.547000px;}
.y161{bottom:101.149950px;}
.yec{bottom:102.937050px;}
.y245{bottom:106.184550px;}
.y13b{bottom:110.864550px;}
.y6c{bottom:111.300000px;}
.y1ca{bottom:111.303750px;}
.ya6{bottom:111.311250px;}
.y1fe{bottom:111.326250px;}
.yab{bottom:111.550800px;}
.yce{bottom:111.554550px;}
.y27{bottom:116.549250px;}
.y160{bottom:117.646950px;}
.yeb{bottom:118.683300px;}
.y244{bottom:119.313300px;}
.y13a{bottom:126.610800px;}
.y1c9{bottom:127.053750px;}
.ya5{bottom:127.057500px;}
.y1fd{bottom:127.072500px;}
.yaa{bottom:127.297050px;}
.ycd{bottom:127.300800px;}
.y153{bottom:127.327050px;}
.y243{bottom:132.442050px;}
.y26{bottom:133.799250px;}
.y15f{bottom:134.143950px;}
.yea{bottom:134.429550px;}
.y139{bottom:142.357050px;}
.ya4{bottom:142.803750px;}
.y1c8{bottom:142.811100px;}
.y1fc{bottom:142.818750px;}
.y6b{bottom:142.929150px;}
.ya9{bottom:143.043300px;}
.ycc{bottom:143.047050px;}
.y152{bottom:143.073300px;}
.y196{bottom:143.092050px;}
.y242{bottom:145.570800px;}
.ye9{bottom:150.175800px;}
.y15e{bottom:150.640950px;}
.y25{bottom:151.049250px;}
.y138{bottom:158.103300px;}
.y1c7{bottom:158.557350px;}
.ya3{bottom:158.561250px;}
.y1fb{bottom:158.565000px;}
.y6a{bottom:158.675400px;}
.y241{bottom:158.699550px;}
.y151{bottom:158.819550px;}
.y195{bottom:158.838300px;}
.ycb{bottom:158.868300px;}
.ye8{bottom:165.922050px;}
.y15d{bottom:167.137950px;}
.y240{bottom:171.828300px;}
.y24{bottom:172.635000px;}
.y137{bottom:173.849550px;}
.y1c6{bottom:174.303600px;}
.ya2{bottom:174.307500px;}
.y1fa{bottom:174.311250px;}
.y69{bottom:174.429150px;}
.y150{bottom:174.565800px;}
.y194{bottom:174.584550px;}
.yca{bottom:174.614550px;}
.y284{bottom:177.933300px;}
.ye7{bottom:181.668300px;}
.y15c{bottom:183.634950px;}
.y23f{bottom:184.957050px;}
.y136{bottom:189.595800px;}
.ya1{bottom:190.053750px;}
.y1c5{bottom:190.057500px;}
.y68{bottom:190.175400px;}
.y14f{bottom:190.312050px;}
.y193{bottom:190.330800px;}
.yc9{bottom:190.360800px;}
.y283{bottom:193.679550px;}
.y127{bottom:194.421300px;}
.ye6{bottom:197.418300px;}
.yb5{bottom:197.737950px;}
.y23e{bottom:198.085800px;}
.y15b{bottom:200.131950px;}
.y135{bottom:205.342050px;}
.y1c4{bottom:205.803750px;}
.ya0{bottom:205.856250px;}
.y67{bottom:205.925400px;}
.y14e{bottom:206.058300px;}
.y192{bottom:206.077050px;}
.yc8{bottom:206.107050px;}
.y282{bottom:209.425800px;}
.y23d{bottom:211.214550px;}
.yb4{bottom:214.234950px;}
.y126{bottom:215.508300px;}
.y15a{bottom:216.628950px;}
.y23{bottom:218.953050px;}
.y134{bottom:221.088300px;}
.y1f9{bottom:221.550000px;}
.y1c3{bottom:221.561250px;}
.y9f{bottom:221.602500px;}
.y66{bottom:221.724150px;}
.y14d{bottom:221.804550px;}
.y191{bottom:221.823300px;}
.yc7{bottom:221.853300px;}
.y23c{bottom:224.343300px;}
.y281{bottom:225.172050px;}
.y125{bottom:227.424300px;}
.yb3{bottom:230.731950px;}
.y22{bottom:234.699300px;}
.ye5{bottom:236.800800px;}
.y133{bottom:236.834550px;}
.y1c2{bottom:237.307500px;}
.y9e{bottom:237.348750px;}
.y65{bottom:237.470400px;}
.y23b{bottom:237.472050px;}
.y14c{bottom:237.550800px;}
.y190{bottom:237.569550px;}
.yc6{bottom:237.599550px;}
.y280{bottom:240.918300px;}
.y124{bottom:243.921300px;}
.yb2{bottom:247.237950px;}
.y21{bottom:250.445550px;}
.y23a{bottom:250.600800px;}
.ye4{bottom:252.547050px;}
.y132{bottom:252.580800px;}
.y1c1{bottom:253.053750px;}
.y9d{bottom:253.095000px;}
.y64{bottom:253.216650px;}
.y14b{bottom:253.297050px;}
.y18f{bottom:253.315800px;}
.yc5{bottom:253.345800px;}
.y1f8{bottom:256.278600px;}
.y123{bottom:260.418300px;}
.y27f{bottom:263.424300px;}
.y239{bottom:263.729550px;}
.yb1{bottom:263.734950px;}
.y20{bottom:266.191800px;}
.y131{bottom:268.327050px;}
.ye3{bottom:268.342050px;}
.y1c0{bottom:268.803750px;}
.y9c{bottom:268.841250px;}
.y63{bottom:268.962900px;}
.y14a{bottom:269.058300px;}
.y18e{bottom:269.062050px;}
.yc4{bottom:269.092050px;}
.y1f7{bottom:272.024850px;}
.y238{bottom:276.858300px;}
.y27e{bottom:279.170550px;}
.yb0{bottom:280.231950px;}
.y1f{bottom:281.938050px;}
.y130{bottom:284.073300px;}
.ye2{bottom:284.088300px;}
.y1bf{bottom:284.550000px;}
.y9b{bottom:284.587500px;}
.y62{bottom:284.709150px;}
.y149{bottom:284.804550px;}
.y18d{bottom:284.808300px;}
.yc3{bottom:284.838300px;}
.y1f6{bottom:287.771100px;}
.y237{bottom:289.987050px;}
.y27d{bottom:294.916800px;}
.y122{bottom:296.473800px;}
.yaf{bottom:296.728950px;}
.y1e{bottom:297.691800px;}
.y12f{bottom:299.819550px;}
.ye1{bottom:299.834550px;}
.y9a{bottom:300.333750px;}
.y61{bottom:300.455400px;}
.y148{bottom:300.550800px;}
.y18c{bottom:300.554550px;}
.yc2{bottom:300.584550px;}
.y236{bottom:303.115800px;}
.y1f5{bottom:303.517350px;}
.y1d{bottom:313.438050px;}
.y12e{bottom:315.565800px;}
.ye0{bottom:315.580800px;}
.y99{bottom:316.080000px;}
.y1be{bottom:316.125750px;}
.y60{bottom:316.201650px;}
.y235{bottom:316.244550px;}
.y147{bottom:316.297050px;}
.y18b{bottom:316.300800px;}
.yc1{bottom:316.330800px;}
.y121{bottom:316.728300px;}
.y27c{bottom:317.417550px;}
.y1f4{bottom:319.263600px;}
.y1c{bottom:329.191800px;}
.y234{bottom:329.373300px;}
.y12d{bottom:331.312050px;}
.ydf{bottom:331.327050px;}
.y98{bottom:331.826250px;}
.y1bd{bottom:331.872000px;}
.y5f{bottom:331.947900px;}
.y146{bottom:332.043300px;}
.y18a{bottom:332.047050px;}
.yc0{bottom:332.077050px;}
.y1f3{bottom:335.009850px;}
.y120{bottom:336.982800px;}
.y27b{bottom:339.918300px;}
.y233{bottom:342.502050px;}
.y1b{bottom:344.938050px;}
.y12c{bottom:347.058300px;}
.yde{bottom:347.073300px;}
.y97{bottom:347.572500px;}
.y1bc{bottom:347.618250px;}
.y5e{bottom:347.694150px;}
.y189{bottom:347.797050px;}
.ybf{bottom:347.823300px;}
.y1f2{bottom:350.756100px;}
.y232{bottom:355.630800px;}
.y27a{bottom:355.668300px;}
.y11f{bottom:357.237300px;}
.y1a{bottom:360.688050px;}
.y12b{bottom:362.804550px;}
.ydd{bottom:362.819550px;}
.y96{bottom:363.318750px;}
.y1bb{bottom:363.364500px;}
.y5d{bottom:363.440400px;}
.y188{bottom:363.558300px;}
.ybe{bottom:363.569550px;}
.y1f1{bottom:366.502350px;}
.y231{bottom:368.759550px;}
.y19{bottom:376.434300px;}
.y11e{bottom:377.491800px;}
.y12a{bottom:378.550800px;}
.ydc{bottom:378.565800px;}
.y95{bottom:379.065000px;}
.y1ba{bottom:379.118250px;}
.y5c{bottom:379.186650px;}
.y187{bottom:379.304550px;}
.ybd{bottom:379.315800px;}
.y230{bottom:381.888300px;}
.y1f0{bottom:382.248600px;}
.y279{bottom:387.175800px;}
.y159{bottom:387.411450px;}
.y129{bottom:394.297050px;}
.ydb{bottom:394.312050px;}
.y94{bottom:394.811250px;}
.y1b9{bottom:394.864500px;}
.y5b{bottom:394.932900px;}
.y22f{bottom:395.017050px;}
.y186{bottom:395.050800px;}
.ybc{bottom:395.062050px;}
.y11d{bottom:397.746300px;}
.y278{bottom:402.922050px;}
.y158{bottom:403.908450px;}
.y22e{bottom:408.145800px;}
.y128{bottom:410.043300px;}
.yda{bottom:410.058300px;}
.y93{bottom:410.557500px;}
.y1b8{bottom:410.610750px;}
.y5a{bottom:410.679150px;}
.y185{bottom:410.797050px;}
.ybb{bottom:410.808300px;}
.y1ef{bottom:416.958600px;}
.y11c{bottom:418.000800px;}
.y277{bottom:418.668300px;}
.y157{bottom:420.405450px;}
.y22d{bottom:421.274550px;}
.y18{bottom:424.497300px;}
.yd9{bottom:425.804550px;}
.y92{bottom:426.303750px;}
.y59{bottom:426.425400px;}
.yba{bottom:426.554550px;}
.y1ee{bottom:432.704850px;}
.y22c{bottom:434.403300px;}
.y276{bottom:434.418300px;}
.y156{bottom:436.902450px;}
.y11b{bottom:438.255300px;}
.yd8{bottom:441.550800px;}
.y91{bottom:442.050000px;}
.y1b7{bottom:442.175400px;}
.y58{bottom:442.179150px;}
.yb9{bottom:442.300800px;}
.y17{bottom:442.492800px;}
.y22b{bottom:447.532050px;}
.y1ed{bottom:448.451100px;}
.yd7{bottom:457.297050px;}
.y90{bottom:457.800000px;}
.y57{bottom:457.925400px;}
.y1b6{bottom:457.936650px;}
.yb8{bottom:458.047050px;}
.y11a{bottom:458.509800px;}
.y16{bottom:460.488300px;}
.y22a{bottom:460.660800px;}
.y1ec{bottom:464.208600px;}
.y275{bottom:465.955800px;}
.y145{bottom:466.432950px;}
.yd6{bottom:473.043300px;}
.y56{bottom:473.671650px;}
.y1b5{bottom:473.682900px;}
.y229{bottom:473.789550px;}
.yb7{bottom:473.793300px;}
.y184{bottom:473.808300px;}
.y15{bottom:478.483800px;}
.y119{bottom:478.764300px;}
.y1eb{bottom:479.954850px;}
.y274{bottom:481.702050px;}
.y144{bottom:482.929950px;}
.y228{bottom:486.802050px;}
.y55{bottom:489.421650px;}
.y1b4{bottom:489.429150px;}
.y8f{bottom:489.470400px;}
.yb6{bottom:489.543300px;}
.y183{bottom:489.554550px;}
.y1ea{bottom:495.701100px;}
.y14{bottom:496.479300px;}
.y273{bottom:497.448300px;}
.y118{bottom:499.018800px;}
.y143{bottom:499.426950px;}
.y227{bottom:499.930800px;}
.y54{bottom:505.171650px;}
.y1b3{bottom:505.175400px;}
.y8e{bottom:505.216650px;}
.y182{bottom:505.300800px;}
.y1e9{bottom:511.447350px;}
.y226{bottom:513.059550px;}
.y272{bottom:513.194550px;}
.y13{bottom:514.474800px;}
.y142{bottom:515.923950px;}
.y117{bottom:519.273300px;}
.y1b2{bottom:520.925400px;}
.y8d{bottom:520.962900px;}
.y181{bottom:521.047050px;}
.y225{bottom:526.188300px;}
.yf8{bottom:526.389450px;}
.y271{bottom:528.940800px;}
.y141{bottom:532.420950px;}
.y12{bottom:532.470300px;}
.y1b1{bottom:536.675400px;}
.y8c{bottom:536.709150px;}
.y53{bottom:536.812050px;}
.y180{bottom:536.819550px;}
.y224{bottom:539.317050px;}
.y116{bottom:539.527800px;}
.yf7{bottom:542.886450px;}
.y270{bottom:544.687050px;}
.y1e8{bottom:546.160950px;}
.yd5{bottom:548.197950px;}
.y140{bottom:548.917950px;}
.y11{bottom:550.465800px;}
.y1b0{bottom:552.421650px;}
.y223{bottom:552.445800px;}
.y8b{bottom:552.455400px;}
.y52{bottom:552.558300px;}
.y17f{bottom:552.565800px;}
.yf6{bottom:559.383450px;}
.y115{bottom:559.782300px;}
.y26f{bottom:560.433300px;}
.y1e7{bottom:561.907200px;}
.yd4{bottom:564.694950px;}
.y13f{bottom:565.414950px;}
.y222{bottom:565.574550px;}
.y8a{bottom:568.201650px;}
.y51{bottom:568.304550px;}
.y17e{bottom:568.312050px;}
.y10{bottom:568.461300px;}
.yf5{bottom:575.880450px;}
.y26e{bottom:576.179550px;}
.y1e6{bottom:577.653450px;}
.y221{bottom:578.703300px;}
.y114{bottom:580.036800px;}
.yd3{bottom:581.191950px;}
.y13e{bottom:581.911950px;}
.y89{bottom:583.947900px;}
.y1af{bottom:584.012400px;}
.y50{bottom:584.050800px;}
.y17d{bottom:584.058300px;}
.yf{bottom:586.456800px;}
.y220{bottom:591.832050px;}
.y26d{bottom:591.925800px;}
.yf4{bottom:592.377450px;}
.y1e5{bottom:593.399700px;}
.yd2{bottom:597.688950px;}
.y13d{bottom:598.408950px;}
.y88{bottom:599.694150px;}
.y1ae{bottom:599.758650px;}
.y4f{bottom:599.797050px;}
.y17c{bottom:599.804550px;}
.y113{bottom:600.291300px;}
.ye{bottom:604.452300px;}
.y21f{bottom:604.960800px;}
.y26c{bottom:607.672050px;}
.yf3{bottom:608.874450px;}
.y1e4{bottom:609.164700px;}
.y87{bottom:615.440400px;}
.y1ad{bottom:615.504900px;}
.y17b{bottom:615.550800px;}
.y4e{bottom:615.562050px;}
.y21e{bottom:618.089550px;}
.y112{bottom:620.545800px;}
.yd{bottom:622.447800px;}
.y26b{bottom:623.418300px;}
.y1e3{bottom:624.910950px;}
.yf2{bottom:625.371450px;}
.y86{bottom:631.186650px;}
.y21d{bottom:631.218300px;}
.y1ac{bottom:631.251150px;}
.y17a{bottom:631.297050px;}
.y4d{bottom:631.308300px;}
.y26a{bottom:639.168300px;}
.yc{bottom:640.443300px;}
.y1e2{bottom:640.657200px;}
.y111{bottom:640.800300px;}
.yf1{bottom:641.868450px;}
.y21c{bottom:644.347050px;}
.y85{bottom:646.932900px;}
.y1ab{bottom:646.997400px;}
.y4c{bottom:647.054550px;}
.y179{bottom:647.058300px;}
.y1e1{bottom:656.403450px;}
.y21b{bottom:657.475800px;}
.yf0{bottom:658.365450px;}
.yb{bottom:658.438800px;}
.y110{bottom:661.054800px;}
.y84{bottom:662.679150px;}
.y1aa{bottom:662.743650px;}
.y4b{bottom:662.800800px;}
.y178{bottom:662.804550px;}
.y269{bottom:670.548300px;}
.y21a{bottom:670.604550px;}
.y1e0{bottom:672.149700px;}
.yef{bottom:674.862450px;}
.ya{bottom:676.434300px;}
.y83{bottom:678.425400px;}
.y1a9{bottom:678.489900px;}
.y4a{bottom:678.547050px;}
.y177{bottom:678.550800px;}
.y10f{bottom:681.309300px;}
.y268{bottom:683.677050px;}
.y219{bottom:683.733300px;}
.y1df{bottom:687.899700px;}
.y82{bottom:694.171650px;}
.y1a8{bottom:694.236150px;}
.y176{bottom:694.297050px;}
.y49{bottom:694.300800px;}
.y267{bottom:696.805800px;}
.y218{bottom:696.862050px;}
.y10e{bottom:701.563800px;}
.y1de{bottom:703.649700px;}
.y266{bottom:709.934550px;}
.y1a7{bottom:709.982400px;}
.y217{bottom:709.990800px;}
.y48{bottom:710.047050px;}
.y175{bottom:710.050800px;}
.y10c{bottom:712.809300px;}
.y9{bottom:715.434300px;}
.y1dd{bottom:719.399700px;}
.y265{bottom:723.063300px;}
.y216{bottom:723.119550px;}
.y10d{bottom:724.054800px;}
.y1a6{bottom:725.732400px;}
.y47{bottom:725.797050px;}
.y81{bottom:725.808300px;}
.y8{bottom:733.434300px;}
.y1dc{bottom:735.145950px;}
.y264{bottom:736.192050px;}
.y215{bottom:736.248300px;}
.y46{bottom:741.554550px;}
.y174{bottom:741.577050px;}
.y10b{bottom:744.309300px;}
.y263{bottom:749.320800px;}
.y214{bottom:749.377050px;}
.y2d{bottom:757.050000px;}
.y45{bottom:757.300800px;}
.y173{bottom:757.323300px;}
.y1a5{bottom:757.342050px;}
.y262{bottom:762.449550px;}
.y213{bottom:762.505800px;}
.y10a{bottom:764.563800px;}
.y1db{bottom:769.855800px;}
.y7{bottom:772.407300px;}
.y44{bottom:773.047050px;}
.y172{bottom:773.069550px;}
.y1a4{bottom:773.088300px;}
.y261{bottom:775.578300px;}
.y212{bottom:775.634550px;}
.y2c{bottom:778.050000px;}
.y109{bottom:784.818300px;}
.y1da{bottom:785.602050px;}
.y260{bottom:788.707050px;}
.y211{bottom:788.763300px;}
.y43{bottom:788.804550px;}
.y171{bottom:788.815800px;}
.y80{bottom:788.819550px;}
.y1a3{bottom:788.834550px;}
.y2b{bottom:799.050000px;}
.y1d9{bottom:801.348300px;}
.y25f{bottom:801.835800px;}
.y210{bottom:801.892050px;}
.y42{bottom:804.550800px;}
.y170{bottom:804.562050px;}
.y7f{bottom:804.565800px;}
.y1a2{bottom:804.580800px;}
.y108{bottom:805.062300px;}
.y107{bottom:810.679800px;}
.y25e{bottom:814.964550px;}
.y20f{bottom:815.020800px;}
.y1d8{bottom:817.102050px;}
.y41{bottom:820.297050px;}
.y16f{bottom:820.308300px;}
.y7e{bottom:820.312050px;}
.y1a1{bottom:820.327050px;}
.y6{bottom:820.416300px;}
.y25d{bottom:828.093300px;}
.y20e{bottom:828.149550px;}
.y1d7{bottom:832.848300px;}
.y40{bottom:836.050800px;}
.y16e{bottom:836.054550px;}
.y7d{bottom:836.058300px;}
.y1a0{bottom:836.073300px;}
.y106{bottom:836.551800px;}
.y25c{bottom:841.222050px;}
.y20d{bottom:841.278300px;}
.y1d6{bottom:848.598300px;}
.y3f{bottom:851.797050px;}
.y16d{bottom:851.800800px;}
.y7c{bottom:851.804550px;}
.y19f{bottom:851.819550px;}
.y25b{bottom:854.350800px;}
.y20c{bottom:854.407050px;}
.y105{bottom:856.806300px;}
.y1d5{bottom:864.352050px;}
.y25a{bottom:867.479550px;}
.y20b{bottom:867.535800px;}
.y16c{bottom:867.547050px;}
.y7b{bottom:867.550800px;}
.y3e{bottom:867.554550px;}
.y19e{bottom:867.565800px;}
.y5{bottom:868.425300px;}
.y104{bottom:877.060800px;}
.y1d4{bottom:880.098300px;}
.y259{bottom:880.608300px;}
.y20a{bottom:880.664550px;}
.y7a{bottom:883.297050px;}
.y3d{bottom:883.300800px;}
.y19d{bottom:883.312050px;}
.y258{bottom:893.737050px;}
.y209{bottom:893.793300px;}
.y1d3{bottom:895.848300px;}
.y103{bottom:897.315300px;}
.y3c{bottom:899.047050px;}
.y19c{bottom:899.058300px;}
.y79{bottom:899.088300px;}
.y257{bottom:906.865800px;}
.y208{bottom:906.918300px;}
.y1d2{bottom:911.602050px;}
.y16b{bottom:914.797050px;}
.y3b{bottom:914.800800px;}
.y19b{bottom:914.804550px;}
.y78{bottom:914.834550px;}
.y4{bottom:916.434300px;}
.y102{bottom:917.569800px;}
.y256{bottom:919.994550px;}
.y2e{bottom:926.409600px;}
.y1d1{bottom:927.348300px;}
.y3a{bottom:930.547050px;}
.y19a{bottom:930.550800px;}
.y77{bottom:930.580800px;}
.y255{bottom:933.123300px;}
.y101{bottom:937.824300px;}
.y1d0{bottom:943.105800px;}
.y254{bottom:946.252050px;}
.y199{bottom:946.297050px;}
.y16a{bottom:946.300800px;}
.y39{bottom:946.304550px;}
.y207{bottom:946.308300px;}
.y76{bottom:946.327050px;}
.y100{bottom:958.078800px;}
.y1cf{bottom:958.852050px;}
.y253{bottom:959.380800px;}
.y169{bottom:962.047050px;}
.y38{bottom:962.050800px;}
.y206{bottom:962.054550px;}
.y75{bottom:962.073300px;}
.y252{bottom:972.509550px;}
.y1ce{bottom:974.598300px;}
.y37{bottom:977.797050px;}
.y205{bottom:977.800800px;}
.y168{bottom:977.815800px;}
.y74{bottom:977.819550px;}
.yff{bottom:978.333300px;}
.y251{bottom:985.638300px;}
.y1cd{bottom:990.348300px;}
.y204{bottom:993.547050px;}
.y36{bottom:993.550800px;}
.y167{bottom:993.562050px;}
.y73{bottom:993.565800px;}
.yfe{bottom:998.587800px;}
.y250{bottom:998.767050px;}
.y1cc{bottom:1006.094550px;}
.y35{bottom:1009.297050px;}
.y203{bottom:1009.300800px;}
.y166{bottom:1009.308300px;}
.y72{bottom:1009.312050px;}
.y24f{bottom:1011.895800px;}
.yfd{bottom:1018.842300px;}
.y24e{bottom:1025.024550px;}
.y202{bottom:1025.047050px;}
.y34{bottom:1025.050800px;}
.y165{bottom:1025.054550px;}
.y71{bottom:1025.058300px;}
.y24d{bottom:1038.153300px;}
.yfc{bottom:1039.096800px;}
.y33{bottom:1040.797050px;}
.y164{bottom:1040.800800px;}
.y70{bottom:1040.804550px;}
.y24c{bottom:1051.282050px;}
.y163{bottom:1056.547050px;}
.y32{bottom:1056.550800px;}
.yfb{bottom:1059.351300px;}
.y24b{bottom:1064.410800px;}
.y31{bottom:1072.297050px;}
.y24a{bottom:1077.539550px;}
.yf9{bottom:1079.605800px;}
.y30{bottom:1088.043300px;}
.y249{bottom:1090.668300px;}
.yfa{bottom:1090.851300px;}
.y2f{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.h21{height:26.547803px;}
.he{height:26.804883px;}
.h1e{height:29.988000px;}
.h1f{height:30.072000px;}
.h1d{height:30.114000px;}
.h30{height:32.220000px;}
.h32{height:32.265000px;}
.h31{height:32.685000px;}
.h18{height:38.664000px;}
.h19{height:38.718000px;}
.h3{height:38.812500px;}
.h9{height:38.838867px;}
.ha{height:40.812000px;}
.h14{height:40.869000px;}
.h11{height:41.238281px;}
.h2d{height:43.154297px;}
.h8{height:43.664062px;}
.hf{height:44.147883px;}
.h1c{height:44.907803px;}
.h1a{height:45.607800px;}
.h1b{height:45.712800px;}
.h17{height:45.719250px;}
.h16{height:45.727800px;}
.h2c{height:45.787800px;}
.h24{height:45.802800px;}
.h23{height:45.817800px;}
.hd{height:45.832800px;}
.h22{height:45.847800px;}
.h26{height:45.862200px;}
.h13{height:45.862800px;}
.h27{height:45.877200px;}
.hc{height:45.877800px;}
.h25{height:45.892200px;}
.hb{height:45.892800px;}
.h29{height:45.901350px;}
.h2a{height:45.914850px;}
.h2b{height:45.929850px;}
.h2{height:48.515625px;}
.h4{height:49.728516px;}
.h28{height:50.691600px;}
.h2f{height:50.706000px;}
.h2e{height:50.721000px;}
.h7{height:51.935156px;}
.h10{height:51.947156px;}
.h20{height:52.584000px;}
.h15{height:53.367188px;}
.h12{height:87.328125px;}
.h6{height:112.201172px;}
.h5{height:126.140625px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x7{left:79.864200px;}
.x6{left:97.156200px;}
.x8{left:140.952750px;}
.x4{left:233.456400px;}
.xa{left:239.643900px;}
.x5{left:251.452500px;}
.x15{left:300.348450px;}
.xf{left:349.642200px;}
.xe{left:357.191700px;}
.x10{left:377.278200px;}
.x11{left:378.695700px;}
.xb{left:558.991200px;}
.x12{left:570.656700px;}
.x3{left:584.586600px;}
.xd{left:634.223700px;}
.xc{left:636.386700px;}
.x13{left:816.003600px;}
.x14{left:817.278150px;}
.x9{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v6{vertical-align:-17.226133pt;}
.v9{vertical-align:-16.320000pt;}
.v3{vertical-align:-15.413333pt;}
.v5{vertical-align:-10.173333pt;}
.vb{vertical-align:-7.586667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.413333pt;}
.v7{vertical-align:16.320000pt;}
.v2{vertical-align:17.213333pt;}
.v1{vertical-align:18.133333pt;}
.v8{vertical-align:20.010667pt;}
.va{vertical-align:27.367600pt;}
.ls2c{letter-spacing:-1.976000pt;}
.ls27{letter-spacing:-1.469333pt;}
.ls45{letter-spacing:-1.240000pt;}
.lsd{letter-spacing:-1.114667pt;}
.ls10{letter-spacing:-0.962667pt;}
.ls11{letter-spacing:-0.912000pt;}
.lsf{letter-spacing:-0.861333pt;}
.ls1a{letter-spacing:-0.816000pt;}
.ls16{letter-spacing:-0.810667pt;}
.ls44{letter-spacing:-0.760000pt;}
.ls15{letter-spacing:-0.658667pt;}
.ls40{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.634667pt;}
.lsc{letter-spacing:-0.608000pt;}
.ls17{letter-spacing:-0.557333pt;}
.ls41{letter-spacing:-0.520000pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls42{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.456000pt;}
.ls3d{letter-spacing:-0.400000pt;}
.ls3f{letter-spacing:-0.360000pt;}
.ls2d{letter-spacing:-0.354667pt;}
.ls43{letter-spacing:-0.280000pt;}
.ls28{letter-spacing:-0.253333pt;}
.ls2a{letter-spacing:-0.230533pt;}
.lsa{letter-spacing:-0.202667pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls3e{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.112000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.001067pt;}
.ls5{letter-spacing:0.003600pt;}
.ls6{letter-spacing:0.004267pt;}
.ls4{letter-spacing:0.006933pt;}
.ls14{letter-spacing:0.055733pt;}
.ls22{letter-spacing:0.112000pt;}
.ls1d{letter-spacing:0.152000pt;}
.ls30{letter-spacing:0.228000pt;}
.ls1b{letter-spacing:0.253333pt;}
.ls1c{letter-spacing:0.258400pt;}
.ls1f{letter-spacing:0.304000pt;}
.ls39{letter-spacing:0.528000pt;}
.ls7{letter-spacing:0.853333pt;}
.ls49{letter-spacing:1.904000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls48{letter-spacing:2.372000pt;}
.lsb{letter-spacing:2.400000pt;}
.ls38{letter-spacing:2.440000pt;}
.ls2{letter-spacing:2.460000pt;}
.ls37{letter-spacing:2.484000pt;}
.ls34{letter-spacing:2.600000pt;}
.ls35{letter-spacing:2.640000pt;}
.ls36{letter-spacing:2.680000pt;}
.ls33{letter-spacing:2.684000pt;}
.ls47{letter-spacing:2.700000pt;}
.ls2e{letter-spacing:2.720000pt;}
.ls31{letter-spacing:2.724000pt;}
.ls2f{letter-spacing:2.728000pt;}
.ls3a{letter-spacing:2.732000pt;}
.ls3c{letter-spacing:2.740000pt;}
.ls3{letter-spacing:2.961600pt;}
.ls3b{letter-spacing:3.160000pt;}
.ls1{letter-spacing:3.413333pt;}
.ls4a{letter-spacing:3.450400pt;}
.ls13{letter-spacing:3.455467pt;}
.ls2b{letter-spacing:4.106667pt;}
.ls46{letter-spacing:4.164000pt;}
.ls25{letter-spacing:5.440000pt;}
.ls32{letter-spacing:6.552000pt;}
.ls1e{letter-spacing:6.596800pt;}
.ls29{letter-spacing:6.627200pt;}
.ls12{letter-spacing:7.676000pt;}
.ls18{letter-spacing:10.437333pt;}
.ls19{letter-spacing:13.104000pt;}
.ls20{letter-spacing:310.725333pt;}
.wsf5{word-spacing:-19.370667pt;}
.ws2{word-spacing:-13.393333pt;}
.ws29{word-spacing:-12.085333pt;}
.wsb3{word-spacing:-11.805333pt;}
.ws26{word-spacing:-11.602667pt;}
.ws7{word-spacing:-11.501333pt;}
.ws27{word-spacing:-11.400000pt;}
.ws109{word-spacing:-11.248000pt;}
.ws5{word-spacing:-11.096000pt;}
.ws6f{word-spacing:-11.045333pt;}
.ws6d{word-spacing:-10.986667pt;}
.ws6c{word-spacing:-10.944000pt;}
.ws25{word-spacing:-10.893333pt;}
.wsdb{word-spacing:-10.842667pt;}
.ws0{word-spacing:-10.837333pt;}
.ws6e{word-spacing:-10.792000pt;}
.ws2a{word-spacing:-10.741333pt;}
.ws2c{word-spacing:-10.690667pt;}
.ws2b{word-spacing:-10.640000pt;}
.wsf3{word-spacing:-10.538667pt;}
.ws9c{word-spacing:-10.512000pt;}
.ws28{word-spacing:-10.488000pt;}
.ws4{word-spacing:-9.888000pt;}
.ws9d{word-spacing:-9.696000pt;}
.ws13{word-spacing:-9.373333pt;}
.ws156{word-spacing:-9.160000pt;}
.ws118{word-spacing:-9.080000pt;}
.ws115{word-spacing:-9.000000pt;}
.wsc1{word-spacing:-8.880000pt;}
.ws114{word-spacing:-8.760000pt;}
.ws119{word-spacing:-8.640000pt;}
.ws116{word-spacing:-8.520000pt;}
.wsc6{word-spacing:-8.474667pt;}
.wsc4{word-spacing:-8.176000pt;}
.wsc3{word-spacing:-8.101333pt;}
.wsc5{word-spacing:-7.541333pt;}
.ws6{word-spacing:-7.475867pt;}
.wsf4{word-spacing:-7.245333pt;}
.ws3{word-spacing:-7.141333pt;}
.ws9e{word-spacing:-7.082400pt;}
.ws117{word-spacing:-5.902000pt;}
.ws8{word-spacing:-5.893333pt;}
.wsda{word-spacing:-5.440000pt;}
.ws93{word-spacing:-5.168000pt;}
.ws10a{word-spacing:-4.106667pt;}
.wsce{word-spacing:-3.434667pt;}
.wsff{word-spacing:-3.090667pt;}
.wsfd{word-spacing:-2.986667pt;}
.wsfe{word-spacing:-2.533333pt;}
.ws24{word-spacing:-2.453333pt;}
.ws1{word-spacing:-2.346667pt;}
.ws168{word-spacing:-1.672000pt;}
.ws138{word-spacing:-1.400000pt;}
.wsb1{word-spacing:-1.216000pt;}
.ws163{word-spacing:-0.720000pt;}
.ws12b{word-spacing:-0.640000pt;}
.wsbd{word-spacing:-0.506667pt;}
.ws8e{word-spacing:-0.354667pt;}
.wse{word-spacing:-0.320000pt;}
.ws108{word-spacing:-0.032933pt;}
.wsc2{word-spacing:-0.031200pt;}
.ws9{word-spacing:0.000000pt;}
.ws77{word-spacing:0.152000pt;}
.ws1b{word-spacing:0.202667pt;}
.wse7{word-spacing:0.253333pt;}
.ws124{word-spacing:0.320000pt;}
.wsf7{word-spacing:0.354667pt;}
.ws15a{word-spacing:0.400000pt;}
.ws47{word-spacing:0.405333pt;}
.ws48{word-spacing:0.456000pt;}
.ws34{word-spacing:0.506667pt;}
.ws3c{word-spacing:0.608000pt;}
.ws3d{word-spacing:0.658667pt;}
.ws14d{word-spacing:0.680000pt;}
.ws103{word-spacing:0.693333pt;}
.ws82{word-spacing:0.709333pt;}
.wsb7{word-spacing:0.760000pt;}
.ws11a{word-spacing:0.810667pt;}
.wseb{word-spacing:0.861333pt;}
.wsb4{word-spacing:0.912000pt;}
.ws159{word-spacing:0.920000pt;}
.wsf{word-spacing:0.960000pt;}
.wsbc{word-spacing:0.962667pt;}
.ws7a{word-spacing:1.013333pt;}
.ws72{word-spacing:1.064000pt;}
.wse9{word-spacing:1.114667pt;}
.ws57{word-spacing:1.165333pt;}
.ws111{word-spacing:1.216000pt;}
.wsd{word-spacing:1.226667pt;}
.ws141{word-spacing:1.240000pt;}
.ws38{word-spacing:1.266667pt;}
.ws41{word-spacing:1.317333pt;}
.ws16c{word-spacing:1.349333pt;}
.wsbf{word-spacing:1.368000pt;}
.wsad{word-spacing:1.418667pt;}
.wsba{word-spacing:1.469333pt;}
.ws155{word-spacing:1.480000pt;}
.ws84{word-spacing:1.520000pt;}
.ws40{word-spacing:1.570667pt;}
.ws49{word-spacing:1.621333pt;}
.ws3f{word-spacing:1.672000pt;}
.ws166{word-spacing:1.680000pt;}
.ws167{word-spacing:1.720000pt;}
.wsab{word-spacing:1.722667pt;}
.wsf2{word-spacing:1.773333pt;}
.ws8a{word-spacing:1.824000pt;}
.wsd7{word-spacing:1.874667pt;}
.wsd2{word-spacing:1.925333pt;}
.ws43{word-spacing:1.976000pt;}
.ws3e{word-spacing:2.026667pt;}
.ws14c{word-spacing:2.040000pt;}
.ws50{word-spacing:2.077333pt;}
.ws157{word-spacing:2.120000pt;}
.ws12{word-spacing:2.128000pt;}
.ws12c{word-spacing:2.160000pt;}
.ws2e{word-spacing:2.178667pt;}
.ws10b{word-spacing:2.186667pt;}
.wsb8{word-spacing:2.229333pt;}
.wse5{word-spacing:2.280000pt;}
.ws100{word-spacing:2.293333pt;}
.ws12d{word-spacing:2.320000pt;}
.ws10c{word-spacing:2.330667pt;}
.ws15b{word-spacing:2.360000pt;}
.ws39{word-spacing:2.381333pt;}
.ws160{word-spacing:2.400000pt;}
.ws20{word-spacing:2.402667pt;}
.wscd{word-spacing:2.426667pt;}
.ws73{word-spacing:2.432000pt;}
.ws14a{word-spacing:2.440000pt;}
.ws14b{word-spacing:2.480000pt;}
.wsa1{word-spacing:2.482667pt;}
.ws164{word-spacing:2.520000pt;}
.ws54{word-spacing:2.533333pt;}
.wscf{word-spacing:2.538667pt;}
.wsa{word-spacing:2.560000pt;}
.ws75{word-spacing:2.584000pt;}
.ws158{word-spacing:2.600000pt;}
.ws11{word-spacing:2.634667pt;}
.ws13d{word-spacing:2.640000pt;}
.ws12e{word-spacing:2.680000pt;}
.ws91{word-spacing:2.685333pt;}
.ws23{word-spacing:2.720000pt;}
.ws31{word-spacing:2.736000pt;}
.ws11c{word-spacing:2.760000pt;}
.ws1a{word-spacing:2.786667pt;}
.ws13e{word-spacing:2.800000pt;}
.ws74{word-spacing:2.837333pt;}
.ws120{word-spacing:2.920000pt;}
.ws8d{word-spacing:2.938667pt;}
.ws165{word-spacing:2.960000pt;}
.ws10{word-spacing:2.976000pt;}
.ws86{word-spacing:2.989333pt;}
.ws8f{word-spacing:3.040000pt;}
.ws162{word-spacing:3.080000pt;}
.wsac{word-spacing:3.090667pt;}
.wsa4{word-spacing:3.120000pt;}
.ws55{word-spacing:3.141333pt;}
.ws130{word-spacing:3.160000pt;}
.wsa5{word-spacing:3.168000pt;}
.ws21{word-spacing:3.173333pt;}
.ws14{word-spacing:3.192000pt;}
.ws152{word-spacing:3.200000pt;}
.ws18{word-spacing:3.242667pt;}
.wsa6{word-spacing:3.264000pt;}
.wse1{word-spacing:3.293333pt;}
.wsc{word-spacing:3.306667pt;}
.ws8c{word-spacing:3.344000pt;}
.ws1d{word-spacing:3.354667pt;}
.ws153{word-spacing:3.360000pt;}
.ws12f{word-spacing:3.400000pt;}
.ws32{word-spacing:3.445333pt;}
.ws53{word-spacing:3.496000pt;}
.wsd0{word-spacing:3.504000pt;}
.wsfb{word-spacing:3.520000pt;}
.ws112{word-spacing:3.546667pt;}
.ws56{word-spacing:3.597333pt;}
.ws131{word-spacing:3.600000pt;}
.ws16d{word-spacing:3.637333pt;}
.ws132{word-spacing:3.640000pt;}
.ws7b{word-spacing:3.648000pt;}
.ws7d{word-spacing:3.698667pt;}
.ws15{word-spacing:3.749333pt;}
.ws133{word-spacing:3.800000pt;}
.ws63{word-spacing:3.850667pt;}
.ws134{word-spacing:3.880000pt;}
.wsd3{word-spacing:3.901333pt;}
.ws144{word-spacing:3.920000pt;}
.ws51{word-spacing:4.002667pt;}
.ws22{word-spacing:4.034667pt;}
.wsd1{word-spacing:4.053333pt;}
.wsea{word-spacing:4.104000pt;}
.ws16{word-spacing:4.154667pt;}
.ws15e{word-spacing:4.160000pt;}
.ws15f{word-spacing:4.200000pt;}
.ws52{word-spacing:4.205333pt;}
.ws142{word-spacing:4.240000pt;}
.ws5b{word-spacing:4.256000pt;}
.ws85{word-spacing:4.306667pt;}
.ws96{word-spacing:4.357333pt;}
.ws13c{word-spacing:4.360000pt;}
.ws36{word-spacing:4.408000pt;}
.ws143{word-spacing:4.440000pt;}
.ws80{word-spacing:4.458667pt;}
.ws30{word-spacing:4.509333pt;}
.ws14f{word-spacing:4.520000pt;}
.ws10e{word-spacing:4.533333pt;}
.ws46{word-spacing:4.560000pt;}
.ws19{word-spacing:4.610667pt;}
.ws3b{word-spacing:4.661333pt;}
.ws95{word-spacing:4.712000pt;}
.ws150{word-spacing:4.720000pt;}
.ws14e{word-spacing:4.760000pt;}
.wse4{word-spacing:4.762667pt;}
.ws145{word-spacing:4.800000pt;}
.ws17{word-spacing:4.813333pt;}
.ws146{word-spacing:4.840000pt;}
.ws4e{word-spacing:4.864000pt;}
.ws15c{word-spacing:4.880000pt;}
.ws37{word-spacing:4.914667pt;}
.ws129{word-spacing:4.920000pt;}
.ws12a{word-spacing:4.960000pt;}
.ws149{word-spacing:5.000000pt;}
.wsb0{word-spacing:5.016000pt;}
.ws4f{word-spacing:5.066667pt;}
.ws87{word-spacing:5.117333pt;}
.ws128{word-spacing:5.120000pt;}
.ws151{word-spacing:5.160000pt;}
.wse2{word-spacing:5.168000pt;}
.ws15d{word-spacing:5.200000pt;}
.wsec{word-spacing:5.218667pt;}
.ws2f{word-spacing:5.320000pt;}
.ws7c{word-spacing:5.370667pt;}
.wsb5{word-spacing:5.421333pt;}
.ws1f{word-spacing:5.440000pt;}
.wsf1{word-spacing:5.472000pt;}
.ws154{word-spacing:5.560000pt;}
.ws78{word-spacing:5.573333pt;}
.wsbb{word-spacing:5.600000pt;}
.ws1e{word-spacing:5.666667pt;}
.ws8b{word-spacing:5.674667pt;}
.ws90{word-spacing:5.725333pt;}
.ws83{word-spacing:5.776000pt;}
.wsf6{word-spacing:5.826667pt;}
.ws10d{word-spacing:5.877333pt;}
.ws147{word-spacing:5.920000pt;}
.ws35{word-spacing:5.928000pt;}
.ws148{word-spacing:5.960000pt;}
.ws59{word-spacing:5.978667pt;}
.ws33{word-spacing:6.080000pt;}
.wsa3{word-spacing:6.130667pt;}
.ws13f{word-spacing:6.160000pt;}
.ws61{word-spacing:6.181333pt;}
.ws44{word-spacing:6.232000pt;}
.ws2d{word-spacing:6.282667pt;}
.ws76{word-spacing:6.333333pt;}
.ws140{word-spacing:6.360000pt;}
.ws5a{word-spacing:6.384000pt;}
.ws102{word-spacing:6.434667pt;}
.ws58{word-spacing:6.485333pt;}
.ws136{word-spacing:6.520000pt;}
.wsed{word-spacing:6.536000pt;}
.ws7e{word-spacing:6.560000pt;}
.wsdf{word-spacing:6.586667pt;}
.ws137{word-spacing:6.600000pt;}
.ws45{word-spacing:6.637333pt;}
.ws6a{word-spacing:6.688000pt;}
.ws6b{word-spacing:6.738667pt;}
.ws135{word-spacing:6.760000pt;}
.ws79{word-spacing:6.789333pt;}
.ws7f{word-spacing:6.840000pt;}
.wsbe{word-spacing:6.890667pt;}
.ws92{word-spacing:6.941333pt;}
.ws106{word-spacing:6.992000pt;}
.wsfa{word-spacing:7.042667pt;}
.ws139{word-spacing:7.080000pt;}
.ws169{word-spacing:7.093333pt;}
.wsc0{word-spacing:7.144000pt;}
.ws110{word-spacing:7.146667pt;}
.ws89{word-spacing:7.194667pt;}
.ws97{word-spacing:7.245333pt;}
.wsd4{word-spacing:7.296000pt;}
.wsfc{word-spacing:7.346667pt;}
.wsae{word-spacing:7.397333pt;}
.ws9a{word-spacing:7.448000pt;}
.ws99{word-spacing:7.498667pt;}
.wse8{word-spacing:7.549333pt;}
.ws13a{word-spacing:7.640000pt;}
.ws71{word-spacing:7.650667pt;}
.wsb9{word-spacing:7.701333pt;}
.ws70{word-spacing:7.752000pt;}
.wsb6{word-spacing:7.802667pt;}
.ws88{word-spacing:7.840000pt;}
.ws105{word-spacing:7.853333pt;}
.wse3{word-spacing:7.904000pt;}
.ws98{word-spacing:7.954667pt;}
.wsd5{word-spacing:8.005333pt;}
.ws5e{word-spacing:8.106667pt;}
.wsd9{word-spacing:8.157333pt;}
.ws5d{word-spacing:8.208000pt;}
.ws3a{word-spacing:8.258667pt;}
.ws13b{word-spacing:8.320000pt;}
.ws16e{word-spacing:8.360000pt;}
.ws5f{word-spacing:8.410667pt;}
.ws5c{word-spacing:8.512000pt;}
.ws161{word-spacing:8.520000pt;}
.wsd6{word-spacing:8.562667pt;}
.wsb{word-spacing:8.597333pt;}
.ws10f{word-spacing:8.664000pt;}
.wsb2{word-spacing:8.765333pt;}
.ws42{word-spacing:8.816000pt;}
.wsf9{word-spacing:8.968000pt;}
.ws113{word-spacing:9.018667pt;}
.ws94{word-spacing:9.120000pt;}
.wse6{word-spacing:9.170667pt;}
.ws125{word-spacing:9.360000pt;}
.ws11f{word-spacing:9.400000pt;}
.ws81{word-spacing:9.424000pt;}
.ws126{word-spacing:9.600000pt;}
.ws127{word-spacing:9.720000pt;}
.wsde{word-spacing:9.778667pt;}
.wsd8{word-spacing:9.829333pt;}
.wsee{word-spacing:9.880000pt;}
.ws1c{word-spacing:9.930667pt;}
.ws16a{word-spacing:10.032000pt;}
.wse0{word-spacing:10.133333pt;}
.wsf0{word-spacing:10.184000pt;}
.wsa2{word-spacing:10.285333pt;}
.ws107{word-spacing:10.336000pt;}
.ws9f{word-spacing:10.386667pt;}
.ws11d{word-spacing:10.400000pt;}
.ws11e{word-spacing:10.480000pt;}
.wsdc{word-spacing:10.538667pt;}
.wsdd{word-spacing:10.589333pt;}
.ws66{word-spacing:10.613333pt;}
.ws60{word-spacing:10.792000pt;}
.wsa0{word-spacing:10.842667pt;}
.ws16b{word-spacing:11.045333pt;}
.ws4b{word-spacing:11.093333pt;}
.ws67{word-spacing:11.096000pt;}
.ws68{word-spacing:11.197333pt;}
.ws9b{word-spacing:11.400000pt;}
.wsef{word-spacing:11.602667pt;}
.ws11b{word-spacing:12.312000pt;}
.wsa8{word-spacing:12.906667pt;}
.ws64{word-spacing:13.325333pt;}
.wsf8{word-spacing:13.426667pt;}
.ws65{word-spacing:13.493333pt;}
.wsa9{word-spacing:13.528000pt;}
.ws104{word-spacing:13.680000pt;}
.wsaa{word-spacing:13.984000pt;}
.ws4d{word-spacing:14.085333pt;}
.ws4c{word-spacing:14.186667pt;}
.ws101{word-spacing:14.288000pt;}
.ws69{word-spacing:15.200000pt;}
.ws4a{word-spacing:16.000000pt;}
.wsaf{word-spacing:16.264000pt;}
.ws62{word-spacing:16.517333pt;}
.ws121{word-spacing:19.400000pt;}
.ws122{word-spacing:19.560000pt;}
.ws123{word-spacing:19.720000pt;}
.wsa7{word-spacing:27.306667pt;}
.wsc8{word-spacing:146.570667pt;}
.wscb{word-spacing:153.402667pt;}
.wsca{word-spacing:156.949333pt;}
.wsc9{word-spacing:334.771733pt;}
.wscc{word-spacing:337.456000pt;}
.wsc7{word-spacing:392.265067pt;}
._4e{margin-left:-21.336000pt;}
._4b{margin-left:-16.991467pt;}
._4a{margin-left:-15.725333pt;}
._12{margin-left:-14.592000pt;}
._13{margin-left:-13.096533pt;}
._4c{margin-left:-12.061600pt;}
._16{margin-left:-11.064000pt;}
._b{margin-left:-9.893333pt;}
._f{margin-left:-8.200000pt;}
._8{margin-left:-6.824000pt;}
._e{margin-left:-5.517333pt;}
._4{margin-left:-3.941333pt;}
._2{margin-left:-2.482133pt;}
._0{margin-left:-1.578667pt;}
._7{width:1.021333pt;}
._3{width:1.951467pt;}
._5{width:2.870400pt;}
._6{width:3.803733pt;}
._a{width:5.585600pt;}
._10{width:6.485333pt;}
._1{width:8.292267pt;}
._14{width:9.234400pt;}
._45{width:10.133333pt;}
._9{width:11.902933pt;}
._44{width:12.940800pt;}
._d{width:14.288000pt;}
._15{width:29.894933pt;}
._c{width:31.249600pt;}
._4d{width:35.475200pt;}
._46{width:37.837333pt;}
._48{width:39.437867pt;}
._49{width:41.336533pt;}
._11{width:42.745600pt;}
._47{width:45.073067pt;}
._1c{width:78.362667pt;}
._33{width:92.810667pt;}
._2d{width:102.042667pt;}
._32{width:114.866133pt;}
._1e{width:120.242667pt;}
._3e{width:125.376000pt;}
._1d{width:137.591467pt;}
._27{width:142.434667pt;}
._29{width:147.301333pt;}
._2c{width:150.912000pt;}
._26{width:160.215467pt;}
._19{width:165.546667pt;}
._1f{width:169.093333pt;}
._31{width:170.594133pt;}
._28{width:190.418133pt;}
._3a{width:192.482133pt;}
._37{width:208.626667pt;}
._39{width:211.973333pt;}
._1b{width:215.722667pt;}
._38{width:228.871467pt;}
._36{width:229.842133pt;}
._18{width:236.181333pt;}
._43{width:253.016000pt;}
._35{width:255.008000pt;}
._42{width:265.328000pt;}
._17{width:271.394133pt;}
._34{width:272.812800pt;}
._1a{width:289.575467pt;}
._2b{width:291.285333pt;}
._30{width:299.234667pt;}
._40{width:305.432000pt;}
._3b{width:308.503467pt;}
._41{width:312.908800pt;}
._2f{width:316.156800pt;}
._2a{width:323.100800pt;}
._3d{width:330.037333pt;}
._25{width:332.202667pt;}
._3f{width:344.586667pt;}
._21{width:349.413333pt;}
._24{width:352.594133pt;}
._23{width:360.882133pt;}
._3c{width:361.815467pt;}
._20{width:366.967467pt;}
._2e{width:419.234133pt;}
._22{width:422.146133pt;}
.fs10{font-size:26.000000pt;}
.fs8{font-size:29.466667pt;}
.fsc{font-size:31.200000pt;}
.fs7{font-size:32.933333pt;}
.fs4{font-size:34.666667pt;}
.fsd{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsb{font-size:58.666667pt;}
.fse{font-size:85.333333pt;}
.fsa{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y2a{bottom:56.932000pt;}
.y155{bottom:56.936667pt;}
.y6f{bottom:56.940000pt;}
.y201{bottom:56.966667pt;}
.yae{bottom:57.156267pt;}
.y198{bottom:57.166267pt;}
.yd1{bottom:57.169600pt;}
.y248{bottom:59.376267pt;}
.yee{bottom:63.506267pt;}
.y154{bottom:70.933333pt;}
.y6e{bottom:70.936667pt;}
.ya8{bottom:70.950000pt;}
.y200{bottom:70.963333pt;}
.y247{bottom:71.046267pt;}
.yad{bottom:71.152933pt;}
.y197{bottom:71.162933pt;}
.yd0{bottom:71.166267pt;}
.y29{bottom:72.266000pt;}
.y162{bottom:75.247067pt;}
.yed{bottom:77.502933pt;}
.y246{bottom:82.716267pt;}
.y13c{bottom:84.549600pt;}
.y6d{bottom:84.933333pt;}
.y1cb{bottom:84.936667pt;}
.ya7{bottom:84.946667pt;}
.y1ff{bottom:84.960000pt;}
.yac{bottom:85.159600pt;}
.ycf{bottom:85.162933pt;}
.y28{bottom:87.597333pt;}
.y161{bottom:89.911067pt;}
.yec{bottom:91.499600pt;}
.y245{bottom:94.386267pt;}
.y13b{bottom:98.546267pt;}
.y6c{bottom:98.933333pt;}
.y1ca{bottom:98.936667pt;}
.ya6{bottom:98.943333pt;}
.y1fe{bottom:98.956667pt;}
.yab{bottom:99.156267pt;}
.yce{bottom:99.159600pt;}
.y27{bottom:103.599333pt;}
.y160{bottom:104.575067pt;}
.yeb{bottom:105.496267pt;}
.y244{bottom:106.056267pt;}
.y13a{bottom:112.542933pt;}
.y1c9{bottom:112.936667pt;}
.ya5{bottom:112.940000pt;}
.y1fd{bottom:112.953333pt;}
.yaa{bottom:113.152933pt;}
.ycd{bottom:113.156267pt;}
.y153{bottom:113.179600pt;}
.y243{bottom:117.726267pt;}
.y26{bottom:118.932667pt;}
.y15f{bottom:119.239067pt;}
.yea{bottom:119.492933pt;}
.y139{bottom:126.539600pt;}
.ya4{bottom:126.936667pt;}
.y1c8{bottom:126.943200pt;}
.y1fc{bottom:126.950000pt;}
.y6b{bottom:127.048133pt;}
.ya9{bottom:127.149600pt;}
.ycc{bottom:127.152933pt;}
.y152{bottom:127.176267pt;}
.y196{bottom:127.192933pt;}
.y242{bottom:129.396267pt;}
.ye9{bottom:133.489600pt;}
.y15e{bottom:133.903067pt;}
.y25{bottom:134.266000pt;}
.y138{bottom:140.536267pt;}
.y1c7{bottom:140.939867pt;}
.ya3{bottom:140.943333pt;}
.y1fb{bottom:140.946667pt;}
.y6a{bottom:141.044800pt;}
.y241{bottom:141.066267pt;}
.y151{bottom:141.172933pt;}
.y195{bottom:141.189600pt;}
.ycb{bottom:141.216267pt;}
.ye8{bottom:147.486267pt;}
.y15d{bottom:148.567067pt;}
.y240{bottom:152.736267pt;}
.y24{bottom:153.453333pt;}
.y137{bottom:154.532933pt;}
.y1c6{bottom:154.936533pt;}
.ya2{bottom:154.940000pt;}
.y1fa{bottom:154.943333pt;}
.y69{bottom:155.048133pt;}
.y150{bottom:155.169600pt;}
.y194{bottom:155.186267pt;}
.yca{bottom:155.212933pt;}
.y284{bottom:158.162933pt;}
.ye7{bottom:161.482933pt;}
.y15c{bottom:163.231067pt;}
.y23f{bottom:164.406267pt;}
.y136{bottom:168.529600pt;}
.ya1{bottom:168.936667pt;}
.y1c5{bottom:168.940000pt;}
.y68{bottom:169.044800pt;}
.y14f{bottom:169.166267pt;}
.y193{bottom:169.182933pt;}
.yc9{bottom:169.209600pt;}
.y283{bottom:172.159600pt;}
.y127{bottom:172.818933pt;}
.ye6{bottom:175.482933pt;}
.yb5{bottom:175.767067pt;}
.y23e{bottom:176.076267pt;}
.y15b{bottom:177.895067pt;}
.y135{bottom:182.526267pt;}
.y1c4{bottom:182.936667pt;}
.ya0{bottom:182.983333pt;}
.y67{bottom:183.044800pt;}
.y14e{bottom:183.162933pt;}
.y192{bottom:183.179600pt;}
.yc8{bottom:183.206267pt;}
.y282{bottom:186.156267pt;}
.y23d{bottom:187.746267pt;}
.yb4{bottom:190.431067pt;}
.y126{bottom:191.562933pt;}
.y15a{bottom:192.559067pt;}
.y23{bottom:194.624933pt;}
.y134{bottom:196.522933pt;}
.y1f9{bottom:196.933333pt;}
.y1c3{bottom:196.943333pt;}
.y9f{bottom:196.980000pt;}
.y66{bottom:197.088133pt;}
.y14d{bottom:197.159600pt;}
.y191{bottom:197.176267pt;}
.yc7{bottom:197.202933pt;}
.y23c{bottom:199.416267pt;}
.y281{bottom:200.152933pt;}
.y125{bottom:202.154933pt;}
.yb3{bottom:205.095067pt;}
.y22{bottom:208.621600pt;}
.ye5{bottom:210.489600pt;}
.y133{bottom:210.519600pt;}
.y1c2{bottom:210.940000pt;}
.y9e{bottom:210.976667pt;}
.y65{bottom:211.084800pt;}
.y23b{bottom:211.086267pt;}
.y14c{bottom:211.156267pt;}
.y190{bottom:211.172933pt;}
.yc6{bottom:211.199600pt;}
.y280{bottom:214.149600pt;}
.y124{bottom:216.818933pt;}
.yb2{bottom:219.767067pt;}
.y21{bottom:222.618267pt;}
.y23a{bottom:222.756267pt;}
.ye4{bottom:224.486267pt;}
.y132{bottom:224.516267pt;}
.y1c1{bottom:224.936667pt;}
.y9d{bottom:224.973333pt;}
.y64{bottom:225.081467pt;}
.y14b{bottom:225.152933pt;}
.y18f{bottom:225.169600pt;}
.yc5{bottom:225.196267pt;}
.y1f8{bottom:227.803200pt;}
.y123{bottom:231.482933pt;}
.y27f{bottom:234.154933pt;}
.y239{bottom:234.426267pt;}
.yb1{bottom:234.431067pt;}
.y20{bottom:236.614933pt;}
.y131{bottom:238.512933pt;}
.ye3{bottom:238.526267pt;}
.y1c0{bottom:238.936667pt;}
.y9c{bottom:238.970000pt;}
.y63{bottom:239.078133pt;}
.y14a{bottom:239.162933pt;}
.y18e{bottom:239.166267pt;}
.yc4{bottom:239.192933pt;}
.y1f7{bottom:241.799867pt;}
.y238{bottom:246.096267pt;}
.y27e{bottom:248.151600pt;}
.yb0{bottom:249.095067pt;}
.y1f{bottom:250.611600pt;}
.y130{bottom:252.509600pt;}
.ye2{bottom:252.522933pt;}
.y1bf{bottom:252.933333pt;}
.y9b{bottom:252.966667pt;}
.y62{bottom:253.074800pt;}
.y149{bottom:253.159600pt;}
.y18d{bottom:253.162933pt;}
.yc3{bottom:253.189600pt;}
.y1f6{bottom:255.796533pt;}
.y237{bottom:257.766267pt;}
.y27d{bottom:262.148267pt;}
.y122{bottom:263.532267pt;}
.yaf{bottom:263.759067pt;}
.y1e{bottom:264.614933pt;}
.y12f{bottom:266.506267pt;}
.ye1{bottom:266.519600pt;}
.y9a{bottom:266.963333pt;}
.y61{bottom:267.071467pt;}
.y148{bottom:267.156267pt;}
.y18c{bottom:267.159600pt;}
.yc2{bottom:267.186267pt;}
.y236{bottom:269.436267pt;}
.y1f5{bottom:269.793200pt;}
.y1d{bottom:278.611600pt;}
.y12e{bottom:280.502933pt;}
.ye0{bottom:280.516267pt;}
.y99{bottom:280.960000pt;}
.y1be{bottom:281.000667pt;}
.y60{bottom:281.068133pt;}
.y235{bottom:281.106267pt;}
.y147{bottom:281.152933pt;}
.y18b{bottom:281.156267pt;}
.yc1{bottom:281.182933pt;}
.y121{bottom:281.536267pt;}
.y27c{bottom:282.148933pt;}
.y1f4{bottom:283.789867pt;}
.y1c{bottom:292.614933pt;}
.y234{bottom:292.776267pt;}
.y12d{bottom:294.499600pt;}
.ydf{bottom:294.512933pt;}
.y98{bottom:294.956667pt;}
.y1bd{bottom:294.997333pt;}
.y5f{bottom:295.064800pt;}
.y146{bottom:295.149600pt;}
.y18a{bottom:295.152933pt;}
.yc0{bottom:295.179600pt;}
.y1f3{bottom:297.786533pt;}
.y120{bottom:299.540267pt;}
.y27b{bottom:302.149600pt;}
.y233{bottom:304.446267pt;}
.y1b{bottom:306.611600pt;}
.y12c{bottom:308.496267pt;}
.yde{bottom:308.509600pt;}
.y97{bottom:308.953333pt;}
.y1bc{bottom:308.994000pt;}
.y5e{bottom:309.061467pt;}
.y189{bottom:309.152933pt;}
.ybf{bottom:309.176267pt;}
.y1f2{bottom:311.783200pt;}
.y232{bottom:316.116267pt;}
.y27a{bottom:316.149600pt;}
.y11f{bottom:317.544267pt;}
.y1a{bottom:320.611600pt;}
.y12b{bottom:322.492933pt;}
.ydd{bottom:322.506267pt;}
.y96{bottom:322.950000pt;}
.y1bb{bottom:322.990667pt;}
.y5d{bottom:323.058133pt;}
.y188{bottom:323.162933pt;}
.ybe{bottom:323.172933pt;}
.y1f1{bottom:325.779867pt;}
.y231{bottom:327.786267pt;}
.y19{bottom:334.608267pt;}
.y11e{bottom:335.548267pt;}
.y12a{bottom:336.489600pt;}
.ydc{bottom:336.502933pt;}
.y95{bottom:336.946667pt;}
.y1ba{bottom:336.994000pt;}
.y5c{bottom:337.054800pt;}
.y187{bottom:337.159600pt;}
.ybd{bottom:337.169600pt;}
.y230{bottom:339.456267pt;}
.y1f0{bottom:339.776533pt;}
.y279{bottom:344.156267pt;}
.y159{bottom:344.365733pt;}
.y129{bottom:350.486267pt;}
.ydb{bottom:350.499600pt;}
.y94{bottom:350.943333pt;}
.y1b9{bottom:350.990667pt;}
.y5b{bottom:351.051467pt;}
.y22f{bottom:351.126267pt;}
.y186{bottom:351.156267pt;}
.ybc{bottom:351.166267pt;}
.y11d{bottom:353.552267pt;}
.y278{bottom:358.152933pt;}
.y158{bottom:359.029733pt;}
.y22e{bottom:362.796267pt;}
.y128{bottom:364.482933pt;}
.yda{bottom:364.496267pt;}
.y93{bottom:364.940000pt;}
.y1b8{bottom:364.987333pt;}
.y5a{bottom:365.048133pt;}
.y185{bottom:365.152933pt;}
.ybb{bottom:365.162933pt;}
.y1ef{bottom:370.629867pt;}
.y11c{bottom:371.556267pt;}
.y277{bottom:372.149600pt;}
.y157{bottom:373.693733pt;}
.y22d{bottom:374.466267pt;}
.y18{bottom:377.330933pt;}
.yd9{bottom:378.492933pt;}
.y92{bottom:378.936667pt;}
.y59{bottom:379.044800pt;}
.yba{bottom:379.159600pt;}
.y1ee{bottom:384.626533pt;}
.y22c{bottom:386.136267pt;}
.y276{bottom:386.149600pt;}
.y156{bottom:388.357733pt;}
.y11b{bottom:389.560267pt;}
.yd8{bottom:392.489600pt;}
.y91{bottom:392.933333pt;}
.y1b7{bottom:393.044800pt;}
.y58{bottom:393.048133pt;}
.yb9{bottom:393.156267pt;}
.y17{bottom:393.326933pt;}
.y22b{bottom:397.806267pt;}
.y1ed{bottom:398.623200pt;}
.yd7{bottom:406.486267pt;}
.y90{bottom:406.933333pt;}
.y57{bottom:407.044800pt;}
.y1b6{bottom:407.054800pt;}
.yb8{bottom:407.152933pt;}
.y11a{bottom:407.564267pt;}
.y16{bottom:409.322933pt;}
.y22a{bottom:409.476267pt;}
.y1ec{bottom:412.629867pt;}
.y275{bottom:414.182933pt;}
.y145{bottom:414.607067pt;}
.yd6{bottom:420.482933pt;}
.y56{bottom:421.041467pt;}
.y1b5{bottom:421.051467pt;}
.y229{bottom:421.146267pt;}
.yb7{bottom:421.149600pt;}
.y184{bottom:421.162933pt;}
.y15{bottom:425.318933pt;}
.y119{bottom:425.568267pt;}
.y1eb{bottom:426.626533pt;}
.y274{bottom:428.179600pt;}
.y144{bottom:429.271067pt;}
.y228{bottom:432.712933pt;}
.y55{bottom:435.041467pt;}
.y1b4{bottom:435.048133pt;}
.y8f{bottom:435.084800pt;}
.yb6{bottom:435.149600pt;}
.y183{bottom:435.159600pt;}
.y1ea{bottom:440.623200pt;}
.y14{bottom:441.314933pt;}
.y273{bottom:442.176267pt;}
.y118{bottom:443.572267pt;}
.y143{bottom:443.935067pt;}
.y227{bottom:444.382933pt;}
.y54{bottom:449.041467pt;}
.y1b3{bottom:449.044800pt;}
.y8e{bottom:449.081467pt;}
.y182{bottom:449.156267pt;}
.y1e9{bottom:454.619867pt;}
.y226{bottom:456.052933pt;}
.y272{bottom:456.172933pt;}
.y13{bottom:457.310933pt;}
.y142{bottom:458.599067pt;}
.y117{bottom:461.576267pt;}
.y1b2{bottom:463.044800pt;}
.y8d{bottom:463.078133pt;}
.y181{bottom:463.152933pt;}
.y225{bottom:467.722933pt;}
.yf8{bottom:467.901733pt;}
.y271{bottom:470.169600pt;}
.y141{bottom:473.263067pt;}
.y12{bottom:473.306933pt;}
.y1b1{bottom:477.044800pt;}
.y8c{bottom:477.074800pt;}
.y53{bottom:477.166267pt;}
.y180{bottom:477.172933pt;}
.y224{bottom:479.392933pt;}
.y116{bottom:479.580267pt;}
.yf7{bottom:482.565733pt;}
.y270{bottom:484.166267pt;}
.y1e8{bottom:485.476400pt;}
.yd5{bottom:487.287067pt;}
.y140{bottom:487.927067pt;}
.y11{bottom:489.302933pt;}
.y1b0{bottom:491.041467pt;}
.y223{bottom:491.062933pt;}
.y8b{bottom:491.071467pt;}
.y52{bottom:491.162933pt;}
.y17f{bottom:491.169600pt;}
.yf6{bottom:497.229733pt;}
.y115{bottom:497.584267pt;}
.y26f{bottom:498.162933pt;}
.y1e7{bottom:499.473067pt;}
.yd4{bottom:501.951067pt;}
.y13f{bottom:502.591067pt;}
.y222{bottom:502.732933pt;}
.y8a{bottom:505.068133pt;}
.y51{bottom:505.159600pt;}
.y17e{bottom:505.166267pt;}
.y10{bottom:505.298933pt;}
.yf5{bottom:511.893733pt;}
.y26e{bottom:512.159600pt;}
.y1e6{bottom:513.469733pt;}
.y221{bottom:514.402933pt;}
.y114{bottom:515.588267pt;}
.yd3{bottom:516.615067pt;}
.y13e{bottom:517.255067pt;}
.y89{bottom:519.064800pt;}
.y1af{bottom:519.122133pt;}
.y50{bottom:519.156267pt;}
.y17d{bottom:519.162933pt;}
.yf{bottom:521.294933pt;}
.y220{bottom:526.072933pt;}
.y26d{bottom:526.156267pt;}
.yf4{bottom:526.557733pt;}
.y1e5{bottom:527.466400pt;}
.yd2{bottom:531.279067pt;}
.y13d{bottom:531.919067pt;}
.y88{bottom:533.061467pt;}
.y1ae{bottom:533.118800pt;}
.y4f{bottom:533.152933pt;}
.y17c{bottom:533.159600pt;}
.y113{bottom:533.592267pt;}
.ye{bottom:537.290933pt;}
.y21f{bottom:537.742933pt;}
.y26c{bottom:540.152933pt;}
.yf3{bottom:541.221733pt;}
.y1e4{bottom:541.479733pt;}
.y87{bottom:547.058133pt;}
.y1ad{bottom:547.115467pt;}
.y17b{bottom:547.156267pt;}
.y4e{bottom:547.166267pt;}
.y21e{bottom:549.412933pt;}
.y112{bottom:551.596267pt;}
.yd{bottom:553.286933pt;}
.y26b{bottom:554.149600pt;}
.y1e3{bottom:555.476400pt;}
.yf2{bottom:555.885733pt;}
.y86{bottom:561.054800pt;}
.y21d{bottom:561.082933pt;}
.y1ac{bottom:561.112133pt;}
.y17a{bottom:561.152933pt;}
.y4d{bottom:561.162933pt;}
.y26a{bottom:568.149600pt;}
.yc{bottom:569.282933pt;}
.y1e2{bottom:569.473067pt;}
.y111{bottom:569.600267pt;}
.yf1{bottom:570.549733pt;}
.y21c{bottom:572.752933pt;}
.y85{bottom:575.051467pt;}
.y1ab{bottom:575.108800pt;}
.y4c{bottom:575.159600pt;}
.y179{bottom:575.162933pt;}
.y1e1{bottom:583.469733pt;}
.y21b{bottom:584.422933pt;}
.yf0{bottom:585.213733pt;}
.yb{bottom:585.278933pt;}
.y110{bottom:587.604267pt;}
.y84{bottom:589.048133pt;}
.y1aa{bottom:589.105467pt;}
.y4b{bottom:589.156267pt;}
.y178{bottom:589.159600pt;}
.y269{bottom:596.042933pt;}
.y21a{bottom:596.092933pt;}
.y1e0{bottom:597.466400pt;}
.yef{bottom:599.877733pt;}
.ya{bottom:601.274933pt;}
.y83{bottom:603.044800pt;}
.y1a9{bottom:603.102133pt;}
.y4a{bottom:603.152933pt;}
.y177{bottom:603.156267pt;}
.y10f{bottom:605.608267pt;}
.y268{bottom:607.712933pt;}
.y219{bottom:607.762933pt;}
.y1df{bottom:611.466400pt;}
.y82{bottom:617.041467pt;}
.y1a8{bottom:617.098800pt;}
.y176{bottom:617.152933pt;}
.y49{bottom:617.156267pt;}
.y267{bottom:619.382933pt;}
.y218{bottom:619.432933pt;}
.y10e{bottom:623.612267pt;}
.y1de{bottom:625.466400pt;}
.y266{bottom:631.052933pt;}
.y1a7{bottom:631.095467pt;}
.y217{bottom:631.102933pt;}
.y48{bottom:631.152933pt;}
.y175{bottom:631.156267pt;}
.y10c{bottom:633.608267pt;}
.y9{bottom:635.941600pt;}
.y1dd{bottom:639.466400pt;}
.y265{bottom:642.722933pt;}
.y216{bottom:642.772933pt;}
.y10d{bottom:643.604267pt;}
.y1a6{bottom:645.095467pt;}
.y47{bottom:645.152933pt;}
.y81{bottom:645.162933pt;}
.y8{bottom:651.941600pt;}
.y1dc{bottom:653.463067pt;}
.y264{bottom:654.392933pt;}
.y215{bottom:654.442933pt;}
.y46{bottom:659.159600pt;}
.y174{bottom:659.179600pt;}
.y10b{bottom:661.608267pt;}
.y263{bottom:666.062933pt;}
.y214{bottom:666.112933pt;}
.y2d{bottom:672.933333pt;}
.y45{bottom:673.156267pt;}
.y173{bottom:673.176267pt;}
.y1a5{bottom:673.192933pt;}
.y262{bottom:677.732933pt;}
.y213{bottom:677.782933pt;}
.y10a{bottom:679.612267pt;}
.y1db{bottom:684.316267pt;}
.y7{bottom:686.584267pt;}
.y44{bottom:687.152933pt;}
.y172{bottom:687.172933pt;}
.y1a4{bottom:687.189600pt;}
.y261{bottom:689.402933pt;}
.y212{bottom:689.452933pt;}
.y2c{bottom:691.600000pt;}
.y109{bottom:697.616267pt;}
.y1da{bottom:698.312933pt;}
.y260{bottom:701.072933pt;}
.y211{bottom:701.122933pt;}
.y43{bottom:701.159600pt;}
.y171{bottom:701.169600pt;}
.y80{bottom:701.172933pt;}
.y1a3{bottom:701.186267pt;}
.y2b{bottom:710.266667pt;}
.y1d9{bottom:712.309600pt;}
.y25f{bottom:712.742933pt;}
.y210{bottom:712.792933pt;}
.y42{bottom:715.156267pt;}
.y170{bottom:715.166267pt;}
.y7f{bottom:715.169600pt;}
.y1a2{bottom:715.182933pt;}
.y108{bottom:715.610933pt;}
.y107{bottom:720.604267pt;}
.y25e{bottom:724.412933pt;}
.y20f{bottom:724.462933pt;}
.y1d8{bottom:726.312933pt;}
.y41{bottom:729.152933pt;}
.y16f{bottom:729.162933pt;}
.y7e{bottom:729.166267pt;}
.y1a1{bottom:729.179600pt;}
.y6{bottom:729.258933pt;}
.y25d{bottom:736.082933pt;}
.y20e{bottom:736.132933pt;}
.y1d7{bottom:740.309600pt;}
.y40{bottom:743.156267pt;}
.y16e{bottom:743.159600pt;}
.y7d{bottom:743.162933pt;}
.y1a0{bottom:743.176267pt;}
.y106{bottom:743.601600pt;}
.y25c{bottom:747.752933pt;}
.y20d{bottom:747.802933pt;}
.y1d6{bottom:754.309600pt;}
.y3f{bottom:757.152933pt;}
.y16d{bottom:757.156267pt;}
.y7c{bottom:757.159600pt;}
.y19f{bottom:757.172933pt;}
.y25b{bottom:759.422933pt;}
.y20c{bottom:759.472933pt;}
.y105{bottom:761.605600pt;}
.y1d5{bottom:768.312933pt;}
.y25a{bottom:771.092933pt;}
.y20b{bottom:771.142933pt;}
.y16c{bottom:771.152933pt;}
.y7b{bottom:771.156267pt;}
.y3e{bottom:771.159600pt;}
.y19e{bottom:771.169600pt;}
.y5{bottom:771.933600pt;}
.y104{bottom:779.609600pt;}
.y1d4{bottom:782.309600pt;}
.y259{bottom:782.762933pt;}
.y20a{bottom:782.812933pt;}
.y7a{bottom:785.152933pt;}
.y3d{bottom:785.156267pt;}
.y19d{bottom:785.166267pt;}
.y258{bottom:794.432933pt;}
.y209{bottom:794.482933pt;}
.y1d3{bottom:796.309600pt;}
.y103{bottom:797.613600pt;}
.y3c{bottom:799.152933pt;}
.y19c{bottom:799.162933pt;}
.y79{bottom:799.189600pt;}
.y257{bottom:806.102933pt;}
.y208{bottom:806.149600pt;}
.y1d2{bottom:810.312933pt;}
.y16b{bottom:813.152933pt;}
.y3b{bottom:813.156267pt;}
.y19b{bottom:813.159600pt;}
.y78{bottom:813.186267pt;}
.y4{bottom:814.608267pt;}
.y102{bottom:815.617600pt;}
.y256{bottom:817.772933pt;}
.y2e{bottom:823.475200pt;}
.y1d1{bottom:824.309600pt;}
.y3a{bottom:827.152933pt;}
.y19a{bottom:827.156267pt;}
.y77{bottom:827.182933pt;}
.y255{bottom:829.442933pt;}
.y101{bottom:833.621600pt;}
.y1d0{bottom:838.316267pt;}
.y254{bottom:841.112933pt;}
.y199{bottom:841.152933pt;}
.y16a{bottom:841.156267pt;}
.y39{bottom:841.159600pt;}
.y207{bottom:841.162933pt;}
.y76{bottom:841.179600pt;}
.y100{bottom:851.625600pt;}
.y1cf{bottom:852.312933pt;}
.y253{bottom:852.782933pt;}
.y169{bottom:855.152933pt;}
.y38{bottom:855.156267pt;}
.y206{bottom:855.159600pt;}
.y75{bottom:855.176267pt;}
.y252{bottom:864.452933pt;}
.y1ce{bottom:866.309600pt;}
.y37{bottom:869.152933pt;}
.y205{bottom:869.156267pt;}
.y168{bottom:869.169600pt;}
.y74{bottom:869.172933pt;}
.yff{bottom:869.629600pt;}
.y251{bottom:876.122933pt;}
.y1cd{bottom:880.309600pt;}
.y204{bottom:883.152933pt;}
.y36{bottom:883.156267pt;}
.y167{bottom:883.166267pt;}
.y73{bottom:883.169600pt;}
.yfe{bottom:887.633600pt;}
.y250{bottom:887.792933pt;}
.y1cc{bottom:894.306267pt;}
.y35{bottom:897.152933pt;}
.y203{bottom:897.156267pt;}
.y166{bottom:897.162933pt;}
.y72{bottom:897.166267pt;}
.y24f{bottom:899.462933pt;}
.yfd{bottom:905.637600pt;}
.y24e{bottom:911.132933pt;}
.y202{bottom:911.152933pt;}
.y34{bottom:911.156267pt;}
.y165{bottom:911.159600pt;}
.y71{bottom:911.162933pt;}
.y24d{bottom:922.802933pt;}
.yfc{bottom:923.641600pt;}
.y33{bottom:925.152933pt;}
.y164{bottom:925.156267pt;}
.y70{bottom:925.159600pt;}
.y24c{bottom:934.472933pt;}
.y163{bottom:939.152933pt;}
.y32{bottom:939.156267pt;}
.yfb{bottom:941.645600pt;}
.y24b{bottom:946.142933pt;}
.y31{bottom:953.152933pt;}
.y24a{bottom:957.812933pt;}
.yf9{bottom:959.649600pt;}
.y30{bottom:967.149600pt;}
.y249{bottom:969.482933pt;}
.yfa{bottom:969.645600pt;}
.y2f{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.h21{height:23.598047pt;}
.he{height:23.826562pt;}
.h1e{height:26.656000pt;}
.h1f{height:26.730667pt;}
.h1d{height:26.768000pt;}
.h30{height:28.640000pt;}
.h32{height:28.680000pt;}
.h31{height:29.053333pt;}
.h18{height:34.368000pt;}
.h19{height:34.416000pt;}
.h3{height:34.500000pt;}
.h9{height:34.523438pt;}
.ha{height:36.277333pt;}
.h14{height:36.328000pt;}
.h11{height:36.656250pt;}
.h2d{height:38.359375pt;}
.h8{height:38.812500pt;}
.hf{height:39.242562pt;}
.h1c{height:39.918047pt;}
.h1a{height:40.540267pt;}
.h1b{height:40.633600pt;}
.h17{height:40.639333pt;}
.h16{height:40.646933pt;}
.h2c{height:40.700267pt;}
.h24{height:40.713600pt;}
.h23{height:40.726933pt;}
.hd{height:40.740267pt;}
.h22{height:40.753600pt;}
.h26{height:40.766400pt;}
.h13{height:40.766933pt;}
.h27{height:40.779733pt;}
.hc{height:40.780267pt;}
.h25{height:40.793067pt;}
.hb{height:40.793600pt;}
.h29{height:40.801200pt;}
.h2a{height:40.813200pt;}
.h2b{height:40.826533pt;}
.h2{height:43.125000pt;}
.h4{height:44.203125pt;}
.h28{height:45.059200pt;}
.h2f{height:45.072000pt;}
.h2e{height:45.085333pt;}
.h7{height:46.164583pt;}
.h10{height:46.175250pt;}
.h20{height:46.741333pt;}
.h15{height:47.437500pt;}
.h12{height:77.625000pt;}
.h6{height:99.734375pt;}
.h5{height:112.125000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x7{left:70.990400pt;}
.x6{left:86.361067pt;}
.x8{left:125.291333pt;}
.x4{left:207.516800pt;}
.xa{left:213.016800pt;}
.x5{left:223.513333pt;}
.x15{left:266.976400pt;}
.xf{left:310.793067pt;}
.xe{left:317.503733pt;}
.x10{left:335.358400pt;}
.x11{left:336.618400pt;}
.xb{left:496.881067pt;}
.x12{left:507.250400pt;}
.x3{left:519.632533pt;}
.xd{left:563.754400pt;}
.xc{left:565.677067pt;}
.x13{left:725.336533pt;}
.x14{left:726.469467pt;}
.x9{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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