
    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_e2304953fc59612959411094.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961000;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_258d9b8b2b96f4219ac17fde.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.752441;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_1934fcab5fd20697edc3d93a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100095;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_53b1adbad16b58d1ef47d339.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.122000;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_ca270eeeeaea84b096f7a809.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_7ec309eb0a570fdeecc20c21.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_eeb4ad904847adb8ca67995f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.961000;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_d1fc93256dbbe2b2ae243b69.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5e88e4b73c9c02bf768955ad.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_1d9d61d3be3a46dc3f0ff9fa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7c93b5d35c4a712896772374.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.961000;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_ce35e791014de7db8981711b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.742000;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_91ae308e2b88e1ef95023a9e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7c93b5d35c4a712896772374.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.961000;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_ce35e791014de7db8981711b.woff2')format("woff");}.fff{font-family:fff;line-height:0.742000;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_91ae308e2b88e1ef95023a9e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b13526efd8a08cb77ba55bfe.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934000;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_e6fdcce65716ed00d6403ae0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138889,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.981000px;}
.ls40{letter-spacing:-1.440000px;}
.ls49{letter-spacing:-1.200000px;}
.ls35{letter-spacing:-1.050000px;}
.ls4a{letter-spacing:-0.750000px;}
.ls26{letter-spacing:-0.720000px;}
.ls3a{letter-spacing:-0.684000px;}
.ls5{letter-spacing:-0.612000px;}
.ls20{letter-spacing:-0.513000px;}
.ls2c{letter-spacing:-0.456000px;}
.lse{letter-spacing:-0.450000px;}
.ls5c{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.408000px;}
.ls4d{letter-spacing:-0.399000px;}
.ls57{letter-spacing:-0.378000px;}
.ls4{letter-spacing:-0.357000px;}
.ls39{letter-spacing:-0.342000px;}
.ls2{letter-spacing:-0.330000px;}
.ls38{letter-spacing:-0.300000px;}
.ls19{letter-spacing:-0.240000px;}
.ls32{letter-spacing:-0.228000px;}
.ls56{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.204000px;}
.lsb{letter-spacing:-0.192000px;}
.ls18{letter-spacing:-0.174900px;}
.ls3d{letter-spacing:-0.171000px;}
.lsc{letter-spacing:-0.153000px;}
.lsa{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.132924px;}
.ls17{letter-spacing:-0.114000px;}
.ls54{letter-spacing:-0.108000px;}
.ls4b{letter-spacing:-0.099693px;}
.ls7{letter-spacing:-0.084000px;}
.ls3b{letter-spacing:-0.066462px;}
.ls21{letter-spacing:-0.057000px;}
.ls52{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.057000px;}
.ls15{letter-spacing:0.061164px;}
.ls2a{letter-spacing:0.066462px;}
.ls3c{letter-spacing:0.099693px;}
.ls14{letter-spacing:0.114000px;}
.ls30{letter-spacing:0.132924px;}
.ls1d{letter-spacing:0.139920px;}
.ls5e{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.166155px;}
.ls1f{letter-spacing:0.171000px;}
.ls8{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.192000px;}
.ls4e{letter-spacing:0.199386px;}
.ls28{letter-spacing:0.225000px;}
.ls24{letter-spacing:0.228000px;}
.ls29{letter-spacing:0.256500px;}
.ls48{letter-spacing:0.262800px;}
.ls22{letter-spacing:0.285000px;}
.ls36{letter-spacing:0.299079px;}
.ls45{letter-spacing:0.314820px;}
.ls27{letter-spacing:0.342000px;}
.ls41{letter-spacing:0.365541px;}
.ls11{letter-spacing:0.398364px;}
.ls2d{letter-spacing:0.399000px;}
.ls1e{letter-spacing:0.419760px;}
.ls47{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.432003px;}
.ls44{letter-spacing:0.456000px;}
.ls0{letter-spacing:0.480000px;}
.ls34{letter-spacing:0.484500px;}
.ls31{letter-spacing:0.513000px;}
.ls16{letter-spacing:0.570000px;}
.ls1c{letter-spacing:0.576000px;}
.ls37{letter-spacing:0.598500px;}
.ls1a{letter-spacing:0.627000px;}
.ls2f{letter-spacing:0.672000px;}
.ls51{letter-spacing:0.675000px;}
.ls10{letter-spacing:0.684000px;}
.ls23{letter-spacing:0.741000px;}
.ls3e{letter-spacing:0.769500px;}
.ls9{letter-spacing:0.816000px;}
.ls3f{letter-spacing:0.855000px;}
.ls50{letter-spacing:1.026000px;}
.ls12{letter-spacing:1.140000px;}
.ls42{letter-spacing:1.311000px;}
.ls59{letter-spacing:1.512000px;}
.ls5d{letter-spacing:1.728000px;}
.ls5a{letter-spacing:1.890000px;}
.ls53{letter-spacing:2.052000px;}
.ls4f{letter-spacing:2.268000px;}
.ls5b{letter-spacing:2.376000px;}
.lsf{letter-spacing:2.784000px;}
.ls55{letter-spacing:2.808000px;}
.ls2b{letter-spacing:3.276600px;}
.ls58{letter-spacing:3.888000px;}
.ls43{letter-spacing:18.569760px;}
.ls46{letter-spacing:18.779760px;}
.ls4c{letter-spacing:19.129560px;}
.lsd{letter-spacing:111.666000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.wscf{word-spacing:-17.700000px;}
.ws80{word-spacing:-17.280000px;}
.ws100{word-spacing:-16.800000px;}
.wsdf{word-spacing:-16.560000px;}
.wsbe{word-spacing:-16.359000px;}
.wsf2{word-spacing:-16.131000px;}
.ws2a{word-spacing:-16.128000px;}
.ws103{word-spacing:-16.074000px;}
.ws10f{word-spacing:-16.038000px;}
.ws39{word-spacing:-15.960000px;}
.wsf3{word-spacing:-15.846000px;}
.ws110{word-spacing:-15.687000px;}
.ws10a{word-spacing:-15.012000px;}
.ws109{word-spacing:-14.958000px;}
.ws10b{word-spacing:-14.904000px;}
.ws10c{word-spacing:-14.796000px;}
.ws10d{word-spacing:-14.634000px;}
.ws10e{word-spacing:-14.580000px;}
.wsaa{word-spacing:-14.016000px;}
.ws1{word-spacing:-13.824000px;}
.ws17{word-spacing:-13.770000px;}
.ws2{word-spacing:-13.344000px;}
.ws16{word-spacing:-13.200000px;}
.ws3a{word-spacing:-13.104000px;}
.ws24{word-spacing:-13.050000px;}
.ws4{word-spacing:-12.600000px;}
.ws3{word-spacing:-12.516000px;}
.wse2{word-spacing:-10.144200px;}
.ws73{word-spacing:-9.670221px;}
.wse0{word-spacing:-9.603759px;}
.wsbd{word-spacing:-9.537297px;}
.ws106{word-spacing:-9.437604px;}
.wsa4{word-spacing:-9.404373px;}
.wsa9{word-spacing:-9.371142px;}
.wsd8{word-spacing:-9.337911px;}
.ws8a{word-spacing:-9.304680px;}
.ws29{word-spacing:-9.238218px;}
.wsd0{word-spacing:-9.171756px;}
.ws101{word-spacing:-9.138525px;}
.ws11c{word-spacing:-9.126000px;}
.wsb8{word-spacing:-9.105294px;}
.ws143{word-spacing:-7.614000px;}
.ws144{word-spacing:-5.562000px;}
.ws19{word-spacing:-5.280000px;}
.ws112{word-spacing:-5.238000px;}
.ws115{word-spacing:-4.698000px;}
.wsbf{word-spacing:-4.500000px;}
.ws132{word-spacing:-4.266000px;}
.ws134{word-spacing:-3.888000px;}
.ws6a{word-spacing:-3.192000px;}
.ws36{word-spacing:-3.135000px;}
.wsa1{word-spacing:-3.078000px;}
.ws94{word-spacing:-3.021000px;}
.ws51{word-spacing:-3.000000px;}
.ws95{word-spacing:-2.964000px;}
.ws74{word-spacing:-2.907000px;}
.ws14{word-spacing:-2.856000px;}
.ws11f{word-spacing:-2.808000px;}
.ws1f{word-spacing:-2.805000px;}
.wsfd{word-spacing:-2.793000px;}
.wseb{word-spacing:-2.736000px;}
.ws84{word-spacing:-2.622000px;}
.ws8b{word-spacing:-2.565000px;}
.wsda{word-spacing:-2.508000px;}
.ws13{word-spacing:-2.499000px;}
.wsd4{word-spacing:-2.496000px;}
.ws2e{word-spacing:-2.451000px;}
.ws70{word-spacing:-2.448000px;}
.ws108{word-spacing:-2.394000px;}
.ws13b{word-spacing:-2.376000px;}
.wsb0{word-spacing:-2.352000px;}
.ws7a{word-spacing:-2.337000px;}
.ws12c{word-spacing:-2.322000px;}
.wscb{word-spacing:-2.304000px;}
.ws8d{word-spacing:-2.280000px;}
.ws9e{word-spacing:-2.223000px;}
.wsb1{word-spacing:-2.208000px;}
.wsac{word-spacing:-2.166000px;}
.wsf9{word-spacing:-2.112000px;}
.ws86{word-spacing:-2.109000px;}
.wsd{word-spacing:-2.091000px;}
.wsc5{word-spacing:-2.064000px;}
.ws35{word-spacing:-2.052000px;}
.wsc0{word-spacing:-1.995000px;}
.ws5f{word-spacing:-1.968000px;}
.ws4c{word-spacing:-1.938000px;}
.wsc4{word-spacing:-1.920000px;}
.ws13a{word-spacing:-1.890000px;}
.ws41{word-spacing:-1.881000px;}
.ws60{word-spacing:-1.872000px;}
.ws6{word-spacing:-1.848000px;}
.ws53{word-spacing:-1.824000px;}
.wse9{word-spacing:-1.776000px;}
.ws3e{word-spacing:-1.767000px;}
.ws102{word-spacing:-1.728000px;}
.ws6e{word-spacing:-1.710000px;}
.wscd{word-spacing:-1.680000px;}
.ws2d{word-spacing:-1.653000px;}
.ws37{word-spacing:-1.596000px;}
.ws8f{word-spacing:-1.539000px;}
.ws135{word-spacing:-1.512000px;}
.ws30{word-spacing:-1.482000px;}
.ws32{word-spacing:-1.425000px;}
.ws105{word-spacing:-1.392000px;}
.wsa3{word-spacing:-1.368000px;}
.ws72{word-spacing:-1.344000px;}
.wsba{word-spacing:-1.311000px;}
.ws1e{word-spacing:-1.275000px;}
.ws42{word-spacing:-1.254000px;}
.wsc3{word-spacing:-1.248000px;}
.ws13e{word-spacing:-1.242000px;}
.ws5e{word-spacing:-1.200000px;}
.ws5a{word-spacing:-1.197000px;}
.wsc2{word-spacing:-1.152000px;}
.ws69{word-spacing:-1.140000px;}
.ws7e{word-spacing:-1.104000px;}
.ws96{word-spacing:-1.083000px;}
.ws88{word-spacing:-1.026000px;}
.wsca{word-spacing:-1.008000px;}
.ws6c{word-spacing:-0.969000px;}
.ws5d{word-spacing:-0.960000px;}
.ws34{word-spacing:-0.912000px;}
.ws12d{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.855000px;}
.ws3f{word-spacing:-0.798000px;}
.wsaf{word-spacing:-0.768000px;}
.ws7c{word-spacing:-0.741000px;}
.ws6f{word-spacing:-0.720000px;}
.ws23{word-spacing:-0.714000px;}
.ws6d{word-spacing:-0.684000px;}
.ws1d{word-spacing:-0.663000px;}
.ws2c{word-spacing:-0.627000px;}
.ws5c{word-spacing:-0.570000px;}
.ws21{word-spacing:-0.561000px;}
.wse5{word-spacing:-0.513000px;}
.ws11d{word-spacing:-0.486000px;}
.wsa{word-spacing:-0.480000px;}
.ws5b{word-spacing:-0.456000px;}
.wsd2{word-spacing:-0.432000px;}
.ws64{word-spacing:-0.419760px;}
.ws55{word-spacing:-0.399000px;}
.ws11{word-spacing:-0.357000px;}
.ws4b{word-spacing:-0.342000px;}
.ws93{word-spacing:-0.336000px;}
.wsf4{word-spacing:-0.314820px;}
.wsc7{word-spacing:-0.288000px;}
.ws40{word-spacing:-0.285000px;}
.wsed{word-spacing:-0.240000px;}
.ws43{word-spacing:-0.228000px;}
.ws8c{word-spacing:-0.225000px;}
.ws7f{word-spacing:-0.192000px;}
.ws47{word-spacing:-0.171000px;}
.ws18{word-spacing:-0.144000px;}
.ws61{word-spacing:-0.139920px;}
.ws85{word-spacing:-0.114000px;}
.ws10{word-spacing:-0.102000px;}
.wsef{word-spacing:-0.096000px;}
.wsd1{word-spacing:-0.057000px;}
.wsc6{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsdd{word-spacing:0.048000px;}
.ws113{word-spacing:0.054000px;}
.ws3c{word-spacing:0.057000px;}
.ws11e{word-spacing:0.108000px;}
.ws66{word-spacing:0.114000px;}
.ws1b{word-spacing:0.144000px;}
.ws52{word-spacing:0.171000px;}
.ws50{word-spacing:0.174900px;}
.ws1c{word-spacing:0.192000px;}
.ws12a{word-spacing:0.216000px;}
.wse1{word-spacing:0.228000px;}
.wse{word-spacing:0.255000px;}
.ws9f{word-spacing:0.285000px;}
.ws12{word-spacing:0.306000px;}
.wsab{word-spacing:0.342000px;}
.ws12f{word-spacing:0.378000px;}
.wsae{word-spacing:0.384000px;}
.ws7b{word-spacing:0.399000px;}
.ws15{word-spacing:0.408000px;}
.ws4e{word-spacing:0.456000px;}
.ws7{word-spacing:0.480000px;}
.ws97{word-spacing:0.513000px;}
.wsfb{word-spacing:0.528000px;}
.ws38{word-spacing:0.570000px;}
.ws8{word-spacing:0.624000px;}
.ws4f{word-spacing:0.627000px;}
.wsee{word-spacing:0.672000px;}
.ws57{word-spacing:0.684000px;}
.ws9c{word-spacing:0.720000px;}
.wsa5{word-spacing:0.741000px;}
.wscc{word-spacing:0.768000px;}
.ws76{word-spacing:0.798000px;}
.ws7d{word-spacing:0.855000px;}
.ws27{word-spacing:0.867000px;}
.ws77{word-spacing:0.912000px;}
.ws20{word-spacing:0.918000px;}
.ws75{word-spacing:0.969000px;}
.wsd3{word-spacing:1.008000px;}
.wsf{word-spacing:1.020000px;}
.ws83{word-spacing:1.026000px;}
.wsea{word-spacing:1.056000px;}
.ws87{word-spacing:1.083000px;}
.wse8{word-spacing:1.104000px;}
.ws2f{word-spacing:1.140000px;}
.wsb6{word-spacing:1.152000px;}
.wsa0{word-spacing:1.197000px;}
.wsa8{word-spacing:1.200000px;}
.ws3b{word-spacing:1.254000px;}
.ws8e{word-spacing:1.311000px;}
.ws9b{word-spacing:1.344000px;}
.ws3d{word-spacing:1.368000px;}
.wsbc{word-spacing:1.392000px;}
.ws56{word-spacing:1.425000px;}
.wsff{word-spacing:1.440000px;}
.wse3{word-spacing:1.482000px;}
.ws65{word-spacing:1.488000px;}
.wsd6{word-spacing:1.536000px;}
.ws68{word-spacing:1.539000px;}
.ws58{word-spacing:1.596000px;}
.wsf5{word-spacing:1.632000px;}
.ws6b{word-spacing:1.653000px;}
.wsc1{word-spacing:1.710000px;}
.ws62{word-spacing:1.728000px;}
.ws4d{word-spacing:1.767000px;}
.wsf8{word-spacing:1.776000px;}
.wsf0{word-spacing:1.824000px;}
.wsd7{word-spacing:1.872000px;}
.wsd9{word-spacing:1.881000px;}
.wsdb{word-spacing:1.938000px;}
.wsb2{word-spacing:1.968000px;}
.ws46{word-spacing:1.995000px;}
.ws14b{word-spacing:2.016000px;}
.wsa2{word-spacing:2.052000px;}
.ws11b{word-spacing:2.106000px;}
.ws4a{word-spacing:2.109000px;}
.wsc8{word-spacing:2.112000px;}
.ws90{word-spacing:2.160000px;}
.ws33{word-spacing:2.166000px;}
.ws82{word-spacing:2.223000px;}
.wsce{word-spacing:2.256000px;}
.wsa7{word-spacing:2.280000px;}
.ws107{word-spacing:2.337000px;}
.wsc{word-spacing:2.346000px;}
.wsa6{word-spacing:2.394000px;}
.ws130{word-spacing:2.430000px;}
.ws91{word-spacing:2.448000px;}
.ws78{word-spacing:2.451000px;}
.wsd5{word-spacing:2.496000px;}
.ws59{word-spacing:2.508000px;}
.ws12e{word-spacing:2.538000px;}
.ws67{word-spacing:2.565000px;}
.ws81{word-spacing:2.622000px;}
.wsfc{word-spacing:2.640000px;}
.ws54{word-spacing:2.679000px;}
.wsc9{word-spacing:2.688000px;}
.ws11a{word-spacing:2.700000px;}
.wsdc{word-spacing:2.736000px;}
.ws99{word-spacing:2.784000px;}
.ws44{word-spacing:2.793000px;}
.ws79{word-spacing:2.850000px;}
.wsfa{word-spacing:2.880000px;}
.wse4{word-spacing:2.907000px;}
.wsb9{word-spacing:2.964000px;}
.ws71{word-spacing:2.976000px;}
.ws89{word-spacing:3.021000px;}
.wsb5{word-spacing:3.024000px;}
.ws49{word-spacing:3.078000px;}
.ws9a{word-spacing:3.120000px;}
.ws48{word-spacing:3.135000px;}
.ws45{word-spacing:3.192000px;}
.wsde{word-spacing:3.216000px;}
.ws147{word-spacing:3.240000px;}
.ws22{word-spacing:3.315000px;}
.ws141{word-spacing:3.348000px;}
.ws98{word-spacing:3.408000px;}
.wse7{word-spacing:3.552000px;}
.ws114{word-spacing:3.726000px;}
.wsb7{word-spacing:3.792000px;}
.wsbb{word-spacing:4.368000px;}
.ws129{word-spacing:4.374000px;}
.wsad{word-spacing:4.416000px;}
.wsfe{word-spacing:4.464000px;}
.ws2b{word-spacing:4.500000px;}
.wsf7{word-spacing:4.560000px;}
.ws26{word-spacing:4.692000px;}
.ws121{word-spacing:4.698000px;}
.wsec{word-spacing:4.800000px;}
.ws63{word-spacing:4.848000px;}
.ws25{word-spacing:4.896000px;}
.ws137{word-spacing:5.022000px;}
.ws123{word-spacing:5.184000px;}
.ws119{word-spacing:5.238000px;}
.ws1a{word-spacing:5.328000px;}
.wsf6{word-spacing:5.424000px;}
.ws149{word-spacing:5.724000px;}
.ws92{word-spacing:5.760000px;}
.ws127{word-spacing:5.778000px;}
.ws9d{word-spacing:5.904000px;}
.wsf1{word-spacing:6.192000px;}
.ws116{word-spacing:6.372000px;}
.ws117{word-spacing:6.534000px;}
.ws13d{word-spacing:6.588000px;}
.ws148{word-spacing:6.750000px;}
.ws142{word-spacing:6.858000px;}
.ws128{word-spacing:6.966000px;}
.ws104{word-spacing:7.488000px;}
.ws122{word-spacing:7.776000px;}
.ws9{word-spacing:8.160000px;}
.ws146{word-spacing:8.208000px;}
.wsb{word-spacing:8.736000px;}
.ws131{word-spacing:9.072000px;}
.ws136{word-spacing:9.558000px;}
.wsb3{word-spacing:9.600000px;}
.ws13c{word-spacing:10.692000px;}
.ws13f{word-spacing:11.124000px;}
.wse6{word-spacing:11.328000px;}
.ws140{word-spacing:11.448000px;}
.ws145{word-spacing:11.718000px;}
.wsb4{word-spacing:13.536000px;}
.ws111{word-spacing:13.770000px;}
.ws12b{word-spacing:14.094000px;}
.ws118{word-spacing:14.310000px;}
.ws139{word-spacing:16.200000px;}
.ws14a{word-spacing:16.578000px;}
.ws120{word-spacing:16.794000px;}
.ws126{word-spacing:17.442000px;}
.ws125{word-spacing:22.572000px;}
.ws28{word-spacing:23.256000px;}
.ws133{word-spacing:33.804000px;}
.ws124{word-spacing:34.830000px;}
.ws138{word-spacing:36.828000px;}
._a{margin-left:-27.168000px;}
._e{margin-left:-22.950000px;}
._18{margin-left:-19.077000px;}
._15{margin-left:-17.972100px;}
._9{margin-left:-15.912000px;}
._1{margin-left:-13.828800px;}
._6{margin-left:-12.722576px;}
._14{margin-left:-9.456000px;}
._4{margin-left:-5.661000px;}
._2{margin-left:-4.416000px;}
._5{margin-left:-2.856000px;}
._0{margin-left:-1.470000px;}
._12{width:1.175400px;}
._d{width:2.512200px;}
._f{width:4.747500px;}
._13{width:6.474600px;}
._3{width:9.208800px;}
._1c{width:16.194000px;}
._16{width:17.439600px;}
._c{width:19.409400px;}
._b{width:21.850080px;}
._8{width:23.256000px;}
._19{width:27.159600px;}
._1a{width:29.694000px;}
._1b{width:33.793200px;}
._10{width:40.527000px;}
._11{width:41.838000px;}
._17{width:43.300800px;}
._7{width:111.666000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:33.000000px;}
.fsd{font-size:33.231000px;}
.fse{font-size:34.980000px;}
.fsa{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fsc{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs9{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:17.625300px;}
.y2{bottom:28.125300px;}
.y1{bottom:44.049150px;}
.y24{bottom:45.176100px;}
.y181{bottom:93.543150px;}
.y54{bottom:93.543300px;}
.ybc{bottom:93.543450px;}
.y2c6{bottom:94.079400px;}
.ye6{bottom:94.185750px;}
.y2ee{bottom:98.089350px;}
.y77{bottom:98.538300px;}
.y7{bottom:106.299150px;}
.y180{bottom:109.293150px;}
.y1d9{bottom:109.293300px;}
.ybb{bottom:109.293450px;}
.y2c5{bottom:111.329400px;}
.ye5{bottom:112.935750px;}
.y99{bottom:113.545200px;}
.y53{bottom:114.288300px;}
.yc4{bottom:114.288450px;}
.y2ed{bottom:115.339350px;}
.y76{bottom:118.540200px;}
.y6{bottom:122.049150px;}
.y17f{bottom:125.043150px;}
.y219{bottom:125.043300px;}
.yba{bottom:125.043450px;}
.y2c4{bottom:128.279400px;}
.y102{bottom:129.295200px;}
.yc3{bottom:129.295500px;}
.y1d8{bottom:130.038300px;}
.ye4{bottom:131.730750px;}
.y2ec{bottom:132.589350px;}
.y98{bottom:134.290200px;}
.y5{bottom:137.799150px;}
.y218{bottom:140.793300px;}
.y232{bottom:140.793450px;}
.y122{bottom:145.045200px;}
.y1a2{bottom:145.045500px;}
.y17e{bottom:145.788150px;}
.yb9{bottom:145.788450px;}
.y97{bottom:149.297250px;}
.y2eb{bottom:149.839350px;}
.y101{bottom:150.040200px;}
.yc2{bottom:150.040500px;}
.ye3{bottom:150.525750px;}
.y2c3{bottom:152.797950px;}
.y4{bottom:153.549150px;}
.y217{bottom:156.543300px;}
.y231{bottom:156.543450px;}
.y121{bottom:160.795200px;}
.yb8{bottom:160.795500px;}
.y13f{bottom:164.835450px;}
.y100{bottom:165.047250px;}
.y1c1{bottom:165.047700px;}
.y27d{bottom:165.790200px;}
.y1a1{bottom:165.790500px;}
.y2ea{bottom:166.939200px;}
.y2ef{bottom:169.299150px;}
.y2c2{bottom:169.747950px;}
.y96{bottom:170.042250px;}
.y216{bottom:172.293300px;}
.y230{bottom:172.293450px;}
.y120{bottom:176.545200px;}
.y20a{bottom:177.868950px;}
.y52{bottom:177.925800px;}
.yff{bottom:180.797250px;}
.y1c0{bottom:180.797700px;}
.y1d7{bottom:181.540200px;}
.yb7{bottom:181.540500px;}
.y13e{bottom:183.585450px;}
.y2e9{bottom:184.039200px;}
.y95{bottom:185.049150px;}
.y2c1{bottom:186.697950px;}
.ye2{bottom:187.179000px;}
.y215{bottom:188.043300px;}
.y22f{bottom:188.043450px;}
.y75{bottom:189.298500px;}
.y15d{bottom:190.044150px;}
.y11f{bottom:192.295200px;}
.yfe{bottom:196.547250px;}
.y1bf{bottom:196.547700px;}
.y209{bottom:196.768950px;}
.y51{bottom:196.900800px;}
.y264{bottom:197.290200px;}
.y24c{bottom:198.435450px;}
.y2e8{bottom:201.139350px;}
.y13d{bottom:202.335450px;}
.y214{bottom:203.793300px;}
.y22e{bottom:203.793450px;}
.y94{bottom:205.794150px;}
.ye1{bottom:205.974000px;}
.y11e{bottom:208.045200px;}
.y74{bottom:208.243500px;}
.yc1{bottom:208.713450px;}
.y15c{bottom:210.046200px;}
.y2c0{bottom:211.216500px;}
.y1d6{bottom:212.297250px;}
.y1be{bottom:212.297700px;}
.y50{bottom:215.875800px;}
.yfd{bottom:217.292250px;}
.y24b{bottom:217.335450px;}
.y2e7{bottom:218.239350px;}
.y213{bottom:219.543300px;}
.y22d{bottom:219.543450px;}
.y93{bottom:220.801200px;}
.y13c{bottom:221.085450px;}
.ye0{bottom:224.769000px;}
.y27c{bottom:225.721200px;}
.y73{bottom:227.188500px;}
.yc0{bottom:227.463450px;}
.y1bd{bottom:228.047700px;}
.y2bf{bottom:228.166500px;}
.y17d{bottom:228.790200px;}
.y1a0{bottom:230.592750px;}
.y1d5{bottom:233.042250px;}
.y4f{bottom:234.850800px;}
.y208{bottom:235.228050px;}
.y212{bottom:235.293300px;}
.y22c{bottom:235.293450px;}
.y2e6{bottom:235.339350px;}
.y24a{bottom:236.235450px;}
.y92{bottom:236.551200px;}
.y13b{bottom:239.835450px;}
.ydf{bottom:243.564000px;}
.y17c{bottom:243.797100px;}
.y1bc{bottom:243.797700px;}
.y27b{bottom:244.471200px;}
.y2be{bottom:245.116350px;}
.y72{bottom:246.133500px;}
.yb6{bottom:246.213450px;}
.y1d4{bottom:248.049150px;}
.y1f8{bottom:249.522750px;}
.y19f{bottom:249.567750px;}
.y211{bottom:251.043300px;}
.y22b{bottom:251.043450px;}
.y91{bottom:252.301200px;}
.y2e5{bottom:252.439200px;}
.y4e{bottom:253.825800px;}
.y207{bottom:254.127900px;}
.y249{bottom:255.135450px;}
.y13a{bottom:258.585450px;}
.y17b{bottom:259.547100px;}
.y1a{bottom:261.974550px;}
.y2bd{bottom:262.066500px;}
.yde{bottom:262.359000px;}
.y1bb{bottom:264.542700px;}
.yb5{bottom:264.963450px;}
.y71{bottom:265.078500px;}
.y210{bottom:266.793300px;}
.y22a{bottom:266.793450px;}
.y263{bottom:267.357450px;}
.y90{bottom:268.051200px;}
.y1f7{bottom:268.467750px;}
.y19e{bottom:268.542750px;}
.y1d3{bottom:268.794150px;}
.y4d{bottom:272.800800px;}
.y206{bottom:273.027900px;}
.yfc{bottom:273.183900px;}
.y15b{bottom:273.285450px;}
.y248{bottom:274.035450px;}
.y17a{bottom:275.297100px;}
.y11d{bottom:276.951600px;}
.y139{bottom:277.335450px;}
.y285{bottom:277.719300px;}
.y2e4{bottom:278.043300px;}
.y2bc{bottom:279.016500px;}
.y1ba{bottom:279.549750px;}
.y27a{bottom:280.229100px;}
.ydd{bottom:281.154000px;}
.y20f{bottom:282.543300px;}
.y229{bottom:282.543450px;}
.yb4{bottom:283.713450px;}
.y70{bottom:284.023500px;}
.y262{bottom:286.257450px;}
.y1f6{bottom:287.412750px;}
.y19d{bottom:287.517750px;}
.y8f{bottom:288.796200px;}
.y32{bottom:289.104450px;}
.y29b{bottom:289.565850px;}
.y4c{bottom:291.775800px;}
.y205{bottom:291.928050px;}
.yfb{bottom:291.933900px;}
.y15a{bottom:292.185450px;}
.y247{bottom:292.935450px;}
.y2e3{bottom:295.143150px;}
.y1b9{bottom:295.299750px;}
.y11c{bottom:295.701600px;}
.y2bb{bottom:295.966500px;}
.y179{bottom:296.042100px;}
.y138{bottom:296.085450px;}
.y284{bottom:296.469300px;}
.y20e{bottom:298.293300px;}
.y228{bottom:298.293450px;}
.y279{bottom:298.979100px;}
.ydc{bottom:299.949000px;}
.yb3{bottom:302.463450px;}
.y6f{bottom:302.968500px;}
.y261{bottom:305.157450px;}
.y1f5{bottom:306.357750px;}
.y19c{bottom:306.492750px;}
.y29a{bottom:308.315850px;}
.y19{bottom:309.738300px;}
.yfa{bottom:310.683900px;}
.y4b{bottom:310.750800px;}
.y204{bottom:310.828050px;}
.y178{bottom:311.049150px;}
.y1b8{bottom:311.049750px;}
.y159{bottom:311.085450px;}
.y246{bottom:311.835450px;}
.y2e2{bottom:312.243150px;}
.y2ba{bottom:312.916500px;}
.y20d{bottom:314.043300px;}
.y227{bottom:314.043450px;}
.y11b{bottom:314.451600px;}
.y283{bottom:315.219300px;}
.y278{bottom:317.729100px;}
.ydb{bottom:318.744000px;}
.yb2{bottom:321.213450px;}
.y260{bottom:324.057450px;}
.y1f4{bottom:325.302750px;}
.y19b{bottom:325.467750px;}
.y177{bottom:326.799150px;}
.y1b7{bottom:326.799750px;}
.y299{bottom:327.065850px;}
.y2e1{bottom:329.343150px;}
.yf9{bottom:329.433900px;}
.y4a{bottom:329.725800px;}
.y20c{bottom:329.793300px;}
.y226{bottom:329.793450px;}
.y2b9{bottom:329.866350px;}
.y158{bottom:329.985450px;}
.y245{bottom:330.735450px;}
.y11a{bottom:333.201600px;}
.y1d2{bottom:333.774300px;}
.y137{bottom:333.969300px;}
.y277{bottom:336.479100px;}
.y31{bottom:336.868200px;}
.yda{bottom:337.539000px;}
.yb1{bottom:339.963450px;}
.y176{bottom:342.549150px;}
.y1b6{bottom:342.549750px;}
.y6e{bottom:342.748050px;}
.y25f{bottom:342.957450px;}
.y18{bottom:343.246200px;}
.y8e{bottom:344.073600px;}
.y1f3{bottom:344.247750px;}
.y19a{bottom:344.442750px;}
.y225{bottom:345.543450px;}
.y298{bottom:345.815850px;}
.y2e0{bottom:346.443300px;}
.y49{bottom:348.700800px;}
.y157{bottom:348.885450px;}
.y203{bottom:349.287000px;}
.y244{bottom:349.635450px;}
.y20b{bottom:350.538300px;}
.y119{bottom:351.951600px;}
.y136{bottom:352.719300px;}
.y282{bottom:353.103150px;}
.y2b8{bottom:354.384900px;}
.y276{bottom:355.229100px;}
.yd9{bottom:356.334000px;}
.yf8{bottom:356.687850px;}
.y175{bottom:358.299150px;}
.y1b5{bottom:358.299750px;}
.yb0{bottom:358.713450px;}
.y17{bottom:359.746200px;}
.y224{bottom:361.293450px;}
.y6d{bottom:361.693050px;}
.y25e{bottom:361.857450px;}
.y8d{bottom:362.823600px;}
.y199{bottom:363.417750px;}
.y2df{bottom:363.543300px;}
.y297{bottom:364.565850px;}
.y48{bottom:367.675800px;}
.y156{bottom:367.785450px;}
.y202{bottom:368.187000px;}
.y30{bottom:370.376100px;}
.y118{bottom:370.701600px;}
.y2b7{bottom:371.334900px;}
.y135{bottom:371.469300px;}
.y281{bottom:371.853150px;}
.y275{bottom:373.979100px;}
.y1b4{bottom:374.049750px;}
.yd8{bottom:375.129000px;}
.yf7{bottom:375.437850px;}
.y16{bottom:376.246200px;}
.y223{bottom:377.043450px;}
.yaf{bottom:377.463450px;}
.y174{bottom:379.044150px;}
.y6c{bottom:380.638050px;}
.y2de{bottom:380.643150px;}
.y25d{bottom:380.757450px;}
.y8c{bottom:381.573600px;}
.y198{bottom:382.392750px;}
.y296{bottom:383.315850px;}
.y1f2{bottom:384.027300px;}
.y47{bottom:386.650800px;}
.y2f{bottom:386.876100px;}
.y201{bottom:387.087000px;}
.y243{bottom:387.669300px;}
.y2b6{bottom:388.284900px;}
.y117{bottom:389.451600px;}
.y1b3{bottom:389.799750px;}
.y134{bottom:390.219300px;}
.y280{bottom:390.603150px;}
.y274{bottom:392.729100px;}
.y15{bottom:392.746200px;}
.y222{bottom:392.793450px;}
.yf6{bottom:394.187850px;}
.yae{bottom:396.213450px;}
.y2dd{bottom:397.743150px;}
.y6b{bottom:399.583050px;}
.y25c{bottom:399.657450px;}
.y8b{bottom:400.323600px;}
.y295{bottom:402.065850px;}
.y1f1{bottom:402.972450px;}
.y2e{bottom:403.376100px;}
.y2b5{bottom:405.234900px;}
.y1b2{bottom:405.549750px;}
.y46{bottom:405.625800px;}
.y155{bottom:405.819300px;}
.y200{bottom:405.987000px;}
.y242{bottom:406.569300px;}
.y221{bottom:408.543450px;}
.y133{bottom:408.969300px;}
.y14{bottom:409.246200px;}
.y27f{bottom:409.353150px;}
.y273{bottom:411.479100px;}
.yd7{bottom:411.782250px;}
.yf5{bottom:412.937850px;}
.yad{bottom:414.963450px;}
.y6a{bottom:418.528050px;}
.y25b{bottom:418.557450px;}
.y8a{bottom:419.073600px;}
.y2d{bottom:419.876100px;}
.y294{bottom:420.815850px;}
.y1f0{bottom:421.917450px;}
.y2b4{bottom:422.184900px;}
.y197{bottom:422.202450px;}
.y2dc{bottom:423.347100px;}
.y45{bottom:424.600800px;}
.y154{bottom:424.719300px;}
.y1ff{bottom:424.887000px;}
.y116{bottom:425.209500px;}
.y241{bottom:425.469300px;}
.y13{bottom:425.746200px;}
.y1b1{bottom:426.294750px;}
.y132{bottom:427.719300px;}
.y1d1{bottom:428.103150px;}
.y220{bottom:429.288450px;}
.y272{bottom:430.229100px;}
.yd6{bottom:430.577250px;}
.yac{bottom:433.713450px;}
.y2c{bottom:436.376100px;}
.y25a{bottom:437.457450px;}
.y69{bottom:437.473050px;}
.y89{bottom:437.823600px;}
.y293{bottom:439.565850px;}
.y2db{bottom:440.447100px;}
.y1ef{bottom:440.862450px;}
.y196{bottom:441.177450px;}
.y1b0{bottom:441.301950px;}
.y173{bottom:441.727050px;}
.y12{bottom:442.246200px;}
.y44{bottom:443.575800px;}
.y153{bottom:443.619300px;}
.y1fe{bottom:443.787000px;}
.y115{bottom:443.959500px;}
.y240{bottom:444.369300px;}
.y131{bottom:446.469300px;}
.y2b3{bottom:446.703450px;}
.y1d0{bottom:446.853150px;}
.y271{bottom:448.979100px;}
.yd5{bottom:449.372250px;}
.yab{bottom:452.463450px;}
.y2b{bottom:452.876100px;}
.yf4{bottom:455.073600px;}
.y259{bottom:456.357450px;}
.y68{bottom:456.418050px;}
.y88{bottom:456.573600px;}
.y1af{bottom:457.051950px;}
.y2da{bottom:457.547100px;}
.y292{bottom:458.315850px;}
.y11{bottom:458.746200px;}
.y1ee{bottom:459.807450px;}
.y195{bottom:460.152300px;}
.y172{bottom:460.477050px;}
.y152{bottom:462.519300px;}
.y1fd{bottom:462.687000px;}
.y114{bottom:462.709500px;}
.y23f{bottom:463.269300px;}
.y2b2{bottom:463.653450px;}
.y130{bottom:465.219300px;}
.y1cf{bottom:465.603150px;}
.y270{bottom:467.729100px;}
.y2a{bottom:469.376100px;}
.yf3{bottom:473.823600px;}
.y2d9{bottom:474.647100px;}
.y10{bottom:475.246200px;}
.y258{bottom:475.257450px;}
.y87{bottom:475.323600px;}
.y67{bottom:475.363050px;}
.y291{bottom:477.065850px;}
.y1ed{bottom:478.752300px;}
.y194{bottom:479.127300px;}
.y2b1{bottom:480.603450px;}
.y151{bottom:481.419300px;}
.y113{bottom:481.459500px;}
.y1fc{bottom:481.587000px;}
.y12f{bottom:483.969300px;}
.y1ce{bottom:484.353150px;}
.y29{bottom:485.876100px;}
.yd4{bottom:486.025500px;}
.y21f{bottom:486.479100px;}
.yaa{bottom:488.221350px;}
.yf{bottom:491.746200px;}
.y2d8{bottom:491.747250px;}
.y43{bottom:491.889300px;}
.y257{bottom:494.157450px;}
.y290{bottom:495.815850px;}
.y2b0{bottom:497.553450px;}
.y1ec{bottom:497.697300px;}
.y193{bottom:498.102450px;}
.y112{bottom:500.209500px;}
.y150{bottom:500.319300px;}
.y171{bottom:500.487000px;}
.y23e{bottom:501.303150px;}
.y28{bottom:502.376100px;}
.y12e{bottom:502.719300px;}
.y1cd{bottom:503.103150px;}
.yd3{bottom:504.820500px;}
.y26f{bottom:505.229100px;}
.y21e{bottom:505.229250px;}
.ya9{bottom:506.971200px;}
.ye{bottom:508.246200px;}
.y2d7{bottom:508.847100px;}
.yf2{bottom:509.581500px;}
.y86{bottom:511.081500px;}
.y42{bottom:512.139300px;}
.y256{bottom:513.057450px;}
.y2af{bottom:514.503450px;}
.y28f{bottom:514.565850px;}
.y66{bottom:515.142750px;}
.y1eb{bottom:516.642450px;}
.y192{bottom:517.077450px;}
.y27{bottom:518.876100px;}
.y111{bottom:518.959500px;}
.y14f{bottom:519.219300px;}
.y170{bottom:519.387000px;}
.y23d{bottom:520.203150px;}
.y12d{bottom:521.469300px;}
.y1cc{bottom:521.853150px;}
.yd2{bottom:523.615500px;}
.y26e{bottom:523.979100px;}
.y21d{bottom:523.979250px;}
.y1ae{bottom:524.079600px;}
.yd{bottom:524.746200px;}
.ya8{bottom:525.721200px;}
.yf1{bottom:528.331500px;}
.y85{bottom:529.831500px;}
.y2ae{bottom:531.453450px;}
.y28e{bottom:533.315850px;}
.y65{bottom:534.087750px;}
.y2d6{bottom:534.451050px;}
.y26{bottom:535.376100px;}
.y1ea{bottom:535.587450px;}
.y191{bottom:536.052450px;}
.y110{bottom:537.709500px;}
.y14e{bottom:538.119300px;}
.y16f{bottom:538.287000px;}
.y23c{bottom:539.103150px;}
.y12c{bottom:540.219300px;}
.y1cb{bottom:540.603150px;}
.yd1{bottom:542.410500px;}
.y26d{bottom:542.729100px;}
.y21c{bottom:542.729250px;}
.y1ad{bottom:542.829600px;}
.ya7{bottom:544.471200px;}
.yf0{bottom:547.081500px;}
.y2ad{bottom:548.403450px;}
.y84{bottom:548.581500px;}
.y2d5{bottom:551.551050px;}
.y255{bottom:551.941800px;}
.y28d{bottom:552.065850px;}
.y64{bottom:553.032750px;}
.y1e9{bottom:554.532450px;}
.y190{bottom:555.027300px;}
.yc{bottom:555.109350px;}
.y10f{bottom:556.459500px;}
.y14d{bottom:557.019300px;}
.y16e{bottom:557.186850px;}
.y1fb{bottom:557.187000px;}
.y23b{bottom:558.003150px;}
.y1ca{bottom:559.353150px;}
.yd0{bottom:561.205500px;}
.y26c{bottom:561.479100px;}
.y21b{bottom:561.479250px;}
.y1ac{bottom:561.579600px;}
.ya6{bottom:563.221200px;}
.y2ac{bottom:565.353450px;}
.y25{bottom:565.739250px;}
.yef{bottom:565.831500px;}
.y83{bottom:567.331500px;}
.y2d4{bottom:568.651050px;}
.y254{bottom:570.841800px;}
.y63{bottom:571.977750px;}
.y1e8{bottom:573.477300px;}
.y18f{bottom:574.002450px;}
.y10e{bottom:575.209500px;}
.y14c{bottom:575.919300px;}
.y16d{bottom:576.087000px;}
.y23a{bottom:576.903150px;}
.y12b{bottom:578.103150px;}
.ycf{bottom:580.000500px;}
.y26b{bottom:580.229100px;}
.y21a{bottom:580.229250px;}
.y1ab{bottom:580.329600px;}
.ya5{bottom:581.971200px;}
.y41{bottom:582.569850px;}
.yee{bottom:584.581500px;}
.y2d3{bottom:585.751050px;}
.y82{bottom:586.081500px;}
.y253{bottom:589.741800px;}
.y2ab{bottom:589.872000px;}
.y62{bottom:590.922750px;}
.y1e7{bottom:592.422300px;}
.y18e{bottom:592.977300px;}
.y28c{bottom:594.201600px;}
.y14b{bottom:594.819300px;}
.y16c{bottom:594.987000px;}
.y239{bottom:595.803150px;}
.y12a{bottom:596.853150px;}
.yce{bottom:598.795500px;}
.y26a{bottom:598.979100px;}
.y1aa{bottom:599.079600px;}
.ybf{bottom:600.721200px;}
.y2d2{bottom:602.851050px;}
.yed{bottom:603.331500px;}
.y81{bottom:604.831500px;}
.y2aa{bottom:606.822000px;}
.y252{bottom:608.641800px;}
.y10d{bottom:610.967400px;}
.y1e6{bottom:611.367300px;}
.y18d{bottom:611.952450px;}
.y14a{bottom:613.719300px;}
.y16b{bottom:613.887000px;}
.y238{bottom:614.703150px;}
.y40{bottom:615.327750px;}
.y129{bottom:615.603150px;}
.y1c9{bottom:615.987000px;}
.ycd{bottom:617.590500px;}
.y269{bottom:617.729100px;}
.ya4{bottom:617.729250px;}
.y1a9{bottom:617.829600px;}
.ybe{bottom:619.471200px;}
.y2d1{bottom:619.951050px;}
.yec{bottom:622.081500px;}
.y80{bottom:623.581500px;}
.y2a9{bottom:623.772000px;}
.y251{bottom:627.541800px;}
.y10c{bottom:629.717400px;}
.y1e5{bottom:630.312450px;}
.y61{bottom:630.702450px;}
.y18c{bottom:630.927450px;}
.y149{bottom:632.619300px;}
.y16a{bottom:632.787000px;}
.y237{bottom:633.603150px;}
.y128{bottom:634.353150px;}
.y1c8{bottom:634.737000px;}
.y1e{bottom:636.313800px;}
.ycc{bottom:636.385500px;}
.y268{bottom:636.479100px;}
.ya3{bottom:636.479250px;}
.y1a8{bottom:636.579600px;}
.y2d0{bottom:637.051050px;}
.y3f{bottom:639.581700px;}
.y2a8{bottom:640.722000px;}
.yeb{bottom:640.831500px;}
.y7f{bottom:642.331500px;}
.y10b{bottom:648.467400px;}
.y1e4{bottom:649.257450px;}
.y60{bottom:649.647450px;}
.y18b{bottom:649.902300px;}
.y148{bottom:651.519300px;}
.y169{bottom:651.686850px;}
.y1fa{bottom:651.687000px;}
.y236{bottom:652.503150px;}
.y127{bottom:653.103150px;}
.y1c7{bottom:653.487000px;}
.y267{bottom:655.229100px;}
.ya2{bottom:655.229250px;}
.y1a7{bottom:655.329600px;}
.y3e{bottom:655.331700px;}
.y1d{bottom:655.565850px;}
.y28b{bottom:656.971200px;}
.y2a7{bottom:657.672000px;}
.y7e{bottom:661.081500px;}
.y2cf{bottom:662.655000px;}
.y10a{bottom:667.217400px;}
.y1e3{bottom:668.202450px;}
.y5f{bottom:668.592450px;}
.y18a{bottom:668.802450px;}
.y147{bottom:670.419300px;}
.y168{bottom:670.587000px;}
.y235{bottom:671.403150px;}
.y126{bottom:671.853150px;}
.y1c{bottom:672.065850px;}
.y1c6{bottom:672.237000px;}
.ycb{bottom:673.038750px;}
.y266{bottom:673.979100px;}
.ya1{bottom:673.979250px;}
.y1a6{bottom:674.079600px;}
.y2a6{bottom:674.622000px;}
.y28a{bottom:675.721200px;}
.y3d{bottom:679.585650px;}
.y2ce{bottom:679.755000px;}
.y7d{bottom:679.831500px;}
.yea{bottom:682.967400px;}
.y33{bottom:683.250750px;}
.y1e2{bottom:687.147450px;}
.y5e{bottom:687.537450px;}
.y146{bottom:689.319300px;}
.y167{bottom:689.487000px;}
.y234{bottom:690.303150px;}
.y125{bottom:690.603150px;}
.y1c5{bottom:690.987000px;}
.yca{bottom:691.833750px;}
.y265{bottom:692.729100px;}
.ya0{bottom:692.729250px;}
.y1b{bottom:692.817750px;}
.y1a5{bottom:692.829600px;}
.y250{bottom:694.329600px;}
.y289{bottom:694.471200px;}
.y3c{bottom:695.335650px;}
.y2cd{bottom:696.855000px;}
.y7c{bottom:698.581500px;}
.y2a5{bottom:699.140400px;}
.y109{bottom:702.975150px;}
.ye9{bottom:703.217400px;}
.y5d{bottom:706.482450px;}
.y166{bottom:708.387000px;}
.y189{bottom:708.537000px;}
.y233{bottom:709.203150px;}
.y124{bottom:709.353150px;}
.y1c4{bottom:709.737000px;}
.yc9{bottom:710.628750px;}
.y9f{bottom:711.479100px;}
.y288{bottom:713.221350px;}
.y2cc{bottom:713.955000px;}
.y2a4{bottom:716.090400px;}
.y7b{bottom:717.331500px;}
.y3b{bottom:719.589600px;}
.y108{bottom:721.725150px;}
.y5c{bottom:725.427450px;}
.y1e1{bottom:726.927000px;}
.y165{bottom:727.287000px;}
.y145{bottom:727.353150px;}
.y188{bottom:727.437000px;}
.y123{bottom:728.103150px;}
.y1c3{bottom:728.487000px;}
.yc8{bottom:729.378750px;}
.y9e{bottom:730.229100px;}
.y2cb{bottom:731.055000px;}
.y2a3{bottom:733.040400px;}
.y1a4{bottom:734.965350px;}
.y7a{bottom:736.081500px;}
.y107{bottom:740.475150px;}
.y3a{bottom:743.843550px;}
.y5b{bottom:744.372450px;}
.y1e0{bottom:745.872000px;}
.y164{bottom:746.186850px;}
.y1f9{bottom:746.187000px;}
.y144{bottom:746.253150px;}
.y187{bottom:746.337000px;}
.y27e{bottom:746.853150px;}
.y1c2{bottom:747.237000px;}
.yc7{bottom:748.128750px;}
.y2ca{bottom:748.455000px;}
.y9d{bottom:748.979100px;}
.y2a2{bottom:749.990550px;}
.y79{bottom:754.831500px;}
.y1a3{bottom:755.215350px;}
.y106{bottom:759.225150px;}
.y5a{bottom:763.317450px;}
.y1df{bottom:764.817000px;}
.y163{bottom:765.087000px;}
.y143{bottom:765.153150px;}
.y186{bottom:765.237000px;}
.y24f{bottom:765.603150px;}
.y2c9{bottom:765.705000px;}
.ye8{bottom:765.987000px;}
.yc6{bottom:766.878750px;}
.y2a1{bottom:767.090400px;}
.y9c{bottom:767.729100px;}
.y39{bottom:768.097500px;}
.y105{bottom:777.975150px;}
.y59{bottom:782.262300px;}
.y2c8{bottom:782.955000px;}
.y1de{bottom:783.762000px;}
.y38{bottom:783.847500px;}
.y162{bottom:783.987000px;}
.y142{bottom:784.053150px;}
.y185{bottom:784.137000px;}
.y24e{bottom:784.353150px;}
.ye7{bottom:784.737000px;}
.yc5{bottom:785.628750px;}
.ybd{bottom:786.479250px;}
.y2a0{bottom:791.758950px;}
.y104{bottom:796.725150px;}
.yb{bottom:796.831350px;}
.y78{bottom:796.967400px;}
.y1dd{bottom:802.707000px;}
.y161{bottom:802.887000px;}
.y141{bottom:802.953150px;}
.y184{bottom:803.037000px;}
.y24d{bottom:803.103150px;}
.y9b{bottom:803.487000px;}
.y287{bottom:805.229250px;}
.y2c7{bottom:808.708950px;}
.y29f{bottom:808.858950px;}
.y103{bottom:815.475150px;}
.y1dc{bottom:821.652000px;}
.y160{bottom:821.787000px;}
.y140{bottom:821.853150px;}
.y183{bottom:821.937000px;}
.y58{bottom:822.042000px;}
.y9a{bottom:822.237000px;}
.ya{bottom:822.331350px;}
.y286{bottom:823.979250px;}
.y29e{bottom:825.958950px;}
.y37{bottom:833.613300px;}
.y1db{bottom:840.597000px;}
.y15f{bottom:840.687000px;}
.y182{bottom:840.837000px;}
.y57{bottom:840.987000px;}
.y29d{bottom:843.208950px;}
.y9{bottom:847.831350px;}
.y1da{bottom:859.542000px;}
.y15e{bottom:859.587000px;}
.y56{bottom:859.737000px;}
.y8{bottom:873.331350px;}
.y29c{bottom:876.616350px;}
.y55{bottom:878.487000px;}
.y35{bottom:935.433000px;}
.y23{bottom:936.554400px;}
.y36{bottom:947.658000px;}
.y34{bottom:949.683000px;}
.y22{bottom:956.900700px;}
.y20{bottom:958.100850px;}
.y1f{bottom:962.750850px;}
.y21{bottom:971.150700px;}
.hf{height:28.296000px;}
.h3{height:29.832000px;}
.h15{height:31.761840px;}
.h11{height:32.850000px;}
.he{height:33.516000px;}
.hb{height:35.088000px;}
.h10{height:35.910000px;}
.h19{height:39.366000px;}
.h9{height:40.086000px;}
.h12{height:40.815000px;}
.h18{height:42.444000px;}
.h5{height:43.392000px;}
.hc{height:43.584000px;}
.h4{height:44.160000px;}
.h7{height:45.486000px;}
.h8{height:46.308000px;}
.h2{height:47.880000px;}
.h17{height:50.952000px;}
.h14{height:51.756000px;}
.ha{height:52.440000px;}
.h16{height:57.900000px;}
.h13{height:59.850000px;}
.h6{height:67.032000px;}
.hd{height:86.184000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x13{left:63.779550px;}
.x21{left:68.031600px;}
.x14{left:76.535400px;}
.x22{left:80.787450px;}
.x8{left:85.039350px;}
.x2{left:87.165300px;}
.x20{left:88.303950px;}
.x24{left:92.035050px;}
.x25{left:93.310200px;}
.x3{left:97.795350px;}
.x18{left:102.792150px;}
.x28{left:104.173200px;}
.x17{left:105.606000px;}
.x26{left:113.463600px;}
.x1f{left:116.078700px;}
.x7{left:118.119600px;}
.x15{left:124.402350px;}
.x9{left:127.559100px;}
.x1e{left:136.488150px;}
.x16{left:148.014750px;}
.x1d{left:150.944850px;}
.x4{left:165.246150px;}
.x6{left:172.519350px;}
.x5{left:176.047050px;}
.x19{left:210.184050px;}
.xd{left:247.676550px;}
.x27{left:342.631950px;}
.x23{left:343.711800px;}
.x1{left:346.816950px;}
.xc{left:382.123800px;}
.x2a{left:393.307050px;}
.x29{left:412.440900px;}
.xb{left:417.415350px;}
.x1b{left:438.772950px;}
.x1c{left:460.802100px;}
.x12{left:462.099450px;}
.x1a{left:467.452650px;}
.xa{left:488.712450px;}
.xe{left:566.208300px;}
.xf{left:571.458150px;}
.x10{left:580.457850px;}
.x11{left:582.733950px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.872000pt;}
.ls40{letter-spacing:-1.280000pt;}
.ls49{letter-spacing:-1.066667pt;}
.ls35{letter-spacing:-0.933333pt;}
.ls4a{letter-spacing:-0.666667pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls3a{letter-spacing:-0.608000pt;}
.ls5{letter-spacing:-0.544000pt;}
.ls20{letter-spacing:-0.456000pt;}
.ls2c{letter-spacing:-0.405333pt;}
.lse{letter-spacing:-0.400000pt;}
.ls5c{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.362667pt;}
.ls4d{letter-spacing:-0.354667pt;}
.ls57{letter-spacing:-0.336000pt;}
.ls4{letter-spacing:-0.317333pt;}
.ls39{letter-spacing:-0.304000pt;}
.ls2{letter-spacing:-0.293333pt;}
.ls38{letter-spacing:-0.266667pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls32{letter-spacing:-0.202667pt;}
.ls56{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.181333pt;}
.lsb{letter-spacing:-0.170667pt;}
.ls18{letter-spacing:-0.155467pt;}
.ls3d{letter-spacing:-0.152000pt;}
.lsc{letter-spacing:-0.136000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.118155pt;}
.ls17{letter-spacing:-0.101333pt;}
.ls54{letter-spacing:-0.096000pt;}
.ls4b{letter-spacing:-0.088616pt;}
.ls7{letter-spacing:-0.074667pt;}
.ls3b{letter-spacing:-0.059077pt;}
.ls21{letter-spacing:-0.050667pt;}
.ls52{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.050667pt;}
.ls15{letter-spacing:0.054368pt;}
.ls2a{letter-spacing:0.059077pt;}
.ls3c{letter-spacing:0.088616pt;}
.ls14{letter-spacing:0.101333pt;}
.ls30{letter-spacing:0.118155pt;}
.ls1d{letter-spacing:0.124373pt;}
.ls5e{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.147693pt;}
.ls1f{letter-spacing:0.152000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.170667pt;}
.ls4e{letter-spacing:0.177232pt;}
.ls28{letter-spacing:0.200000pt;}
.ls24{letter-spacing:0.202667pt;}
.ls29{letter-spacing:0.228000pt;}
.ls48{letter-spacing:0.233600pt;}
.ls22{letter-spacing:0.253333pt;}
.ls36{letter-spacing:0.265848pt;}
.ls45{letter-spacing:0.279840pt;}
.ls27{letter-spacing:0.304000pt;}
.ls41{letter-spacing:0.324925pt;}
.ls11{letter-spacing:0.354101pt;}
.ls2d{letter-spacing:0.354667pt;}
.ls1e{letter-spacing:0.373120pt;}
.ls47{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.384003pt;}
.ls44{letter-spacing:0.405333pt;}
.ls0{letter-spacing:0.426667pt;}
.ls34{letter-spacing:0.430667pt;}
.ls31{letter-spacing:0.456000pt;}
.ls16{letter-spacing:0.506667pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls37{letter-spacing:0.532000pt;}
.ls1a{letter-spacing:0.557333pt;}
.ls2f{letter-spacing:0.597333pt;}
.ls51{letter-spacing:0.600000pt;}
.ls10{letter-spacing:0.608000pt;}
.ls23{letter-spacing:0.658667pt;}
.ls3e{letter-spacing:0.684000pt;}
.ls9{letter-spacing:0.725333pt;}
.ls3f{letter-spacing:0.760000pt;}
.ls50{letter-spacing:0.912000pt;}
.ls12{letter-spacing:1.013333pt;}
.ls42{letter-spacing:1.165333pt;}
.ls59{letter-spacing:1.344000pt;}
.ls5d{letter-spacing:1.536000pt;}
.ls5a{letter-spacing:1.680000pt;}
.ls53{letter-spacing:1.824000pt;}
.ls4f{letter-spacing:2.016000pt;}
.ls5b{letter-spacing:2.112000pt;}
.lsf{letter-spacing:2.474667pt;}
.ls55{letter-spacing:2.496000pt;}
.ls2b{letter-spacing:2.912533pt;}
.ls58{letter-spacing:3.456000pt;}
.ls43{letter-spacing:16.506453pt;}
.ls46{letter-spacing:16.693120pt;}
.ls4c{letter-spacing:17.004053pt;}
.lsd{letter-spacing:99.258667pt;}
.ws0{word-spacing:-16.000000pt;}
.wscf{word-spacing:-15.733333pt;}
.ws80{word-spacing:-15.360000pt;}
.ws100{word-spacing:-14.933333pt;}
.wsdf{word-spacing:-14.720000pt;}
.wsbe{word-spacing:-14.541333pt;}
.wsf2{word-spacing:-14.338667pt;}
.ws2a{word-spacing:-14.336000pt;}
.ws103{word-spacing:-14.288000pt;}
.ws10f{word-spacing:-14.256000pt;}
.ws39{word-spacing:-14.186667pt;}
.wsf3{word-spacing:-14.085333pt;}
.ws110{word-spacing:-13.944000pt;}
.ws10a{word-spacing:-13.344000pt;}
.ws109{word-spacing:-13.296000pt;}
.ws10b{word-spacing:-13.248000pt;}
.ws10c{word-spacing:-13.152000pt;}
.ws10d{word-spacing:-13.008000pt;}
.ws10e{word-spacing:-12.960000pt;}
.wsaa{word-spacing:-12.458667pt;}
.ws1{word-spacing:-12.288000pt;}
.ws17{word-spacing:-12.240000pt;}
.ws2{word-spacing:-11.861333pt;}
.ws16{word-spacing:-11.733333pt;}
.ws3a{word-spacing:-11.648000pt;}
.ws24{word-spacing:-11.600000pt;}
.ws4{word-spacing:-11.200000pt;}
.ws3{word-spacing:-11.125333pt;}
.wse2{word-spacing:-9.017067pt;}
.ws73{word-spacing:-8.595752pt;}
.wse0{word-spacing:-8.536675pt;}
.wsbd{word-spacing:-8.477597pt;}
.ws106{word-spacing:-8.388981pt;}
.wsa4{word-spacing:-8.359443pt;}
.wsa9{word-spacing:-8.329904pt;}
.wsd8{word-spacing:-8.300365pt;}
.ws8a{word-spacing:-8.270827pt;}
.ws29{word-spacing:-8.211749pt;}
.wsd0{word-spacing:-8.152672pt;}
.ws101{word-spacing:-8.123133pt;}
.ws11c{word-spacing:-8.112000pt;}
.wsb8{word-spacing:-8.093595pt;}
.ws143{word-spacing:-6.768000pt;}
.ws144{word-spacing:-4.944000pt;}
.ws19{word-spacing:-4.693333pt;}
.ws112{word-spacing:-4.656000pt;}
.ws115{word-spacing:-4.176000pt;}
.wsbf{word-spacing:-4.000000pt;}
.ws132{word-spacing:-3.792000pt;}
.ws134{word-spacing:-3.456000pt;}
.ws6a{word-spacing:-2.837333pt;}
.ws36{word-spacing:-2.786667pt;}
.wsa1{word-spacing:-2.736000pt;}
.ws94{word-spacing:-2.685333pt;}
.ws51{word-spacing:-2.666667pt;}
.ws95{word-spacing:-2.634667pt;}
.ws74{word-spacing:-2.584000pt;}
.ws14{word-spacing:-2.538667pt;}
.ws11f{word-spacing:-2.496000pt;}
.ws1f{word-spacing:-2.493333pt;}
.wsfd{word-spacing:-2.482667pt;}
.wseb{word-spacing:-2.432000pt;}
.ws84{word-spacing:-2.330667pt;}
.ws8b{word-spacing:-2.280000pt;}
.wsda{word-spacing:-2.229333pt;}
.ws13{word-spacing:-2.221333pt;}
.wsd4{word-spacing:-2.218667pt;}
.ws2e{word-spacing:-2.178667pt;}
.ws70{word-spacing:-2.176000pt;}
.ws108{word-spacing:-2.128000pt;}
.ws13b{word-spacing:-2.112000pt;}
.wsb0{word-spacing:-2.090667pt;}
.ws7a{word-spacing:-2.077333pt;}
.ws12c{word-spacing:-2.064000pt;}
.wscb{word-spacing:-2.048000pt;}
.ws8d{word-spacing:-2.026667pt;}
.ws9e{word-spacing:-1.976000pt;}
.wsb1{word-spacing:-1.962667pt;}
.wsac{word-spacing:-1.925333pt;}
.wsf9{word-spacing:-1.877333pt;}
.ws86{word-spacing:-1.874667pt;}
.wsd{word-spacing:-1.858667pt;}
.wsc5{word-spacing:-1.834667pt;}
.ws35{word-spacing:-1.824000pt;}
.wsc0{word-spacing:-1.773333pt;}
.ws5f{word-spacing:-1.749333pt;}
.ws4c{word-spacing:-1.722667pt;}
.wsc4{word-spacing:-1.706667pt;}
.ws13a{word-spacing:-1.680000pt;}
.ws41{word-spacing:-1.672000pt;}
.ws60{word-spacing:-1.664000pt;}
.ws6{word-spacing:-1.642667pt;}
.ws53{word-spacing:-1.621333pt;}
.wse9{word-spacing:-1.578667pt;}
.ws3e{word-spacing:-1.570667pt;}
.ws102{word-spacing:-1.536000pt;}
.ws6e{word-spacing:-1.520000pt;}
.wscd{word-spacing:-1.493333pt;}
.ws2d{word-spacing:-1.469333pt;}
.ws37{word-spacing:-1.418667pt;}
.ws8f{word-spacing:-1.368000pt;}
.ws135{word-spacing:-1.344000pt;}
.ws30{word-spacing:-1.317333pt;}
.ws32{word-spacing:-1.266667pt;}
.ws105{word-spacing:-1.237333pt;}
.wsa3{word-spacing:-1.216000pt;}
.ws72{word-spacing:-1.194667pt;}
.wsba{word-spacing:-1.165333pt;}
.ws1e{word-spacing:-1.133333pt;}
.ws42{word-spacing:-1.114667pt;}
.wsc3{word-spacing:-1.109333pt;}
.ws13e{word-spacing:-1.104000pt;}
.ws5e{word-spacing:-1.066667pt;}
.ws5a{word-spacing:-1.064000pt;}
.wsc2{word-spacing:-1.024000pt;}
.ws69{word-spacing:-1.013333pt;}
.ws7e{word-spacing:-0.981333pt;}
.ws96{word-spacing:-0.962667pt;}
.ws88{word-spacing:-0.912000pt;}
.wsca{word-spacing:-0.896000pt;}
.ws6c{word-spacing:-0.861333pt;}
.ws5d{word-spacing:-0.853333pt;}
.ws34{word-spacing:-0.810667pt;}
.ws12d{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.760000pt;}
.ws3f{word-spacing:-0.709333pt;}
.wsaf{word-spacing:-0.682667pt;}
.ws7c{word-spacing:-0.658667pt;}
.ws6f{word-spacing:-0.640000pt;}
.ws23{word-spacing:-0.634667pt;}
.ws6d{word-spacing:-0.608000pt;}
.ws1d{word-spacing:-0.589333pt;}
.ws2c{word-spacing:-0.557333pt;}
.ws5c{word-spacing:-0.506667pt;}
.ws21{word-spacing:-0.498667pt;}
.wse5{word-spacing:-0.456000pt;}
.ws11d{word-spacing:-0.432000pt;}
.wsa{word-spacing:-0.426667pt;}
.ws5b{word-spacing:-0.405333pt;}
.wsd2{word-spacing:-0.384000pt;}
.ws64{word-spacing:-0.373120pt;}
.ws55{word-spacing:-0.354667pt;}
.ws11{word-spacing:-0.317333pt;}
.ws4b{word-spacing:-0.304000pt;}
.ws93{word-spacing:-0.298667pt;}
.wsf4{word-spacing:-0.279840pt;}
.wsc7{word-spacing:-0.256000pt;}
.ws40{word-spacing:-0.253333pt;}
.wsed{word-spacing:-0.213333pt;}
.ws43{word-spacing:-0.202667pt;}
.ws8c{word-spacing:-0.200000pt;}
.ws7f{word-spacing:-0.170667pt;}
.ws47{word-spacing:-0.152000pt;}
.ws18{word-spacing:-0.128000pt;}
.ws61{word-spacing:-0.124373pt;}
.ws85{word-spacing:-0.101333pt;}
.ws10{word-spacing:-0.090667pt;}
.wsef{word-spacing:-0.085333pt;}
.wsd1{word-spacing:-0.050667pt;}
.wsc6{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsdd{word-spacing:0.042667pt;}
.ws113{word-spacing:0.048000pt;}
.ws3c{word-spacing:0.050667pt;}
.ws11e{word-spacing:0.096000pt;}
.ws66{word-spacing:0.101333pt;}
.ws1b{word-spacing:0.128000pt;}
.ws52{word-spacing:0.152000pt;}
.ws50{word-spacing:0.155467pt;}
.ws1c{word-spacing:0.170667pt;}
.ws12a{word-spacing:0.192000pt;}
.wse1{word-spacing:0.202667pt;}
.wse{word-spacing:0.226667pt;}
.ws9f{word-spacing:0.253333pt;}
.ws12{word-spacing:0.272000pt;}
.wsab{word-spacing:0.304000pt;}
.ws12f{word-spacing:0.336000pt;}
.wsae{word-spacing:0.341333pt;}
.ws7b{word-spacing:0.354667pt;}
.ws15{word-spacing:0.362667pt;}
.ws4e{word-spacing:0.405333pt;}
.ws7{word-spacing:0.426667pt;}
.ws97{word-spacing:0.456000pt;}
.wsfb{word-spacing:0.469333pt;}
.ws38{word-spacing:0.506667pt;}
.ws8{word-spacing:0.554667pt;}
.ws4f{word-spacing:0.557333pt;}
.wsee{word-spacing:0.597333pt;}
.ws57{word-spacing:0.608000pt;}
.ws9c{word-spacing:0.640000pt;}
.wsa5{word-spacing:0.658667pt;}
.wscc{word-spacing:0.682667pt;}
.ws76{word-spacing:0.709333pt;}
.ws7d{word-spacing:0.760000pt;}
.ws27{word-spacing:0.770667pt;}
.ws77{word-spacing:0.810667pt;}
.ws20{word-spacing:0.816000pt;}
.ws75{word-spacing:0.861333pt;}
.wsd3{word-spacing:0.896000pt;}
.wsf{word-spacing:0.906667pt;}
.ws83{word-spacing:0.912000pt;}
.wsea{word-spacing:0.938667pt;}
.ws87{word-spacing:0.962667pt;}
.wse8{word-spacing:0.981333pt;}
.ws2f{word-spacing:1.013333pt;}
.wsb6{word-spacing:1.024000pt;}
.wsa0{word-spacing:1.064000pt;}
.wsa8{word-spacing:1.066667pt;}
.ws3b{word-spacing:1.114667pt;}
.ws8e{word-spacing:1.165333pt;}
.ws9b{word-spacing:1.194667pt;}
.ws3d{word-spacing:1.216000pt;}
.wsbc{word-spacing:1.237333pt;}
.ws56{word-spacing:1.266667pt;}
.wsff{word-spacing:1.280000pt;}
.wse3{word-spacing:1.317333pt;}
.ws65{word-spacing:1.322667pt;}
.wsd6{word-spacing:1.365333pt;}
.ws68{word-spacing:1.368000pt;}
.ws58{word-spacing:1.418667pt;}
.wsf5{word-spacing:1.450667pt;}
.ws6b{word-spacing:1.469333pt;}
.wsc1{word-spacing:1.520000pt;}
.ws62{word-spacing:1.536000pt;}
.ws4d{word-spacing:1.570667pt;}
.wsf8{word-spacing:1.578667pt;}
.wsf0{word-spacing:1.621333pt;}
.wsd7{word-spacing:1.664000pt;}
.wsd9{word-spacing:1.672000pt;}
.wsdb{word-spacing:1.722667pt;}
.wsb2{word-spacing:1.749333pt;}
.ws46{word-spacing:1.773333pt;}
.ws14b{word-spacing:1.792000pt;}
.wsa2{word-spacing:1.824000pt;}
.ws11b{word-spacing:1.872000pt;}
.ws4a{word-spacing:1.874667pt;}
.wsc8{word-spacing:1.877333pt;}
.ws90{word-spacing:1.920000pt;}
.ws33{word-spacing:1.925333pt;}
.ws82{word-spacing:1.976000pt;}
.wsce{word-spacing:2.005333pt;}
.wsa7{word-spacing:2.026667pt;}
.ws107{word-spacing:2.077333pt;}
.wsc{word-spacing:2.085333pt;}
.wsa6{word-spacing:2.128000pt;}
.ws130{word-spacing:2.160000pt;}
.ws91{word-spacing:2.176000pt;}
.ws78{word-spacing:2.178667pt;}
.wsd5{word-spacing:2.218667pt;}
.ws59{word-spacing:2.229333pt;}
.ws12e{word-spacing:2.256000pt;}
.ws67{word-spacing:2.280000pt;}
.ws81{word-spacing:2.330667pt;}
.wsfc{word-spacing:2.346667pt;}
.ws54{word-spacing:2.381333pt;}
.wsc9{word-spacing:2.389333pt;}
.ws11a{word-spacing:2.400000pt;}
.wsdc{word-spacing:2.432000pt;}
.ws99{word-spacing:2.474667pt;}
.ws44{word-spacing:2.482667pt;}
.ws79{word-spacing:2.533333pt;}
.wsfa{word-spacing:2.560000pt;}
.wse4{word-spacing:2.584000pt;}
.wsb9{word-spacing:2.634667pt;}
.ws71{word-spacing:2.645333pt;}
.ws89{word-spacing:2.685333pt;}
.wsb5{word-spacing:2.688000pt;}
.ws49{word-spacing:2.736000pt;}
.ws9a{word-spacing:2.773333pt;}
.ws48{word-spacing:2.786667pt;}
.ws45{word-spacing:2.837333pt;}
.wsde{word-spacing:2.858667pt;}
.ws147{word-spacing:2.880000pt;}
.ws22{word-spacing:2.946667pt;}
.ws141{word-spacing:2.976000pt;}
.ws98{word-spacing:3.029333pt;}
.wse7{word-spacing:3.157333pt;}
.ws114{word-spacing:3.312000pt;}
.wsb7{word-spacing:3.370667pt;}
.wsbb{word-spacing:3.882667pt;}
.ws129{word-spacing:3.888000pt;}
.wsad{word-spacing:3.925333pt;}
.wsfe{word-spacing:3.968000pt;}
.ws2b{word-spacing:4.000000pt;}
.wsf7{word-spacing:4.053333pt;}
.ws26{word-spacing:4.170667pt;}
.ws121{word-spacing:4.176000pt;}
.wsec{word-spacing:4.266667pt;}
.ws63{word-spacing:4.309333pt;}
.ws25{word-spacing:4.352000pt;}
.ws137{word-spacing:4.464000pt;}
.ws123{word-spacing:4.608000pt;}
.ws119{word-spacing:4.656000pt;}
.ws1a{word-spacing:4.736000pt;}
.wsf6{word-spacing:4.821333pt;}
.ws149{word-spacing:5.088000pt;}
.ws92{word-spacing:5.120000pt;}
.ws127{word-spacing:5.136000pt;}
.ws9d{word-spacing:5.248000pt;}
.wsf1{word-spacing:5.504000pt;}
.ws116{word-spacing:5.664000pt;}
.ws117{word-spacing:5.808000pt;}
.ws13d{word-spacing:5.856000pt;}
.ws148{word-spacing:6.000000pt;}
.ws142{word-spacing:6.096000pt;}
.ws128{word-spacing:6.192000pt;}
.ws104{word-spacing:6.656000pt;}
.ws122{word-spacing:6.912000pt;}
.ws9{word-spacing:7.253333pt;}
.ws146{word-spacing:7.296000pt;}
.wsb{word-spacing:7.765333pt;}
.ws131{word-spacing:8.064000pt;}
.ws136{word-spacing:8.496000pt;}
.wsb3{word-spacing:8.533333pt;}
.ws13c{word-spacing:9.504000pt;}
.ws13f{word-spacing:9.888000pt;}
.wse6{word-spacing:10.069333pt;}
.ws140{word-spacing:10.176000pt;}
.ws145{word-spacing:10.416000pt;}
.wsb4{word-spacing:12.032000pt;}
.ws111{word-spacing:12.240000pt;}
.ws12b{word-spacing:12.528000pt;}
.ws118{word-spacing:12.720000pt;}
.ws139{word-spacing:14.400000pt;}
.ws14a{word-spacing:14.736000pt;}
.ws120{word-spacing:14.928000pt;}
.ws126{word-spacing:15.504000pt;}
.ws125{word-spacing:20.064000pt;}
.ws28{word-spacing:20.672000pt;}
.ws133{word-spacing:30.048000pt;}
.ws124{word-spacing:30.960000pt;}
.ws138{word-spacing:32.736000pt;}
._a{margin-left:-24.149333pt;}
._e{margin-left:-20.400000pt;}
._18{margin-left:-16.957333pt;}
._15{margin-left:-15.975200pt;}
._9{margin-left:-14.144000pt;}
._1{margin-left:-12.292267pt;}
._6{margin-left:-11.308956pt;}
._14{margin-left:-8.405333pt;}
._4{margin-left:-5.032000pt;}
._2{margin-left:-3.925333pt;}
._5{margin-left:-2.538667pt;}
._0{margin-left:-1.306667pt;}
._12{width:1.044800pt;}
._d{width:2.233067pt;}
._f{width:4.220000pt;}
._13{width:5.755200pt;}
._3{width:8.185600pt;}
._1c{width:14.394667pt;}
._16{width:15.501867pt;}
._c{width:17.252800pt;}
._b{width:19.422293pt;}
._8{width:20.672000pt;}
._19{width:24.141867pt;}
._1a{width:26.394667pt;}
._1b{width:30.038400pt;}
._10{width:36.024000pt;}
._11{width:37.189333pt;}
._17{width:38.489600pt;}
._7{width:99.258667pt;}
.fs3{font-size:29.333333pt;}
.fsd{font-size:29.538667pt;}
.fse{font-size:31.093333pt;}
.fsa{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fsc{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs9{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:15.666933pt;}
.y2{bottom:25.000267pt;}
.y1{bottom:39.154800pt;}
.y24{bottom:40.156533pt;}
.y181{bottom:83.149467pt;}
.y54{bottom:83.149600pt;}
.ybc{bottom:83.149733pt;}
.y2c6{bottom:83.626133pt;}
.ye6{bottom:83.720667pt;}
.y2ee{bottom:87.190533pt;}
.y77{bottom:87.589600pt;}
.y7{bottom:94.488133pt;}
.y180{bottom:97.149467pt;}
.y1d9{bottom:97.149600pt;}
.ybb{bottom:97.149733pt;}
.y2c5{bottom:98.959467pt;}
.ye5{bottom:100.387333pt;}
.y99{bottom:100.929067pt;}
.y53{bottom:101.589600pt;}
.yc4{bottom:101.589733pt;}
.y2ed{bottom:102.523867pt;}
.y76{bottom:105.369067pt;}
.y6{bottom:108.488133pt;}
.y17f{bottom:111.149467pt;}
.y219{bottom:111.149600pt;}
.yba{bottom:111.149733pt;}
.y2c4{bottom:114.026133pt;}
.y102{bottom:114.929067pt;}
.yc3{bottom:114.929333pt;}
.y1d8{bottom:115.589600pt;}
.ye4{bottom:117.094000pt;}
.y2ec{bottom:117.857200pt;}
.y98{bottom:119.369067pt;}
.y5{bottom:122.488133pt;}
.y218{bottom:125.149600pt;}
.y232{bottom:125.149733pt;}
.y122{bottom:128.929067pt;}
.y1a2{bottom:128.929333pt;}
.y17e{bottom:129.589467pt;}
.yb9{bottom:129.589733pt;}
.y97{bottom:132.708667pt;}
.y2eb{bottom:133.190533pt;}
.y101{bottom:133.369067pt;}
.yc2{bottom:133.369333pt;}
.ye3{bottom:133.800667pt;}
.y2c3{bottom:135.820400pt;}
.y4{bottom:136.488133pt;}
.y217{bottom:139.149600pt;}
.y231{bottom:139.149733pt;}
.y121{bottom:142.929067pt;}
.yb8{bottom:142.929333pt;}
.y13f{bottom:146.520400pt;}
.y100{bottom:146.708667pt;}
.y1c1{bottom:146.709067pt;}
.y27d{bottom:147.369067pt;}
.y1a1{bottom:147.369333pt;}
.y2ea{bottom:148.390400pt;}
.y2ef{bottom:150.488133pt;}
.y2c2{bottom:150.887067pt;}
.y96{bottom:151.148667pt;}
.y216{bottom:153.149600pt;}
.y230{bottom:153.149733pt;}
.y120{bottom:156.929067pt;}
.y20a{bottom:158.105733pt;}
.y52{bottom:158.156267pt;}
.yff{bottom:160.708667pt;}
.y1c0{bottom:160.709067pt;}
.y1d7{bottom:161.369067pt;}
.yb7{bottom:161.369333pt;}
.y13e{bottom:163.187067pt;}
.y2e9{bottom:163.590400pt;}
.y95{bottom:164.488133pt;}
.y2c1{bottom:165.953733pt;}
.ye2{bottom:166.381333pt;}
.y215{bottom:167.149600pt;}
.y22f{bottom:167.149733pt;}
.y75{bottom:168.265333pt;}
.y15d{bottom:168.928133pt;}
.y11f{bottom:170.929067pt;}
.yfe{bottom:174.708667pt;}
.y1bf{bottom:174.709067pt;}
.y209{bottom:174.905733pt;}
.y51{bottom:175.022933pt;}
.y264{bottom:175.369067pt;}
.y24c{bottom:176.387067pt;}
.y2e8{bottom:178.790533pt;}
.y13d{bottom:179.853733pt;}
.y214{bottom:181.149600pt;}
.y22e{bottom:181.149733pt;}
.y94{bottom:182.928133pt;}
.ye1{bottom:183.088000pt;}
.y11e{bottom:184.929067pt;}
.y74{bottom:185.105333pt;}
.yc1{bottom:185.523067pt;}
.y15c{bottom:186.707733pt;}
.y2c0{bottom:187.748000pt;}
.y1d6{bottom:188.708667pt;}
.y1be{bottom:188.709067pt;}
.y50{bottom:191.889600pt;}
.yfd{bottom:193.148667pt;}
.y24b{bottom:193.187067pt;}
.y2e7{bottom:193.990533pt;}
.y213{bottom:195.149600pt;}
.y22d{bottom:195.149733pt;}
.y93{bottom:196.267733pt;}
.y13c{bottom:196.520400pt;}
.ye0{bottom:199.794667pt;}
.y27c{bottom:200.641067pt;}
.y73{bottom:201.945333pt;}
.yc0{bottom:202.189733pt;}
.y1bd{bottom:202.709067pt;}
.y2bf{bottom:202.814667pt;}
.y17d{bottom:203.369067pt;}
.y1a0{bottom:204.971333pt;}
.y1d5{bottom:207.148667pt;}
.y4f{bottom:208.756267pt;}
.y208{bottom:209.091600pt;}
.y212{bottom:209.149600pt;}
.y22c{bottom:209.149733pt;}
.y2e6{bottom:209.190533pt;}
.y24a{bottom:209.987067pt;}
.y92{bottom:210.267733pt;}
.y13b{bottom:213.187067pt;}
.ydf{bottom:216.501333pt;}
.y17c{bottom:216.708533pt;}
.y1bc{bottom:216.709067pt;}
.y27b{bottom:217.307733pt;}
.y2be{bottom:217.881200pt;}
.y72{bottom:218.785333pt;}
.yb6{bottom:218.856400pt;}
.y1d4{bottom:220.488133pt;}
.y1f8{bottom:221.798000pt;}
.y19f{bottom:221.838000pt;}
.y211{bottom:223.149600pt;}
.y22b{bottom:223.149733pt;}
.y91{bottom:224.267733pt;}
.y2e5{bottom:224.390400pt;}
.y4e{bottom:225.622933pt;}
.y207{bottom:225.891467pt;}
.y249{bottom:226.787067pt;}
.y13a{bottom:229.853733pt;}
.y17b{bottom:230.708533pt;}
.y1a{bottom:232.866267pt;}
.y2bd{bottom:232.948000pt;}
.yde{bottom:233.208000pt;}
.y1bb{bottom:235.149067pt;}
.yb5{bottom:235.523067pt;}
.y71{bottom:235.625333pt;}
.y210{bottom:237.149600pt;}
.y22a{bottom:237.149733pt;}
.y263{bottom:237.651067pt;}
.y90{bottom:238.267733pt;}
.y1f7{bottom:238.638000pt;}
.y19e{bottom:238.704667pt;}
.y1d3{bottom:238.928133pt;}
.y4d{bottom:242.489600pt;}
.y206{bottom:242.691467pt;}
.yfc{bottom:242.830133pt;}
.y15b{bottom:242.920400pt;}
.y248{bottom:243.587067pt;}
.y17a{bottom:244.708533pt;}
.y11d{bottom:246.179200pt;}
.y139{bottom:246.520400pt;}
.y285{bottom:246.861600pt;}
.y2e4{bottom:247.149600pt;}
.y2bc{bottom:248.014667pt;}
.y1ba{bottom:248.488667pt;}
.y27a{bottom:249.092533pt;}
.ydd{bottom:249.914667pt;}
.y20f{bottom:251.149600pt;}
.y229{bottom:251.149733pt;}
.yb4{bottom:252.189733pt;}
.y70{bottom:252.465333pt;}
.y262{bottom:254.451067pt;}
.y1f6{bottom:255.478000pt;}
.y19d{bottom:255.571333pt;}
.y8f{bottom:256.707733pt;}
.y32{bottom:256.981733pt;}
.y29b{bottom:257.391867pt;}
.y4c{bottom:259.356267pt;}
.y205{bottom:259.491600pt;}
.yfb{bottom:259.496800pt;}
.y15a{bottom:259.720400pt;}
.y247{bottom:260.387067pt;}
.y2e3{bottom:262.349467pt;}
.y1b9{bottom:262.488667pt;}
.y11c{bottom:262.845867pt;}
.y2bb{bottom:263.081333pt;}
.y179{bottom:263.148533pt;}
.y138{bottom:263.187067pt;}
.y284{bottom:263.528267pt;}
.y20e{bottom:265.149600pt;}
.y228{bottom:265.149733pt;}
.y279{bottom:265.759200pt;}
.ydc{bottom:266.621333pt;}
.yb3{bottom:268.856400pt;}
.y6f{bottom:269.305333pt;}
.y261{bottom:271.251067pt;}
.y1f5{bottom:272.318000pt;}
.y19c{bottom:272.438000pt;}
.y29a{bottom:274.058533pt;}
.y19{bottom:275.322933pt;}
.yfa{bottom:276.163467pt;}
.y4b{bottom:276.222933pt;}
.y204{bottom:276.291600pt;}
.y178{bottom:276.488133pt;}
.y1b8{bottom:276.488667pt;}
.y159{bottom:276.520400pt;}
.y246{bottom:277.187067pt;}
.y2e2{bottom:277.549467pt;}
.y2ba{bottom:278.148000pt;}
.y20d{bottom:279.149600pt;}
.y227{bottom:279.149733pt;}
.y11b{bottom:279.512533pt;}
.y283{bottom:280.194933pt;}
.y278{bottom:282.425867pt;}
.ydb{bottom:283.328000pt;}
.yb2{bottom:285.523067pt;}
.y260{bottom:288.051067pt;}
.y1f4{bottom:289.158000pt;}
.y19b{bottom:289.304667pt;}
.y177{bottom:290.488133pt;}
.y1b7{bottom:290.488667pt;}
.y299{bottom:290.725200pt;}
.y2e1{bottom:292.749467pt;}
.yf9{bottom:292.830133pt;}
.y4a{bottom:293.089600pt;}
.y20c{bottom:293.149600pt;}
.y226{bottom:293.149733pt;}
.y2b9{bottom:293.214533pt;}
.y158{bottom:293.320400pt;}
.y245{bottom:293.987067pt;}
.y11a{bottom:296.179200pt;}
.y1d2{bottom:296.688267pt;}
.y137{bottom:296.861600pt;}
.y277{bottom:299.092533pt;}
.y31{bottom:299.438400pt;}
.yda{bottom:300.034667pt;}
.yb1{bottom:302.189733pt;}
.y176{bottom:304.488133pt;}
.y1b6{bottom:304.488667pt;}
.y6e{bottom:304.664933pt;}
.y25f{bottom:304.851067pt;}
.y18{bottom:305.107733pt;}
.y8e{bottom:305.843200pt;}
.y1f3{bottom:305.998000pt;}
.y19a{bottom:306.171333pt;}
.y225{bottom:307.149733pt;}
.y298{bottom:307.391867pt;}
.y2e0{bottom:307.949600pt;}
.y49{bottom:309.956267pt;}
.y157{bottom:310.120400pt;}
.y203{bottom:310.477333pt;}
.y244{bottom:310.787067pt;}
.y20b{bottom:311.589600pt;}
.y119{bottom:312.845867pt;}
.y136{bottom:313.528267pt;}
.y282{bottom:313.869467pt;}
.y2b8{bottom:315.008800pt;}
.y276{bottom:315.759200pt;}
.yd9{bottom:316.741333pt;}
.yf8{bottom:317.055867pt;}
.y175{bottom:318.488133pt;}
.y1b5{bottom:318.488667pt;}
.yb0{bottom:318.856400pt;}
.y17{bottom:319.774400pt;}
.y224{bottom:321.149733pt;}
.y6d{bottom:321.504933pt;}
.y25e{bottom:321.651067pt;}
.y8d{bottom:322.509867pt;}
.y199{bottom:323.038000pt;}
.y2df{bottom:323.149600pt;}
.y297{bottom:324.058533pt;}
.y48{bottom:326.822933pt;}
.y156{bottom:326.920400pt;}
.y202{bottom:327.277333pt;}
.y30{bottom:329.223200pt;}
.y118{bottom:329.512533pt;}
.y2b7{bottom:330.075467pt;}
.y135{bottom:330.194933pt;}
.y281{bottom:330.536133pt;}
.y275{bottom:332.425867pt;}
.y1b4{bottom:332.488667pt;}
.yd8{bottom:333.448000pt;}
.yf7{bottom:333.722533pt;}
.y16{bottom:334.441067pt;}
.y223{bottom:335.149733pt;}
.yaf{bottom:335.523067pt;}
.y174{bottom:336.928133pt;}
.y6c{bottom:338.344933pt;}
.y2de{bottom:338.349467pt;}
.y25d{bottom:338.451067pt;}
.y8c{bottom:339.176533pt;}
.y198{bottom:339.904667pt;}
.y296{bottom:340.725200pt;}
.y1f2{bottom:341.357600pt;}
.y47{bottom:343.689600pt;}
.y2f{bottom:343.889867pt;}
.y201{bottom:344.077333pt;}
.y243{bottom:344.594933pt;}
.y2b6{bottom:345.142133pt;}
.y117{bottom:346.179200pt;}
.y1b3{bottom:346.488667pt;}
.y134{bottom:346.861600pt;}
.y280{bottom:347.202800pt;}
.y274{bottom:349.092533pt;}
.y15{bottom:349.107733pt;}
.y222{bottom:349.149733pt;}
.yf6{bottom:350.389200pt;}
.yae{bottom:352.189733pt;}
.y2dd{bottom:353.549467pt;}
.y6b{bottom:355.184933pt;}
.y25c{bottom:355.251067pt;}
.y8b{bottom:355.843200pt;}
.y295{bottom:357.391867pt;}
.y1f1{bottom:358.197733pt;}
.y2e{bottom:358.556533pt;}
.y2b5{bottom:360.208800pt;}
.y1b2{bottom:360.488667pt;}
.y46{bottom:360.556267pt;}
.y155{bottom:360.728267pt;}
.y200{bottom:360.877333pt;}
.y242{bottom:361.394933pt;}
.y221{bottom:363.149733pt;}
.y133{bottom:363.528267pt;}
.y14{bottom:363.774400pt;}
.y27f{bottom:363.869467pt;}
.y273{bottom:365.759200pt;}
.yd7{bottom:366.028667pt;}
.yf5{bottom:367.055867pt;}
.yad{bottom:368.856400pt;}
.y6a{bottom:372.024933pt;}
.y25b{bottom:372.051067pt;}
.y8a{bottom:372.509867pt;}
.y2d{bottom:373.223200pt;}
.y294{bottom:374.058533pt;}
.y1f0{bottom:375.037733pt;}
.y2b4{bottom:375.275467pt;}
.y197{bottom:375.291067pt;}
.y2dc{bottom:376.308533pt;}
.y45{bottom:377.422933pt;}
.y154{bottom:377.528267pt;}
.y1ff{bottom:377.677333pt;}
.y116{bottom:377.964000pt;}
.y241{bottom:378.194933pt;}
.y13{bottom:378.441067pt;}
.y1b1{bottom:378.928667pt;}
.y132{bottom:380.194933pt;}
.y1d1{bottom:380.536133pt;}
.y220{bottom:381.589733pt;}
.y272{bottom:382.425867pt;}
.yd6{bottom:382.735333pt;}
.yac{bottom:385.523067pt;}
.y2c{bottom:387.889867pt;}
.y25a{bottom:388.851067pt;}
.y69{bottom:388.864933pt;}
.y89{bottom:389.176533pt;}
.y293{bottom:390.725200pt;}
.y2db{bottom:391.508533pt;}
.y1ef{bottom:391.877733pt;}
.y196{bottom:392.157733pt;}
.y1b0{bottom:392.268400pt;}
.y173{bottom:392.646267pt;}
.y12{bottom:393.107733pt;}
.y44{bottom:394.289600pt;}
.y153{bottom:394.328267pt;}
.y1fe{bottom:394.477333pt;}
.y115{bottom:394.630667pt;}
.y240{bottom:394.994933pt;}
.y131{bottom:396.861600pt;}
.y2b3{bottom:397.069733pt;}
.y1d0{bottom:397.202800pt;}
.y271{bottom:399.092533pt;}
.yd5{bottom:399.442000pt;}
.yab{bottom:402.189733pt;}
.y2b{bottom:402.556533pt;}
.yf4{bottom:404.509867pt;}
.y259{bottom:405.651067pt;}
.y68{bottom:405.704933pt;}
.y88{bottom:405.843200pt;}
.y1af{bottom:406.268400pt;}
.y2da{bottom:406.708533pt;}
.y292{bottom:407.391867pt;}
.y11{bottom:407.774400pt;}
.y1ee{bottom:408.717733pt;}
.y195{bottom:409.024267pt;}
.y172{bottom:409.312933pt;}
.y152{bottom:411.128267pt;}
.y1fd{bottom:411.277333pt;}
.y114{bottom:411.297333pt;}
.y23f{bottom:411.794933pt;}
.y2b2{bottom:412.136400pt;}
.y130{bottom:413.528267pt;}
.y1cf{bottom:413.869467pt;}
.y270{bottom:415.759200pt;}
.y2a{bottom:417.223200pt;}
.yf3{bottom:421.176533pt;}
.y2d9{bottom:421.908533pt;}
.y10{bottom:422.441067pt;}
.y258{bottom:422.451067pt;}
.y87{bottom:422.509867pt;}
.y67{bottom:422.544933pt;}
.y291{bottom:424.058533pt;}
.y1ed{bottom:425.557600pt;}
.y194{bottom:425.890933pt;}
.y2b1{bottom:427.203067pt;}
.y151{bottom:427.928267pt;}
.y113{bottom:427.964000pt;}
.y1fc{bottom:428.077333pt;}
.y12f{bottom:430.194933pt;}
.y1ce{bottom:430.536133pt;}
.y29{bottom:431.889867pt;}
.yd4{bottom:432.022667pt;}
.y21f{bottom:432.425867pt;}
.yaa{bottom:433.974533pt;}
.yf{bottom:437.107733pt;}
.y2d8{bottom:437.108667pt;}
.y43{bottom:437.234933pt;}
.y257{bottom:439.251067pt;}
.y290{bottom:440.725200pt;}
.y2b0{bottom:442.269733pt;}
.y1ec{bottom:442.397600pt;}
.y193{bottom:442.757733pt;}
.y112{bottom:444.630667pt;}
.y150{bottom:444.728267pt;}
.y171{bottom:444.877333pt;}
.y23e{bottom:445.602800pt;}
.y28{bottom:446.556533pt;}
.y12e{bottom:446.861600pt;}
.y1cd{bottom:447.202800pt;}
.yd3{bottom:448.729333pt;}
.y26f{bottom:449.092533pt;}
.y21e{bottom:449.092667pt;}
.ya9{bottom:450.641067pt;}
.ye{bottom:451.774400pt;}
.y2d7{bottom:452.308533pt;}
.yf2{bottom:452.961333pt;}
.y86{bottom:454.294667pt;}
.y42{bottom:455.234933pt;}
.y256{bottom:456.051067pt;}
.y2af{bottom:457.336400pt;}
.y28f{bottom:457.391867pt;}
.y66{bottom:457.904667pt;}
.y1eb{bottom:459.237733pt;}
.y192{bottom:459.624400pt;}
.y27{bottom:461.223200pt;}
.y111{bottom:461.297333pt;}
.y14f{bottom:461.528267pt;}
.y170{bottom:461.677333pt;}
.y23d{bottom:462.402800pt;}
.y12d{bottom:463.528267pt;}
.y1cc{bottom:463.869467pt;}
.yd2{bottom:465.436000pt;}
.y26e{bottom:465.759200pt;}
.y21d{bottom:465.759333pt;}
.y1ae{bottom:465.848533pt;}
.yd{bottom:466.441067pt;}
.ya8{bottom:467.307733pt;}
.yf1{bottom:469.628000pt;}
.y85{bottom:470.961333pt;}
.y2ae{bottom:472.403067pt;}
.y28e{bottom:474.058533pt;}
.y65{bottom:474.744667pt;}
.y2d6{bottom:475.067600pt;}
.y26{bottom:475.889867pt;}
.y1ea{bottom:476.077733pt;}
.y191{bottom:476.491067pt;}
.y110{bottom:477.964000pt;}
.y14e{bottom:478.328267pt;}
.y16f{bottom:478.477333pt;}
.y23c{bottom:479.202800pt;}
.y12c{bottom:480.194933pt;}
.y1cb{bottom:480.536133pt;}
.yd1{bottom:482.142667pt;}
.y26d{bottom:482.425867pt;}
.y21c{bottom:482.426000pt;}
.y1ad{bottom:482.515200pt;}
.ya7{bottom:483.974400pt;}
.yf0{bottom:486.294667pt;}
.y2ad{bottom:487.469733pt;}
.y84{bottom:487.628000pt;}
.y2d5{bottom:490.267600pt;}
.y255{bottom:490.614933pt;}
.y28d{bottom:490.725200pt;}
.y64{bottom:491.584667pt;}
.y1e9{bottom:492.917733pt;}
.y190{bottom:493.357600pt;}
.yc{bottom:493.430533pt;}
.y10f{bottom:494.630667pt;}
.y14d{bottom:495.128267pt;}
.y16e{bottom:495.277200pt;}
.y1fb{bottom:495.277333pt;}
.y23b{bottom:496.002800pt;}
.y1ca{bottom:497.202800pt;}
.yd0{bottom:498.849333pt;}
.y26c{bottom:499.092533pt;}
.y21b{bottom:499.092667pt;}
.y1ac{bottom:499.181867pt;}
.ya6{bottom:500.641067pt;}
.y2ac{bottom:502.536400pt;}
.y25{bottom:502.879333pt;}
.yef{bottom:502.961333pt;}
.y83{bottom:504.294667pt;}
.y2d4{bottom:505.467600pt;}
.y254{bottom:507.414933pt;}
.y63{bottom:508.424667pt;}
.y1e8{bottom:509.757600pt;}
.y18f{bottom:510.224400pt;}
.y10e{bottom:511.297333pt;}
.y14c{bottom:511.928267pt;}
.y16d{bottom:512.077333pt;}
.y23a{bottom:512.802800pt;}
.y12b{bottom:513.869467pt;}
.ycf{bottom:515.556000pt;}
.y26b{bottom:515.759200pt;}
.y21a{bottom:515.759333pt;}
.y1ab{bottom:515.848533pt;}
.ya5{bottom:517.307733pt;}
.y41{bottom:517.839867pt;}
.yee{bottom:519.628000pt;}
.y2d3{bottom:520.667600pt;}
.y82{bottom:520.961333pt;}
.y253{bottom:524.214933pt;}
.y2ab{bottom:524.330667pt;}
.y62{bottom:525.264667pt;}
.y1e7{bottom:526.597600pt;}
.y18e{bottom:527.090933pt;}
.y28c{bottom:528.179200pt;}
.y14b{bottom:528.728267pt;}
.y16c{bottom:528.877333pt;}
.y239{bottom:529.602800pt;}
.y12a{bottom:530.536133pt;}
.yce{bottom:532.262667pt;}
.y26a{bottom:532.425867pt;}
.y1aa{bottom:532.515200pt;}
.ybf{bottom:533.974400pt;}
.y2d2{bottom:535.867600pt;}
.yed{bottom:536.294667pt;}
.y81{bottom:537.628000pt;}
.y2aa{bottom:539.397333pt;}
.y252{bottom:541.014933pt;}
.y10d{bottom:543.082133pt;}
.y1e6{bottom:543.437600pt;}
.y18d{bottom:543.957733pt;}
.y14a{bottom:545.528267pt;}
.y16b{bottom:545.677333pt;}
.y238{bottom:546.402800pt;}
.y40{bottom:546.958000pt;}
.y129{bottom:547.202800pt;}
.y1c9{bottom:547.544000pt;}
.ycd{bottom:548.969333pt;}
.y269{bottom:549.092533pt;}
.ya4{bottom:549.092667pt;}
.y1a9{bottom:549.181867pt;}
.ybe{bottom:550.641067pt;}
.y2d1{bottom:551.067600pt;}
.yec{bottom:552.961333pt;}
.y80{bottom:554.294667pt;}
.y2a9{bottom:554.464000pt;}
.y251{bottom:557.814933pt;}
.y10c{bottom:559.748800pt;}
.y1e5{bottom:560.277733pt;}
.y61{bottom:560.624400pt;}
.y18c{bottom:560.824400pt;}
.y149{bottom:562.328267pt;}
.y16a{bottom:562.477333pt;}
.y237{bottom:563.202800pt;}
.y128{bottom:563.869467pt;}
.y1c8{bottom:564.210667pt;}
.y1e{bottom:565.612267pt;}
.ycc{bottom:565.676000pt;}
.y268{bottom:565.759200pt;}
.ya3{bottom:565.759333pt;}
.y1a8{bottom:565.848533pt;}
.y2d0{bottom:566.267600pt;}
.y3f{bottom:568.517067pt;}
.y2a8{bottom:569.530667pt;}
.yeb{bottom:569.628000pt;}
.y7f{bottom:570.961333pt;}
.y10b{bottom:576.415467pt;}
.y1e4{bottom:577.117733pt;}
.y60{bottom:577.464400pt;}
.y18b{bottom:577.690933pt;}
.y148{bottom:579.128267pt;}
.y169{bottom:579.277200pt;}
.y1fa{bottom:579.277333pt;}
.y236{bottom:580.002800pt;}
.y127{bottom:580.536133pt;}
.y1c7{bottom:580.877333pt;}
.y267{bottom:582.425867pt;}
.ya2{bottom:582.426000pt;}
.y1a7{bottom:582.515200pt;}
.y3e{bottom:582.517067pt;}
.y1d{bottom:582.725200pt;}
.y28b{bottom:583.974400pt;}
.y2a7{bottom:584.597333pt;}
.y7e{bottom:587.628000pt;}
.y2cf{bottom:589.026667pt;}
.y10a{bottom:593.082133pt;}
.y1e3{bottom:593.957733pt;}
.y5f{bottom:594.304400pt;}
.y18a{bottom:594.491067pt;}
.y147{bottom:595.928267pt;}
.y168{bottom:596.077333pt;}
.y235{bottom:596.802800pt;}
.y126{bottom:597.202800pt;}
.y1c{bottom:597.391867pt;}
.y1c6{bottom:597.544000pt;}
.ycb{bottom:598.256667pt;}
.y266{bottom:599.092533pt;}
.ya1{bottom:599.092667pt;}
.y1a6{bottom:599.181867pt;}
.y2a6{bottom:599.664000pt;}
.y28a{bottom:600.641067pt;}
.y3d{bottom:604.076133pt;}
.y2ce{bottom:604.226667pt;}
.y7d{bottom:604.294667pt;}
.yea{bottom:607.082133pt;}
.y33{bottom:607.334000pt;}
.y1e2{bottom:610.797733pt;}
.y5e{bottom:611.144400pt;}
.y146{bottom:612.728267pt;}
.y167{bottom:612.877333pt;}
.y234{bottom:613.602800pt;}
.y125{bottom:613.869467pt;}
.y1c5{bottom:614.210667pt;}
.yca{bottom:614.963333pt;}
.y265{bottom:615.759200pt;}
.ya0{bottom:615.759333pt;}
.y1b{bottom:615.838000pt;}
.y1a5{bottom:615.848533pt;}
.y250{bottom:617.181867pt;}
.y289{bottom:617.307733pt;}
.y3c{bottom:618.076133pt;}
.y2cd{bottom:619.426667pt;}
.y7c{bottom:620.961333pt;}
.y2a5{bottom:621.458133pt;}
.y109{bottom:624.866800pt;}
.ye9{bottom:625.082133pt;}
.y5d{bottom:627.984400pt;}
.y166{bottom:629.677333pt;}
.y189{bottom:629.810667pt;}
.y233{bottom:630.402800pt;}
.y124{bottom:630.536133pt;}
.y1c4{bottom:630.877333pt;}
.yc9{bottom:631.670000pt;}
.y9f{bottom:632.425867pt;}
.y288{bottom:633.974533pt;}
.y2cc{bottom:634.626667pt;}
.y2a4{bottom:636.524800pt;}
.y7b{bottom:637.628000pt;}
.y3b{bottom:639.635200pt;}
.y108{bottom:641.533467pt;}
.y5c{bottom:644.824400pt;}
.y1e1{bottom:646.157333pt;}
.y165{bottom:646.477333pt;}
.y145{bottom:646.536133pt;}
.y188{bottom:646.610667pt;}
.y123{bottom:647.202800pt;}
.y1c3{bottom:647.544000pt;}
.yc8{bottom:648.336667pt;}
.y9e{bottom:649.092533pt;}
.y2cb{bottom:649.826667pt;}
.y2a3{bottom:651.591467pt;}
.y1a4{bottom:653.302533pt;}
.y7a{bottom:654.294667pt;}
.y107{bottom:658.200133pt;}
.y3a{bottom:661.194267pt;}
.y5b{bottom:661.664400pt;}
.y1e0{bottom:662.997333pt;}
.y164{bottom:663.277200pt;}
.y1f9{bottom:663.277333pt;}
.y144{bottom:663.336133pt;}
.y187{bottom:663.410667pt;}
.y27e{bottom:663.869467pt;}
.y1c2{bottom:664.210667pt;}
.yc7{bottom:665.003333pt;}
.y2ca{bottom:665.293333pt;}
.y9d{bottom:665.759200pt;}
.y2a2{bottom:666.658267pt;}
.y79{bottom:670.961333pt;}
.y1a3{bottom:671.302533pt;}
.y106{bottom:674.866800pt;}
.y5a{bottom:678.504400pt;}
.y1df{bottom:679.837333pt;}
.y163{bottom:680.077333pt;}
.y143{bottom:680.136133pt;}
.y186{bottom:680.210667pt;}
.y24f{bottom:680.536133pt;}
.y2c9{bottom:680.626667pt;}
.ye8{bottom:680.877333pt;}
.yc6{bottom:681.670000pt;}
.y2a1{bottom:681.858133pt;}
.y9c{bottom:682.425867pt;}
.y39{bottom:682.753333pt;}
.y105{bottom:691.533467pt;}
.y59{bottom:695.344267pt;}
.y2c8{bottom:695.960000pt;}
.y1de{bottom:696.677333pt;}
.y38{bottom:696.753333pt;}
.y162{bottom:696.877333pt;}
.y142{bottom:696.936133pt;}
.y185{bottom:697.010667pt;}
.y24e{bottom:697.202800pt;}
.ye7{bottom:697.544000pt;}
.yc5{bottom:698.336667pt;}
.ybd{bottom:699.092667pt;}
.y2a0{bottom:703.785733pt;}
.y104{bottom:708.200133pt;}
.yb{bottom:708.294533pt;}
.y78{bottom:708.415467pt;}
.y1dd{bottom:713.517333pt;}
.y161{bottom:713.677333pt;}
.y141{bottom:713.736133pt;}
.y184{bottom:713.810667pt;}
.y24d{bottom:713.869467pt;}
.y9b{bottom:714.210667pt;}
.y287{bottom:715.759333pt;}
.y2c7{bottom:718.852400pt;}
.y29f{bottom:718.985733pt;}
.y103{bottom:724.866800pt;}
.y1dc{bottom:730.357333pt;}
.y160{bottom:730.477333pt;}
.y140{bottom:730.536133pt;}
.y183{bottom:730.610667pt;}
.y58{bottom:730.704000pt;}
.y9a{bottom:730.877333pt;}
.ya{bottom:730.961200pt;}
.y286{bottom:732.426000pt;}
.y29e{bottom:734.185733pt;}
.y37{bottom:740.989600pt;}
.y1db{bottom:747.197333pt;}
.y15f{bottom:747.277333pt;}
.y182{bottom:747.410667pt;}
.y57{bottom:747.544000pt;}
.y29d{bottom:749.519067pt;}
.y9{bottom:753.627867pt;}
.y1da{bottom:764.037333pt;}
.y15e{bottom:764.077333pt;}
.y56{bottom:764.210667pt;}
.y8{bottom:776.294533pt;}
.y29c{bottom:779.214533pt;}
.y55{bottom:780.877333pt;}
.y35{bottom:831.496000pt;}
.y23{bottom:832.492800pt;}
.y36{bottom:842.362667pt;}
.y34{bottom:844.162667pt;}
.y22{bottom:850.578400pt;}
.y20{bottom:851.645200pt;}
.y1f{bottom:855.778533pt;}
.y21{bottom:863.245067pt;}
.hf{height:25.152000pt;}
.h3{height:26.517333pt;}
.h15{height:28.232747pt;}
.h11{height:29.200000pt;}
.he{height:29.792000pt;}
.hb{height:31.189333pt;}
.h10{height:31.920000pt;}
.h19{height:34.992000pt;}
.h9{height:35.632000pt;}
.h12{height:36.280000pt;}
.h18{height:37.728000pt;}
.h5{height:38.570667pt;}
.hc{height:38.741333pt;}
.h4{height:39.253333pt;}
.h7{height:40.432000pt;}
.h8{height:41.162667pt;}
.h2{height:42.560000pt;}
.h17{height:45.290667pt;}
.h14{height:46.005333pt;}
.ha{height:46.613333pt;}
.h16{height:51.466667pt;}
.h13{height:53.200000pt;}
.h6{height:59.584000pt;}
.hd{height:76.608000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x13{left:56.692933pt;}
.x21{left:60.472533pt;}
.x14{left:68.031467pt;}
.x22{left:71.811067pt;}
.x8{left:75.590533pt;}
.x2{left:77.480267pt;}
.x20{left:78.492400pt;}
.x24{left:81.808933pt;}
.x25{left:82.942400pt;}
.x3{left:86.929200pt;}
.x18{left:91.370800pt;}
.x28{left:92.598400pt;}
.x17{left:93.872000pt;}
.x26{left:100.856533pt;}
.x1f{left:103.181067pt;}
.x7{left:104.995200pt;}
.x15{left:110.579867pt;}
.x9{left:113.385867pt;}
.x1e{left:121.322800pt;}
.x16{left:131.568667pt;}
.x1d{left:134.173200pt;}
.x4{left:146.885467pt;}
.x6{left:153.350533pt;}
.x5{left:156.486267pt;}
.x19{left:186.830267pt;}
.xd{left:220.156933pt;}
.x27{left:304.561733pt;}
.x23{left:305.521600pt;}
.x1{left:308.281733pt;}
.xc{left:339.665600pt;}
.x2a{left:349.606267pt;}
.x29{left:366.614133pt;}
.xb{left:371.035867pt;}
.x1b{left:390.020400pt;}
.x1c{left:409.601867pt;}
.x12{left:410.755067pt;}
.x1a{left:415.513467pt;}
.xa{left:434.411067pt;}
.xe{left:503.296267pt;}
.xf{left:507.962800pt;}
.x10{left:515.962533pt;}
.x11{left:517.985733pt;}
}




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