
    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_4377bb66aa1b400c24040795.woff')format("woff");}.ff1{font-family:ff1;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_06068a32998c35181b0f3377.woff')format("woff");}.ff2{font-family:ff2;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e13804fc9f188ed4902bad0c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_97bbd4494bb0abd11f28f519.woff')format("woff");}.ff4{font-family:ff4;line-height:1.239000;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_585718f37d6c42887f25a112.woff')format("woff");}.ff5{font-family:ff5;line-height:1.142000;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_3b2cc0e456fd705ce241865b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e8cf8e4209b53b5e0d87dea8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b7b1ac5f8f29e15409871378.woff')format("woff");}.ff8{font-family:ff8;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls82{letter-spacing:-0.765000px;}
.ls1f{letter-spacing:-0.420000px;}
.ls27{letter-spacing:-0.360000px;}
.ls5e{letter-spacing:-0.357000px;}
.ls75{letter-spacing:-0.306000px;}
.ls1e{letter-spacing:-0.300000px;}
.ls60{letter-spacing:-0.255000px;}
.lsf{letter-spacing:-0.240000px;}
.ls5f{letter-spacing:-0.204000px;}
.ls10{letter-spacing:-0.180000px;}
.ls61{letter-spacing:-0.153000px;}
.ls1c{letter-spacing:-0.120000px;}
.ls5d{letter-spacing:-0.102000px;}
.ls1d{letter-spacing:-0.060000px;}
.ls5c{letter-spacing:-0.051000px;}
.lse{letter-spacing:0.000000px;}
.ls79{letter-spacing:0.025500px;}
.ls41{letter-spacing:0.051000px;}
.ls4{letter-spacing:0.060000px;}
.ls6a{letter-spacing:0.076500px;}
.ls2e{letter-spacing:0.090000px;}
.ls42{letter-spacing:0.102000px;}
.ls3{letter-spacing:0.120000px;}
.ls80{letter-spacing:0.127500px;}
.ls30{letter-spacing:0.150000px;}
.ls52{letter-spacing:0.153000px;}
.ls25{letter-spacing:0.164404px;}
.ls5b{letter-spacing:0.178500px;}
.lsd{letter-spacing:0.178791px;}
.ls5{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.204000px;}
.ls23{letter-spacing:0.210017px;}
.ls55{letter-spacing:0.229500px;}
.ls1{letter-spacing:0.240000px;}
.ls24{letter-spacing:0.252002px;}
.lsc{letter-spacing:0.255000px;}
.ls40{letter-spacing:0.264000px;}
.ls2f{letter-spacing:0.270000px;}
.ls43{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls5a{letter-spacing:0.306000px;}
.ls38{letter-spacing:0.330000px;}
.ls8a{letter-spacing:0.331500px;}
.ls3e{letter-spacing:0.357000px;}
.ls9{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.390000px;}
.ls49{letter-spacing:0.408000px;}
.ls17{letter-spacing:0.420000px;}
.ls3c{letter-spacing:0.433500px;}
.ls28{letter-spacing:0.450000px;}
.ls3f{letter-spacing:0.459000px;}
.ls15{letter-spacing:0.480000px;}
.ls48{letter-spacing:0.484500px;}
.ls58{letter-spacing:0.510000px;}
.ls57{letter-spacing:0.535500px;}
.ls12{letter-spacing:0.540000px;}
.ls53{letter-spacing:0.561000px;}
.ls63{letter-spacing:0.586500px;}
.ls18{letter-spacing:0.600000px;}
.ls46{letter-spacing:0.612000px;}
.ls29{letter-spacing:0.630000px;}
.ls66{letter-spacing:0.637500px;}
.ls26{letter-spacing:0.660000px;}
.ls56{letter-spacing:0.663000px;}
.ls76{letter-spacing:0.688500px;}
.ls35{letter-spacing:0.690000px;}
.ls4e{letter-spacing:0.714000px;}
.ls8{letter-spacing:0.720000px;}
.ls6b{letter-spacing:0.764990px;}
.ls44{letter-spacing:0.765000px;}
.ls11{letter-spacing:0.780000px;}
.ls2d{letter-spacing:0.810000px;}
.ls4b{letter-spacing:0.816000px;}
.ls6{letter-spacing:0.840000px;}
.ls92{letter-spacing:0.841488px;}
.ls4c{letter-spacing:0.841500px;}
.ls65{letter-spacing:0.867000px;}
.ls14{letter-spacing:0.900000px;}
.ls4a{letter-spacing:0.918000px;}
.ls67{letter-spacing:0.943500px;}
.ls16{letter-spacing:0.960000px;}
.ls3a{letter-spacing:0.969000px;}
.ls1b{letter-spacing:0.990000px;}
.ls7{letter-spacing:1.020000px;}
.ls98{letter-spacing:1.045500px;}
.ls73{letter-spacing:1.050589px;}
.ls7b{letter-spacing:1.071000px;}
.lsa{letter-spacing:1.080000px;}
.ls37{letter-spacing:1.110000px;}
.ls50{letter-spacing:1.122000px;}
.ls85{letter-spacing:1.132179px;}
.ls13{letter-spacing:1.140000px;}
.lsb{letter-spacing:1.170000px;}
.ls71{letter-spacing:1.173000px;}
.ls19{letter-spacing:1.200000px;}
.ls3b{letter-spacing:1.224000px;}
.ls34{letter-spacing:1.230000px;}
.ls8b{letter-spacing:1.249500px;}
.ls22{letter-spacing:1.260000px;}
.ls90{letter-spacing:1.275000px;}
.ls8e{letter-spacing:1.300500px;}
.ls21{letter-spacing:1.320000px;}
.ls45{letter-spacing:1.326000px;}
.ls2c{letter-spacing:1.350000px;}
.ls6d{letter-spacing:1.377000px;}
.ls36{letter-spacing:1.380000px;}
.ls4d{letter-spacing:1.428000px;}
.ls20{letter-spacing:1.440000px;}
.ls4f{letter-spacing:1.479000px;}
.ls33{letter-spacing:1.500000px;}
.ls70{letter-spacing:1.530000px;}
.ls89{letter-spacing:1.581000px;}
.ls7e{letter-spacing:1.601357px;}
.ls32{letter-spacing:1.620000px;}
.ls96{letter-spacing:1.621800px;}
.ls8d{letter-spacing:1.632000px;}
.ls2b{letter-spacing:1.680000px;}
.ls51{letter-spacing:1.723800px;}
.ls77{letter-spacing:1.734000px;}
.ls69{letter-spacing:1.785000px;}
.ls6e{letter-spacing:1.836000px;}
.ls7c{letter-spacing:1.887000px;}
.ls74{letter-spacing:1.937976px;}
.ls47{letter-spacing:1.968590px;}
.ls7d{letter-spacing:1.988994px;}
.ls99{letter-spacing:1.994100px;}
.ls72{letter-spacing:2.075700px;}
.ls62{letter-spacing:2.106300px;}
.ls2a{letter-spacing:2.160000px;}
.ls87{letter-spacing:2.182800px;}
.ls8f{letter-spacing:2.244000px;}
.ls54{letter-spacing:2.295000px;}
.ls31{letter-spacing:2.340000px;}
.ls7a{letter-spacing:2.396980px;}
.ls93{letter-spacing:2.488800px;}
.ls7f{letter-spacing:2.539800px;}
.ls97{letter-spacing:2.550000px;}
.ls59{letter-spacing:2.621394px;}
.ls95{letter-spacing:2.626500px;}
.ls88{letter-spacing:2.641768px;}
.ls94{letter-spacing:2.672391px;}
.ls64{letter-spacing:3.192600px;}
.ls78{letter-spacing:3.207900px;}
.ls39{letter-spacing:3.240000px;}
.ls6c{letter-spacing:3.432300px;}
.ls86{letter-spacing:3.794400px;}
.ls0{letter-spacing:3.990000px;}
.ls83{letter-spacing:4.176868px;}
.ls68{letter-spacing:4.294200px;}
.ls81{letter-spacing:4.615471px;}
.ls84{letter-spacing:5.150978px;}
.ls6f{letter-spacing:5.222400px;}
.ls91{letter-spacing:5.467200px;}
.ls9a{letter-spacing:5.508000px;}
.ls8c{letter-spacing:5.610000px;}
.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;}
}
.ws62{word-spacing:-16.350000px;}
.ws8e{word-spacing:-16.200000px;}
.ws39{word-spacing:-16.140000px;}
.ws8d{word-spacing:-16.020000px;}
.ws3a{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.789000px;}
.ws1e{word-spacing:-15.300000px;}
.ws6e{word-spacing:-15.120000px;}
.ws82{word-spacing:-15.060000px;}
.ws25{word-spacing:-15.000000px;}
.ws83{word-spacing:-14.880000px;}
.ws95{word-spacing:-14.832000px;}
.ws3b{word-spacing:-14.700000px;}
.ws58{word-spacing:-14.640000px;}
.ws7{word-spacing:-14.544000px;}
.wsc2{word-spacing:-14.535000px;}
.wsf4{word-spacing:-14.025000px;}
.ws103{word-spacing:-13.795500px;}
.wsd9{word-spacing:-13.719000px;}
.wsf3{word-spacing:-13.668000px;}
.wsc1{word-spacing:-13.617000px;}
.ws101{word-spacing:-13.464000px;}
.ws104{word-spacing:-13.413000px;}
.ws96{word-spacing:-13.362000px;}
.wsbd{word-spacing:-13.056000px;}
.ws99{word-spacing:-13.005000px;}
.ws98{word-spacing:-12.954000px;}
.wsc3{word-spacing:-12.903000px;}
.ws94{word-spacing:-12.852000px;}
.ws26{word-spacing:-12.750000px;}
.ws97{word-spacing:-12.699000px;}
.wsc0{word-spacing:-12.597000px;}
.wse1{word-spacing:-12.546000px;}
.ws102{word-spacing:-12.495000px;}
.ws38{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.wse0{word-spacing:-11.985000px;}
.ws6{word-spacing:-11.520000px;}
.ws8f{word-spacing:-10.761000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.ws8{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.wsa{word-spacing:-2.400000px;}
.wsd8{word-spacing:-1.836000px;}
.wsd{word-spacing:-1.500000px;}
.ws4e{word-spacing:-1.440000px;}
.ws1d{word-spacing:-1.380000px;}
.wse8{word-spacing:-1.326000px;}
.ws5b{word-spacing:-1.320000px;}
.ws9b{word-spacing:-1.275000px;}
.ws51{word-spacing:-1.260000px;}
.wsca{word-spacing:-1.224000px;}
.ws3f{word-spacing:-1.200000px;}
.wse6{word-spacing:-1.173000px;}
.ws29{word-spacing:-1.140000px;}
.wsaf{word-spacing:-1.122000px;}
.ws20{word-spacing:-1.080000px;}
.wsa2{word-spacing:-1.071000px;}
.ws16{word-spacing:-1.020000px;}
.ws9a{word-spacing:-0.969000px;}
.ws35{word-spacing:-0.960000px;}
.wsc6{word-spacing:-0.918000px;}
.ws55{word-spacing:-0.900000px;}
.wsc8{word-spacing:-0.867000px;}
.ws5d{word-spacing:-0.840000px;}
.wsc7{word-spacing:-0.816000px;}
.ws6f{word-spacing:-0.780000px;}
.wsa3{word-spacing:-0.765000px;}
.ws10{word-spacing:-0.720000px;}
.wsa4{word-spacing:-0.714000px;}
.wsde{word-spacing:-0.663000px;}
.ws48{word-spacing:-0.660000px;}
.ws22{word-spacing:-0.612000px;}
.ws18{word-spacing:-0.600000px;}
.wsb5{word-spacing:-0.561000px;}
.ws4d{word-spacing:-0.540000px;}
.wsa0{word-spacing:-0.510000px;}
.ws5a{word-spacing:-0.480000px;}
.wsdd{word-spacing:-0.459000px;}
.ws36{word-spacing:-0.420000px;}
.wsd2{word-spacing:-0.408000px;}
.ws65{word-spacing:-0.360000px;}
.wsb1{word-spacing:-0.357000px;}
.wseb{word-spacing:-0.306000px;}
.ws2c{word-spacing:-0.300000px;}
.ws9f{word-spacing:-0.264000px;}
.ws93{word-spacing:-0.255000px;}
.ws45{word-spacing:-0.240000px;}
.wsb2{word-spacing:-0.204000px;}
.ws21{word-spacing:-0.180000px;}
.wsdb{word-spacing:-0.153000px;}
.ws19{word-spacing:-0.120000px;}
.wsbc{word-spacing:-0.102000px;}
.ws71{word-spacing:-0.060000px;}
.ws24{word-spacing:-0.051000px;}
.ws9{word-spacing:0.000000px;}
.wsa7{word-spacing:0.051000px;}
.ws54{word-spacing:0.060000px;}
.ws7f{word-spacing:0.102000px;}
.ws1f{word-spacing:0.120000px;}
.wsb3{word-spacing:0.153000px;}
.ws4c{word-spacing:0.180000px;}
.wsbb{word-spacing:0.204000px;}
.wse{word-spacing:0.240000px;}
.wsf7{word-spacing:0.255000px;}
.ws33{word-spacing:0.300000px;}
.wsef{word-spacing:0.306000px;}
.wsfe{word-spacing:0.357000px;}
.ws40{word-spacing:0.360000px;}
.wsd1{word-spacing:0.408000px;}
.ws2e{word-spacing:0.420000px;}
.wscf{word-spacing:0.459000px;}
.ws49{word-spacing:0.480000px;}
.ws81{word-spacing:0.510000px;}
.ws6d{word-spacing:0.600000px;}
.wsff{word-spacing:0.612000px;}
.wsb{word-spacing:0.660000px;}
.ws105{word-spacing:0.663000px;}
.wsea{word-spacing:0.714000px;}
.ws4a{word-spacing:0.720000px;}
.wsed{word-spacing:0.765000px;}
.ws57{word-spacing:0.780000px;}
.wsb8{word-spacing:0.816000px;}
.ws2f{word-spacing:0.840000px;}
.wsd0{word-spacing:0.918000px;}
.ws11{word-spacing:0.960000px;}
.ws9e{word-spacing:0.969000px;}
.ws37{word-spacing:1.020000px;}
.ws56{word-spacing:1.080000px;}
.wsf0{word-spacing:1.122000px;}
.ws17{word-spacing:1.140000px;}
.wsa1{word-spacing:1.173000px;}
.ws15{word-spacing:1.200000px;}
.wsba{word-spacing:1.224000px;}
.ws8b{word-spacing:1.260000px;}
.ws9c{word-spacing:1.275000px;}
.ws59{word-spacing:1.320000px;}
.wsb6{word-spacing:1.326000px;}
.wsc5{word-spacing:1.377000px;}
.wsf{word-spacing:1.380000px;}
.wsda{word-spacing:1.428000px;}
.ws66{word-spacing:1.440000px;}
.wsf1{word-spacing:1.479000px;}
.wsc{word-spacing:1.500000px;}
.wsb4{word-spacing:1.530000px;}
.ws27{word-spacing:1.560000px;}
.wsdc{word-spacing:1.581000px;}
.ws34{word-spacing:1.620000px;}
.wsf9{word-spacing:1.632000px;}
.ws90{word-spacing:1.680000px;}
.wsad{word-spacing:1.683000px;}
.wsd4{word-spacing:1.734000px;}
.ws2d{word-spacing:1.740000px;}
.wsa5{word-spacing:1.785000px;}
.ws4b{word-spacing:1.800000px;}
.wsdf{word-spacing:1.836000px;}
.ws32{word-spacing:1.860000px;}
.ws4f{word-spacing:1.920000px;}
.wsd6{word-spacing:1.938000px;}
.ws1c{word-spacing:1.980000px;}
.ws9d{word-spacing:1.989000px;}
.ws12{word-spacing:2.040000px;}
.wsb7{word-spacing:2.091000px;}
.ws14{word-spacing:2.100000px;}
.wsa9{word-spacing:2.142000px;}
.ws3c{word-spacing:2.160000px;}
.wse7{word-spacing:2.193000px;}
.wsb9{word-spacing:2.244000px;}
.ws28{word-spacing:2.280000px;}
.wsab{word-spacing:2.295000px;}
.ws68{word-spacing:2.340000px;}
.wsc9{word-spacing:2.346000px;}
.wsee{word-spacing:2.397000px;}
.ws3e{word-spacing:2.400000px;}
.ws100{word-spacing:2.448000px;}
.ws72{word-spacing:2.460000px;}
.ws85{word-spacing:2.520000px;}
.wse5{word-spacing:2.550000px;}
.ws43{word-spacing:2.580000px;}
.wsa8{word-spacing:2.601000px;}
.ws2a{word-spacing:2.640000px;}
.wsd3{word-spacing:2.652000px;}
.ws5e{word-spacing:2.700000px;}
.wse2{word-spacing:2.703000px;}
.wsc4{word-spacing:2.754000px;}
.ws3d{word-spacing:2.760000px;}
.wscb{word-spacing:2.805000px;}
.ws53{word-spacing:2.820000px;}
.ws5c{word-spacing:2.880000px;}
.wsbf{word-spacing:2.907000px;}
.ws13{word-spacing:2.940000px;}
.wscd{word-spacing:2.958000px;}
.ws61{word-spacing:3.000000px;}
.wscc{word-spacing:3.009000px;}
.ws1a{word-spacing:3.060000px;}
.wsf5{word-spacing:3.111000px;}
.wsaa{word-spacing:3.162000px;}
.ws70{word-spacing:3.180000px;}
.wsd5{word-spacing:3.213000px;}
.ws2b{word-spacing:3.240000px;}
.wsfc{word-spacing:3.264000px;}
.ws31{word-spacing:3.300000px;}
.wse9{word-spacing:3.315000px;}
.ws69{word-spacing:3.360000px;}
.ws46{word-spacing:3.420000px;}
.wsf2{word-spacing:3.468000px;}
.wsb0{word-spacing:3.570000px;}
.ws1b{word-spacing:3.600000px;}
.ws87{word-spacing:3.660000px;}
.wsd7{word-spacing:3.672000px;}
.ws47{word-spacing:3.720000px;}
.wsfa{word-spacing:3.774000px;}
.ws30{word-spacing:3.840000px;}
.wsec{word-spacing:3.876000px;}
.ws6b{word-spacing:3.900000px;}
.wsf8{word-spacing:3.927000px;}
.ws5f{word-spacing:3.960000px;}
.ws89{word-spacing:4.020000px;}
.wsfb{word-spacing:4.029000px;}
.ws52{word-spacing:4.080000px;}
.wsae{word-spacing:4.131000px;}
.ws44{word-spacing:4.140000px;}
.wsbe{word-spacing:4.182000px;}
.ws60{word-spacing:4.200000px;}
.ws50{word-spacing:4.260000px;}
.ws42{word-spacing:4.320000px;}
.ws92{word-spacing:4.335000px;}
.ws74{word-spacing:4.380000px;}
.wsfd{word-spacing:4.386000px;}
.ws67{word-spacing:4.440000px;}
.ws6a{word-spacing:4.500000px;}
.ws76{word-spacing:4.590000px;}
.ws8a{word-spacing:4.680000px;}
.wsf6{word-spacing:4.692000px;}
.ws7d{word-spacing:4.743000px;}
.wsa6{word-spacing:4.794000px;}
.ws6c{word-spacing:4.920000px;}
.ws86{word-spacing:5.040000px;}
.ws80{word-spacing:5.049000px;}
.ws41{word-spacing:5.100000px;}
.wsac{word-spacing:5.151000px;}
.ws88{word-spacing:5.220000px;}
.wse3{word-spacing:5.304000px;}
.ws7a{word-spacing:5.355000px;}
.ws8c{word-spacing:5.400000px;}
.ws7c{word-spacing:5.712000px;}
.ws84{word-spacing:5.940000px;}
.ws64{word-spacing:6.180000px;}
.wse4{word-spacing:6.783000px;}
.wsce{word-spacing:7.038000px;}
.ws77{word-spacing:8.211000px;}
.ws63{word-spacing:8.700000px;}
.ws75{word-spacing:8.721000px;}
.ws7e{word-spacing:9.282000px;}
.ws73{word-spacing:9.300000px;}
.ws7b{word-spacing:10.404000px;}
.ws79{word-spacing:11.169000px;}
.ws78{word-spacing:12.699000px;}
.ws106{word-spacing:13.515000px;}
.ws91{word-spacing:13.860000px;}
.ws107{word-spacing:17.595000px;}
.ws23{word-spacing:72.267000px;}
._8{margin-left:-2763.740984px;}
._4{margin-left:-16.575000px;}
._f{margin-left:-9.480020px;}
._e{margin-left:-6.708032px;}
._22{margin-left:-5.678136px;}
._1{margin-left:-4.605564px;}
._2{margin-left:-2.706000px;}
._0{margin-left:-1.632000px;}
._3{width:1.212000px;}
._a{width:2.430000px;}
._10{width:4.314000px;}
._21{width:5.507994px;}
._11{width:7.344000px;}
._1f{width:11.730000px;}
._1e{width:13.769991px;}
._12{width:15.399900px;}
._b{width:16.680000px;}
._5{width:18.360000px;}
._d{width:41.310000px;}
._15{width:48.399000px;}
._6{width:54.621000px;}
._1d{width:78.093000px;}
._9{width:98.226000px;}
._1b{width:151.878000px;}
._17{width:205.581000px;}
._1c{width:216.852000px;}
._16{width:233.784000px;}
._14{width:266.628000px;}
._19{width:356.949000px;}
._18{width:435.743984px;}
._1a{width:696.254984px;}
._13{width:782.798984px;}
._20{width:1623.585068px;}
._c{width:1647.809372px;}
._7{width:1886.948984px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.829002px;}
.y43{bottom:112.950300px;}
.y94{bottom:113.544296px;}
.y13d{bottom:113.851799px;}
.y145{bottom:113.890045px;}
.y1f3{bottom:114.270294px;}
.yc9{bottom:114.729332px;}
.y131{bottom:114.735260px;}
.y163{bottom:114.735306px;}
.ye8{bottom:114.874786px;}
.y18d{bottom:114.874969px;}
.y277{bottom:116.614823px;}
.y235{bottom:116.756571px;}
.y2b9{bottom:117.010073px;}
.y1b5{bottom:123.928794px;}
.y42{bottom:127.944300px;}
.y13c{bottom:128.845799px;}
.y144{bottom:128.884045px;}
.y1f2{bottom:129.264294px;}
.y2c{bottom:130.711349px;}
.y276{bottom:131.608823px;}
.y234{bottom:131.750571px;}
.y2b8{bottom:132.004073px;}
.y93{bottom:132.294296px;}
.yc8{bottom:133.479332px;}
.y130{bottom:133.485260px;}
.y162{bottom:133.485306px;}
.ye7{bottom:133.624786px;}
.y18c{bottom:133.624969px;}
.y1b4{bottom:138.922794px;}
.y41{bottom:142.938300px;}
.y13b{bottom:143.839799px;}
.y143{bottom:143.878045px;}
.y1f1{bottom:144.258294px;}
.y275{bottom:146.602823px;}
.y233{bottom:146.744571px;}
.y2b7{bottom:146.998073px;}
.y2b{bottom:149.461349px;}
.y92{bottom:151.044296px;}
.yc7{bottom:152.229332px;}
.y12f{bottom:152.235260px;}
.y161{bottom:152.235306px;}
.ye6{bottom:152.374786px;}
.y18b{bottom:152.374969px;}
.y13a{bottom:158.833799px;}
.y142{bottom:158.872045px;}
.y1f0{bottom:159.252294px;}
.y274{bottom:161.596823px;}
.y232{bottom:161.738571px;}
.y2b6{bottom:161.992073px;}
.y40{bottom:163.032303px;}
.y2a{bottom:168.211349px;}
.y1b3{bottom:168.922760px;}
.y91{bottom:169.794296px;}
.yc6{bottom:170.979332px;}
.y12e{bottom:170.985260px;}
.y160{bottom:170.985306px;}
.ye5{bottom:171.124786px;}
.y18a{bottom:171.124969px;}
.y139{bottom:173.827799px;}
.y141{bottom:173.866045px;}
.y1ef{bottom:174.246294px;}
.y273{bottom:176.590823px;}
.y231{bottom:176.732571px;}
.y2b5{bottom:176.986073px;}
.y3f{bottom:180.491553px;}
.y29{bottom:186.961349px;}
.y1b2{bottom:187.672760px;}
.y90{bottom:188.544296px;}
.y138{bottom:188.821799px;}
.y140{bottom:188.860045px;}
.y1ee{bottom:189.240294px;}
.yc5{bottom:189.729332px;}
.y12d{bottom:189.735260px;}
.y15f{bottom:189.735306px;}
.ye4{bottom:189.874786px;}
.y189{bottom:189.874969px;}
.y272{bottom:191.584823px;}
.y230{bottom:191.726571px;}
.y2b4{bottom:191.980073px;}
.y3e{bottom:195.485553px;}
.y137{bottom:203.815799px;}
.y13f{bottom:203.854045px;}
.y1ed{bottom:204.234294px;}
.y28{bottom:205.711349px;}
.y1b1{bottom:206.422760px;}
.y271{bottom:206.578823px;}
.y22f{bottom:206.720571px;}
.y2b3{bottom:206.974073px;}
.y8f{bottom:207.294296px;}
.yc4{bottom:208.479332px;}
.y12c{bottom:208.485260px;}
.y15e{bottom:208.485306px;}
.ye3{bottom:208.624786px;}
.y188{bottom:208.624969px;}
.y3d{bottom:215.579544px;}
.y136{bottom:218.809799px;}
.y13e{bottom:218.848045px;}
.y1ec{bottom:219.228294px;}
.y270{bottom:221.572823px;}
.y22e{bottom:221.714571px;}
.y2b2{bottom:221.968073px;}
.y27{bottom:224.461349px;}
.y1b0{bottom:225.172760px;}
.y8e{bottom:226.044296px;}
.yc3{bottom:227.229332px;}
.y12b{bottom:227.235260px;}
.y15d{bottom:227.235306px;}
.ye2{bottom:227.374786px;}
.y187{bottom:227.374969px;}
.y3c{bottom:233.032794px;}
.y1eb{bottom:234.222294px;}
.y26f{bottom:236.566823px;}
.y22d{bottom:236.708571px;}
.y2b1{bottom:236.962073px;}
.y26{bottom:243.211349px;}
.y1af{bottom:243.922760px;}
.y8d{bottom:244.794296px;}
.yc2{bottom:245.979332px;}
.y12a{bottom:245.985260px;}
.y15c{bottom:245.985306px;}
.ye1{bottom:246.124786px;}
.y186{bottom:246.124969px;}
.y1ea{bottom:249.216294px;}
.y26e{bottom:251.560823px;}
.y22c{bottom:251.702571px;}
.y2b0{bottom:251.956073px;}
.y3b{bottom:253.126808px;}
.y25{bottom:261.961349px;}
.y1ae{bottom:262.672760px;}
.y8c{bottom:263.544296px;}
.y1e9{bottom:264.210294px;}
.yc1{bottom:264.729332px;}
.y129{bottom:264.735260px;}
.y15b{bottom:264.735306px;}
.ye0{bottom:264.874786px;}
.y185{bottom:264.874969px;}
.y26d{bottom:266.554823px;}
.y22b{bottom:266.696571px;}
.y2af{bottom:266.950073px;}
.y3a{bottom:270.580059px;}
.y1e8{bottom:279.204294px;}
.y24{bottom:280.711349px;}
.y1ad{bottom:281.422760px;}
.y26c{bottom:281.548823px;}
.y22a{bottom:281.690571px;}
.y2ae{bottom:281.944073px;}
.y8b{bottom:282.294296px;}
.yc0{bottom:283.479332px;}
.y128{bottom:283.485260px;}
.y15a{bottom:283.485306px;}
.ydf{bottom:283.624786px;}
.y184{bottom:283.624969px;}
.y39{bottom:290.674049px;}
.y1e7{bottom:294.198294px;}
.y26b{bottom:296.542823px;}
.y229{bottom:296.684571px;}
.y2ad{bottom:296.938073px;}
.y23{bottom:299.461349px;}
.y1ac{bottom:300.172760px;}
.y8a{bottom:301.044296px;}
.ybf{bottom:302.229332px;}
.y127{bottom:302.235260px;}
.y159{bottom:302.235306px;}
.yde{bottom:302.374786px;}
.y183{bottom:302.374969px;}
.y38{bottom:308.127300px;}
.y1e6{bottom:309.192294px;}
.y26a{bottom:311.536823px;}
.y228{bottom:311.678571px;}
.y2ac{bottom:311.932073px;}
.y22{bottom:318.211349px;}
.y1ab{bottom:318.922760px;}
.y89{bottom:319.794296px;}
.ybe{bottom:320.979332px;}
.y126{bottom:320.985260px;}
.y158{bottom:320.985306px;}
.ydd{bottom:321.124786px;}
.y182{bottom:321.124969px;}
.y1e5{bottom:324.186294px;}
.y269{bottom:326.530823px;}
.y227{bottom:326.672571px;}
.y2ab{bottom:326.926073px;}
.y37{bottom:328.221291px;}
.y21{bottom:336.961349px;}
.y1aa{bottom:337.672760px;}
.y88{bottom:338.544296px;}
.y1e4{bottom:339.180294px;}
.ybd{bottom:339.729332px;}
.y125{bottom:339.735260px;}
.y157{bottom:339.735306px;}
.ydc{bottom:339.874786px;}
.y181{bottom:339.874969px;}
.y268{bottom:341.524823px;}
.y226{bottom:341.666571px;}
.y2aa{bottom:341.920073px;}
.y36{bottom:345.680541px;}
.y1e3{bottom:354.174294px;}
.y20{bottom:355.711349px;}
.y1a9{bottom:356.422760px;}
.y267{bottom:356.518823px;}
.y225{bottom:356.660571px;}
.y2a9{bottom:356.914073px;}
.y87{bottom:357.294296px;}
.ybc{bottom:358.479332px;}
.y124{bottom:358.485260px;}
.y156{bottom:358.485306px;}
.ydb{bottom:358.624786px;}
.y180{bottom:358.624969px;}
.y35{bottom:360.674541px;}
.y1e2{bottom:369.168294px;}
.y266{bottom:371.512823px;}
.y224{bottom:371.654571px;}
.y2a8{bottom:371.908073px;}
.y1f{bottom:374.461349px;}
.y1a8{bottom:375.172760px;}
.y86{bottom:376.044296px;}
.ybb{bottom:377.229332px;}
.y123{bottom:377.235260px;}
.y155{bottom:377.235306px;}
.yda{bottom:377.374786px;}
.y17f{bottom:377.374969px;}
.y34{bottom:380.768555px;}
.y1e1{bottom:384.162294px;}
.y265{bottom:386.506823px;}
.y223{bottom:386.648571px;}
.y2a7{bottom:386.902073px;}
.y1e{bottom:393.211349px;}
.y1a7{bottom:393.922760px;}
.y85{bottom:394.794296px;}
.yba{bottom:395.979332px;}
.y122{bottom:395.985260px;}
.y154{bottom:395.985306px;}
.yd9{bottom:396.124786px;}
.y17e{bottom:396.124969px;}
.y33{bottom:398.227805px;}
.y1e0{bottom:399.156294px;}
.y264{bottom:401.500823px;}
.y222{bottom:401.642571px;}
.y2a6{bottom:401.896073px;}
.y1d{bottom:411.961349px;}
.y1a6{bottom:412.672760px;}
.y32{bottom:413.221805px;}
.y84{bottom:413.544296px;}
.y1df{bottom:414.150294px;}
.yb9{bottom:414.729332px;}
.y121{bottom:414.735260px;}
.y153{bottom:414.735306px;}
.yd8{bottom:414.874786px;}
.y17d{bottom:414.874969px;}
.y263{bottom:416.494823px;}
.y221{bottom:416.636571px;}
.y2a5{bottom:416.890073px;}
.y1de{bottom:429.144294px;}
.y1c{bottom:430.711349px;}
.y1a5{bottom:431.422760px;}
.y262{bottom:431.488823px;}
.y220{bottom:431.630571px;}
.y2a4{bottom:431.884073px;}
.y31{bottom:433.315796px;}
.yb8{bottom:433.479332px;}
.y120{bottom:433.485260px;}
.y152{bottom:433.485306px;}
.yd7{bottom:433.624786px;}
.y17c{bottom:433.624969px;}
.y1dd{bottom:444.138294px;}
.y261{bottom:446.482823px;}
.y21f{bottom:446.624571px;}
.y2a3{bottom:446.878073px;}
.y1b{bottom:449.461349px;}
.y1a4{bottom:450.172760px;}
.y83{bottom:451.044296px;}
.yb7{bottom:452.229332px;}
.y11f{bottom:452.235260px;}
.y151{bottom:452.235306px;}
.yd6{bottom:452.374786px;}
.y17b{bottom:452.374969px;}
.y30{bottom:458.322920px;}
.y1dc{bottom:459.132294px;}
.y260{bottom:461.476823px;}
.y21e{bottom:461.618571px;}
.y2a2{bottom:461.872073px;}
.y1a{bottom:468.211349px;}
.y1a3{bottom:468.922760px;}
.yb6{bottom:470.979332px;}
.y11e{bottom:470.985260px;}
.y150{bottom:470.985306px;}
.yd5{bottom:471.124786px;}
.y17a{bottom:471.124969px;}
.y2f{bottom:473.316920px;}
.y25f{bottom:476.470823px;}
.y21d{bottom:476.612571px;}
.y2a1{bottom:476.866073px;}
.y19{bottom:486.961349px;}
.y1a2{bottom:487.672760px;}
.y63{bottom:488.695819px;}
.yb5{bottom:489.729332px;}
.y11d{bottom:489.735260px;}
.y14f{bottom:489.735306px;}
.yd4{bottom:489.874786px;}
.y179{bottom:489.874969px;}
.y25e{bottom:491.464823px;}
.y21c{bottom:491.606571px;}
.y2a0{bottom:491.860073px;}
.y1db{bottom:492.882294px;}
.y62{bottom:503.689819px;}
.y2e{bottom:504.133670px;}
.y18{bottom:505.711349px;}
.y1a1{bottom:506.422760px;}
.y25d{bottom:506.458823px;}
.y21b{bottom:506.600571px;}
.y29f{bottom:506.854073px;}
.y82{bottom:507.294342px;}
.yb4{bottom:508.479332px;}
.y11c{bottom:508.485260px;}
.y14e{bottom:508.485306px;}
.yd3{bottom:508.624786px;}
.y178{bottom:508.624969px;}
.y2d{bottom:519.127670px;}
.y25c{bottom:521.452823px;}
.y21a{bottom:521.594571px;}
.y29e{bottom:521.848073px;}
.y1a0{bottom:525.172760px;}
.y81{bottom:526.044342px;}
.yb3{bottom:527.229332px;}
.y11b{bottom:527.235260px;}
.y14d{bottom:527.235306px;}
.yd2{bottom:527.374786px;}
.y177{bottom:527.374969px;}
.y25b{bottom:536.446823px;}
.y219{bottom:536.588571px;}
.y29d{bottom:536.842073px;}
.y17{bottom:543.211349px;}
.y19f{bottom:543.922760px;}
.y80{bottom:544.794342px;}
.yb2{bottom:545.979332px;}
.y11a{bottom:545.985260px;}
.y14c{bottom:545.985306px;}
.yd1{bottom:546.124786px;}
.y176{bottom:546.124969px;}
.y25a{bottom:551.440823px;}
.y218{bottom:551.582571px;}
.y29c{bottom:551.836073px;}
.y1da{bottom:554.900588px;}
.y19e{bottom:562.672760px;}
.y61{bottom:563.415344px;}
.y7f{bottom:563.544342px;}
.yb1{bottom:564.729332px;}
.y119{bottom:564.735260px;}
.y14b{bottom:564.735306px;}
.yd0{bottom:564.874786px;}
.y175{bottom:564.874969px;}
.y259{bottom:566.434823px;}
.y217{bottom:566.576571px;}
.y29b{bottom:566.830073px;}
.y1d9{bottom:569.894588px;}
.y19d{bottom:581.422760px;}
.y258{bottom:581.428823px;}
.y216{bottom:581.570571px;}
.y29a{bottom:581.824073px;}
.y60{bottom:582.165344px;}
.y7e{bottom:582.294342px;}
.yb0{bottom:583.479332px;}
.y118{bottom:583.485260px;}
.y14a{bottom:583.485306px;}
.ycf{bottom:583.624786px;}
.y174{bottom:583.624969px;}
.y1d8{bottom:584.888588px;}
.y257{bottom:596.422823px;}
.y215{bottom:596.564571px;}
.y299{bottom:596.818073px;}
.y16{bottom:599.461395px;}
.y1d7{bottom:599.882588px;}
.y19c{bottom:600.172760px;}
.y5f{bottom:600.915344px;}
.y7d{bottom:601.044342px;}
.yaf{bottom:602.229332px;}
.y117{bottom:602.235260px;}
.y149{bottom:602.235306px;}
.yce{bottom:602.374786px;}
.y173{bottom:602.374969px;}
.y256{bottom:611.416823px;}
.y214{bottom:611.558571px;}
.y298{bottom:611.812073px;}
.y1d6{bottom:614.876588px;}
.y19b{bottom:618.922760px;}
.y5e{bottom:619.665344px;}
.y7c{bottom:619.794342px;}
.yae{bottom:620.979332px;}
.y116{bottom:620.985260px;}
.y148{bottom:620.985306px;}
.ycd{bottom:621.124786px;}
.y172{bottom:621.124969px;}
.y255{bottom:626.410823px;}
.y213{bottom:626.552571px;}
.y297{bottom:626.806073px;}
.y1d5{bottom:629.870588px;}
.y15{bottom:636.961395px;}
.y19a{bottom:637.672760px;}
.y5d{bottom:638.415344px;}
.y7b{bottom:638.544342px;}
.yad{bottom:639.729332px;}
.y115{bottom:639.735260px;}
.ycc{bottom:639.874786px;}
.y171{bottom:639.874969px;}
.y254{bottom:641.404823px;}
.y212{bottom:641.546571px;}
.y296{bottom:641.800073px;}
.y1d4{bottom:644.864588px;}
.y14{bottom:655.711395px;}
.y253{bottom:656.398823px;}
.y199{bottom:656.422760px;}
.y211{bottom:656.540571px;}
.y295{bottom:656.794073px;}
.y5c{bottom:657.165344px;}
.y7a{bottom:657.294342px;}
.y147{bottom:658.479306px;}
.yac{bottom:658.479332px;}
.y114{bottom:658.485260px;}
.ycb{bottom:658.624786px;}
.y170{bottom:658.624969px;}
.y1d3{bottom:659.858588px;}
.y252{bottom:671.392823px;}
.y210{bottom:671.534571px;}
.y294{bottom:671.788073px;}
.y13{bottom:674.461395px;}
.y1d2{bottom:674.852588px;}
.y198{bottom:675.172760px;}
.y5b{bottom:675.915344px;}
.y79{bottom:676.044342px;}
.yab{bottom:677.229332px;}
.y113{bottom:677.235260px;}
.y146{bottom:677.235306px;}
.yca{bottom:677.374786px;}
.y16f{bottom:677.374969px;}
.y251{bottom:686.386823px;}
.y2d4{bottom:686.463308px;}
.y20f{bottom:686.528571px;}
.y293{bottom:686.782073px;}
.y1d1{bottom:689.846588px;}
.y12{bottom:693.211395px;}
.y197{bottom:693.922760px;}
.y5a{bottom:694.665344px;}
.y78{bottom:694.794342px;}
.yaa{bottom:695.979332px;}
.y112{bottom:695.985260px;}
.y16e{bottom:696.124969px;}
.y250{bottom:701.380823px;}
.y2d3{bottom:701.457308px;}
.y20e{bottom:701.522571px;}
.y292{bottom:701.776073px;}
.y1d0{bottom:704.840588px;}
.y11{bottom:711.961395px;}
.y196{bottom:712.672760px;}
.y59{bottom:713.415344px;}
.y77{bottom:713.544342px;}
.ya9{bottom:714.729332px;}
.y111{bottom:714.735260px;}
.y16d{bottom:714.874969px;}
.y24f{bottom:716.374823px;}
.y20d{bottom:716.516571px;}
.y291{bottom:716.770073px;}
.y1cf{bottom:719.834588px;}
.y10{bottom:730.711395px;}
.y24e{bottom:731.368823px;}
.y195{bottom:731.422760px;}
.y20c{bottom:731.510571px;}
.y2d2{bottom:731.547307px;}
.y290{bottom:731.764073px;}
.y58{bottom:732.165344px;}
.y76{bottom:732.294342px;}
.ya8{bottom:733.479332px;}
.y110{bottom:733.485260px;}
.y16c{bottom:733.624969px;}
.y24d{bottom:746.362823px;}
.y20b{bottom:746.504571px;}
.y2d1{bottom:746.541307px;}
.y28f{bottom:746.758073px;}
.yf{bottom:749.461395px;}
.y194{bottom:750.172760px;}
.y57{bottom:750.915344px;}
.y75{bottom:751.044342px;}
.ya7{bottom:752.229332px;}
.y10f{bottom:752.235260px;}
.y16b{bottom:752.374969px;}
.y1ce{bottom:757.319588px;}
.yff{bottom:760.234844px;}
.y24c{bottom:761.356823px;}
.y20a{bottom:761.498571px;}
.y2d0{bottom:761.535307px;}
.y28e{bottom:761.752073px;}
.ye{bottom:768.211395px;}
.y193{bottom:768.922760px;}
.y56{bottom:769.665344px;}
.y74{bottom:769.794342px;}
.ya6{bottom:770.979332px;}
.y10e{bottom:770.985260px;}
.y16a{bottom:771.124969px;}
.yfe{bottom:775.228844px;}
.y24b{bottom:776.350823px;}
.y209{bottom:776.492571px;}
.y2cf{bottom:776.529307px;}
.y28d{bottom:776.746073px;}
.yd{bottom:786.961395px;}
.y1cd{bottom:787.320338px;}
.y192{bottom:787.672760px;}
.y55{bottom:788.415344px;}
.y73{bottom:788.544342px;}
.ya5{bottom:789.729332px;}
.y10d{bottom:789.735260px;}
.y169{bottom:789.874969px;}
.yfd{bottom:790.222844px;}
.y24a{bottom:791.344823px;}
.y208{bottom:791.486571px;}
.y2ce{bottom:791.523307px;}
.y28c{bottom:791.740073px;}
.yfc{bottom:805.216844px;}
.yc{bottom:805.711395px;}
.y249{bottom:806.338823px;}
.y191{bottom:806.422760px;}
.y207{bottom:806.480571px;}
.y2cd{bottom:806.517307px;}
.y28b{bottom:806.734073px;}
.y54{bottom:807.165344px;}
.y72{bottom:807.294342px;}
.ya4{bottom:808.479332px;}
.y10c{bottom:808.485260px;}
.y168{bottom:808.624969px;}
.y1cc{bottom:817.321088px;}
.yfb{bottom:820.210844px;}
.y248{bottom:821.332823px;}
.y206{bottom:821.474571px;}
.y2cc{bottom:821.511307px;}
.y28a{bottom:821.728073px;}
.yb{bottom:824.461395px;}
.y190{bottom:825.172760px;}
.y53{bottom:825.915344px;}
.y71{bottom:826.044342px;}
.ya3{bottom:827.229332px;}
.y10b{bottom:827.235260px;}
.y167{bottom:827.374969px;}
.yfa{bottom:835.204844px;}
.y247{bottom:836.326823px;}
.y205{bottom:836.468571px;}
.y2cb{bottom:836.505307px;}
.y289{bottom:836.722073px;}
.y18f{bottom:843.922760px;}
.y52{bottom:844.665344px;}
.y70{bottom:844.794342px;}
.ya2{bottom:845.979332px;}
.y135{bottom:845.985260px;}
.y166{bottom:846.124969px;}
.y1cb{bottom:847.321838px;}
.yf9{bottom:850.198844px;}
.y246{bottom:851.320823px;}
.y204{bottom:851.462571px;}
.y2ca{bottom:851.499307px;}
.y288{bottom:851.716073px;}
.y51{bottom:863.415344px;}
.y6f{bottom:863.544342px;}
.y10a{bottom:864.729260px;}
.ya1{bottom:864.729332px;}
.y134{bottom:864.735260px;}
.y165{bottom:864.874969px;}
.yf8{bottom:865.192844px;}
.y245{bottom:866.314823px;}
.y203{bottom:866.456571px;}
.y2c9{bottom:866.493307px;}
.y287{bottom:866.710073px;}
.ya{bottom:868.644153px;}
.y1ca{bottom:877.321838px;}
.yf7{bottom:880.186844px;}
.y244{bottom:881.308823px;}
.y18e{bottom:881.422760px;}
.y202{bottom:881.450571px;}
.y2c8{bottom:881.487307px;}
.y286{bottom:881.704073px;}
.y50{bottom:882.165344px;}
.y6e{bottom:882.294342px;}
.ya0{bottom:883.479332px;}
.y109{bottom:883.485260px;}
.y164{bottom:883.624969px;}
.y9{bottom:883.638153px;}
.yf6{bottom:895.180844px;}
.y243{bottom:896.302823px;}
.y201{bottom:896.444571px;}
.y2c7{bottom:896.481307px;}
.y285{bottom:896.698073px;}
.y4f{bottom:900.915344px;}
.y6d{bottom:901.044342px;}
.y9f{bottom:902.229332px;}
.y133{bottom:902.235260px;}
.yf5{bottom:910.174844px;}
.y1c9{bottom:911.118338px;}
.y242{bottom:911.296823px;}
.y200{bottom:911.438571px;}
.y2c6{bottom:911.475307px;}
.y284{bottom:911.692073px;}
.y4e{bottom:919.665344px;}
.y6c{bottom:919.794342px;}
.y9e{bottom:920.979332px;}
.y132{bottom:920.985260px;}
.yf4{bottom:925.168844px;}
.y1c8{bottom:926.112338px;}
.y8{bottom:926.238190px;}
.y241{bottom:926.290823px;}
.y1ff{bottom:926.432571px;}
.y2c5{bottom:926.469307px;}
.y283{bottom:926.686073px;}
.y1be{bottom:935.314524px;}
.y4d{bottom:938.415344px;}
.y6b{bottom:938.544342px;}
.y9d{bottom:939.729332px;}
.y108{bottom:939.735260px;}
.yf3{bottom:940.162844px;}
.y240{bottom:941.284823px;}
.y1fe{bottom:941.426571px;}
.y2c4{bottom:941.463307px;}
.y282{bottom:941.680073px;}
.y7{bottom:944.988190px;}
.y1bd{bottom:950.308524px;}
.yf2{bottom:955.156844px;}
.y1c7{bottom:956.113088px;}
.y23f{bottom:956.278823px;}
.y1fd{bottom:956.420571px;}
.y2c3{bottom:956.457307px;}
.y281{bottom:956.674073px;}
.y4c{bottom:957.165344px;}
.y6a{bottom:957.294342px;}
.y9c{bottom:958.479332px;}
.y107{bottom:958.485260px;}
.y6{bottom:963.738190px;}
.y1bc{bottom:969.102024px;}
.yf1{bottom:970.150844px;}
.y1c6{bottom:971.107088px;}
.y23e{bottom:971.272823px;}
.y1fc{bottom:971.414571px;}
.y2c2{bottom:971.451307px;}
.y280{bottom:971.668073px;}
.y4b{bottom:975.915344px;}
.y69{bottom:976.044342px;}
.y9b{bottom:977.229332px;}
.y106{bottom:977.235260px;}
.yf0{bottom:985.144844px;}
.y1c5{bottom:986.101088px;}
.y23d{bottom:986.266823px;}
.y1fb{bottom:986.408571px;}
.y2c1{bottom:986.445307px;}
.y27f{bottom:986.662073px;}
.y1bb{bottom:987.819024px;}
.y4a{bottom:994.665344px;}
.y68{bottom:994.794342px;}
.y9a{bottom:995.979332px;}
.y105{bottom:995.985260px;}
.yef{bottom:1000.138844px;}
.y1c4{bottom:1001.095088px;}
.y23c{bottom:1001.260823px;}
.y1fa{bottom:1001.402571px;}
.y2c0{bottom:1001.439307px;}
.y27e{bottom:1001.656073px;}
.y1ba{bottom:1006.536024px;}
.y5{bottom:1008.424622px;}
.y49{bottom:1013.415344px;}
.y67{bottom:1013.544342px;}
.y99{bottom:1014.729332px;}
.y104{bottom:1014.735260px;}
.yee{bottom:1015.132844px;}
.y1c3{bottom:1016.089088px;}
.y23b{bottom:1016.254823px;}
.y1f9{bottom:1016.396571px;}
.y2bf{bottom:1016.433307px;}
.y27d{bottom:1016.650073px;}
.y1b9{bottom:1021.530024px;}
.yed{bottom:1030.126844px;}
.y1c2{bottom:1031.083088px;}
.y23a{bottom:1031.248823px;}
.y1f8{bottom:1031.390571px;}
.y2be{bottom:1031.427307px;}
.y27c{bottom:1031.644073px;}
.y48{bottom:1032.165344px;}
.y66{bottom:1032.294342px;}
.y98{bottom:1033.479332px;}
.y103{bottom:1033.485260px;}
.y1b8{bottom:1036.524024px;}
.yec{bottom:1045.120844px;}
.y239{bottom:1046.242823px;}
.y1f7{bottom:1046.384571px;}
.y2bd{bottom:1046.421307px;}
.y27b{bottom:1046.638073px;}
.y47{bottom:1050.915344px;}
.y65{bottom:1051.044342px;}
.y97{bottom:1052.229332px;}
.y102{bottom:1052.235260px;}
.yeb{bottom:1060.114844px;}
.y1c1{bottom:1061.083838px;}
.y238{bottom:1061.236823px;}
.y1f6{bottom:1061.378571px;}
.y2bc{bottom:1061.415307px;}
.y27a{bottom:1061.632073px;}
.y1b7{bottom:1064.612274px;}
.y46{bottom:1069.665344px;}
.y96{bottom:1070.979332px;}
.y101{bottom:1070.985260px;}
.yea{bottom:1075.108844px;}
.y1c0{bottom:1076.077838px;}
.y4{bottom:1076.132080px;}
.y237{bottom:1076.230823px;}
.y1f5{bottom:1076.372571px;}
.y2bb{bottom:1076.409307px;}
.y279{bottom:1076.626073px;}
.y45{bottom:1088.415344px;}
.y64{bottom:1088.544342px;}
.y95{bottom:1089.729332px;}
.y100{bottom:1089.735260px;}
.ye9{bottom:1090.102844px;}
.y1b6{bottom:1090.111036px;}
.y1bf{bottom:1091.071838px;}
.y236{bottom:1091.224823px;}
.y1f4{bottom:1091.366571px;}
.y2ba{bottom:1091.403307px;}
.y278{bottom:1091.620073px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y44{bottom:1127.482361px;}
.hb{height:32.986799px;}
.h2{height:42.048000px;}
.h3{height:44.676000px;}
.hc{height:44.676732px;}
.ha{height:47.124000px;}
.h10{height:52.173000px;}
.h8{height:55.440000px;}
.h4{height:55.461000px;}
.hd{height:59.004000px;}
.h7{height:59.340000px;}
.hf{height:61.380000px;}
.he{height:62.808000px;}
.h6{height:64.866000px;}
.h9{height:71.208000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x3{left:85.181849px;}
.x6{left:93.545402px;}
.x5{left:97.796100px;}
.xa{left:107.288402px;}
.x8{left:338.050656px;}
.x4{left:459.212723px;}
.x7{left:476.225402px;}
.xb{left:489.992412px;}
.x9{left:573.415663px;}
.x1{left:728.220612px;}
@media print{
.v2{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls82{letter-spacing:-0.680000pt;}
.ls1f{letter-spacing:-0.373333pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls5e{letter-spacing:-0.317333pt;}
.ls75{letter-spacing:-0.272000pt;}
.ls1e{letter-spacing:-0.266667pt;}
.ls60{letter-spacing:-0.226667pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls5f{letter-spacing:-0.181333pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls61{letter-spacing:-0.136000pt;}
.ls1c{letter-spacing:-0.106667pt;}
.ls5d{letter-spacing:-0.090667pt;}
.ls1d{letter-spacing:-0.053333pt;}
.ls5c{letter-spacing:-0.045333pt;}
.lse{letter-spacing:0.000000pt;}
.ls79{letter-spacing:0.022667pt;}
.ls41{letter-spacing:0.045333pt;}
.ls4{letter-spacing:0.053333pt;}
.ls6a{letter-spacing:0.068000pt;}
.ls2e{letter-spacing:0.080000pt;}
.ls42{letter-spacing:0.090667pt;}
.ls3{letter-spacing:0.106667pt;}
.ls80{letter-spacing:0.113333pt;}
.ls30{letter-spacing:0.133333pt;}
.ls52{letter-spacing:0.136000pt;}
.ls25{letter-spacing:0.146137pt;}
.ls5b{letter-spacing:0.158667pt;}
.lsd{letter-spacing:0.158926pt;}
.ls5{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.181333pt;}
.ls23{letter-spacing:0.186682pt;}
.ls55{letter-spacing:0.204000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls24{letter-spacing:0.224002pt;}
.lsc{letter-spacing:0.226667pt;}
.ls40{letter-spacing:0.234667pt;}
.ls2f{letter-spacing:0.240000pt;}
.ls43{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls5a{letter-spacing:0.272000pt;}
.ls38{letter-spacing:0.293333pt;}
.ls8a{letter-spacing:0.294667pt;}
.ls3e{letter-spacing:0.317333pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.346667pt;}
.ls49{letter-spacing:0.362667pt;}
.ls17{letter-spacing:0.373333pt;}
.ls3c{letter-spacing:0.385333pt;}
.ls28{letter-spacing:0.400000pt;}
.ls3f{letter-spacing:0.408000pt;}
.ls15{letter-spacing:0.426667pt;}
.ls48{letter-spacing:0.430667pt;}
.ls58{letter-spacing:0.453333pt;}
.ls57{letter-spacing:0.476000pt;}
.ls12{letter-spacing:0.480000pt;}
.ls53{letter-spacing:0.498667pt;}
.ls63{letter-spacing:0.521333pt;}
.ls18{letter-spacing:0.533333pt;}
.ls46{letter-spacing:0.544000pt;}
.ls29{letter-spacing:0.560000pt;}
.ls66{letter-spacing:0.566667pt;}
.ls26{letter-spacing:0.586667pt;}
.ls56{letter-spacing:0.589333pt;}
.ls76{letter-spacing:0.612000pt;}
.ls35{letter-spacing:0.613333pt;}
.ls4e{letter-spacing:0.634667pt;}
.ls8{letter-spacing:0.640000pt;}
.ls6b{letter-spacing:0.679991pt;}
.ls44{letter-spacing:0.680000pt;}
.ls11{letter-spacing:0.693333pt;}
.ls2d{letter-spacing:0.720000pt;}
.ls4b{letter-spacing:0.725333pt;}
.ls6{letter-spacing:0.746667pt;}
.ls92{letter-spacing:0.747989pt;}
.ls4c{letter-spacing:0.748000pt;}
.ls65{letter-spacing:0.770667pt;}
.ls14{letter-spacing:0.800000pt;}
.ls4a{letter-spacing:0.816000pt;}
.ls67{letter-spacing:0.838667pt;}
.ls16{letter-spacing:0.853333pt;}
.ls3a{letter-spacing:0.861333pt;}
.ls1b{letter-spacing:0.880000pt;}
.ls7{letter-spacing:0.906667pt;}
.ls98{letter-spacing:0.929333pt;}
.ls73{letter-spacing:0.933857pt;}
.ls7b{letter-spacing:0.952000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls37{letter-spacing:0.986667pt;}
.ls50{letter-spacing:0.997333pt;}
.ls85{letter-spacing:1.006382pt;}
.ls13{letter-spacing:1.013333pt;}
.lsb{letter-spacing:1.040000pt;}
.ls71{letter-spacing:1.042667pt;}
.ls19{letter-spacing:1.066667pt;}
.ls3b{letter-spacing:1.088000pt;}
.ls34{letter-spacing:1.093333pt;}
.ls8b{letter-spacing:1.110667pt;}
.ls22{letter-spacing:1.120000pt;}
.ls90{letter-spacing:1.133333pt;}
.ls8e{letter-spacing:1.156000pt;}
.ls21{letter-spacing:1.173333pt;}
.ls45{letter-spacing:1.178667pt;}
.ls2c{letter-spacing:1.200000pt;}
.ls6d{letter-spacing:1.224000pt;}
.ls36{letter-spacing:1.226667pt;}
.ls4d{letter-spacing:1.269333pt;}
.ls20{letter-spacing:1.280000pt;}
.ls4f{letter-spacing:1.314667pt;}
.ls33{letter-spacing:1.333333pt;}
.ls70{letter-spacing:1.360000pt;}
.ls89{letter-spacing:1.405333pt;}
.ls7e{letter-spacing:1.423429pt;}
.ls32{letter-spacing:1.440000pt;}
.ls96{letter-spacing:1.441600pt;}
.ls8d{letter-spacing:1.450667pt;}
.ls2b{letter-spacing:1.493333pt;}
.ls51{letter-spacing:1.532267pt;}
.ls77{letter-spacing:1.541333pt;}
.ls69{letter-spacing:1.586667pt;}
.ls6e{letter-spacing:1.632000pt;}
.ls7c{letter-spacing:1.677333pt;}
.ls74{letter-spacing:1.722645pt;}
.ls47{letter-spacing:1.749858pt;}
.ls7d{letter-spacing:1.767995pt;}
.ls99{letter-spacing:1.772533pt;}
.ls72{letter-spacing:1.845067pt;}
.ls62{letter-spacing:1.872267pt;}
.ls2a{letter-spacing:1.920000pt;}
.ls87{letter-spacing:1.940267pt;}
.ls8f{letter-spacing:1.994667pt;}
.ls54{letter-spacing:2.040000pt;}
.ls31{letter-spacing:2.080000pt;}
.ls7a{letter-spacing:2.130649pt;}
.ls93{letter-spacing:2.212267pt;}
.ls7f{letter-spacing:2.257600pt;}
.ls97{letter-spacing:2.266667pt;}
.ls59{letter-spacing:2.330128pt;}
.ls95{letter-spacing:2.334667pt;}
.ls88{letter-spacing:2.348238pt;}
.ls94{letter-spacing:2.375459pt;}
.ls64{letter-spacing:2.837867pt;}
.ls78{letter-spacing:2.851467pt;}
.ls39{letter-spacing:2.880000pt;}
.ls6c{letter-spacing:3.050933pt;}
.ls86{letter-spacing:3.372800pt;}
.ls0{letter-spacing:3.546667pt;}
.ls83{letter-spacing:3.712772pt;}
.ls68{letter-spacing:3.817067pt;}
.ls81{letter-spacing:4.102641pt;}
.ls84{letter-spacing:4.578647pt;}
.ls6f{letter-spacing:4.642133pt;}
.ls91{letter-spacing:4.859733pt;}
.ls9a{letter-spacing:4.896000pt;}
.ls8c{letter-spacing:4.986667pt;}
.ws62{word-spacing:-14.533333pt;}
.ws8e{word-spacing:-14.400000pt;}
.ws39{word-spacing:-14.346667pt;}
.ws8d{word-spacing:-14.240000pt;}
.ws3a{word-spacing:-14.080000pt;}
.ws2{word-spacing:-14.034667pt;}
.ws1e{word-spacing:-13.600000pt;}
.ws6e{word-spacing:-13.440000pt;}
.ws82{word-spacing:-13.386667pt;}
.ws25{word-spacing:-13.333333pt;}
.ws83{word-spacing:-13.226667pt;}
.ws95{word-spacing:-13.184000pt;}
.ws3b{word-spacing:-13.066667pt;}
.ws58{word-spacing:-13.013333pt;}
.ws7{word-spacing:-12.928000pt;}
.wsc2{word-spacing:-12.920000pt;}
.wsf4{word-spacing:-12.466667pt;}
.ws103{word-spacing:-12.262667pt;}
.wsd9{word-spacing:-12.194667pt;}
.wsf3{word-spacing:-12.149333pt;}
.wsc1{word-spacing:-12.104000pt;}
.ws101{word-spacing:-11.968000pt;}
.ws104{word-spacing:-11.922667pt;}
.ws96{word-spacing:-11.877333pt;}
.wsbd{word-spacing:-11.605333pt;}
.ws99{word-spacing:-11.560000pt;}
.ws98{word-spacing:-11.514667pt;}
.wsc3{word-spacing:-11.469333pt;}
.ws94{word-spacing:-11.424000pt;}
.ws26{word-spacing:-11.333333pt;}
.ws97{word-spacing:-11.288000pt;}
.wsc0{word-spacing:-11.197333pt;}
.wse1{word-spacing:-11.152000pt;}
.ws102{word-spacing:-11.106667pt;}
.ws38{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.wse0{word-spacing:-10.653333pt;}
.ws6{word-spacing:-10.240000pt;}
.ws8f{word-spacing:-9.565333pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws8{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.wsa{word-spacing:-2.133333pt;}
.wsd8{word-spacing:-1.632000pt;}
.wsd{word-spacing:-1.333333pt;}
.ws4e{word-spacing:-1.280000pt;}
.ws1d{word-spacing:-1.226667pt;}
.wse8{word-spacing:-1.178667pt;}
.ws5b{word-spacing:-1.173333pt;}
.ws9b{word-spacing:-1.133333pt;}
.ws51{word-spacing:-1.120000pt;}
.wsca{word-spacing:-1.088000pt;}
.ws3f{word-spacing:-1.066667pt;}
.wse6{word-spacing:-1.042667pt;}
.ws29{word-spacing:-1.013333pt;}
.wsaf{word-spacing:-0.997333pt;}
.ws20{word-spacing:-0.960000pt;}
.wsa2{word-spacing:-0.952000pt;}
.ws16{word-spacing:-0.906667pt;}
.ws9a{word-spacing:-0.861333pt;}
.ws35{word-spacing:-0.853333pt;}
.wsc6{word-spacing:-0.816000pt;}
.ws55{word-spacing:-0.800000pt;}
.wsc8{word-spacing:-0.770667pt;}
.ws5d{word-spacing:-0.746667pt;}
.wsc7{word-spacing:-0.725333pt;}
.ws6f{word-spacing:-0.693333pt;}
.wsa3{word-spacing:-0.680000pt;}
.ws10{word-spacing:-0.640000pt;}
.wsa4{word-spacing:-0.634667pt;}
.wsde{word-spacing:-0.589333pt;}
.ws48{word-spacing:-0.586667pt;}
.ws22{word-spacing:-0.544000pt;}
.ws18{word-spacing:-0.533333pt;}
.wsb5{word-spacing:-0.498667pt;}
.ws4d{word-spacing:-0.480000pt;}
.wsa0{word-spacing:-0.453333pt;}
.ws5a{word-spacing:-0.426667pt;}
.wsdd{word-spacing:-0.408000pt;}
.ws36{word-spacing:-0.373333pt;}
.wsd2{word-spacing:-0.362667pt;}
.ws65{word-spacing:-0.320000pt;}
.wsb1{word-spacing:-0.317333pt;}
.wseb{word-spacing:-0.272000pt;}
.ws2c{word-spacing:-0.266667pt;}
.ws9f{word-spacing:-0.234667pt;}
.ws93{word-spacing:-0.226667pt;}
.ws45{word-spacing:-0.213333pt;}
.wsb2{word-spacing:-0.181333pt;}
.ws21{word-spacing:-0.160000pt;}
.wsdb{word-spacing:-0.136000pt;}
.ws19{word-spacing:-0.106667pt;}
.wsbc{word-spacing:-0.090667pt;}
.ws71{word-spacing:-0.053333pt;}
.ws24{word-spacing:-0.045333pt;}
.ws9{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.045333pt;}
.ws54{word-spacing:0.053333pt;}
.ws7f{word-spacing:0.090667pt;}
.ws1f{word-spacing:0.106667pt;}
.wsb3{word-spacing:0.136000pt;}
.ws4c{word-spacing:0.160000pt;}
.wsbb{word-spacing:0.181333pt;}
.wse{word-spacing:0.213333pt;}
.wsf7{word-spacing:0.226667pt;}
.ws33{word-spacing:0.266667pt;}
.wsef{word-spacing:0.272000pt;}
.wsfe{word-spacing:0.317333pt;}
.ws40{word-spacing:0.320000pt;}
.wsd1{word-spacing:0.362667pt;}
.ws2e{word-spacing:0.373333pt;}
.wscf{word-spacing:0.408000pt;}
.ws49{word-spacing:0.426667pt;}
.ws81{word-spacing:0.453333pt;}
.ws6d{word-spacing:0.533333pt;}
.wsff{word-spacing:0.544000pt;}
.wsb{word-spacing:0.586667pt;}
.ws105{word-spacing:0.589333pt;}
.wsea{word-spacing:0.634667pt;}
.ws4a{word-spacing:0.640000pt;}
.wsed{word-spacing:0.680000pt;}
.ws57{word-spacing:0.693333pt;}
.wsb8{word-spacing:0.725333pt;}
.ws2f{word-spacing:0.746667pt;}
.wsd0{word-spacing:0.816000pt;}
.ws11{word-spacing:0.853333pt;}
.ws9e{word-spacing:0.861333pt;}
.ws37{word-spacing:0.906667pt;}
.ws56{word-spacing:0.960000pt;}
.wsf0{word-spacing:0.997333pt;}
.ws17{word-spacing:1.013333pt;}
.wsa1{word-spacing:1.042667pt;}
.ws15{word-spacing:1.066667pt;}
.wsba{word-spacing:1.088000pt;}
.ws8b{word-spacing:1.120000pt;}
.ws9c{word-spacing:1.133333pt;}
.ws59{word-spacing:1.173333pt;}
.wsb6{word-spacing:1.178667pt;}
.wsc5{word-spacing:1.224000pt;}
.wsf{word-spacing:1.226667pt;}
.wsda{word-spacing:1.269333pt;}
.ws66{word-spacing:1.280000pt;}
.wsf1{word-spacing:1.314667pt;}
.wsc{word-spacing:1.333333pt;}
.wsb4{word-spacing:1.360000pt;}
.ws27{word-spacing:1.386667pt;}
.wsdc{word-spacing:1.405333pt;}
.ws34{word-spacing:1.440000pt;}
.wsf9{word-spacing:1.450667pt;}
.ws90{word-spacing:1.493333pt;}
.wsad{word-spacing:1.496000pt;}
.wsd4{word-spacing:1.541333pt;}
.ws2d{word-spacing:1.546667pt;}
.wsa5{word-spacing:1.586667pt;}
.ws4b{word-spacing:1.600000pt;}
.wsdf{word-spacing:1.632000pt;}
.ws32{word-spacing:1.653333pt;}
.ws4f{word-spacing:1.706667pt;}
.wsd6{word-spacing:1.722667pt;}
.ws1c{word-spacing:1.760000pt;}
.ws9d{word-spacing:1.768000pt;}
.ws12{word-spacing:1.813333pt;}
.wsb7{word-spacing:1.858667pt;}
.ws14{word-spacing:1.866667pt;}
.wsa9{word-spacing:1.904000pt;}
.ws3c{word-spacing:1.920000pt;}
.wse7{word-spacing:1.949333pt;}
.wsb9{word-spacing:1.994667pt;}
.ws28{word-spacing:2.026667pt;}
.wsab{word-spacing:2.040000pt;}
.ws68{word-spacing:2.080000pt;}
.wsc9{word-spacing:2.085333pt;}
.wsee{word-spacing:2.130667pt;}
.ws3e{word-spacing:2.133333pt;}
.ws100{word-spacing:2.176000pt;}
.ws72{word-spacing:2.186667pt;}
.ws85{word-spacing:2.240000pt;}
.wse5{word-spacing:2.266667pt;}
.ws43{word-spacing:2.293333pt;}
.wsa8{word-spacing:2.312000pt;}
.ws2a{word-spacing:2.346667pt;}
.wsd3{word-spacing:2.357333pt;}
.ws5e{word-spacing:2.400000pt;}
.wse2{word-spacing:2.402667pt;}
.wsc4{word-spacing:2.448000pt;}
.ws3d{word-spacing:2.453333pt;}
.wscb{word-spacing:2.493333pt;}
.ws53{word-spacing:2.506667pt;}
.ws5c{word-spacing:2.560000pt;}
.wsbf{word-spacing:2.584000pt;}
.ws13{word-spacing:2.613333pt;}
.wscd{word-spacing:2.629333pt;}
.ws61{word-spacing:2.666667pt;}
.wscc{word-spacing:2.674667pt;}
.ws1a{word-spacing:2.720000pt;}
.wsf5{word-spacing:2.765333pt;}
.wsaa{word-spacing:2.810667pt;}
.ws70{word-spacing:2.826667pt;}
.wsd5{word-spacing:2.856000pt;}
.ws2b{word-spacing:2.880000pt;}
.wsfc{word-spacing:2.901333pt;}
.ws31{word-spacing:2.933333pt;}
.wse9{word-spacing:2.946667pt;}
.ws69{word-spacing:2.986667pt;}
.ws46{word-spacing:3.040000pt;}
.wsf2{word-spacing:3.082667pt;}
.wsb0{word-spacing:3.173333pt;}
.ws1b{word-spacing:3.200000pt;}
.ws87{word-spacing:3.253333pt;}
.wsd7{word-spacing:3.264000pt;}
.ws47{word-spacing:3.306667pt;}
.wsfa{word-spacing:3.354667pt;}
.ws30{word-spacing:3.413333pt;}
.wsec{word-spacing:3.445333pt;}
.ws6b{word-spacing:3.466667pt;}
.wsf8{word-spacing:3.490667pt;}
.ws5f{word-spacing:3.520000pt;}
.ws89{word-spacing:3.573333pt;}
.wsfb{word-spacing:3.581333pt;}
.ws52{word-spacing:3.626667pt;}
.wsae{word-spacing:3.672000pt;}
.ws44{word-spacing:3.680000pt;}
.wsbe{word-spacing:3.717333pt;}
.ws60{word-spacing:3.733333pt;}
.ws50{word-spacing:3.786667pt;}
.ws42{word-spacing:3.840000pt;}
.ws92{word-spacing:3.853333pt;}
.ws74{word-spacing:3.893333pt;}
.wsfd{word-spacing:3.898667pt;}
.ws67{word-spacing:3.946667pt;}
.ws6a{word-spacing:4.000000pt;}
.ws76{word-spacing:4.080000pt;}
.ws8a{word-spacing:4.160000pt;}
.wsf6{word-spacing:4.170667pt;}
.ws7d{word-spacing:4.216000pt;}
.wsa6{word-spacing:4.261333pt;}
.ws6c{word-spacing:4.373333pt;}
.ws86{word-spacing:4.480000pt;}
.ws80{word-spacing:4.488000pt;}
.ws41{word-spacing:4.533333pt;}
.wsac{word-spacing:4.578667pt;}
.ws88{word-spacing:4.640000pt;}
.wse3{word-spacing:4.714667pt;}
.ws7a{word-spacing:4.760000pt;}
.ws8c{word-spacing:4.800000pt;}
.ws7c{word-spacing:5.077333pt;}
.ws84{word-spacing:5.280000pt;}
.ws64{word-spacing:5.493333pt;}
.wse4{word-spacing:6.029333pt;}
.wsce{word-spacing:6.256000pt;}
.ws77{word-spacing:7.298667pt;}
.ws63{word-spacing:7.733333pt;}
.ws75{word-spacing:7.752000pt;}
.ws7e{word-spacing:8.250667pt;}
.ws73{word-spacing:8.266667pt;}
.ws7b{word-spacing:9.248000pt;}
.ws79{word-spacing:9.928000pt;}
.ws78{word-spacing:11.288000pt;}
.ws106{word-spacing:12.013333pt;}
.ws91{word-spacing:12.320000pt;}
.ws107{word-spacing:15.640000pt;}
.ws23{word-spacing:64.237333pt;}
._8{margin-left:-2456.658653pt;}
._4{margin-left:-14.733333pt;}
._f{margin-left:-8.426685pt;}
._e{margin-left:-5.962695pt;}
._22{margin-left:-5.047232pt;}
._1{margin-left:-4.093834pt;}
._2{margin-left:-2.405333pt;}
._0{margin-left:-1.450667pt;}
._3{width:1.077333pt;}
._a{width:2.160000pt;}
._10{width:3.834667pt;}
._21{width:4.895995pt;}
._11{width:6.528000pt;}
._1f{width:10.426667pt;}
._1e{width:12.239992pt;}
._12{width:13.688800pt;}
._b{width:14.826667pt;}
._5{width:16.320000pt;}
._d{width:36.720000pt;}
._15{width:43.021333pt;}
._6{width:48.552000pt;}
._1d{width:69.416000pt;}
._9{width:87.312000pt;}
._1b{width:135.002667pt;}
._17{width:182.738667pt;}
._1c{width:192.757333pt;}
._16{width:207.808000pt;}
._14{width:237.002667pt;}
._19{width:317.288000pt;}
._18{width:387.327985pt;}
._1a{width:618.893319pt;}
._13{width:695.821319pt;}
._20{width:1443.186727pt;}
._c{width:1464.719442pt;}
._7{width:1677.287986pt;}
.fs7{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.181335pt;}
.y43{bottom:100.400267pt;}
.y94{bottom:100.928263pt;}
.y13d{bottom:101.201599pt;}
.y145{bottom:101.235595pt;}
.y1f3{bottom:101.573594pt;}
.yc9{bottom:101.981628pt;}
.y131{bottom:101.986898pt;}
.y163{bottom:101.986938pt;}
.ye8{bottom:102.110921pt;}
.y18d{bottom:102.111084pt;}
.y277{bottom:103.657620pt;}
.y235{bottom:103.783619pt;}
.y2b9{bottom:104.008954pt;}
.y1b5{bottom:110.158928pt;}
.y42{bottom:113.728267pt;}
.y13c{bottom:114.529599pt;}
.y144{bottom:114.563595pt;}
.y1f2{bottom:114.901594pt;}
.y2c{bottom:116.187866pt;}
.y276{bottom:116.985620pt;}
.y234{bottom:117.111619pt;}
.y2b8{bottom:117.336954pt;}
.y93{bottom:117.594930pt;}
.yc8{bottom:118.648295pt;}
.y130{bottom:118.653564pt;}
.y162{bottom:118.653605pt;}
.ye7{bottom:118.777588pt;}
.y18c{bottom:118.777751pt;}
.y1b4{bottom:123.486928pt;}
.y41{bottom:127.056267pt;}
.y13b{bottom:127.857599pt;}
.y143{bottom:127.891595pt;}
.y1f1{bottom:128.229594pt;}
.y275{bottom:130.313620pt;}
.y233{bottom:130.439619pt;}
.y2b7{bottom:130.664954pt;}
.y2b{bottom:132.854533pt;}
.y92{bottom:134.261597pt;}
.yc7{bottom:135.314962pt;}
.y12f{bottom:135.320231pt;}
.y161{bottom:135.320272pt;}
.ye6{bottom:135.444255pt;}
.y18b{bottom:135.444417pt;}
.y13a{bottom:141.185599pt;}
.y142{bottom:141.219595pt;}
.y1f0{bottom:141.557594pt;}
.y274{bottom:143.641620pt;}
.y232{bottom:143.767619pt;}
.y2b6{bottom:143.992954pt;}
.y40{bottom:144.917603pt;}
.y2a{bottom:149.521200pt;}
.y1b3{bottom:150.153564pt;}
.y91{bottom:150.928263pt;}
.yc6{bottom:151.981628pt;}
.y12e{bottom:151.986898pt;}
.y160{bottom:151.986938pt;}
.ye5{bottom:152.110921pt;}
.y18a{bottom:152.111084pt;}
.y139{bottom:154.513599pt;}
.y141{bottom:154.547595pt;}
.y1ef{bottom:154.885594pt;}
.y273{bottom:156.969620pt;}
.y231{bottom:157.095619pt;}
.y2b5{bottom:157.320954pt;}
.y3f{bottom:160.436936pt;}
.y29{bottom:166.187866pt;}
.y1b2{bottom:166.820231pt;}
.y90{bottom:167.594930pt;}
.y138{bottom:167.841599pt;}
.y140{bottom:167.875595pt;}
.y1ee{bottom:168.213594pt;}
.yc5{bottom:168.648295pt;}
.y12d{bottom:168.653564pt;}
.y15f{bottom:168.653605pt;}
.ye4{bottom:168.777588pt;}
.y189{bottom:168.777751pt;}
.y272{bottom:170.297620pt;}
.y230{bottom:170.423619pt;}
.y2b4{bottom:170.648954pt;}
.y3e{bottom:173.764936pt;}
.y137{bottom:181.169599pt;}
.y13f{bottom:181.203595pt;}
.y1ed{bottom:181.541594pt;}
.y28{bottom:182.854533pt;}
.y1b1{bottom:183.486898pt;}
.y271{bottom:183.625620pt;}
.y22f{bottom:183.751619pt;}
.y2b3{bottom:183.976954pt;}
.y8f{bottom:184.261597pt;}
.yc4{bottom:185.314962pt;}
.y12c{bottom:185.320231pt;}
.y15e{bottom:185.320272pt;}
.ye3{bottom:185.444255pt;}
.y188{bottom:185.444417pt;}
.y3d{bottom:191.626261pt;}
.y136{bottom:194.497599pt;}
.y13e{bottom:194.531595pt;}
.y1ec{bottom:194.869594pt;}
.y270{bottom:196.953620pt;}
.y22e{bottom:197.079619pt;}
.y2b2{bottom:197.304954pt;}
.y27{bottom:199.521200pt;}
.y1b0{bottom:200.153564pt;}
.y8e{bottom:200.928263pt;}
.yc3{bottom:201.981628pt;}
.y12b{bottom:201.986898pt;}
.y15d{bottom:201.986938pt;}
.ye2{bottom:202.110921pt;}
.y187{bottom:202.111084pt;}
.y3c{bottom:207.140262pt;}
.y1eb{bottom:208.197594pt;}
.y26f{bottom:210.281620pt;}
.y22d{bottom:210.407619pt;}
.y2b1{bottom:210.632954pt;}
.y26{bottom:216.187866pt;}
.y1af{bottom:216.820231pt;}
.y8d{bottom:217.594930pt;}
.yc2{bottom:218.648295pt;}
.y12a{bottom:218.653564pt;}
.y15c{bottom:218.653605pt;}
.ye1{bottom:218.777588pt;}
.y186{bottom:218.777751pt;}
.y1ea{bottom:221.525594pt;}
.y26e{bottom:223.609620pt;}
.y22c{bottom:223.735619pt;}
.y2b0{bottom:223.960954pt;}
.y3b{bottom:225.001607pt;}
.y25{bottom:232.854533pt;}
.y1ae{bottom:233.486898pt;}
.y8c{bottom:234.261597pt;}
.y1e9{bottom:234.853594pt;}
.yc1{bottom:235.314962pt;}
.y129{bottom:235.320231pt;}
.y15b{bottom:235.320272pt;}
.ye0{bottom:235.444255pt;}
.y185{bottom:235.444417pt;}
.y26d{bottom:236.937620pt;}
.y22b{bottom:237.063619pt;}
.y2af{bottom:237.288954pt;}
.y3a{bottom:240.515608pt;}
.y1e8{bottom:248.181594pt;}
.y24{bottom:249.521200pt;}
.y1ad{bottom:250.153564pt;}
.y26c{bottom:250.265620pt;}
.y22a{bottom:250.391619pt;}
.y2ae{bottom:250.616954pt;}
.y8b{bottom:250.928263pt;}
.yc0{bottom:251.981628pt;}
.y128{bottom:251.986898pt;}
.y15a{bottom:251.986938pt;}
.ydf{bottom:252.110921pt;}
.y184{bottom:252.111084pt;}
.y39{bottom:258.376933pt;}
.y1e7{bottom:261.509594pt;}
.y26b{bottom:263.593620pt;}
.y229{bottom:263.719619pt;}
.y2ad{bottom:263.944954pt;}
.y23{bottom:266.187866pt;}
.y1ac{bottom:266.820231pt;}
.y8a{bottom:267.594930pt;}
.ybf{bottom:268.648295pt;}
.y127{bottom:268.653564pt;}
.y159{bottom:268.653605pt;}
.yde{bottom:268.777588pt;}
.y183{bottom:268.777751pt;}
.y38{bottom:273.890933pt;}
.y1e6{bottom:274.837594pt;}
.y26a{bottom:276.921620pt;}
.y228{bottom:277.047619pt;}
.y2ac{bottom:277.272954pt;}
.y22{bottom:282.854533pt;}
.y1ab{bottom:283.486898pt;}
.y89{bottom:284.261597pt;}
.ybe{bottom:285.314962pt;}
.y126{bottom:285.320231pt;}
.y158{bottom:285.320272pt;}
.ydd{bottom:285.444255pt;}
.y182{bottom:285.444417pt;}
.y1e5{bottom:288.165594pt;}
.y269{bottom:290.249620pt;}
.y227{bottom:290.375619pt;}
.y2ab{bottom:290.600954pt;}
.y37{bottom:291.752258pt;}
.y21{bottom:299.521200pt;}
.y1aa{bottom:300.153564pt;}
.y88{bottom:300.928263pt;}
.y1e4{bottom:301.493594pt;}
.ybd{bottom:301.981628pt;}
.y125{bottom:301.986898pt;}
.y157{bottom:301.986938pt;}
.ydc{bottom:302.110921pt;}
.y181{bottom:302.111084pt;}
.y268{bottom:303.577620pt;}
.y226{bottom:303.703619pt;}
.y2aa{bottom:303.928954pt;}
.y36{bottom:307.271592pt;}
.y1e3{bottom:314.821594pt;}
.y20{bottom:316.187866pt;}
.y1a9{bottom:316.820231pt;}
.y267{bottom:316.905620pt;}
.y225{bottom:317.031619pt;}
.y2a9{bottom:317.256954pt;}
.y87{bottom:317.594930pt;}
.ybc{bottom:318.648295pt;}
.y124{bottom:318.653564pt;}
.y156{bottom:318.653605pt;}
.ydb{bottom:318.777588pt;}
.y180{bottom:318.777751pt;}
.y35{bottom:320.599592pt;}
.y1e2{bottom:328.149594pt;}
.y266{bottom:330.233620pt;}
.y224{bottom:330.359619pt;}
.y2a8{bottom:330.584954pt;}
.y1f{bottom:332.854533pt;}
.y1a8{bottom:333.486898pt;}
.y86{bottom:334.261597pt;}
.ybb{bottom:335.314962pt;}
.y123{bottom:335.320231pt;}
.y155{bottom:335.320272pt;}
.yda{bottom:335.444255pt;}
.y17f{bottom:335.444417pt;}
.y34{bottom:338.460937pt;}
.y1e1{bottom:341.477594pt;}
.y265{bottom:343.561620pt;}
.y223{bottom:343.687619pt;}
.y2a7{bottom:343.912954pt;}
.y1e{bottom:349.521200pt;}
.y1a7{bottom:350.153564pt;}
.y85{bottom:350.928263pt;}
.yba{bottom:351.981628pt;}
.y122{bottom:351.986898pt;}
.y154{bottom:351.986938pt;}
.yd9{bottom:352.110921pt;}
.y17e{bottom:352.111084pt;}
.y33{bottom:353.980271pt;}
.y1e0{bottom:354.805594pt;}
.y264{bottom:356.889620pt;}
.y222{bottom:357.015619pt;}
.y2a6{bottom:357.240954pt;}
.y1d{bottom:366.187866pt;}
.y1a6{bottom:366.820231pt;}
.y32{bottom:367.308271pt;}
.y84{bottom:367.594930pt;}
.y1df{bottom:368.133594pt;}
.yb9{bottom:368.648295pt;}
.y121{bottom:368.653564pt;}
.y153{bottom:368.653605pt;}
.yd8{bottom:368.777588pt;}
.y17d{bottom:368.777751pt;}
.y263{bottom:370.217620pt;}
.y221{bottom:370.343619pt;}
.y2a5{bottom:370.568954pt;}
.y1de{bottom:381.461594pt;}
.y1c{bottom:382.854533pt;}
.y1a5{bottom:383.486898pt;}
.y262{bottom:383.545620pt;}
.y220{bottom:383.671619pt;}
.y2a4{bottom:383.896954pt;}
.y31{bottom:385.169596pt;}
.yb8{bottom:385.314962pt;}
.y120{bottom:385.320231pt;}
.y152{bottom:385.320272pt;}
.yd7{bottom:385.444255pt;}
.y17c{bottom:385.444417pt;}
.y1dd{bottom:394.789594pt;}
.y261{bottom:396.873620pt;}
.y21f{bottom:396.999619pt;}
.y2a3{bottom:397.224954pt;}
.y1b{bottom:399.521200pt;}
.y1a4{bottom:400.153564pt;}
.y83{bottom:400.928263pt;}
.yb7{bottom:401.981628pt;}
.y11f{bottom:401.986898pt;}
.y151{bottom:401.986938pt;}
.yd6{bottom:402.110921pt;}
.y17b{bottom:402.111084pt;}
.y30{bottom:407.398151pt;}
.y1dc{bottom:408.117594pt;}
.y260{bottom:410.201620pt;}
.y21e{bottom:410.327619pt;}
.y2a2{bottom:410.552954pt;}
.y1a{bottom:416.187866pt;}
.y1a3{bottom:416.820231pt;}
.yb6{bottom:418.648295pt;}
.y11e{bottom:418.653564pt;}
.y150{bottom:418.653605pt;}
.yd5{bottom:418.777588pt;}
.y17a{bottom:418.777751pt;}
.y2f{bottom:420.726151pt;}
.y25f{bottom:423.529620pt;}
.y21d{bottom:423.655619pt;}
.y2a1{bottom:423.880954pt;}
.y19{bottom:432.854533pt;}
.y1a2{bottom:433.486898pt;}
.y63{bottom:434.396284pt;}
.yb5{bottom:435.314962pt;}
.y11d{bottom:435.320231pt;}
.y14f{bottom:435.320272pt;}
.yd4{bottom:435.444255pt;}
.y179{bottom:435.444417pt;}
.y25e{bottom:436.857620pt;}
.y21c{bottom:436.983619pt;}
.y2a0{bottom:437.208954pt;}
.y1db{bottom:438.117594pt;}
.y62{bottom:447.724284pt;}
.y2e{bottom:448.118818pt;}
.y18{bottom:449.521200pt;}
.y1a1{bottom:450.153564pt;}
.y25d{bottom:450.185620pt;}
.y21b{bottom:450.311619pt;}
.y29f{bottom:450.536954pt;}
.y82{bottom:450.928304pt;}
.yb4{bottom:451.981628pt;}
.y11c{bottom:451.986898pt;}
.y14e{bottom:451.986938pt;}
.yd3{bottom:452.110921pt;}
.y178{bottom:452.111084pt;}
.y2d{bottom:461.446818pt;}
.y25c{bottom:463.513620pt;}
.y21a{bottom:463.639619pt;}
.y29e{bottom:463.864954pt;}
.y1a0{bottom:466.820231pt;}
.y81{bottom:467.594971pt;}
.yb3{bottom:468.648295pt;}
.y11b{bottom:468.653564pt;}
.y14d{bottom:468.653605pt;}
.yd2{bottom:468.777588pt;}
.y177{bottom:468.777751pt;}
.y25b{bottom:476.841620pt;}
.y219{bottom:476.967619pt;}
.y29d{bottom:477.192954pt;}
.y17{bottom:482.854533pt;}
.y19f{bottom:483.486898pt;}
.y80{bottom:484.261637pt;}
.yb2{bottom:485.314962pt;}
.y11a{bottom:485.320231pt;}
.y14c{bottom:485.320272pt;}
.yd1{bottom:485.444255pt;}
.y176{bottom:485.444417pt;}
.y25a{bottom:490.169620pt;}
.y218{bottom:490.295619pt;}
.y29c{bottom:490.520954pt;}
.y1da{bottom:493.244967pt;}
.y19e{bottom:500.153564pt;}
.y61{bottom:500.813639pt;}
.y7f{bottom:500.928304pt;}
.yb1{bottom:501.981628pt;}
.y119{bottom:501.986898pt;}
.y14b{bottom:501.986938pt;}
.yd0{bottom:502.110921pt;}
.y175{bottom:502.111084pt;}
.y259{bottom:503.497620pt;}
.y217{bottom:503.623619pt;}
.y29b{bottom:503.848954pt;}
.y1d9{bottom:506.572967pt;}
.y19d{bottom:516.820231pt;}
.y258{bottom:516.825620pt;}
.y216{bottom:516.951619pt;}
.y29a{bottom:517.176954pt;}
.y60{bottom:517.480306pt;}
.y7e{bottom:517.594971pt;}
.yb0{bottom:518.648295pt;}
.y118{bottom:518.653564pt;}
.y14a{bottom:518.653605pt;}
.ycf{bottom:518.777588pt;}
.y174{bottom:518.777751pt;}
.y1d8{bottom:519.900967pt;}
.y257{bottom:530.153620pt;}
.y215{bottom:530.279619pt;}
.y299{bottom:530.504954pt;}
.y16{bottom:532.854574pt;}
.y1d7{bottom:533.228967pt;}
.y19c{bottom:533.486898pt;}
.y5f{bottom:534.146973pt;}
.y7d{bottom:534.261637pt;}
.yaf{bottom:535.314962pt;}
.y117{bottom:535.320231pt;}
.y149{bottom:535.320272pt;}
.yce{bottom:535.444255pt;}
.y173{bottom:535.444417pt;}
.y256{bottom:543.481620pt;}
.y214{bottom:543.607619pt;}
.y298{bottom:543.832954pt;}
.y1d6{bottom:546.556967pt;}
.y19b{bottom:550.153564pt;}
.y5e{bottom:550.813639pt;}
.y7c{bottom:550.928304pt;}
.yae{bottom:551.981628pt;}
.y116{bottom:551.986898pt;}
.y148{bottom:551.986938pt;}
.ycd{bottom:552.110921pt;}
.y172{bottom:552.111084pt;}
.y255{bottom:556.809620pt;}
.y213{bottom:556.935619pt;}
.y297{bottom:557.160954pt;}
.y1d5{bottom:559.884967pt;}
.y15{bottom:566.187907pt;}
.y19a{bottom:566.820231pt;}
.y5d{bottom:567.480306pt;}
.y7b{bottom:567.594971pt;}
.yad{bottom:568.648295pt;}
.y115{bottom:568.653564pt;}
.ycc{bottom:568.777588pt;}
.y171{bottom:568.777751pt;}
.y254{bottom:570.137620pt;}
.y212{bottom:570.263619pt;}
.y296{bottom:570.488954pt;}
.y1d4{bottom:573.212967pt;}
.y14{bottom:582.854574pt;}
.y253{bottom:583.465620pt;}
.y199{bottom:583.486898pt;}
.y211{bottom:583.591619pt;}
.y295{bottom:583.816954pt;}
.y5c{bottom:584.146973pt;}
.y7a{bottom:584.261637pt;}
.y147{bottom:585.314938pt;}
.yac{bottom:585.314962pt;}
.y114{bottom:585.320231pt;}
.ycb{bottom:585.444255pt;}
.y170{bottom:585.444417pt;}
.y1d3{bottom:586.540967pt;}
.y252{bottom:596.793620pt;}
.y210{bottom:596.919619pt;}
.y294{bottom:597.144954pt;}
.y13{bottom:599.521240pt;}
.y1d2{bottom:599.868967pt;}
.y198{bottom:600.153564pt;}
.y5b{bottom:600.813639pt;}
.y79{bottom:600.928304pt;}
.yab{bottom:601.981628pt;}
.y113{bottom:601.986898pt;}
.y146{bottom:601.986938pt;}
.yca{bottom:602.110921pt;}
.y16f{bottom:602.111084pt;}
.y251{bottom:610.121620pt;}
.y2d4{bottom:610.189607pt;}
.y20f{bottom:610.247619pt;}
.y293{bottom:610.472954pt;}
.y1d1{bottom:613.196967pt;}
.y12{bottom:616.187907pt;}
.y197{bottom:616.820231pt;}
.y5a{bottom:617.480306pt;}
.y78{bottom:617.594971pt;}
.yaa{bottom:618.648295pt;}
.y112{bottom:618.653564pt;}
.y16e{bottom:618.777751pt;}
.y250{bottom:623.449620pt;}
.y2d3{bottom:623.517607pt;}
.y20e{bottom:623.575619pt;}
.y292{bottom:623.800954pt;}
.y1d0{bottom:626.524967pt;}
.y11{bottom:632.854574pt;}
.y196{bottom:633.486898pt;}
.y59{bottom:634.146973pt;}
.y77{bottom:634.261637pt;}
.ya9{bottom:635.314962pt;}
.y111{bottom:635.320231pt;}
.y16d{bottom:635.444417pt;}
.y24f{bottom:636.777620pt;}
.y20d{bottom:636.903619pt;}
.y291{bottom:637.128954pt;}
.y1cf{bottom:639.852967pt;}
.y10{bottom:649.521240pt;}
.y24e{bottom:650.105620pt;}
.y195{bottom:650.153564pt;}
.y20c{bottom:650.231619pt;}
.y2d2{bottom:650.264273pt;}
.y290{bottom:650.456954pt;}
.y58{bottom:650.813639pt;}
.y76{bottom:650.928304pt;}
.ya8{bottom:651.981628pt;}
.y110{bottom:651.986898pt;}
.y16c{bottom:652.111084pt;}
.y24d{bottom:663.433620pt;}
.y20b{bottom:663.559619pt;}
.y2d1{bottom:663.592273pt;}
.y28f{bottom:663.784954pt;}
.yf{bottom:666.187907pt;}
.y194{bottom:666.820231pt;}
.y57{bottom:667.480306pt;}
.y75{bottom:667.594971pt;}
.ya7{bottom:668.648295pt;}
.y10f{bottom:668.653564pt;}
.y16b{bottom:668.777751pt;}
.y1ce{bottom:673.172967pt;}
.yff{bottom:675.764306pt;}
.y24c{bottom:676.761620pt;}
.y20a{bottom:676.887619pt;}
.y2d0{bottom:676.920273pt;}
.y28e{bottom:677.112954pt;}
.ye{bottom:682.854574pt;}
.y193{bottom:683.486898pt;}
.y56{bottom:684.146973pt;}
.y74{bottom:684.261637pt;}
.ya6{bottom:685.314962pt;}
.y10e{bottom:685.320231pt;}
.y16a{bottom:685.444417pt;}
.yfe{bottom:689.092306pt;}
.y24b{bottom:690.089620pt;}
.y209{bottom:690.215619pt;}
.y2cf{bottom:690.248273pt;}
.y28d{bottom:690.440954pt;}
.yd{bottom:699.521240pt;}
.y1cd{bottom:699.840301pt;}
.y192{bottom:700.153564pt;}
.y55{bottom:700.813639pt;}
.y73{bottom:700.928304pt;}
.ya5{bottom:701.981628pt;}
.y10d{bottom:701.986898pt;}
.y169{bottom:702.111084pt;}
.yfd{bottom:702.420306pt;}
.y24a{bottom:703.417620pt;}
.y208{bottom:703.543619pt;}
.y2ce{bottom:703.576273pt;}
.y28c{bottom:703.768954pt;}
.yfc{bottom:715.748306pt;}
.yc{bottom:716.187907pt;}
.y249{bottom:716.745620pt;}
.y191{bottom:716.820231pt;}
.y207{bottom:716.871619pt;}
.y2cd{bottom:716.904273pt;}
.y28b{bottom:717.096954pt;}
.y54{bottom:717.480306pt;}
.y72{bottom:717.594971pt;}
.ya4{bottom:718.648295pt;}
.y10c{bottom:718.653564pt;}
.y168{bottom:718.777751pt;}
.y1cc{bottom:726.507634pt;}
.yfb{bottom:729.076306pt;}
.y248{bottom:730.073620pt;}
.y206{bottom:730.199619pt;}
.y2cc{bottom:730.232273pt;}
.y28a{bottom:730.424954pt;}
.yb{bottom:732.854574pt;}
.y190{bottom:733.486898pt;}
.y53{bottom:734.146973pt;}
.y71{bottom:734.261637pt;}
.ya3{bottom:735.314962pt;}
.y10b{bottom:735.320231pt;}
.y167{bottom:735.444417pt;}
.yfa{bottom:742.404306pt;}
.y247{bottom:743.401620pt;}
.y205{bottom:743.527619pt;}
.y2cb{bottom:743.560273pt;}
.y289{bottom:743.752954pt;}
.y18f{bottom:750.153564pt;}
.y52{bottom:750.813639pt;}
.y70{bottom:750.928304pt;}
.ya2{bottom:751.981628pt;}
.y135{bottom:751.986898pt;}
.y166{bottom:752.111084pt;}
.y1cb{bottom:753.174967pt;}
.yf9{bottom:755.732306pt;}
.y246{bottom:756.729620pt;}
.y204{bottom:756.855619pt;}
.y2ca{bottom:756.888273pt;}
.y288{bottom:757.080954pt;}
.y51{bottom:767.480306pt;}
.y6f{bottom:767.594971pt;}
.y10a{bottom:768.648231pt;}
.ya1{bottom:768.648295pt;}
.y134{bottom:768.653564pt;}
.y165{bottom:768.777751pt;}
.yf8{bottom:769.060306pt;}
.y245{bottom:770.057620pt;}
.y203{bottom:770.183619pt;}
.y2c9{bottom:770.216273pt;}
.y287{bottom:770.408954pt;}
.ya{bottom:772.128136pt;}
.y1ca{bottom:779.841634pt;}
.yf7{bottom:782.388306pt;}
.y244{bottom:783.385620pt;}
.y18e{bottom:783.486898pt;}
.y202{bottom:783.511619pt;}
.y2c8{bottom:783.544273pt;}
.y286{bottom:783.736954pt;}
.y50{bottom:784.146973pt;}
.y6e{bottom:784.261637pt;}
.ya0{bottom:785.314962pt;}
.y109{bottom:785.320231pt;}
.y164{bottom:785.444417pt;}
.y9{bottom:785.456136pt;}
.yf6{bottom:795.716306pt;}
.y243{bottom:796.713620pt;}
.y201{bottom:796.839619pt;}
.y2c7{bottom:796.872273pt;}
.y285{bottom:797.064954pt;}
.y4f{bottom:800.813639pt;}
.y6d{bottom:800.928304pt;}
.y9f{bottom:801.981628pt;}
.y133{bottom:801.986898pt;}
.yf5{bottom:809.044306pt;}
.y1c9{bottom:809.882967pt;}
.y242{bottom:810.041620pt;}
.y200{bottom:810.167619pt;}
.y2c6{bottom:810.200273pt;}
.y284{bottom:810.392954pt;}
.y4e{bottom:817.480306pt;}
.y6c{bottom:817.594971pt;}
.y9e{bottom:818.648295pt;}
.y132{bottom:818.653564pt;}
.yf4{bottom:822.372306pt;}
.y1c8{bottom:823.210967pt;}
.y8{bottom:823.322835pt;}
.y241{bottom:823.369620pt;}
.y1ff{bottom:823.495619pt;}
.y2c5{bottom:823.528273pt;}
.y283{bottom:823.720954pt;}
.y1be{bottom:831.390688pt;}
.y4d{bottom:834.146973pt;}
.y6b{bottom:834.261637pt;}
.y9d{bottom:835.314962pt;}
.y108{bottom:835.320231pt;}
.yf3{bottom:835.700306pt;}
.y240{bottom:836.697620pt;}
.y1fe{bottom:836.823619pt;}
.y2c4{bottom:836.856273pt;}
.y282{bottom:837.048954pt;}
.y7{bottom:839.989502pt;}
.y1bd{bottom:844.718688pt;}
.yf2{bottom:849.028306pt;}
.y1c7{bottom:849.878301pt;}
.y23f{bottom:850.025620pt;}
.y1fd{bottom:850.151619pt;}
.y2c3{bottom:850.184273pt;}
.y281{bottom:850.376954pt;}
.y4c{bottom:850.813639pt;}
.y6a{bottom:850.928304pt;}
.y9c{bottom:851.981628pt;}
.y107{bottom:851.986898pt;}
.y6{bottom:856.656169pt;}
.y1bc{bottom:861.424021pt;}
.yf1{bottom:862.356306pt;}
.y1c6{bottom:863.206301pt;}
.y23e{bottom:863.353620pt;}
.y1fc{bottom:863.479619pt;}
.y2c2{bottom:863.512273pt;}
.y280{bottom:863.704954pt;}
.y4b{bottom:867.480306pt;}
.y69{bottom:867.594971pt;}
.y9b{bottom:868.648295pt;}
.y106{bottom:868.653564pt;}
.yf0{bottom:875.684306pt;}
.y1c5{bottom:876.534301pt;}
.y23d{bottom:876.681620pt;}
.y1fb{bottom:876.807619pt;}
.y2c1{bottom:876.840273pt;}
.y27f{bottom:877.032954pt;}
.y1bb{bottom:878.061355pt;}
.y4a{bottom:884.146973pt;}
.y68{bottom:884.261637pt;}
.y9a{bottom:885.314962pt;}
.y105{bottom:885.320231pt;}
.yef{bottom:889.012306pt;}
.y1c4{bottom:889.862301pt;}
.y23c{bottom:890.009620pt;}
.y1fa{bottom:890.135619pt;}
.y2c0{bottom:890.168273pt;}
.y27e{bottom:890.360954pt;}
.y1ba{bottom:894.698688pt;}
.y5{bottom:896.377441pt;}
.y49{bottom:900.813639pt;}
.y67{bottom:900.928304pt;}
.y99{bottom:901.981628pt;}
.y104{bottom:901.986898pt;}
.yee{bottom:902.340306pt;}
.y1c3{bottom:903.190301pt;}
.y23b{bottom:903.337620pt;}
.y1f9{bottom:903.463619pt;}
.y2bf{bottom:903.496273pt;}
.y27d{bottom:903.688954pt;}
.y1b9{bottom:908.026688pt;}
.yed{bottom:915.668306pt;}
.y1c2{bottom:916.518301pt;}
.y23a{bottom:916.665620pt;}
.y1f8{bottom:916.791619pt;}
.y2be{bottom:916.824273pt;}
.y27c{bottom:917.016954pt;}
.y48{bottom:917.480306pt;}
.y66{bottom:917.594971pt;}
.y98{bottom:918.648295pt;}
.y103{bottom:918.653564pt;}
.y1b8{bottom:921.354688pt;}
.yec{bottom:928.996306pt;}
.y239{bottom:929.993620pt;}
.y1f7{bottom:930.119619pt;}
.y2bd{bottom:930.152273pt;}
.y27b{bottom:930.344954pt;}
.y47{bottom:934.146973pt;}
.y65{bottom:934.261637pt;}
.y97{bottom:935.314962pt;}
.y102{bottom:935.320231pt;}
.yeb{bottom:942.324306pt;}
.y1c1{bottom:943.185634pt;}
.y238{bottom:943.321620pt;}
.y1f6{bottom:943.447619pt;}
.y2bc{bottom:943.480273pt;}
.y27a{bottom:943.672954pt;}
.y1b7{bottom:946.322021pt;}
.y46{bottom:950.813639pt;}
.y96{bottom:951.981628pt;}
.y101{bottom:951.986898pt;}
.yea{bottom:955.652306pt;}
.y1c0{bottom:956.513634pt;}
.y4{bottom:956.561849pt;}
.y237{bottom:956.649620pt;}
.y1f5{bottom:956.775619pt;}
.y2bb{bottom:956.808273pt;}
.y279{bottom:957.000954pt;}
.y45{bottom:967.480306pt;}
.y64{bottom:967.594971pt;}
.y95{bottom:968.648295pt;}
.y100{bottom:968.653564pt;}
.ye9{bottom:968.980306pt;}
.y1b6{bottom:968.987587pt;}
.y1bf{bottom:969.841634pt;}
.y236{bottom:969.977620pt;}
.y1f4{bottom:970.103619pt;}
.y2ba{bottom:970.136273pt;}
.y278{bottom:970.328954pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y44{bottom:1002.206543pt;}
.hb{height:29.321599pt;}
.h2{height:37.376000pt;}
.h3{height:39.712000pt;}
.hc{height:39.712651pt;}
.ha{height:41.888000pt;}
.h10{height:46.376000pt;}
.h8{height:49.280000pt;}
.h4{height:49.298667pt;}
.hd{height:52.448000pt;}
.h7{height:52.746667pt;}
.hf{height:54.560000pt;}
.he{height:55.829333pt;}
.h6{height:57.658667pt;}
.h9{height:63.296000pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x3{left:75.717199pt;}
.x6{left:83.151469pt;}
.x5{left:86.929867pt;}
.xa{left:95.367469pt;}
.x8{left:300.489472pt;}
.x4{left:408.189087pt;}
.x7{left:423.311469pt;}
.xb{left:435.548811pt;}
.x9{left:509.702812pt;}
.x1{left:647.307210pt;}
}




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